@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=M+PLUS+Rounded+1c:wght@300;400;500;700;800&display=swap');

/* 共通 */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 140px;
}
body {
    margin: 0px;
    font-family: "M PLUS Rounded 1c", Meiryo, sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #333;
}
.en {
    font-family: Comfortaa, Meiryo, sans-serif;
}
a {
    text-decoration: none;
    color: #333;
}
.btn {
    padding: 24px 16px;
    background-color: #ECB6B3;
    color: #fff;
    font-weight: 500;
    font-size: 28px;
    border-radius: 16px;
    display: inline-block;
}
section {
    text-align: center;
    padding: 0 16px;
}
section h2 {
    font-weight: 600;
    font-size: 54px;
    color: #ECB6B3;
    margin: 0 0 40px 0;
}
.sp {
    display: none;
}
@media screen and (max-width: 767px) {
    .sp {
        display: block;
    }
}
/* ヘッダー */
header {
    padding: 16px 40px 16px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    z-index: 200;
    top: 0; 
    background-color: rgba(255, 255, 255, 0.7);
}
header .logo {
    height: 96px;
    cursor: pointer;
}
header nav {
    display: flex;
    gap: 80px;
    align-items: center;
}
header ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 48px;
    margin: 0;
    padding: 0;
}
header ul li a {
    font-size: 24px;
    font-weight: 500;
}
header .menu {
    display: none;
}
@media screen and (max-width: 959px) {
    header .menu-open {
        display: block;
    }
    header nav {
        display: none;
    }
    header nav.show {
		display: block;
	}
    header nav {
        background-color: #ededed;
		width: 100%;
		position: absolute;
		top: 100%;
		left: 0;
		z-index: 200;
		padding: 40px 0;
        display: none;
    }
    header nav.show {
		display: flex;
        flex-direction: column;
        align-items: center;
        gap: 32px;
	}
	header nav ul {
		flex-direction: column;
		align-items: center;
		margin-bottom: 32px;
	}
}
@media screen and (max-width: 767px) {
    header .logo {
        height: 72px;
    }
}
/* メインビジュアル */
.mv {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-image: url('img/mv.jpeg');
    margin-bottom: 104px;
}
.mv::before {
    content: "";
    background-color: #000;
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 30%;
}
.mv img {
    display: none;
}
.mv-text {
    position: absolute;
    inset: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;
    color: #fff;
    padding: 0;
}
.mv-text h1 {
    font-weight: 800;
    font-size: 72px;
}
@media screen and (max-width: 959px) {
    .mv {
        background-image: none;
        width: 100%;
        height: auto;
    }
    .mv img {
        display: block;
        width: 100%;
    }
}
@media screen and (max-width: 767px) {
    .mv-text h1 {
        font-size: 42px;
    }
}
/* About */
.about .title {
    font-size: 24px;
    margin: 0 0 32px 0;
}
.about ul {
    width: fit-content;
    margin: 0 auto 40px auto;
    text-align: left;
}
.about ul li {
    line-height: 2em;
}
.about div {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.about div:first-of-type {
    margin-bottom: 24px;
}
.about div:last-of-type {
    margin-bottom: 80px;
}
.about div p {
    margin: 0;
    padding: 0;
}
.about div p:first-of-type {
    font-weight: 800;
}
/* Feature */
.feature {
    padding: 0 136px;
}
.feature .row {
    display: flex;
    justify-content: space-between;
}
.feature .row .feature-item {
    width: 45%;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.feature .row .feature-item p {
    margin: 0px;
}
.feature .row .feature-item .point {
    font-size: 24px;
    font-weight: 600;
}
.feature .row .feature-item .title {
    font-size: 32px;
    font-weight: 500;
}
.feature .row .feature-item div {
    height: 240px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature .row .feature-item div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.feature > div:first-of-type {
    margin-bottom: 48px;
}
.feature > div:last-of-type {
    margin-bottom: 80px;
}
@media screen and (max-width: 959px) {
    .feature {
        padding: 0 120px;
    }
    .feature .row .feature-item .title {
        font-size: 28px;
    }
}
@media screen and (max-width: 767px) {
    .feature {
        padding: 0 16px;
    }
    .feature .row {
        flex-direction: column;
        gap: 48px;
    }
    .feature .row .feature-item {
        width: 100%;
    }
}
/* Price */
.price ul {
    width: fit-content;
    margin: 0 auto 24px auto;
    text-align: left;
}
.price ul li {
    line-height: 2em;
}
.price h3 {
    font-weight: 800;
    font-size: 32px;
    margin: 0 0 24px 0;
}
.price .campaign-text {
    font-size: 24px;
    margin: 0 0 40px 0;
}
.price .campaign-text span {
    color: #ECB6B3;
    font-weight: 800;
}
.price .btn {
    margin-bottom: 80px;
}
/* FAQ */
.faq {
    background-color: #ECB6B3;
    padding: 56px 144px;
}
.faq h2 {
    color: #fff;
}
.faq .faq-item  {
    margin-bottom: 40px;
}
.faq .question {
    padding: 24px;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
}
.faq .question .q-text {
    display: flex;
    gap: 16px;
    align-items: center;
}
.faq .question p {
    margin: 0;
}
.faq .question .q {
    color: #ECB6B3;
}
.faq .question .faq-btn {
    padding: 4px 8px;
    background-color: #ECB6B3;
    color: #fff;
}
.faq .question .minus {
    padding: 4px 10px;
    display: none;
}
.faq > div:last-of-type {
    margin-bottom: 0px;
}
.faq .answer {
    margin-top: 24px;
    background-color: white;
    padding: 24px;
    line-height: 2em;
    text-align: left;
    display: none;
}
.faq .answer p {
    margin: 0;
}
@media screen and (max-width: 959px) {
    /*  */
}
@media screen and (max-width: 767px) {
    .faq {
        padding: 56px 16px;
    }
    .faq .question {
        text-align: left;
        font-size: 16px;
    }
    .feature .row {
        flex-direction: column;
        gap: 48px;
    }
    .feature .row .feature-item {
        width: 100%;
    }
}
/* Footer */
footer {
    padding: 40px 104px;
}
footer .footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
footer .footer-inner div {
    display: flex;
    flex-direction: column;
    gap: 16px
}
footer .footer-inner p {
    margin: 0;
    font-size: 24px;
}
footer .copy {
    font-weight: 300;
    text-align: center;
    margin: 54px 0 0 0;
}
@media screen and (max-width: 959px) {
    /*  */
}
@media screen and (max-width: 767px) {
    footer {
        padding: 40px 16px;
    }
    footer .footer-inner {
        flex-direction: column;
        gap: 40px
    }
}