@charset "UTF-8";

@font-face {
  font-family: 'Neura Display';
  src: url('../fonts//NeuraDisplayVariable[wght].ttf') format('truetype');
  font-weight: 400 700;
  font-display: swap;
}
:root {
   --color-black: #2D2D2D;
   --color-white: #FFFFFF;
   --color-gray: #807E7B;
   --color-navy: #1D4984;
   --color-pink: #DBB7C3;
   --color-gold: #BD9E85;
}

/*============================
全体
============================*/
html {
  font-size: 10px;
}
body {
  font-family: "LINE Seed JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--color-black);
  letter-spacing: 0;
  width: 100%;
}
main {
  overflow-x: hidden;
}
a {
  color: var(--color-black);
  text-decoration: none;
}
img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
li {
  list-style: none;
}
.neura-display {
  font-family: 'Neura Display', sans-serif;
}
.serif {
  font-family: "Noto Serif JP", serif;
}

@media screen and (max-width: 767px) {
  /* コンテンツ幅 */
  .wrapper {
    width: 100%;
  }
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .sp_only {
    display: none;
  }
}
/*============================
共通
============================*/
.faq-bg {
  background: linear-gradient(
  0deg,
  rgba(217, 241, 244, 1) 13%,
  rgba(217, 241, 244, 0.3) 77%,
  rgba(217, 241, 244, 0) 99%
  );
}
.faq__section-title-box {
  margin: 0 auto;
  position: relative;
  text-align: center;
}
.faq__section-title-box::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 56%;
  transform: translate(-50%, -50%);
  width: 21.3rem;
  height: 2px;
  background: var(--color-navy);
}
.faq__section-title {
  color: var(--color-navy);
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: .05em;
  text-align: left;
}
.faq__section-subtitle {
  color: var(--color-gray);
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: .05em;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .faq__section-title-box::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 56%;
    transform: translate(-50%, -50%);
    width: 18rem;
    height: 1px;
    background: var(--color-navy);
  }
  .faq__section-title {
    color: var(--color-navy);
  }
  .faq__section-subtitle {
    color: var(--color-gray);
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 768px) {
  
}
/*============================
FAQ・ファーストビュー
============================*/
#faq__fv {
  position: relative;
  width: 100%;
  height: 40.2rem;
  background: url("../img/faq-fv.webp") left top / cover no-repeat;
  margin-top: 14.1rem;
  padding: 11.6rem 0;
}
.faq__fv-inner {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 2%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.faq__title-box {
  text-align: center;
}
.faq__title {
  position: relative;
  display: inline-block;
  color: var(--color-navy);
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .05em;
  margin-bottom: 1.1rem;
}
.faq__title::after {
  content: "";
  position: absolute;
  bottom: .5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 21.3rem;
  height: 2px;
  background-color: var(--color-navy);
}
.faq__subtitle {
  color: var(--color-white);
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: .05em;
  text-shadow: 2px 2px 2px #B4B098;
  margin-bottom: .7rem;
}
.faq__txt {
  color: var(--color-white);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: .05em;
  text-shadow: 2px 2px 2px #B4B098;
}
@media screen and (max-width: 1200px) {
  #faq__fv {
    background: url("../img/faq-fv_sp.webp") left / cover no-repeat;
  }
  .faq__fv-inner {
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  #faq__fv {
    width: 100%;
    height: 68rem;
    background: url("../img/faq-fv_sp.webp") left bottom / cover no-repeat;
    margin-top: 0;
    padding: 40rem 0 0;
  }
  .faq__title {
    font-size: 6rem;
    margin-bottom: .6rem;
  }
  .faq__title::after {
    bottom: .5rem;
    width: 17rem;
    height: 1px;
  }
  .faq__subtitle {
    font-size: 2.8rem;
    margin-bottom: .4rem;
  }
  .faq__txt {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 768px) {
  
}

/*============================
FAQ
============================*/
#faq {
  padding: 9.6rem 0 16rem;
}
.faq-nav {
  width: 100%;
  max-width: 54rem;
  background-color: #FFFCF6;
  margin: 0 auto 6.4rem;
  padding-top: 4rem;
}
.faq-nav__title {
  color: var(--color-navy);
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}
.faq-nav__inner {
  max-width: 30rem;
  display: flex;
  align-items: center;
  margin: 0 auto;
  padding: 2.4rem 0 4rem;
}
.faq-nav__list {
  display: flex;
  flex-flow: column;
  gap: 1.6rem;
}
.faq-nav__link {
  color: var(--color-navy);
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5;
  display: flex;
  align-items: center;
}
.faq-nav__number {
  width: 1em;
  text-align: center;
  flex-shrink: 0;
}
.faq-nav__line {
  width: 1px;
  height: 1em;
  background: var(--color-navy);
  margin: 0 1.4rem;
  flex-shrink: 0;
}
.faq-cont {
  background-color: var(--color-white);
  width: 100%;
  max-width: 102.4rem;
  margin: 0 auto 16.4rem;
}
.faq-cont__inner {
  padding: 6.4rem 0 2.4rem;
}
.faq-category {
  margin-bottom: 4rem;
}
.faq-category:last-child {
  margin-bottom: 0;
}
.faq-category__titlebox {
  color: var(--color-navy);
  font-size: 3.2rem;
  font-weight: bold;
  display: flex;
  align-items: baseline;
  padding: 0 0 3.2rem calc(118 / 1024 * 100%);
}
.faq-category__number {
  width: 1em;
  text-align: center;
  flex-shrink: 0;
}
.faq-category__line {
  width: 1px;
  height: 2.1rem;
  background: var(--color-navy);
  margin: 0 2.4rem;
  flex-shrink: 0;
}
.faq-category__title {
  line-height: 1.4;
  letter-spacing: .05em;
}
.faq-accordion__titlebox {
  position: relative;
  width: 100%;
  background-color: #ECFCFE;
  cursor: pointer;
  padding: 1.6rem 0;
}
.faq-accordion__titlebox::before,
.faq-accordion__titlebox::after {
  position: absolute;
  content:'';
  width: 12px;
  height: 2px;
  border-radius: 6px;
  background-color: var(--color-navy);
}
.faq-accordion__titlebox::before {
  top:48%;
  right: 6rem;
  transform: rotate(0deg);
}
.faq-accordion__titlebox::after {
  top:48%;
  right: 6rem;
  transform: rotate(90deg);
  transition: .3s;
}
.faq-accordion__titlebox.close::before,
.faq-accordion__titlebox.close::after {
  transform: rotate(0deg);
}
.faq-accordion__title {
  width: calc(940 / 1024 * 100%);
  position: relative;
  display: flex;
  align-items: center;
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--color-navy);
  line-height: 1.5;
  text-align: left;
  padding-left: calc(156 / 1024 * 100%);
  flex-shrink: 0;
}
.faq-accordion__title::before {
  content: "Q";
  position: absolute;
  top: 0;
  left: calc(134 / 1024 * 100%);
  font-size: 1em;
  font-weight: bold;
  color: var(--color-navy);
}
.faq-accordion__txtbox {
  width: 100%;
  margin-top: .8rem;
  max-height: 0;
  opacity: 0;
  transition:
    max-height 0.5s cubic-bezier(0.25, 1, 0.5, 1),
    opacity 0.5s ease,
    padding 0.5s ease;
}
.faq-accordion__txtbox.open {
  max-height: 40rem;
  opacity: 1;
}
.faq-accordion__txt {
  width: calc(870 / 1024 * 100%);
  position: relative;
  line-height: 1.6;
  letter-spacing: .05em;
  text-align: left;
  padding: 1.6rem 0 4rem calc(156 / 1024 * 100%);
}
.faq-accordion__txt::before {
  content: "A";
  position: absolute;
  top: 1.6rem;
  left: calc(150 / 1024 * 100%);
  font-size: 1em;
  font-weight: bold;
  color: var(--color-black);
}
.faq-accordion__text-ul {
  text-decoration: underline;
}
.faq-accordion__text-ul-b {
  font-weight: bold;
  text-decoration: underline;
}
@media screen and (max-width: 1200px) {
  #faq {
    padding: 9.6rem 4rem 16rem;;
  }
  .faq-cont {
    background-color: var(--color-white);
    width: 100%;
    margin: 0 auto 16.4rem;
  }
  .faq-category__titlebox {
    padding: 0 0 3.2rem calc(90 / 1024 * 100%);
  }
  .faq-accordion__titlebox::before {
    right: 4rem;
  }
  .faq-accordion__titlebox::after {
    right: 4rem;
  }
  .faq-accordion__title {
    padding-left: calc(136 / 1024 * 100%);
  }
  .faq-accordion__title::before {
    left: calc(104 / 1024 * 100%);
  }
  .faq-accordion__txt {
    padding: 1.6rem 0 4rem calc(136 / 1024 * 100%);
  }
  .faq-accordion__txt::before {
    left: calc(120 / 1024 * 100%);
  }
}
@media screen and (max-width: 767px) {
  #faq {
    padding: 4rem 2rem 6rem;
  }
  .faq-nav {
    margin: 0 auto 4rem;
    padding-top: 2.4rem;
  }
  .faq-nav__title {
    font-size: 2rem;
  }
  .faq-nav__inner {
    padding: 1.6rem 0 2.4rem 2.4rem;
  }
  .faq-nav__list {
    gap: 1.2rem;
  }
  .faq-nav__link {
    font-size: 1.6rem;
  }
  .faq-nav__number {
    width: 1em;
  }
  .faq-nav__line {
    margin: 0 .8rem;
  }
  .faq-cont {
    margin: 0 auto 6.4rem;
    padding: 0;
  }
  .faq-cont__inner {
    padding: 1.6rem 0 .8rem;
  }
  .faq-category {
    margin-bottom: 1.6rem;
  }
  .faq-category__titlebox {
    font-size: 2.4rem;
    align-items: baseline;
    padding: 0 0 1.6rem 1.6rem;
  }
  .faq-category__line {
    height: 1.6rem;
    margin: 0 1.2rem;
  }
  .faq-accordion__titlebox {
    padding: .8rem 0;
  }
  .faq-accordion__titlebox::before {
    right: 1.6rem;
  }
  .faq-accordion__titlebox::after {
    right: 1.6rem;
  }
  .faq-accordion__titlebox.close::before,
  .faq-accordion__titlebox.close::after {
    transform: rotate(0deg);
  }
  .faq-accordion__title {
    width: 90%;
    font-size: 2rem;
    padding-left: 4.8rem;
  }
  .faq-accordion__title::before {
    left: 2rem;
  }
  .faq-accordion__txtbox {
    margin-top: .4rem;
  }
  .faq-accordion__txtbox.open {
    max-height: 40rem;
    opacity: 1;
  }
  .faq-accordion__txt {
    font-size: 1.4rem;
    width: 90%;
    padding: .8rem 0 1.6rem 4.8rem;
  }
  .faq-accordion__txt::before {
    top: .8rem;
    left: 2.4rem;
  }
}
@media screen and (min-width: 768px) {
}

/*============================
スターターキット
============================*/
#starterkit {
  width: min(100%, 102rem);
  background-color: var(--color-white);
  border-radius: 16px;
  margin: 0 auto;
  padding: 3.2rem 4rem;
}
.starterkit_title {
  color: var(--color-navy);
  font-size: 2.4rem;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2.4rem;
}
.starterkit_description {
  display: grid;
  grid-template-columns: minmax(19rem, 24rem) 2.5rem minmax(32rem, 46rem);
  align-items: center;
  justify-content: center;
  gap: 3.2rem;
}
.starterkit_mist {
  text-align: center;
}
.starterkit_mist_img {
  width: 100%;
  max-width: 22rem;
  margin: 0 auto 1rem;
}
.starterkit_mist_img img {
  width: 100%;
  height: auto;
  display: block;
}
.starterkit_mist p,
.starterkit_flavor p {
  color: var(--color-black);
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.polygon {
  width: 2.5rem;
}
.polygon img {
  width: 100%;
  height: auto;
  display: block;
}
.starterkit_flavor {
  width: 100%;
}
.starterkit_flavor p {
  margin-bottom: 0.8rem;
}
.packages_img {
  width: 100%;
}
.packages_img img {
  width: 100%;
  height: auto;
  display: block;
}
.starterkit_btn_area {
  background-color: var(--color-navy);
  width: min(100%, 32rem);
  min-height: 5.6rem;
  border-radius: 8px;
  border: 2px solid var(--color-navy);
  margin: 3.2rem auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: .3s;
}
.starterkit_btn {
  color: var(--color-white);
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  #starterkit {
    border-radius: 10px;
    padding: 2.4rem 1.6rem;
  }
  .starterkit_title {
    font-size: 2rem;
    margin-bottom: 2.4rem;
  }
  .starterkit_description {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
  }
  .starterkit_mist {
    width: 100%;
  }
  .starterkit_mist_img {
    max-width: 24rem;
  }
  .polygon {
    transform: rotate(90deg);
  }
  .starterkit_flavor {
    width: 100%;
  }
  .starterkit_flavor p {
    text-align: center;
  }
  .packages_img {
    max-width: 42rem;
    margin: 0 auto;
  }
  .starterkit_btn_area {
    width: 100%;
    max-width: 32rem;
    min-height: 5rem;
    margin-top: 3rem;
  }
  .starterkit_btn {
    font-size: 1.8rem;
  }
}

@media screen and (min-width: 768px) {
 .starterkit_btn_area:hover {
  background-color: var(--color-white);
 }
 .starterkit_btn_area:hover .starterkit_btn {
  color: var(--color-navy);
 }
}