@charset "UTF-8";
/* =========================
scss/style.scss
========================= */
/* base */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  color: #333;
}
@media (max-width: 780px) {
  body {
    font-size: 14px;
  }
}

/* common */
.pc-only {
  display: block;
}
@media (max-width: 780px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media (max-width: 780px) {
  .sp-only {
    display: block;
  }
}

.container {
  width: 100%;
  max-width: 1240px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}
@media (max-width: 780px) {
  .container {
    max-width: 100%;
  }
}

.section {
  padding: 80px 20px;
  text-align: center;
}

/* heading */
.section__title {
  padding: 100px 0;
  margin: 0 auto;
}
@media (max-width: 780px) {
  .section__title {
    padding: 40px 0;
  }
}
.section__title .jp {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  letter-spacing: 0.5em;
  color: #b64865;
}
@media (max-width: 780px) {
  .section__title .jp {
    font-size: 14px;
  }
}
.section__title .en {
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  text-align: center;
  letter-spacing: 0.2em;
  color: #b64865;
  margin-bottom: 40px;
}
@media (max-width: 780px) {
  .section__title .en {
    font-size: 26px;
    margin-bottom: 5px;
  }
}

/* header */
.header {
  height: 90px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  transition: 0.3s;
}
.header.is-scrolled {
  background: #fff;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1240px;
  padding-left: 20px;
  padding-right: 20px;
  height: 90px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__inner .header__logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 94px;
}
.header__inner .header__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header__inner .header__nav ul.header__menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header__inner .header__nav ul.header__menu li a {
  padding: 0 20px;
  color: #2c2726;
  font-size: 16px;
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
}
.header__menu {
  display: flex;
  gap: 20px;
  list-style: none;
}
.header__inner .header__nav ul.header__menu li {
  position: relative;
}
.header__inner .header__nav ul.header__menu li .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  z-index: 200;
}
.header__inner .header__nav ul.header__menu li .sub-menu li a {
  display: block;
  padding: 10px 20px;
  white-space: nowrap;
  font-size: 14px;
}
.header__inner .header__nav ul.header__menu li:hover .sub-menu {
  display: block;
}
@media (max-width: 780px) {
  .header__inner .header__nav ul.header__menu li .sub-menu {
    display: block;
    position: static;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    background: transparent;
    padding: 4px 0 4px 16px;
  }
  .header__inner .header__nav ul.header__menu li .sub-menu li a {
    padding: 8px 0;
  }
}
.header__toggle {
  display: none;
}

.header__toggle {
  display: none;
}

.js-nav {
  opacity: 1;
}
@media (max-width: 780px) {
  .js-nav {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
}

.js-nav.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 780px) {
  .header__toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 24px;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    z-index: 1001;
  }
  .header__toggle span {
    width: 100%;
    height: 2px;
    background: #333;
    transition: 0.3s;
  }
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.9411764706);
    transition: 0.3s;
    z-index: 1000;
    padding-top: 100px;
  }
  .header__nav.active {
    right: -1px;
  }
  .header__menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 0 32px;
  }
  .header__inner .header__nav ul.header__menu {
    align-items: flex-start;
  }
  .header__inner .header__nav ul.header__menu li a {
    padding: 0;
    text-align: left;
  }
}
.header__toggle.active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.header__toggle.active span:nth-child(2) {
  opacity: 0;
}

.header__toggle.active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

.header__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.header__overlay.active {
  opacity: 1;
  visibility: visible;
}

/* contents */
.mv {
  height: 100vh;
  min-height: 840px;
  background: url("../images/mv.jpg") center/cover;
}
@media (max-width: 780px) {
  .mv {
    height: 600px;
    min-height: 600px;
    background: url("../images/mv-sp-long.jpg") center/cover;
  }
}
.mv__inner {
  width: 100%;
  height: 100%;
  max-width: 1240px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 780px) {
  .mv__inner {
    align-items: start;
  }
}
.mv__main {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 62px;
  line-height: 90px;
  letter-spacing: 0.04em;
  color: #ffffff;
  text-shadow: 0px 0px 12.2px #c95574;
  padding-top: 40px;
}
@media (max-width: 780px) {
  .mv__main {
    padding-top: 26%;
    font-size: max(10vw, 32px);
    line-height: 1.3;
  }
}
.mv__main--small {
  font-size: 0.92em;
}

.introduction {
  padding: 37px 0 137px;
}
@media (max-width: 780px) {
  .introduction {
    padding: 10px 0 50px;
  }
}
.introduction .section__title {
  font-weight: 500;
  font-size: 40px;
  line-height: 60px;
  text-align: center;
  letter-spacing: 0.06em;
  color: #1f1f1f;
  flex: none;
  order: 0;
  flex-grow: 0;
  padding-bottom: 56px;
}
@media (max-width: 780px) {
  .introduction .section__title {
    font-size: 26px;
    line-height: 1.5;
    padding-bottom: 30px;
  }
}
.introduction .section__text {
  font-weight: 400;
  font-size: 20px;
  line-height: 2.5;
  text-align: center;
  letter-spacing: 0.05em;
  color: #1f1f1f;
}
@media (max-width: 780px) {
  .introduction .section__text {
    font-size: 16px;
    line-height: 2;
  }
}

.worries {
  padding: 90px 0 100px;
  background-color: #fff6f6;
}
@media (max-width: 780px) {
  .worries {
    padding: 40px 0 60px;
  }
}
.worries .section__title {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e39898;
  width: 100%;
  font-weight: 600;
  font-size: 36px;
  color: #ffffff;
  padding: 32px;
  margin-bottom: 60px;
}
@media (max-width: 780px) {
  .worries .section__title {
    font-size: max(6vw, 21px);
    padding: 20px 12px;
    margin-bottom: 40px;
  }
}
.worries .flex__box {
  display: flex;
  flex-direction: row;
}
@media (max-width: 780px) {
  .worries .flex__box {
    flex-direction: column-reverse;
  }
}
.worries .flex__box__text {
  padding-top: 46px;
  width: 50%;
  padding-right: 83px;
}
@media (max-width: 780px) {
  .worries .flex__box__text {
    padding-top: 20px;
    width: 100%;
    padding-right: 0;
    padding-bottom: 30px;
  }
}
.worries .flex__box__text ul.worries__list {
  list-style: none;
  padding-left: 0;
}
.worries .flex__box__text ul.worries__list li {
  position: relative;
  border-bottom: 2px solid #b64865;
  position: relative;
  font-weight: 600;
  font-size: 36px;
  letter-spacing: 0.02em;
  color: #000000;
  padding-left: 88px;
  padding-bottom: 15px;
  padding-top: 22px;
}
@media (max-width: 780px) {
  .worries .flex__box__text ul.worries__list li {
    font-size: 20px;
    padding-left: 40px;
    padding-bottom: 10px;
    padding-top: 16px;
    width: 80%;
    margin: 0 auto;
  }
}
.worries .flex__box__text ul.worries__list li::before {
  position: absolute;
  display: block;
  content: "";
  width: 48px;
  height: 27px;
  background-image: url(../images/check.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
}
@media (max-width: 780px) {
  .worries .flex__box__text ul.worries__list li::before {
    width: 24px;
    top: 18px;
  }
}
.worries .flex__box__image {
  padding-bottom: 59px;
}
@media (max-width: 780px) {
  .worries .flex__box__image {
    padding-bottom: 10px;
  }
}
@media (max-width: 780px) {
  .worries .flex__box__image img {
    width: 70%;
    margin: 0 auto;
  }
}
.worries .answer__block {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 22px 20px;
  height: 112px;
  left: calc(50% - 600px);
  background: #ffffff;
  border: 1px solid #000000;
  font-size: 36px;
  font-weight: 600;
}
@media (max-width: 780px) {
  .worries .answer__block {
    flex-wrap: wrap;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    height: auto;
    justify-content: flex-start;
    padding: 10px 20px 20px;
  }
}
.worries .answer__block .text-red {
  font-size: 46px;
  color: #b64865;
}
@media (max-width: 780px) {
  .worries .answer__block .text-red {
    font-size: 26px;
    line-height: 1.8;
  }
}
.worries .answer__block .equal {
  font-size: 40px;
  padding-right: 8px;
}
@media (max-width: 780px) {
  .worries .answer__block .equal {
    font-size: 22px;
  }
}

.products {
  padding-bottom: 100px;
}
@media (max-width: 780px) {
  .products {
    padding-bottom: 50px;
  }
}
.products .product__item:hover {
  opacity: 0.8;
}
.products .product__block {
  display: flex;
  gap: 40px;
  justify-content: center;
}
@media (max-width: 780px) {
  .products .product__block {
    gap: 20px;
  }
}
.products .product__item {
  width: 290px;
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
  row-gap: 12px;
}
.products .product__item__image {
  height: 290px;
  margin-bottom: 17px;
}
@media (max-width: 780px) {
  .products .product__item__image {
    height: auto;
  }
}
.products .product__item__name {
  font-weight: 600;
  font-size: 20px;
  line-height: 22px;
  letter-spacing: 0.04em;
  color: #000000;
}
@media (max-width: 780px) {
  .products .product__item__name {
    font-size: 16px;
    min-height: 44px;
  }
}
.products .product__item__price .number {
  font-family: futura-pt-web-medium, sans-serif;
  font-style: normal;
  font-weight: 450;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: #1f1f1f;
}
.products .product__item__price .yen {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #1f1f1f;
}
.products .product__item__category {
  display: flex;
  flex-direction: row;
  gap: 6px;
}
@media (max-width: 780px) {
  .products .product__item__category {
    flex-wrap: wrap;
  }
}
.products .product__item__category__item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0px 14px;
  height: 22px;
  border: 1px solid #b64865;
  border-radius: 999px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #b64865;
}
@media (max-width: 780px) {
  .products .product__item__category__item {
    font-size: 10px;
    padding: 0px 10px;
    height: 18px;
  }
}
.products .product__item__text {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.04em;
}
@media (max-width: 780px) {
  .products .product__item__text {
    font-size: 13px;
  }
}

.detail .bg {
  background-image: url(../images/product-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  padding-top: 116px;
  padding-bottom: 135px;
}
@media (max-width: 780px) {
  .detail .bg {
    background-image: url(../images/product-bg-sp.jpg);
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.detail .bg .container {
  position: relative;
}
.detail .bg__logo {
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 780px) {
  .detail .bg__logo {
    position: inherit;
    right: 0;
    left: 0;
    margin: auto;
    top: 0;
    padding: 40px 20px 20px;
  }
}
@media (max-width: 780px) {
  .detail .bg__logo img {
    width: 110px;
    height: auto;
    margin: 0 auto;
  }
}
.detail .bg__detail {
  position: absolute;
  right: 0;
  top: -70px;
}
@media (max-width: 780px) {
  .detail .bg__detail {
    position: inherit;
    right: 0;
    left: 0;
    margin: auto;
    top: 0;
  }
}
.detail .bg__detail img {
  width: 252px;
  height: auto;
}
@media (max-width: 780px) {
  .detail .bg__detail img {
    width: 150px;
    height: auto;
    margin: 0 auto;
  }
}
.detail .bg__detail__information {
  font-weight: 500;
  font-size: 18px;
  line-height: 32px;
}
@media (max-width: 780px) {
  .detail .bg__detail__information {
    padding-top: 20px;
    font-size: 14px;
    line-height: 1.5;
    width: fit-content;
    margin: 0 auto;
  }
}
.detail .section__title {
  padding-top: 0;
  padding-bottom: 40px;
}
.detail .section__title .en {
  font-weight: 500;
  font-size: 19px;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 64px;
  line-height: 100px;
  letter-spacing: 0.05em;
  color: #1f1f1f;
  text-shadow: 0px 0px 16.6px rgba(255, 255, 255, 0.4);
}
@media (max-width: 780px) {
  .detail .section__title .en {
    font-size: max(10vw, 30px);
    line-height: 1.2;
    margin-bottom: 6px;
  }
}
.detail .section__title .jp {
  font-weight: 500;
  font-size: 20px;
  color: #000000;
}
@media (max-width: 780px) {
  .detail .section__title .jp {
    font-size: 18px;
    letter-spacing: 0.3em;
  }
}
.detail__description {
  font-weight: 500;
  font-size: 32px;
  text-align: center;
  letter-spacing: 0.15em;
  color: #b64865;
  margin-bottom: 70px;
}
@media (max-width: 780px) {
  .detail__description {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.detail__description02 {
  font-weight: 500;
  font-size: 24px;
  text-align: center;
  letter-spacing: 0.15em;
  color: #1f1f1f;
  margin-bottom: 58px;
}
@media (max-width: 780px) {
  .detail__description02 {
    font-size: 17px;
    margin-bottom: 20px;
  }
}
.detail__image {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}
.detail__image img {
  margin: 0 auto;
}
.detail__text {
  font-weight: 600;
  font-size: 40px;
  line-height: 100px;
  color: #000000;
  border-bottom: 1px solid #b64865;
  padding-bottom: 6px;
  width: fit-content;
  display: block;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 780px) {
  .detail__text {
    border-bottom: 0;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
  }
}
@media (max-width: 780px) {
  .detail__text span {
    font-size: 20px;
    line-height: 1.8;
    padding-bottom: 2px;
    margin: 0 auto;
    display: inline;
    border-bottom: 1px solid #b64865;
    padding-bottom: 4px;
    width: fit-content;
  }
}

.feature {
  padding-bottom: 100px;
}
@media (max-width: 780px) {
  .feature {
    padding-bottom: 50px;
  }
}
.feature .flex__box {
  display: flex;
}
@media (max-width: 780px) {
  .feature .flex__box {
    flex-direction: column;
  }
}
.feature .flex__box .image__block {
  width: 50%;
  padding: 0 88px 0 57px;
  margin-bottom: 93px;
}
@media (max-width: 780px) {
  .feature .flex__box .image__block {
    width: 100%;
    padding: 0 40px 0 40px;
    margin-bottom: 50px;
  }
}
.feature .flex__box .text__block {
  width: 50%;
  padding-left: 45px;
}
@media (max-width: 780px) {
  .feature .flex__box .text__block {
    width: 100%;
    padding-left: 0;
  }
}
.feature .flex__box .text__block ul.worries__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 43px;
}
@media (max-width: 780px) {
  .feature .flex__box .text__block ul.worries__list {
    padding-left: 0;
    gap: 12px;
    margin-bottom: 60px;
  }
}
.feature .flex__box .text__block ul.worries__list li {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 89px;
  background: #fef3f3;
  border: 1px solid #b64865;
  border-radius: 60px;
  width: 100%;
  font-weight: 600;
  font-size: 30px;
  color: #000000;
  padding: 20px 0;
}
@media (max-width: 780px) {
  .feature .flex__box .text__block ul.worries__list li {
    font-size: 19px;
    padding: 8px 0;
    height: auto;
    width: 80%;
    margin: 0 auto;
  }
}
.feature .flex__box .text__block ul.worries__list li .text-red {
  color: #b64865;
}
.feature .component__box {
  display: flex;
}
@media (max-width: 780px) {
  .feature .component__box {
    flex-direction: column;
  }
}
.feature .component__box .block__text {
  width: 50%;
}
@media (max-width: 780px) {
  .feature .component__box .block__text {
    width: 100%;
    margin-bottom: 30px;
  }
}
.feature .component__box .block__text__title {
  font-weight: 600;
  font-size: 40px;
  letter-spacing: 0.05em;
  color: #b64865;
  margin-bottom: 40px;
}
@media (max-width: 780px) {
  .feature .component__box .block__text__title {
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.4;
    text-align: center;
  }
}
.feature .component__box .block__text__desc {
  font-weight: 400;
  font-size: 20px;
  line-height: 40px;
  letter-spacing: 0.05em;
  color: #1f1f1f;
}
@media (max-width: 780px) {
  .feature .component__box .block__text__desc {
    font-size: 16px;
    line-height: 1.5;
  }
}
.feature .component__box .image__block {
  width: 50%;
  padding: 0 0 0 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 48px;
}
@media (max-width: 780px) {
  .feature .component__box .image__block {
    width: 100%;
    padding: 0;
    gap: 0;
    row-gap: 10px;
  }
}
.feature .component__box .image__block .item {
  width: 150px;
}
@media (max-width: 780px) {
  .feature .component__box .image__block .item {
    width: 50%;
  }
}
@media (max-width: 780px) {
  .feature .component__box .image__block .item img {
    width: 50%;
    margin: 0 auto;
  }
}
.feature .component__box .image__block .item__text {
  padding: 20px 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.33;
  letter-spacing: 0.05em;
  text-align: center;
  color: #1f1f1f;
  white-space: nowrap;
}
@media (max-width: 780px) {
  .feature .component__box .image__block .item__text {
    width: 100%;
    font-size: 13px;
  }
}

.howto {
  background-color: #fff6f6;
  position: relative;
  padding-bottom: 100px;
}
@media (max-width: 780px) {
  .howto {
    padding-bottom: 50px;
  }
}
.howto .howto__image {
  position: absolute;
  right: 0;
  top: 293px;
}
@media (max-width: 780px) {
  .howto .howto__image {
    position: relative;
    left: 0;
    margin: 0;
    top: 0;
    margin-bottom: 30px;
  }
}
.howto .step__block {
  max-width: 762px;
}
.howto .step__block__item {
  display: flex;
  margin-bottom: 54px;
}
@media (max-width: 780px) {
  .howto .step__block__item {
    margin-bottom: 30px;
  }
}
.howto .step__block__item__number {
  font-family: "times-new-roman", sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 24px;
  color: #b64865;
  margin-right: 50px;
}
@media (max-width: 780px) {
  .howto .step__block__item__number {
    font-size: 18px;
    margin-right: 20px;
  }
}
.howto .step__block__item__number .number {
  font-size: 36px;
}
@media (max-width: 780px) {
  .howto .step__block__item__number .number {
    font-size: 32px;
  }
}
.howto .step__block__item__content {
  font-weight: 400;
  font-size: 20px;
  line-height: 35px;
  color: #1f1f1f;
}
@media (max-width: 780px) {
  .howto .step__block__item__content {
    font-size: 16px;
    line-height: 1.5;
  }
}

.faq {
  padding-bottom: 120px;
}
@media (max-width: 780px) {
  .faq {
    padding-bottom: 50px;
  }
}

.faq__contents {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq__item {
  overflow: hidden;
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 42px;
  background: #f6f6f6;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  min-height: 80px;
  font-weight: 500;
  font-size: 20px;
  color: #1f1f1f;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 780px) {
  .faq__question {
    padding: 10px 20px 10px 10px;
    font-size: 15px;
  }
}
.faq__question__text {
  text-align: left;
  display: flex;
  align-items: center;
}
.faq__question__text__icon {
  font-weight: 700;
  font-size: 34px;
  color: #a4a4a4;
  font-family: "Noto Sans JP", sans-serif;
  margin-right: 10px;
}
@media (max-width: 780px) {
  .faq__question__text__icon {
    font-size: 24px;
  }
}

.faq__icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background: #333;
  transition: 0.3s;
}

.faq__icon::before {
  width: 16px;
  height: 2px;
  top: 7px;
  left: 0;
}

.faq__icon::after {
  width: 2px;
  height: 16px;
  top: 0;
  left: 7px;
}

.faq__item.active .faq-icon::after {
  transform: scaleY(0);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 350;
  font-size: 16px;
  line-height: 2;
  color: #000000;
}
@media (max-width: 780px) {
  .faq__answer {
    font-size: 15px;
  }
}
.faq__answer__icon {
  font-style: normal;
  font-weight: 700;
  font-size: 34px;
  color: #b64865;
  font-family: "Noto Sans JP", sans-serif;
  margin-right: 10px;
}
@media (max-width: 780px) {
  .faq__answer__icon {
    font-size: 24px;
  }
}

.faq__answer__inner {
  padding: 10px 40px 30px 40px;
  line-height: 1.8;
  border-left: #d9d9d9 solid 2px;
  border-right: #d9d9d9 solid 2px;
  border-bottom: #d9d9d9 solid 2px;
  box-sizing: content-box;
}
@media (max-width: 780px) {
  .faq__answer__inner {
    padding: 10px 20px 20px 20px;
  }
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta {
  background: #333;
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  background-image: url(../images/cta-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 540px;
  width: 100%;
}
@media (max-width: 780px) {
  .cta {
    padding: 50px 0px;
    min-height: 300px;
    background-position: 60% 40%;
  }
}
.cta .container .cta__title {
  text-align: left;
  margin-bottom: 46px;
}
@media (max-width: 780px) {
  .cta .container .cta__title {
    margin-bottom: 32px;
  }
}
@media (max-width: 780px) {
  .cta .container .cta__title img {
    width: 160px;
  }
}
.cta .container .cta__text {
  font-weight: 600;
  font-size: 36px;
  line-height: 1.4;
  color: #ffffff;
  margin-bottom: 30px;
  text-align: left;
}
@media (max-width: 780px) {
  .cta .container .cta__text {
    font-size: 24px;
    line-height: 1.4;
  }
}
.cta .container .btn__block {
  text-align: left;
}
.cta .container .btn__block__desc {
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #ffffff;
  margin-bottom: 25px;
}
.cta .container .btn__block a.btn {
  text-decoration: none;
  padding: 6px 40px 6px 45px;
  width: 250px;
  height: 40.65px;
  background: #ffffff;
  border-radius: 999px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 12px;
  display: flex;
  align-items: center;
  text-align: center;
  font-weight: 500;
  font-size: 12px;
  color: #1f1f1f;
  position: relative;
  transition: all 0.3s;
}
.cta .container .btn__block a.btn::after {
  right: 20px;
  position: absolute;
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border-left: 9px solid #f2bec4;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}
.cta .container .btn__block a.btn:hover {
  background-color: #f2bec4;
}
.cta .container .btn__block a.btn:hover::after {
  border-left: 9px solid #fff;
}

/*
footer
*/
footer {
  padding: 0 0 57px;
}
@media (max-width: 780px) {
  footer {
    padding: 0 0 50px;
  }
}
footer .footer__inner {
  max-width: 940px;
  width: 100%;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 100px;
}
@media (max-width: 780px) {
  footer .footer__inner {
    padding-top: 50px;
  }
}
footer .flex__box {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 780px) {
  footer .flex__box {
    flex-direction: column;
  }
}
footer .footer__logo {
  width: 140px;
  height: 37px;
}
@media (max-width: 780px) {
  footer .footer__logo {
    width: 110px;
    margin-bottom: 20px;
  }
}
footer .footer__nav {
  width: 100%;
}
footer .footer__nav ul.footer__menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 110px;
}
@media (max-width: 780px) {
  footer .footer__nav ul.footer__menu {
    flex-wrap: wrap;
    padding-left: 0;
    justify-content: flex-start;
    margin-bottom: 50px;
    row-gap: 12px;
  }
}
footer .footer__nav ul.footer__menu li a {
  list-style: none;
  text-decoration: none;
  padding: 0 42px;
  font-size: 14px;
  color: #2c2726;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 780px) {
  footer .footer__nav ul.footer__menu li a {
    margin-bottom: 8px;
    font-size: 13px;
    padding: 0 42px 0 0;
  }
}
footer .footer__nav ul.footer__menu li ul.sub__menu {
  list-style: none;
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 14px;
  font-size: 14px;
  color: #2c2726;
  text-align: left;
  padding: 5px 0;
}
@media (max-width: 780px) {
  footer .footer__nav ul.footer__menu li ul.sub__menu {
    margin-top: 0;
    font-size: 13px;
  }
}
footer .footer__nav ul.footer__menu li ul.sub__menu li a {
  list-style: none;
  text-decoration: none;
  padding: 6px 42px;
  font-size: 14px;
  color: #2c2726;
  display: block;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 780px) {
  footer .footer__nav ul.footer__menu li ul.sub__menu li a {
    padding: 0 42px 0 0;
    font-size: 12px;
  }
}
footer .footer__nav ul.footer__menu__small {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 40px;
}
@media (max-width: 780px) {
  footer .footer__nav ul.footer__menu__small {
    padding-left: 0;
    justify-content: flex-start;
  }
}
footer .footer__nav ul.footer__menu__small li a {
  list-style: none;
  text-decoration: none;
  padding: 0 42px;
  font-size: 14px;
  color: #2c2726;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 780px) {
  footer .footer__nav ul.footer__menu__small li a {
    font-size: 12px;
    padding: 0 20px 12px 0;
  }
}
footer .footer__copyright {
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 350;
  font-size: 14px;
  color: #2c2726;
}
@media (max-width: 780px) {
  footer .footer__copyright {
    font-size: 10px;
  }
}

/*下層ページ*/
main.page {
  padding-top: 50px;
  overflow: hidden;
}
@media (max-width: 780px) {
  main.page {
    padding-top: 20px;
  }
}
main.page {
  /*
  パンくず
  下層ページのパンくずはHTMLでも非表示になっています。
  表示する場合はコメントアウトを外してください。
  */
}
main.page .page__title {
  padding: 50px 0;
  margin: 0 auto;
}
@media (max-width: 780px) {
  main.page .page__title {
    padding: 20px 0 0;
  }
}
main.page .page__title .jp {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  letter-spacing: 0.5em;
  color: #b64865;
}
@media (max-width: 780px) {
  main.page .page__title .jp {
    font-size: 14px;
  }
}
main.page .page__title .en {
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  text-align: center;
  letter-spacing: 0.2em;
  color: #b64865;
  margin-bottom: 40px;
}
@media (max-width: 780px) {
  main.page .page__title .en {
    font-size: 26px;
    margin-bottom: 5px;
  }
}
main.page h2.page-header__title {
  padding: 40px 0;
}
main.page .page-content {
  line-height: 2;
  padding: 0 0 80px;
}
@media (max-width: 780px) {
  main.page .page-content {
    padding: 0 0 40px;
  }
}
main.page .page-content__inner {
  padding: 0 0 40px;
}
@media (max-width: 780px) {
  main.page .page-content__inner {
    padding: 0 0 20px;
  }
}
main.page .page-content__title {
  font-weight: 500;
  font-size: 32px;
  line-height: 48px;
  letter-spacing: 0.06em;
  color: #2c2726;
  margin-bottom: 60px;
}
@media (max-width: 780px) {
  main.page .page-content__title {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 30px;
  }
}
main.page .page-content p {
  text-align: justify;
  text-justify: inter-ideograph;
  margin-bottom: 40px;
}
@media (max-width: 780px) {
  main.page .page-content p {
    margin-bottom: 20px;
  }
}
main.page .page-content p img {
  padding: 80px 0;
  margin: 0 auto;
}
@media (max-width: 780px) {
  main.page .page-content p img {
    padding: 40px 0;
  }
}
main.page .page-content__wide {
  width: 100%;
  padding: 80px 0 40px;
}
@media (max-width: 780px) {
  main.page .page-content__wide {
    padding: 20px 0 20px;
  }
}
main.page .page-content .bg-color {
  background-color: #fff6f6;
  position: relative;
}
main.page .page-content .bg-color::before {
  width: 200%;
  height: 100%;
  display: block;
  content: "";
  position: absolute;
  left: -50%;
  top: 0;
  background-color: #fff6f6;
  z-index: -1;
}

.header-image {
  height: 380px;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 780px) {
  .header-image {
    height: 200px;
  }
}
.header-image img {
  position: absolute;
  left: 0;
  top: 100px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  z-index: 0;
}
.header-image::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100px;
  width: 100%;
  height: calc(100% - 100px);
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}
.header-image .container {
  position: absolute;
  left: 0;
  right: 0;
  top: 100px;
  height: calc(100% - 100px);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-image .page__title {
  padding: 0;
  margin: 0;
  text-align: center;
}
.header-image .page__title .jp,
.header-image .page__title .en {
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

/* breadcrumb */
.breadcrumb {
  padding: 16px 0;
}
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
  color: #666;
}
.breadcrumb__item {
  display: flex;
  align-items: center;
}
.breadcrumb__item a {
  color: #666;
  text-decoration: none;
}
.breadcrumb__item a:hover {
  text-decoration: underline;
}
.breadcrumb__item:not(:last-child)::after {
  content: "\203A";
  margin: 0 8px;
  color: #999;
}
.breadcrumb__item--current {
  color: #2c2726;
}
@media (max-width: 780px) {
  .breadcrumb {
    padding: 10px 0;
  }
  .breadcrumb__list {
    font-size: 11px;
  }
}

.color-red {
  color: #b64865 !important;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

a.btn.btn-more {
  text-decoration: none;
  border: 1px solid #2c2726;
  border-radius: 60px;
  padding: 7px 9px;
  width: fit-content;
  min-width: 160px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #1f1f1f;
  margin: 0 auto;
  transition: all 0.3s;
}
a.btn.btn-more:hover {
  background-color: #f2bec4;
  opacity: 0.9;
}

a.btn.btn-detail {
  text-decoration: none;
  border: 1px solid #b64865;
  border-radius: 60px;
  width: fit-content;
  min-width: 250px;
  padding: 7px 9px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #1f1f1f;
  transition: all 0.3s;
  position: relative;
  margin: 0 0 0 auto;
}
a.btn.btn-detail::after {
  right: 20px;
  position: absolute;
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border-left: 9px solid #f2bec4;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}
a.btn.btn-detail:hover {
  background-color: #f2bec4;
}
a.btn.btn-detail:hover::after {
  border-left: 9px solid #fff;
}

/* TOPに戻る */
#page-top a {
  background-color: rgba(191, 190, 190, 0.73);
  bottom: 0;
  color: #fff;
  padding: 12px;
  position: fixed;
  right: 0;
}

/* =========================
   プライバシーポリシー等
========================= */
.policy__section {
  margin-bottom: 50px;
}
.policy__section__title {
  font-size: 20px;
  font-weight: 600;
  color: #2c2726;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e3d9d9;
}
.policy__list {
  margin: 0 0 20px;
  padding-left: 1.5em;
}
.policy__list li {
  margin-bottom: 10px;
  line-height: 1.8;
}
@media (max-width: 780px) {
  .policy__section {
    margin-bottom: 30px;
  }
  .policy__section__title {
    font-size: 16px;
    margin-bottom: 14px;
    padding-bottom: 8px;
  }
}

/* =========================
   会社概要テーブル
========================= */
.company__table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #e3d9d9;
}
.company__table th,
.company__table td {
  padding: 24px 20px;
  text-align: left;
  font-size: 16px;
  line-height: 1.8;
  border-bottom: 1px solid #e3d9d9;
  vertical-align: top;
}
.company__table th {
  width: 220px;
  font-weight: 600;
  color: #b64865;
  background-color: #fff6f6;
  letter-spacing: 0.1em;
}
.company__table td a {
  color: #2c2726;
  text-decoration: underline;
}
.company__table td a:hover {
  text-decoration: none;
}
@media (max-width: 780px) {
  .company__table th,
  .company__table td {
    display: block;
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
  }
  .company__table th {
    border-bottom: none;
    padding-bottom: 6px;
  }
  .company__table tr {
    display: block;
    border-bottom: 1px solid #e3d9d9;
  }
  .company__table td {
    border-bottom: none;
    padding-top: 0;
  }
}

/* =========================
   ニュース一覧
========================= */
.news__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.news__item {
  border-bottom: 1px solid #e3d9d9;
}
.news__item:first-child {
  border-top: 1px solid #e3d9d9;
}
.news__item__link {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 30px 0;
  text-decoration: none;
  color: #2c2726;
  transition: opacity 0.3s;
}
.news__item__link:hover {
  opacity: 0.7;
}
.news__item__thumb {
  flex: 0 0 200px;
  overflow: hidden;
}
.news__item__thumb img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}
.news__item__body {
  flex: 1;
}
.news__item__date {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #b64865;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.news__item__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 10px;
}
.news__item__excerpt {
  font-size: 14px;
  line-height: 1.8;
  color: #595454;
  margin-bottom: 0;
}
@media (max-width: 780px) {
  .news__item__link {
    flex-direction: column;
    gap: 12px;
    padding: 20px 0;
  }
  .news__item__thumb {
    flex: none;
    width: 100%;
  }
  .news__item__thumb img {
    height: auto;
    aspect-ratio: 16 / 9;
  }
  .news__item__title {
    font-size: 16px;
  }
}
.news__empty {
  text-align: center;
  padding: 60px 0;
}

/* =========================
   ニュース詳細
========================= */
.news__single__date {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #b64865;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.news__single__title {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e3d9d9;
}
.news__single__thumb {
  margin-bottom: 30px;
}
.news__single__thumb img {
  width: 100%;
  height: auto;
}
.news__single__content {
  font-size: 16px;
  line-height: 2;
  color: #2c2726;
}
.news__single__content p {
  margin-bottom: 1.5em;
}
.news__single__content img {
  max-width: 100%;
  height: auto;
}
.news__single__back {
  padding-top: 40px;
}
.news__single__back a {
  color: #b64865;
  text-decoration: none;
}
.news__single__back a:hover {
  text-decoration: underline;
}
@media (max-width: 780px) {
  .news__single__title {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 14px;
  }
  .news__single__content {
    font-size: 14px;
  }
}

/* ページネーション */
.news__pagination {
  margin-top: 60px;
}
.news__pagination ul.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
}
.news__pagination .page-numbers li {
  display: flex;
}
.news__pagination a.page-numbers,
.news__pagination span.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #e3d9d9;
  border-radius: 50px;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  color: #2c2726;
  text-decoration: none;
  transition: all 0.3s;
}
.news__pagination a.page-numbers:hover {
  background-color: #f2bec4;
  border-color: #f2bec4;
}
.news__pagination span.page-numbers.current {
  background-color: #b64865;
  border-color: #b64865;
  color: #fff;
}
/*# sourceMappingURL=style.css.map */