@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap');
/* ------------------------------------------
  Utility Class
------------------------------------------ */

/* clearfix */

.clearfix:after {
    display: block;
    visibility: hidden;
    clear: both;
    height: 0;
    content: '.';
}

/* ------------------------------------------
  Common
------------------------------------------ */

* {
    box-sizing: border-box;
    word-break: break-all;
}

html {
    font-size: 10px;
    height: 100%;
}

body {
    font-family: "Zen Old Mincho", serif;
    font-weight: 400;
    line-height: 1.7;
    position: relative;
    min-width: 1080px;
    color: #080808;
    -webkit-text-size-adjust: none;
}

body.layer {
    overflow: hidden;
    height: 100%;
}

a, a img {
    transition: color .3s ease, background .3s ease, opacity .3s ease;
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
    opacity: .75;
}

a:hover * {
    opacity: .75;
}

a:focus {
    outline: none;
}

@media(min-width: 768px) {
    a[href^='tel:'] {
        pointer-events: none;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    line-height: inherit;
    margin: 0;
}

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

p {
    margin: 0;
}

.clear {
    clear: both;
}

.only_pc {
    display: block !important;
}

.only_sp {
    display: none !important;
}

input, button, select, textarea {
    font-family: 'Noto Sans JP', sans-serif;
    border: none;
    border-radius: 0;
    background: none;
    -webkit-appearance: none;
}

input[type=checkbox], input[type=radio] {
    position: absolute;
    z-index: -1;
    width: 1px;
    height: 1px;
    margin: 0;
    opacity: 0;
}

.container {
    width: 1000px;
    margin: 0 auto;
}

@media screen and (max-width: 767px) {
    body {
        min-width: inherit;
    }
    main {
        padding-top: 70px;
    }
    .container {
        width: auto;
        margin: 0 20px;
    }
    .only_pc {
        display: none !important;
    }
    .only_sp {
        display: block !important;
    }
}

/* ------------------------------------------
  top_header
------------------------------------------ */

.top_header {
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    padding: 0 24px;
}

.top_header_main {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    height: 80px;
    justify-content: space-between;
}

.top_header_main_right {
    display: flex;
    align-items: center;
    height: 100%;
}

.top_header_logo img {
    width: 207px;
    display: block;
}

.top_header_nav {
    flex: 1;
    margin-left: 0;
    margin-right: 20px;
    height: 100%;
}

.top_header_nav_lists {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
    height: 100%;
}

.top_header_nav_lists_item a {
    color: #223752;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.06em;
    display: flex;
    align-items: center;
    height: 100%;
}

.top_header_nav_lists_item.have_sub {
    position: relative;
    z-index: 999;
    padding-right: 16px;
    background-image: url(../img/common/top_header_nav_lists_item_have_sub_arrow.png);
    background-position: top 32px right;
    background-repeat: no-repeat;
    background-size: 12px;
}

.top_header_nav_lists_item_sub {
    position: absolute;
    top: 80px;
    left: 0;
    width: 220px;
    z-index: 3;
    display: none;
}

.top_header_nav_lists_item_sub_item_link {
    border-top: 1px solid #d5d5d5;
    margin: 0;
    padding: 15px 15px;
    font-size: 15px;
    background-color: #e8e8e8;
    display: block;
    position: relative;
    color: #002348;
    text-decoration: none !important;
    overflow: hidden;
    font-size: 15px;
    height: auto;
}

.top_header_instagram {
    display: flex;
    align-items: center;
    border: 1.5px solid #223752;
    border-radius: 22px;
    padding: 2px 24px;
    color: #223752;
    font-size: 16px;
    text-decoration: none;
    font-weight: 500;
    margin-right: 24px;
    gap: 8px;
    transition: background .3s;
}

.top_header_instagram_icon {
    background-image: url(../img/common/instagram.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
    opacity: 1;
    display: inline-block;
}

.top_header_instagram:hover {
    background-color: #002348;
    color: #fff;
}

.top_header_instagram:hover .top_header_instagram_icon {
    background-image: url(../img/common/instagram_hover.svg);
    opacity: 1;
}

.top_header_info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.top_header_info_tel {
    font-size: 22px;
    color: #223752;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0;
}

span.top_header_info_tel_icon {
    display: block;
    width: 16px;
}

.top_header_info_tel a {
    color: inherit;
    text-decoration: none;
    line-height: 1.4;
}

.top_header_info_time {
    font-size: 14px;
    color: #223752;
    margin-top: 2px;
}

@media screen and (max-width: 1100px) {
    .top_header_main {
        flex-wrap: wrap;
        gap: 16px;
        height: auto;
        padding: 16px 0;
    }
    .top_header_nav_lists {
        gap: 16px;
    }
    .top_header_instagram {
        margin: 12px 0 0 0;
    }
    .top_header_info {
        align-items: flex-start;
    }
}

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

/* ------------------------------------------
  header_sp
------------------------------------------ */

.header {
    display: none;
}

.overlay-nav {
    display: none;
}

@media screen and (max-width: 767px) {
    .header {
        display: block;
        width: 100%;
        height: 70px;
        z-index: 20;
        position: fixed;
        padding: 0 20px;
        background-color: #fff;
    }
    .header .wrapper {
        position: relative;
        width: 100%;
        height: 70px
    }
    .header .site_title, .header .bnr_shallwe_wrap, .header .tel_wrap, .header .fb_wrap, .header .global_nav, .header .contact_wrap {
        display: none
    }
    .header .site_title {
        position: absolute;
        display: block;
        top: 18px;
        left: 0;
    }
    .header .site_title .header_description {
        font-size: .625rem;
        font-weight: 500;
        margin: 0 0 10px;
        color: #57c3f1;
        line-height: 1;
        display: none
    }
    .header .site_title h1.header_title {
        width: 190px;
        margin: 0
    }
    .header .site_title h1.header_title a {
        display: block;
        padding: 0;
        margin: 0
    }
    .header .site_title h1.header_title img {
        display: block
    }
    .header a, .header a:visited {
        color: #002348;
    }
    .header a:hover, .header a:focus, .header a:visited:hover, .header a:visited:focus {
        color: #88d1d1;
    }
    .header-contact {
        display: none;
        margin-left: 22px;
    }
    .sp-insta {
        position: absolute;
        top: 21px;
        right: 55px;
        width: 28px;
    }
    .sp-insta a {
        display: block;
        width: 100%;
    }
    .sp-insta a img {
        display: block;
        width: 28px;
        height: 28px;
    }
    .sp-insta i {
        font-size: 2rem;
    }
    .toggle-menu {
        position: fixed;
        top: 10px;
        right: 10px;
        z-index: 100;
    }
    .toggle-menu__toggle {
        position: relative;
        cursor: pointer;
        width: 50px;
        height: 50px;
        background-image: url(images/toggle.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        background-color: #002348;
        border-radius: 100px;
    }
    .toggle-menu__toggle span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 12px;
        height: 1px;
        border-radius: 5px;
        background: #fff;
        width: 52%;
    }
    .toggle-menu__toggle span:nth-of-type(1) {
        top: 17px;
    }
    .toggle-menu__toggle span:nth-of-type(2) {
        top: 25px;
    }
    .toggle-menu__toggle span:nth-of-type(3) {
        top: 33px;
    }
    .toggle-menu__toggle span:nth-of-type(3)::after {
        content: "MENU";
        position: absolute;
        top: 0px;
        left: -2px;
        color: #fff;
        font-size: .6rem;
        font-weight: 800;
        letter-spacing: 0;
        display: none;
    }
    .toggle-menu__toggle.active span:nth-of-type(1) {
        top: 19px;
        left: 12px;
        transform: translateY(6px) rotate(-225deg);
        width: 52%;
    }
    .toggle-menu__toggle.active span:nth-of-type(2) {
        opacity: 0
    }
    .toggle-menu__toggle.active span:nth-of-type(3) {
        top: 31px;
        left: 12px;
        transform: translateY(-6px) rotate(45deg);
        width: 52%;
    }
    .toggle-menu__toggle.active span:nth-of-type(3)::after {
        content: "CLOSE";
        transform: translateY(0) rotate(-45deg);
        top: 1px;
        left: 4px;
    }
    /* Overlay Nav
   ================================================== */
    .overlay-nav {
        position: fixed;
        background: #ffffff;
        top: 0;
        left: 0;
        width: 100%;
        height: 0;
        opacity: 0;
        visibility: hidden;
        transition: opacity .35s, visibility .35s, height .35s;
        overflow-y: auto;
        z-index: 90;
        display: block;
    }
    .overlay-nav.open {
        opacity: 1;
        visibility: visible;
        height: 100%;
        animation-delay: .35s;
    }
    .overlay-nav.open li {
        font-size: 1.125rem;
        font-weight: 700;
        line-height: 1.8;
        text-align: left;
        margin-top: 10px;
        opacity: 1
    }
    /*.overlay-nav.open li:nth-of-type(2){-webkit-animation-delay:.4s;animation-delay:.4s}
.overlay-nav.open li:nth-of-type(3){-webkit-animation-delay:.45s;animation-delay:.45s}
.overlay-nav.open li:nth-of-type(4){-webkit-animation-delay:.5s;animation-delay:.5s}
.overlay-nav.open li:nth-of-type(5){-webkit-animation-delay:.55s;animation-delay:.55s}
.overlay-nav.open li:nth-of-type(6){-webkit-animation-delay:.6s;animation-delay:.6s}
.overlay-nav.open li:nth-of-type(7){-webkit-animation-delay:.65s;animation-delay:.65s}
.overlay-nav.open li:nth-of-type(8){-webkit-animation-delay:.7s;animation-delay:.7s}
.overlay-nav.open li:nth-of-type(9){-webkit-animation-delay:.75s;animation-delay:.75s}
.overlay-nav.open li:nth-of-type(10){-webkit-animation-delay:.8s;animation-delay:.8s}
.overlay-nav.open li:nth-of-type(11){-webkit-animation-delay:.85s;animation-delay:.85s}*/
    .overlay-nav.open li span.eng {
        display: block;
        font-size: .875rem;
        font-weight: 700;
        color: #fa6800;
        line-height: 1;
        letter-spacing: 1px
    }
    .overlay-nav__nav {
        position: relative;
        height: 80%;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        font-size: 2rem;
        font-weight: 400;
        text-align: center;
    }
    .overlay-nav.open ul {
        list-style: none;
        padding: 0 35px;
        margin: 0;
        display: inline-block;
        position: relative;
        width: 100%;
        text-align: left
    }
    .overlay-nav ul li {
        display: block;
        height: 25%;
        height: calc(100% / 9);
        min-height: 50px;
        position: relative;
        opacity: 0;
        font-weight: 600;
    }
    .overlay-nav ul li a {
        display: block;
        position: relative;
        color: #002348;
        text-decoration: none!important;
        overflow: hidden;
        font-size: 15px;
    }
    .overlay-nav.open .header-nav__ul {
        margin-bottom: 25px;
    }
    .overlay-nav.open .header-nav__ul .header-nav__li {
        border-top: 1px solid #d5d5d5;
        margin: 0;
        padding: 15px 0;
    }
    .overlay-nav.open .header-nav__ul .header-nav__li::after {
        content: '';
        display: block;
        background-image: url("images/nav_arrow.png");
        background-repeat: no-repeat;
        background-position: right center;
        background-size: cover;
        width: 10px;
        height: 18px;
        top: 50%;
        right: 0;
        margin-top: -9px;
        position: absolute;
    }
    .overlay-nav.open .header-nav__ul .header-nav__li:first-child {
        border: 0;
    }
    .overlay-nav.open .header-nav__sub {
        display: flex;
        gap: 20px;
        align-items: center;
        justify-content: center;
        margin: 20px auto 0;
    }
    .overlay-nav.open .header-nav__sub__li {
        font-size: 1rem;
        font-weight: 700;
        height: auto;
        min-height: auto;
        margin: 0;
    }
    .overlay-nav.open .header-nav__sub__li a {
        text-decoration: none
    }
    .overlay-nav.open .header-nav__ul .header-nav__li._sub {
        padding-bottom: 0;
    }
    .overlay-nav.open .header-nav__sub__li.nav-btn {}
    .overlay-nav.open .header-nav__sub__li.nav-btn .btn-wrap {
        width: 140px;
    }
    .overlay-nav.open .header-nav__sub__li.nav-btn .btn-wrap .btn-wrap__a, .header-nav__li.nav-contact .btn-wrap.round .btn-wrap__a::before, .header-nav__li.nav-contact .btn-wrap.round .btn-wrap__a::after {}
    .overlay-nav.open .header-nav__sub__li.nav-btn .btn-wrap .btn-wrap__a {
        padding: 7px 15px 5px !important;
    }
    .overlay-nav.open .header-nav__sub__li.nav-btn .btn-wrap .btn-wrap__a::after {}
    .overlay-nav.open .header-nav__sub__li.nav-btn .btn-wrap .btn-wrap__a__txt {
        font-size: .875rem;
        font-weight: 700;
    }
    .overlay-nav.open .header-nav__sub__li.nav-btn a {}
    .overlay-nav.open .header-nav__sub.sns {
        margin-top: 36px;
        padding-bottom: 50px;
    }
    .overlay-nav.open .header-nav__sub__li.sns {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 25px;
        line-height: 1
    }
    .overlay-nav.open .header-nav__sub__li.sns .icon-sns {}
    .overlay-nav.open .header-nav__sub__li.sns .icon-sns i {
        font-size: 1.25rem
    }
    .overlay-nav.open .header-nav__sub__li.sns .icon-sns:first-child {}
    .overlay-nav.open .header-nav__sub__li.sns .icon-sns .svg-inline--fa {
        font-size: 1.8125rem;
    }
    .header-nav__li._sub {
        padding-bottom: 0;
    }
    .overlay-nav.open ul.header-nav__li_subcontent {
        margin-top: 15px;
        padding: 0;
    }
    .overlay-nav.open .header-nav__li_subcontent .header-nav__li_subcontent_item {
        border-top: 1px solid #d5d5d5;
        margin: 0;
        font-size: 15px;
        background-color: #e8e8e8;
        color: #002348;
    }
    .overlay-nav.open .header-nav__li_subcontent .header-nav__li_subcontent_item a {
        margin: 0;
        font-size: 15px;
        background-color: #e8e8e8;
        color: #002348;
        padding: 15px 15px;
    }
    .overlay-nav.open .header-nav__li_subcontent .header-nav__li_subcontent_item::after {
        content: '';
        display: block;
        background-image: url("images/nav_arrow.png");
        background-repeat: no-repeat;
        background-position: right center;
        background-size: cover;
        width: 10px;
        height: 18px;
        top: 50%;
        right: 0;
        margin-top: -9px;
        position: absolute;
    }
    .header-sub-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-top: 5px;
    }
    .header-sub-nav__nav {
        font-size: .9375rem;
        font-weight: 700;
        letter-spacing: .1em;
        width: 45%;
    }
    .header-sub-nav__nav a {
        padding: 7px 0
    }
    .header-sub-nav__nav a:hover {}
    .overlay-nav__nav .footer-contact {
        margin: 20px 0 0;
        padding: 0 40px 60px;
    }
    .overlay-nav__nav .footer-contact .inner {
        padding: 30px 20px;
        background-color: #dbeef8;
        border-radius: 14px
    }
    .overlay-nav__nav .footer-contact .footer-contact__ttl {
        font-size: 1rem
    }
    .headermenu .insta {
        padding-top: 3px;
    }
}

/* ------------------------------------------
  footer
------------------------------------------ */

.top_footer {
    background: #fff;
    padding: 60px 0 0 0;
    color: #173359;
    font-family: inherit;
}

.top_footer_main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 40px;
    gap: 40px;
    max-width: 1080px;
}

.top_footer_main_left {
    flex: 1 1 390px;
    min-width: 320px;
}

.top_footer_logo {
    display: block;
    width: 300px;
}

.top_footer_info {
    font-size: 15px;
    letter-spacing: 0.08em;
    margin-top: 30px;
    line-height: 2
}

.top_footer_main_right {
    display: flex;
    padding-top: 50px;
}

.top_footer_main_right_item+.top_footer_main_right_item {
    margin-left: 80px;
}

.top_footer_menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.top_footer_menu li {
    margin-bottom: 20px;
}

.top_footer_menu a {
    color: #173359;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.06em;
}

.top_footer_instagram_btn {
    display: inline-flex;
    align-items: center;
    border: 2px solid #173359;
    border-radius: 28px;
    padding: 10px 30px;
    color: #173359;
    font-size: 20px;
    text-decoration: none;
    font-weight: 500;
    gap: 12px;
    transition: background .15s, color .15s, border .15s;
    background: #fff;
}

.top_footer_instagram_btn:hover {
    background: #173359;
    color: #fff;
    border-color: #173359;
}

.top_footer_instagram_icon {
    display: flex;
    align-items: center;
    font-size: 22px;
}

.top_footer_bottom {
    margin-top: 80px;
    text-align: center;
    font-size: 15px;
    color: #173359;
    letter-spacing: 0.09em;
    padding-bottom: 20px;
}

@media screen and (max-width: 767px) {
    .top_footer {
        padding: 40px 0 0 0;
    }
    .top_footer_main {
        padding: 0 20px;
        display: block;
    }
    .top_footer_main_left {
        width: 100%;
    }
    .top_footer_logo {
        width: 250px;
        margin: 0 auto;
    }
    .top_footer_info {
        font-size: 14px;
        margin: 20px auto 0;
        display: table;
    }
    .top_footer_main_right {
        display: flex;
        padding-top: 20px;
        justify-content: center;
    }
    .top_footer_main_right_item+.top_footer_main_right_item {
        margin-left: 25px;
    }
    .top_footer_menu {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .top_footer_menu li {
        margin-bottom: 10px;
    }
    .top_footer_menu a {
        font-size: 14px;
    }
    .top_footer_instagram_btn {
        display: inline-flex;
        align-items: center;
        border: 2px solid #173359;
        border-radius: 28px;
        padding: 10px 30px;
        color: #173359;
        font-size: 20px;
        text-decoration: none;
        font-weight: 500;
        gap: 12px;
        transition: background .15s, color .15s, border .15s;
        background: #fff;
    }
    .top_footer_instagram_btn:hover {
        background: #173359;
        color: #fff;
        border-color: #173359;
    }
    .top_footer_instagram_icon {
        display: flex;
        align-items: center;
        font-size: 22px;
    }
    .top_footer_bottom {
        margin-top: 40px;
        font-size: 12px;
        color: #173359;
        padding-bottom: 10px;
    }
}

/* ------------------------------------------
  contact_follow
------------------------------------------ */

.contact_follow {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    display: none;
    z-index: 9;
}

@media screen and (max-width: 767px) {
    .contact_follow {
        bottom: 0;
        width: 100vw;
    }
    .contact_follow .top_contact_main_buttons {
        display: flex;
        gap: 0;
        margin-top: 0;
    }
    .contact_follow .top_contact_main_btn {
        padding: 8px 0;
        width: 33.333333%;
        border-radius: 0;
        margin: 0!important;
    }
    .contact_follow .top_contact_main_btn_icon {
        font-size: 12px;
        line-height: 30px;
    }
    .contact_follow .top_contact_main_btn_icon.tel {
        padding-left: 19px;
    }
}