@charset "UTF-8";

/* ブレイクポイント
sp　〜600px
tab&pc　601px〜
header nav 960px〜
*/

/* ==============
全体設定
============== */

:root {
    --color-blue: #1B61B7;
    --color-yellow: #FFC653;
    --color-lightblue: #a0dcff;
    --font_en: 'Raleway', sans-serif;
}

html {
    font-size: 62.5%;
}

body {
    font-size: 1.6rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-style: normal;
    letter-spacing: 1px;
    line-height: 1.6;
    color: #333;
}

img {
    min-width: 100%;
}

a:hover {
    opacity: .7;
}

.center {
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
}

.common_inner {
    background-color: #fff;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 40px;
    padding-bottom: 40px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.top_inner {
    padding-top: 8px;
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 32px;
    padding-right: 32px;
}

h1 {
    font-size: 2.4rem;
    letter-spacing: .4rem;
}

.h1_en {
    font-family: var(--font_en);
    font-size: 1rem;
    letter-spacing: .1rem;
    color: var(--color-blue);
}

@media screen and (min-width:601px) {
    .common_inner {
        padding-left: 8%;
        padding-right: 8%;
    }

    h1 {
        margin-top: 40px;
        font-size: 3.2rem;
        font-weight: 500;
        letter-spacing: .4rem;
    }

    .h1_en {
        font-family: var(--font_en);
        font-size: 1.3rem;
        letter-spacing: .1rem;
        color: var(--color-blue);
    }

    /*======min-width:601px======*/
}

/* ==============
ヘッダー＆ナビ
============== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

header .header_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 8px;
    padding-right: 8px;
}

header .header_inner .site-header-logo {
    width: 200px;
}

header .header_inner nav {
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(27, 97, 183, .8);
    width: 100%;
    height: 100vh;
    padding-top: 160px;
    padding-left: 24px;
    padding-right: 24px;
    z-index: 10;
    transition: 0.4s;
    visibility: hidden;
    opacity: 0;
}

header.on .header_inner nav {
    visibility: visible;
    opacity: 1;
}

header .header_inner nav a {
    color: #fff;
    display: block;
    font-size: 2.4rem;
    border-bottom: 1px dotted #fff;
    line-height: 2.5;
}

header .header_inner .site-header-nav .nav_phone_btn P {
    font-family: var(--font_en);
    font-size: 3rem;
}

header .header_inner .site-header-nav .nav_phone_btn span {
    display: none;
}

header .header_inner .site-header-nav .nav_web_btn img {
    display: none;
}

header .header_inner .hum_menu {
    background-color: var(--color-blue);
    color: var(--color-lightblue);
    padding: 8px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 100;
    mix-blend-mode: difference;
}

header .header_inner .hum_menu .hum_menu_text {
    margin-right: 8px;
}

header .header_inner .hum_menu .hum_menu_line,
header .header_inner .hum_menu .hum_menu_line::after,
header .header_inner .hum_menu .hum_menu_line::before {
    content: "";
    display: block;
    height: 2px;
    width: 20px;
    background-color: var(--color-lightblue);
}

header .header_inner .hum_menu .hum_menu_line::before {
    transform: translateY(-6px);
}

header .header_inner .hum_menu .hum_menu_line::after {
    transform: translateY(4px);
}

header.on .header_inner .hum_menu .hum_menu_line {
    transform: rotate(45deg);
}

header.on .header_inner .hum_menu .hum_menu_line::before {
    display: none;
}

header.on .header_inner .hum_menu .hum_menu_line::after {
    transform: translateY(0px) rotate(90deg);
}

@media screen and (min-width:960px) {
    header .header_inner {
        padding-top: 0px;
        padding-left: 16px;
        padding-right: 16px;
    }

    header .header_inner nav {
        visibility: visible;
        opacity: 1;
        position: static;
        width: auto;
        height: auto;
        padding: 0;
        background-color: transparent;
    }

    header .header_inner .hum_menu {
        display: none;
    }

    header .header_inner nav a {
        color: #333;
        font-size: 1.6rem;
        border-bottom: none;
        line-height: 1.6;
    }

    header .header_inner nav ul {
        display: flex;
        align-items: end;
    }

    header .header_inner nav ul li {
        padding-bottom: 16px;
        margin-left: 24px;
    }

    header .header_inner .site-header-nav .nav {
        text-shadow:
            1px 1px 0 #FFF, -1px -1px 0 #FFF,
            -1px 1px 0 #FFF, 1px -1px 0 #FFF,
            0px 1px 0 #FFF, 0 -1px 0 #FFF,
            -1px 0 0 #FFF, 1px 0 0 #FFF;
    }

    a[href^="tel:"] {
        pointer-events: none;
    }

    header .header_inner .site-header-nav .nav_phone_btn {
        background-color: #fff;
        padding: 18px 8px 14px 8px;
        margin-left: 32px;
        border-radius: 0px 0px 16px 16px;
        box-shadow: 0px 0px 8px var(--color-lightblue);
        color: #333;
        text-align: center;
        font-weight: 500;
    }

    header .header_inner .site-header-nav .nav_phone_btn span {
        display: block;
        font-size: 1.5rem;
    }

    header .header_inner .site-header-nav .nav_phone_btn p {
        font-family: var(--font_en);
        font-size: 1.6rem;
    }

    header .header_inner .site-header-nav .nav_web_btn {
        background-color: var(--color-blue);
        padding: 9px 30px 16px 30px;
        border-radius: 0px 0px 16px 16px;
        color: #fff;
        text-align: center;
        margin-left: 12px;
    }

    header .header_inner .site-header-nav .nav_web_btn img {
        display: block;
        height: 28px;
        margin-bottom: 3px;
    }

    header .header_inner .site-header-nav .nav_btn:hover {
        opacity: .7;
        transition: 0.3s;
    }

    /*======min-width:960px======*/
}

/* ==============
subページ共通
============== */
.sub_mv img {
    width: 100%;
    padding-top: 76px;
    background-color: #fff;
}

@media screen and (min-width:601px) {
    .sub_mv img {
        padding-top: 0;
    }

    /*======min-width:601px======*/
}

/* ==============
SP版WEB固定ボタン
============== */
.web_btn_sp a {
    background-color: var(--color-blue);
    box-shadow: 0px 0px 8px #fff;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    display: block;
    padding: 16px;
    z-index: 100;
    border-radius: 0px 16px 16px 0px;
    width: 25%;
    text-align: center;
    margin: 0 auto;
    position: fixed;
    bottom: 40px;
    left: 0;
}

.web_btn_sp a:hover {
    background-color: var(--color-lightblue);
    opacity: 1;
    color: var(--color-blue);
    transition: 0.3s;
}

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

    /*======min-width:601px======*/
}

/* ==============
h1
============== */
.main_title {
    background-color: #fff;
    padding-top: 40px;
    padding-bottom: 40px;
}

@media screen and (min-width:601px) {
    .main_title {
        background-color: #fff;
    }

    /*======min-width:601px======*/
}

/* ==============
Information
============== */
.information {
    background-color: #fff;
    padding-top: 80px;
    padding-bottom: 80px;
}

.information .information_inner .hlogo2 {
    min-width: 80%;
    width: 80%;
    padding-bottom: 16px;
}

.information .information_inner h2 {
    text-align: left;
    border: none;
    font-size: 1.6rem;
    padding-bottom: 32px;
}

.information .information_inner .access_container {
    padding-bottom: 40px;
}

.information .information_inner .access_container img {
    width: 100%;
    border-radius: 40px 40px 0px 0px;
    aspect-ratio: 4 / 3;
    height: 100%;
}

.information .information_inner .access_container iframe {
    width: 100%;
    border-radius: 0px 0px 40px 40px;
    aspect-ratio: 4 / 3;
    height: 100%;
}

.information .information_inner .address_openhour_container dt {
    line-height: 3;
}

.information .information_inner .address_openhour_container dd {
    font-weight: 300;
    line-height: 1.5;
}

.information .information_inner .address_openhour_container dd span {
    color: var(--color-blue);
}

.information .information_inner .address_openhour_container .phone {
    font-family: var(--font_serif);
    color: var(--color-blue);
    font-size: 2.4rem;
}

.information .information_inner .address_openhour_container .phone::before {
    content: "\e0b0";
    font-family: 'Material Symbols Outlined';
    vertical-align: middle;
    padding-right: 16px;
}

.information .information_inner .address_openhour_container dd .openhour_img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0px 0px 5px var(--color-lightblue);
}

.information .information_inner .reservation_btn {
    display: none;
}

@media screen and (min-width:601px) {
    .information .information_inner {
        max-width: 1240px;
    }

    .information .information_inner .information_h2 {
        margin-bottom: 56px;
    }

    .information .information_inner .access_container {
        display: flex;
        justify-content: flex-start;
    }

    .information .information_inner .hlogo2 {
        min-width: 70%;
        width: 70%;
        padding-bottom: 32px;
    }

    .information .information_inner h2 {
        font-size: 2.4rem;
    }

    .information .information_inner .access_container img {
        min-width: 22.5%;
        width: 45%;
        height: 100%;
        aspect-ratio: 1/ 1;
        object-fit: cover;
        border-radius: 0px;
    }

    .information .information_inner .access_container iframe {
        aspect-ratio: 4 / 3;
        width: 60%;
        height: 100%;
        border: none;
        border-radius: 0px 50px 0px 0px;
        object-fit: cover;
    }

    .information .information_inner .address_openhour_container {
        display: flex;
        justify-content: space-around;
        margin-bottom: 80px;
    }

    .information .information_inner .address_openhour_container .adress {
        padding: 16px;
        margin-right: 16px;
    }

    .information .information_inner .address_openhour_container .openhour {
        padding: 16px;
    }

    .information .information_inner .address_openhour_container dd .openhour_img {
        max-width: 500px;
    }

    .information .information_inner .reservation_btn {
        display: block;
        width: 100%;
        transition: 0.4s;
    }

    .information .information_inner .reservation_btn .web_btn {
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff;
        background-color: var(--color-blue);
        padding: 40px;
    }

    .information .information_inner .reservation_btn:hover {
        opacity: .7;
        transition: 0.4s;
    }

    .information .information_inner .reservation_btn .web_btn span {
        display: inline-block;
        width: 50px;
        height: 50px;
        margin-right: 16px;
    }

    .information .information_inner .reservation_btn .web_btn p {
        font-size: 2.4rem;
    }

    /*======min-width:601px======*/
}

/* ==============
Footer
============== */
footer {
    height: 60px;
    background-color: #fff;
    text-align: center;
    padding-top: 30px;
    color: #333;
    font-family: var(--font_en);
    font-size: 1rem;
}

/* ==============
PAGETOP
============== */

#page-top a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color-blue);
    border-radius: 25px;
    width: 50px;
    height: 50px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
}

#page-top a::before {
    content: "\e5d8";
    font-family: 'Material Symbols Outlined';
    font-size: 2rem;
    vertical-align: middle;
}

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

#page-top {
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 2;
    opacity: 0;
    transform: translateY(100px);
}

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

@keyframes UpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes DownAnime {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 1;
        transform: translateY(100px);
    }
}