/*
====================================================================
 Fonts
====================================================================
*/
/* Noto Serif Bold */
@font-face {
  font-display: swap;
  font-family: "Noto Serif";
  font-style: normal;
  font-weight: 600;
  src: local(""), url("./fonts/noto-serif-jp-bold.woff2") format("woff2");
}
/* Noto Serif Medium */
@font-face {
  font-display: swap;
  font-family: "Noto Serif";
  font-style: normal;
  font-weight: 500;
  src: local(""), url("./fonts/noto-serif-jp-medium.woff2") format("woff2");
}
/* Cormorant Bold */
@font-face {
  font-display: swap;
  font-family: "Cormorant";
  font-style: normal;
  font-weight: 600;
  src: local(""), url("./fonts/cormorant-bold.woff2") format("woff2");
}
/* Cormorant Medium */
@font-face {
  font-display: swap;
  font-family: "Cormorant";
  font-style: normal;
  font-weight: 500;
  src: local(""), url("./fonts/cormorant-bold.woff2") format("woff2");
}
/* Bodoni Regular */
@font-face {
  font-display: swap;
  font-family: "Bodoni Moda";
  font-style: normal;
  font-weight: 400;
  src: local(""), url("./fonts/bodoni-moda-regular.woff2") format("woff2");
}
/*
====================================================================
 Colors
====================================================================
*/
/*
====================================================================
 Mixins
====================================================================
*/
.section__body {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s, transform 1s;
}

.in-viewport .section__body {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

/*
====================================================================
 SOLUTION
====================================================================
*/
.page-section01 p {
  letter-spacing: -0.02em;
  color: #333;
}
.page-section01 .introduction {
  text-align: center;
}

.service-list__content {
  position: relative;
  padding: 20px 0 40px 0;
  min-height: 506px;
  display: grid;
  grid-template-rows: repeat(2, auto) 1fr;
}
.service-list__content::before {
  content: "";
  display: block;
  position: absolute;
  width: 2000px;
  height: 100%;
  background-color: #f8f5f3;
  top: 0;
  z-index: -1;
}
.service-list__content .button__block {
  align-self: flex-end;
  margin-top: 40px;
}
.service-list__content .button__block .button__text {
  font-size: 16px;
  padding-right: 20px;
}
.service-list__content dl {
  margin-top: 10px;
}
.service-list__content dt {
  background-color: #c9a412;
  color: white;
  font-weight: 600;
}
.service-list__content dd {
  font-size: 16px;
  background-color: white;
  padding: 0.25em 0.75em;
}
.service-list__item {
  margin-top: 80px;
  scroll-margin-top: 110px;
  position: relative;
}
.service-list__item h3 {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}
.service-list__item h3::before {
  content: "";
  display: block;
  position: static;
  width: 128px;
  height: 128px;
  background-color: #c9a412;
  border-radius: 50%;
  background-position: center center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
.service-list__item h3 span {
  display: block;
  font-size: 32px;
  line-height: 1.3;
  font-family: "Hiragino Mincho ProN", "Noto Serif", serif;
  font-weight: 500;
}
.service-list__item:nth-child(1) h3::before {
  background-image: url(../images/solution/icon_service_01.svg);
}
.service-list__item:nth-child(2) h3::before {
  background-image: url(../images/solution/icon_service_02.svg);
}
.service-list__item:nth-child(3) h3::before {
  background-image: url(../images/solution/icon_service_03.svg);
}
.service-list__item:nth-child(4) h3::before {
  background-image: url(../images/solution/icon_service_04.svg);
}
.service-list__item:nth-child(5) h3::before {
  background-image: url(../images/solution/icon_service_05.svg);
}
.service-list__item:nth-child(6) h3::before {
  background-image: url(../images/solution/icon_service_06.svg);
}
.service-list__item:nth-child(7) h3::before {
  background-image: url(../images/solution/icon_service_07.svg);
}
.service-list__item:nth-child(8) h3::before {
  background-image: url(../images/solution/icon_service_08.svg);
}
.service-list__item figure {
  position: absolute;
  top: 0;
  width: 818px;
  height: 575.5px;
  overflow: hidden;
}
.service-list__item figure img {
  transform: scale(1.1);
  transition: transform 1.2s;
}
.service-list__item:nth-child(odd) figure {
  right: -300px;
}
.service-list__item:nth-child(odd) .service-list__content {
  padding-right: 560px;
}
.service-list__item:nth-child(odd) .service-list__content::before {
  right: 0;
}
.service-list__item:nth-child(even) h3 {
  padding-left: 560px;
}
.service-list__item:nth-child(even) figure {
  left: -300px;
}
.service-list__item:nth-child(even) .service-list__content {
  padding-left: 560px;
}
.service-list__item:nth-child(even) .service-list__content::before {
  left: 0;
}
.service-list__item.in-viewport figure img {
  transform: scale(1);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.tag-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 10px 0 10px;
  background-color: #333;
  color: white;
  font-size: 14px;
  font-weight: 600;
  height: 32px;
  border-radius: 32px;
}

.note {
  display: block;
  font-size: 78%;
}

.attention {
  display: block;
  font-weight: 600;
  color: #c9a412;
}

.page-section02 {
  position: relative;
  padding: 40px 0 170px 0;
}
.page-section02::before {
  content: "";
  display: block;
  position: absolute;
  width: calc(50% + 310px);
  height: 100%;
  top: 0;
  left: 0;
  background-color: #f8f5f3;
}
.page-section02 h2 {
  width: 560px;
  margin: 0 auto 80px 0;
}
.page-section02 h2 .en {
  margin-bottom: -8px;
}
.page-section02 h2 .jp {
  padding: 0 80px;
}

.area-list {
  border: 1px solid #333;
  border-top: none;
  width: 560px;
  position: relative;
  z-index: 1;
}
.area-list__item {
  background-color: white;
}
.area-list h3 {
  color: white;
  background-color: #c9a412;
  padding: 8px 0 8px 18px;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}
.area-list p {
  padding: 10px 20px;
}
.area-list__image {
  position: absolute;
  top: -160px;
  right: -70px;
}

/*----------------------------------------------------------------*/
@media (max-width: 767px) {
  /*----------------------------------------------------------------*/
  /*
  ====================================================================
   SP / SOLUTION
  ====================================================================
  */
  .page-section01 .container {
    padding: 0;
  }
  .page-section01 .introduction {
    text-align: left;
    padding: 0 15px;
  }
  .service-list__item {
    margin-top: 40px;
    scroll-margin-top: 60px;
    background-color: #f8f5f3;
    padding: 20px 15px 40px 15px;
  }
  .service-list__item h3 {
    -moz-column-gap: 15px;
         column-gap: 15px;
    margin-bottom: 15px;
    padding-left: 0 !important;
  }
  .service-list__item h3::before {
    width: 95px;
    height: 95px;
    background-size: 85% auto;
  }
  .service-list__item h3 span {
    font-size: 27px;
  }
  .service-list__item figure {
    position: static;
    width: 100%;
    height: auto;
  }
  .service-list__content {
    padding: 0 !important;
    min-height: unset;
    display: block;
    margin-top: 30px;
  }
  .service-list__content::before {
    content: none;
  }
  .service-list__content .button__block .button {
    width: 100%;
    height: 64px;
  }
  .service-list__content .button__block .button__text {
    padding-right: 0;
  }
  .service-list__content dt {
    padding: 3px 5px;
  }
  .service-list__content dd {
    padding: 10px 15px 15px 15px;
  }
  .tag-list {
    flex-wrap: wrap;
    gap: 10px;
  }
  .note {
    display: block;
    font-size: 78%;
  }
  .page-section02 {
    padding: 40px 0;
    background-color: #f8f5f3;
  }
  .page-section02::before {
    content: none;
  }
  .page-section02 h2 {
    width: auto;
    margin-bottom: 60px;
  }
  .page-section02 h2 .jp {
    padding: 0 0;
  }
  .area-list {
    width: 100%;
  }
  .area-list h3 {
    padding-left: 10px;
  }
  .area-list h3 span {
    display: inline-block;
    text-indent: -1em;
    margin-left: 1em;
  }
  .area-list p {
    padding: 10px;
  }
  .area-list__image {
    position: static;
    margin: 0 -15px;
  }
  .common-section-contents {
    padding-top: 50px;
  }
  /*----------------------------------------------------------------*/
}
/*----------------------------------------------------------------*/
/*----------------------------------------------------------------*/
@media (min-width: 768px) and (max-width: 1119px) {
  /*----------------------------------------------------------------*/
  /*----------------------------------------------------------------*/
}
/*----------------------------------------------------------------*//*# sourceMappingURL=solution.css.map */