@charset "UTF-8";

/* ===================================
reset
=================================== */

body,
h1,
h2,
h3,
ul,
p {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 16px;
}

img {
    vertical-align: bottom;
}

a {
    text-decoration: none;
}


/* ===================================
    common.css
  =================================== */

body {
    font-family: vdl-admin, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #756A57;
    font-size: 20px;
    background-color: transparent;
}

.inner {
    width: 1000px;
    margin: 0 auto;
}


/* display flex */

.d_f {
    display: flex;
}


/* justify-content */

.j_sb {
    justify-content: space-between;
}

.j_sc {
    justify-content: center;
}


/* --  -- */

.sp {
    display: none;
}

.main_visual img {
    width: 100%;
    text-align: center;
}

header .logo {
    position: relative;
    text-align: center;
    /* margin-top: -40rem; */
    margin-top: -45%;
    /* position: absolute;
    top: 46.5%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    margin: auto; */
}

main .back img {
    position: relative;
    width: 100%;
    margin-top: -25%;
}

main .top {
    background-image: url(../images/common/back_07.png);
    color: #ffff;
}

h2 {
    text-align: center;
}


/* h2 img {
    width: 40%;
} */


/* === fadein === */

.element {
    /* 最初は非表示 */
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: opacity 1s, visibility 1s, transform 1s;
}


/* フェードイン時に入るクラス */

.is-fadein {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}


/* === サイドに固定 === */

.totop {
    text-align: right;
    box-shadow: 1px unset;
    padding-right: 1rem;
    position: fixed;
    top: 600px;
    right: -6px;
    z-index: 10;
}

.yoyaku {
    text-align: right;
    box-shadow: 1px unset;
    padding-right: 0.8rem;
    position: fixed;
    top: 550px;
    right: 1px;
    z-index: 10;
}

.totop img {
    width: 70%;
}

.yoyaku img {
    width: 70%;
}

.totop a:hover {
    opacity: 80%;
}

.yoyaku a:hover {
    opacity: 80%;
}


/* === hamburger-menu === */

.hamburger-menu .d_f {
    display: block;
}

.hamburger-menu header {
    padding-left: 10px;
}

.hamburger-menu header .drop {
    display: none;
}

.hamburger-menu {
    display: block;
}

.menu-btn {
    position: fixed;
    top: 20px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #705C73;
    ;
    border-radius: 7px;
    opacity: 80%;
    box-shadow: 0 0 8px gray;
}

.menu-btn:hover {
    opacity: 100%;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 2px;
    width: 25px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
}

.menu-btn span:before {
    bottom: 8px;
}

.menu-btn span:after {
    top: 8px;
}

#menu-btn-check:checked~.menu-btn span {
    background-color: rgba(255, 255, 255, 0);
    /*メニューオープン時は真ん中の線を透明にする*/
}

#menu-btn-check:checked~.menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}

#menu-btn-check:checked~.menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}

#menu-btn-check {
    display: none;
}

.menu-content {
    width: 40%;
    height: 70%;
    position: fixed;
    top: 0px;
    left: 100%;
    /*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: #DBDAC6;
    transition: all 0.5s;
    border-radius: 0 0 0 3rem;
    /*アニメーション設定*/
    box-shadow: 0 0 8px gray;
}

.menu-content ul {
    padding-top: 90px;
}

.menu-content ul li {
    list-style: none;
}

.menu-content ul li img {
    width: 100%;
}

.menu-content ul li a {
    display: block;
    width: 100%;
    height: 100%;
    font-size: 1.5rem;
    box-sizing: border-box;
    color: #705C73;
    text-decoration: none;
    position: relative;
    text-align: left;
    background-color: #BEBDAF;
    opacity: 10;
    margin-bottom: 1rem;
    text-align: center;
}

#menu-btn-check:checked~.menu-content {
    left: 55rem;
    /*メニューを画面内へ*/
}

.menu-content ul li a:hover {
    opacity: 0.7;
}


/* -- footer -- */

.ft {
    background-image: url(../images/common/fotter01.png);
    background-size: 100%;
    background-repeat: no-repeat;
    margin-top: -5.4rem;
}

.copy {
    background-color: #705C73;
    color: #ffff;
    font-size: 16px;
    text-align: center;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    margin-top: 1rem;
}

.ftt {
    padding-top: 7em;
    padding-left: 3rem;
    padding-right: 3rem;
    color: #705C73;
    /* padding-bottom: 2rem; */
}

.ftt a {
    color: #705C73;
    text-decoration: underline;
}

.ftt a:hover {
    color: #dfcae2;
    text-decoration: underline;
}

footer .nav a {
    color: #705C73;
}

footer .nav a:hover {
    color: #dfcae2;
    text-decoration: underline;
}

footer .nav {
    padding: 2rem 4rem 0 4rem;
}

.aaa {
    padding-top: 50px;
    padding-right: 100px;
}


/* ================= */


/* ===================================
responsive
=================================== */

@media screen and (max-width: 640px) {
    body {
        font-size: 60%;
    }
    img {
        vertical-align: 0%;
    }
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
    /* br {
         display: none;
     } */
    .h1 .access br {
        display: block;
    }
    .img {
        padding: 0;
        margin: 0;
    }
    .d_f {
        display: block;
    }
    header .drop {
        display: none;
    }
    .inner {
        width: auto;
        padding: 0 15px;
    }
    header .logo {
        position: relative;
        text-align: center;
        margin-top: -45%;
    }
    header .logo img {
        width: 50%;
    }
    main .back img {
        position: relative;
        width: 100%;
        margin-top: -40%;
    }
    iframe {
        width: 100%;
    }
    /* -- ハンバーガー -- */
    #menu-btn-check:checked~.menu-content {
        left: 0;
        /*メニューを画面内へ*/
    }
    .menu-content {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0px;
        left: 100%;
        /*leftの値を変更してメニューを画面外へ*/
        z-index: 80;
        background-color: #DBDAC6;
        transition: all 0.5s;
        border-radius: 0;
        /*アニメーション設定*/
        box-shadow: 0 0 8px gray;
    }
    .ft {
        background-size: 100%;
        /* background-repeat: no-repeat; */
        /* margin-top: -2rem; */
    }
    .nav {
        background-image: url(../images/common/fotter02.png);
    }
    .copy {
        margin-top: 0;
    }
    .ft {
        background-image: url(../images/common/fotter02.png);
        background-size: 100%;
        background-repeat: no-repeat;
        /* margin-top: -2rem; */
        /* font-size: 18px; */
    }
    .ftt li {
        padding-bottom: 1rem;
    }
    .menu-btn {
        width: 60px;
        height: 60px;
    }
    .totop img {
        width: 70%;
    }
    .yoyaku img {
        width: 70%;
    }
    .ftt {
        padding-top: 3em;
        text-align: center;
        padding-left: 0;
        padding-right: 0;
    }
    .totop {
        top: 80%;
    }
    .yoyaku {
        top: 74%
    }
    .menu-content ul li a {
        font-size: 1.3rem;
    }
    footer .nav {
        padding: 1rem;
    }
    .aaa {
        padding: 0;
        font-size: 12px;
    }
    .copy {
        font-size: 12px;
    }
}