@charset "UTF-8";
html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    font-size: 62.5%;
}

a, address, article, aside, audio, b, big, blockquote, body, button, caption, center, cite, code, dd, details, div, dl, dt, em, fieldset, figcaption, figure, footer, form, form, h1, h2, h3, h4, h5, h6, header, i, iframe, img, input, label, li, main, mark, menu, nav, ol, p, pre, q, s, section, select, small, span, strong, summary, table, tbody, td, textarea, tfoot, th, thead, time, tr, u, ul, video {
    margin: 0;
    padding: 0;
    font-size: inherit;
    box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
    display: block;
}

audio, canvas, progress, video {
    display: inline-block;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

ol,
ul {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

img {
    max-width: 100%;
    width: 100%;
    vertical-align: bottom;
    border-style: none;
}

svg:not(:root) {
    overflow: hidden;
}

a {
    background-color: transparent;
    color: inherit;
    display: block;
}
a:hover {
    text-decoration: none;
    color: inherit;
}

a:active,
a:hover {
    outline-width: 0;
}

b,
strong {
    font-weight: inherit;
    font-weight: bolder;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

button,
input,
select,
textarea {
    font: inherit;
    margin: 0;
}

button,
input,
select {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

[type=button],
[type=reset],
[type=submit],
button {
    cursor: pointer;
}

[disabled] {
    cursor: default;
}

[type=reset],
[type=submit],
button,
html [type=button] {
    -webkit-appearance: button;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

button:-moz-focusring,
input:-moz-focusring {
    outline: 1px dotted ButtonText;
}

textarea {
    overflow: auto;
}

[type=checkbox],
[type=radio] {
    box-sizing: border-box;
    padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto;
}

[type=search] {
    -webkit-appearance: textfield;
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
    -webkit-appearance: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
    content: "";
    content: none;
}

/*==================================================================================================
	サイト基礎
==================================================================================================*/
* {
    margin: 0;
    padding: 0;
    line-height: 1.75;
    font-weight: 500;
    font-family: "Noto Sans JP", "メイリオ", "Meiryo", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Sans-Serif;
}

body {
    font-size: 1.6rem;
    color: #333;
}
body.-noscroll {
    overflow: hidden;
}

main {
    overflow-x: clip;
}

[type=button],
[type=reset],
[type=submit],
a,
a img,
button {
    transition: 0.5s;
}

.scroll {
    visibility: hidden;
}

/*==================================================================================================
	ヘッダー
==================================================================================================*/
.hd {
    position: relative;
    z-index: 100;
}
.hd_inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: fixed;
    z-index: 100;
}
.hd_inner.-size .hd_logo {
    width: clamp(80px, 12vw, 120px);
    height: clamp(80px, 12vw, 120px);
    padding-top: 20px;
}
@media (max-width: 840px) {
    .hd_inner.-size .hd_logo {
        padding-top: 10px;
    }
}
.hd_inner.-size .menu_nav {
    margin-top: 20px;
    transition: margin-top 0.5s;
}
@media (max-width: 1280px) {
    .hd_inner.-size .hd_menu {
        margin-top: 20px;
        transition: margin-top 0.5s;
    }
}
@media (max-width: 700px) {
    .hd_inner.-size .hd_menu {
        margin-top: 10px;
        transition: margin-top 0.5s;
    }
}
.hd_txt {
    position: sticky;
    display: block;
    width: 100%;
    background-color: #0e6eb8;
    padding: 5px;
    color: #fff;
    top: 0;
    left: 0;
    font-size: 14px;
    z-index: 101;
}
@media (max-width: 540px) {
    .hd_txt {
        font-size: 12px;
    }
}
.hd_txt2 {
    position: absolute;
    top: 230px;
    left: 0;
    font-size: 14px;
    background-color: #0e6eb8;
    display: block;
    padding: 10px;
    color: #fff;
    text-align: center;
}
.hd_logo {
    display: block;
    width: 220px;
    height: 220px;
    background-color: #fff;
    border-radius: 0 0 30px 0;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    padding: 55px 20px 20px 20px;
}
@media (max-width: 1024px) {
    .hd_logo {
        width: 180px;
        height: 180px;
        padding: 45px 10px 10px 10px;
    }
}
@media (max-width: 840px) {
    .hd_logo {
        width: 140px;
        height: 140px;
        border-radius: 0 0 15px 0;
    }
}
.hd_logo .main {
    width: 100%;
    height: 100%;
}
.hd_logo .main img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.hd .menu_nav {
    margin: 55px 20px 0 0;
    background-color: #fff;
    border-radius: 50px;
    padding: 0.45em 1.5em;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
@media (max-width: 1280px) {
    .hd .menu_nav {
        display: none;
    }
}
.hd .menu_nav .nav_list {
    display: flex;
    flex-wrap: wrap;
}
.hd .menu_nav .nav_item {
    padding: 0.5em 1.25em;
}
.hd .menu_nav .nav_item a {
    position: relative;
    transition: 0.5s color;
}
.hd .menu_nav .nav_item a:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #0e6eb8;
    translate: 0 0;
    scale: 0 1;
    -webkit-transform-origin: right top;
    transform-origin: right top;
    transition: scale 0.5s;
}
.hd .menu_nav .nav_item a:hover {
    color: #0e6eb8;
}
.hd .menu_nav .nav_item a:hover:before {
    scale: 1 1;
    -webkit-transform-origin: left top;
    transform-origin: left top;
}
.hd_menu {
    display: none;
}
@media (max-width: 1280px) {
    .hd_menu {
        display: block;
        margin: 55px 20px 0 0;
    }
}
@media (max-width: 700px) {
    .hd_menu {
        margin: 45px 10px 0 0;
    }
}
@media (max-width: 1280px) {
    .hd_menu .menu_btn {
        width: 80px;
        height: 80px;
        background-color: #fff;
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
        border-radius: 50%;
        position: relative;
        z-index: 1000;
        cursor: pointer;
    }
}
@media (max-width: 1280px) and (max-width: 840px) {
    .hd_menu .menu_btn {
        width: 70px;
        height: 70px;
    }
}
@media (max-width: 1280px) and (max-width: 540px) {
    .hd_menu .menu_btn {
        width: 55px;
        height: 55px;
    }
}
.hd_menu .menu_btn.-active {
    box-shadow: none;
}
.hd_menu .menu_btn.-active span:nth-of-type(1) {
    rotate: 45deg;
    top: 50%;
}
.hd_menu .menu_btn.-active span:nth-of-type(2) {
    opacity: 0;
}
.hd_menu .menu_btn.-active span:nth-of-type(3) {
    rotate: -45deg;
    top: 50%;
}
.hd_menu .menu_btn span {
    display: inline-block;
    transition: all 0.5s;
    position: absolute;
    width: 35%;
    height: 2px;
    border-radius: 2px;
    background-color: #0e6eb8;
    left: 50%;
    translate: -50% -50%;
}
.hd_menu .menu_btn span:nth-of-type(1) {
    top: 37.5%;
}
.hd_menu .menu_btn span:nth-of-type(2) {
    top: 50%;
}
.hd_menu .menu_btn span:nth-of-type(3) {
    top: 62.5%;
}
.hd_menu .menu_bg {
    position: fixed;
    z-index: 999;
    top: 0;
    right: 0;
    width: max(60%, 300px);
    height: 100svh;
    background-color: #fff;
    opacity: 0;
    pointer-events: none;
}
.hd_menu .menu_bg.-active {
    opacity: 1;
    pointer-events: all;
}
.hd_menu .menu_inner {
    padding: 90px calc(min(40px, 5%) - 10px) 0 min(40px, 5%);
}
.hd_menu .menu_content {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hd_menu .menu_logo {
    text-align: center;
    width: 120px;
}
.hd_menu .hb_nav {
    width: 100%;
    margin-top: 40px;
}
.hd_menu .hb_nav .list > .item {
    padding: 0.5em 0;
}
.hd_menu .hb_nav .list > .item a {
    position: relative;
    transition: 0.5s color;
    display: inline-block;
}
.hd_menu .hb_nav .list > .item a:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #0e6eb8;
    translate: 0 0;
    scale: 0 1;
    -webkit-transform-origin: right top;
    transform-origin: right top;
    transition: scale 0.5s;
}
.hd_menu .hb_nav .list > .item a:hover {
    color: #0e6eb8;
}
.hd_menu .hb_nav .list > .item a:hover:before {
    scale: 1 1;
    -webkit-transform-origin: left top;
    transform-origin: left top;
}
.hd_overlay {
    position: fixed;
    z-index: 998;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(14, 110, 184, 0.2);
    backdrop-filter: blur(5px);
    transition: all 0.3s;
    opacity: 0;
    pointer-events: none;
}
.hd_overlay.-active {
    opacity: 1;
    pointer-events: all;
}

/*==================================================================================================
	フッター
==================================================================================================*/
.ft {
    position: relative;
    background-color: #e6f0f8;
    padding-bottom: 4em;
    margin-top: 120px;
}
.ft:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 60px;
    background-image: url(../img/00_cmn/ft_nami.png);
    background-repeat: repeat-x;
    background-size: contain;
    top: -60px;
    left: 0;
}
.ft_inner {
    padding: 0 5%;
}
.ft_nav {
    max-width: 1024px;
    margin: 40px auto;
}
.ft_nav .menu_nav {
    background-color: #fff;
    border-radius: 50px;
    padding: 0.45em 1.5em;
}
.ft_nav .menu_nav .nav_list {
    display: flex;
    flex-wrap: wrap;
}
.ft_nav .menu_nav .nav_item {
    padding: 0.5em 1.25em;
    flex: auto;
    text-align: center;
}
@media (max-width: 700px) {
    .ft_nav .menu_nav .nav_item {
        width: 100%;
        text-align: center;
    }
}
.ft_nav .menu_nav .nav_item a {
    position: relative;
    transition: 0.5s color;
    display: inline-block;
}
.ft_nav .menu_nav .nav_item a:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #0e6eb8;
    translate: 0 0;
    scale: 0 1;
    -webkit-transform-origin: right top;
    transform-origin: right top;
    transition: scale 0.5s;
}
.ft_nav .menu_nav .nav_item a:hover {
    color: #0e6eb8;
}
.ft_nav .menu_nav .nav_item a:hover:before {
    scale: 1 1;
    -webkit-transform-origin: left top;
    transform-origin: left top;
}
.ft_logo {
    text-align: center;
}
.ft_logo img {
    max-width: 120px;
}
.ft_sns {
    margin-top: 1em;
    text-align: center;
}
.ft_sns a {
    display: inline-block;
}
.ft_sns a img {
    width: 35px;
    height: 35px;
}
.ft_copy {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    background-color: #0e6eb8;
    text-align: center;
}
.ft_copy span {
    color: #fff;
    padding: 0.15em 0 0.25em;
    font-size: 1.2rem;
}

/*================================================================================================
	共通
==================================================================================================*/
.cmn {
    margin: clamp(80px, 12vw, 150px) auto;
    padding: 0 5%;
    position: relative;
}
.cmn_inner {
    margin: 0 auto;
    position: relative;
}
.cmn_inner.-xxl {
    max-width: 1600px;
}
.cmn_inner.-xl {
    max-width: 1280px;
}
.cmn_inner.-lg {
    max-width: 1024px;
}
.cmn_inner.-md {
    max-width: 840px;
}
.cmn_inner.-sm {
    max-width: 700px;
}
.cmn_inner.-xs {
    max-width: 540px;
}
.cmn_section_ttl {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: clamp(40px, 6vw, 60px);
}
.cmn_section_ttl .en {
    position: relative;
    color: #0e6eb8;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: clamp(1.4rem, 1.8vw, 1.8rem);
}
.cmn_section_ttl .en:after {
    content: "";
    position: absolute;
    background-image: url(../img/00_cmn/section_deco.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 63px;
    height: 55px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
}
.cmn_section_ttl .ja {
    font-size: clamp(2.4rem, 3.2vw, 3.2rem);
    margin-top: 0.25em;
}
.cmn_section_txt {
    max-width: 840px;
    margin: 0 auto;
}
.cmn_sub_ttl {
    text-align: center;
    margin-bottom: clamp(40px, 10vw, 80px);
}
.cmn_sub_ttl .ja {
    font-size: clamp(2.2rem, 2.8vw, 2.8rem);
    color: #0e6eb8;
    position: relative;
}
.cmn_sub_ttl .ja:after {
    content: "";
    position: absolute;
    width: 100px;
    height: 9px;
    background-image: url(../img/00_cmn/ttl_deco.png);
    bottom: -20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.cmn_midashi {
    margin: 1em 0;
}
.cmn_midashi .ttl {
    color: #0e6eb8;
    font-size: clamp(1.8rem, 2vw, 2rem);
    display: flex;
    align-items: center;
    border-bottom: solid 1px #cccccc;
}
.cmn_midashi .ttl:before {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    background-color: #0e6eb8;
    margin-right: 0.5em;
}
.cmn_midashi .txt {
    display: block;
    margin-top: 0.15em;
}
.cmn_table {
    display: flex;
    justify-content: center;
    margin: clamp(40px, 6vw, 60px) 0;
    overflow-x: auto;
}
@media (max-width: 1024px) {
    .cmn_table {
        justify-content: start;
    }
}
.cmn_table table {
    width: 100%;
    max-width: 600px;
    border: solid 2px #0e6eb8;
}
.cmn_table table tr th {
    background-color: #e6f0f8;
}
.cmn_table table tr th, .cmn_table table tr td {
    width: 33.3333333333%;
    padding: 0.5em 1em;
    border: solid 2px #0e6eb8;
    text-align: center;
    white-space: nowrap;
}
.cmn_table table tr th {
    font-weight: 700;
    padding: 1em;
}
.cmn_pagehead {
    width: 100%;
    background-image: url(../img/01_top/hero_img01.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 25%;
    padding-top: 40px;
    padding-bottom: 40px;
}
.cmn_pagehead_inner {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    margin: 0 40px;
    padding: 5% 0;
}
.cmn_pagehead_ttl {
    text-align: center;
}
.cmn_pagehead_ttl .en {
    font-family: "Inter", sans-serif;
    font-size: clamp(2rem, 2.4vw, 2.4rem);
    color: #0e6eb8;
    line-height: 1.1;
    font-weight: 700;
}
.cmn_pagehead_ttl .ja {
    font-size: clamp(2.4rem, 3.2vw, 3.2rem);
    font-weight: 700;
}
.cmn_pagenation {
    margin-top: 1em;
}
.cmn_pagenation .pagenation {
    display: flex;
    justify-content: center;
}
.cmn_pagenation .pagenation .page-numbers {
    padding: 0.5em 1em;
}
.cmn_pagenation .pagenation .current {
    background-color: #0e6eb8;
    color: #fff;
}