@charset "UFT-8";

@media screen and (max-width:1280px) {
    img {
    max-width: 100%;
    height: auto;
    }
}
@media screen and (max-width:767px) {
    img {
    max-width: 100%;
    height: auto;
    }
}
/* main */

main {
    background-color: #f4f6f8;
}
h2 {
    font-size: 34px;
    font-family: gyst-variable, sans-serif;
    font-variation-settings: "wght" 550;
    color: #001d42;
    text-align: center;
    letter-spacing: 0.2em;
    padding-top: 100px;
    padding-bottom: 5px;
}
h3 {
    text-align: center;
    font-family: "ten-mincho", serif;
    font-weight: 400;
    font-style: normal;
    padding-bottom: 60px;
    letter-spacing: 0.8em;
    color: #001d42;
}

/* header */

a {
    text-decoration: none;
    color: #fad4af;
}
a:hover {
    opacity: 0.7;
    cursor: pointer;
}
header {
    position: fixed;
    height: 70px;
    width: 100%;
    background:rgba(0,29,66,0.8);
    z-index: 9;
}
.logo-mark {
    position: absolute;
    top: 14px;
    left: 25px;
}
#g-nav ul {
    position: absolute;
    display: flex;
    font-size: 22px;
    font-family: gyst-variable, sans-serif;
    font-variation-settings: "wght" 550;
    letter-spacing: 0.1em;
    gap: 32px;
    top: 27px;
    right: 40px;
}
@media screen and (max-width:376px) {
    header {
        height: 50px;
    }
    .logo-mark {
        position: absolute;
        top: 8px;
        left: 13px;
    }
    .logo-mark img {
     max-width: 77%;
     height: auto;
    }
}

/* hamburger */

@media screen and (max-width:767px) {
    /*========= ナビゲーションのためのCSS ===============*/
    
    /*アクティブになったエリア*/
    #g-nav.panelactive{
        /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
        position:fixed;
        z-index: 999;
        top: 0;
        width:100%;
        height: 100vh;
    }
    
    /*丸の拡大*/
    .circle-bg{
        position: fixed;
        z-index:3;
        /*丸の形*/
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: #001d42;
        /*丸のスタート位置と形状*/
        transform: scale(0);/*scaleをはじめは0に*/
        right:-50px;
        top:-50px;
        transition: all .6s;/*0.6秒かけてアニメーション*/
    }
    
    .circle-bg.circleactive{
        transform: scale(50);/*クラスが付与されたらscaleを拡大*/
    }
    
    /*ナビゲーションの縦スクロール*/
    #g-nav-list{
        display: none;/*はじめは表示なし*/
        /*ナビの数が増えた場合縦スクロール*/
        position: fixed;
        z-index: 999; 
        width: 100%;
        height: 100vh;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }
    #g-nav.panelactive #g-nav-list{
         display: block; /*クラスが付与されたら出現*/
    }
    
    /*ナビゲーション*/
    #g-nav ul {
        opacity: 0;/*はじめは透過0*/
        /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
        position: absolute;
        z-index: 999;
        top:50%;
        left:50%;
        transform: translate(-50%,-50%);
        display: flex;
        /* 追加の記述・フレックスをかけ */
        flex-direction: column;
        /* 追加の記述・カラムを指定 */
    }
    
    /*背景が出現後にナビゲーションを表示*/
    #g-nav.panelactive ul {
        opacity:1;
    }
    
    /* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
    #g-nav.panelactive ul li{
    animation-name:gnaviAnime;
    animation-duration:1s;
    animation-delay:.2s;/*0.2 秒遅らせて出現*/
    animation-fill-mode:forwards;
    opacity:0;
    }
    @keyframes gnaviAnime{
    0% {
    opacity: 0;
    }
    100% {
    opacity: 1;
    }
    }
    
    /*リストのレイアウト設定*/
    #g-nav li{
        text-align: center; 
        list-style: none;
    }
    #g-nav li a{
        color: #fad4af;
        text-decoration: none;
        padding:10px;
        display: block;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: bold;
        font-size: 22px;
    }
    
    /*========= ボタンのためのCSS ===============*/
    .openbtn{
        position:fixed;
        top:10px;
        right: 10px;
        z-index: 9999;/*ボタンを最前面に*/
        cursor: pointer;
        width: 50px;
        height:50px;
    }	
    @media screen and (max-width:376px) {
    .openbtn {
        top: 2px;
        right: 2px;
    }
    }
    /*×に変化*/	
    .openbtn span{
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 1px;
        border-radius: 2px;
        background-color: #fad4af;
          width: 58%;
      }
    .openbtn span:nth-of-type(1) {
        top:16px;	
    }
    .openbtn span:nth-of-type(2) {
        top:23px;
    }
    .openbtn span:nth-of-type(3) {
        top:30px;
    }
    .openbtn.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }
    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
    }
    .openbtn.active span:nth-of-type(3){
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }
        } 
        @media screen and (max-width:470px) {
            #g-nav li a {
                font-size: 21px;
            }
        }   
         @media screen and (max-width:376px) {
            #g-nav li a {
                font-size: 20px;
            }
        }
        @media screen and (max-width:321px) {
            #g-nav li a {
                font-size: 18px;
            }
        }

/* top */
.top {
    max-width: 100%;
    height: 887px;
    background-image: url(../image/menu/menu-top.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    /* フレックスをかけ */
    flex-direction: column;
    /* カラムをかけ */
    justify-content: center;
    /* 縦の中で中央になり */
    align-items: center;
    /* 真ん中に来る */
}
@media screen and (max-width:1280px) {
    .top {
        max-width: 100%;
        height: 730px;
    }
}
@media screen and (max-width:767px) {
    .top {
        max-width: 100%;
        height: 682px;
    }
}
@media screen and (max-width:376px) {
    .top {
        max-width: 100%;
        height: 632px;
    }
}
h1 {
    text-align: center;
    font-size: 44px;
    font-family: gyst-variable, sans-serif;
    font-variation-settings: "wght" 550;
    color: aliceblue;
    padding-top: 180px;
    letter-spacing: 0.1em;
}
@media screen and (max-width:1280px) {
    h1 {
        font-size: 41px;
    }
    h2 {
        font-size: 32px;
    }
    h3 {
        font-size: 15px;
    }
}
@media screen and (max-width:767px) {
    h1 {
        font-size: 36px;
        padding-top: 45px;
    }
    h2 {
        font-size: 30px;
    }
    h3 {
        font-size: 14px;
    }
}
@media screen and (max-width:376px) {
    h1 {
        font-size: 32px;
        padding-top: 65px;
    }
    h2 {
        font-size: 25px;
    }
    h3 {
        font-size: 13px;
    }
}
@media screen and (max-width:321px) {
    h1 {
        font-size: 30px;
        padding-top: 29px;
    }
    h2 {
        font-size: 23px;
    }
    h3 {
        font-size: 12px;
        padding-bottom: 40px;
    }
}


/* calendar */

.section-calendar p {
    text-align: center;
    font-size: 44px;
    font-family: gyst-variable, sans-serif;
    font-variation-settings: "wght" 550;
    color: #001d42;
    padding: 60px 0 30px;
}
@media screen and (max-width:1280px) {
    .section-calendar p {
        font-size: 39px;
    }
}
@media screen and (max-width:767px) {
    .section-calendar p {
        font-size: 36px;
    }
}
@media screen and (max-width:376px) {
    .section-calendar p {
        font-size: 33px;
        padding: 70px 0 15px;
    }
}
@media screen and (max-width:321px) {
    .section-calendar p {
        font-size: 30px;
        padding: 70px 0 10px;
    }
}
.calendar-span {
    font-family: "ten-mincho", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    color: #001d42;
}
@media screen and (max-width:376px) {
.calendar-span {
    font-size: 16px;
}
}
.now-month {
    display: flex;
    justify-content: center;
    letter-spacing: 0.1em;
    position: relative;
}
.calendar-contentbox {
    width: 55%;
    margin: 0 auto;
}
@media screen and (max-width:767px) {
    .calendar-contentbox {
        width: auto;
        padding: 0px 20px 0;
    }
}
.nextmonth p {
    display: flex;
    justify-content: flex-end;
    font-size: 26px;
    letter-spacing: 0.1em;
    padding: 20px 0;
}
@media screen and (max-width:767px) {
    .nextmonth p {
        font-size: 23px;
    }
}
@media screen and (max-width:376px) {
    .nextmonth p {
        font-size: 22px;
    }
    }
    @media screen and (max-width:321px) {
        .nextmonth p {
            font-size: 20px;
        }
    }
.section-calendar table {
    border: 1px solid #001d42;
}
.section-calendar th {
    height: 40px;
    vertical-align: middle;
    padding: 8px;
}
.section-calendar td {
    border: 1px solid #001d42;
    height: 40px;
    vertical-align: middle;
    padding: 8px;
}
@media screen and (max-width:420px) {
    .section-calendar th {
        height: 36px;
    }
    .section-calendar td {
        height: 36px;
    }
}
@media screen and (max-width:380px) {
    .section-calendar th {
        height: 34px;
    }
    .section-calendar td {
        height: 34px;
    }
}
@media screen and (max-width:325px) {
    .section-calendar th {
        height: 32px;
    }
    .section-calendar td {
        height: 32px;
    }
}
@media screen and (max-width:321px) {
    .section-calendar th {
        height: 30px;
    }
    .section-calendar td {
        height: 30px;
    }
}
.nonation {
    display: flex;
    gap: 7px;
    padding: 10px 0px 0px 0px;
}
.nonation p {
    font-family: "ten-mincho", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    padding: 0px;
}
@media screen and (max-width:767px) {
    .nonation p {
        font-size: 15px;
    }
}
@media screen and (max-width:376px) {
    .nonation p {
        font-size: 13px;
    }
    }
    @media screen and (max-width:321px) {
        .nonation p {
            font-size: 12px;
        }
    }

/* pricelist */

.pricelist-contentbox {
    width: 55%;
    margin: 0 auto;
}
@media screen and (max-width:767px) {
    .pricelist-contentbox {
        width: auto;
        padding: 0px 20px 0;
    }
}
table {
    width: 100%;
    border: 1px solid #001d42;
    font-family: "ten-mincho", serif;
    font-weight: 400;
    font-style: normal;
    margin: 0 auto;
}
table tr:first-child {
    background: #cdd8e2;
}
th {
    color: #001d42;
    border: 1px solid #001d42;
    font-family: "ten-mincho", serif;
    font-weight: 400;
    font-style: normal;
    vertical-align: middle;
    padding: 8px;
}
td {
    color: #001d42;
    border: 1px solid #001d42;
    padding: 8px;
    text-align: center;
}
@media screen and (max-width:1280px) {
th {
    font-size: 16px;
}
td {
    font-size: 15px;
}
}
@media screen and (max-width:767px) {
    th {
        font-size: 15px;
    }
    td {
        font-size: 14px;
    }
}
@media screen and (max-width:376px) {
    th {
        font-size: 14px;
    }
    td {
        font-size: 13px;
    }
    }
    @media screen and (max-width:321px) {
        th {
            font-size: 13px;
        }
        td {
            font-size: 11px;
        }
    }
/* footer */

footer {
    background-color: #001d42;
    position: relative;
    margin-top: 80px;
}
.footer-navi {
    display: flex;
    justify-content: center;
    font-size: 23px;
    font-family: gyst-variable, sans-serif;
    font-variation-settings: "wght" 550;
    gap: 40px;
    padding-top: 50px;
    box-sizing: border-box;
}
@media screen and (max-width:767px) {
    .footer-navi {
     flex-direction: column;
     /* columをかけ縦に */
     gap: 16px;
     margin-left: 24px;
    }
}
@media screen and (max-width:376px) {
    .footer-navi {
       font-size: 20px;
       }
}
.footer-navi a {
    text-decoration: none;
    color: #fad4af;
}
.footer-navi a:hover {
    opacity: 0.7;
    cursor: pointer;
}
.scroll-button {
    position: absolute;
    top: 50px;
    right: 51px;
}
@media screen and (max-width:1280px) {
    .scroll-button {
        top: 43px;
        right: 51px;
       }
}
@media screen and (max-width:767px) {
    .scroll-button {
     top: 43px;
     right: 32px;
    }
}
@media screen and (max-width:376px) {
    .scroll-button {
     width: 32px;
     height: 18px;
    }
}
.sns-icon {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding-top: 75px;
    padding-bottom: 25px;
}
.small {
    text-align: center;
    font-size: 16px;
    font-family: gyst-variable, sans-serif;
    font-variation-settings: "wght" 550;
    color: #fad4af;
    padding-bottom: 25px;
    box-sizing: border-box;
}
@media screen and (max-width:376px) {
    .small {
        font-size: 15px;
    }
    }