@charset "UTF-8";
@import url("grid.css");
@import url('https://fonts.googleapis.com/css2?family=Zen+Old+Mincho&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@1,6..96,500&display=swap');

:root {
    /* 色変更される場合は、#以降のカラーコードを変更してください IE非対応 */
    --base-color: #222;
    --link-color: #222;
    --linkhover-color: #ff5d5d;
    --back-color: #f7f7f7;
    --border-color: #ccc;
    --white-color: #fff;
    --yellow-color: #fcc800;
    --purple-color: #71659D;
    --brown-color: #C39C89;
    --orange-color: #ED6D34;
    --pink-color: #F2A0A3;
    --green-color: #92b351;
}


img {
    max-width: 100%;
    height: auto;
    /*高さ自動*/
}

a {
    color: var(--link-color);
    text-decoration-line: none;
}

a:hover {
    color: var(--linkhover-color);
    text-decoration: underline;
}

li {
    list-style: none;
}

body {
    font-family: "Zen Old Mincho", '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.8;
    overflow-x: hidden;
}

h2 {
    letter-spacing: 0.08em;
}

.hilight {
    position: relative;
    background: linear-gradient(transparent 90%, #ffff49 90%);
}

.fadein {
    opacity: 0;
    transform: translate(0, 20px);
    transition: opacity 1200ms, transform 1200ms;
}

.fadein.is-animated {
    opacity: 1;
    transform: translate(0, 0);
}

.fadeinmain {
    opacity: 0;
    transform: scale(1.1);
    transition: all 3000ms;
}

.fadeinmain.is-animated {
    opacity: 1;
    transform: scale(1);
}

.fadefromtop {
    opacity: 0;
    transform: translate(0, -30px);
    transition: all 1000ms;
}

.fadefromtop.is-animated {
    opacity: 1;
    transform: translate(0, 0);
}

/*ヘッダー
-------------------------------------*/
.logo {
    width: 6vw;
    position: fixed;
    top: 3vw;
    left: 3vw;
    z-index: 2000;
}

.header {
    display: flex;
    flex-direction: row;
    padding: 2rem 0 0 0;
}

.header-box {
    margin-left: auto;
    margin-top: 8px;
}

.contact-button {
    padding: 0.5em 1em;
    background: var(--base-color);
    color: #fff;
    border-radius: 40px;
}
.contact-button:hover{
    background:var(--linkhover-color);
    color:#fff;
    text-decoration: none;
}

nav ul {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    list-style: none;
    margin: 0;
}

nav li {
    margin: 0;
    /*font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;*/
}

nav li a {
    text-decoration: none;
    text-align: center;

}



nav a {
    padding: 0.5rem;
}

#navi {
    width: calc(100% - 6vw);
    padding-left: 100px;
    position: absolute;
    top: 3vw;
    right: 0;
    left: 0;
    margin: 0 auto;
}

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

    /* PC時はMENUボタンを非表示 */
    #open, #close {
        display: none !important;
    }

    #navi {
        display: block !important;
        position: fixed;
        z-index: 1000;
    }

    .SP {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .PC {
        display: none;
    }

    .logo {
        min-width: 40px;
    }

    .header {
        flex-direction: column;
        margin-bottom: 10px;
    }

    .header #open, #close {
        position: absolute;
        top: 20px;
        right: 12px;
    }

    nav ul {
        flex-direction: column;
        padding: 80px 0;
    }

    .header li {
        padding-top: 0;
    }

    /* スマホ時はMENUボタンを表示 */
    #open {
        display: block;
        background: url(../img/cmn__menu.svg);
        background-repeat: no-repeat;
        background-size: contain;
        width: 50px;
        height: 50px;
        border: none;
        position: absolute;
        top: 20px;
        right: 12px;
    }

    #close {
        display: block;
        background: url(../img/cmn__menu2.svg);
        background-repeat: no-repeat;
        background-size: contain;
        width: 50px;
        height: 50px;
        border: none;
        position: absolute;
        top: 20px;
        right: 12px;
        z-index: 1000;
    }

    /* スマホ時はメニューを非表示 */
    #navi {
        display: none;
        background: #fff;
        width: 100%;
        top: 0;
        z-index: 999;
    }
}

/*キービジュアル
-------------------------------------*/

.keyvisual {
    height: 100vh;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
}

.keyvisual-txt {
    width: 45%;
    position: absolute;
    bottom: 2vw;
    left: 12vw;
}

.hero-section {
    margin: 0 auto;
    width: 100%;
    padding: 4vw;
    position: relative;
    height: 100vh;
}

.lead {
    writing-mode: vertical-rl;
    line-height: 2;
    position: absolute;
    right: 6vw;
    top: 50%;
}

.lead-eng {
    position: absolute;
    bottom: 3vw;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    font-style: italic;
}

.mainimg {
    width: 100vw;
    height: 100vh;
    object-fit: cover
}

/*メインコンテンツ
-------------------------------------*/
main {
    margin: 0;
}

section {
    padding: 4vw;
    position: relative;
}

.gray-back {
    background-color: var(--back-color);
}

#section2 {
    background-image: url('../img/sec2-bg.jpg');
    background-size: cover;
    min-height: 100vh;
    padding: 0 0 0 10vw;
    margin-top: 6vw;
    border: solid 3vw #fff;
    position: relative;
    overflow: hidden;
}

.section2-title {
    font-size: 3rem;
    writing-mode: vertical-rl;
    line-height: 2;
    position: relative;
    margin: 0 4vw 0 auto;
    line-height: 2.2;
    color: var(--yellow-color);
}

.section2-title span {
    background: #fff;
    padding: 0.5em 0.1em;

}

.section2-txt2 {
    display: block;
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 3em;
}

#section2 .hilight {
    background: linear-gradient(transparent 90%, var(--yellow-color) 90%);
}

.sec2-photo1 {
    width: 30%;
    max-width: 100%;
    position: absolute;
    left: -30px;
    top: 50%;
    transform: rotate(-6deg);
    box-shadow: 0px 0px 3px 0px #d9d9d9;
}

.sec2-photo2 {
    width: 30%;
    max-width: 100%;
    position: absolute;
    left: 20%;
    top: 60%;
    transform: rotate(12deg);
    box-shadow: 0px 0px 3px 0px #d9d9d9;
}

.sec2-about {
    position: absolute;
    left: 8vw;
    top: 8vw;
    width: 35%;
    max-width: 707px;
}

.section2-rbox {
    width: 55%;
    margin: 0 0 0 auto;
}

.section2-kadai {
    margin: 1em 0;
    width: fit-content;
    margin: 2em auto 1em;
}

.section2-kadai li {
    text-align: left;
    margin: 0;
    list-style: disc;
}

#section3 {
    background: #dae1e7;
    padding-left: 10vw;
    position: relative;
}

.bodoni-title {
    font-size: 6rem;
    font-family: "Bodoni Moda";
    letter-spacing: 0;
}

.section3-title {
    color: var(--purple-color);
    font-size: 1.2rem;
    text-align: center;
}

.section3-jp {
    font-size: 3.6rem;
    letter-spacing: 0.1em;
    writing-mode: vertical-rl;
    line-height: 2;
    position: absolute;
    top: 0;
    left: 4vw;
    line-height: 2.2;
    color: var(--purple-color);
}

.section3-jp span {
    background: #fff;
    padding: 0.5em 0.1em;

}

.section3-subtitle {
    text-align: center;
    color: var(--purple-color);
    font-size: 4rem;
    letter-spacing: 0.1em;
}

.section3-subtitle {
    font-size: 1.4rem;
}

.section3-subtitle2 {
    font-size: 5rem;
    letter-spacing: 0.1em;
    margin: 0.5em;
    display: inline-block;
}

.section3-subtitle3 {
    font-size: 3rem;
    margin-bottom: 0.5em;
    display: inline-block;
}

.section3-img {
    display: block;
    margin: 0 auto;
}

.section3-body {
    position: absolute;
    width: 37%;
    left: 4vw;
    bottom: 4vw;
}

.section3-area {
    position: relative;
}

.section3-box {
    background: #DDD9EC;
    width: 80%;
    margin: 0 auto;
    padding: 3vw;
    border-radius: 20px;
    box-shadow: 0px 0px 15px -5px #bdbdbd;
}

.section3-boxlist {
    display: flex;
    flex-wrap: wrap;
    gap: 1vw;
    justify-content: center;
}

.section3-boxlist li {
    width: 32%;
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: 0;
    box-shadow: 0px 0px 15px -3px #d9d9d9;

}

.section3-step {
    text-align: center;
    color: var(--purple-color);
}

.section3-num {
    font-size: 4rem;
    font-family: "Bodoni Moda";
    letter-spacing: 0.1em;
}

.section3-kome {
    font-size: 1rem;
    text-indent: -1em;
    margin-left: 1em;
}

.section3b-box {
    background: #E2885D;
    padding: 3vw;
    border-radius: 30px;
    color: #fff;
}

.section3b-title {
    color: var(--purple-color);
    text-align: center;
    margin: 2em 0 1em;
    font-size: 3.8rem;
}

.section3b-txt2 {
    font-size: 3rem;
    color: var(--orange-color);
    text-align: center;
}

.section3b-txt3 {
    text-align: center;
    color: var(--orange-color);
}

.section3b-list {
    width: fit-content;
    margin: auto;
    position: relative;
    margin-left: 30px;
}


.section3b-list li::before {
    display: block;
    position: absolute;
    left: -25px;
    content: '';
    width: 25px;
    height: 25px;
    background: url(../img/sec3-icon.svg) no-repeat;
    background-size: 20px;
    background-position: bottom;
}

.section3b-list2 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.section3b-list2 li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    letter-spacing: 0;
}

.section3b-list2 li p {
    font-size: 1.4rem;
    line-height: 1.5;
}

.section3b-list2 li:nth-child(1),
.section3b-list2 li:nth-child(2) {
    width: calc(50% - 15px);
}

.section3b-list2 li:nth-child(3),
.section3b-list2 li:nth-child(4),
.section3b-list2 li:nth-child(5) {
    width: calc(33.3% - 15px);
}

.section3b-list2 li img {
    width: 80px;
}

.section3b-list2 h3 {
    border-bottom: solid 1px #fff;

}

.section3b-txt4 {
    background: #fff;
    color: var(--orange-color);
    text-align: center;
}

.section3b-others {
    background: #DEEBEA;
    width: 80%;
    margin: 2vw auto;
    padding: 3vw;
    border-radius: 20px;
    box-shadow: 0px 0px 15px -5px #bdbdbd;
    display: flex;
    gap: 30px;
}

.section3b-others h3 {
    white-space: nowrap;
}

.section3b-others-l {
    text-align: center;
}

.section3b-others-txt1 {
    font-size: 2rem;
    margin-bottom: 1em;
}

.section3b-others-r li {
    list-style-type: disc;
    margin-left: 1em;
}

#section4 {
    background-image: url('../img/sec4-bg.jpg');
    background-size: cover;
    min-height: 100vh;
    padding-left: 10vw;
    text-align: center;
}

.section4-title {
    color: #9df7ff;
    font-size: 1.2rem;
    text-align: center;
}

.section4-img {
    width: 40%;
}

#section5 {
    background-image: url('../img/sec5-bg.jpg');
    background-size: cover;
    min-height: 100vh;
    padding-left: 10vw;
    text-align: center;
}

.section5-title {
    color: var(--brown-color);
    font-size: 1.2rem;
    text-align: center;
}

.section5-feebox {
    width: calc(100% - 140px);
    margin: 0 auto 30px;
    background: var(--brown-color);
    border-radius: 10px;
    padding: 2vw;
}

.section5-feetitle {
    padding: 5px;
    text-align: center;
    border: solid 1px #fff;
    border-radius: 10px;
    color: #fff;
    letter-spacing: 0.1em;
}

.section5-whitebox {
    background: #fff;
    padding: 2vw;
    border-radius: 10px;
}

.section5-whitebox dl {
    display: flex;
    gap: 20px;
}

.section5-whitebox dt {
    white-space: nowrap;
    color: var(--brown-color);
    font-size: 3rem;
}

.section5-whitebox dd {
    border-left: solid 1px var(--brown-color);
    padding-left: 2em;
    text-align: left;
    font-size: 1.4rem;
}

.section5-price {
    font-size: 3rem;
    color: var(--brown-color);
}

.section5-price span {
    font-size: 60%;
}

.section5-price2 {
    font-size: 2rem;
    color: var(--brown-color);
}

.section5-orderbox {
    text-align: left;
    width: calc(100% - 140px);
    margin: 0 auto 20px;
    background: #fff;
    border-radius: 10px;
    padding: 2vw;
}

.section5-ordertitle {
    padding: 5px;
    text-align: center;
    border: solid 1px #888;
    color: #444;
    border-radius: 10px;
    letter-spacing: 0.1em;
}

.section5-orderlist {
    display: flex;
    gap: 10px;
}

.section5-orderlist li {
    flex: 1;
    background: #f4f4f4;
    border-radius: 10px;
    padding: 10px;
    margin: 0;
}

.section5-ordernum {
    color: var(--brown-color);
    font-size: 4rem;
    letter-spacing: 0.1em;
    text-align: center;
}

.section5-ordertxt {
    color: var(--brown-color);
    font-size: 1.8rem;
    letter-spacing: 0;
    line-height: 1.5;
    min-height: 3em;
    margin: 0;
    text-align: center;
}

.section5-ordericon {
    margin: 10px auto;
    display: block;
    height: 60px;
}

.section5-orderbody {
    text-align: left;
    letter-spacing: 0;
    font-size: 1.4rem;
    line-height: 1.5;
}

.section5-kome {
    font-size: 1.2rem;
    text-align: left;
}

.mainbtn {
    font-size: 2.4rem;
    background: var(--orange-color);
    border-radius: 10px;
    padding: 20px 60px;
    color: #fff;
    height: unset;
    line-height: 1;
    border: none;
    margin: 20px auto;
    display: block;
}

.mainbtn:hover  {
    background:var(--linkhover-color);
    color:#fff;

}
.mainbtn:hover a{
        color:#fff;
            text-decoration: none;
}

.section5-boxes {
    width: calc(100% - 140px);
    margin: 0 auto 20px;
    display: flex;
    gap: 20px;
    text-align: left;
}

.section5-halfbox {
    flex: 1;
    margin: 0 auto 20px;
    background: #fff;
    border-radius: 10px;
    padding: 2vw;
}

.section5-kifu {
    font-size: 2.0rem;
    color: var(--orange-color);
    border-top: solid 1px var(--brown-color);
    padding-top: 0.5em;
}

.section5-nagare dt {
    display: inline-block;
    width: 12em;
    vertical-align: top;
    color: var(--brown-color);
}

.section5-nagare dd {
    display: inline-block;
    width: 70%;
    vertical-align: top;
}

#section6 {
    background: #f0dddd;
    color: var(--brown-color);
}

.section6-title {

    font-size: 1.2rem;
    text-align: center;
}

.section6-faq {
    width: 80%;
    margin: 0 auto;
}

.section6-faq dt {
    min-height: 40px;
    background: url('../img/sec6-q.svg') no-repeat 0 0;
    background-size: auto 30px;
    padding-left: 40px;
    margin-bottom: 0em;
    color: #856555;
    cursor: pointer;
}

.section6-faq dd {
    min-height: 40px;
    background: url('../img/sec6-a.svg') no-repeat 0 0;
    background-size: auto 30px;
    padding-left: 40px;
    margin-bottom: 1.5em;
    color: var(--base-color);

}

#section7 {
    background-image: url('../img/sec7-bg.jpg');
    background-size: cover;
    min-height: 100vh;
    padding-left: 10vw;

}

.section7-box {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding: 5vw;
    width: 50%;
}

.section7-title {
    color: var(--orange-color);
    font-size: 2.6rem;
}

.section7-name {
    font-size: 3rem;
}

.section7-body {
    font-size: 1.4rem;
}

.section7-photo {
    width: 40%;
}

#section8 {
    text-align: center;
}

.footer-title {
    text-align: center;
}

.footer-tel {
    font-size: 4rem;
    line-height: 1;
}

.footer-map {
    max-width: 400px;
    margin: 20px;
    width: 100%;
}

/*フッター
-------------------------------------*/
footer {
    background-color: var(--back-color);
    padding: 5rem 0;
    width: 100vw;
    overflow-x: hidden;
}

.copyright {
    text-align: center;
    padding: 1rem 0;
    text-decoration: none;
    display: inline;
    font-size: 1rem;
}

/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop {
    position: fixed;
    bottom: 15px;
    right: 15px;
}

#pagetop a {
    display: block;
    width: 70px;
    padding: 10px 5px;
    text-align: center;
}



@media screen and (max-width: 1000px) {
    .mainbtn {
        font-size: 2rem;
        padding: 20px 40px;
    }

    #section3 {
        padding: 4vw;
    }

    .section3-jp {
        position: relative;
        margin: 3vw auto;
        font-size: 2.6rem;
        left: unset;
    }

    .section3-body {
        position: relative;
        width: 100%;
        margin: 100px auto 1em;
        bottom: unset;
    }

    .section3b-list2 {
        flex-direction: column;
    }

    .section3b-list2 li {
        width: 100% !important;
    }

    .section3-box {
        width: 100%;
    }

    .section3-boxlist {
        flex-direction: column;
    }

    .section3-boxlist li {
        width: 100%;
    }

    .section3b-others {
        flex-direction: column;

    }

    #section5 {
        padding: 4vw;
    }

    .section5-feebox {
        width: 100%;
    }

    .section5-orderbox {
        width: 100%;
    }

    .section5-boxes {
        width: 100%;
        flex-direction: column;
    }

    #section7 {
        padding: 3vw;
    }

    .section7-box {
        width: calc(100%);
    }
}


/* 幅768px以下の表示（SP）
-------------------------------------*/
@media screen and (max-width: 768px) {
    body {
        font-size: 1.4rem;
    }

    #pagetop a {
        width: 40px;
        padding: 0;
    }

    nav {
        position: fixed;
        right: 0;
        top: 0;
        width: 100%;
        z-index: 1000;
    }

    .keyvisual-txt {
        width: 80%;
        bottom: unset;
        top: 10vw;
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    .lead span {
        background: #fff;
        padding: 5px 2px;
    }

    .lead {
        top: unset;
        bottom: 0;
        text-align: right;
        font-size: 1.6rem;
    }

    .lead-eng {
        transform-origin: bottom left;
        transform: rotate(-90deg);
        position: absolute;
        left: 8vw;
        width: 100vh;
        font-size: 1.0rem;
    }

    .header-box {
        display: none;
    }

    #section2 {
        padding: 0;
        margin: 0;
        border: none;
        background-color: rgba(255, 255, 255, 0.7);
        background-blend-mode: lighten;
    }

    .section2-title {
        font-size: 2.4rem;
        margin: 8vw auto 4vw;
    }

    .section2-txt {
        display: block;
        width: calc(100% - 6vw);
        margin: 4vw auto;
    }

    .sec2-imgbox {
        display: flex;
        margin-top: 8vw;
    }

    .sec2-photo1,
    .sec2-photo2 {
        position: relative;
        left: unset;
        top: unset;
        width: 50%;
    }

    .section2-rbox {
        width: 100%;
    }

    .sec2-about {
        display: block;
        position: relative;
        left: unset;
        right: unset;
        width: calc(100% - 10vw);
        top: 6vw;
        margin: 0 auto;
    }

    .section2-kadai {
        width: calc(100% - 25vw);
        background: #fff;
        border-radius: 10px;
        margin: 2vw auto;
        padding: 2vw 2vw 2vw 8vw;
        font-size: 1.4rem;
    }

    .section2-txt2 {
        width: calc(100% - 25vw);
        border-radius: 10px;
        margin: 2vw auto;
        padding: 2vw;
        font-size: 1.4rem;
    }

    .section2-txt2-body {
        background: #ffb52b;
    }

    .section3-subtitle {
        margin-top: 2em;
    }

    .section3-subtitle2 {
        font-size: 3.8rem;
    }

    .section3-subtitle3 {
        font-size: 1.8rem;
    }

    .section3b-title {
        font-size: 2.6rem;
    }

    .section3b-box {
        border-radius: 15px;
    }

    .section3-body {
        width: calc(100% - 20vw);
        margin: 10vw auto;
        left: unset;
        font-size: 1.4rem;
    }

    .section3-boxlist li {
        font-size: 1.4rem;
        padding:10px 12vw;
    }

    .section3b-txt2 {
        font-size: 2rem;
    }
    .section3-num{
        font-size:3rem;
        line-height: 1.1;
    }
    .section3-boxlist img{

        margin:0 auto;
        display: block;
    }

    .section3b-txt3 {
        font-size: 1.4rem;
    }

    .section3b-list2 h3 {
        font-size: 2.2rem;
    }

    .section3b-txt4 {
        width: calc(100% - 10vw);
        border-radius: 5px;
        margin: 0 auto;
        padding: 10px;
    }

    .section3b-others {
        width: 100%;
    }

    .section3b-others h3 {
        font-size: 2.4rem;
    }

    .section3b-others-txt1 {
        font-size: 1.6rem;
    }

    .section3b-others-r li {
        font-size: 1.4rem;
        line-height: 1.5;
    }

    .section3b-list {
        font-size: 1.4rem;
    }
    .section3b-others-r{
        width:calc(100%  - 15vw);
        margin:0 auto;
    }

    #section4 {
        padding: 3vw;
    }

    .section4-img {
        width: 100%;
    }

    .section5-orderlist {
        flex-direction: column;
    }
    .section5-whitebox{
        padding:2vw 10vw;
    }
    .section5-orderlist li{
        padding:5px;
    }
    .section5-whitebox dl {
        flex-direction: column;
        gap:10px;
    }
    .section5-whitebox dt{
        font-size:2rem;
    }

    .section5-whitebox dd {
        border: none;
        border-top: solid 1px var(--brown-color);
        padding: 0;
    }
    .section5-price2{
        font-size:1.6rem;
        line-height: 1.3;
    }

    .section5-price {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .section5-kifu {
        font-size: 1.6rem;
    }

    .section5-ordertitle {
        font-size: 2.4rem;
    }
    .section5-orderbody{
        width:calc(100% - 15vw);
        margin:0 auto;
}
    .section5-ordernum {
        line-height: 1;
        margin: 10px auto 0;
        font-size:3rem;

    }
    .section5-ordericon{
        height:40px;
    }

    .section5-ordertxt {
        min-height: unset;
    }
    .section5-nagare{
        width:calc(100% - 15vw);
        margin:0 auto;
    }

    .mainbtn {
        width: 100%;
    }

    .section5-nagare dt {
        width: 100%;
    }

    .section5-nagare dd {
        width: 100%;
        font-size: 1.4rem;
    }

    .section5-halfbox {
        font-size: 1.4rem;
        width:100%;

    }

    .section6-faq {
        width: 100%;
        font-size: 1.4rem;
    }
     .section7-box {
        padding:12vw;
    }

}