@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;
}

/*==================================================================================================
	サイト基礎
==================================================================================================*/
*,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    line-height: 1.75;
    font-weight: 500;
    font-family: "Shippori Mincho", "メイリオ", "Meiryo", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", serif;
    color: #fff;
}

body {
    font-size: clamp(1.4rem, 2.4vw, 1.6rem);
    color: #fff;
    background-color: #2d2d2d;
}
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: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 110;
}
.hd_inner {
    display: flex;
    justify-content: space-between;
    position: relative;
    align-items: center;
    margin: 0 auto;
    padding: calc(clamp(30px, 6vw, 80px) * 0.5) min(5%, 50px) 0;
    z-index: 10;
    background-color: transparent;
    transition: background-color 0.3s ease;
}
.hd_inner.-active {
    background-color: #fff;
}
.hd_logo {
    width: min(70%, 260px);
}
.hd_logo a:hover {
    opacity: 0.8;
}
.hd_content {
    display: flex;
    align-items: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
}
.hd_nav {
    display: flex;
    align-items: center;
    margin-right: 3em;
    display: none;
}
@media (max-width: 1280px) {
    .hd_nav {
        display: none;
    }
}
.hd_nav .nav_list {
    display: flex;
    gap: 0 2.5em;
}
.hd_nav .nav_item {
    position: relative;
}
.hd_nav .nav_link {
    padding: 0.15em 0;
    position: relative;
    transition: 0.5s color;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: block;
}
.hd_nav .nav_link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0em;
    width: 100%;
    height: 1px;
    background: #fff;
    translate: 0 0;
    scale: 0 1;
    -webkit-transform-origin: right top;
    transform-origin: right top;
    transition: scale 0.5s;
}
.hd_nav .nav_link:hover::before {
    scale: 1 1;
    -webkit-transform-origin: left top;
    transform-origin: left top;
}
.hd_nav .nav_link.-pulldown {
    display: flex;
    align-items: center;
    gap: 0 0.25em;
}
.hd_nav .nav_link.-pulldown::after {
    font-family: "icomoon";
    content: "\f0140";
}
.hd_nav .nav_pulldown .pulldown_list {
    font-size: 1.6rem;
    position: absolute;
    top: 40px;
    left: 0;
    width: 200px;
    display: none;
}
.hd_nav .nav_pulldown .pulldown_item {
    position: relative;
}
.hd_nav .nav_pulldown .pulldown_link {
    padding: 0.15em 0;
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
.hd_nav .nav_pulldown .pulldown_link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0em;
    width: 100%;
    height: 1px;
    background: #fff;
    translate: 0 0;
    scale: 0 1;
    -webkit-transform-origin: right top;
    transform-origin: right top;
    transition: scale 0.5s;
}
.hd_nav .nav_pulldown .pulldown_link:hover::before {
    scale: 1 1;
    -webkit-transform-origin: left top;
    transform-origin: left top;
}
.hd_tel {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    height: 50px;
    padding: 0.15em 1em;
    gap: 0 0.35em;
}
@media (max-width: 840px) {
    .hd_tel {
        display: none;
    }
}
.hd_tel span {
    display: inline-block;
    line-height: 1;
}
.hd_tel .txt {
    translate: 0 0.15em;
}
.hd_tel .num {
    font-size: clamp(2rem, 3.2vw, 2.4rem);
    white-space: nowrap;
}
.hd_menu {
    margin-left: 1em;
    display: none;
}
@media (min-width: 1281px) {
    .hd_menu {
        display: none;
    }
}
.hd_menu .menu_btn {
    position: relative;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border: 1px solid #fff;
    align-items: center;
    display: flex;
    z-index: 999;
    transition: all 0.5s;
}
@media (max-width: 540px) {
    .hd_menu .menu_btn {
        width: 40px;
        height: 40px;
    }
}
.hd_menu .menu_btn span {
    display: inline-block;
    position: absolute;
    left: 50%;
    translate: -50% -50%;
    width: 50%;
    height: 1px;
    background-color: #fff;
    transition: 0.5s background-color;
}
.hd_menu .menu_btn span:nth-of-type(1) {
    top: 35%;
    transition: all 0.5s;
}
.hd_menu .menu_btn span:nth-of-type(2) {
    top: 50%;
    transition: all 0.5s;
}
.hd_menu .menu_btn span:nth-of-type(3) {
    top: 65%;
    transition: all 0.5s;
}
.hd_menu .menu_btn.-active span:nth-of-type(1) {
    top: 50%;
    rotate: -45deg;
}
.hd_menu .menu_btn.-active span:nth-of-type(2) {
    opacity: 0;
}
.hd_menu .menu_btn.-active span:nth-of-type(3) {
    top: 50%;
    rotate: 45deg;
}
.hd_menu .menu_bg {
    position: fixed;
    z-index: -1;
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.5s;
    pointer-events: none;
    background-color: rgba(45, 45, 45, 0.9);
}
.hd_menu .menu_bg.-active {
    opacity: 1;
    z-index: 998;
    pointer-events: auto;
    backdrop-filter: blur(3px);
}
.hd_menu .menu_inner {
    position: fixed;
    z-index: 998;
    width: 100%;
    height: 100%;
    padding: 0 10%;
}
.hd_menu .menu_content {
    margin: 120px auto;
    max-width: 360px;
    width: 100%;
    height: 80vh;
    overflow-y: auto;
}
.hd_menu .menu_logo {
    width: 100%;
}
.hd_menu .menu_nav {
    margin: 3em 0;
}
.hd_menu .menu_nav .nav_list {
    font-size: clamp(2rem, 3.2vw, 2.4rem);
    display: flex;
    flex-direction: column;
    gap: 0.75em 0;
}
.hd_menu .menu_nav .nav_item {
    position: relative;
}
.hd_menu .menu_nav .nav_link {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    font-size: clamp(2rem, 3.2vw, 2.4rem);
    padding-left: 1em;
}
.hd_menu .menu_nav .nav_link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 0.5em;
    height: 0.075em;
    background: #82b4d7;
    transition: width 0.5s;
}
.hd_menu .menu_nav .nav_link:hover::before {
    width: 0.75em;
}
.hd_menu .menu_nav .nav_link.-nolink::before {
    display: none;
}
.hd_menu .menu_nav .nav_sub {
    margin-top: 0.35em;
    margin-left: 1em;
}
.hd_menu .menu_nav .nav_sub .sub_list {
    display: flex;
    flex-direction: column;
    gap: 0.5em 0;
}
.hd_menu .menu_nav .nav_sub .sub_link {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    padding-left: 1em;
}
.hd_menu .menu_nav .nav_sub .sub_link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 0.5em;
    height: 0.075em;
    background: #82b4d7;
    transition: width 0.5s;
}
.hd_menu .menu_nav .nav_sub .sub_link:hover::before {
    width: 0.75em;
}
.hd_menu .menu_tel {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    height: 50px;
    padding: 0.15em 1em;
    gap: 0 0.35em;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 100%;
}
.hd_menu .menu_tel span {
    display: inline-block;
    line-height: 1;
}
.hd_menu .menu_tel .txt {
    translate: 0 0.15em;
}
.hd_menu .menu_tel .num {
    font-size: clamp(2rem, 3.2vw, 2.4rem);
    white-space: nowrap;
}

/*==================================================================================================
	フッター
==================================================================================================*/
.ft {
    overflow-x: clip;
    position: relative;
}
.ft::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80%;
    background-image: url(../img/cmn/contact_bg.jpg);
    background-size: cover;
    background-position: 50% 30%;
    background-repeat: no-repeat;
    z-index: 1;
}
.ft::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80%;
    background: #2d2d2d;
    background: linear-gradient(0deg, #2d2d2d 0%, rgba(45, 45, 45, 0.5) 100%);
    z-index: 2;
}
.ft_contact {
    padding: calc(clamp(30px, 6vw, 80px) * 1.5) 5%;
    position: relative;
    z-index: 10;
}
.ft_contact .contact_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.ft_contact .contact_secttl {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: calc(clamp(30px, 6vw, 80px) * 0.75);
}
.ft_contact .contact_secttl .en {
    font-size: clamp(3.6rem, 6vw, 6rem);
    line-height: 1.45;
    font-weight: 600;
    text-align: center;
}
.ft_contact .contact_secttl .ja {
    font-size: clamp(2rem, 3.2vw, 2.4rem);
    font-weight: 600;
    text-align: center;
}
.ft_contact .contact_tel {
    display: flex;
    align-items: baseline;
    justify-content: center;
    border: 1px solid #fff;
    padding: 0.25em 1em 0.35em;
    gap: 0 0.25em;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 100%;
    font-size: clamp(2.8rem, 4vw, 4.2rem);
    transition: opacity 0.5s;
}
.ft_contact .contact_tel span {
    display: inline-block;
    line-height: 1;
}
.ft_contact .contact_tel .txt {
    font-size: 0.65em;
}
.ft_contact .contact_tel .num {
    white-space: nowrap;
}
.ft_contact .contact_note {
    display: block;
    text-align: center;
    margin-top: 0.5em;
}
.ft_main {
    padding: 0 5%;
    position: relative;
    z-index: 10;
}
.ft_top {
    display: flex;
    justify-content: space-between;
    gap: clamp(30px, 6vw, 80px) 0;
}
@media (max-width: 840px) {
    .ft_top {
        flex-direction: column;
    }
}
.ft_info {
    width: 30%;
}
@media (max-width: 840px) {
    .ft_info {
        width: 100%;
    }
}
@media (max-width: 840px) {
    .ft_logo {
        width: min(70%, 260px);
    }
    .ft_logo a:hover {
        opacity: 0.8;
    }
}
.ft_address {
    margin-top: 1.5em;
}
.ft_map {
    margin-top: 0.25em;
    display: flex;
    align-items: center;
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    gap: 0 0.5em;
}
.ft_map::before {
    content: "";
    position: absolute;
    bottom: -0.25em;
    left: 0;
    width: 100%;
    height: 1px;
    background: #fff;
}
.ft_map::after {
    content: "";
    width: 0.75em;
    height: 0.75em;
    translate: 0 0.15em;
    background-image: url(../img/cmn/arrow.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: translate 0.5s;
}
.ft_map:hover::after {
    translate: 0.1em -0.05em;
}
.ft_nav {
    width: 50%;
    display: flex;
    justify-content: flex-end;
    gap: 0 10%;
    display: none;
}
@media (max-width: 840px) {
    .ft_nav {
        width: 100%;
        justify-content: flex-start;
    }
}
.ft_nav .nav_list {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    flex-direction: column;
    gap: 0.75em 0;
}
.ft_nav .nav_item {
    position: relative;
}
.ft_nav .nav_link {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    padding-left: 1em;
}
.ft_nav .nav_link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 0.5em;
    height: 0.075em;
    background: #82b4d7;
    transition: width 0.5s;
}
.ft_nav .nav_link:hover::before {
    width: 0.75em;
}
.ft_nav .nav_link.-nolink::before {
    display: none;
}
.ft_nav .nav_link span {
    line-height: 1.45;
}
.ft_nav .nav_sub {
    margin-top: 0.75em;
    margin-left: 1em;
}
.ft_nav .nav_sub .sub_list {
    display: flex;
    flex-direction: column;
    gap: 0.75em 0;
}
.ft_nav .nav_sub .sub_link {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    padding-left: 1em;
}
.ft_nav .nav_sub .sub_link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 0.5em;
    height: 0.075em;
    background: #82b4d7;
    transition: width 0.5s;
}
.ft_nav .nav_sub .sub_link:hover::before {
    width: 0.75em;
}
.ft_nav .nav_sub .sub_link span {
    line-height: 1.45;
}
.ft_bottom {
    padding: 3.5em 0;
}

/*==================================================================================================
	共通
==================================================================================================*/
.cmn {
    margin: calc(clamp(30px, 6vw, 80px) * 2) 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_secttl {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: calc(clamp(30px, 6vw, 80px) * 0.75);
}
.cmn_secttl .en {
    font-size: clamp(3.6rem, 6vw, 6rem);
    line-height: 1.45;
    font-weight: 600;
    display: block;
    opacity: 0;
    translate: 0 0.15em;
    transition: opacity 1s, translate 1s, -webkit-filter 1s;
    transition: opacity 1s, translate 1s, filter 1s;
    transition: opacity 1s, translate 1s, filter 1s, -webkit-filter 1s;
    -webkit-filter: blur(5px);
    filter: blur(5px);
}
.cmn_secttl .en.-active {
    opacity: 1;
    translate: 0 0;
    -webkit-filter: blur(0px);
    filter: blur(0px);
}
.cmn_secttl .ja {
    font-size: clamp(2rem, 3.2vw, 2.4rem);
    font-weight: 600;
    position: relative;
    padding-left: 1.5em;
}
.cmn_secttl .ja::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    translate: 0 -50%;
    width: 1em;
    height: 0.075em;
    background: #fff;
}
.cmn_maskimg {
    -webkit-mask-image: url(../img/cmn/mask.png);
    mask-image: url(../img/cmn/mask.png);
    mask-mode: alpha;
    -webkit-mask-position: left bottom;
    mask-position: left bottom;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: auto 300%;
    mask-size: auto 300%;
    opacity: 0;
}
.cmn_maskimg.-active {
    -webkit-animation: 2.5s mask-anim cubic-bezier(0.15, 1, 0.85, 1) 0s forwards;
    animation: 2.5s mask-anim cubic-bezier(0.15, 1, 0.85, 1) 0s forwards;
}
@-webkit-keyframes mask-anim {
    0% {
        -webkit-mask-position: left bottom;
        mask-position: left bottom;
        opacity: 0;
        -webkit-filter: blur(2.5px);
        filter: blur(2.5px);
    }
    20% {
        opacity: 1;
    }
    to {
        -webkit-mask-position: left 0%;
        mask-position: left 0%;
        -webkit-mask-size: auto 500%;
        mask-size: auto 500%;
        opacity: 1;
        -webkit-filter: blur(0px);
        filter: blur(0px);
    }
}
@keyframes mask-anim {
    0% {
        -webkit-mask-position: left bottom;
        mask-position: left bottom;
        opacity: 0;
        -webkit-filter: blur(2.5px);
        filter: blur(2.5px);
    }
    20% {
        opacity: 1;
    }
    to {
        -webkit-mask-position: left 0%;
        mask-position: left 0%;
        -webkit-mask-size: auto 500%;
        mask-size: auto 500%;
        opacity: 1;
        -webkit-filter: blur(0px);
        filter: blur(0px);
    }
}
.cmn_pagehead {
    padding: calc(clamp(30px, 6vw, 80px) * 2) 5% calc(clamp(30px, 6vw, 80px) * 1.25);
    position: relative;
}
.cmn_pagehead::before, .cmn_pagehead::after {
    content: "";
    position: absolute;
    bottom: -0.15em;
    left: 0;
    width: 100%;
    height: 1px;
}
.cmn_pagehead::before {
    width: 100%;
    background-color: #fff;
}
.cmn_pagehead::after {
    width: 30%;
    background-color: #82b4d7;
}
.cmn_pagehead_ttl {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: calc(clamp(30px, 6vw, 80px) * 0.75);
}
.cmn_pagehead_ttl .en {
    font-size: clamp(3.6rem, 6vw, 6rem);
    line-height: 1.45;
    font-weight: 600;
    display: block;
    opacity: 0;
    translate: 0 0.15em;
    transition: opacity 1s, translate 1s, -webkit-filter 1s;
    transition: opacity 1s, translate 1s, filter 1s;
    transition: opacity 1s, translate 1s, filter 1s, -webkit-filter 1s;
    -webkit-filter: blur(5px);
    filter: blur(5px);
}
.cmn_pagehead_ttl .en.-active {
    opacity: 1;
    translate: 0 0;
    -webkit-filter: blur(0px);
    filter: blur(0px);
}
.cmn_pagehead_ttl .ja {
    font-size: clamp(2rem, 3.2vw, 2.4rem);
    font-weight: 600;
    position: relative;
    padding-left: 1.5em;
}
.cmn_pagehead_ttl .ja::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    translate: 0 -50%;
    width: 1em;
    height: 0.075em;
    background: #fff;
}