@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap");
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* =========================================================
base - 基本設定
========================================================= */
body {
  overflow-x: hidden;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.6;
  color: #333333;
  font-family: "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  letter-spacing: 0.1em;
}

/* =========================================================
section - コンテンツの大枠
========================================================= */
.l-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

/* =========================================================
text - テキストのコンポーネント
========================================================= */
.c-basic-txt {
  font-size: 13px;
  font-size: 0.8125rem;
}

@media screen and (min-width: 800px) {
  .c-basic-txt {
    font-size: 26px;
    font-size: 1.625rem;
  }
}

/* =========================================================
media - 画像関係のコンポーネント
========================================================= */
.c-responsive-img, .c-img-btn__img {
  display: block;
  height: auto;
  max-width: 100%;
}

/* =========================================================
button - ボタン関係のコンポーネント
========================================================= */
.c-img-btn {
  display: inline-block;
  -webkit-transition: .3s;
  transition: .3s;
}

.c-img-btn:hover {
  opacity: .7;
}

.c-img-btn__img {
  -webkit-box-shadow: 1.71px 4.698px 15px 0px #b8b8b8;
          box-shadow: 1.71px 4.698px 15px 0px #b8b8b8;
}

/* =========================================================
youtube - YouTubeのコンポーネント
========================================================= */
.c-youtube {
  max-width: calc(672px + 16%);
  padding: 0 8%;
  margin: 0 auto;
}

.c-youtube__in {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.c-youtube__in iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* =========================================================
icon - アイコンのコンポーネント
========================================================= */
.c-faq-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 35px;
  height: 35px;
  background-color: #f88dab;
  border-radius: 50%;
  font-size: 18px;
  font-size: 1.125rem;
  color: #fff;
  letter-spacing: 0;
}

@media screen and (min-width: 800px) {
  .c-faq-icon {
    width: 70px;
    height: 70px;
    padding-bottom: 3px;
    font-size: 36px;
    font-size: 2.25rem;
  }
}

/* =========================================================
	copyright - コピーライト
========================================================= */
.c-copyright {
  font-size: 10px;
  font-size: 0.625rem;
  color: #fff;
}

@media screen and (min-width: 800px) {
  .c-copyright {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

/* =========================================================
hero - ファーストビュー
========================================================= */
.p-hero__btn {
  position: absolute;
  width: calc(700 / 800 * 100%);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: calc(46 / 800 * 100%);
}

/* =========================================================
section - セクションの大枠など
========================================================= */
.p-section__btn {
  position: absolute;
  width: calc(620 / 800 * 100%);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: calc(70 / 800 * 100%);
}

.p-section--cv03 .p-section__btn {
  bottom: calc(123 / 800 * 100%);
}

/* =========================================================
list - リストなど
========================================================= */
.p-faq-list {
  padding: 0 5% 12%;
  background-color: #fee6e5;
}

.p-faq-list__item {
  background-color: #fff;
  -webkit-box-shadow: 0px 5px 5px 0px #dbdbdb;
          box-shadow: 0px 5px 5px 0px #dbdbdb;
}

.p-faq-list__item + .p-faq-list__item {
  margin-top: 1rem;
}

@media screen and (min-width: 800px) {
  .p-faq-list__item + .p-faq-list__item {
    margin-top: 2.25rem;
  }
}

.p-faq-list__question {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  padding: .9rem 3rem .9rem .9rem;
  position: relative;
  cursor: pointer;
  -webkit-transition: .3s;
  transition: .3s;
}

.p-faq-list__question:hover {
  opacity: .7;
}

@media screen and (min-width: 800px) {
  .p-faq-list__question {
    padding: 1.8rem 7rem 1.8rem 1.8rem;
  }
}

.p-faq-list__question::after {
  content: '';
  display: block;
  width: 15px;
  height: 15px;
  border-bottom: 2px solid #333;
  border-left: 2px solid #333;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: absolute;
  top: .75rem;
  right: 1.25rem;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (min-width: 800px) {
  .p-faq-list__question::after {
    width: 30px;
    height: 30px;
    border-bottom-width: 3px;
    border-left-width: 3px;
    top: 1.5rem;
    right: 2.5rem;
  }
}

.p-faq-list__question.is-opened::after {
  -webkit-transform: rotate(-225deg);
          transform: rotate(-225deg);
  top: 1.15rem;
}

@media screen and (min-width: 800px) {
  .p-faq-list__question.is-opened::after {
    top: 2.25rem;
  }
}

.p-faq-list__question.is-opened + .p-faq-list__answer {
  visibility: visible;
  opacity: 1;
  height: auto;
  padding: .9rem 3rem 2.25rem .9rem;
}

@media screen and (min-width: 800px) {
  .p-faq-list__question.is-opened + .p-faq-list__answer {
    padding: 1.8rem 7rem 4.5rem 1.8rem;
  }
}

.p-faq-list__answer {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  visibility: hidden;
  opacity: 0;
  height: 0;
  padding: 0 3rem 0 .9rem;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (min-width: 800px) {
  .p-faq-list__answer {
    padding: 0 7rem 0 1.8rem;
  }
}

.p-faq-list__answer::before {
  content: '';
  width: calc(100% - 2.5rem);
  height: 2px;
  background-color: #ccc;
  position: absolute;
  top: 0;
  left: 1.25rem;
  background: repeating-linear-gradient(90deg, #fee6e5 0, #f9ebef 8px, #fff 8px, #fff 12px);
}

@media screen and (min-width: 800px) {
  .p-faq-list__answer::before {
    width: calc(100% - 5rem);
    height: 4px;
    left: 2.5rem;
    background: repeating-linear-gradient(90deg, #fee6e5 0, #f9ebef 16px, #fff 16px, #fff 24px);
  }
}

.p-faq-list__icon {
  min-width: 35px;
  margin-right: 1rem;
}

@media screen and (min-width: 800px) {
  .p-faq-list__icon {
    min-width: 70px;
    margin-right: 2rem;
  }
}

@media screen and (min-width: 800px) {
  .p-faq-list__txt {
    letter-spacing: .3rem;
  }
}

/* =========================================================
footer - フッター
========================================================= */
.p-footer {
  background-color: #333;
  padding: 1.3rem 0 1rem;
  text-align: center;
}

@media screen and (min-width: 800px) {
  .p-footer {
    padding: 2.6rem 0 2rem;
  }
}

.p-footer__link {
  display: inline-block;
  font-size: 12px;
  font-size: 0.75rem;
  color: #fff;
  text-decoration: none;
  -webkit-transition: .3s;
  transition: .3s;
  margin-bottom: .7rem;
}

.p-footer__link:hover {
  opacity: .7;
}

@media screen and (min-width: 800px) {
  .p-footer__link {
    font-size: 24px;
    font-size: 1.5rem;
    margin-bottom: 1.4rem;
  }
}
