@charset "UTF-8";

/* ======
共通設定
======= */
* {
    color: #333;
    font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "YuMincho", "Yu Mincho", serif;
}

a {
    text-decoration: none;
    font-family: "YuMincho", "Yu Mincho", serif;
    transition: 0.4s;
}

a:hover {
    opacity: 0.7;
}

.inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.tb_only {
    display: none;
}

.sp_only {
    display: none;
}

section {
    padding-top: 88px;
    padding-bottom: 88px;
}

/* セクション見出し */
.sec_title {
    font-size: 32px;
    text-align: center;
    font-weight: lighter;
    letter-spacing: 4px;
}

.sec_subtitle {
    font-size: 56px;
    color: #1f8ac060;
    letter-spacing: 4px;
    font-weight: lighter;
    text-align: center;
    z-index: -1;
    font-family: "YuMincho", "Yu Mincho", serif;
}


/* heading */
.heading {
    text-align: center;
    width: 120px;
    margin: 0 auto 48px;
}

.heading .heading_title {
    font-size: 24px;
    font-weight: lighter;
    letter-spacing: 4px;
    border-bottom: 1px dashed #333;
}

.heading .heading_subtitle {
    display: inline-block;
    padding-top: 4px;
    font-size: 12px;
    letter-spacing: 1px;
    font-family: "YuMincho", "Yu Mincho", serif;
}

/* btn */
.btn {
    display: block;
    text-align: center;
    margin: 96px auto 0;
    font-size: 18px;
    width: 40%;
    height: 56px;
    line-height: 56px;
    border-radius: 28px;
    background-color: #eded9f;
    transition: 0.5s;
    position: relative;
}

.btn::after {
    font-family: "Material Symbols Outlined";
    content: "\eac9";
    position: absolute;
    right: 8%;
    font-size: 20px;
    transition: 0.5s;
}

.btn:hover {
    opacity: 0.9;
}

.btn:hover::after {
    right: 5%;
}

/*----------------------------
fade_in ｜下から上へ出現
----------------------------*/
.fade_in {
    overflow: hidden;
    transition: 0.8s ease-in-out;
    opacity: 0;
}

.fade_in.on {
    opacity: 1.0;
}

.fade_in_fv {
    animation-name: fadeInAnime;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeInAnime {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media screen and (max-width:768px) {
    .inner {
        width: 95%;
    }

    .tb_only {
        display: block;
    }

    .btn {
        width: 60%;
        margin-top: 64px;
    }

    section {
        padding-top: 44px;
        padding-bottom: 44px;
    }

    /* =========== max-width:768px =========== */
}

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

    /* セクション見出し */
    .sec_title {
        font-size: 24px;
        letter-spacing: 2px;
    }

    .sec_subtitle {
        font-size: 40px;
    }

    .btn {
        width: 90%;
        font-size: 15px;
    }

    .sp_only {
        display: block;
    }

    /* =========== max-width:519px =========== */
}



/* ======
header
======= */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 80px;
    position: fixed;
    top: 0;
    background-color: #fff;
    z-index: 1;
    box-shadow: 0 5px 10px -6px rgba(0, 0, 0, .2);
    transition: 0.5s;
}

header.active {
    background-color: transparent;
    box-shadow: none;
}

header.active h1 {
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}

header.active h1 a,
header.active h1 a img {
    visibility: hidden;
}

header.active .ham {
    background-color: rgba(0, 0, 0, .1);
}

header.active .ham span {
    background-color: #fff;
}

header.active .ham::before,
header.active .ham::after {
    color: #fff;
}


header h1,
header h1 a,
header h1 a img {
    height: 72px;
    opacity: 1;
    visibility: visible;
}

/* ======
ham
======= */

.ham {
    width: 80px;
    height: 80px;
    position: fixed;
    top: 0;
    right: 0;
    cursor: pointer;
    z-index: 10;
}

.ham span {
    display: block;
    width: 44px;
    height: 2px;
    border-radius: 1px;
    background-color: #011B4D;
    position: absolute;
    left: 18px;
    top: 36px;
    transition: 0.5s;
}

.ham span:nth-child(1) {
    top: 22px;
}

.ham span:nth-child(3) {
    top: 50px;
}

.ham::after {
    content: 'MENU';
    display: inline-block;
    color: #011B4D;
    font-size: 10px;
    position: absolute;
    left: 24px;
    top: 58px;
    transition: 0.5s;
    opacity: 1;
}

.ham::before {
    content: 'CLOSE';
    display: inline-block;
    color: #fff;
    font-size: 10px;
    position: absolute;
    left: 23px;
    top: 58px;
    transition: 0.5s;
    opacity: 0;
}


/* ham click時 */
.ham.on span {
    background-color: #fff;
}

.ham.on span:nth-child(1) {
    transform: rotate(-45deg);
    top: 36px;
}

.ham.on span:nth-child(2) {
    opacity: 0;
}

.ham.on span:nth-child(3) {
    transform: rotate(45deg);
    top: 36px;
}

header.active .ham.on {
    background-color: transparent;
}

/* MENUの文字 */
.ham.on::after {
    opacity: 0;
}

/* CLOSEの文字 */
.ham.on::before {
    opacity: 1;
}

/* ======
g_nav
======= */
header .g_nav {
    width: 100vw;
    height: 100vh;
    background-color: #011B4D;
    position: absolute;
    top: 0;
    display: flex;
    justify-content: center;
    padding-top: 10vh;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    z-index: 2;
}


header .g_nav ul {
    list-style: none;
    margin-right: 10vw;
}

header .g_nav ul li:first-of-type {
    margin-bottom: 64px;
}

header .g_nav ul li {
    margin-bottom: 32px;
    font-size: 18px;
}

header .g_nav ul li a {
    color: #fff;
    transition: 0.4s;
}

header .g_nav ul li .btn {
    margin-top: 0;
    width: inherit;
    line-height: 50px;
    letter-spacing: 2px;
    border: 3px solid #eded9f;
    background-color: #eded9f;
    transition: 0.5s;
    border-radius: 0;
    color: #333;
}

header .g_nav ul li .btn:hover {
    background-color: transparent;
    color: #fff;
}

header .g_nav address p,
header .g_nav .tel_info p {
    color: #fff;
    font-family: "YuMincho", "Yu Mincho", serif;
    line-height: 2;
    letter-spacing: 2px;
    font-size: 15px;
}

header .g_nav .tel_info {
    margin-top: 16px;
    font-size: 16px;
}

header .g_nav .g_nav_menu li a img {
    width: 320px;
}

header .g_nav .g_nav_right .sns_list {
    display: flex;
    justify-content: flex-start;
    margin-top: 64px;
    margin-right: 0;
}

header .g_nav .g_nav_right .sns_list li {
    margin-right: 32px;
}

header .g_nav .g_nav_right .sns_list img {
    max-width: 64px;
}

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

    header .g_nav .g_nav_right .sns_list {
        width: 100%;
    }

    header .g_nav .g_nav_right .sns_list img {
        max-width: 48px;
    }

    /* =========== max-width:768px =========== */
}


/* list style */
header .g_nav ul li::before {
    content: '〉';
    color: #fff;
    margin-right: 8px;
}

header .g_nav ul li:first-of-type:before,
header .g_nav ul li:last-of-type:before {
    content: '';
}

/* g_nav_r */
header .g_nav .g_nav_right {
    margin-top: 204px;
    margin-left: 10vw;
    font-size: 15px;
}


/* ham click時 */
header .g_nav.on {
    opacity: 1;
    visibility: visible;
}

/* address */
address {
    font-style: normal;
    margin-top: 16px;
}

address p {
    font-family: "YuMincho", "Yu Mincho", serif;
    letter-spacing: 2px;
}

@media screen and (max-width:768px) {
    header .g_nav {
        display: block;
        height: 100vh;
        overflow: auto;
    }

    header .g_nav ul {
        width: 80%;
        margin: 0 auto;
    }

    /* g_nav_r */
    header .g_nav .g_nav_right {
        padding-bottom: 80px;
        width: 80%;
        margin: 0 auto;
    }

    address {
        margin-top: 80px;
    }

    /* =========== max-width:768px =========== */
}

/* ======
下層mv
======= */
.mv img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
    z-index: -1;
    position: relative;
}

.mv::before {
    content: '';
    width: 100%;
    height: 60vh;
    display: block;
    background-color: rgba(0, 0, 0, .4);
    position: absolute;
}

.mv .sec_title,
.mv .sec_subtitle {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
}

/* ======
料金表
======= */
.price_table {
    max-width: 1200px;
    width: 70%;
    margin: 0 auto;
    border-collapse: collapse;
    text-align: center;
}

.price_table tr {
    border-top: 1px solid #1f8ac060;
    border-bottom: 1px solid #1f8ac060;
    line-height: 72px;
}

.table_heading {
    width: calc(100%/3);
    text-align-last: left;
}

.price_table .tax {
    font-size: 14px;
}

.ci_co {
    width: 70%;
    margin: 24px auto 0;
}

.ci_co p {
    margin-bottom: 16px;
}

.ci_co span:first-of-type {
    padding: 4px 12px;
}

.ci_co span {
    display: inline-block;
    background-color: #1f8ac060;
    border-radius: 30px;
    margin-bottom: 16px;
    font-weight: bold;
}

@media screen and (max-width:519px) {
    .price_table {
        font-size: 14px;
        width: 90%;
    }

    .price_table tr {
        line-height: 56px;
    }

    .ci_co {
        width: 90%;
    }

    /* =========== max-width:519px =========== */
}

/* ======
sec_access
======= */
.sec_access {
    position: relative;
}

.sec_access .sec_subtitle {
    position: absolute;
    left: 50%;
    top: 44px;
    transform: translateX(-50%);
}

.sec_access iframe {
    display: block;
    width: 80%;
    margin: 66px auto;
}

/* ======
sec_contact
======= */
.sec_contact {
    position: relative;
}

.sec_contact .contact_text {
    text-align: center;
    margin-top: 66px;
    line-height: 2;
}

.sec_contact .btn::after {
    content: '\e163';
}

@media screen and (max-width:519px) {
    .sec_contact .contact_text {
        text-align: left;
    }

    /* =========== max-width:519px =========== */
}

/* ======
page top
======= */
/*リンクの形状*/
#page-top a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #011B4D;
    border-radius: 30px;
    width: 60px;
    height: 60px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.6rem;
    transition: all 0.3s;
    border: 1px solid #fff;
}

#page-top a span {
    color: #fff;
}

#page-top a:hover {
    background: #777;
}

/*リンクを右下に固定*/
#page-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 0;
    /*はじめは非表示*/
    opacity: 0;
}

/*　上に上がる動き　*/

#page-top.UpMove {
    animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/*　下に下がる動き　*/

#page-top.DownMove {
    animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

/* ======
footer
======= */
footer {
    background-color: #011B4D;
    padding: 80px 0 24px;
}

footer .flexbox {
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

footer .flexbox .f_nav_left {
    margin-right: 24px;
    width: 33%;
    text-align: center;
}

footer .flexbox .f_nav_left img {
    max-width: 320px;
    width: 100%;
}

footer .flexbox .f_nav_left .tel_info {
    margin-top: 16px;
}

footer .flexbox .f_nav_left .tel_info p {
    font-family: "YuMincho", "Yu Mincho", serif;
    letter-spacing: 2px;
}

footer .flexbox .f_nav_left address,
footer .flexbox .f_nav_left p {
    font-size: 15px;
}

footer .flexbox .f_nav_left .sns_list {
    display: flex;
    justify-content: center;
    margin-top: 56px;
}

footer .flexbox .f_nav_left .sns_list li:first-of-type {
    margin-right: 48px;
}

footer .flexbox .f_nav_left .sns_list li a img {
    max-width: 64px;
}

footer .flexbox .f_nav {
    width: 33%;
    text-align: center;
}

footer .flexbox .f_nav .f_nav_menu {
    list-style: none;
    line-height: 3;
    text-align: left;
    margin-left: 10vw;
}

footer .flexbox .f_nav .f_nav_menu li::before {
    content: '〉';
    color: #fff;
    margin-right: 8px;
}

footer a,
footer p {
    color: #fff;
}

footer .copy_rights {
    text-align: center;
    margin-top: 72px;
}

footer .copy_rights small {
    color: #fff;
}

@media screen and (max-width:768px) {
    footer .flexbox {
        justify-content: space-around;
        display: block;
    }

    footer .flexbox .f_nav_left {
        width: 80%;
        margin: 0 auto;
    }

    footer .flexbox .f_nav {
        padding-top: 80px;
        width: 60%;
        margin: 0 auto;
    }

    footer .flexbox .f_nav_left .sns_list li a img {
        max-width: 48px;
    }

    /* =========== max-width:768px =========== */
}