@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: "Zen Kaku Gothic New", "メイリオ", "Meiryo", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Sans-Serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.75;
    font-weight: 500;
    font-family: "Zen Kaku Gothic New", "メイリオ", "Meiryo", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Sans-Serif;
    color: #303030;
}

body {
    font-size: clamp(1.4rem, 2vw, 1.8em);
    color: #303030;
    background-color: #fcfcee;
}
body.-noscroll {
    overflow: hidden;
    touch-action: none;
}

html.lenis-stopped {
    overflow: hidden;
}

.lenis-scrolling iframe {
    pointer-events: none;
}

main {
    overflow-x: clip;
}

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

::-moz-selection {
    color: #fff;
    background-color: #303030;
}

::selection {
    color: #fff;
    background-color: #303030;
}

.scroll {
    visibility: hidden;
}

/*==================================================================================================
	ヘッダー
==================================================================================================*/
.hd {
    position: fixed;
    width: 100%;
    z-index: 110;
}
.hd_main {
    display: flex;
    justify-content: space-between;
    position: relative;
    align-items: center;
    width: calc(100% - 2em);
    margin: 1em auto 0;
    padding: 0.5em calc(min(5%, 75px) * 0.5);
    border-radius: min(7.5vw, 80px);
    background-color: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 940px) {
    .hd_main {
        width: 100%;
        margin: 0 auto;
        background-color: transparent;
        box-shadow: none;
    }
}
.hd_logo {
    margin-left: min(5%, 1em);
}
.hd_logo a {
    padding: 1em 0;
}
.hd_logo a img {
    width: 150px;
    transition: none;
}
.hd_logo a:hover {
    opacity: 0.8;
}
.hd_content {
    display: flex;
    align-items: center;
    gap: 0 1em;
}
.hd_nav {
    display: flex;
    align-items: center;
    margin-right: 2em;
}
@media screen and (max-width: 1380px) {
    .hd_nav {
        display: none;
    }
}
.hd_nav .nav_list {
    display: flex;
    gap: 0 1.25em;
}
.hd_nav .nav_item {
    position: relative;
    flex-shrink: 0;
}
.hd_nav .nav_link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0em 0;
    position: relative;
    transition: 0.5s color;
}
.hd_nav .nav_link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #ffde59;
    border-radius: 5px;
    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 .ja {
    font-weight: 700;
    font-size: 0.9em;
}
.hd_nav .nav_link .en {
    font-size: 0.75em;
    margin-top: -0.35em;
    color: #EAB308;
}
.hd_btns {
    display: flex;
    align-items: center;
    gap: 0 1em;
}
.hd_entry, .hd_contact {
    position: relative;
    border: 1px solid #303030;
    background-color: #fff2bf;
    padding: 0.75em 1em 0.75em 1.5em;
    border-radius: min(5vw, 50px);
    display: flex;
    align-items: center;
    gap: 0 0.75em;
    font-size: 0.9em;
}
@media screen and (max-width: 940px) {
    .hd_entry, .hd_contact {
        display: none;
    }
}
.hd_entry span, .hd_contact span {
    font-weight: 700;
    line-height: 1.35;
}
.hd_entry .txt, .hd_contact .txt {
    display: flex;
    flex-direction: column;
}
.hd_entry .txt .en, .hd_contact .txt .en {
    font-size: 0.75em;
    color: #d1a007;
    position: relative;
    padding-left: 1.25em;
}
.hd_entry .txt .en::before, .hd_contact .txt .en::before {
    content: "";
    position: absolute;
    top: 52.5%;
    left: 0;
    translate: 0 -50%;
    width: 1em;
    height: 1px;
    background-color: #d1a007;
}
.hd_entry .arrow, .hd_contact .arrow {
    width: 2.5em;
    height: 1.5em;
    border: 1px solid #303030;
    background-color: #fcfcee;
    border-radius: 30px;
    position: relative;
    transition: background-color 0.5s, border 0.5s;
}
.hd_entry .arrow::before, .hd_contact .arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: 50%;
    height: 50%;
    background-color: #303030;
    -webkit-mask-image: url(../img/cmn/arrow.svg);
    mask-image: url(../img/cmn/arrow.svg);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    z-index: 10;
    transition: background-color 0.5s, left 0.5s;
}
.hd_entry:hover .arrow, .hd_contact:hover .arrow {
    border: 1px solid transparent;
    background-color: #ffde59;
}
.hd_entry:hover .arrow::before, .hd_contact:hover .arrow::before {
    left: 65%;
}
@media screen and (min-width: 1381px) {
    .hd_menu {
        display: none;
    }
}
.hd_menu .menu_btn {
    position: relative;
    cursor: pointer;
    width: 62px;
    height: 62px;
    border-radius: 50px;
    align-items: center;
    display: flex;
    z-index: 999;
    transition: all 0.5s;
    background-color: #ffde59;
}
@media (max-width: 540px) {
    .hd_menu .menu_btn {
        width: 50px;
        height: 50px;
    }
}
.hd_menu .menu_btn span {
    display: inline-block;
    position: absolute;
    left: 50%;
    translate: -50% -50%;
    width: 50%;
    height: 2px;
    border-radius: 5px;
    background-color: #303030;
    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: #fcfcee;
}
.hd_menu .menu_bg.-active {
    opacity: 1;
    z-index: 998;
    pointer-events: auto;
}
.hd_menu .menu_inner {
    position: fixed;
    z-index: 998;
    width: 100%;
    height: 100%;
    padding: 115px min(5%, 30px) 0;
}
@media screen and (max-width: 940px) {
    .hd_menu .menu_inner {
        padding-top: 100px;
    }
}
@media (max-width: 540px) {
    .hd_menu .menu_inner {
        padding-top: 80px;
    }
}
.hd_menu .menu_content {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    overflow-y: auto;
    /* 重要：Lenisが止まっていても、この要素内ではタッチ操作やスクロールを許可する */
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
    /* iOSでのスクロールを滑らかにする */
}
.hd_menu .menu_nav {
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 0 5%;
}
@media (max-width: 540px) {
    .hd_menu .menu_nav {
        flex-direction: column;
    }
}
.hd_menu .menu_nav .nav_list {
    width: 47.5%;
}
@media (max-width: 540px) {
    .hd_menu .menu_nav .nav_list {
        width: 100%;
    }
}
.hd_menu .menu_nav .nav_item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hd_menu .menu_nav .nav_link {
    position: relative;
    transition: 0.5s color;
    padding: 1em 0;
    display: inline-block;
}
@media (max-width: 540px) {
    .hd_menu .menu_nav .nav_link {
        padding: 0.75em 0;
    }
}
.hd_menu .menu_nav .nav_link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0.75em;
    width: 100%;
    height: 2px;
    background: #ffde59;
    border-radius: 5px;
    translate: 0 0;
    scale: 0 1;
    -webkit-transform-origin: right top;
    transform-origin: right top;
    transition: scale 0.5s;
}
.hd_menu .menu_nav .nav_link:hover {
    color: #d9ad00;
}
.hd_menu .menu_nav .nav_link:hover::before {
    scale: 1 1;
    -webkit-transform-origin: left top;
    transform-origin: left top;
}
.hd_menu .menu_nav .nav_link span {
    display: block;
}
.hd_menu .menu_nav .nav_link .ja {
    font-weight: 700;
    text-align: center;
}
.hd_menu .menu_nav .nav_link .en {
    font-size: 0.75em;
    margin-top: -0.35em;
    color: #EAB308;
    text-align: center;
}
.hd_menu .menu_btns {
    width: 100%;
    max-width: 700px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5em 3.5%;
    margin: calc(clamp(40px, 6vw, 75px) * 0.5) auto 0;
}
.hd_menu .menu_entry, .hd_menu .menu_contact {
    width: 48.25%;
    position: relative;
    border: 1px solid #303030;
    background-color: #fff2bf;
    padding: 0.75em 1em 0.75em 1.5em;
    border-radius: min(10vw, 50px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0 0.75em;
    transition: background-color 0.5s;
}
@media (max-width: 540px) {
    .hd_menu .menu_entry, .hd_menu .menu_contact {
        width: 90%;
        max-width: 360px;
    }
}
.hd_menu .menu_entry span, .hd_menu .menu_contact span {
    font-weight: 700;
    line-height: 1.35;
}
.hd_menu .menu_entry .txt, .hd_menu .menu_contact .txt {
    display: flex;
    flex-direction: column;
}
.hd_menu .menu_entry .txt .en, .hd_menu .menu_contact .txt .en {
    font-size: 0.75em;
    color: #d1a007;
    position: relative;
    padding-left: 1.25em;
}
.hd_menu .menu_entry .txt .en::before, .hd_menu .menu_contact .txt .en::before {
    content: "";
    position: absolute;
    top: 52.5%;
    left: 0;
    translate: 0 -50%;
    width: 1em;
    height: 1px;
    background-color: #d1a007;
}
.hd_menu .menu_entry .arrow, .hd_menu .menu_contact .arrow {
    width: 2.5em;
    height: 1.5em;
    border: 1px solid #303030;
    background-color: #fcfcee;
    border-radius: 30px;
    position: relative;
    transition: background-color 0.5s, border 0.5s;
}
.hd_menu .menu_entry .arrow::before, .hd_menu .menu_contact .arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: 50%;
    height: 50%;
    background-color: #303030;
    -webkit-mask-image: url(../img/cmn/arrow.svg);
    mask-image: url(../img/cmn/arrow.svg);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    z-index: 10;
    transition: background-color 0.5s, left 0.5s;
}
.hd_menu .menu_entry:hover .arrow, .hd_menu .menu_contact:hover .arrow {
    background-color: #ffde59;
    border: 1px solid transparent;
}
.hd_menu .menu_entry:hover .arrow::before, .hd_menu .menu_contact:hover .arrow::before {
    left: 65%;
}
.hd_menu .menu_other {
    margin: calc(clamp(40px, 6vw, 75px) * 0.75) auto 0;
    padding-top: calc(clamp(40px, 6vw, 75px) * 0.5);
    border-top: 1px dotted #303030;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1em 3em;
    font-size: clamp(1.2rem, 1.8vw, 1.4rem);
    max-width: 700px;
}
@media (max-width: 540px) {
    .hd_menu .menu_other {
        flex-direction: column;
    }
}
.hd_menu .menu_other .other_link {
    position: relative;
    display: inline-block;
}
.hd_menu .menu_other .other_link:hover {
    opacity: 0.8;
}
.hd_menu .menu_info {
    max-width: 700px;
    margin: calc(clamp(40px, 6vw, 75px) * 0.75) auto 0;
}
.hd_menu .menu_info .info_logo {
    width: min(50%, 200px);
}
.hd_menu .menu_info .info_address {
    font-size: clamp(1.2rem, 1.8vw, 1.4rem);
    margin-top: 1em;
}
.hd_other {
    display: flex;
    justify-content: flex-end;
    gap: 0 1em;
    font-size: clamp(1.2rem, 1.8vw, 1.4rem);
    margin: 0.5em 2.5em 0 auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
@media screen and (max-width: 940px) {
    .hd_other {
        display: none;
    }
}
.hd_other .other_link {
    position: relative;
    padding-right: 1.5em;
}
.hd_other .other_link::after {
    font-family: "icomoon";
    content: "\f0142";
    position: absolute;
    transition: all 0.5s;
    top: 52.5%;
    right: 0.25em;
    translate: 0 -50%;
}
.hd_other .other_link:hover {
    opacity: 0.8;
}
.hd_other .other_link:hover::after {
    right: 0;
}

/*==================================================================================================
	フッター
==================================================================================================*/
.ft {
    position: relative;
    overflow-x: clip;
    margin-top: calc(min(10vw, 100px) * -1);
}
.ft_contact {
    padding: calc(clamp(40px, 6vw, 75px) * 1.5) 5%;
    margin: 0 auto;
    position: relative;
    background-color: #ffde59;
    border-radius: min(10vw, 100px) min(10vw, 100px) 0 0;
}
.ft_contact .contact_inner {
    max-width: 1600px;
    margin: 0 auto;
}
.ft_contact .contact_head {
    position: relative;
}
.ft_contact .contact_head::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: 90%;
    height: 120%;
    background-color: #fcfcee;
    opacity: 0.5;
    -webkit-mask-image: url(../img/cmn/mark_g.svg);
    mask-image: url(../img/cmn/mark_g.svg);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    z-index: 0;
}
.ft_contact .contact_secttl {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: calc(clamp(40px, 6vw, 75px) * 0.5);
    position: relative;
    z-index: 5;
}
.ft_contact .contact_secttl .en {
    font-size: clamp(2rem, 3.2vw, 2.4rem);
}
.ft_contact .contact_secttl .ja {
    font-size: clamp(3.2rem, 6vw, 6rem);
    line-height: 1.35;
    text-align: center;
}
.ft_contact .contact_txt {
    font-size: calc(clamp(2rem, 3.2vw, 2.4rem) * 1.35);
    text-align: center;
    position: relative;
    z-index: 5;
}
@media (max-width: 840px) {
    .ft_contact .contact_txt {
        font-size: clamp(2rem, 3.2vw, 2.4rem);
    }
}
.ft_contact .contact_btns {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1em 2.5%;
    margin: calc(clamp(40px, 6vw, 75px) * 1.25) auto 0;
}
.ft_contact .contact_entry, .ft_contact .contact_contact {
    width: 48.75%;
    position: relative;
    background-color: #fcfcee;
    padding: 2em min(5%, 75px);
    border-radius: min(5vw, 50px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0 0.75em;
    transition: background-color 0.5s, color 0.5s;
    font-size: clamp(2.8rem, 4vw, 4.2rem);
}
@media (max-width: 1280px) {
    .ft_contact .contact_entry, .ft_contact .contact_contact {
        width: 100%;
    }
}
@media (max-width: 540px) {
    .ft_contact .contact_entry, .ft_contact .contact_contact {
        font-size: calc(clamp(2.8rem, 4vw, 4.2rem) * 0.75);
    }
}
.ft_contact .contact_entry::before, .ft_contact .contact_contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: calc(clamp(40px, 6vw, 75px) * 1.5);
    height: calc(clamp(40px, 6vw, 75px) * 1.5);
    border: 2px solid #303030;
    border-bottom: none;
    border-right: none;
    border-radius: min(5vw, 50px) 0 0 0;
}
.ft_contact .contact_entry::after, .ft_contact .contact_contact::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: calc(clamp(40px, 6vw, 75px) * 1.5);
    height: calc(clamp(40px, 6vw, 75px) * 1.5);
    border: 2px solid #303030;
    border-top: none;
    border-left: none;
    border-radius: 0 0 min(5vw, 50px) 0;
}
.ft_contact .contact_entry .txt, .ft_contact .contact_contact .txt {
    display: flex;
    flex-direction: column;
}
.ft_contact .contact_entry .txt .en, .ft_contact .contact_contact .txt .en {
    font-size: 0.75em;
    color: #EAB308;
    position: relative;
    padding-left: 1.25em;
}
.ft_contact .contact_entry .txt .en::before, .ft_contact .contact_contact .txt .en::before {
    content: "";
    position: absolute;
    top: 52.5%;
    left: 0;
    translate: 0 -50%;
    width: 1em;
    height: 1px;
    background-color: #EAB308;
}
.ft_contact .contact_entry span, .ft_contact .contact_contact span {
    line-height: 1.35;
}
.ft_contact .contact_entry .arrow, .ft_contact .contact_contact .arrow {
    width: 2.5em;
    height: 1.35em;
    border: 1px solid #303030;
    background-color: #fcfcee;
    border-radius: 50px;
    position: relative;
    transition: background-color 0.5s, border 0.5s;
}
.ft_contact .contact_entry .arrow::before, .ft_contact .contact_contact .arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: 45%;
    height: 45%;
    background-color: #303030;
    -webkit-mask-image: url(../img/cmn/arrow.svg);
    mask-image: url(../img/cmn/arrow.svg);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    z-index: 10;
    transition: background-color 0.5s, left 0.5s;
}
.ft_contact .contact_entry:hover, .ft_contact .contact_contact:hover {
    background-color: #fff2bf;
}
.ft_contact .contact_entry:hover .arrow, .ft_contact .contact_contact:hover .arrow {
    background-color: #ffde59;
    border: 1px solid transparent;
}
.ft_contact .contact_entry:hover .arrow::before, .ft_contact .contact_contact:hover .arrow::before {
    left: 65%;
}
.ft_main {
    padding: 0 5%;
    margin: 0 auto;
    position: relative;
    background-color: #303030;
}
.ft_inner {
    max-width: 1600px;
    margin: 0 auto;
}
.ft_top {
    position: relative;
    padding: clamp(40px, 6vw, 75px) 0 calc(clamp(40px, 6vw, 75px) * 0.5);
    color: #fff;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
@media (max-width: 1024px) {
    .ft_top {
        flex-direction: column;
        gap: calc(clamp(40px, 6vw, 75px) * 0.75) 0;
    }
}
@media (max-width: 540px) {
    .ft_top {
        display: none;
    }
}
.ft_info {
    width: 30%;
    padding-right: 5%;
    border-right: 1px solid #fff;
}
@media (max-width: 1024px) {
    .ft_info {
        width: 100%;
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid #fff;
        padding-bottom: calc(clamp(40px, 6vw, 75px) * 0.75);
    }
}
.ft_logo {
    width: 250px;
    max-width: 100%;
}
.ft_address {
    font-size: clamp(1.2rem, 1.8vw, 1.4rem);
    margin-top: 1em;
}
.ft_nav {
    display: flex;
    justify-content: flex-end;
    gap: 0 15%;
    width: 70%;
}
@media (max-width: 1024px) {
    .ft_nav {
        width: 100%;
        gap: 0 10%;
    }
}
.ft_nav .nav_list {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    flex-direction: column;
    font-size: 0.9em;
    gap: 2.5em 2.5%;
}
.ft_nav .nav_list:last-child {
    gap: 0.75em 0;
}
.ft_nav .nav_item.-home {
    color: #ffde59;
}
.ft_nav .nav_link {
    display: inline-block;
}
.ft_nav .nav_link:hover {
    color: #ffde59;
}
.ft_nav .nav_link span {
    display: block;
    line-height: 1.45;
}
.ft_copy {
    display: block;
    color: #fff;
    font-size: 0.9em;
    text-align: right;
    padding: 1.5em 0;
}
@media (max-width: 540px) {
    .ft_copy {
        text-align: center;
        padding: 1em 0;
    }
}

/*==================================================================================================
	共通
==================================================================================================*/
.cmn {
    margin: 0 auto;
    padding: calc(clamp(40px, 6vw, 75px) * 2) 5%;
    position: relative;
}
.cmn.-pb100 {
    padding-bottom: calc(clamp(40px, 6vw, 75px) * 2 + min(10vw, 100px));
}
.cmn.-bg_dark {
    background-color: #F1F1DB;
}
.cmn.-bg_light {
    background-color: #fffff8;
}
.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_pagehead {
    margin: 0 auto;
    padding: calc(clamp(40px, 6vw, 75px) * 2 + 100px) min(5%, 75px) calc(clamp(40px, 6vw, 75px) * 2);
    position: relative;
}
@media screen and (max-width: 940px) {
    .cmn_pagehead {
        padding-top: calc(clamp(40px, 6vw, 75px) * 2 + 50px);
    }
}
.cmn_pagehead.-bg {
    background-color: #fffff8;
}
.cmn_pagehead.-bg::before, .cmn_pagehead.-bg::after {
    content: "";
    position: absolute;
    top: 50%;
    translate: 0 -50%;
}
.cmn_pagehead.-bg::before {
    right: 0;
    height: 100%;
    width: 70%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.cmn_pagehead.-bg::after {
    right: calc(30% + 5px);
    height: calc(100% + 5px);
    width: 40%;
    background: #fffff8;
    background: linear-gradient(90deg, rgb(255, 255, 248) 0%, rgba(255, 255, 248, 0) 100%);
}
.cmn_pagehead.-support::before {
    background-image: url(../img/support/pagehead.jpg);
}
.cmn_pagehead.-human::before {
    background-image: url(../img/human/pagehead.jpg);
}
.cmn_pagehead.-job::before {
    background-image: url(../img/job/pagehead.jpg);
}
.cmn_pagehead.-company {
    padding: calc(clamp(40px, 6vw, 75px) * 2 + 100px) min(5%, 75px) calc(clamp(40px, 6vw, 75px) * 2 + min(10vw, 100px));
}
.cmn_pagehead.-company::before {
    width: 100%;
    background-image: url(../img/company/pagehead.jpg);
    background-position: top;
}
.cmn_pagehead.-company::after {
    right: 0;
    height: 100%;
    width: 100%;
    background: rgba(48, 48, 48, 0.25);
}
.cmn_pagehead.-company .cmn_pagehead_ttl {
    color: #fff;
}
.cmn_pagehead.-company .cmn_pagehead_txt {
    display: flex;
    flex-direction: column;
    gap: 0.5em 0;
    font-size: min(3.4vw, 4.2rem);
}
.cmn_pagehead.-company .cmn_pagehead_txt span {
    background-color: #fcfcee;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    line-height: 1;
    padding: 0.35em 0.5em;
    border-radius: 5px;
}
.cmn_pagehead.-company .cmn_pagehead_txt span:nth-child(2) {
    padding-left: 0;
}
.cmn_pagehead.-simple {
    background-color: #ffde59;
    border-radius: 0 0 min(10vw, 100px) min(10vw, 100px);
}
.cmn_pagehead_inner {
    position: relative;
    z-index: 10;
}
.cmn_pagehead_ttl {
    font-size: clamp(3.2rem, 6vw, 6rem);
    line-height: 1.35;
}
.cmn_pagehead_txt {
    font-size: clamp(2rem, 3.2vw, 2.4rem);
    line-height: 1.75;
    margin-top: 1em;
}
.cmn_pagehead_breadcrumb {
    position: absolute;
    top: 150px;
    left: min(5%, 75px);
}
@media screen and (max-width: 940px) {
    .cmn_pagehead_breadcrumb {
        top: 95px;
    }
}
.cmn_pagehead_breadcrumb .breadcrumb_list {
    display: flex;
    flex-wrap: wrap;
    font-size: clamp(1.2rem, 1.8vw, 1.4rem);
    gap: 0 0.5em;
}
.cmn_pagehead_breadcrumb .breadcrumb_item {
    position: relative;
    display: flex;
    align-items: center;
}
.cmn_pagehead_breadcrumb .breadcrumb_item:not(:last-child)::after {
    content: "・";
    margin-left: 0.5em;
}
.cmn_pagehead_breadcrumb .breadcrumb_link:hover {
    opacity: 0.7;
}
.cmn_form_txt {
    text-align: center;
}
.cmn_form_content {
    margin-top: calc(clamp(40px, 6vw, 75px) * 0.75);
    background-color: #fff;
    padding: calc(clamp(40px, 6vw, 75px) * 1) min(5%, 75px);
    border-radius: min(5vw, 30px);
}
.cmn_form_list {
    display: flex;
    flex-direction: column;
    gap: 2em 0;
}
.cmn_form_item {
    display: flex;
    flex-direction: column;
    gap: 0.5em 0;
}
.cmn_form_item.-align {
    align-items: flex-start;
}
.cmn_form_item.-align .label {
    margin-top: 0.5em;
}
@media (max-width: 840px) {
    .cmn_form_item.-align .label {
        margin-top: 0;
    }
}
.cmn_form_item .label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-weight: 500;
}
@media (max-width: 840px) {
    .cmn_form_item .label {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
    }
}
.cmn_form_item .label.-required::after, .cmn_form_item .label.-any::after {
    color: #fff;
    border-radius: 5px;
    margin: 0 1em;
    font-size: 0.65em;
    padding: 0 1.25em 0em;
}
.cmn_form_item .label.-required::after {
    content: "必須";
    background-color: #d80716;
}
.cmn_form_item .label.-any::after {
    content: "任意";
    background-color: #858585;
}
.cmn_form_item .label + * {
    width: 100%;
    height: 3em;
}
.cmn_form_item .input {
    padding: 0.5em;
    border-radius: 5px;
    border: 0.15em solid #ddd;
    border-radius: min(5vw, 10px);
    outline: none;
}
.cmn_form_item .input#c_tel, .cmn_form_item .input#e_tel {
    width: 250px;
}
@media (max-width: 540px) {
    .cmn_form_item .input#c_tel, .cmn_form_item .input#e_tel {
        width: 100%;
    }
}
.cmn_form_item .textarea {
    resize: vertical;
    padding: 0.5em;
    border-radius: min(5vw, 10px);
    border: 0.15em solid #ddd;
    outline: none;
    height: auto;
}
.cmn_form_item .input::-webkit-input-placeholder,
.cmn_form_item .p-postal-code::-webkit-input-placeholder,
.cmn_form_item .textarea::-webkit-input-placeholder {
    color: #ddd;
    opacity: 1;
    font-weight: 400;
}
.cmn_form_item .input::-moz-placeholder,
.cmn_form_item .p-postal-code::-moz-placeholder,
.cmn_form_item .textarea::-moz-placeholder {
    color: #ddd;
    opacity: 1;
    font-weight: 400;
}
.cmn_form_item .input::-ms-input-placeholder,
.cmn_form_item .p-postal-code::-ms-input-placeholder,
.cmn_form_item .textarea::-ms-input-placeholder {
    color: #ddd;
    opacity: 1;
    font-weight: 400;
}
.cmn_form_item .input::placeholder,
.cmn_form_item .p-postal-code::placeholder,
.cmn_form_item .textarea::placeholder {
    color: #ddd;
    opacity: 1;
    font-weight: 400;
}
.cmn_form_item .checkbox {
    display: flex;
    align-items: center;
    margin-top: -0.25em;
    min-height: 3em;
    height: auto;
}
@media (max-width: 840px) {
    .cmn_form_item .checkbox {
        min-height: 2.5em;
    }
}
.cmn_form_item .checkbox_list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.15em 1.25em;
}
.cmn_form_item .checkbox_item {
    position: relative;
    display: flex;
}
.cmn_form_item .checkbox_item input[type=checkbox] {
    width: 0;
    visibility: hidden;
}
.cmn_form_item .checkbox_item input[type=checkbox]:checked + label::after {
    opacity: 1;
    scale: 1;
}
.cmn_form_item .checkbox_item label {
    position: relative;
    cursor: pointer;
    padding: 0 1em 0 1.75em;
}
.cmn_form_item .checkbox_item label::before {
    border: 0.15em solid #ddd;
    border-radius: 5px;
    content: "";
    display: block;
    height: 0.85em;
    width: 0.85em;
    left: 0;
    position: absolute;
    top: 50%;
    translate: 0 -45%;
}
.cmn_form_item .checkbox_item label::after {
    border-right: 3px solid #303030;
    border-bottom: 3px solid #303030;
    content: "";
    display: block;
    height: 0.75em;
    width: 0.45em;
    position: absolute;
    top: 50%;
    left: 0.35em;
    translate: 0 -75%;
    opacity: 0;
    rotate: 45deg;
    scale: 0.7;
    opacity: 0;
    transition: 0.35s scale, 0.5s opacity;
}
.cmn_form_item .address {
    min-height: 3em;
    height: auto;
}
.cmn_form_item .address .num {
    display: flex;
    align-items: center;
    gap: 0 0.5em;
    margin-bottom: 10px;
}
.cmn_form_item .address .num input {
    padding: 0.5em;
    outline: none;
    border-radius: min(5vw, 10px);
    border: 0.15em solid #ddd;
    width: 200px;
}
.cmn_form_item .address .textarea {
    resize: vertical;
    padding: 0.5em;
    border-radius: min(5vw, 10px);
    border: 0.15em solid #ddd;
    outline: none;
    height: auto;
    width: 100%;
    margin-bottom: -5px;
}
.cmn_form_agree {
    margin-top: 1.5em;
}
.cmn_form_agree .agree_check {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.cmn_form_agree .agree_check input[type=checkbox] {
    width: 0;
    visibility: hidden;
}
.cmn_form_agree .agree_check input[type=checkbox]:checked + label::after {
    opacity: 1;
    scale: 1;
}
.cmn_form_agree .agree_check label {
    position: relative;
    cursor: pointer;
    padding: 0 1em 0 1.75em;
}
.cmn_form_agree .agree_check label::before {
    border: 0.15em solid #ddd;
    border-radius: 5px;
    content: "";
    display: block;
    height: 0.85em;
    width: 0.85em;
    left: 0;
    position: absolute;
    top: 50%;
    translate: 0 -45%;
}
.cmn_form_agree .agree_check label::after {
    border-right: 3px solid #303030;
    border-bottom: 3px solid #303030;
    content: "";
    display: block;
    height: 0.75em;
    width: 0.45em;
    position: absolute;
    top: 50%;
    left: 0.35em;
    translate: 0 -75%;
    opacity: 0;
    rotate: 45deg;
    scale: 0.7;
    opacity: 0;
    transition: 0.35s scale, 0.5s opacity;
}
.cmn_form_agree .agree_link {
    display: inline-block;
    position: relative;
    color: #008ED3;
}
.cmn_form_agree .agree_link::after {
    content: "";
    position: absolute;
    bottom: -0.15em;
    left: 0;
    width: 100%;
    height: 0.1em;
    background-color: #008ED3;
}
.cmn_form_btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 0.5em;
    max-width: 100%;
    border: none;
    border-radius: 50px;
    text-align: center;
    transition: color 0.5s, background-color 0.5s;
    font-size: 1.25em;
    padding: 1em 1.5em;
    width: 360px;
    margin: 2em auto 0;
    background: #fafafa;
}
@media (max-width: 540px) {
    .cmn_form_btn {
        width: 90%;
    }
}
.cmn_form_btn span {
    line-height: 1.45;
}
.cmn_form_btn::after {
    font-family: "icomoon";
    content: "\f0142";
    position: absolute;
    transition: all 0.5s;
    top: 50%;
    right: 1em;
    translate: 0 -50%;
    opacity: 0;
    transition: opacity 0.5s, right 0.5s;
}
.cmn_form_btn.-active {
    background-color: #303030;
    color: #fff;
}
.cmn_form_btn.-active::after {
    opacity: 1;
}
.cmn_form_btn.-active:hover::after {
    right: 0.5em;
}
.cmn_nopost {
    display: block;
    text-align: center;
}
.cmn_pagenation {
    padding: 30px 0 0;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5em 1.5em;
}
.cmn_pagenation .page-numbers {
    display: inline-block;
    display: flex;
    font-size: 1.15em;
    align-items: center;
    justify-content: center;
    background-color: transparent;
}
.cmn_pagenation .page-numbers.current {
    color: #EAB308;
}
.cmn_pagenation .page-numbers.dots {
    pointer-events: none;
}
.cmn_pagenation .page-numbers:hover {
    color: #EAB308;
}
.cmn_pagenation .prev,
.cmn_pagenation .next {
    width: 2em;
    height: 1.25em;
    translate: 0 0.05em;
    background-color: #303030;
    border-radius: 30px;
    position: relative;
    transition: background-color 0.5s, border 0.5s;
}
.cmn_pagenation .prev::before,
.cmn_pagenation .next::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: 50%;
    height: 50%;
    background-color: #fff;
    -webkit-mask-image: url(../img/cmn/arrow.svg);
    mask-image: url(../img/cmn/arrow.svg);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    z-index: 10;
    transition: background-color 0.5s, left 0.5s;
}
.cmn_pagenation .prev::before {
    rotate: 180deg;
}
.cmn_pagenation .prev:hover::before {
    left: 40%;
}
.cmn_pagenation .next:hover::before {
    left: 60%;
}

.mailphp {
    max-width: 1024px;
    margin: 0 auto;
}
.mailphp p {
    margin: 1em 0;
}
.mailphp .mailphp-header {
    text-align: center;
}
.mailphp .mailphp-header .mailphp-header-inner {
    font-weight: 900;
    font-size: 2.4rem;
    margin: 0px;
    color: #aaa;
    border: none;
}
.mailphp .mailphp-header .mailphp-header-title {
    margin-bottom: 1.25em;
    position: relative;
    display: block;
    text-align: center;
    font-size: clamp(2rem, 3.2vw, 2.4rem);
    color: #000;
}
.mailphp .mailphp-main {
    flex-grow: 1;
    margin: 3em 0;
    margin: 10px 0px 30px;
}
.mailphp .mailphp-main .mailphp-main-inner p {
    text-align: center;
}
.mailphp .mailphp-footer {
    margin-bottom: 0px;
}
.mailphp .confirm-items,
.mailphp .error-items {
    margin: 1.5em 0;
}
.mailphp .confirm-items .confirm-item,
.mailphp .confirm-items .error-item,
.mailphp .error-items .confirm-item,
.mailphp .error-items .error-item {
    display: flex;
    margin-bottom: 1px;
}
.mailphp .confirm-items .confirm-item-body,
.mailphp .confirm-items .error-item-body,
.mailphp .error-items .confirm-item-body,
.mailphp .error-items .error-item-body {
    flex: 1;
}

.mailphp-header-title {
    font-size: calc(clamp(2rem, 3.2vw, 2.4rem) * 1.25);
    text-align: center;
    display: block;
    color: #303030;
    margin-bottom: 1em;
    font-weight: 500;
}
.mailphp-header-txt {
    inline-size: -webkit-fit-content;
    inline-size: -moz-fit-content;
    inline-size: fit-content;
    margin-inline: auto;
}

.confirm_custom {
    margin-top: 0;
    position: relative;
    padding: calc(clamp(40px, 6vw, 75px) * 2 + 100px) 5% calc(clamp(40px, 6vw, 75px) * 2 + min(10vw, 100px));
}
@media screen and (max-width: 940px) {
    .confirm_custom {
        padding-top: calc(clamp(40px, 6vw, 75px) * 2 + 50px);
    }
}
.confirm_custom_inner {
    max-width: 1024px;
    margin: 0 auto;
    border-radius: min(5vw, 30px);
    background-color: #fff;
    padding: clamp(40px, 6vw, 75px) min(5%, 75px);
}

.confirm-items {
    width: 100%;
    margin-top: 30px;
}
.confirm-items tbody {
    width: 100%;
    border-top: 1px solid #ECECE4;
}
.confirm-items tbody tr {
    display: flex;
    flex-wrap: wrap;
}
.confirm-items tbody tr th {
    display: block;
    width: 230px;
    font-weight: 500;
    text-align: left;
    border-bottom: 1px solid #ECECE4;
    padding: 1.25em 0;
}
@media screen and (max-width: 840px) {
    .confirm-items tbody tr th {
        width: 100%;
        border-bottom: none;
        padding: 1.25em 0 1.5px;
    }
}
.confirm-items tbody tr td {
    display: block;
    width: calc(100% - 230px);
    text-align: left;
    border-bottom: 1px solid #ECECE4;
    padding: 1.25em 0 1.25em 1em;
}
@media screen and (max-width: 840px) {
    .confirm-items tbody tr td {
        width: 100%;
        padding-left: 0px;
        padding: 0 0 1.25em;
    }
}

.error-items .error-item {
    border-radius: 5px;
    padding: 1em;
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
}
.error-items .error-item:not(:last-child) {
    margin-bottom: 5px;
}
.error-items .error-item-label {
    display: block;
    width: 150px;
}
@media screen and (max-width: 840px) {
    .error-items .error-item-label {
        width: 100%;
    }
}
.error-items .error-item-body {
    display: block;
    width: calc(100% - 150px);
    padding-left: 1em;
    word-break: break-all;
    color: #c40000;
}
@media screen and (max-width: 840px) {
    .error-items .error-item-body {
        width: 100%;
        padding-left: 0px;
    }
}

.confirm-btns {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}
.confirm-btns .confirm-btn.confirm-btn-submit {
    border: none;
    padding: 0.5em 1.5em;
    width: 360px;
    max-width: 90%;
    margin: 2.5em auto 20px;
    background-color: #303030;
    color: #fff;
    border-radius: 50px;
    font-size: clamp(2rem, 3.2vw, 2.4rem);
}
.confirm-btns .confirm-btn.confirm-btn-submit:hover {
    opacity: 0.7;
}
.confirm-btns .confirm-btn.confirm-btn-back {
    font-size: 1.6rem;
    width: 180px;
    max-width: 80%;
    margin: 10px auto 0px;
    background-color: #aaa;
    color: #fff;
    border: none;
    padding: 0.5em 1.5em;
    transition: 0.5s opacity;
    border-radius: 50px;
}
.confirm-btns .confirm-btn.confirm-btn-back:hover {
    opacity: 0.7;
}

.error_messe {
    margin-top: 30px;
    text-align: center;
}