@charset "utf-8";


/*========= 上部固定させるためのCSS ===============*/
#header {
    height: 70px;
    /*高さ指定*/
    width: 100%;
    /*横幅指定*/
    /*以下はレイアウトのためのCSS*/
    display: flex;
    justify-content: end;
    justify-content: space-between;
    font-family: serif;
    background: rgb(253, 253, 253);
    color: rgb(0, 0, 0);
    text-align: right;
    padding: 20px;
}



/*JSを使いfixedクラスが付与された際の設定*/
#header.fixed {
    position: fixed;
    /*fixedを設定して固定*/
    z-index: 999;
    /*最前面へ*/
    top: 0;
    /*位置指定*/
    left: 0;
    /*位置指定*/
}

/*ナビゲーションバーSNSアイコン*/
@media screen and (min-width:767px) {

    .sns {
        position: absolute;
        margin-left: 1600px;
        /* width: 10%; */
        margin-top: -23px;
        display: flex;
    }

    svg {
        /* width: 50%; */
        /* padding-right: 10%; */
    }

    .x {
        display: block;
        /* margin-right: 1200px; */
        /* position: absolute; */
        /* margin: 20vw; */
        /* width: 1000px; */
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .insta {
        display: flex;
        justify-content: right;
    }

    .insta svg {
        width: 38%;
    }

    .x svg {
        width: 28%;
        margin-right: 40px;
    }

    svg#Layer_1 {
        width: 35%;
        margin-top: 30px;
        display: block;
        margin-left: -35px;
    }
}



/*========= レイアウトのためのCSS ===============*/

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

    h1 {
        font-size: 1.2rem;
        font-family: serif;
        font-weight: bold;
        text-align: center;
        margin-right: 0;
    }
}

/*
@media screen and (max-width:767px) {
    h1 {
        font-size: 1em;
        text-align: center;
        font-weight: bold;
    }

    toptitle {
        font-size: 0.5rem;
        margin-bottom: 5px;
    }
}*/

/*
nav p {
    margin-top: 20px;
}

small {
    background: #333;
    color: #fff;
    display: block;
    text-align: center;
    padding: 20px;
}*/



nav ul {
    list-style: none;
    display: flex;
    justify-content: right;
    font-family: serif;
    padding-inline-start: 10px;
    writing-mode: horizontal-tb;
}

nav ul li a {
    display: block;
    text-decoration: none;
    color: #666;
    padding: 20px;
    margin: 0 auto;
    transition: all 0.3s;
}

nav ul li.current a,
nav ul li a:hover {
    color: rgb(2, 158, 179);
}


section {
    padding: 30px;
}

section:nth-child(2n) {
    background: #f3f3f3;
}

nav a {
    position: relative;
    display: inline-block;
    text-decoration: none;
}

nav a::after {
    position: absolute;
    bottom: -3px;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform .3s;
}

nav a:hover::after {
    transform: scale(1, 1);
}

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

    nav a::after {
        background-color: white;
        margin-left: 40vw;
        width: 80px;
    }

    nav ul{
    justify-content: center;}

    .mouse-stalker {
        display: block;
    }


}


/*メガメニュー部分*/

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

    .global_menu {
        /* メニュー全体のスタイル */
        width: 100%;
        position: relative;
        color: #333;
        /* 文字色 */
        background: #fff;
        /* 背景色 */
        text-align: center;
    }

    .global_menu ul {
        padding-top: 30px;
    }

    .global_menu li {
        display: inline-block;
    }

    .global_menu a {
        /* 各項目のスタイル */
        display: block;
        padding: 10px 30px;
    }

    .menu:hover>a {
        transition: .3s ease-in-out;
        background: #fff;
        z
    }
}


    .child_menu>li>a {
        /* 子項目のスタイル */
        font-size: 0.8em;
    }


    .child_menu {
        /* 下層メニューのスタイル */
        width: 99%;
        position: absolute;
        left: -4%;
        color: #333;
        /* 文字色 */
        background: linear-gradient(-225deg, #fff 0%, #0e9eb4 50%, #fff 100%);
        /* 背景色 */
        visibility: hidden;
        /* 下層メニューを非表示 */
        z-index: 10;
        /*ホバー時上から最前面*/
        align-items: center;
        height: 120px;
        left: 0;
    }

    .child_menu li a {
        color: #fff;
    }

    .child_menu li a:hover {
        color: #000;
    }

    .child_menu a:after {
        /*小メニューホバー時線*/
        position: absolute;
        bottom: -3px;
        left: 0;
        content: '';
        background-color: #000;
        width: 100%;
        height: 1px;
        transform: scale(0, 1);
        transform-origin: center top;
        transition: transform .3s;
    }

    .menu:hover .child_menu {
        /* 下層メニューのスタイル（親項目ホバー時） */
        visibility: visible;
        /* 下層メニューを表示 */
    }

    .child_menu a:hover {
        color: #0e9cb4;
    }

    .menu a {
        font-size: 13px;
    }

    /*矢印*/

    /* .dli-chevron-down {
    display: inline-block;
    vertical-align: middle;
    color: #333;
    line-height: 1;
    width: 1em;
    height: 1em;
    border: 0.1em solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateY(-25%) rotate(135deg);
  }

  .dli-chevron-down:hover::after {
    position: absolute;
    right: 1rem;
    padding-left: 0.6rem;
    border-left: 3px solid;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transition: .3s;
    content: '\f061';
}

  .dli-chevron-down:hover::after {
    border-left: none;
    right: 0.5rem;
} */

    /*ナビゲーション　レスポンシブ*/
    /* スマホ閲覧時のハンバーガーメニュー */


    #hanburger {
        display: none;
        /* チェックボックスを非表示 */
    }



    /*------------ハンバーガーメニュー
------------------*/


    a {
        color: #040404;
        text-decoration: none;
    }

    /*ハンバーガーボタン*/
    .el_humburger {
        position: fixed;
        top: 45px;
        right: 60px;
        width: 46px;
        height: 25px;
        padding-top: 1px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding-top: 0px;
        z-index: 20;
        cursor: pointer;
        pointer-events: auto;
        color: #000;
        text-align: center;
    }

    /* .el_humburger_wrapper {
    margin-bottom: 5px;
    width: 42px;
    display: inline-block;
} */

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

        .el_humburger {
            right: 0;
        }

        .el_humburger_wrapper {
            margin-bottom: 5px;
            width: 30px;
        }
    }
}

    .el_humburger_text {
        font-size: 12px;
        letter-spacing: 0.1em;
        font-family: 'Zen Old Mincho', serif;
    }

    .js_humburgerOpen .el_humburger_text.el_humburger_text__menu {
        display: none;
    }

    .el_humburger_text.el_humburger_text__close {
        display: none;
    }

    .js_humburgerOpen .el_humburger_text.el_humburger_text__close {
        display: block;
    }

    @media screen and (max-width: 840px) {
        .el_humburger_text {
            font-size: 10px;
            padding-top: 2px;
        }
    }

    @media screen and (max-width: 840px) {
        .el_humburger_text svg path {
            -webkit-transition: all 200ms cubic-bezier(0.16, 0.52, 0.25, 1);
            -o-transition: all 200ms cubic-bezier(0.16, 0.52, 0.25, 1);
            transition: all 200ms cubic-bezier(0.16, 0.52, 0.25, 1);
            fill: #000;
        }
    }

    @media screen and (max-width: 840px) {
        .js_humburgerOpen .el_humburger_text svg path {
            fill: #000;
        }
    }

    .el_humburger span.el_humburger_bar {
        display: block;
        width: 100%;
        margin: 0 auto 9px;
        height: 1px;
        background: #000;
        -webkit-transition: all .2s ease-in-out;
        -o-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out;
    }

    .el_humburger span.el_humburger_bar:last-child {
        margin-bottom: 0;
    }

    .js_humburgerOpen .el_humburger span.el_humburger_bar {
        background: #000;
    }

    @media screen and (max-width: 840px) {
        .el_humburger span.el_humburger_bar {
            left: 0;
            top: 0;
            background: #000;
        }
    }

    .js_humburgerOpen .el_humburger span.el_humburger_bar.top {
        -webkit-transform: translateY(9px) rotate(-45deg);
        -ms-transform: translateY(9px) rotate(-45deg);
        transform: translateY(9px) rotate(-45deg);
    }

    .js_humburgerOpen .el_humburger span.el_humburger_bar.middle {
        opacity: 0;
    }

    .js_humburgerOpen .el_humburger span.el_humburger_bar.bottom {
        -webkit-transform: translateY(-11px) rotate(45deg);
        -ms-transform: translateY(-11px) rotate(45deg);
        transform: translateY(-11px) rotate(45deg);
    }

    .el_humburgerButton.el_humburgerButton__close {
        top: 2%;
        right: 2%;
    }

    .el_humburgerButton__close span.el_humburger_bar {
        display: block;
        width: 35px;
        margin: 0 auto;
        height: 4px;
        background: #000;
    }

    .el_humburgerButton__close span.el_humburger_bar.top {
        -webkit-transform: translateY(5px) rotate(-45deg);
        -ms-transform: translateY(5px) rotate(-45deg);
        transform: translateY(5px) rotate(-45deg);
    }

    .el_humburgerButton__close span.el_humburger_bar.bottom {
        -webkit-transform: translateY(-6px) rotate(45deg);
        -ms-transform: translateY(-6px) rotate(45deg);
        transform: translateY(-6px) rotate(45deg);
    }

    .navi {
        position: fixed;
        right: 0;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.9);
        width: 450px;
        z-index: 3;
        padding-top: 100px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-transition: all 600ms ease-out;
        -o-transition: all 600ms ease-out;
        transition: all 600ms ease-out;
        transform: translateZ(0) translateX(100%);
        overflow: auto;
    }

    .js_humburgerOpen .navi {
        transform: translateZ(0) translateX(0);
    }

    @media screen and (max-width: 840px) {
        .navi {
            top: 0;
            padding: 100px 5% 0;
        }

        .js_humburgerOpen .navi {
            width: 100%;
        }
    }

    .navi_item {
        margin-bottom: 28px;
        font-size: 20px;
        font-family: 'Zen Old Mincho', serif;
        white-space: nowrap;
        margin-left: 90px;
    }

    .navi_item a::after {
        position: absolute;
        bottom: 3px;
        left: 15px;
        content: '';
        width: 100%;
        height: 2px;
        background: #0e9eb4;
        transform: scale(0, 1);
        transform-origin: left top;
        transition: transform .3s;
    }

    .navi_item.op_innerLink {
        cursor: pointer;
    }

    @media screen and (max-width: 840px) {
        .navi_item {
            margin-left: 0;
            font-size: 18px;
        }
    }

    .navi_item a {
        padding: 15px;
    }

    @media screen and (min-width:767px) {
        .el_humburger {
            display: none;
        }

        .navi {
            display: none;
        }

    }

    /*------------ハンバーガーメニュー
------------------*/

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

        #hanburger:checked+.menu_button::before {
            /* アイコンのスタイル（チェック済み） */
            content: "\f00d";
            /* アイコン「×印」 */
        }

        .menu_button {
            /* ボタンのスタイル */
            width: 50px;
            /* 幅 */
            height: 50px;
            /* 高さ */
            position: fixed;
            top: 20px;
            right: 20px;
            background: #0e9cb4;
            /* 背景色 */
            z-index: 100000000;
        }

        .menu_button::before {
            /* アイコンのスタイル */
            font-family: "Font Awesome 5 Free";
            content: "\f0c9";
            /* アイコン「３本線」 */
            font-weight: 900;
            position: absolute;
            color: #fff;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .global_menu {
            /* メニュー全体のスタイル */
            visibility: hidden;
            /* メニューを非表示 */
            width: 100%;
            height: 100%;
            position: fixed;
            top: 0;
            left: 0;
            padding: 20px;
            color: #333;
            /* 文字色 */
            background: #0e9cb4;
            /* 背景色 */
            overflow-y: scroll;
            text-align: center;
            z-index: 100;
        }

        #hanburger:checked~.global_menu {
            /* メニュー全体のスタイル（チェック済） */
            visibility: visible;
            /* メニューを表示 */
        }

        nav a::after {
            background-color: white;
            margin-left: 40vw;
            width: 80px;
        }
    }

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

        .global_menu {
            padding-left: 0px;
        }

        .menu a {
            font-size: 10px;
        }

        nav ul li a {
            display: flex;
            justify-content: center;
            color: white;
            margin-top: 10px;

        }

        nav ul {
            display: block;

        }

        nav ul li.current a,
        nav ul li a:hover {
            color: black;
        }

        .menu a {
            font-size: 22px;
        }

        .child_menu a {
            font-size: 18px;
        }

    }

    /*メニュー　現在地カレント表示*/

    .now-page a {
        border-bottom: solid 1px #0e9eb4;
    }