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

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

/*コンセプトコンテンツ
---------------------------------*/
.concept-contents,
.concept-contents03 {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: auto;
    background-color: var(--bk-color);
    margin-top: -240px;
    padding: 200px 0;
}
.contents-text {
    width: 40%;
    height: auto;
    margin: 80px 0 0 80px;
}
.contents-text h2 {
    color: var(--b-color);
    font-size: 28px;
    font-family: "BIZ UDPMincho", serif;
    margin-bottom: 40px;
}
.contents-text p {
    color: var(--b-color);
    font-size: 16px;
    font-family: "BIZ UDPMincho", serif;
    line-height: 2.5;
}
.contents-img {
    width: 45%;
    height: auto;
    position: relative;
}
.contents-img img {
    width: 80%;
    height: auto;
    clip-path: polygon(0 50px, 100% 0, 100% 100%, 0 100%);
}
.item-img {
    width: 70%;
    height: auto;
    position: absolute;
    top: 320px;
    right: 280px;
}
.item-img img {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.item-img02 {
    width: 48%;
    height: auto;
    position: absolute;
    top: 368px;
    right: 338px;
}
.item-img02 img {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.item-img03 {
    width: 48%;
    height: auto;
    position: absolute;
    top: 368px;
    right: 68px;
}
.item-img03 img {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.concept-contents02 {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: auto;
    background-color: var(--bk-color);
    margin-top: -200px;
    padding: 200px 0;
}
.contents-text02 {
    width: 40%;
    height: auto;
    margin: 160px 80px 0 0;
}
.contents-text02 h2 {
    color: var(--b-color);
    font-size: 28px;
    font-family: "BIZ UDPMincho", serif;
    margin-bottom: 40px;
}
.contents-text02 p {
    color: var(--b-color);
    font-size: 16px;
    font-family: "BIZ UDPMincho", serif;
    line-height: 2.5;
}
.contents-img02 {
    width: 45%;
    height: auto;
    margin-left: 80px;
}
.contents-img02 img {
    width: 80%;
    height: auto;
    clip-path: polygon(0% 0%, 100% 100px, 100% 100%, 0% 100%);
}
.concept-contents03 {
    padding: 260px 0 280px;
}
/*コンセプトコンテンツここまで
---------------------------------*/
.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;
}
/*ヘッダーここまで
---------------------------------*/

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

/*コンセプトコンテンツ
---------------------------------*/
.concept-contents,
.concept-contents03 {
    flex-direction: column-reverse;
    margin-top: -160px;
    padding: 200px 0;
}
.contents-text {
    width: 80%;
    margin: 40px 40px 0;
}
.contents-text h2 {
    font-size: 21px;
    margin-bottom: 20px;
}
.contents-text p {
    font-size: 14px;
    line-height: 2.5;
}
.contents-img {
    width: 100%;
}
.contents-img img {
    width: 100%;
}
.item-img {
    display: none;
}
.item-img02 {
    display: none;
}
.item-img03 {
    display: none;
}
.concept-contents02 {
    flex-direction: column;
    margin-top: -200px;
    padding: 80px 0;
}
.contents-text02 {
    width: 80%;
    height: auto;
    margin: 40px 40px 0;
}
.contents-text02 h2 {
    font-size: 21px;
    margin-bottom: 20px;
}
.contents-text02 p {
    font-size: 14px;
}
.contents-img02 {
    width: 100%;
    margin-left: 0;
}
.contents-img02 img {
    width: 100%;
    clip-path: polygon(0% 0%, 100% 50px, 100% 100%, 0% 100%);
}
.concept-contents03 {
    padding: 160px 0 80px;
}
/*コンセプトコンテンツここまで
---------------------------------*/
.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;
}
/*フッターここまで
---------------------------------*/
}