@charset "UTF-8";
/*============================================================================================================
	base
============================================================================================================*/
div,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
dl,
dt,
dd,
th,
td,
section,
article,
header,
footer,
main,
nav,
span,
a,
*::before,
*::after {
    box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}
@media screen and (max-width: 767px) {
    img {
        width: 100%;
    }
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
th,
td,
dt,
dd {
    margin: 0;
    word-wrap: break-word;
}

table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

th,
td {
    text-align: left;
    font-weight: normal;
    vertical-align: top;
}

ul,
ol,
dl {
    padding: 0;
    margin: 0;
}

li {
    list-style: none;
}

/*------------------------------------------
	root
------------------------------------------*/
:root {
    --inner-padding: 10px;
    --inner-width: 1000px;
    --header-height: 140px;
    --cv-width: 100px;
    --cv-height: 600px;
    --font-size-base: 15px;
    --line-height-base: 2;
    --line-height-head: 1.5;
    --letter-spacing: 0.05em;
    --font-family-base:
        "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "ヒラギノ角ゴ ProN W3",
        "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック",
        "Yu Gothic", "メイリオ", Meiryo, sans-serif;
    --fonf-family-en: Arial, sans-serif;
    --color-txt: #000;
    --color-orange: #ff5400;
    --color-border: #ccc;
}
@media screen and (min-width: 768px) {
    :root {
        --body-min-width: 1000px;
    }
}
@media screen and (max-width: 1100px) {
    :root {
        --cv-width: 80px;
    }
}
@media screen and (max-width: 767px) {
    :root {
        --inner-padding: 20px;
        --header-height: 65px;
        --cv-width: 100%;
        --cv-height: 60px;
        --font-size-base: 12px;
    }
}

/*------------------------------------------
	utility
------------------------------------------*/
@media screen and (min-width: 768px) {
    .u-sp {
        display: none !important;
    }
}
@media screen and (max-width: 767px) {
    .u-pc {
        display: none !important;
    }
}
@media screen and (min-width: 375px) {
    .u-sp-small {
        display: none !important;
    }
}

/* .u-flex {
  display: flex !important;
  align-items: center;
} */

.u-fd {
  flex-direction: column;
  align-items: flex-start;
}
/*------------------------------------------
	font
------------------------------------------*/
body {
    color: var(--color-txt);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-family: var(--font-family-base);
    -webkit-text-size-adjust: 100%;
}

* {
    letter-spacing: var(--letter-spacing);
}

a {
    letter-spacing: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: var(--line-height-head);
}

.f-en {
    font-family: var(--fonf-family-en);
    letter-spacing: 0;
}

/*------------------------------------------
	frame / smooth scroll
------------------------------------------*/
html {
    scroll-behavior: smooth;
}
@media screen and (max-width: 767px) {
    html {
        scroll-padding-top: var(--header-height);
    }
}

@media screen and (min-width: 768px) {
    body {
        min-width: var(--body-min-width);
    }
}

/*------------------------------------------
	hover
------------------------------------------*/
@media (hover: hover) {
    a {
        transition: all 0.3s;
    }
    a:hover {
        opacity: 0.7;
    }
}
/*============================================================================================================
	component
============================================================================================================*/
/*------------------------------------------
	inner
------------------------------------------*/
.c-inner01 {
    width: 100%;
    max-width: calc(var(--inner-width) + var(--inner-padding) * 2);
    margin-inline: auto;
    padding-inline: var(--inner-padding);
}
@media screen and (max-width: 1100px) and (min-width: 768px) {
    .c-inner01 {
        padding-right: calc(var(--inner-padding) + var(--cv-width));
    }
}

.c-inner02 {
  max-width: ;
}

/*------------------------------------------
	tit
------------------------------------------*/
/*	.c-tit01
------------------------------------------*/
.c-tit01 {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
}
.c-tit01__en {
    order: -1;
    font-size: 56px;
    line-height: 1.1;
    letter-spacing: 0;
    font-family: var(--fonf-family-en);
}
.c-tit01__en::first-letter {
    color: var(--color-orange);
}
@media screen and (max-width: 767px) {
    .c-tit01 {
        gap: 2px;
        font-size: 16px;
    }
    .c-tit01__en {
        font-size: 36px;
    }
}

/*	.c-tit02
------------------------------------------*/
.c-tit02 {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 10px 25px;
    padding-bottom: 22px;
    border-bottom: 4px solid;
    font-weight: 700;
    font-size: 15px;
}
.c-tit02__en {
    order: -1;
    margin-bottom: -4px;
    font-size: 34px;
    line-height: 1.1;
    letter-spacing: 0;
    font-family: var(--fonf-family-en);
}
@media screen and (max-width: 767px) {
    .c-tit02 {
        gap: 10px 15px;
        padding-bottom: 9px;
        border-width: 3px;
        font-size: 12px;
    }
    .c-tit02__en {
        margin-bottom: -3px;
        font-size: 23px;
    }
}

/*------------------------------------------
	archive
------------------------------------------*/
/*	.c-archive01
------------------------------------------*/
.c-archive01 {
    counter-reset: number;
    display: flex;
    flex-wrap: wrap;
}
.c-archive01-imgBox {
    margin-bottom: 12px;
}
.c-archive01-imgBox img {
    width: 100%;
}
.c-archive01-txtBox {
    padding-left: 60px;
    position: relative;
}
.c-archive01-txtBox::after {
    counter-increment: number;
    content: counter(number, decimal-leading-zero);
    display: block;
    width: 48px;
    height: calc(100% - 5px);
    padding-top: 8px;
    border-right: 2px dashed;
    font-weight: 700;
    font-size: 34px;
    line-height: 1;
    font-family: var(--fonf-family-en);
    position: absolute;
    top: 5px;
    left: 0;
}
.c-archive01__tit {
    margin-bottom: 7px;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.4;
}
.c-archive01__txt {
    font-size: 14px;
    line-height: 1.4;
}
@media screen and (min-width: 768px) {
    .c-archive01 {
        --gap01: 50px;
        --gap02: 40px;
        gap: 40px 0;
    }
    .c-archive01__item {
        width: calc((100% - var(--gap01) * 2) / 3);
        margin-right: var(--gap01);
    }
    .c-archive01__item:nth-of-type(1),
    .c-archive01__item:nth-of-type(2) {
        width: calc(50% - var(--gap02) / 2);
    }
    .c-archive01__item:nth-of-type(1) {
        margin-right: var(--gap02);
    }
    .c-archive01__item:nth-of-type(2),
    .c-archive01__item:nth-of-type(3n - 1) {
        margin-right: 0;
    }
}
@media screen and (max-width: 767px) {
    .c-archive01 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 15px 20px;
    }
    .c-archive01-imgBox {
        margin-bottom: 8px;
    }
    .c-archive01-txtBox {
        padding: 38px 0 0;
    }
    .c-archive01-txtBox::after {
        width: auto;
        height: auto;
        padding: 0 0 6px;
        border-right: none;
        border-bottom: 2px dashed;
        font-size: 24px;
        top: 0;
    }
    .c-archive01__tit {
        margin-bottom: 3px;
        font-size: 14px;
    }
    .c-archive01__txt {
        font-size: 11px;
    }
}

/*------------------------------------------
	table
------------------------------------------*/
/*	.c-table01
------------------------------------------*/
.c-table01 tr {
    border-bottom: 1px solid var(--color-border);
}
.c-table01 th,
.c-table01 td {
    padding-block: 15px;
    vertical-align: top;
    text-align: left;
}
.c-table01 th {
    width: 145px;
    padding-left: 10px;
    font-weight: 700;
}
.c-table01 td {
    padding-left: 10px;
}
@media screen and (max-width: 767px) {
    .c-table01 th,
    .c-table01 td {
        width: 100%;
        display: block;
        padding-left: 0;
    }
    .c-table01 th {
        padding-block: 8px 0;
    }
    .c-table01 td {
        padding-block: 0 8px;
    }
}

/*============================================================================================================
	.l-header
============================================================================================================*/
.l-header {
    width: 100%;
    height: var(--header-height);
    background: #fff;
    position: relative;
    z-index: 9990;
}
.l-header-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-block: 7px 0;
    position: relative;
}
.l-header__logo {
    width: 323px;
    margin-bottom: 15px;
}
.l-header__logo img {
    width: 100%;
    display: block;
}
.l-header__txt {
    order: -1;
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 11px;
    line-height: 1.5;
}
.l-header__recruiting {
    width: 140px;
    height: calc(var(--header-height) + 24px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 10px;
    background: var(--color-orange);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 50% calc(100% - 14px), 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% calc(100% - 14px), 0 100%);
    color: #fff;
    font-weight: 700;
    text-align: center;
    position: absolute;
    top: 0;
    right: 10px;
}
.l-header__recruiting .txt01 {
    font-size: 20px;
    line-height: 1.1;
}
.l-header__recruiting .txt01 .en {
    font-size: 30px;
    letter-spacing: 0.05em;
}
.l-header__recruiting .txt02 {
    margin-top: 10px;
    padding-top: 10px;
    display: block;
    font-size: 12px;
    line-height: 1.5;
    position: relative;
}
.l-header__recruiting .txt02::after {
    content: "";
    display: block;
    width: 25px;
    height: 3px;
    border-top: 2px dashed;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
}
@media screen and (max-width: 1100px) {
    .l-header-inner {
        padding-right: var(--inner-padding);
    }
}
@media screen and (max-width: 767px) {
    .l-header {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        left: 0;
    }
    .l-header-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 calc(var(--header-height) + 10px) 0 20px;
    }
    .l-header__logo {
        width: 225px;
        margin-bottom: 0;
    }
}

/*	.l-header-cv
------------------------------------------*/
.l-header-cv {
    width: var(--cv-width);
    height: var(--cv-height);
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 9992;
}
.l-header-cv__btn {
    width: 100%;
    color: #fff;
    font-weight: 700;
}
.l-header-cv__btn a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 5px solid rgba(0, 0, 0, 0.8);
    border-right: none;
    position: relative;
}
.l-header-cv__btn a::before {
    content: "";
    display: block;
    margin-bottom: 12px;
    background: no-repeat center/contain;
}
.l-header-cv__btn.is-mail {
    font-size: 24px;
}
.l-header-cv__btn.is-mail a {
    background: rgba(18, 21, 108, 0.8);
}
.l-header-cv__btn.is-mail a::before {
    width: 30px;
    aspect-ratio: 60/47;
    background-image: url(../img/common/ico_mail01.png);
}
.l-header-cv__btn.is-tel {
    font-size: 28px;
    letter-spacing: 0.05em;
    line-height: 1.5;
}
.l-header-cv__btn.is-tel a {
    background: rgba(240, 80, 1, 0.8);
}
.l-header-cv__btn.is-tel a::before {
    width: 28px;
    aspect-ratio: 57/57;
    background-image: url(../img/common/ico_tel01.png);
}
@media screen and (max-width: 1100px) {
    .l-header-cv__btn.is-tel {
        font-size: 25px;
    }
}
@media screen and (min-width: 768px) {
    .l-header-cv__btn.is-mail,
    .l-header-cv__btn.is-tel .hyphen {
        writing-mode: vertical-rl;
    }
    .l-header-cv__btn.is-mail {
        height: 340px;
    }
    .l-header-cv__btn.is-tel {
        height: 250px;
    }
    .l-header-cv__btn.is-tel a {
        flex-direction: column;
    }
}
@media (hover: hover) {
    .l-header-cv__btn a:hover {
        opacity: 1;
        border-color: #000;
    }
    .l-header-cv__btn.is-mail a:hover {
        background: #12156c;
    }
    .l-header-cv__btn.is-tel a:hover {
        background: #f05001;
    }
}
@media screen and (max-width: 767px) {
    .l-header-cv {
        flex-direction: row;
        top: auto;
    }
    .l-header-cv__btn {
        flex: 1;
    }
    .l-header-cv__btn a {
        border-width: 3px;
    }
    .l-header-cv__btn a::before {
        margin: 0 10px 0 0;
    }
    .l-header-cv__btn.is-mail {
        font-size: 14px;
    }
    .l-header-cv__btn.is-mail a::before {
        width: 15px;
    }
    .l-header-cv__btn.is-tel {
        font-size: 18px;
    }
    .l-header-cv__btn.is-tel a {
        border-right: 3px solid rgba(0, 0, 0, 0.8);
    }
    .l-header-cv__btn.is-tel a::before {
        width: 14px;
    }
}

/*============================================================================================================
	.l-nav
============================================================================================================*/
/*	pc
------------------------------------------*/
@media screen and (min-width: 768px) {
    .l-nav {
        display: block !important;
        opacity: 1 !important;
        width: calc(100% - 160px);
    }
    .l-nav-list {
        display: flex;
        align-items: center;
    }
    .l-nav-list__item {
        flex: 1;
        font-weight: 700;
        font-size: 14px;
        text-align: center;
        line-height: 1.5;
        position: relative;
    }
    .l-nav-list__item:first-of-type::before,
    .l-nav-list__item::after {
        content: "";
        display: block;
        width: 1px;
        height: 90%;
        border-right: 1px dashed;
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto;
    }
    .l-nav-list__item:first-of-type::before {
        left: 0;
    }
    .l-nav-list__item::after {
        right: 0;
    }
    .l-nav-list__item a {
        display: block;
        padding: 0 5px;
    }
    .l-nav-list__item a:hover {
        opacity: 1;
        color: var(--color-orange);
    }
}

/*	sp
------------------------------------------*/
@media screen and (max-width: 767px) {
    .l-nav {
        display: none;
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100% - var(--header-height));
        z-index: 9991;
    }
    .l-nav-inner {
        width: 100%;
        max-height: calc(100% - var(--cv-height));
        padding: 20px 40px 60px;
        background: rgba(1, 1, 1, 0.8);
        position: relative;
        z-index: 2;
        overflow: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .l-nav-inner::-webkit-scrollbar {
        display: none;
    }
    .l-nav-list__item {
        color: #fff;
        font-weight: 500;
        font-size: 15px;
        text-align: center;
        line-height: 1.5;
    }
    .l-nav-list__item + .l-nav-list__item {
        border-top: 1px dashed;
    }
    .l-nav-list__item a {
        min-height: 55px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .l-nav-list__item.is-entry {
        border-top: none;
    }
    .l-nav-list__item.is-entry a {
        background: var(--color-orange);
    }
    .l-nav-overlay {
        cursor: pointer;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: calc(100% - var(--header-height));
        z-index: 1;
        background: rgba(0, 0, 0, 0.5);
    }
}

.l-navBtn {
    --size: var(--header-height);
    overflow: hidden;
    cursor: pointer;
    position: fixed;
    top: 0;
    right: 0;
    width: var(--size);
    height: var(--size);
    background: var(--color-orange);
    text-align: center;
    z-index: 9992;
    transition: all 0.5s;
}
.l-navBtn span {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    width: 30px;
    height: 1px;
    margin: auto;
    background: #fff;
    transition: all 0.3s;
}
.l-navBtn span:nth-of-type(1) {
    top: 18px;
}
.l-navBtn span:nth-of-type(2) {
    top: 26px;
}
.l-navBtn span:nth-of-type(3) {
    top: 34px;
}
.l-navBtn::after {
    content: "MENU";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 3px;
    margin: auto;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
}
.l-navBtn.is-close span:nth-of-type(1) {
    transform: translateY(8px) rotate(-200deg);
}
.l-navBtn.is-close span:nth-of-type(2) {
    left: 50%;
    opacity: 0;
}
.l-navBtn.is-close span:nth-of-type(3) {
    transform: translateY(-8px) rotate(200deg);
}
.l-navBtn.is-close::after {
    content: "CLOSE";
}

/*============================================================================================================
	.l-footer
============================================================================================================*/
.l-footer {
    margin-top: 160px;
    padding-block: 35px;
    background: #000;
    color: #fff;
    position: relative;
}
.l-footer::after {
    content: "";
    display: block;
    width: 100%;
    height: 181px;
    background: url(../img/common/bg_town01.svg) repeat-x left top/auto 100%;
    position: absolute;
    left: 0;
    bottom: calc(100% - 20px);
    z-index: -1;
    pointer-events: none;
}
.l-footer-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    grid-gap: 50px;
}
.l-footer-infoBox {
    grid-row: span 2;
    margin-top: 5px;
}
.l-footer-infoBox__logo {
    width: 230px;
    margin-bottom: 13px;
}
.l-footer-infoBox__logo img {
    display: block;
    width: 100%;
}
.l-footer-infoBox__txt {
    font-weight: 700;
    font-size: 12px;
}
.l-footer-nav {
    align-self: start;
    width: max-content;
    margin-inline: auto 15px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.l-footer-nav__item {
    font-weight: 700;
    font-size: 14px;
    line-height: 1.5;
}
.l-footer-nav__item a {
    display: block;
    padding-inline: 6px;
}
.l-footer__copyright {
    align-self: end;
    font-size: 12px;
    text-align: right;
}
@media (hover: hover) {
    .l-footer-nav__item a:hover {
        opacity: 1;
        text-decoration: underline;
    }
}
@media screen and (max-width: 767px) {
    .l-footer {
        margin-top: 80px;
        padding-block: 50px calc(var(--cv-height) + 30px);
    }
    .l-footer::after {
        height: 90px;
        bottom: calc(100% - 10px);
    }
    .l-footer-inner {
        display: block;
    }
    .l-footer-infoBox {
        margin: 0 auto 35px;
    }
    .l-footer-infoBox__logo {
        width: min(100%, 250px);
        margin: 0 auto 15px;
    }
    .l-footer-infoBox__txt {
        font-size: 11px;
        text-align: center;
        line-height: 1.8;
    }
    .l-footer-nav {
        width: calc(100% - 40px);
        margin: 0 auto 30px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 10px 20px;
    }
    .l-footer-nav__item {
        font-size: 12px;
    }
    .l-footer-nav__item a {
        padding: 0;
    }
    .l-footer__copyright {
        font-size: 10px;
        text-align: center;
    }
}

/*============================================================================================================
	.l-container (common)
============================================================================================================*/
/*==========================================
	.l-main
==========================================*/
/*============================================================================================================
	page
============================================================================================================*/
/*	home
============================================================================================================*/
/*------------------------------------------
	.homeMv
------------------------------------------*/
.homeMv {
    height: 520px;
    position: relative;
}
.homeMv-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 50px;
    gap: 80px;
    position: relative;
    z-index: 2;
}
.homeMv__tit {
    color: #fff;
    font-weight: 700;
    font-size: 72px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    text-align: center;
}
.homeMv-topic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
}
.homeMv-topic__item a {
    overflow: hidden;
    display: block;
    height: 100%;
    padding: 9px;
    background: #fff;
}
.homeMv-topic-imgBox {
    overflow: hidden;
    margin-bottom: 5px;
    position: relative;
}
.homeMv-topic-imgBox::after {
    content: "";
    display: block;
    width: 30px;
    aspect-ratio: 1/1;
    background: var(--color-orange) url(../img/common/ico_arrow01.png) no-repeat right 4px bottom
        4px/28%;
    position: absolute;
    bottom: 0;
    right: 0;
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    z-index: 2;
}
.homeMv-topic-imgBox img {
    width: 100%;
    transition: all 0.5s;
}
.homeMv-topic__tit {
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    line-height: 1.2;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    z-index: 3;
    transform: translateY(-50%);
}
.homeMv-topic__tit .en {
    display: block;
    font-size: 2em;
}
.homeMv-topic__txt {
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0;
}
.homeMv-slider {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.homeMv-slider .splide {
    opacity: 0;
    transition: opacity 0.5s;
    height: 100%;
}
.homeMv-slider .splide.is-initialized {
    opacity: 1;
}
.homeMv-slider .splide .splide__track {
    height: 100%;
}
.homeMv-slider .splide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (hover: hover) {
    .homeMv-topic__item a:hover {
        opacity: 1;
        color: var(--color-orange);
    }
    .homeMv-topic__item a:hover .homeMv-topic-imgBox img {
        filter: brightness(0.8);
        transform: scale(1.1);
    }
}
@media screen and (max-width: 767px) {
    .homeMv {
        height: auto;
    }
    .homeMv-inner {
        height: auto;
        display: block;
        padding: 0;
    }
    .homeMv__tit {
        width: 100%;
        aspect-ratio: 750/460;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 10vw;
        text-shadow: 0 0 1.5vw rgba(0, 0, 0, 0.5);
    }
    .homeMv-topic {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 0;
    }
    .homeMv-topic__item {
        border-bottom: 1px solid var(--color-border);
    }
    .homeMv-topic__item:nth-of-type(odd) {
        border-right: 1px solid var(--color-border);
    }
    .homeMv-topic__item a {
        padding: 9px 9px 7px;
    }
    .homeMv-topic-imgBox::after {
        width: 15%;
    }
    .homeMv-topic__tit {
        padding-top: 4%;
        font-size: 2.5vw;
        line-height: 5vw;
        text-shadow: 0 0 1.5vw rgba(0, 0, 0, 0.5);
    }
    .homeMv-topic__tit .en {
        font-size: 1.8em;
    }
    .homeMv-topic__txt {
        font-size: max(10px, 2.6vw);
    }
    .homeMv-slider {
        height: auto;
        aspect-ratio: 750/460;
    }
}

/*------------------------------------------
	.homeWorks
------------------------------------------*/
.homeWorks {
    padding-block: 70px 80px;
    background:
        url(../img/home/bg_works01.png) no-repeat left min(0px, 50% - 325px) top,
        url(../img/home/bg_works02.png) no-repeat right min(0px, 50% - 445px) top 30.5%,
        url(../img/home/bg_works03.png) no-repeat left min(0px, 50% - 380px) top 85.5%;
}
.homeWorks__secTit {
    margin-bottom: 30px;
}
.homeWorks-sec + .homeWorks-sec {
    margin-top: 70px;
}
.homeWorks-sec__tit {
    margin-bottom: 12px;
}
.homeWorks-sec__lead {
    margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
    .homeWorks {
        padding-block: 60px 70px;
        background-position:
            left -100px top,
            right -60px top 29%,
            left -65px top 81%;
        background-size: 350px, 270px, 335px;
    }
    .homeWorks__secTit {
        margin-bottom: 40px;
    }
    .homeWorks-sec + .homeWorks-sec {
        margin-top: 45px;
    }
    .homeWorks-sec__lead {
        margin-bottom: 15px;
    }
}

/*------------------------------------------
	.homeProfile
------------------------------------------*/
.homeProfile {
    margin-bottom: 65px;
    padding-block: 70px 80px;
    background:
        url(../img/home/bg_profile01.png) no-repeat left min(0px, 50% - 365px) top 25px,
        url(../img/common/bg_check01.png) center top/24px;
}
.homeProfile__secTit {
    margin-bottom: 40px;
}
.homeProfile-sec {
    padding: 28px 40px 40px;
    background: #fff;
}
.homeProfile-sec + .homeProfile-sec {
    margin-top: 40px;
}
.homeProfile-sec__tit {
    margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
    .homeProfile {
        padding-block: 60px 70px;
        background-size: 300px, 12px;
        background-position:
            left top 30px,
            center top;
    }
    .homeProfile__secTit {
        margin-bottom: 20px;
    }
    .homeProfile-sec {
        padding: 20px;
    }
    .homeProfile-sec + .homeProfile-sec {
        margin-top: 20px;
    }
}

/*	.homeProfile-message
------------------------------------------*/
.homeProfile-message-imgBox {
    width: 200px;
}
.homeProfile-message-imgBox img {
    width: 100%;
}
.homeProfile-message__name {
    width: 200px;
    margin: 7px 0 0 auto;
}
.homeProfile-message__name img {
    width: 100%;
}
@media screen and (min-width: 768px) {
    .homeProfile-message {
        display: flex;
        justify-content: space-between;
        align-items: start;
        gap: 0 20px;
        flex-wrap: wrap;
    }
    .homeProfile-message__tit {
        width: 100%;
    }
    .homeProfile-message-txtBox {
        flex: 1;
    }
}
@media screen and (max-width: 767px) {
    .homeProfile-message-imgBox {
        width: min(100%, 150px);
        margin: 0 auto 10px;
    }
    .homeProfile-message__name {
        width: min(100%, 180px);
        margin-top: 10px;
    }
}

/*	.homeProfile-manifest
------------------------------------------*/
.homeProfile-manifest-imgBox {
    width: 290px;
}
.homeProfile-manifest-imgBox img {
    width: 100%;
}
@media screen and (min-width: 768px) {
    .homeProfile-manifest {
        display: flex;
        justify-content: space-between;
        align-items: start;
        gap: 0 20px;
        flex-wrap: wrap;
    }
    .homeProfile-manifest__tit {
        width: 100%;
        margin-bottom: 15px;
    }
    .homeProfile-manifest__txt {
        flex: 1;
    }
    .homeProfile-manifest-imgBox {
        order: 3;
        margin-top: 10px;
    }
}
@media screen and (max-width: 767px) {
    .homeProfile-manifest-imgBox {
        width: min(100%, 216px);
        margin: 0 auto 15px;
    }
}

/*	.homeProfile-outline
------------------------------------------*/
.homeProfile-outline__tit {
    margin-bottom: 10px;
}
.homeProfile-outline-data__btn {
    display: inline-block;
    width: fit-content;
    margin-left: 10px;
    color: #fff;
    font-size: 13px;
}
.homeProfile-outline-data__btn a {
    height: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 5px;
    border: 1px solid var(--color-orange);
    background: var(--color-orange);
}
@media (hover: hover) {
    .homeProfile-outline-data__btn a:hover {
        opacity: 1;
        background: #fff;
        color: var(--color-orange);
    }
}
@media screen and (max-width: 767px) {
    .homeProfile-outline-data__btn {
        display: block;
        width: 100%;
        margin: 5px auto 10px;
        font-size: 14px;
    }
    .homeProfile-outline-data__btn a {
        height: 28px;
    }
}

/*	.homeProfile-access
------------------------------------------*/
.homeProfile-access-mapBox {
    height: 400px;
    margin-bottom: 20px;
}
.homeProfile-access-mapBox iframe {
    display: block;
    width: 100%;
    height: 100%;
}
.homeProfile-access-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.homeProfile-access-info__item {
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (min-width: 768px) {
    .homeProfile-access-info {
        border: 1px solid var(--color-border);
    }
    .homeProfile-access-info__item + .homeProfile-access-info__item {
        border-left: 1px solid var(--color-border);
    }
}
@media screen and (max-width: 767px) {
    .homeProfile-access-mapBox {
        height: 230px;
    }
    .homeProfile-access-info {
        grid-template-columns: 1fr;
        grid-gap: 10px;
    }
    .homeProfile-access-info__item {
        height: 35px;
        border: 1px solid var(--color-border);
    }
    .homeProfile-access-info__item a {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .homeProfile-access-info__item.is-tel,
    .homeProfile-access-info__item.is-mail {
        border: none;
        color: #fff;
        font-size: 14px;
    }
    .homeProfile-access-info__item.is-tel a {
        background: var(--color-orange);
    }
    .homeProfile-access-info__item.is-mail a {
        background: #010101;
    }
}

/*------------------------------------------
	.homeRecruit
------------------------------------------*/
.homeRecruit {
    padding-block: 0 90px;
}
.homeRecruit__secTit {
    margin-bottom: 40px;
}
.homeRecruit__catch {
    --cutSize: 20px;
    width: fit-content;
    margin: 0 auto 40px;
    padding: 12px 55px;
    background: var(--color-orange);
    color: #fff;
    font-weight: 700;
    font-size: 36px;
    text-align: center;
    line-height: 1.5;
    -webkit-clip-path: polygon(
        0 0,
        100% 0,
        calc(100% - var(--cutSize)) 50%,
        100% 100%,
        0 100%,
        var(--cutSize) 50%
    );
    clip-path: polygon(
        0 0,
        100% 0,
        calc(100% - var(--cutSize)) 50%,
        100% 100%,
        0 100%,
        var(--cutSize) 50%
    );
}
.homeRecruit-box {
    --imgSize: 38%;
    display: grid;
    grid-template-columns: var(--imgSize) 1fr;
    align-items: start;
    grid-gap: 50px;
}
.homeRecruit-box + .homeRecruit-box {
    margin-top: 50px;
}
.homeRecruit-box-imgBox {
    border: 5px solid #000;
    position: relative;
}
.homeRecruit-box-imgBox::after {
    content: "";
    display: block;
    width: calc(100% + 5px);
    height: calc(100% + 5px);
    background: url(../img/common/bg_stripe01.png) repeat left top/8px;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: -1;
    pointer-events: none;
}
.homeRecruit-box-imgBox img {
    width: 100%;
}
@media screen and (min-width: 768px) {
    .homeRecruit-box:nth-of-type(even) {
        grid-template-columns: 1fr var(--imgSize);
    }
    .homeRecruit-box:nth-of-type(even) .homeRecruit-box__txt {
        order: -1;
    }
}
@media screen and (max-width: 767px) {
    .homeRecruit {
        padding-block: 0 70px;
    }
    .homeRecruit__secTit {
        margin-bottom: 16px;
    }
    .homeRecruit__catch {
        --cutSize: 10px;
        width: 100%;
        margin-bottom: 20px;
        padding: 6px 20px;
        font-size: 18px;
    }
    .homeRecruit-box {
        grid-template-columns: 1fr;
        grid-gap: 25px;
    }
    .homeRecruit-box + .homeRecruit-box {
        margin-top: 35px;
    }
    .homeRecruit-box-imgBox {
        width: calc(100% - 10px);
        border-width: 3px;
    }
    .homeRecruit-box-imgBox::after {
        width: calc(100% + 3px);
        height: calc(100% + 3px);
    }
}

/*	.homeRecruit-wanted
------------------------------------------*/
.homeRecruit-wanted {
    margin-top: 50px;
    padding: 30px 40px 40px;
    background: #f5f5f5;
}
.homeRecruit-wanted__tit {
    margin-bottom: 15px;
    font-size: 46px;
    text-align: center;
    line-height: 1.1;
}
.homeRecruit-wanted__tit::first-letter {
    color: var(--color-orange);
}
.homeRecruit-wanted-dataWrap {
    padding: 40px;
    background: #fff;
}
.homeRecruit-wanted-data tr:first-of-type {
    border-top: 1px solid var(--color-border);
}

.homeRecruit-wanted__cv {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.homeRecruit-wanted__cv-tel {
    width: 100%;
}

.homeRecruit-wanted__cv-tel-btn {
    width: 100%;
    text-align: center;
    background-color: #f05001;
    color: #fff;
    padding: 10px 0;
    display: block;
}

.homeRecruit-wanted__cv-contact {
    width: 100%;
}

.homeRecruit-wanted__cv-contact-btn {
    width: 100%;
    text-align: center;
    background-color: #12156c;
    color: #fff;
    padding: 10px 0;
    display: block;
}

@media screen and (max-width: 767px) {
    .homeRecruit-wanted {
        margin: 10px calc(var(--inner-padding) * -1) 0;
        padding: 20px var(--inner-padding) 20px;
    }
    .homeRecruit-wanted__tit {
        margin-bottom: 10px;
        font-size: 36px;
    }
    .homeRecruit-wanted-dataWrap {
        padding: 20px;
    }

    .homeRecruit-wanted__cv {
        flex-direction: column;
        gap: 10px;
    }
}
