/* 共通
---------------------------------*/
:root {
    --bk-color: #d2b48c;
    --m-color: #333333;
    --b-color: #ffffff;
    --a-color: #5b5b5b;
}
.main-container {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.pc {
    display: block;
}
.sp {
    display: none;
}
.fade-container {
    opacity: 0;
    transform: scale(0.95);
    transition: all 1s ease;
}
.fade-container.visible {
    opacity: 1;
    transform: scale(1);
}
.fade-container.visible {
    transform: scale(1);
}
/* 共通ここまで
---------------------------------*/










/* 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;
}
/*ヘッダーここまで
---------------------------------*/

/*メインコンテンツ
---------------------------------*/
/*ファーストビュー
---------------------------------*/
.access-main {
    width: 100%;
    height: 100vh;
    color: var(--m-color);
    position: relative;
    background-image: url(../img/access-fv.jpg);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 100px), 0 100%);
    margin-bottom: 120px;
}
.access-text {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 400px;
    left: 80px;
    margin: 0;
}
.access-text h1 {
    color: var(--b-color);
    font-size: 72px;
    font-family: "Marcellus", serif;
    margin: 0;
}
.access-text  p {
    color: var(--b-color);
    font-size: 18px;
    font-family: "BIZ UDPMincho", serif;
    line-height: 2.5;
    margin: 40px 0 0;
}
/*ファーストビューここまで
---------------------------------*/

/*アクセスコンテンツ
---------------------------------*/
.access-contents {
    display: flex;
    width: 100%;
    height: auto;
    margin-bottom: 120px;
}
.access-text2 {
    width: 45%;
}
.access-contents h2 {
    color: var(--m-color);
    font-size: 28px;
    font-family: "BIZ UDPMincho", serif;
    margin: 0 0 20px 80px;
}
.access-contents p {
    color: var(--m-color);
    font-size: 16px;
    font-family: "BIZ UDPMincho", serif;
    line-height: 2;
    border-bottom: 1px solid var(--m-color);
    margin: 40px 0 0 80px;
}
.access-contents span {
    font-size: 20px;
    font-weight: bold;
}
.access-contents iframe {
    margin: 20px 0 0 120px;
}
/*アクセスコンテンツここまで
---------------------------------*/
.banner-contents {
    display: flex;
    width: 100%;
    height: auto;
}
.banner-contents img {
    width: 100%;
    height: auto;
}
/*メインコンテンツここまで
---------------------------------*/

/*フッター
---------------------------------*/
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;
}
/*ヘッダーここまで
---------------------------------*/

/*メインコンテンツ
---------------------------------*/
/*ファーストビュー
---------------------------------*/
.access-main {
    background-position: 50%;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 50px), 0 100%);
    margin-bottom: 40px;
}
.access-text {
    top: 40%;
    left: 40px;
}
.access-text h1 {
    font-size: 48px;
}
.access-text  p {
    font-size: 12px;
    margin: 20px 0 0;
}
/*ファーストビューここまで
---------------------------------*/

/*アクセスコンテンツ
---------------------------------*/
.access-contents {
    flex-direction: column;
    margin: 80px 0;
}
.access-text2 {
    width: 100%;
}
.access-contents h2 {
    font-size: 21px;
    margin: 0 0 20px 40px;
}
.access-contents p {
    font-size: 14px;
    margin: 40px 0 0 40px;
    padding-bottom: 10px;
}
.access-contents span {
    font-size: 20px;
    font-weight: bold;
}
.access-contents iframe {
    width: 80%;
    margin: 40px 0 0 40px;
}
/*アクセスコンテンツここまで
---------------------------------*/
.banner-contents {
    flex-direction: column;
}
.banner-contents img {
    width: 100%;
    height: auto;
    margin-bottom: -10px;
}
/*メインコンテンツここまで
---------------------------------*/

/*フッター
---------------------------------*/
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;
}
/*フッターここまで
---------------------------------*/
}