@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: 300;
    font-family: "YakuHanJP", "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", "MS PMincho", serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 300;
    font-family: "YakuHanJP", "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", "MS PMincho", serif;
}

::-moz-selection {
    color: #FFF;
    background-color: #22476b;
}

::selection {
    color: #FFF;
    background-color: #22476b;
}

body {
    font-size: 1.6rem;
    color: #111111;
    background-color: #FFF;
}
@media (max-width: 540px) {
    body {
        font-size: 1.4rem;
    }
}
body.no-scroll {
    overflow: hidden;
    height: 100vh;
}

main {
    overflow-x: clip;
    min-height: 70vh;
}

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

.scroll {
    visibility: hidden;
}

/*==================================================================================================
	共通
==================================================================================================*/
.cmn {
    margin: clamp(60px, 12vw, 150px) auto;
    padding: 0 5%;
    position: relative;
}
.cmn.-bg {
    margin: 0 auto;
    padding: clamp(60px, 12vw, 150px) 5%;
    background-size: 50px;
    background-position: center;
    background-repeat: repeat;
}
.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_bg.-main {
    background-color: #203245;
    color: #FFF;
}
.cmn_bg.-main .cmn_secttl {
    color: #FFF;
}
.cmn_bg.-main .cmn_secttl .en {
    color: #FFF;
}
.cmn_bg.-gray {
    background-color: #909090;
}
@media (min-width: 841px) {
    .cmn_flex {
        display: flex;
    }
    .cmn_flex .cmn_secttl {
        width: 25%;
    }
    .cmn_flex .cmn_content {
        width: 75%;
    }
}
.cmn_pagettl {
    padding-top: 150px;
    margin: 0 auto;
    text-align: center;
}
@media (max-width: 700px) {
    .cmn_pagettl {
        padding-top: 100px;
    }
}
.cmn_pagettl h1 {
    font-size: 2em;
    font-family: "Cormorant Garamond", serif;
    line-height: 1.5;
}
.cmn_secttl {
    margin-bottom: 30px;
}
@media (max-width: 540px) {
    .cmn_secttl {
        margin-bottom: 15px;
    }
}
.cmn_secttl .en {
    font-size: 2em;
    font-family: "Cormorant Garamond", serif;
    line-height: 1.5;
    display: inline-block;
    color: #909090;
}
@media (max-width: 540px) {
    .cmn_secttl .en {
        font-size: 1.5em;
    }
}
.cmn_secttl .ja {
    display: block;
}
.cmn_btn {
    margin: 20px 0;
}
.cmn_btn.-right {
    text-align: right;
}
.cmn_btn.-center {
    text-align: center;
}
.cmn_morebtn {
    font-size: 1em;
    font-family: "Cormorant Garamond", serif;
    line-height: 1.5;
    padding-right: 1.75em;
    position: relative;
}
.cmn_morebtn::after {
    font-family: "icomoon";
    content: "\f0142";
    position: absolute;
    transition: all 0.3s;
    top: 50%;
    right: 0.5em;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}
.cmn_morebtn:hover::after {
    right: 0.3em;
}
.cmn_viewbtn {
    font-size: 1.25em;
    font-family: "Cormorant Garamond", serif;
    line-height: 1.5;
    position: relative;
    display: inline-flex;
    align-items: center;
    padding-bottom: 2px;
    gap: 0.4em;
}
.cmn_viewbtn::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #000;
    transition: width 0.3s ease;
    z-index: 0;
}
.cmn_viewbtn .arrow {
    width: 16px;
    height: 16px;
    -webkit-transform: translateX(0) scaleX(1);
    transform: translateX(0) scaleX(1);
    -webkit-transform-origin: left center;
    transform-origin: left center;
    transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}
.cmn_viewbtn:hover::before {
    width: 100%;
}
.cmn_viewbtn:hover .arrow {
    -webkit-transform: translateX(6px) scaleX(1.4);
    transform: translateX(6px) scaleX(1.4);
}
.cmn_news_link {
    padding: 1em 1em;
    border-bottom: 1px solid #ccc;
    display: flex;
    flex-direction: column;
    position: relative;
}
.cmn_news_link .date {
    color: #999;
}
.cmn_news_link:hover {
    opacity: 0.6;
}
.cmn_news_link:hover::after {
    width: 100%;
}
.cmn_news_link::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 2em;
    height: 1px;
    background-color: #22476b;
    transition: width 1s;
}
.cmn_data_item {
    display: flex;
    flex-wrap: wrap;
    padding: 1em 0.5em;
    border-bottom: 1px solid #ccc;
}
.cmn_data_item .ttl {
    width: 20%;
}
@media (max-width: 840px) {
    .cmn_data_item .ttl {
        width: 100%;
    }
}
.cmn_data_item .txt {
    width: 80%;
    padding-left: 1em;
}
@media (max-width: 840px) {
    .cmn_data_item .txt {
        width: 100%;
        padding-left: 0;
    }
}
.cmn_data_item .txt a {
    display: inline-block;
    text-decoration: underline;
    transition: 0.5s color;
}
.cmn_data_item .txt a:hover {
    color: #D81600;
}
.cmn_form {
    margin-top: 30px;
}
.cmn_form_item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0.75em 0;
}
@media (max-width: 540px) {
    .cmn_form_item {
        padding: 0.5em 0;
    }
}
.cmn_form_item .label {
    display: block;
    width: 100%;
}
@media (max-width: 840px) {
    .cmn_form_item .label {
        width: 100%;
    }
}
.cmn_form_item .label.-required {
    display: flex;
    align-items: center;
}
.cmn_form_item .label.-required::after {
    content: "必須";
    color: #fff;
    background-color: #4d4d4d;
    font-size: 1.2rem;
    margin-left: 10px;
    padding: 0.25em 0.5em;
    line-height: 1;
}
.cmn_form_item .label + * {
    width: 100%;
    height: 3em;
    margin-top: 0.5em;
}
@media (max-width: 540px) {
    .cmn_form_item .label + * {
        margin-top: 0.25em;
    }
}
.cmn_form_item .input {
    padding: 0.5em;
    background-color: #f5f5f5;
    border: none;
    outline: none;
}
.cmn_form_item .input#f_num, .cmn_form_item .input#f_car {
    width: 100px;
}
.cmn_form_item .input#f_day {
    width: 360px;
    height: 3em;
    margin-top: 0.5em;
}
@media (max-width: 540px) {
    .cmn_form_item .input#f_day {
        width: calc(100% - 2em);
    }
}
.cmn_form_item .note {
    height: auto;
    font-size: 0.9em;
    margin-top: 0.25em;
}
.cmn_form_item .textarea {
    resize: vertical;
    padding: 0.5em;
    background-color: #f5f5f5;
    border: none;
    outline: none;
    height: auto;
    border-radius: 2px;
}
.cmn_form_item .radio {
    display: flex;
    align-items: center;
    min-height: 3em;
    height: auto;
    margin-top: -0.15em;
}
@media (max-width: 840px) {
    .cmn_form_item .radio {
        min-height: 2.5em;
    }
}
.cmn_form_item .radio_list {
    display: flex;
    flex-wrap: wrap;
}
.cmn_form_item .radio_item {
    position: relative;
    display: flex;
}
.cmn_form_item .radio_item:not(:last-child) {
    margin-right: 1.25em;
}
.cmn_form_item .radio_item input[type=radio] {
    width: 0;
    visibility: hidden;
}
.cmn_form_item .radio_item input[type=radio]:checked + label::before {
    border: 1px solid #D81600;
}
.cmn_form_item .radio_item input[type=radio]:checked + label::after {
    scale: 0.65;
    opacity: 1;
}
.cmn_form_item .radio_item label {
    position: relative;
    cursor: pointer;
    padding-left: 1.5em;
}
.cmn_form_item .radio_item label::before, .cmn_form_item .radio_item label::after {
    content: "";
    position: absolute;
    display: block;
    height: 1em;
    width: 1em;
    left: 0;
    top: 50%;
    border-radius: 50%;
    translate: 0 -47.5%;
}
.cmn_form_item .radio_item label::before {
    background-color: #fff;
    border: 1px solid #1a1a1a;
    transition: 0.35s border;
}
.cmn_form_item .radio_item label::after {
    background: #D81600;
    border: 1px solid #D81600;
    scale: 0;
    opacity: 0;
    transition: 0.35s scale, 0.5s opacity;
}
.cmn_form_agree {
    margin-top: 30px;
}
.cmn_form_agree .agree_txt {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
}
.cmn_form_agree .agree_link {
    text-decoration: underline;
    display: inline-block;
}
.cmn_form_agree .agree_link:hover {
    color: #22476b;
}
.cmn_form_btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 30px auto 0;
    display: block;
    background-color: transparent;
    position: relative;
    border: none;
}
.cmn_form_btn span {
    border: 1px solid #1a1a1a;
    display: block;
    padding: 1em 2.5em;
    transition: 0.5s color, 0.5s border, 0.5s background-color;
    color: #111111;
}
.cmn_form_btn:hover span {
    border: 1px solid #22476b;
    background-color: #22476b;
    color: #fff;
}

/*==================================================================================================
	ヘッダー
==================================================================================================*/
.hd_inner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}
.hd_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    padding: 10px 20px;
}
@media (max-width: 840px) {
    .hd_content {
        padding: 15px 20px;
    }
}
.hd_logo {
    transition: all 0.4s;
}
.hd_logo img {
    position: absolute;
    top: 15px;
    max-width: 120px;
}
@media (max-width: 840px) {
    .hd_logo img {
        max-width: 70px;
        left: 13px;
    }
}
.hd_logo:hover {
    opacity: 0.6;
}
.hd_toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}
@media (max-width: 840px) {
    .hd_toggle {
        display: flex;
        position: relative;
        z-index: 1001;
    }
}
.hd_toggle span {
    background-color: #111111;
    display: block;
    width: 24px;
    height: 2px;
    transition: all 0.4s;
}
.hd_toggle.open span:nth-child(1) {
    -webkit-transform: rotate(45deg) translate(5px, 5px);
    transform: rotate(45deg) translate(5px, 5px);
}
.hd_toggle.open span:nth-child(2) {
    opacity: 0;
}
.hd_toggle.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg) translate(6px, -6px);
    transform: rotate(-45deg) translate(6px, -6px);
}
.hd_nav {
    display: block;
    opacity: 1;
    visibility: visible;
    position: static;
    height: auto;
    display: flex;
    align-items: center;
}
@media (max-width: 840px) {
    .hd_nav {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100svh;
        background: rgba(255, 255, 255, 0.98);
        opacity: 0;
        visibility: hidden;
        transition: none;
        z-index: 1000;
    }
    .hd_nav.active {
        opacity: 1;
        visibility: visible;
        transition: opacity 0.6s ease;
    }
    .hd_nav_list {
        display: flex;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
.hd_nav_list {
    display: flex;
    align-items: center;
}
.hd_nav_link {
    padding: 5px;
    margin: 5px;
    font-size: 1.25em;
    font-family: "Cormorant Garamond", serif;
    line-height: 1.5;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}
.hd_nav_link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: #22476b;
    transition: width 0.5s ease;
}
.hd_nav_link:hover {
    opacity: 0.6;
}
.hd_nav_link:hover::after {
    width: 100%;
}
.hd_nav_sns {
    display: flex;
    align-items: center;
    gap: 0 3px;
    margin-left: 5px;
}
@media (max-width: 840px) {
    .hd_nav_sns {
        margin: 20px 0 0;
    }
}
.hd_nav_sns a {
    display: flex;
}
.hd_nav_sns a img {
    width: 20px;
}

/*==================================================================================================
	フッター
==================================================================================================*/
.ft {
    width: 100%;
    margin: 0 auto;
    margin-top: clamp(30px, vw(80), 80px);
}
.ft_inner {
    padding: 30px 0;
}
@media (min-width: 701px) {
    .ft_inner {
        display: flex;
        justify-content: space-between;
        align-items: end;
    }
}
.ft_nav_link {
    display: inline-block;
    margin: 0.25em 0;
}
.ft_nav_link:hover {
    opacity: 0.6;
    -webkit-transform: translateX(3px);
    transform: translateX(3px);
}
.ft_logo {
    text-align: right;
}
.ft_logo img {
    width: 120px;
}
@media (max-width: 700px) {
    .ft_logo img {
        width: 80px;
    }
}
.ft_about .copyright {
    font-size: 0.85em;
    font-family: "Cormorant Garamond", serif;
    line-height: 1.5;
    margin: 30px 0 0;
    text-align: right;
}
@media (max-width: 700px) {
    .ft_about .copyright {
        margin-top: 20px;
    }
}