@charset "UTF-8";

html {
    font-size: 100%;
}

body {
    background-color: #f2ece1;
    color: #333;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 400;
    font-style: normal;
}

img {
    width: 100%;
    vertical-align: bottom;
}

li {
    list-style: none;
}

a {
    color: #333;
    text-decoration: none;
    transition: all 0.3 ease;
}

a:hover {
    opacity: 0.7;
}

iframe {
    /*外部のページ読み込み。googlemap*/
    vertical-align: bottom;
}

@media screen and (max-width: 767px) {}


#header-area {
    display: flex;
    padding: 50px;
    margin-bottom: 50px;
}

#header-area .header {
    max-width: 130px;
}

#header-area .header .logo {
    margin-bottom: 20px;
}

#header-area .header .logo a {
    display: block;
}

#header-area .header .navi .menu {
    text-align: center;
}

#header-area .header .navi .menu li {
    margin-bottom: 30px;
    font-size: 17px;
}

#header-area .mainvisual {
    width: 100%;
    margin-left: 50px;
    position: relative;
}


#header-area .mainvisual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
}

@media screen and (max-width: 767px) {

    #header-area {
        flex-direction: column;
        padding: 20px;
        margin-bottom: 40px;
    }

    #header-area .header {
        max-width: 100%;
        margin-bottom: 20px;
    }

    #header-area .header .logo {
        max-width: 80px;
        margin: 0 auto;
        /*中央寄せ*/
    }

    #header-area .mainvisual {
        margin-left: 0;
    }

    #header-area .mainvisual img {
        object-fit: contain;
        height: auto;
    }
}

@media screen and (max-width: 767px) {

    #header-area .header .hamburger {
        /*箱本体の設定。今回背景あり*/
        width: 50px;
        height: 50px;
        background-color: #333;
        cursor: pointer;
        border-radius: 10px;
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 20;
    }

    #header-area .header .hamburger span {
        width: 30px;
        height: 3px;
        background-color: #fff;
        position: absolute;
        /*absolute がある場合3本の span は同じ原点（左上）からスタートできる*/
        display: inline-block;
        /*span=インライン要素、破棄にきちんと入れるためinline-block*/
        border-radius: 5px;
        left: 10px;
        transition: all 0.4s;
        /*Before → After の変化の時間*/
    }

    #header-area .header .hamburger span:nth-of-type(1) {
        top: 16px;
    }

    #header-area .header .hamburger span:nth-of-type(2) {
        top: 25px;
    }

    #header-area .header .hamburger span:nth-of-type(3) {
        top: 34px;
    }
}

@media screen and (max-width: 767px) {

    #header-area .header .navi {
        width: 100%;
        height: 100vh;
        background-color: #fff;
        position: fixed;
        top: 0;
        left: 0;
        opacity: 0;
        visibility: hidden;
        /*opacity: 0;だけではクリックできてしまうため、クリックできないよう設定*/
        z-index: 10;
    }

    #header-area .header .navi .menu {
        width: 100%;
        height: 100vh;
        padding: 80px 0;
        overflow: auto;
    }

    /*autive*/
    #header-area .header .navi.active {
        opacity: 1;
        visibility: visible;
        transition: all 0.6s;
    }

    #header-area .header .hamburger.active span:nth-of-type(1) {
        top: 24px;
        transform: rotate(-45deg);
    }

    #header-area .header .hamburger.active span:nth-of-type(2) {
        opacity: 0;
    }

    #header-area .header .hamburger.active span:nth-of-type(3) {
        top: 24px;
        transform: rotate(45deg);
    }
}

.wrapper {
    max-width: 1040px;
    padding: 0 20px;
    margin: 0 auto;
}

.section-title-v {
    letter-spacing: 0.1em;
    writing-mode: vertical-rl;
    /*右→左に行が増える*/
}

.section-title-v .jp {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}

.section-title-v .en {
    font-size: 14px;
    font-weight: 500;
}

.btn {
    width: 100%;
    max-width: 200px;
    border: solid 1px #1b1111;
    border-radius: 30px;
    display: block;
    font-size: 14px;
    padding: 10px 0;
    position: relative;
    text-align: center;
}

.btn::before {
    content: "";
    width: 25px;
    height: 1px;
    background-color: #1b1111;
    position: absolute;
    top: 20px;
    right: 15px;
}

.btn::after {
    content: "";
    width: 8px;
    height: 1px;
    transform: rotate(35deg);
    background-color: #1b1111;
    position: absolute;
    top: 18px;
    right: 14px;
}

.btn:hover {
    background-color: #1b1111;
    color: #fff;
    transition: 0.3s ease;
}

.btn:hover::before {
    /*矢印のhover時の設定*/
    background-color: #fff;
}

.btn:hover::after {
    background-color: #fff;
}

@media screen and (max-width: 767px) {
    /*レスポンシブで変えること＝flex方向、フォントサイズ、余白、*/

    .section-title-v {
        margin-bottom: 20px;
        writing-mode: horizontal-tb;
        /*スマホは通常の横書き表示に*/
    }

    .section-title-v .jp {
        font-size: 22px;
    }

    .section-title-v .en {
        font-size: 10px;
    }
}

.section-title-h {
    /*ゆとりを持たせることで落ち着き感を演出*/
    letter-spacing: 0.1em;
}

.section-title-h .jp {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}

.section-title-h .en {
    font-size: 14px;
    font-weight: 500;
}

@media screen and (max-width: 767px) {
    .section-title-h .jp {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .section-title-h .en {
        font-size: 10px;
        font-weight: 500;
    }
}

#access {
    background-color: #e9e1d1;
    padding: 80px 0;
}

#access .inner {
    display: flex;
}

#access .info {
    font-size: 14px;
    margin-right: auto;
    /*autoにして左寄せ*/
}

#access .info dt {
    font-weight: 500;
    margin-bottom: 5px;
}

#access .info dd {
    margin-bottom: 20px;
}

#access .map {
    width: 100%;
    max-width: 580px;
    height: 360px;
    /*iframe は 高さを指定しないと表示されない.iframe は 中身を引き伸ばさないgooglemapは拡大縮小も可能だからそんな気にしなくてOK*/
    margin: 0 40px;
}

#access .map iframe {
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 767px) {

    #access {
        padding: 40px 0;
    }

    #access .inner {
        flex-direction: column-reverse;
    }

    #access .info dd:last-child {
        margin-bottom: 0;
    }

    #access .map {
        height: 240px;
        /*前提として#access .map{width: 100%;があるため、横：自動で最適*/
        margin: 0 0 20px;
    }
}

#footer .menu-area {
    padding: 60px 0 40px;
}

#footer .menu-area .logo{
    max-width: 100px;
    margin: 0 auto 40px;
}

#footer .menu-area .menu{
    display: flex;
    justify-content: center;
}

#footer .menu-area .menu li{
    margin: 0 15px;
    font-size: 14px;
}

#footer .menu-area .sns{
    display: flex;
    justify-content: center;
}

#footer .menu-area .sns li{
    margin: 20px 30px 0;
    font-size: 14px;
}

#footer .copyright{
    background-color: #333;
    color: #fff;
    text-align: center;
    font-size: 10px;
    padding:20px 0 ;
}

@media screen and (max-width: 767px) {

    #footer .menu-area {
        padding: 30px 0 20px;
    }

#footer .menu-area .logo{
    max-width: 80px;
}}

#header-area .mainvisual .page-title{
    width: 100%;
    max-width: 300px;
    background-color: #f2ece1;
    border-radius: 0 30px 0 0;
    padding-top: 15px;
    text-align: center;
    position: absolute;
    bottom: -1px;/*位置をずらす*/
    left: -1px;
}

#header-area .mainvisual .page-title .ja{
    display: block;/*span必須*/
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 5px;
}

#header-area .mainvisual .page-title .en{
    display: block;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
    #header-area .mainvisual .page-title{
        max-width: 180px;
        line-height: 1.8;
    }

    #header-area .mainvisual .page-title .ja{
        font-size: 10px;
    }
    #header-area .mainvisual .page-title .en{
        font-size: 18px;
    }
}

.wrapper-1300{
    max-width: 1340px;
    padding: 0 20px;
    margin: 0 auto;
}



