@charset "utf-8";

/* アンカーリンク調整
----------------------------------------------- */
.anchor {
  padding-top: 80px;
  margin-top: -80px;
}

/* layout
----------------------------------------------- */
.main-inner {
  box-sizing: content-box;
  max-width: 1000px;
  margin-inline: auto;
  margin-bottom: 80px;
  padding-top: 80px;
  padding-inline: 20px;
}

/* common parts
----------------------------------------------- */
/* ページタイトル */
.page-ttl {
  position: relative;
  height: 300px;
}

.page-ttl_inner {
  max-width: calc(1920px * 0.8);
  margin-inline: auto;
  position: relative;
  margin-inline: auto;
  padding-top: 50px;
  padding-left: 60px;
  z-index: 10;
}

@media screen and (max-width: 1200px) {
  .page-ttl_inner {
    max-width: 1040px;
    width: 100%;
    padding-left: 0;
    padding-inline: 20px;
  }
}

.page-ttl_img-wrap {}

@media screen and (max-width: 1200px) {
  .page-ttl_img-wrap {
    display: none;
  }
}

.page-ttl_img::after {
  position: absolute;
  content: '';
  z-index: 5;
  background: rgb(255, 255, 255);
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 0) 92%);
  width: 82%;
  height: 100%;
  top: 0;
  left: 0;
}

.page-ttl_img {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
}


.bread-crumb {
  color: #AAAAAA;
  font-size: calc(16rem / 16);
  margin-bottom: 20px;
}

/* パンくず */
.bread-crumb_list {
  display: flex;
  gap: 10px;
}

.bread-crumb_item {
  position: relative;
  padding-right: calc(18rem / 16);
}

.bread-crumb_item::after {
  position: absolute;
  right: 0;
  top: 20%;
  line-height: 1;
  display: block;
  width: calc(9rem / 16);
  height: calc(9rem / 16);
  content: ">";
}

.bread-crumb_list .bread-crumb_item:last-child::after {
  display: none;
}

.bread-crumb_item a {}

.bread-crumb_item a:hover {
  color: var(--orange);
}

.page-ttl_text {
  font-weight: bold;
  font-size: 45px;
  margin-bottom: 20px;
  color: var(--black);
  text-shadow:
    white 2px 0px, white -2px 0px,
    white 0px -2px, white 0px 2px,
    white 2px 2px, white -2px 2px,
    white 2px -2px, white -2px -2px,
    white 1px 2px, white -1px 2px,
    white 1px -2px, white -1px -2px,
    white 2px 1px, white -2px 1px,
    white 2px -1px, white -2px -1px;
}

.page-ttl_text.-cleaning {
  color: var(--pink);
}

.page-ttl_text.-facilities {
  color: var(--yellow);
}

.page-ttl_text.-laundry {
  color: var(--green);
}

.page-ttl_text.-used {
  color: var(--blue);
}

.page-ttl_sub-text {
  font-size: 23px;
  font-weight: bold;
  color: var(--black);
}

.page-ttl_sub-text.-facilities {
  color: var(--yellow);
}

.page-ttl_sub-text.-cleaning {
  color: var(--pink);
}

.page-ttl_sub-text.-laundry {
  color: var(--green);
}

.page-ttl_sub-text.-used {
  color: var(--blue);
}

.page-ttl_en {
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
  padding-inline: 8px;
  color: white;
  background-color: #AAAAAA;
  margin-bottom: 88px;
}

/* セクション */
.section {
  margin-bottom: 100px;
}

.sub-section {
  margin-bottom: 80px;
}

.unit-section {
  margin-bottom: 40px;
}

/* セクション見出し */
.section_ttl {
  position: relative;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 45px;
  padding-left: 20px;
}

.section_ttl::before {
  position: absolute;
  content: '';
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 90%;
  border-radius: 3px;
  background-color: var(--orange);
}

.heading {
  position: relative;
  font-size: 25px;
  font-weight: bold;
  padding: 5px 10px;
  margin-bottom: 30px;
}

.heading::before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #EEEEEE;
}

.heading::after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--orange);
}

.sub-heading {
  position: relative;
  font-size: 23px;
  font-weight: bold;
  padding: 6px 15px 6px 30px;
  background-color: #EFEFEF;
  margin-bottom: 20px;
}

.sub-heading::before {
  position: absolute;
  content: '';
  width: 3px;
  height: 55%;
  background-color: var(--orange);
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
}

/* 基本のテキスト */
.base-desc {
  font-size: calc(16rem / 16);
  font-weight: normal;
  line-height: 1.75;
}

.section .section_ttl~.base-desc {
  margin-bottom: 40px;
}

.section .heading~.base-desc {
  margin-bottom: 40px;
}

.section .sub-heading~.base-desc {
  margin-bottom: 40px;
}

.highlight-text {
  position: relative;
  display: block;
  font-size: 23px;
  font-weight: bold;
  padding-left: 20px;
  margin-bottom: 20px;
}

.highlight-text::before {
  position: absolute;
  content: '●';
  font-size: 12px;
  color: var(--orange);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.maintenance_table-area {
  max-width: 650px;
  margin-inline: auto;
  margin-bottom: 50px;
  padding-top: 10px;
}

/* 表1 */
.table01 {
  width: 100%;
  font-size: calc(18rem / 16);
  border: 1px solid var(--l-blue);
  text-align: center;
  margin-bottom: 8px;
}

.table01 .col-left {
  width: 30%;
}

.table01 .col-right {
  width: 70%;
}

.table01 th,
.table01 td {
  padding: calc(10rem / 16);
}

.table01 th {
  text-align: center;
}

.table01 tr:nth-child(odd) td {
  background-color: #E8F8FF;
}

.table01 tr:first-child {
  border-bottom: 1px solid var(--l-blue);
}

.table01 tr:first-child th:first-of-type {
  background-color: white;
  color: var(--l-blue);
}

.table01 tr:first-child th:nth-of-type(2) {
  background-color: var(--l-blue);
  color: white;
}

.table01 tr:nth-child(n+2) td:first-child {
  border-right: 1px solid var(--l-blue);
}

.table01+.text {
  font-size: calc(14rem / 16);
}

.color-text {
  color: var(--orange);
}

.inspection_box {
  display: flex;
  align-items: center;
  gap: 28px;
  border: 1px solid var(--orange);
  border-radius: 20px;
  padding-inline: 8%;
  padding-block: 20px;
  margin-bottom: 40px;
}

.inspection_img {
  flex-shrink: 0;
  flex-grow: 0;
}

.relocation_box {
  display: flex;
  align-items: center;
  margin-top: -50px;
  margin-bottom: 10px;
}

@media screen and (max-width: 1200px) {
  .relocation_box {
    margin-top: 0;
  }
}

.relocation_box .base-desc {
  padding-bottom: 15px;
  width: 47%;
}

.relocation_car-list-wrap {
  display: flex;
  width: 100%;
  font-size: calc(16rem / 16);
  font-weight: 400;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.relocation_car-list-wrap .text {
  text-align: right;
  font-size: calc(14rem / 16);
  width: 100%;
}

.relocation_car-list {
  width: 50%;
}

.relocation_car-list dt {
  font-weight: 400;
}

.relocation_car-list:first-of-type {
  border-right: 2px solid white;
}

.relocation_car-list:last-of-type {
  margin-bottom: 10px;
}

.relocation_car-list div {
  display: flex;
  justify-content: space-between;
  padding-block: calc(6rem / 16);
  padding-inline: 30px 65px;
}

.relocation_car-list div:nth-child(even) {
  background-color: #F5F5F5;
}

.relocation_security-list {
  padding-left: 60px;
}

.relocation_security-item {
  position: relative;
  font-size: calc(16rem / 16);
  margin-bottom: calc(8rem / 16);
  padding-left: calc(18rem / 16);
}

.relocation_security-item::before {
  position: absolute;
  content: '●';
  color: var(--orange);
  display: inline-block;
  font-size: calc(8rem / 16);
  margin-right: 5px;
  top: calc(6rem / 16);
  left: 0;
}

.achievements_gallery {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.achievements_gallery>* {
  width: calc((100% - 20px)/2);
}

.company_message {
  background-color: #F5F5F5;
  padding: 60px 30px;
  margin-bottom: 50px;
}

.company_message .base-desc {
  margin-bottom: 20px;
}

/* 表2 */
.table02 {
  width: 100%;
  font-size: calc(16rem / 16);
  border-collapse: collapse;
}

.table02 a {
  text-decoration: underline;
  text-underline-offset: calc(2rem / 16);
  transition: opacity 0.2s;
}

.table02 a:hover {
  opacity: 0.7;
}

.ex-link,
.pdf-link {
  display: inline-block;
  position: relative;
  text-decoration: underline;
  text-underline-offset: calc(2rem / 16);
  transition: opacity 0.2s;
}

.ex-link:hover,
.pdf-link:hover {
  opacity: 0.7;
}

.ex-link::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  aspect-ratio: 1;
  -webkit-mask-image: url(../img/common/ico_external-link.svg);
  mask-image: url(../img/common/ico_external-link.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  margin-left: calc(4rem / 16);
  /* 背景と調和するための設定 */
  background-color: currentColor;
  /* テキスト色に合わせる */
  mix-blend-mode: difference;
  /* 背景色と反転 */
}

.table02 .ex-link::after {
  background-color: #AAAAAA;
}

.table02 tr {
  border-bottom: 1px solid #AAAAAA;
}

.table02 tr:last-child {
  border-bottom: none;
}

.table02 th,
.table02 td {
  padding: calc(12rem / 16) 3%;
}

.table02 th {
  background: linear-gradient(0deg, transparent 0, transparent 2px, #EEEEEE 2px, #EEEEEE calc(100% - 2px), transparent calc(100% - 2px), transparent 100%);
}

.table02 td * {
  margin-bottom: 10px;
}

.table02 td *:last-child {
  margin-bottom: 0;
}

.google-map {
  max-width: 100%;
}

.table02 .col-left {
  width: 25%;
}

.table02 .col-right {
  width: 75%;
}

.client-list {
  display: flex;
  flex-flow: row wrap;
}

.client-item {
  width: 50%;
}

.event_thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}

.event_thumbnail-img {
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

@media (any-hover: hover) {
  .event_thumbnail-img:hover {
    opacity: 0.7;
  }
}

.event_thumbnail-img img {
  width: 238px;
  height: 147px;
  object-fit: cover;
}

/* モーダル */
.modal-sec {
  position: relative;
}

.event_modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  pointer-events: none;
  opacity: 0;
  z-index: var(--z-index-modal);
  background-color: #00000096;
}

.event_modal.is-active {
  opacity: 1;
  pointer-events: auto;
}

.event_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.event_modal-inner {
  position: relative;
  background-color: #fff;
  width: 100%;
  height: 90%;
  max-width: 900px;
  padding: 20px;
}

.event_modal-close-btn {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 40px;
  height: 40px;
  background: #fff;
  z-index: 10;
  border: none;
  background: url(../img/common/ico_close.svg) no-repeat center center / cover;
}

.event_modal .swiper {
  height: 100%;
}

.event_modal .swiper-slide img {
  height: 100%;
  object-fit: contain;
}

.event_modal .swiper-button-next,
.event_modal .swiper-button-prev {
  position: absolute;
  content: '';
  background-color: #111;
  width: 35px;
  height: 35px;
  border-radius: 100vmax;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: opacity 0.2s ease;
  z-index: 50;
}

@media (hover:hover) {

  .event_modal .swiper-button-next:hover,
  .event_modal .swiper-button-prev:hover {
    opacity: 0.8;
  }
}

.event_modal .swiper-button-next::before,
.event_modal .swiper-button-prev::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 8px 10px;
  border-right-color: white;
  border-left: 0;
  transform: translateX(-15%);
  position: absolute;
  inset: 0;
  margin: auto;
}

.event_modal .swiper-button-next::before {
  transform: rotate(180deg);
}

.event_modal .swiper-button-next {
  right: 10px;
}

.event_modal .swiper-button-prev {
  left: 10px;
}

.products-content {
  display: flex;
  justify-content: space-between;
  max-width: 1400px;
  margin-inline: auto;
  margin-bottom: 40px;
}

@media screen and (max-width: 1200px), print {
  .products-content {
    display: block;
    margin-bottom: 0;
  }
}

.products-content.-used {
  max-width: 1536px;
}

.content-nav {
  display: block;
  position: relative;
  padding-top: 80px;
  margin-inline: 20px;
  flex-shrink: 0;
}

@media screen and (max-width: 1200px) {
  .products-content.-used .content-nav {
    display: none;
  }
}

.content-nav_list {
  position: sticky;
  top: 180px;
  width: 280px;
}

@media screen and (max-width: 1200px) {
  .content-nav_list {
    width: 100%;
    max-width: 1000px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}

.products-content .main-inner {
  margin-inline: 0;
  padding-top: 80px;
  flex-grow: 1;
}

@media screen and (max-width: 1200px) {
  .products-content .main-inner {
    margin-inline: auto;
  }
}

.content-nav_item {
  color: #AAAAAA;
  font-size: calc(16rem / 16);
  margin-bottom: 20px;
}

.content-nav_item a {
  position: relative;
  padding-left: 18px;
  transition: color 0.3s ease;
  display: block;
}

.content-nav_item a::before {
  position: absolute;
  content: '';
  background-color: currentColor;
  width: 8px;
  height: 3px;
  left: 0;
  top: calc(3rem / 16);
  margin-top: 8px;
}

.content-nav_item a.is-active {
  color: var(--orange);
}

.search_wrap {
  position: sticky;
  top: 160px;
}

@media screen and (max-width: 1200px) {
  .search_wrap {
    display: none;
  }
}

.search {
  background-color: #F5F5F5;
  padding: 25px;
  font-size: 16px;
  margin-bottom: 30px;
}

.search .search_menu:first-of-type {
  margin-bottom: 30px;
}

.search_head {
  color: #929292;
  text-align: center;
  font-weight: bold;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  margin-bottom: 10px;
}

.search_sale-list {}

.search_sale-item {
  border-bottom: 1px dashed #DFDFDF;
}

.search_sale-item a {
  display: block;
  padding-block: 10px;
  transition: opacity .2s ease;
}

@media (any-hover: hover) {
  .search_sale-item a:hover {
    opacity: 0.7;
  }
}

.search_sale-list .search_sale-item:last-child {
  border-bottom: none;
}

.search_conditions {
  padding-top: 10px;
}

.search_type {
  display: flex;
  align-items: center;
  column-gap: 10px;
  margin-bottom: 16px;
}

.search_type dd {
  flex-grow: 1;
}

.search_select-wrap {
  position: relative;
}

.search_select-wrap::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 16px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: rotate(45deg);
}

.search_select {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  padding: 8px;
  cursor: pointer;
}

.content-nav_link {
  text-align: center;
}

.content-nav_link a {
  display: inline-block;
}

.section_ttl~.main-img {
  display: block;
  margin-inline: auto;
}

.facilities_cards-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.card {
  background-color: #FFF0E6;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card_img {
  background-color: white;
  border-radius: 50%;
  margin-bottom: 16px;
}

.card_ttl {
  font-size: calc(20rem / 16);
  font-weight: bold;
  margin-bottom: 16px;
}

.card_desc {
  text-align: justify;
  background-color: white;
  padding: 20px;
  min-height: calc(160rem / 16);
  font-size: calc(16rem / 16);
  margin-bottom: 24px;
}

.card_desc .color-text {
  color: var(--l-blue);
}

.card_link-wrap {
  width: 100%;
  text-align: center;
  font-size: calc(16rem / 16);
}

.card_link-wrap>h5 {
  margin-bottom: 12px;
}

.card_link-wrap a {
  transition: opacity 0.2s ease;
}

@media (any-hover: hover) {
  .card_link-wrap a:hover {
    opacity: 0.6;
  }
}

.card_link-list {
  display: flex;
  justify-content: flex-start;
  gap: calc(8rem / 16);
  flex-wrap: wrap;
}

.card_link-item {}

.card_link-item a {
  display: block;
  color: var(--orange);
  background-color: white;
  border: 1px solid var(--orange);
  border-radius: 100vmax;
  padding-inline: calc(12rem / 16);
}

.card_laundry-link {
  position: relative;
  display: block;
  margin-top: 20px;
  color: var(--orange);
}

.card_laundry-link::after {
  display: inline-block;
  width: calc(8rem / 16);
  aspect-ratio: 1;
  content: "";
  background-color: var(--orange);
  -webkit-mask-image: url(../img/common/ico_arrow.svg);
  mask-image: url(../img/common/ico_arrow.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  transform: rotate(-90deg) translateX(2px);
}

.facilities_table-area {
  display: flex;
}

/* 表3 */
.table03 {
  width: 100%;
  font-size: calc(16rem / 16);
  border: 1px solid var(--l-blue);
}

.facilities_table-area .table03:last-of-type {
  border-left: none;
}

.table03 .col-left {
  width: 70%;
}

.table03 .col-right {
  width: 30%;
}

.table03 th,
.table03 td {
  padding: calc(6rem / 16) calc(28rem / 16);
}

.table03 th {
  text-align: center;
  font-weight: bold;
  white-space: nowrap;
}

.table03 tr:nth-child(odd) td {
  background-color: #E8F8FF;
}

.table03 tr:first-child {
  border-bottom: 1px solid var(--l-blue);
}

.table03 tr:first-child th:first-of-type {
  background-color: var(--l-blue);
  color: white;
}

.table03 tr:first-child th:nth-of-type(2) {
  background-color: white;
  color: var(--l-blue);
}

.table03 tr:nth-child(n+2) td:first-child {
  border-right: 1px solid var(--l-blue);
}

.table03 tr td:last-of-type {
  text-align: center;
}

.facilities_table-area+.text {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  font-size: calc(14rem / 16);
}

.flex-box {
  display: flex;
}

.facilities_example {
  justify-content: space-around;
  margin-bottom: 40px;
}

.scroll-wrap {
  margin-bottom: 60px;
  padding-bottom: 10px;
}

/* 表4 */
.table04 {
  width: 100%;
  font-size: calc(16rem / 16);
  border-right: 1px solid var(--orange);
}

.table04 th,
.table04 td {
  vertical-align: middle;
  text-align: center;
  border-bottom: 1px solid var(--orange);
  border-left: 1px solid var(--orange);
}

.table04 th {
  background-color: var(--orange);
  color: white;
  font-weight: bold;
  padding: 6px;
}

.table04 tr:first-child th:nth-of-type(n+2) {
  border-left: 1px solid white;
}

.table04 tr:nth-child(n+2) th {
  background-color: #FFDDC9;
  color: inherit;
  font-weight: normal;
  padding: 20px;
}

.table04 td {
  padding: 20px;
}

.table04 td small {
  display: block;
  font-size: calc(14rem / 16);
}

.table-ttl {
  font-weight: bold;
  font-size: calc(18rem / 16);
  margin-bottom: 10px;
}

.machines {
  position: relative;
  border: 10px solid #D4EFFB;
  padding: 40px;
  margin-bottom: 20px;
}

.machines-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
}

.machines:has(.machines_header) {
  padding: calc(60rem / 16) 40px 30px 40px;
}

.machines_header {
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  background-color: var(--l-blue);
  color: white;
  font-size: calc(18rem / 16);
  padding-block: calc(6rem / 16);
  text-align: center;
  z-index: 10;
}

.machines_header a {
  margin-right: calc(4rem / 16);
}

.machines_header a::after {
  mix-blend-mode: normal !important;
}

.machines_header.italy-icon::before {
  content: '';
  display: inline-block;
  background: url(../../cleaner/img/ico_italy.svg) no-repeat center center/ cover;
  width: 23px;
  height: 16px;
  margin-right: 5px;
}

.machines_inner {
  text-align: center;
}

.machines_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
  justify-items: center;
  row-gap: 20px;
}

.machines_img {
  margin-bottom: 16px;
  display: block;
  margin-inline: auto;
}

.machines_img-wrapper {
  justify-content: center;
}

.machines_detail {
  text-align: left;
  font-size: calc(16rem / 16);
}

.machines_detail>* {
  margin-bottom: 8px;
}

.machines_makers {
  text-align: left;
  padding-top: 16px;
}

.machines_makers>.head {
  display: inline-block;
  color: var(--l-blue);
  font-size: calc(14rem / 16);
  padding: calc(2rem / 16) calc(9rem / 16);
  border: 1px solid var(--l-blue);
  margin-bottom: 8px;
}

.machines_makers-list li {
  display: flex;
  align-items: first baseline;
}

.machines_makers-list li::before {
  content: "";
  width: 4px;
  height: 4px;
  display: block;
  background-color: currentColor;
  border-radius: 50%;
  position: relative;
  top: -3px;
  margin-right: 5px;
  flex-shrink: 0;
}

::marker {
  margin-left: 5px !important;
}

.pdf-link {
  display: block;
}

.machines_ttl {
  font-weight: bold;
  font-size: calc(16rem / 16);
}

.pdf-link {
  position: relative;
  font-size: calc(14rem / 16);
  margin-top: 8px;
  display: inline-block;
  margin-right: 10px;
}

.pdf-link::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 15px;
  background: url(../img/common/ico_pdf.svg) no-repeat center center/cover;
  margin-right: calc(4rem / 16);
}

.catalogs {
  justify-content: center;
  gap: 40px;
}

.catalogs_item {
  width: 240px;
}

.installation-flow {
  background-color: #FFF7F2;
  width: 100%;
  padding: 60px 10%;
}

.installation-flow_inner {
  background-color: white;
  box-shadow: 0px 0px 10px 3px rgba(235, 222, 215, 0.5);
  padding: 50px 8%;
}

.installation-flow_step {
  display: flex;
  justify-content: space-between;
}

.installation-flow_element {
  width: 14px;
  margin: 0 30px 0 0;
  position: relative;
}

.installation-flow_element::before {
  position: relative;
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background-color: var(--orange);
  border-radius: 50%;
  z-index: 2;
  margin: 6px 0 0;
}

.installation-flow_element::after {
  position: absolute;
  content: "";
  background-color: #EEEEEE;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
}

.installation-flow_step:nth-last-child(2) .installation-flow_element::after {
  display: none;
}

.installation-flow_body {
  width: calc(100% - 44px);
  margin: 0 auto 30px;
  padding: 0 0 30px;
  border-bottom: 1px dashed #E2E2E2;
}

.installation-flow_step:nth-last-child(2) .installation-flow_body {
  border-bottom: none;
  margin-bottom: 0;
}

.installation-flow_sub-text {
  font-size: 18px;
  font-weight: bold;
  color: var(--orange);
}

.installation-flow_ttl {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 5px;
}

.installation-flow_span {
  position: relative;
  color: white;
  text-align: center;
  font-size: calc(18rem / 16);
  font-weight: bold;
  background-color: var(--orange);
  border-radius: 100vmax;
}

.faq {
  border-top: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
}

.faq_list {}

.faq_item {
  display: flex;
  column-gap: 46px;
  align-items: baseline;
  padding: 40px 30px;
  border-bottom: 1px dashed #D5D5D5;
}

.faq_list .faq_item:last-child {
  border-bottom: none;
}

.faq_head {
  color: var(--orange);
  font-size: 23px;
  font-weight: 500;
}

.faq_question {
  color: var(--orange);
  font-size: calc(18rem / 16);
  margin-bottom: 20px;
}

.img-border {
  border: 1px solid #D5D5D5;
}

.main-img+.text {
  text-align: right;
  font-size: calc(14rem / 16);
  margin-bottom: 60px;
}

.pdf-links_wrap {
  background-color: #E9F8FF;
  padding: 30px 60px;
}

.pdf-links_inner {
  display: flex;
  justify-content: flex-start;
  gap: 40px;
}

.laundry-merit {
  background-color: #F2FBFF;
  padding: 40px 6%;
  margin-bottom: 8px;
}

.laundry-merit .base-desc {
  text-align: justify;
}

.laundry-merit+.text {
  color: #8D8D8D;
  font-size: calc(14rem / 16);
  text-align: center;
}

.laundry-merit_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
  gap: 35px;
}

.laundry-merit_item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.laundry-merit_head {
  color: var(--orange);
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
  height: calc(50rem / 16);
  display: flex;
  flex-direction: column;
}

.laundry-merit_list .laundry-merit_item:nth-of-type(n+2) .laundry-merit_head {
  padding-top: 13px;
}

.laundry-merit_head .text {
  display: block;
  font-size: calc(15rem / 16);
}

.laundry-merit_img {
  background-color: white;
  border-radius: 50%;
  padding: 25px;
  width: 150px;
  height: 150px;
  box-shadow: 0px 0px 16px -6px rgba(224, 238, 245, 0.9);
  margin-bottom: 10px;
}

.laundry_center-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.laundry-management {
  background-color: #FFDDC9;
  text-align: center;
  padding: 12px;
  padding-bottom: 40px;
}

.laundry-management .ex-link::after {
  mix-blend-mode: unset;
}

.laundry-management_ttl {
  width: fit-content;
  margin-inline: auto;
  background-color: white;
  border-radius: 100vmax;
  padding: 2px 10%;
  font-size: calc(16rem / 16);
  margin-bottom: 30px;
}

.profit-simulation {
  background-color: #F3F3F3;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
}

.profit-simulation_pdf {
  width: 35%;
}

.model-plans {
  display: inline-block;
}

.model-plans img {
  display: block;
}

.jis-laundry-symbols_wrap {
  column-gap: 40px;
}

.heading .link {
  margin-left: 30px;
  font-size: calc(18rem / 16);
  font-weight: normal;
}

.model-store_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.model-store_img {
  width: calc(100% / 2 - 10px);
}

.section_ttl .sub-text {
  margin-left: 10px;
  font-size: 25px;
}

.used-machines_wrap {
  background-color: #FFF7F2;
  padding: 30px;
}

.used-machines_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.used-machines_item {
  width: calc(100% / 2 - 10px);
  background-color: white;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.used-machines_item .table02 .col-left {
  width: 30%;
}

.used-machines_item .table02 tr {
  border-bottom: 1px solid #F1A87B;
}

.used-machines_item .table02 tr:last-child {
  border-bottom: none;
}

.used-machines_item .table02 th {
  background: linear-gradient(0deg, transparent 0, transparent 2px, #FFF0E6 2px, #FFF0E6 calc(100% - 2px), transparent calc(100% - 2px), transparent 100%);
}

.used-machines_item .table02 td p::before {
  content: "";
  width: 4px;
  height: 4px;
  display: inline-block;
  background-color: currentColor;
  border-radius: 50%;
  position: relative;
  top: -3px;
  margin-right: 5px;
}

.used-machines_img {
  margin-bottom: 30px;
}

.used-machines_name {
  width: 100%;
  font-size: calc(18rem / 16);
  font-weight: 500;
  color: var(--orange);
  padding-bottom: 9px;
  border-bottom: 2px solid currentColor;
  margin-bottom: 20px;
}

.decimal-list li {
  list-style-type: decimal;
  list-style-position: outside;
  margin-left: calc(16rem / 16);
  line-height: 1.8;
}

/* お問合せフォーム */
.mailform {
  width: 100%;
  font-size: calc(16rem / 16);
  margin-bottom: 80px;
}

.mailform table {
  width: 100%;
}

.mailform tr {
  width: 100%;
  padding-block: 20px;
  display: block;
  border-bottom: 1px solid #F1A87B;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.mailform tr:last-of-type {
  border-bottom: none;
}

.mailform tr th {
  font-weight: bold;
  width: 30%;
  padding-left: calc(16rem / 16);
}

.mailform tr td {
  width: 70%;
}

.mailform tr td input[type="text"],
.mailform tr td input[type="email"],
.mailform tr td input[type="tel"],
.mailform tr td textarea {
  width: 100%;
  border: 1px solid;
  background-color: #F5F5F5;
  border-color: #d5d5d5;
  border-radius: calc(3rem / 16);
  padding: 10px;
}

::placeholder {
  color: #AAAAAA;
}

.mailform_required-mark {
  color: white;
  background-color: var(--orange);
  font-size: calc(13rem / 16);
  border-radius: 100vmax;
  padding-inline: calc(12rem / 16);
  padding-block: 0 calc(1rem / 16);
}

.mailform_row {
  display: inline-block;
  padding-right: 40px;
}

.mailform label,
.mailform input[type="radio"] {
  cursor: pointer;
}

.mailform_submit {
  text-align: center;
}

.mailform_submit-btn {
  font-size: calc(25rem / 16);
  font-weight: bold;
  color: white;
  background-color: #d4d4d4;
  border: none;
  border-radius: 100vmax;
  width: 100%;
  max-width: calc(400rem / 16);
  padding-block: calc(10rem / 16);
  margin-inline: auto;
  transition: all 0.2s;
}

.mailform_submit-btn:hover {
  background-color: var(--orange);
}

.notion {
  padding: 30px;
  background-color: #FFF7F2;
}

.notion .ex-link::after {
  mix-blend-mode: unset;
}

.notion_ttl {
  text-align: center;
  font-weight: bold;
  padding-bottom: 16px;
}

/* ここから画面幅768px以下のスタイル
  ---------------------------------------------------------------------------------
*/
@media screen and (max-width: 768px) {

  /* layout
----------------------------------------------- */
  .main-inner {
    padding-top: 40px;
  }

  /* common parts
----------------------------------------------- */
  /* ページタイトル */
  .page-ttl {
    height: auto;
  }

  .page-ttl_inner {
    padding-top: 40px;
  }

  .bread-crumb {
    font-size: 13px;
    margin-bottom: 5px;
  }

  /* パンくず */
  .page-ttl_text {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .page-ttl_en {
    font-size: 16px;
    margin-bottom: 40px;
  }

  /* セクション */
  .section {
    margin-bottom: 80px;
  }

  /* セクション見出し */
  .section_ttl {
    font-size: 28px;
    padding-left: 16px;
    margin-bottom: 30px;
  }

  .section_ttl::before {
    width: 6px;
  }

  .sub-heading {
    font-size: 20px;
  }

  /* 基本のテキスト */
  .highlight-text {
    font-size: 20px;
  }

  /* 表1 */
  .table01 {
    font-size: 16px;
  }

  .inspection_box {
    flex-direction: column;
  }

  .relocation_box {
    flex-direction: column;
  }

  .relocation_box .base-desc {
    width: 100%;
  }

  .relocation_car-list-wrap {
    flex-direction: column;
  }

  .relocation_car-list-wrap .text {
    text-align: left;
  }

  .relocation_car-list {
    width: 100%;
  }

  .relocation_security-list {
    padding-left: 30px;
  }

  .achievements_gallery {
    gap: 8px;
  }

  .achievements_gallery>* {
    width: calc((100% - 8px)/2);
  }

  .company_message {
    padding: 30px;
  }

  .client-list {
    display: block;
  }

  .client-item {
    width: 100%;
  }

  .event_thumbnails {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .event_thumbnail-img {
    aspect-ratio: 4 / 3;
  }

  .content-nav {
    padding-top: 0;
  }

  .content-nav_list {
    display: flex;
    flex-direction: column;
  }

  .content-nav_item {
    margin-bottom: 10px;
  }

  .facilities_table-area {
    flex-direction: column;
    row-gap: 30px;
  }

  /* 表3 */
  .facilities_table-area .table03:last-of-type {
    border-left: 1px solid var(--l-blue);
  }

  .scroll-wrap {
    width: 100%;
    overflow-x: auto;
  }

  /* 表4 */
  .table04 {
    min-width: 800px;
  }

  .machines-wrapper {
    grid-template-columns: auto;
  }

  .machines:has(.machines_header) {
    padding: 50px 20px 20px 20px;
  }

  .machines_header {
    font-size: 16px;
  }

  .installation-flow {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    padding: 25px;
  }

  .installation-flow_inner {
    padding-block: 35px;
  }

  .installation-flow_ttl {
    font-size: 21px;
  }

  .pdf-links_wrap {
    padding: 30px;
  }

  .pdf-links_inner {
    flex-direction: column;
  }

  .profit-simulation {
    flex-direction: column;
  }

  .profit-simulation_pdf {
    width: 100%;
  }

  .jis-laundry-symbols_wrap div {
    flex: 1;
  }

  .model-store_list {
    gap: 8px;
  }

  .model-store_img {
    width: calc(100% / 2 - 4px);
  }

  .used-machines_wrap {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }

  .used-machines_item {
    width: 100%;
  }

  /* お問合せフォーム */
  .mailform tr {
    flex-direction: column;
    align-items: flex-start;
  }

  .mailform tr th {
    padding-left: 0;
    padding-bottom: 10px;
  }

  .mailform tr th,
  .mailform tr td {
    width: 100%;
  }

  .mailform tr td input[type="text"],
  .mailform tr td input[type="email"],
  .mailform tr td input[type="tel"],
  .mailform tr td textarea {
    width: 100%;
    padding-bottom: 15px;
  }
}