﻿@charset "UTF-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
@import url(https://fonts.googleapis.com/css?family=Cinzel);
@import url(https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@500&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&family=Zen+Kaku+Gothic+Antique&family=Zen+Kaku+Gothic+New&display=swap);


.lang_switch {
    position: absolute;
    right: 30px;
    top: 20px;
}
.lang_switch .active {
    text-decoration: none;
    color:#51391F;
}
.lang_switch .inactive {
    text-decoration: none;
    color:#ddd;
}
    .piller-button,
    .chinse-button1 {
        position: relative;
        display: inline-block;
        padding: 12px 24px;
        background: #fff; /* 初期背景色 */
        color: #ff701e; /* 初期文字色 */
        cursor: pointer;
        overflow: hidden;
        z-index: 1;
        border-radius: 6px; /* 角を丸くする場合 */
        transition: color 0.4s; /* 文字色の変化 */
        text-align: center;
    }

    /* ::afterで中央から背景が広がる円を作る */
    .piller-button::after,
    .chinse-button1::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        padding-top: 100%; /* 正方形にする */
        background: #F0DBC6; /* ホバー時に表示したい色 */
        border-radius: 50%;
        transform: translate(-50%, -50%) scale(0.1); /* 初期は小さく */
        opacity: 0; /* 初期は透明 */
        z-index: -1; /* テキストの後ろに表示 */
        pointer-events: none;
        transition: transform 0.6s ease-in-out, opacity 0.8s ease;
    }

    /* ホバー時 */
    .piller-button:hover,
    .chinse-button1:hover {
        color: #fff; /* 文字色を反転 */
    }

        .piller-button:hover::after,
        .chinse-button1:hover::after {
            transform: translate(-50%, -50%) scale(1.2); /* 円が広がる */
            opacity: 1; /* 背景を表示 */
        }
    /* 🔸chinse-button1だけ黒系ホバーに変更 */
    .chinse-button1:hover {
        color: #51391F !important;
        border-color: #51391F !important;
    }
    .chinse-button1 a:hover {
        color: #51391F !important;
        border-color: #51391F !important;
    }

body {
    font-family: 'Shippori Mincho';
}
.fade-in-right {
    opacity: 0;
    transform: translateX(100px); /* 右から100pxずらす */
    transition: all 0.8s ease-out; /* フェード＆スライドのアニメーション */
}

    .fade-in-right.active {
        opacity: 1;
        transform: translateX(0);
    }
/* 左からフェードイン */
.fade-in-left {
    opacity: 0;
    transform: translateX(-100px); /* 左から100pxずらす */
    transition: all 0.8s ease-out;
}

    .fade-in-left.active {
        opacity: 1;
        transform: translateX(0);
    }

.case_maintheme {
    text-align: center;
    font-size: 30px;
    padding: 20px 0px 50px 0px;
}
.case_panel {
    width: 394px;
    text-align: center;
    float: left;
    margin: 10px 78px;
    min-height: 340px;
}
.case_maintheme2 {
    font-weight: bold;
    margin-left: 80px;
    text-align: left;
    font-size: 20px;
}
.case_title {
    font-weight: bold;
    margin-bottom: 10px;
    text-align: left;
    border-bottom: solid 1px #CAA585;
    font-size: 17px;
    padding: 10px;
    color: #C9A487;
}

.case_img {
}

.case_img img {
        
}

.case_text {
    text-align: left;
    line-height: 20px;
    margin-top: 10px;
}
.case_text2 {
    text-align: center;
}
body {
    line-height: 30px;
}
.global-nav {
    display:none!important;
}
.site-logo {
    margin-bottom: 20px;
}
.snsArea {
    display: none !important;
}
.chinese-section {
    background-image: url(img_ch/haikei.png);
    background-position: center top;
    padding: 0px 0px;
    text-align: center;
}
.chinese-container {
    margin: 0 auto;
    padding: 0 20px;
    width: 1100px;
    max-width: 100%;
}
.chinse-title {
    font-size: 30px;
    padding-top: 130px;
    padding-bottom: 20px;
    line-height: 40px;
}
.chinse-title2 {
    font-size: 17px;
    padding-bottom: 150px;
}
.chinse-title3 {
    font-size: 25px;
    color: #D9C0AA;
    margin-bottom: 40px;
}
.chinse-title4 {
    color: white;
    font-size: 30px;
    padding: 20px 0px 50px 0px;
}
.chinse-text1 {

}
.chinse-text2 {
    color: white;
}
.chinse-text3 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 70px;
}
.chinse-button1 {
    text-decoration: none;
    background-color: transparent;
    color: white;
    border: solid 1px white;
    margin-left: 0px;
    /* width: 250px; */
    display: inline-block;
    padding: 15px 50px;
    margin-left: auto;
    margin-right: auto;
    float: none;
    cursor: pointer;
    display: inline-block;
    padding: 10px 50px;
    transition: all 0.5s;
    border-radius: 30px;
    margin-top: 40px;
}

    .chinse-button1 a {
        color: white;
        text-decoration: none;
    }

.chinse-button1:hover {
    text-decoration: none;
    background-color: transparent;
    color: white;
    border: solid 1px white;
}

.chinse-button1 a:hover {
    color: #fff;
}


.piller-button {
    text-decoration: none;
    background-color: #fff;
    color: #51391F;
    border: solid 1px #51391F;
    margin-left: 0px;
    /* width: 250px; */
    display: inline-block;
    padding: 15px 50px;
    margin-left: auto;
    margin-right: auto;
    float: none;
    cursor: pointer;
    display: inline-block;
    padding: 10px 50px;
    transition: all 0.5s;
    border-radius: 50px;
    margin-top: 40px;
}

    .piller-button a {
        color: #51391F;
        text-decoration: none;
    }

    .piller-button:hover {
        text-decoration: none;
        background-color: transparent;
        color: #51391F;
        border: solid 1px #51391F;
    }

    .piller-button a:hover {
        color: #51391F;
    }


.piller {
    width: 300px;
    float: left;
}
.piller2 {
    color: #C9A487;
    font-weight:bold;
}

.pillerTitle {
    font-size: 20px;
    text-align: center;
    margin: 20px 0px 20px 0px;
}
.piller3 {
    font-weight:bold;
}
.reason1 {
    text-align:center;
    font-size: 30px;
    padding: 20px 0px 50px 0px;
}
.reason2 {
    text-align: center;
    padding: 10px 30px 10px 30px;
    background-color: #C9A585;
    color: #fff;
    display: inline-block;
    margin: auto;
}
.reason3 {
    text-align: center;
    padding: 20px 0px 50px 0px;

}
footer {
    
}
@media screen and (max-width: 768px) {
    .welcome {
        background-image: url(img_ch/welcome-mobile.png)!important;
        height:auto!important;
    }
    .case_panel {
        margin: 20px 0px;
        width: auto;
    }
    .chinese-section5 {
        background-size: contain;
        background-position: right bottom !important;
        background-image: none !important;
        padding-bottom: 15px;
    }
    .reason1 {
        padding: 20px 0px 0px 0px;
    }
}