@charset "UTF-8";
:root {
    --cl_green: #00af7f;
    --cl_red_sweet: red;
    --cl_main: #003cc6;
}

/*!
global > mixin
------------------------------
*/
.c_btn01,
.c_btn_blank01,
.c_pagehero .c_pagehero__ttl .en,
.c_pagehero02 .c_pagehero__ttl .en {
    font-size: 1.125rem;
}
.c_pagehero .c_pagehero__ttl .ja,
.c_pagehero02 .c_pagehero__lead,
.c_pagehero02 .c_pagehero__ttl .ja {
    font-size: 1.875rem;
}

/*!
foundation > base
------------------------------
*/
body {
    color: #000;
    font-family: Noto Sans JP, sans-serif;
    font-size: 0.875rem;
}
#wrapper,
body.is-modal-active {
    overflow: hidden;
}
#wrapper {
    width: 100%;
}
#wrapper,
main {
    position: relative;
}
main {
    margin-top: 60px;
}
.full,
img {
    width: 100%;
}
img {
    max-width: 100%;
}
:where(a, .h_opacity) {
    cursor: pointer;
    transition: opacity 0.5s ease;
}
.pc {
    display: none !important;
}
.sp {
    display: block !important;
}
a.blank {
    text-decoration: underline;
    text-underline-offset: 3px;
}
.c_header {
    background-color: #fff;
    height: 60px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 20;
}
.c_header_inner {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: space-between;
    padding-left: clamp(1.25rem, 4.8818897638vw + -1.0841535433rem, 3.1875rem);
    padding-right: clamp(1.25rem, 3.937007874vw + -0.6323818898rem, 2.8125rem);
    width: 100%;
}
.c_header_logo {
    max-width: 200px;
    width: 100%;
}
.c_header_nav {
    align-items: center;
    color: var(--cl_main);
    display: none;
    font-size: clamp(0.875rem, 0.3902439024vw + 0.7835365854rem, 1.125rem);
    font-weight: 700;
    justify-content: flex-end;
    line-height: 2.6666666667;
    width: 100%;
}
.c_header_list {
    align-items: center;
    -moz-column-gap: clamp(
        1.25rem,
        10.1333333333vw + -5.2416666667rem,
        3.625rem
    );
    column-gap: clamp(1.25rem, 10.1333333333vw + -5.2416666667rem, 3.625rem);
    display: flex;
    display: none;
    margin-right: clamp(1.25rem, 4.2666666667vw + -1.4833333333rem, 2.25rem);
}
.c_header_contact {
    align-items: center;
    display: none;
    flex-direction: column;
    padding-left: clamp(1.25rem, 2.6666666667vw + -0.4583333333rem, 1.875rem);
    position: relative;
}
.c_header_contact:before {
    background-color: #a2a2a2;
    content: "";
    display: inline-block;
    height: 78px;
    left: 0;
    position: absolute;
    top: calc(50% - 39px);
    width: 1px;
}
.c_header_contact-icon {
    display: inline-block;
    width: clamp(1.875rem, 1.1023622047vw + 1.3479330709rem, 2.3125rem);
}
.c_header_hamburger {
    cursor: pointer;
    display: inline-block;
    height: 25px;
    position: relative;
    transition: all 0.4s;
    width: 30px;
}
.c_header_hamburger span {
    background-color: var(--cl_main);
    display: block;
    height: 2px;
    left: 0;
    position: absolute;
    transition: 0.4s ease;
    width: 100%;
}
.c_header_hamburger span:first-of-type {
    top: 0;
}
.c_header_hamburger span:nth-of-type(2) {
    top: 12px;
}
.c_header_hamburger span:nth-of-type(3) {
    bottom: 0;
}
.is_nav_open .c_header_hamburger span:first-of-type {
    transform: translateY(11px) rotate(-315deg);
}
.is_nav_open .c_header_hamburger span:nth-of-type(2) {
    opacity: 0;
}
.is_nav_open .c_header_hamburger span:nth-of-type(3) {
    transform: translateY(-12px) rotate(315deg);
}
.c_header_sp_nav {
    background-color: #fff;
    bottom: 0;
    height: 0;
    left: auto;
    overflow-y: auto;
    position: fixed;
    right: 0;
    top: 60px;
    transition: 0.4s ease-in-out;
    visibility: hidden;
    width: 100%;
    z-index: 2;
}
.is_nav_open .c_header_sp_nav {
    height: calc(100% - 60px);
    opacity: 1;
    visibility: visible;
}
.c_header_sp_nav_content {
    height: auto;
}
.c_header_sp_nav_list {
    padding-top: 20px;
}
.c_header_sp_nav_item {
    color: var(--cl_main);
    font-size: clamp(1rem, 0.1951219512vw + 0.9542682927rem, 1.125rem);
    font-weight: 700;
    line-height: 2.6666666667;
    position: relative;
    width: 100%;
}
.c_header_sp_nav_item:after {
    background-color: rgba(0, 0, 0, 0.5);
    bottom: 0;
    content: "";
    height: 1px;
    left: calc(50% - 50vw);
    position: absolute;
    right: calc(50% - 50vw);
}
.c_header_sp_nav_item a {
    display: block;
    padding: 8px 20px;
}
.c_header_sp_nav_contact {
    align-items: center;
    display: flex;
    gap: 4px;
    justify-content: center;
    padding: 8px 20px;
    position: relative;
}
.c_header_sp_nav_contact:after {
    background-color: rgba(0, 0, 0, 0.5);
    bottom: 0;
    content: "";
    height: 1px;
    left: calc(50% - 50vw);
    position: absolute;
    right: calc(50% - 50vw);
}
.c_header_sp_nav_contact-icon {
    display: inline-block;
    width: clamp(1.875rem, 1.1023622047vw + 1.3479330709rem, 2.3125rem);
}
.c_header_sp_nav_contact-txt {
    color: var(--cl_main);
    font-size: clamp(1rem, 0.1951219512vw + 0.9542682927rem, 1.125rem);
    font-weight: 700;
    line-height: 2.6666666667;
}

/*!
component > gnavi
------------------------------
*/
.c_footer {
    background-color: #fff;
}
.c_footer_top {
    padding-top: 42px;
}
.c_footer_logo {
    max-width: 250px;
    min-width: 200px;
    width: 100%;
}
.c_footer_nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
}
.c_footer_nav-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.c_footer_nav-item {
    flex: 1;
    min-width: 137.5px;
    width: calc(50% - 10px);
}
.c_footer_nav-item > a {
    font-size: clamp(1rem, 0.6329113924vw + 0.6962025316rem, 1.25rem);
    font-weight: 700;
    line-height: 2.4;
    white-space: nowrap;
}
.c_footer_nav-under-item > a {
    font-weight: 400;
    line-height: 2.25;
    white-space: nowrap;
}
.c_footer_bottom {
    padding-top: 40px;
}
.c_footer_bottom > .container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.c_footer_bottom-copy-txt {
    color: #a2a2a2;
    font-size: 0.875rem;
    line-height: 3.4285714286;
}
.c_footer_bottom-txt {
    line-height: 2.5714285714;
}
.c_top_ttl {
    align-items: baseline;
    display: flex;
    gap: clamp(1.25rem, 1.5748031496vw + 0.4970472441rem, 1.875rem);
}
.c_top_ttl-ja {
    color: var(--cl_main);
    font-size: clamp(1.5rem, 4.094488189vw + -0.4576771654rem, 3.125rem);
    font-weight: 700;
    line-height: 1.0416666667;
}
.c_top_ttl-en {
    color: rgba(0, 60, 198, 0.5);
    font-family: Segoe UI, sans-serif;
    font-size: clamp(1rem, 1.4173228346vw + 0.3223425197rem, 1.5625rem);
    font-style: italic;
    font-weight: 700;
    line-height: 1.92;
}
.c_sect_ttl01 {
    align-items: center;
    display: flex;
    flex-direction: column;
    font-size: clamp(1.25rem, 1.5609756098vw + 0.8841463415rem, 2.25rem);
    font-weight: 700;
    gap: 4px;
    line-height: 1.3333333333;
    position: relative;
}
.c_sect_ttl01:before {
    aspect-ratio: 1/1;
    background: url(../images/common/icon_squared_color.svg) no-repeat 50%;
    background-size: contain;
    content: "";
    display: inline-block;
    width: clamp(1.25rem, 0.9756097561vw + 1.0213414634rem, 1.875rem);
}
.c_sect_ttl02 {
    align-items: center;
    display: flex;
    font-size: clamp(1.25rem, 1.5609756098vw + 0.8841463415rem, 2.25rem);
    font-weight: 700;
    gap: 4px;
    gap: clamp(0.25rem, 0.5853658537vw + 0.112804878rem, 0.625rem);
    line-height: 1.3333333333;
    position: relative;
}
.c_sect_ttl02:before {
    aspect-ratio: 1/1;
    background: url(../images/common/icon_squared_color.svg) no-repeat 50%;
    background-size: contain;
    content: "";
    display: inline-block;
    position: relative;
    top: 2px;
    width: clamp(1.25rem, 0.9756097561vw + 1.0213414634rem, 1.875rem);
}

/*!
component > btn
------------------------------
*/
.c_totop {
    align-items: center;
    background-color: var(--cl_main);
    border: 2px solid #fff;
    border-radius: 100%;
    bottom: 20px;
    color: #fff;
    display: flex;
    height: 45px;
    justify-content: center;
    position: fixed;
    right: 5px;
    transform: translateY(150px);
    transition: 0.3s;
    width: 45px;
    z-index: 11;
}
.c_totop:after {
    border-color: #fff;
    border-style: solid;
    border-width: 0 2px 2px 0;
    content: "";
    flex-shrink: 0;
    height: 10px;
    position: relative;
    transform: rotate(-135deg);
    transform-origin: 50% 60%;
    transition: background-color 0.5s ease;
    transition: 0.5s;
    width: 10px;
}
.c_btn {
    border: 2px solid #0f376e;
    font-size: 1.25rem;
    letter-spacing: 0.15em;
    max-width: 274px;
    width: 100%;
}
.c_btn .btn {
    display: flex;
    font-weight: 500;
    justify-content: space-between;
    overflow: hidden;
    padding: 17px 27px 15px 30px;
    position: relative;
}
.c_btn .btn:before {
    background-color: #0f376e;
    content: "";
    height: 100%;
    left: -100%;
    position: absolute;
    top: 0;
    transition: left 0.5s ease;
    width: 100%;
    z-index: -1;
}
.c_btn .btn:hover {
    opacity: 1;
}
.c_btn .btn.btn_en {
    font-size: 1.125rem;
}
.c_btn .icon {
    position: relative;
}
.c_btn .icon:after {
    background-color: #0f376e;
    content: "";
    display: inline-block;
    height: 14px;
    mask-image: url(../images/common/icon_arrow.svg);
    -webkit-mask-image: url(../images/common/icon_arrow.svg);
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-size: contain;
    -webkit-mask-size: contain;
    position: relative;
    width: 45px;
}
.c_btn01 {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    color: #fff;
    display: flex;
    font-weight: 700;
    max-width: 380px;
    padding: 13px 20px;
    text-align: center;
    width: 100%;
}
.c_btn01,
.c_btn_arrow01 {
    align-items: center;
    background-color: var(--cl_main);
    justify-content: center;
    position: relative;
}
.c_btn_arrow01 {
    aspect-ratio: 1/1;
    display: inline-block;
    display: flex;
    width: clamp(2.5rem, 2.7317073171vw + 1.8597560976rem, 4.25rem);
}
.c_btn_arrow01:after {
    aspect-ratio: 36.7/26.1;
    background: url(../images/common/icon_arrow01.svg) no-repeat 50%;
    background-size: contain;
    content: "";
    display: inline-block;
    width: 36.7px;
    width: clamp(1.5625rem, 1.1707317073vw + 1.2881097561rem, 2.3125rem);
}
.c_btn_arrow02 {
    align-items: center;
    aspect-ratio: 1/1;
    background-color: transparent;
    border: 2px solid var(--cl_main);
    border-radius: 50%;
    display: inline-block;
    display: flex;
    justify-content: center;
    position: relative;
    transition: 0.5s ease;
    width: clamp(2.5rem, 3.8048780488vw + 1.6082317073rem, 4.9375rem);
}
.c_btn_arrow02:after {
    aspect-ratio: 36.7/26.1;
    background: url(../images/common/icon_arrow02.svg) no-repeat 50%;
    background-size: contain;
    content: "";
    display: inline-block;
    width: 36.7px;
    width: clamp(1.5625rem, 1.1707317073vw + 1.2881097561rem, 2.3125rem);
}
.c_btn_arrow02:hover {
    opacity: 0.7;
}
.c_btn_blank01 {
    background-color: var(--cl_main);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    color: #fff;
    display: block;
    font-weight: 700;
    max-width: 458px;
    padding: 13px 40px;
    position: relative;
    text-align: center;
    width: 100%;
}
.c_btn_blank01:after {
    aspect-ratio: 30.5/30.5;
    background: url(../images/common/icon_blank01.svg) no-repeat 50%;
    background-size: contain;
    content: "";
    display: inline-block;
    position: absolute;
    right: clamp(1.25rem, 0.9756097561vw + 1.0213414634rem, 1.875rem);
    top: 50%;
    translate: 0 -50%;
    width: 30.5px;
    width: clamp(1.5625rem, 0.487804878vw + 1.4481707317rem, 1.875rem);
}

/*!
component > Other
------------------------------

- loadpage
------------------------------
*/
.is_loadding .c_loading {
    opacity: 1;
    pointer-events: all;
}
.c_loading {
    align-items: center;
    background: var(--cl_main);
    display: flex;
    height: 100%;
    justify-content: center;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}
.c_loading__content {
    position: relative;
    transform: translate(-15px, -15px);
}
.c_loading__item {
    animation-fill-mode: both;
    background-color: #fff;
    border-radius: 100%;
    height: 12px;
    left: -7px;
    margin: 2px 2px 2px 15px;
    position: absolute;
    top: 4px;
    width: 12px;
}
.c_loading__item:first-child {
    animation: ball-zig 0.7s linear 0s infinite;
}
.c_loading__item:last-child {
    animation: ball-zag 0.7s linear 0s infinite;
}
@keyframes ball-zig {
    33% {
        transform: translate(-15px, -30px);
    }
    66% {
        transform: translate(15px, -30px);
    }
    to {
        transform: translate(0);
    }
}
@keyframes ball-zag {
    33% {
        transform: translate(15px, 30px);
    }
    66% {
        transform: translate(-15px, 30px);
    }
    to {
        transform: translate(0);
    }
}
[data-delay="0.1s"] {
    transition-delay: 0.1s;
}
[data-delay="0.2s"] {
    transition-delay: 0.2s;
}
[data-delay="0.3s"] {
    transition-delay: 0.3s;
}
[data-delay="0.4s"] {
    transition-delay: 0.4s;
}
[data-delay="0.5s"] {
    transition-delay: 0.5s;
}
[data-delay="0.6s"] {
    transition-delay: 0.6s;
}
[data-delay="0.7s"] {
    transition-delay: 0.7s;
}
[data-delay="0.8s"] {
    transition-delay: 0.8s;
}
[data-delay="0.9s"] {
    transition-delay: 0.9s;
}
[data-delay="1s"] {
    transition-delay: 1s;
}
[data-delay="1.5s"] {
    transition-delay: 1.5s;
}
.js_inview[data-duration="1s"] {
    transition-duration: 1s;
}
.js_inview[data-duration="1.5s"] {
    transition-duration: 1.5s;
}
.js_inview[data-duration="2s"] {
    transition-duration: 2s;
}
.js_inview {
    opacity: 0;
    transition-delay: 0s;
    transition-duration: 1.5s;
    transition-property: opacity, transform;
}
.fade {
    opacity: 0;
}
.fadeup {
    transform: translate3d(0, 30px, 0);
}
.fadedown {
    transform: translate3d(0, -30px, 0);
}
.faderight {
    transform: translate3d(30px, 0, 0);
}
.fadeleft {
    transform: translate3d(-30px, 0, 0);
}
.is_show.js_inview {
    opacity: 1;
    transform: none;
}

/*!
component > Texts
------------------------------
*/
.c_text-en {
    font-family: Segoe UI, sans-serif;
}
.c_top_lead-txt01 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.8;
}
.c_top_lead-txt02 {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.375;
}

/*!
component > List
------------------------------
*/
.c_pagehero {
    position: relative;
}
.c_pagehero .c_pagehero__bg,
.c_pagehero .c_pagehero__bg:after {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.c_pagehero .c_pagehero__bg:after {
    background: linear-gradient(180deg, #003cc6, #000c5b) 0 0 no-repeat;
    content: "";
    opacity: 0.3;
}
.c_pagehero .c_pagehero__bg img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}
.c_pagehero .c_pagehero__in {
    display: flex;
    justify-content: center;
    padding-block: 10.6666666667vw;
}
.c_pagehero .c_pagehero__ttl {
    position: relative;
    text-align: center;
}
.c_pagehero .c_pagehero__ttl .en,
.c_pagehero .c_pagehero__ttl .ja {
    color: #fff;
    display: block;
    font-weight: 700;
}
.c_pagehero .c_pagehero__ttl .en {
    font-family: Segoe UI, sans-serif;
    font-style: italic;
    margin-top: 10px;
    opacity: 0.5;
}
.c_pagehero02 {
    position: relative;
    z-index: 0;
}
.c_pagehero02 .c_pagehero02__bg {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}
.c_pagehero02 .c_pagehero02__bg img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}
.c_pagehero02 .c_pagehero__in {
    display: flex;
    flex-direction: column;
    gap: clamp(1.875rem, 3.90625vw + 0rem, 4.6875rem);
    margin-left: 0;
    max-width: 630px;
    padding-block: 10.6666666667vw;
}
.c_pagehero02 .c_pagehero__ttl {
    position: relative;
}
.c_pagehero02 .c_pagehero__ttl .en,
.c_pagehero02 .c_pagehero__ttl .ja {
    color: #fff;
    display: block;
    font-weight: 700;
}
.c_pagehero02 .c_pagehero__ttl .en {
    font-family: Segoe UI, sans-serif;
    font-style: italic;
    margin-top: 10px;
    opacity: 0.5;
}
.c_pagehero02 .c_pagehero__lead {
    color: #fff;
    display: block;
    font-size: clamp(1.5rem, 5.6962025316vw + -1.2341772152rem, 3.75rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.5;
    white-space: nowrap;
}
.c_breadcrumb {
    align-items: center;
    background-color: var(--cl_green);
    color: #fff;
    display: flex;
    height: 33px;
}
.c_breadcrumb_list {
    display: flex;
}
.c_breadcrumb_item {
    font-weight: 400;
    line-height: 2.25;
}
.c_breadcrumb_item + .c_breadcrumb_item {
    margin-left: 4px;
}
.c_breadcrumb_item + .c_breadcrumb_item:before {
    content: ">";
}
.c_a {
    color: var(--cl_main);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.3s;
}
.c_a:focus,
.c_a:hover {
    text-decoration: none;
}

/*!
component > gnavi
------------------------------
*/
.c_top_modal {
    align-items: center;
    display: flex;
    height: 100vh;
    inset: 0;
    opacity: 0;
    padding: 0 20px;
    position: fixed;
    transition: 0.3s ease-in;
    visibility: hidden;
    width: 100%;
    z-index: 30;
}
.is-modal-active .c_top_modal {
    opacity: 1;
    visibility: visible;
}
.c_top_modal_bk {
    background-color: rgba(0, 0, 0, 0.3);
    inset: 0;
    position: absolute;
    z-index: -1;
}
.c_top_modal_content {
    background-color: #fff;
    margin-inline: auto;
    margin-top: clamp(2.5rem, 6.8292682927vw + 0.8993902439rem, 6.875rem);
    max-width: 1200px;
    position: relative;
    z-index: 1;
}
.c_top_modal_content-scroll {
    height: 70vh;
    max-height: 600px;
    overflow-y: auto;
}
.c_top_modal_content-inner {
    padding: 20px;
}
.c_top_modal_content-ttl {
    align-items: center;
    display: flex;
    flex-direction: column;
    font-size: clamp(1.125rem, 0.7804878049vw + 0.9420731707rem, 1.625rem);
    font-weight: 700;
    gap: 8px;
    line-height: 2.0769230769;
    position: relative;
}
.c_top_modal_content-ttl:before {
    background: url(../images/common/icon_caution.svg) no-repeat 50%;
    background-size: contain;
    content: "";
    display: inline-block;
    height: 33px;
    width: clamp(1.6875rem, 1.5748031496vw + 0.9345472441rem, 2.3125rem);
}
.c_top_modal_content-txt {
    line-height: 1.625;
    margin-top: 20px;
}
.c_top_modal_content-txt p + p {
    margin-top: 12px;
}
.c_top_modal_content-btn {
    aspect-ratio: 1/1;
    background-color: var(--cl_main);
    bottom: 100%;
    cursor: pointer;
    position: absolute;
    right: 0;
    transition: 0.5s;
    width: clamp(2.5rem, 6.4814814815vw + -0.6111111111rem, 4.25rem);
    z-index: 1;
}
.c_top_modal_content-btn:hover {
    background-color: #002d93;
}
.c_top_modal_content-btn span {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    position: relative;
}
.c_top_modal_content-btn span:after,
.c_top_modal_content-btn span:before {
    background-color: #fff;
    content: "";
    display: inline-block;
    height: clamp(0.1875rem, 0.462962963vw + -0.0347222222rem, 0.3125rem);
    position: absolute;
    rotate: -315deg;
    width: 72%;
}
.c_top_modal_content-btn span:after {
    rotate: 315deg;
}

/*!
layout > container
------------------------------
*/
.container {
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}
/*!
page > common > common
------------------------------
*/
@media screen and (min-width: 768px) {
    .c_btn01,
    .c_btn_blank01 {
        font-size: 1.5rem;
    }
    .c_pagehero .c_pagehero__ttl .en,
    .c_pagehero02 .c_pagehero__ttl .en {
        font-size: 1.5625rem;
    }
    .c_pagehero .c_pagehero__ttl .ja,
    .c_pagehero02 .c_pagehero__ttl .ja {
        font-size: 3.125rem;
    }
    .c_pagehero02 .c_pagehero__lead {
        font-size: clamp(3.125rem, 1.2019230769vw + 2.5480769231rem, 3.75rem);
    }
    body {
        font-size: 1rem;
    }
    main {
        margin-top: 110px;
    }
    :where(a:hover, .h_opacity:hover) {
        opacity: 0.7;
    }
    .pc {
        display: block !important;
    }
    .sp {
        display: none !important;
    }
    .u_sp {
        display: none;
    }
    a[href^="tel:"] {
        pointer-events: none;
    }
    a.blank:hover {
        text-decoration: none;
    }
    .c_header {
        height: 110px;
    }
    .c_header_logo {
        max-width: 250px;
    }
    .c_header_contact,
    .c_header_list {
        display: flex;
    }
    .c_header_hamburger {
        height: 30px;
        width: 40px;
    }
    .c_header_hamburger span {
        height: 3px;
    }
    .c_header_hamburger span:nth-of-type(2) {
        top: 13.5px;
    }
    .is_nav_open .c_header_hamburger span:first-of-type {
        transform: translateY(13.5px) rotate(-315deg);
    }
    .is_nav_open .c_header_hamburger span:nth-of-type(3) {
        transform: translateY(-13.5px) rotate(315deg);
    }
    .c_header_sp_nav {
        top: 110px;
    }
    .c_footer_nav-list {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 0;
        justify-content: space-between;
        margin-top: -10px;
        width: 100%;
    }
    .c_footer_nav-item {
        flex: auto;
        min-width: auto;
        width: auto;
    }
    .c_footer_nav-item + .c_footer_nav-item {
        margin-top: 0;
    }
    .c_footer_nav-item:first-of-type {
        margin-right: clamp(1.25rem, 7.9532163743vw + -2.5526315789rem, 5.5rem);
    }
    .c_footer_nav-item:nth-of-type(2) {
        margin-right: clamp(
            1.25rem,
            17.5438596491vw + -7.1381578947rem,
            10.625rem
        );
    }
    .c_footer_nav-item:nth-of-type(3) {
        margin-right: clamp(
            1.25rem,
            9.2397660819vw + -3.1677631579rem,
            6.1875rem
        );
    }
    .c_footer_nav-item:nth-of-type(4) {
        margin-right: clamp(
            1.25rem,
            8.3040935673vw + -2.7203947368rem,
            5.6875rem
        );
    }
    .c_footer_nav-item:nth-of-type(5) {
        margin-right: clamp(
            1.25rem,
            5.8479532164vw + -1.5460526316rem,
            4.375rem
        );
    }
    .c_footer_bottom > .container {
        flex-direction: row;
    }
    .c_totop {
        bottom: 30px;
        height: 60px;
        width: 60px;
    }
    .c_totop:after {
        border-width: 0 3px 3px 0;
        height: 15px;
        width: 15px;
    }
    .c_btn {
        border: 4px solid #0f376e;
        font-size: clamp(1.5rem, 2.2836538462vw + 0.4038461538rem, 2.6875rem);
        max-width: clamp(22.5rem, 26.9230769231vw + 9.5769230769rem, 36.5rem);
    }
    .c_btn.btn02 {
        margin-left: auto;
        max-width: 466px;
    }
    .c_btn .btn {
        gap: 10px;
        padding: clamp(1.25rem, 1.3221153846vw + 0.6153846154rem, 1.9375rem)
            clamp(1.25rem, 2.4305555556vw + 0.0833333333rem, 3rem)
            clamp(1.25rem, 1.3221153846vw + 0.6153846154rem, 1.9375rem)
            clamp(1.25rem, 2.9513888889vw + -0.1666666667rem, 3.375rem);
    }
    .c_btn .btn:hover {
        color: #fff;
    }
    .c_btn .btn:hover:before {
        left: 0;
    }
    .c_btn .btn:hover .icon:after {
        background-color: #fff;
    }
    .c_btn .btn.btn_en {
        font-size: clamp(1.25rem, 0.9615384615vw + 0.7884615385rem, 1.75rem);
        padding: clamp(0.9375rem, 2.4038461538vw + -0.2163461538rem, 2.1875rem)
            clamp(0.625rem, 3.125vw + -0.875rem, 2.25rem)
            clamp(0.9375rem, 1.3221153846vw + 0.3028846154rem, 1.625rem)
            clamp(0.625rem, 3.7259615385vw + -1.1634615385rem, 2.5625rem);
    }
    .c_btn .btn.btn_en .icon:after {
        top: 5px;
        width: clamp(3.125rem, 2.2836538462vw + 2.0288461538rem, 4.3125rem);
    }
    .c_btn .icon:after {
        height: clamp(1.5rem, 0.9615384615vw + 1.0384615385rem, 2rem);
        margin-left: 11px;
        top: 1px;
        transition: all 0.5s;
        width: clamp(2.5rem, 7.6923076923vw + -1.1923076923rem, 6.5rem);
    }
    .c_btn01 {
        padding: 25px 20px;
    }
    .c_btn_arrow02 {
        border: 3px solid var(--cl_main);
    }
    .c_btn_blank01 {
        padding: 25px 50px;
    }
    .c_top_lead-txt01 {
        font-size: clamp(1.125rem, 1.8987341772vw + 0.2136075949rem, 1.875rem);
    }
    .c_top_lead-txt02 {
        font-size: clamp(1.25rem, 3.164556962vw + -0.2689873418rem, 2.5rem);
    }
    .c_pagehero .c_pagehero__in {
        padding-bottom: min(210px, 10.9375vw);
        padding-top: min(196px, 10.2083333333vw);
    }
    .c_pagehero02 .c_pagehero__in {
        padding-bottom: min(273px, 14.21875vw);
        padding-top: min(139px, 7.2395833333vw);
    }
    .c_pagehero02 .c_pagehero__ttl {
        text-align: center;
    }
    .c_top_modal_content-scroll {
        max-height: 700px;
    }
    .c_top_modal_content-inner {
        padding: clamp(1.25rem, 7.2784810127vw + -2.2436708861rem, 4.125rem)
            clamp(1.25rem, 8.0696202532vw + -2.6234177215rem, 4.4375rem)
            clamp(1.25rem, 7.9113924051vw + -2.5474683544rem, 4.375rem);
    }
    .c_top_modal_content-ttl {
        flex-direction: row;
        font-size: clamp(1.125rem, 1.2658227848vw + 0.5174050633rem, 1.625rem);
        gap: 21px;
    }
    .c_top_modal_content-txt {
        margin-top: 42px;
    }
    .c_top_modal_content-txt p + p {
        margin-top: 26px;
    }
    .container {
        max-width: 1440px;
    }
}
@media screen and (min-width: 1024px) {
    .c_header_nav {
        display: flex;
    }
    .c_header_hamburger {
        display: none !important;
    }
    .c_footer_nav {
        flex-direction: row;
    }
    .c_footer_nav-list {
        justify-content: flex-end;
    }
}
/*# sourceMappingURL=common.css.map */
