/* 共通
---------------------------------*/
:root {
    --bk-color: #d2b48c;
    --m-color: #333333;
    --b-color: #ffffff;
    --a-color: #5b5b5b;
}
.pc {
    display: block;
}
.sp {
    display: none;
}
.main-container {
    width: 100%;
    height: auto;
    overflow: hidden;
}
/* 共通ここまで
---------------------------------*/





/* TopーPC画面
---------------------------------*/
/* ヘッダー
---------------------------------*/
.hamburger-morph {
    position: fixed;
    top: 20px;
    right: 40px;
    z-index: 1000;
    width: 72px;
    height: 72px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
}
.hamburger-morph__icon {
    width: 100%;
    height: 100%;
}
.hamburger-morph__line {
    fill: none;
    stroke: var(--m-color);
    stroke-width: 6;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
                stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.hamburger-morph__line:nth-child(1) {
    stroke-dasharray: 60 207;
}
.hamburger-morph__line:nth-child(2) {
    stroke-dasharray: 60 60;
}
.hamburger-morph__line:nth-child(3) {
    stroke-dasharray: 60 207;
}
.hamburger-morph.active .hamburger-morph__line:nth-child(1) {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
}
.hamburger-morph.active .hamburger-morph__line:nth-child(2) {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
}
.hamburger-morph.active .hamburger-morph__line:nth-child(3) {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
}
.nav-morph {
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    clip-path: circle(0% at calc(100% - 44px) 44px);
    transition: clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 900;
}
.nav-morph.active {
    clip-path: circle(150% at calc(100% - 44px) 44px);
}
.nav-morph__wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.nav-morph__list {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
}
.nav-morph__item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.nav-morph.active .nav-morph__item {
    opacity: 1;
    transform: translateY(0);
}
.nav-morph.active .nav-morph__item:nth-child(1) { transition-delay: 0.3s; }
.nav-morph.active .nav-morph__item:nth-child(2) { transition-delay: 0.4s; }
.nav-morph.active .nav-morph__item:nth-child(3) { transition-delay: 0.5s; }
.nav-morph.active .nav-morph__item:nth-child(4) { transition-delay: 0.6s; }
.nav-morph__link {
    position: relative;
    display: inline-block;
    padding: 20px;
    font-family: "Marcellus", serif;
    font-weight: bold;
    font-size: 28px;
    color: var(--a-color);
    text-decoration: none;
    overflow: hidden;
}
.nav-morph__item a {
    width: 400px;
    line-height: 0.9;
    border-bottom: 1px solid #333333;
    margin-bottom: 40px;
}
.nav-morph__item a:hover {
    color: var(--m-color);
    font-size: 32px;
}
.nav-morph__item small {
    color: var(--a-color);
    font-size: 16px;
    font-family: "BIZ UDPMincho", serif;
    font-weight: 400;
}
/*ヘッダーここまで
---------------------------------*/

/*FAQコンテンツ
---------------------------------*/
.faq-main,
.policy-main,
.site-main {
    width: 80%;
    height: auto;
    margin: 80px 0 120px 80px;
}
.faq-main h2,
.policy-main h2,
.site-main h2 {
    color: var(--m-color);
    font-size: 28px;
    font-weight: bold;
    font-family: "BIZ UDPMincho", serif;
}
.faq-content,
.policy-content,
.site-content {
    width: 100%;
    margin-top: 30px;
}
.faq-content p,
.policy-content p,
.site-content p {
    color: var(--m-color);
    font-size: 16px;
    font-family: "BIZ UDPMincho", serif;
    line-height: 2.5;
    border-bottom: 1px solid #333333;
    margin: 60px 0;
    padding-bottom: 20px;
}
.site-content a {
    color: var(--m-color);
    font-size: 16px;
    font-family: "BIZ UDPMincho", serif;
    margin-top: 30px;
}
.site-content a:hover {
    font-weight: bold;
    opacity: 1;
}
/*FAQコンテンツここまで
---------------------------------*/

/*フッター
---------------------------------*/
footer {
    width: 100%;
    height: 400px;
    margin: -40px 0 0;
    padding: 120px 80px 0;
    background-color: #333333;
}
.footer-section {
    display: flex;
    justify-content: space-between;
}
.footer-text p {
    color: #ffffff;
    font-size: 16px;
    font-family: "BIZ UDPMincho", serif;
    line-height: 2;
    margin-top: -20px;
}
.footer-text2 {
    display: flex;
    margin-right: 120px;
}
.footer-text2 a {
    color: var(--b-color);
    display: block;
    font-size: 16px;
    font-family: "BIZ UDPMincho", serif;
    line-height: 2;
}
.footer-text2 a:hover {
    color: var(--b-color);
    font-weight: bold;
}
.footer-items {
    margin-right: 80px;
}
.footer-text3 {
    color: var(--b-color);
    text-align: right;
    margin:-20px 200px 0 0;
}
/*フッターここまで
---------------------------------*/





/* TopーSP画面
---------------------------------*/
@media screen and (max-width:480px) {
/* 共通部分
---------------------------------*/
.pc {
    display: none;
}
.sp {
    display: block;
}
/* 共通部分ここまで
---------------------------------*/

/* ヘッダー
---------------------------------*/
.hamburger-morph {
    top: 5px;
    right: 5px;
    z-index: 1000;
    width: 60px;
    height: 60px;
}
.nav-morph__item a {
    width: 150px;
    font-size: 24px;
    margin-bottom: 20px;
}
.nav-morph__item small {
    font-size: 12px;
}
/*ヘッダーここまで
---------------------------------*/

/*FAQコンテンツ
---------------------------------*/
.faq-main,
.policy-main,
.site-main {
    margin: 80px 0 120px 40px;
}
.faq-main h2,
.policy-main h2,
.site-main h2 {
    font-size: 21px;
}
.faq-content p,
.policy-content p,
.site-content p {
    font-size: 14px;
    margin: 40px 0;
    padding-bottom: 10px;
}
.site-content a {
    font-size: 14px;
}
/*FAQコンテンツここまで
---------------------------------*/

/*フッター
---------------------------------*/
footer {
    height: 320px;
    padding: 120px 40px 0;
}
.footer-text p {
    color: #ffffff;
    font-size: 12px;
    font-family: "BIZ UDPMincho", serif;
    line-height: 2;
    margin-top: -20px;
}
.footer-text2 {
    display: flex;
    flex-direction: column;
    margin-top: -20px;
    margin-right: 0;
}
.footer-text2 a {
    color: var(--b-color);
    display: block;
    font-size: 12px;
    font-family: "BIZ UDPMincho", serif;
    line-height: 2;
}
.footer-items {
    margin-right: 60px;
}
.footer-text3 {
    color: var(--b-color);
    font-size: 10px;
    text-align: center;
    margin: 0 20px 0 0;
}
/*フッターここまで
---------------------------------*/
}