@charset "UTF-8";

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
}
body, h1, h2, h3, p, ul, li, figure {
    margin: 0;
    padding: 0;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}
ul {
    list-style: none;
}
a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}
a:hover {
    opacity: 0.7;
}

body {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #FFFFFF;
    color: #333;
}

/* Layout */
.l-container {
    width: 100%;
    position: relative;
}
.l-main {
    width: 100%;
}
.container {
    position: relative;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* Sections */
.p-section {
    width: 100%;
    font-size: 0;
    line-height: 0;
    background-size: 100% auto;
}
.p-section img, .p-section picture {
    width: 100%;
    display: block;
}



/* ========================================
   Backgrounds for Sections (PC Only)
   ======================================== */
section#section-01 { background: url(../img_pc/section_01.webp) no-repeat top center; }
section#section-02 { background: url(../img_pc/section_02.webp) no-repeat top center; }
section#section-03 { background: url(../img_pc/section_03.webp) no-repeat top center; }
section#section-04 { background: url(../img_pc/section_04.webp) no-repeat top center; }
section#section-05 { background: url(../img_pc/section_05.webp) no-repeat top center; }
section#section-06 { background: url(../img_pc/section_06.webp) no-repeat top center; }
section#section-07 { background: url(../img_pc/section_07.webp) no-repeat top center; }
section#section-08 { background: url(../img_pc/section_08.webp) no-repeat top center; }
section#section-09 { background: url(../img_pc/section_09.webp) no-repeat top center; }
section#section-10 { background: url(../img_pc/section_10.webp) no-repeat top center; }
section#section-11 { background: url(../img_pc/section_11.webp) no-repeat top center; }
section#section-12 { background: url(../img_pc/section_12.webp) no-repeat top center; }
section#section-13 { background: url(../img_pc/section_13.webp) no-repeat top center; }
section#section-14 { background: url(../img_pc/section_14.webp) no-repeat top center; }
section#section-15 { background: url(../img_pc/section_15.webp) no-repeat top center; }
section#section-16 { background: url(../img_pc/section_16.webp) no-repeat top center; }
section#section-17 { background: url(../img_pc/section_17.webp) no-repeat top center; }
section#section-18 { background: url(../img_pc/section_18.webp) no-repeat top center; }
section#section-19 { background: url(../img_pc/section_19.webp) no-repeat top center; }
section#section-20 { background: url(../img_pc/section_20.webp) no-repeat top center; }
section#section-21 { background: url(../img_pc/section_21.webp) no-repeat top center; }
section#section-22 { background: url(../img_pc/section_22.webp) no-repeat top center; }
section#section-23 { background: url(../img_pc/section_23.webp) no-repeat top center; }
section#section-24 { background: url(../img_pc/section_24.webp) no-repeat top center; }
section#section-26 { background: url(../img_pc/section_26.webp) no-repeat top center; }
section#section-25,
.p-faq-list {
    background: url("../img_pc/section_25.webp") repeat top center;
}

.p-faq-ttl,
.p-faq-list {
    background-color: transparent;
}

@media screen and (max-width: 768px) {
    section#section-25,
    .p-faq-list {
        background: url("../img_sp/section_25.webp") repeat top center;
        background-size: 100% auto;
    }
}
/* SP: 背景画像を無効化 */
/*
@media screen and (max-width: 768px) {
    section[id^="section-"] { background: none !important; }
}
*/
/* 大画面: 背景をカバー */
/*
@media screen and (min-width: 1921px) {
    section[id^="section-"] { background-size: cover; }
}
*/

/* ========================================
   FAQ Title
   ======================================== */
.p-faq-ttl {
    width: 100%;
    font-size: 0;
    line-height: 0;
    text-align: center;
}

.p-faq-ttl img {
    max-width: 302px;
    margin: 26px auto 96px;
}
@media screen and (max-width: 768px) {
    .p-faq-ttl img {
        max-width: 49vw;
        margin: 4vw auto 14.5vw;
    }
}

/* ========================================
   FAQ Accordion
   ======================================== */
.p-faq-list {
    padding-bottom: 80px;
    font-size: 24px;
    line-height: 1.6;
}
@media screen and (max-width: 768px) {
    .p-faq-list {
        padding-bottom: 40px;
    }
}
.p-faq-list .container {
    max-width: 890px;
}

@media screen and (min-width: 768px) and (max-width: 1100px) {
  .p-faq-list .container {
    width: 86.3636363636vw;
    max-width: none;
  }
}

@media screen and (max-width: 768px) {
  .p-faq-list .container {
    width: 90%;
  }
}

/* FAQ Item */
.p-faq-item {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 4px;
    overflow: hidden;
}
.p-faq-item:last-child {
    margin-bottom: 0;
}
@media screen and (max-width: 768px) {
    .p-faq-item {
        margin-bottom: 24px;
    }
}

/* FAQ Question (Trigger) */
.p-faq-item__head {
    cursor: pointer;
    background-color: #FA7786;
    color: #fff;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    font-weight: 100;
    font-size: 24px;
    line-height: 1.4;
    user-select: none;
    -webkit-user-select: none;
    transition: opacity 0.2s ease;
	border-radius: 4px;
}
.p-faq-item__head:hover {
    opacity: 0.85;
}
@media screen and (max-width: 768px) {
    .p-faq-item__head {
        padding: 12px 9px 12px 3px;
        font-size: 16px;
    }
}

/* Q/A Icons */
.p-faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 20px;
    flex-shrink: 0;
    font-size: 28px;
    font-weight: 100;
    line-height: 1;
    font-family: 'Comfortaa', sans-serif;
}
@media screen and (max-width: 768px) {
    .p-faq-icon {
        width: 24px;
        height: 24px;
        font-size: 18px;
        margin-right: 10px;
    }
}
.p-faq-icon--q {
    color: #fff;
    position: relative;
    top: 1px;
}
.p-faq-icon--a {
    background-color: #FA7786;
    color: #fff;
    border-radius: 4px;
    width: auto;
    height: auto;
    padding: 8px 13px;
	position: relative;
	top: 12px;
}
@media screen and (max-width: 768px) {
.p-faq-icon--a {
		top: 8px;
	    padding: 5px 8px;
	}
}

.p-faq-text {
    flex: 1;
}

/* Arrow Icon */
.p-faq-arrow {
    margin-left: auto;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    transition: transform 0.3s ease;
}
.p-faq-item.is-open .p-faq-arrow {
    transform: rotate(180deg);
}

/* FAQ Answer - Grid-based accordion */
.p-faq-item__body-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease-in-out;
}
.p-faq-item__body-wrapper.is-open {
    grid-template-rows: 1fr;
}
.p-faq-item__body {
    overflow: hidden;
}
.p-faq-item__body-inner {
    padding: 15px 0 20px;
    display: flex;
    align-items: flex-start;
}
@media screen and (max-width: 768px) {
    .p-faq-item__body-inner {
        padding: 13px 15px 15px 0px;
        font-size: 16px;
    }
}
.p-faq-item__body-inner .p-faq-text {
    padding-top: 0px;
    line-height: 1.8;
}

/* ========================================
   Button Overlay
   ======================================== */
.p-btn-overlay {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 746px;
    z-index: 10;
    text-align: center;
}
/* 767px〜1100px の間だけ、画面幅に合わせてボタンを縮小 */
@media screen and (min-width: 767px) and (max-width: 1100px) {
  .p-btn-overlay {
    width: 67.8181818182vw;
    max-width: none;
  }
}

.p-btn-overlay .c-btn {
    display: inline-block;
    width: 100%;
}

/* sectionごとの位置調整 */
.outline-cta-02 {
    top: 75%;
}
.outline-cta-07{
    top: 77%;
}
.outline-cta-22{
    top: 77%;
}
.outline-cta-26 {
    top: 77%;
}

@media screen and (max-width: 768px) {
	.p-btn-overlay {
    width: 93%;
    max-width: 373px;
	}
	.outline-cta-02 {
		top: 77%;
	}
	.outline-cta-07 {
		top: 77%;
	}
	.outline-cta-22 {
		top: 77%;
	}
	.outline-cta-26 {
		top: 77%;
	}
}	
/* ========================================
   Button Animation (Workflow Required)
   ======================================== */
.c-btn {
    animation: anime 0.5s ease 0s infinite alternate;
    transform-origin: center;
}
@keyframes anime {
    from { transform: scale(0.9, 0.9); }
    to { transform: scale(1, 1); }
}

/* ========================================
   SP Responsive
   ======================================== */
@media screen and (max-width: 768px) {
    .l-container {
        max-width: 100%;
    }
}
/* ========================================
   footer
   ======================================== */
.site-footer {
  background-color: #8D8380;
  color: #fff;
  padding: 20px 0;
  font-weight: 400 !important;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
  font-family: "Hiragino Sans", "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Std", "ヒラギノ角ゴシック", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif !important; }

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  line-height: 1.75;
  color: #fff;
}
.footer-nav > a {
  color: #fff;
  text-decoration: underline;
}
.copyright {
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
  color: #fff;
}
@media (max-width: 768px) {
  .site-footer {
    font-size: 2.5vw;
    padding: 1em 0;
	}
  .footer-nav {
    font-size: 3.2vw;
	}
  .copyright {
    font-size: 3.2vw;
    text-align: center;
	}
}

