@charset "UTF=8";
/*基本設定*/
html {
    font-size: 62.5%;
    font-family: "Zen Old Mincho", serif;
    font-weight: 300;
    font-style: normal;
}
html,body {
    height: 100%;
}
img {
    width: 100%;
    display: block;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
}
h1,h2,h3,h4,h5,h6 {
    font-weight: lighter;
}
.on {
    display: none;
}
/* クッキー */
.cookie-consent {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #4b4b4b;
    color: #fff;
    text-align: center;
    padding: 10px;
    z-index: 1000;
}
.cookie-consent p {
    margin: 0;
    padding: 0 10px;
    display: inline-block;
}
.cookie-consent button {
    background-color: #c37b44;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin-left: 10px;
}
.fadeOnLoad{
    opacity: 0;
    transform: rotateY(180deg); /* 初期状態 */
    transition: transform 0.5s ease; /* 回転アニメーション */
    will-change: transform;
}
.fadeInOnLoad {
    opacity: 1;
    transform: rotateY(0deg);
}
.fadeRotate {
    opacity: 0;
    transform: rotateY(180deg); /* 初期状態 */
    transition: transform 0.5s ease; /* 回転アニメーション */
    will-change: transform;
}
.fadeRotateIn {
    opacity: 1;
    transform: rotateY(0deg);
}
.fadeup {
    opacity: 0;
    transition: all 1s ease;
}
.fadeIn {
    opacity: 1;
}

/* クッキー */
.cookie-consent {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #4b4b4b;
    color: #fff;
    text-align: center;
    padding: 10px;
    z-index: 1000;
}
.cookie-consent p {
    margin: 0;
    padding: 0 10px;
    display: inline-block;
}
.cookie-consent button {
    background-color: #c37b44;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin-left: 10px;
}

/*トップボタン*/
#page_top {
    width: 50px;
    position: fixed;
    right: 0;
    bottom: 0;
    margin: 30px;
    transition: all 0.3s ease;
    z-index: 5;
}
#page_top a {
    position: relative;
}
#page_top:active {
    bottom: 10px;
}
#page_top a::before {
    content: "";
    width: 2px;
    height: 50px;
    background-color: #222222;
    position: absolute;
    top: calc(-50px - 35px);
    left: 50%;
    transform: translateX(-50%);
}
#page_top a::after {
    content: "";
    width: 2px;
    height: 20px;
    background-color: #222222;
    position: absolute;
    top: calc(-50px - 37px);
    left: 38%;
    transform:  rotate(30deg);
}

/*ハンバーガーメニュー*/
.menu__button {
    position: fixed;
    top: 0;
    right: 0;
    margin: 30px;
    z-index: 900;
}
.menu__logo {
    width: 56px;
}
.logo__svg {
    filter: drop-shadow(0px 0px 20px rgba(195, 152, 152, 0.983));
}
.menu__open {
    position: relative;
    cursor: pointer;
    width: 55px;
    height: 55px;
    transition: all 0.3s ease;
}
.menu__button:active span {
    height: 5px;
}
.menu__open span {
    display: block;
    width: 40px;
    height: 3px; 
    background-color: #222222; 
    border-radius: 2px;
    position: relative;
    transition: all 0.3s ease; 
}
.menu__open span:nth-child(1) {
    position: absolute;
    top: 31.82%;
    left: 50%;
    transform: translateX(-50%);
}
.menu__open span:nth-child(2) {
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
}
.menu__open span:nth-child(3) {
    position: absolute;
    top: 68.18%;
    left: 50%; 
    transform: translateX(-50%);
}
.menu__open span:nth-child(3) {
    margin-bottom: 0;
}
.menu__button.open .menu__logo {
    position: relative;
}
.menu__button.open .menu__open span {
    background-color: #ffffff;
}
.menu__button.open .menu__open {
    background-color: #8a242a;
    border-radius: 10px;
}
.menu__button.open .menu__open span:nth-child(1) {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg); 
}
.menu__button.open .menu__open span:nth-child(2) {
    opacity: 0;
}
.menu__button.open .menu__open span:nth-child(3) {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg); 
}

.menu__content {
    opacity: 0;
    transform: translateX(100%);
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #ffffffed;
    height: 100vh;
    width: 100%;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 800;
}
.menu__content.open {
    opacity: 1; /* 表示 */
    transform: translateX(0);
    display: flex;
    justify-content: center;
    align-items: center;
}
.menu__list {
    width: 100%;
}
.menu__item {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 3rem;
}
.menu__item:nth-last-child(1) {
    margin-bottom: 0;
}
.menu__item:nth-last-child(2) {
    margin-bottom: 0;
}
.menu__item:nth-last-child(3) {
    margin-bottom: 0;
}
.menu__item a {
    color: #222222;
    transition: all 0.3s;
}
.menu__item a svg {
    transition: all 0.3s;
}
.menu__item a svg:active {
    opacity: 0.5;
}
.text a:active {
    background-color: #c37b44;
    padding: 0.5rem;
    border-radius: 5px;
    color: #fff;
}
.menu__item .btn__container {
    font-size: 1.8rem;
}
.menu__item .menu__logo {
    width: 25%;
}
.menu__item .menu__insta {
    width: 20%;
}

/*ボタン*/
.button {
    margin: 5rem 0;
    color: #222222;
    border: 1px solid #fff;
    padding: 5px 5px;
    border-radius: 10px;
    display: inline-block;
    transition: all 0.3s ease;
}
.btn__container {
    background-color: #fff;
    border: 1px solid #fff;
    font-size: 1.8rem;
    padding: 1rem 2.8rem;
    border-radius: 7px;
    display: inline-block;
    transition: all 0.3s ease;
}
.button:active {
    background-color: #c37b4484;
}
.button:active .btn__container {
    background-color: #c37b4466;
    color: #fff;
}
.menu__item .button {
    color: #fff;
    border: 1px solid #8a242a;
}
.menu__item .btn__container {
    background-color: #8a242a;
    border: 1px solid #8a242a;
}
.menu__item .button:active {
    background-color: #fff;
}
.menu__item .button:active .btn__container {
    background-color: #fff;
    color: #8a242a;
}

/*セクションタイトル*/
.section-title {
    position: relative;
    width: 130px; /* 適切な幅を指定 */
    height: 169px; /* 適切な高さを指定 */
    border: 2px solid #222222; /* 全体の枠線 */
    display: flex;
    justify-content: center; /* 横方向で中央寄せ */
    align-items: center;
    margin-bottom: 3rem; /* 縦方向で中央寄せ */
}

.section-title__line {
    position: absolute;
    bottom: 0; /* 縦位置を調整 */
    left: 15%; /* 横位置を調整 */
    height: 60%; /* ラインの高さ */
    border-left: 1px solid #222222;
}

.section-title__content {
    font-size: 2rem; /* テキストのサイズを調整 */
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    letter-spacing: 0.5rem;
    writing-mode: vertical-rl; /* 縦書き */
    text-orientation: upright; /* 縦書き時の文字向き */
    color: #222222;
}
.indent {
    padding-top: 30%;
}
.section-title__side-text {
    position: absolute;
    top: 12%; /* 横の位置を調整 */
    right: 10%; /* 右端に配置 */
    font-size: 1.4rem; /* サイドテキストのサイズ */
    writing-mode: vertical-rl; /* 縦書き */
    text-orientation: sideways; /* 縦書き時の文字向き */
    color: #222222;
}
.section-title__side-text::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 20px;
    bottom: 100%;
    left: 50%;
    background-color: #222222;
}

/*コンタクト*/
#contact {
    text-align: center;
    font-size: 1.6rem;
}
#contact svg {
    width: 15%;
    display: block;
    margin: 1.5rem auto;
    transition: all 0.3s ease;
}
#contact svg:active {
    opacity: 0.5;
}
#contact svg rect{
    fill: #222222;
}
#contact p {
    line-height: 2;
}
/*フッター*/
footer {
    background-color: #ffffff;
}
.footer {
    padding: 5rem;
}
.footer .footer__logo--list {
    display: flex;
    gap: 1.5rem;
}
.footer .footer__logo--list li {
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}
.footer .footer__logo--list li:hover {
    opacity: 0.5;
}
.footer .footer__logo--list svg {
    height: 50px;
    width: auto;
}
.footer .footer__menu--list {
    font-size: 1.6rem;
}
.footer .footer__menu--list li {
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}
.footer .footer__menu--list li:active {
    background-color: #c37b44;
    padding: 0.5rem;
    border-radius: 5px;
}
.footer .footer__menu--list li:active a {
    color: #fff;
}
.footer .footer__menu--list a {
    color: #222222;
}
footer p {
    text-align: center;
    padding-bottom: 1rem;
}

@media screen and (min-width:768px) {

    /*メニュー*/
    .menu__content {
        top: 0;
        left: 30%;
        width: 70%;
    }
    .menu__item {
        font-size: 2rem;
    }
    /*ボタン*/
    .btn__container {
        font-size: 2rem;
        padding: 1.25rem 3.5rem;
    }
}

@media screen and (min-width:1024px) {

    .off {
        display: none;
    }
    .on {
        display: block;
    }
    #page_top:hover {
        bottom: 10px;
    }
    /*メニュー*/
    .menu__button:hover span {
        height: 5px;
    }
    .menu__item a svg:hover {
        opacity: 0.5;
    }
    .text a:hover {
        background-color: #c37b44;
        padding: 0.5rem;
        border-radius: 5px;
        color: #fff;
    }
    .menu__item .button:hover {
        background-color: #fff;
    }
    .menu__item .btn__container:hover {
        background-color: #fff;
        color: #8a242a;
    }
    .menu__content {
        top: 0;
        left: 50%;
        width: 50%;
    }
    .menu__item {
        font-size: 2rem;
    }
    /*ボタン*/
    .button:hover {
        background-color: #c37b4489;
    }
    .button:hover .btn__container {
        background-color: #c37b4466;
        color: #ffffff;
    }
    .btn__container {
        background-color: #ffffff;
        font-size: 2.4rem;
        padding: 1.5rem 4.2rem;
    }
    .menu__item .button:hover {
        background-color: #fff;
    }
    .menu__item .button:hover .btn__container {
        background-color: #fff;
        border: 1px solid #8a242a;
        color: #8a242a;
    }
    /*セクションタイトル*/
    .section-title {
        width: 200px; /* 適切な幅を指定 */
        height: 260px; /* 適切な高さを指定 */
        border: 4px solid #222222; 
        margin-bottom: 5rem;
    }
    .section-title__content {
        font-size: 3.2rem; /* テキストのサイズを調整 */
    }
    .section-title__side-text {
        font-size: 2.2rem; /* サイドテキストのサイズ */
    }
    .section-title__side-text::after {
        height: 30px;
    }
    /*コンタクト*/
    #contact {
        font-size: 2.4rem;
    }
    #contact svg{
        width: 10%;
    }
    #contact svg:hover {
        opacity: 0.5;
    }
    /*フッター*/
    .footer .footer__menu--list li:hover {
        background-color: #c37b44;
        padding: 0.5rem;
        border-radius: 5px;
    }
    .footer .footer__menu--list li:hover a {
        color: #fff;
    }
    .footer {
        display: flex;
        justify-content: space-between;
    }
    .footer .footer__logo--list li {
        margin-bottom: 0;
    }
    .footer .footer__menu--list {
        display: flex;
        gap: 1.5rem;
    }
    .footer .footer__menu--list li {
        margin-bottom: 0;
    }
}

