@charset "UTF-8";

/* ---------------------------------------------------

	Layout - All Page Common

-------------------------- */
* {
    margin: 0;
    outline: none;
    padding: 0;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
	}
html,body { height: 100%; }
body {
    background: transparent;
    color: rgb(50 50 50);
    cursor: default;
    display: block;
    font-weight: 500;
    font-family: 'Noto Sans JP', "Montserrat","游ゴシック",YuGothic,"ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","メイリオ",Meiryo,sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
    position: relative;
    vertical-align: baseline;
    width: 100%;
    box-sizing: border-box;
    overflow-scrolling: touch;
    text-size-adjust: 100%;
	}
a,a:hover { text-decoration: none; }
img {
    margin: 0;
    padding: 0;
    max-width: 100%;
    vertical-align: bottom;
    outline: none;
	}
img:hover { outline: none; }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 { margin: 0; }
input,select,textarea { font-size: 16px; }
button { cursor: pointer; }
/* Device */
@container (min-width: 300px) {}
@media (min-width: 751px) { .sp { display: none; } }
@media (max-width: 750px) { .pc { display: none; } }
/* Color */
.c-navy { color: rgb(8 68 116); }
/* Font Family */
.ff-notosans { font-family: "Noto Sans JP", sans-serif; }
.ff-notoserif { font-family: "Noto Serif JP", serif; }
.ff-zenantique { font-family: "Zen Antique Soft", serif; }
.ff-roboto { font-family: "Roboto", sans-serif; }
.ff-zalando { font-family: "Zalando Sans SemiExpanded", sans-serif; }
.ff-key {
    font-family: "Zalando Sans SemiExpanded", sans-serif;
    font-weight: 400;
    }
/* iframe */
.iframe.map {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    }
@media (min-width: 751px) { .iframe.map { margin-top: 20px; } }
@media (max-width: 750px) { .iframe.map { margin-top: 15px; } }
/* Tel */
.tel a {
    color: rgb(8 68 116);
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    line-height: 1;
    }
.tel a:before {
    background-image: url(/src/img/common/icon/tel-navy.svg);
    background-position: center;
    background-repeat: no-repeat;
    content: '';
    display: inline-block;
    }
@media (min-width: 751px) { .tel a { pointer-events: none; } }
/* bizhour */
.gl-bizhour .time dl {
    display: flex;
    align-items: baseline;
    justify-content: center;
    }
.gl-bizhour .time dt,
.gl-bizhour .time dd { padding: 0 5px; }
/* Link */
a.txtlink {
    color: rgba(225, 90, 15, 1);
    text-decoration: underline;
    }
/* YouTube */
.ytb { padding: 56.25% 0 0; position: relative; width: 100%; }
.ytb iframe { border: none; height: 100%!important; position: absolute; right: 0; top: 0; width: 100%!important; }
/* Anchor */
.anchor { display: block; position: relative; z-index: -1; }
@media (min-width: 751px) { .anchor { margin-top: -150px; padding-top: 150px; } }
@media (max-width: 750px) { .anchor { margin-top: -120px; padding-top: 120px; } }
/* Fade-In */
.fadein {
    opacity: 0;
    position: relative;
    transform: translate(0, 100px);
    transition: all 1s;
    }
.fadein.fdi-on {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    }
/* Accordion */
.acd-wrap {}
.acd-tgl {}
.acd-child { display: none; }
.acd-open {}
/* Tab */
.app-tab {}
.app-tab-item {
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    }
.app-con {}
.app-con-item { display: none; }
.app-con-item.is-show { display: block; }

/* ---------------------------------------------------

	Common

-------------------------- */
/* Btn Area */
@media (min-width: 751px) {
.btnarea a { transition: all .3s; }
}

/* ---------------------------------------------------

    Header

-------------------------- */
/* catch - animation */
@keyframes glhCopyFlowing {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
    }
@media (max-width: 750px) {
.gl-header {
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 10;
    }
/* catch */
.h-catch {
    background: linear-gradient(145deg, #084474 20%, #0482C1 60%, #00DFFF 100%);
    height: 30px;
    overflow: hidden;
    padding: 0 15px;
    white-space: nowrap;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
    }
.h-catch span {
    color: rgb(255 255 255);
    font-size: min(3vw, 16px);
    margin-right: 15px;
    transform: translateX(100%);
    animation: glhCopyFlowing 20s linear infinite;
    }
/* wrap */
.h-wrap {
    height: 80px;
    margin: 10px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, .6);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    }
/* logo */
.gl-header .gl-logo {
    max-width: 60px;
    position: relative;
    z-index: 11;
    }
/* block */
.gl-header .h-block {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    }
/* bizhour */
.gl-header .gl-bizhour {
    border-right: 1px solid rgb(0 0 0 / .5);
    margin-right: 15px;
    padding-right: 15px;
    display: inline-flex;
    align-items: center;
    }
.gl-header .gl-bizhour .datearea {
    color: rgb(8 68 116);
    font-size: min(3.5vw, 16px);
    line-height: 1.35;
    margin-right: 10px;
    text-align: center;
    }
.gl-header .gl-bizhour .tel a {
    display: flex;
    align-items: center;
    }
.gl-header .gl-bizhour .tel a:before {
    background-size: 20px 20px;
    border: 2px solid rgb(8 68 116);
    height: 40px;
    min-width: 40px;
    border-radius: 100px;
    }
/* Nav Trigger */
.gl-navtrigger {
    height: 40px;
    max-width: 40px;
    position: relative;
    z-index: 11;
    display: flex;
    flex-direction: column;
    justify-content: center;
    }
.gl-navtrigger .line span {
    background-color: rgb(8 68 116);
    display: block;
    height: 3px;
    margin-bottom: 5px;
    position: relative;
    width: 100%;
    border-radius: 100px;
    transition: all 0.6s;
    }
.gl-navtrigger.active .line span:nth-child(1) { transform: rotate(-15deg) translateY(2px); }
.gl-navtrigger.active .line span:nth-child(2) { transform: rotate(15deg) translateY(-6px); }
.gl-navtrigger .txt {
    font-size: min(3.5vw, 18px);
    line-height: 1;
    }
/* Global Nav */
.gl-nav {
    background: linear-gradient(145deg, #084474 20%, #0482C1 60%, #00DFFF 100%);
    left: 0;
    position: fixed;
    right: 0;
    z-index: 10;
    border-radius: 10px;
    box-sizing: border-box;
    transform: translateY(-200%);
    transition: all 0.6s;
    }
.gl-nav.active {
    opacity: 100;
    padding: 20px 30px;
    display: block;
    transform: translateY(160px);
    }
.gl-nav ul li a {
    color: rgb(255 255 255);
    display: block;
    padding: 10px;
    }
}


/* ---------------------------------------------------

	Container

-------------------------- */
.container { box-sizing: border-box; }
@media (min-width: 751px) {
.container {
    display: flex;
    align-items: flex-start;
    }
}
@media (max-width: 750px) {
}
/* Global Sidebar */
.gl-sidebar { box-sizing: border-box; }
.sb-catch { font-size: min(2vw, 16px); }
.sb-block .gl-nav ul li a {
    color: rgb(8 68 116);
    font-size: min(2vw, 16px);
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
    }
.sb-block .gl-nav ul li a:before {
    background-color: rgb(8 68 116);
    content: '';
    height: 7px;
    min-width: 7px;
    border-radius: 100px;
    }
@media (min-width: 751px) {
.gl-sidebar {
    height: 100vh;
    min-width: 300px;
    padding: 40px;
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    }
.sb-wrap {
    display: flex;
    justify-content: space-between;
    }
.sb-catch span { writing-mode: vertical-rl; }
.sb-block .gl-logo { max-width: 140px; }
.sb-block .gl-nav { margin-top: 30px; }
.sb-block .gl-nav ul li a {
    padding: 10px 15px 10px 0;
    transition: all .3s;
    }
.sb-block .gl-nav ul li a:before { margin-right: 10px; }
.sb-block .gl-nav ul li a:after {
    background-color: rgb(8 68 116);
    bottom: 0;
    content: '';
    left: 0;
    position: absolute;
    top: 0;
    width: 0;
    z-index: -1;
    border-radius: 0 100px 100px 0;
    transition: all .3s;
    }
.sb-block .gl-nav ul li a.current,
.sb-block .gl-nav ul li a:hover { color: rgb(255 255 255); }
.sb-block .gl-nav ul li a:hover:after,
.sb-block .gl-nav ul li a.current:after {
    width: 100%;
    border-radius: 0;
    }
.gl-sidebar .gl-bizhour { text-align: center; }
.gl-sidebar .gl-bizhour .ttl { font-size: min(3vw, 18px); }
.gl-sidebar .gl-bizhour .datearea {
    background-color: rgb(8 68 116);
    color: rgb(255 255 255);
    margin-top: 10px;
    padding: 5px 10px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    border-radius: 100px;
    }
.gl-sidebar .gl-bizhour .datearea span {
    font-size: min(2vw, 16px);
    padding: 0 5px;
    }
.gl-sidebar .gl-bizhour .tel { margin-top: 10px; }
.gl-sidebar .gl-bizhour .tel a {
    font-size: min(3vw, 30px);
    letter-spacing: -1px;
    }
.gl-sidebar .gl-bizhour .tel a:before {
    background-size: 24px 24px;
    height: 24px;
    margin-right: 10px;
    min-width: 24px;
    }
.gl-sidebar .gl-bizhour .time { margin-top: 5px; }
.gl-sidebar .gl-bizhour .time dl { font-size: min(2vw, 16px); }
}
/* Main Area */
.mainarea {
    min-width: 0;
    box-sizing: border-box;
    }
@media (min-width: 751px) {
.mainarea {}
}
@media (max-width: 750px) {
.mainarea {}
}


/* ---------------------------------------------------

	Intro

-------------------------- */
.intro { position: relative; }

/* ---------------------------------------------------

    Breadcrumbs

-------------------------- */
.breadcrumbs ol {
    background-color: rgba(0, 0, 0, .05);
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    }
.breadcrumbs ol li:after {
    content: '〉';
    display: inline-block;
    text-align: center;
    }
.breadcrumbs ol li:last-child:after { display: none; }
.breadcrumbs ol li a { color: initial; }
@media (min-width: 751px) {
.breadcrumbs { padding: 20px; }
.breadcrumbs ol {
    padding: 10px 20px;
    border-radius: 8px;
    }
.breadcrumbs ol li { font-size: 13px; }
.breadcrumbs ol li:after {
    letter-spacing: -10px;
    margin: 0 5px;
    width: 20px;
    }
}
@media (max-width: 750px) {
.breadcrumbs { padding: 20px; }
.breadcrumbs ol {
    padding: 10px 20px;
    border-radius: 8px;
    }
.breadcrumbs ol li { font-size: 13px; }
.breadcrumbs ol li:after {
    letter-spacing: -10px;
    margin: 0 5px;
    width: 20px;
    }
}

/* ---------------------------------------------------

    Footer

-------------------------- */
.gl-footer { position: relative; }
.gl-footer .inner { position: relative; }
@media (min-width: 751px) {
.gl-footer .inner { padding: 0 100px; }
}
@media (max-width: 750px) {
.gl-footer .inner { padding: 0 25px; }
}
/* Wrap */
.f-block .service { font-size:  min(3.5vw, 16px); }
.f-block .address { font-size:  min(3.5vw, 16px); }
.f-block.gl-bizhour { color: rgb(8 68 116); }
.f-block.gl-bizhour .ttl { font-size: min(4vw, 20px); }
.f-block.gl-bizhour .tel a {
    font-size: min(7vw, 30px);
    letter-spacing: -1px;
    }
.f-block.gl-bizhour .tel a:before {
    background-size: 24px 24px;
    height: 24px;
    margin-right: 10px;
    min-width: 24px;
    }
.f-block.gl-bizhour .time { margin-top: 5px; }
@media (min-width: 751px) {
.f-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    }
.f-block .service { margin-top: 15px; }
.f-block .address { margin-top: 15px; }
.f-block.gl-bizhour {
    margin-top: 30px;
    min-width: 220px;
    }
.f-block.gl-bizhour .tel { margin-top: 10px; }
.f-block.gl-bizhour .time dl { justify-content: flex-start; }
}
@media (max-width: 750px) {
.f-wrap { text-align: center; }
.f-block .service { margin-top: 15px; }
.f-block .address { margin-top: 15px; }
.f-block.gl-bizhour {
    margin-top: 30px;
    min-width: 220px;
    }
.f-block.gl-bizhour .tel { margin-top: 10px; }
.f-block.gl-bizhour .time dl {}
}
/* Copy */
.f-copy {
    border-top: 1px solid rgb(0 0 0 / .5);
    color: rgb(8 68 116);
    font-size: min(3.5vw, 16px);
    }
@media (min-width: 751px) {
.f-copy {
    margin-top: 50px;
    padding: 50px 0;
    text-align: right;
    }
}
@media (max-width: 750px) {
.f-copy {
    margin-top: 30px;
    padding: 30px 0;
    text-align: center;
    }
}