@charset "utf-8";
/* ---- カラー */
:root {
    /* カラー */
    --color-00: #39302A;
    --color-01: #215E61;
    --color-02: #F67728;
    --color-03: #173B51;
    --color-04: #F5FBE6;
    --color-05: #E5E5E5;
    --color-white: #fff;
    --color-black: #2F2F2F;
    /* 時間 */
    --duration-025: .25s;
    --duration-050: .5s;
    --duration-075: .75s;
    --duration-100: 1s;
    --duration-150: 1.5s;
    --duration-200: 2s;
    /* フォントサイズ */
    --fs-08: 0.8rem;
    --fs-12: 1.2rem;
    --fs-16: 1.6rem;
    --fs-18: 1.8rem;
    /* ボックスサイズ */
    --width-01: 1200px;
    --width-02: 1375px;
    --width-03: 1335px;
    --heigt-01: 600px;
}
.color-00 { color: var(--color-00); }
.color-01 { color: var(--color-01); }
.color-02 { color: var(--color-02); }
.color-03 { color: var(--color-03); }
.color-04 { color: var(--color-04); }
.color-05 { color: var(--color-05); }
.color-white { color: var(--color-white); }
.color-black { color: var(--color-black); }
.bg-color-00 { background-color: var(--color-00); }
.bg-color-01 { background-color: var(--color-01); }
.bg-color-02 { background-color: var(--color-02); }
.bg-color-03 { background-color: var(--color-03); }
.bg-color-04 { background-color: var(--color-04); }
.bg-color-05 { background-color: var(--color-05); }
.bg-color-white { background-color: var(--color-white); }
.bg-color-black { background-color: var(--color-black); }
/* ---- フォント */
body {
    line-height: 1;
    font-size: 16px;
    font-family: 'Noto Sans JP',
    sans-serif,"Yu Gothic",
    "游ゴシック", YuGothic,
    "游ゴシック体", "ヒラギノ角ゴ Pro W3",
    "メイリオ", sans-serif;
}
.bold { font-weight: bold; }
a {
    transition-duration: var(--duration-050);
    text-decoration: none;
}
.text-center {
    text-align: center;
}
.underline { text-decoration: underline; }
.fs-80 { font-size: 0.8rem; }
.fs-01 { font-size: 1rem; }
.fs-02 { font-size: 1.1rem; }
.fs-03 { font-size: 1.2rem; }
.fs-04 { font-size: 1.4rem; }
.fs-05 { font-size: 1.5rem; }
/* ---- ラップ(主に固定投稿ページ用) */
.body-wrap { 
    width: 100%;
    max-width: var(--width-01);
    margin: 0 auto;
}
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.align-end { align-items: flex-end; }
.align-stretch { align-items: stretch; }
.direction-column { flex-direction: column; }
.direction-reserve { flex-direction: column-reverse; }
.box-2-column { width: 50%; }
.box-3-column { width: calc(100% / 3); }
.box-4-column { width: 25%; }
/* ---- マージンパッディング量(主に固定投稿ページ用) */
.mt-100-50 { margin-top: 100px; }
.ma-0a { margin: 0 auto; }
.pa-20-10 { padding: 20px; }
.pb-20-10 { padding-bottom: 20px; }
.pc-pa-30 { padding: 30px; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
/* ---- その他初期設定 */
* { box-sizing: border-box; }
body::selection {
    background-color: var(--color-00);
    color: #fff;
}
img { max-width: 100%; }
a:hover {
    transition-duration: var(--duration-025);
    opacity: .85;
}
.align-center {
    text-align: center;
}
.sp-block { display: none; }
.pc-block { display: block; }
/* ---- タイトル見出し */
.title-01 {
    position: relative;
    display: inline-block;
    margin: 0 auto;
    padding: 20px 0;
}
.title-01::before {
    position: absolute;
    content: "";
    background: url(../img/lantern.svg) no-repeat center center;
    background-size: contain;
    left: -55px;
    top: 0px;
    width: 55px;
    height: 84.5px;
}
.title-01 .text {
    font-size: var(--fs-16);
    font-weight: bold;
    display: flex;
    flex-direction: column;
}
.title-01 .sub-title {
    font-size: var(--fs-08);
    margin-bottom: 0.5rem;
}

.title-02 {
    position: relative;
}
.title-02::before {
    position: absolute;
}

.title-03 {
    font-size: 32px;
}

.title-03 .icon {
    display: block;
    margin-bottom: 15px;
}

.title-03 .icon img {
   width: 30px;
}

.title-05 {
    font-size: 24px;
    font-weight: bold;
    padding-bottom: 8px;
    border-bottom: 2px solid;
}

/* ---- 全ページ共通パーツ */
.to-top {  }
/* ---- inviewパーツ */
.fade { opacity: 0; transition-duration: var(--duration-200); }
.fade-in { opacity: 1; transition-duration: var(--duration-200); }
.ef-up { transform: translateY(80px); opacity: 0; transition-duration: var(--duration-150); }
.is-show-up { opacity: 1; transform: translateY(0px); transition-duration: var(--duration-150); }
.ef-right { transform: translateX(80px); opacity: 0; transition-duration: var(--duration-150); }
.ef-left { transform: translateX(-80px); opacity: 0; transition-duration: var(--duration-150); }
.is-show-right { opacity: 1; transform: translateX(0px); transition-duration: var(--duration-150); }
.is-show-left { opacity: 1; transform: translateX(0px); transition-duration: var(--duration-150); }
/* ---- ボタン */
.btn-wrap {
    display: flex;
    justify-content: center;
}
.btn-01 {
    position: absolute;
    right: 80px;
    top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 180px;
    height: 60px;
    border-radius: 30px;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
}
/* .btn-01::after {
    /* content: "";
    width: 30px;
    height: 30px;
    background-image: url(../img/btn-01-icon.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    margin-left: 10px;
} */

.btn-wrap {
    text-align: center;
    padding: 100px 0;
}

.contact-btn {
    height: 300px;
    width: 830px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.35);
    position: relative;
    display: flex;
    justify-content: space-between;
}
.contact-btn img.bg {
    height: 90%;
    position: absolute;
    bottom: 0;
    right: 20px;
}

.contact-btn .btn-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 25px;
    min-width: 300px;
}

.contact-btn .btn-content p {
    margin-bottom: 50px;
    line-height: 1.75;
}

.contact-btn .btn-content .btn-mark {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 55px;
    min-width: 200px;
    padding: 0 20px;
    border: 2px solid var(--color-white);
    font-size: 20px;
}

.contact-btn .btn-content .btn-mark img {
    padding-left: 20px;
    transform: translateX(0px);
    transition-duration: .5s;
}
.contact-btn .btn-content .btn-mark:hover img {
    transition-duration:  .5s;
    transform: translateX(10px);
}
.btn-02 {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
    font-size: 24px;
    font-weight: bold;
    color: var(--color-00);
    margin-left: 30px;
}

.btn-02::before {
    position: absolute;
    content: "";
    background: url(../img/btn-02-mark.png) no-repeat center center;
    background-size: contain;
    width: 20px;
    height: 70px;
    left: -24px;
    top: -9px;
}

.btn-03 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-04);
    color: var(--color-white);
    font-weight: bold;
    text-align: center;
    width: 400px;
    height: 46px;
    border-radius: 22px;
    border: 2px solid #fff;
}
.btn-03::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 0;
    bottom: 0;
    margin: auto;
    background: url(../img/btn-03-mark.png) no-repeat center center;
    background-size: contain;
    width: 16px;
    height: 10px;
}

.btn-04 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-white);
    font-weight: bold;
    width: 100%;
    height: 44px;
    border-radius: 22px;
}
.btn-04::after {
    position: absolute;
    content: "";
    background-image: url(../img/btn-03-mark.svg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 22px;
    height: 22px;
    right: 10px;
}
.btn-04.disabled { background-color: #7e7e7e; }
.youtube-wrap .btn-03::before {
    content: "";
    background-image: url(../img/youtube-mark.svg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 34px;
    height: 22px;
    padding-left: 50px;
}
.note-wrap .btn-03::before {
    content: "";
    background-image: url(../img/note-mark.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    width: 112px;
    height: 31px;
    margin-left: 50px;
}
.btn-03::after {
    content: "";
    background-image: url(../img/btn-03-mark.svg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 22px;
    height: 22px;
    padding-right: 50px;
}
.youtube-color {
    background-color: #C5302A;
}

.note-color {
    background-color: #3A3A3A;
}

/* ---- header */
header {
    width: 100%;
    position: fixed;
    z-index: 5;
    top: 0;
    background-color: var(--color-white);
    box-shadow:0px 0px 8px 5px rgba(0, 0, 0, 0.3);
    transition-duration: var(--duration-025);
}
header .logo img { height: 40px; }
.header-inner .left-wrap { display: flex; }
.header-inner {
    width: 100%;
    max-width: var(--width-01);
    align-items: center;
    height: 80px;
    padding: 10px;
    position: relative;
    justify-content: space-between;
}
.header-btn-wrap {
    position: absolute;
    left: 15px;
    top: 19px;
    margin: auto;
}

.header-nav-logo {
    width: 50%;
}

.header-nav ul {
    display: flex;
    padding: 5px 20px 0;
}

.nav-btn {
    transition: transform 1s;
    width: 60px;
    height: 60px;
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    z-index: 200;
    border-radius: 5px;
    transition-duration: var(--duration-025);
}

.nav-btn span {
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 10%;
    height: 3px;
    border-radius: 2px;
    background: var(--color-white);
}

.nav-btn span:nth-of-type(1) {
    top: 32%;
    width: 80%;
}

.nav-btn span:nth-of-type(2) {
    top: 35%;
    width: 80%;
    display: none;
}

.nav-btn span:nth-of-type(3) {
    top: 58%;
    width: 80%;
}
.nav-btn:hover span:nth-of-type(1) {
    top: 32%;
    width: 60%;
}

.nav-btn:hover span:nth-of-type(2) {
    top: 23px;
    width: 65%;
}

.nav-btn:hover span:nth-of-type(3) {
    width: 80%;
}

.nav-btn.active {
    transition-duration: var(--duration-025);
    background-color: var(--color-white);
}

.nav-btn.active span:nth-of-type(1) {
    top: 23px;
    transform: translateY(6px) rotate(-160deg);
    width: 80%;
    background-color: var(--color-01);
}

.nav-btn.active span:nth-of-type(2) {
  opacity: 0;
}

.nav-btn.active span:nth-of-type(3){
    top: 35px;
    transform: translateY(-6px) rotate(160deg);
    width: 80%;
    background-color: var(--color-01);
}

header:has(.nav-btn.active){
    transition-duration: var(--duration-025);
    background-color: var(--color-01);
}

.nav-screen {
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 1000;
    visibility: hidden;
    transition-duration: var(--duraiton-025);
    opacity: 0;
    text-align: center;
}
.nav-screen nav {
    padding-top: 100px;
}
.nav-screen ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto; */
}
.nav-screen li a {
    color: var(--color-white);
    font-weight: bold;
    font-size: 20px;
    padding: 10px;
    min-width: 500px;
    display: inline-block;
    position: relative;
    transition-duration: .5s;
}
.nav-screen li a:hover {
    transition-duration: .5s;
}
.nav-screen li a::after {
    transition-duration: .5s;
    content: "";
    background-image: url(../img/g-nav-arrow.svg);
    width: 50px;
    height: 20px;
    position: absolute;
    right: 0;
}
header .nav-screen li a:hover::after {
    transition-duration: .5s;
    transform: translateX(20px);
}
.nav-screen li + li {
    margin-top: 30px;
}

header:has(.nav-btn.active) .nav-screen {
    visibility: visible;
    transition-duration: var(--duraiton-025);
    opacity: 1;
}

header .main-logo {
    display: block;
}
header .sub-logo {
    display: none;
}
header:has(.nav-btn.active) .sub-logo {
    display: block;
}
header:has(.nav-btn.active) .main-logo {
        display: none;
}

.nav-screen ul li a {
    color: var(--color-white);
    text-align: left;
}








.header-nav li {
    text-align: center;
    margin-right: 10px;
}
.menu-title {
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    font-size: 15px;
}
.header-nav a {
    color: var(--color-00);
    padding: 5px;
    font-weight: bold;
}

.main-menu {
    position: absolute;
    right: 0;
    top: 80px;
    width: 360px;
    height: 100vh;
    padding: 0 30px;
}

.second-menu-wrap {
    opacity: 0;
    transform: translateX(100vw);
    transition: var(--duraiton-050);
    position: fixed;
    top: 80px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    overflow-y: auto;
}
.second-menu-wrap-dark {
    width: 65%;
    height: 100%;
}
.second-menu-wrap.active {
    opacity: 1;
    transform: translateX(0);
    transition: var(--duraiton-050);
}
.second-menu-wrap .header-nav-second {
    position: absolute;
    right: 0;
    top: 0;
    width: 35%;
    height: 100%;
    background-color: var(--color-white);
}
.second-menu-wrap .header-nav-second a {
    color: var(--color-01);
    font-weight: 500;
    display: flex;
    padding: 0 20px;
    align-items: center;
    height: 50px;
    width: 100%;
}
.second-menu-wrap .header-nav-second li + li {
    border-top: 1px solid var(--color-02);
}
.main-menu {
    transform: translateX(380px);
    transition-duration: var(--duraiton-050);
}

.main-menu.active {
    transform: translateX(0px);
    transition-duration: var(--duraiton-050);
}
.main-menu ul a {
    padding: 10px;
    font-size: 24px;
    font-weight: bold;
    display: inline-block;
}
.main-menu ul li + li {
    border-top: 1px solid var(--color-white);
    padding-top: 10px;
}
.header-nav-second .menu-item-has-children a {
    padding: 0 0 0 20px;
    justify-content: space-between;
}
.header-nav-second .menu-item-has-children a::after {
    display: block;
    content: "";
    width: 50px;
    height: 50px;
    background-image: url(../img/icon-plus-01.svg);
    background-size: 40%;
    background-repeat: no-repeat;
    background-position: center;
    transition-duration: var(--duraiton-050);
}
.header-nav-second .menu-item-has-children a.active::after {
    transform: rotate(45deg);
    transition-duration: var(--duraiton-050);
}
.header-nav-second .sub-menu a::after {
    content: none;
}
.header-nav-second .sub-menu li + li {
    border-top: none;
}
.header-nav-second .sub-menu li {
    padding-left: 10px;
}
.header-nav-second .sub-menu {
    display: none;
}


.main-menu .copyright {
    margin-top: 10px;
}
/* ---- フロントページ front */
main {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    background-image: linear-gradient(0deg, #215e61, #1f9da4);
}

main canvas {
	position:absolute;/*親のブロックを基準にして相対位置に配置する*/
	/*位置指定*/
	top:0;
	right:0;
	z-index:1;/*重ね順を-1に　※1以上だとほかのコンテンツの上に被さってしまいます*/
}

.fv-bg {
    position: relative;
    margin: 0 auto;
    z-index: 2;
    height: 600px;
    padding-top: 0;
    max-width: var(--width-01);
    width: 100%;
}

@media screen and ( max-width:1200px ){

.fv-bg {
    padding-top: 60%;
    height: auto;
}

}


.fv-img-01 {
    position: absolute;
    width: 52%;
    max-width: 650px;
    left: 0;
    top: 0;
    margin: 20% 0 0 -5%;
    animation: floatUpDown1 3s ease-in-out infinite alternate;
}

.fv-img-02 {
    position: absolute;
    width: 23%;
    max-width: 400px;
    left: 45%;
    top: 13%;
    animation: floatUpDown2 3.4s ease-in-out infinite alternate;
}

.fv-img-03 {
    position: absolute;
    width: 23%;
    right: 5%;
    top: 30%;
    animation: floatUpDown3 3.8s ease-in-out infinite alternate;
}
.fv-img-04 {
    position: absolute;
    width: 22%;
    right: 20%;
    top: 60%;
    animation: floatUpDown4 4s ease-in-out infinite alternate;
}


@keyframes floatUpDown1 {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(10px); /* 上に動く距離 */
  }
}

@keyframes floatUpDown2 {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px); /* 上に動く距離 */
  }
}

@keyframes floatUpDown3 {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(11px); /* 上に動く距離 */
  }
}

@keyframes floatUpDown4 {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-8px); /* 上に動く距離 */
  }
}

.catchphrase {
    position: absolute;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    max-width: var(--width-01);
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
    bottom: 7%;
    z-index: 1;
    text-align: right;
}
.catchphrase p {
    text-align: right;
    width: fit-content;
    font-size: var(--fs-16);
    padding: 10px 20px;
    background-color: var(--color-white);
    font-weight: 200;
    margin-bottom: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.front h2.text-center.title-04 img {
    max-width: 325px;
    margin-bottom: 50px;
}

.number-visual {
    background-color: var(--color-04);
    padding: 100px 0;
}

.number-visual .content-wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: var(--width-01);
    max-width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}
.number-visual .content-wrap + .content-wrap {
    margin-top: 30px;
}
.number-visual .content-wrap .item {
    position: relative;
    background-color: var(--color-white);
    border: 2px solid var(--color-01);
    padding: 20px;
    width: 30%;
    text-align: center;
}
.number-visual .content-wrap .item + .item {
    margin-left: 20px;
}
.number-visual .content-wrap .item::before {
    content: "";
    position: absolute;
    left: 42%;
    margin: auto;
    top: -10px;
    z-index: 2;
    background-image: url(../img/pin-01.svg);
    width: 40px;
    height: 40px;
    background-size: cover;
}

.number-visual .content-wrap .item .title-02 {
    font-size: 20px;
    font-weight: bold;
    color: var(--color-03);
}

.number-visual .content-wrap .item .number-content {
    margin-top: 30px;
}
.number-visual .content-wrap .item .number-content img {
    margin-top: 30px;
    max-height: 160px;
}
.number-visual .content-wrap .item .number-content img.ire {
    max-height: 200px;
    height: 100%;
}
.number-visual .content-wrap .item .number-wrap {
    margin-top: 20px;
    display: flex;
    justify-content: space-around;
}
.number-visual .content-wrap .item .number {
    font-size: 28px;
    font-weight: 800;
}
.number-visual .content-wrap .item .number .count {
    font-size: 40px;
}


section.base {
    padding: 100px 0;
}

section.base h2 {
    margin-bottom: 50px;
}

.recruitment-card-wrap {
    max-width: var(--width-01);
    display: flex;
    justify-content: center;
    margin: 0 auto;
    padding: 0 15px;
    flex-wrap: wrap;
}

.recruitment-card-wrap li {
    display: flex;
    width: calc(25% - 15px);
    margin: 0 5px;
    margin-bottom: 15px;
}
.recruitment-card-wrap li + li {
}
.recruitment-card-wrap a {
    display: flex;
    flex-direction: column;
    padding: 15px;
    background-color: #F5F6F6;
    border-radius: 10px;
    transition-duration: .5s;
    transform: translateY(0px);
}
.recruitment-card-wrap a:hover {
    transition-duration: .5s;
    transform: translateY(-10px);
}
.recruitment-card-wrap .card-content {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    height: 100%;
}
.recruitment-card-wrap .card-content h3 {
    font-weight: bold;
    font-size: 18px;
    border-bottom: 3px solid;
    padding-bottom: 6px;
    margin-bottom: 12px;
}
.recruitment-card-wrap .card-content p {
    font-weight: bold;
    margin-bottom: 12px;
}

.recruitment-card-wrap .card-content dl {
    font-size: 14px;
    line-height: 1.5;
}

.recruitment-card-wrap .card-content dt {
    font-weight: bold;
}
.recruitment-card-wrap .card-content .btn-05 {
    position: relative;
    color: var(--color-white);
    background-color: var(--color-03);
    padding: 8px 0;
    width: 100%;
    text-align: center;
    margin-top: 15px;
}
.recruitment-card-wrap .card-content .btn-05::after {
    content: "";
    background-image: url(../img/contact-btn-arrow.svg);
    position: absolute;
    right: 10px;
    width: 16px;
    height: 18px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    transform: translateX(0px);
    transition-duration: .5s;
}

.recruitment-card-wrap a:hover .card-content .btn-05::after {
    transform: translateX(5px);
    transition-duration: .5s;
}

.flow-wrap {
    overflow: hidden;
    max-width: 900px;
    width: 100%;
    margin: 50px auto;
    display: flex;
}

.flow-wrap li {
    color: var(--color-white);
    width: 25%;
    padding: 15px 15px 30px;
    position: relative;
}

.flow-wrap li::after {
    content: "";
    position: absolute;
    z-index: 1;
    bottom: -19px;
    right: -25px;
    width: 0;
    height: 0;
    transform: rotate(135deg);
    border-style: solid;
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    border-right: 0;
}

.flow-wrap .step1 {
    background-color: #44C6CE;
}
.flow-wrap .step1::after {
    border-left: 30px solid #44C6CE;
}

.flow-wrap .step2 {
    background-color: #3FB0B7;
}

.flow-wrap .step2::after {
    border-left: 30px solid #3FB0B7;
}

.flow-wrap .step3 {
    background-color: #3B9499;
}

.flow-wrap .step3::after {
    border-left: 30px solid #3B9499;
}

.flow-wrap .step4 {
    background-color: #327A7E;
}


.flow-wrap li p {
    font-weight: bold;
    font-size: 30px;
    margin-bottom: 30px;
}

.flow-wrap li dt {
    font-size: 24px;
    font-weight: bold;
}
.flow-wrap li dl {
    text-align: center;
}
.flow-wrap li dt span {
    font-size: 14px;
    display: block;
    line-height: 1.5;
}

.flow-wrap li dd {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.75;
}

.employee-benefits {
    background-color: var(--color-04);
    max-width: var(--width-01);
    margin: 0 auto;
    padding: 20px;
}

.employee-benefits h2 {
    text-align: center;
    margin: 0 auto;
    background-color: var(--color-01);
    padding: 10px 0;
    color: var(--color-white);
    font-size: 24px;
    font-weight: bold;
    width: 400px;
}

.employee-benefits-wrap {
    display: flex;
    padding: 0px;
}

.employee-benefits-wrap .item {
    width: calc(100% / 3 - 15px);
    color: var(--color-01);
    padding: 50px 10px;
}

.employee-benefits-wrap .item dl {
    padding: 15px 0;
}
.employee-benefits-wrap .item dl + dl {
    border-top: 3px solid var(--color-01);
}

.employee-benefits-wrap .item dt {
    font-size: 20px;
    font-weight: bold;
}
.employee-benefits-wrap .item ul {
    margin-left: 1.5rem;
    margin-top: 10px;
}
.employee-benefits-wrap .item li {
    list-style: disc;
    line-height: 1.9;
    font-size: 15px;
}


/* ---- 固定ページ */


/* ---- 投稿ページ */
.page {
    margin-top: 80px;
}
.single .page-eye,.eye-wrap {
    position: relative;
    height: 380px;
    width: 100%;
    background-image: linear-gradient(0deg, #215e61, #1f9da4);
}

.single h1,.page h1 {
    position: absolute;
    right: 20%;
    top: 40%;
    font-size: 2rem;
    margin: auto;
    text-align: right;
    display: inline-block;
}
.single h1.text-left,.page h1.text-left {
    text-align: left;
}
.single h1 img,.page h1 img {
    margin-top: 15px;
    display: block;
}

.recruit-featured-image img,
.featured-image img {
    width: 500px;
    position: absolute;
    bottom: 0;
    left: 0;
}
.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 40px;
    line-height: 2;
}
.recruit-wrap table td {
    border: none;
    border-bottom: 1px solid;
}

.recruit-wrap table tr:last-child td {
    border: none;
}
.recruit-wrap table td:nth-child(odd) {
    background-color: var(--color-04);
    width: 30%;
}


/* ---- 記事ループページ */
/* ---- footer */
footer {
    position: relative;
    z-index: 1;
    background-color: var(--color-03);
    padding: 50px 0 5px;
}

footer .to-top {
    display: none;
    cursor: pointer;
    z-index: 6;
    position: fixed;
    right: 50px;
    bottom: 50px;
    transition-duration: var(--duration-025);
}
footer .to-top:hover {
    transition-duration: var(--duration-025);
    bottom: 60px;
}

footer .footer-nav ul {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

footer .footer-nav ul a {
    color: var(--color-white);
    font-weight: bold;
}

footer .footer-nav ul li + li {
    margin-left: 30px;
}

footer .copywrite {
    font-size: var(--fs-08);
    line-height: 1.5;
}

footer .logo {
    font-weight: bold;
    margin-top: 5px;
    max-width: 250px;
}

.footer-inner {
    display: flex;
    justify-content: center;
    padding-bottom: 50px;
}

.footer-logo {
    width: 100%;
}

footer .menu-btn-wrap {
    margin: 70px auto 30px;
}
footer .menu-btn-wrap img {
    height: 35px;
}
footer .menu-btn-wrap a + a {
    margin-left: 20px;
}

footer a.logo + img {
    width: 100px;
}

.hidden-input {
    display: none;
}

/* 2. カスタムボタンのデザイン */
.custom-btn {
    display: inline-block;
    background-color: #333; /* ボタンの色 */
    color: #fff;            /* 文字色 */
    padding: 10px 20px;     /* ボタンの大きさ */
    border-radius: 5px;     /* 角丸 */
    cursor: pointer;        /* カーソルを指マークに */
    font-size: 14px;
    transition: 0.3s;
}

/* ホバー時の動き */
.custom-btn:hover {
    background-color: #555;
    opacity: 0.9;
}

/* 3. ファイル名の表示エリア */
.file-name-display {
    display: inline-block;
    margin-left: 10px;
    font-size: 12px;
    color: #666;
}

.wpcf7-not-valid-tip {
    font-weight: bold;
    color: #ff2f2f;
    font-size: 14px;
}

.form-01 {
    max-width: 600px;
    margin: 0 auto;
}
.form-01 input {
    border: 1px solid #A7B0BC;
    background-color: #FFF;
    width: 100%;
    border-radius: 7px;
    font-size: 1.2rem;
    padding: 0 10px;
}
.form-01 input:focus {
    outline: none;
    border: solid var(--color-01) 2px;
}
.form-01 .small-text {
    font-size: 13px;
    font-weight: normal;
    margin-left: 10px;
}
.form-01 .must {
    color: #FF060A;
    font-weight: bold;
    font-size: 14px;
    border-radius: 5px;
    padding: 0px 8px;
    line-height: 1.5;
    border: 1px solid;
    margin-left: 10px;
}
.form-01 .any {
    color: #818181;
    font-weight: bold;
    font-size: 14px;
    border-radius: 5px;
    padding: 0px 8px;
    line-height: 1.5;
    border: 1px solid;
    margin-left: 10px;
}
.form-01 dt {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 20px;
}
.form-01 dl + dl {
    margin-top: 20px;
}

.form-01 .yubin-wrap {
    display: flex;
    align-items: center;
}

.form-01 textarea {
    border: 1px solid #A7B0BC;
    background-color: #FFF;
    width: 100%;
    border-radius: 7px;
    font-size: 1.2rem;
    padding: 0 10px;
}
.form-01 input[type=submit]{
    cursor: pointer;
    position: relative;
    background-color: var(--color-01);
    color: var(--color-white);
    width: 250px;
    margin: 30px 0 auto;
    border-radius: 0;
    border: none;
    text-align: center;
    padding: 5px 0;
}
.form-01 input[type=submit]::after {
    position: absolute;
    content: "";
    background: url(../img/contact-btn-arrow.svg) no-repeat center center;
    background-size: contain;
    width: 20px;
    height: 70px;
    left: -24px;
    top: -9px;
}
.form-01 .btn-wrap {
    flex-direction: column;
    align-items: center;
}
.form-01 .btn-wrap-04 {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.form-01 .policy {
    font-weight: bold;
    font-size: 1.2rem;
}

.form-01 .policy a {
    color: #337A74;
}


.form-01 input[type=checkbox]{
    margin: 0;
    width: 20px;
    height: 20px;
}
.form-01 .policy .wpcf7-list-item {
    margin-left: 0;
}

.form-01 .wpcf7-radio label {
    display: flex;
    align-items: center;
}
.form-01 input[type="radio"]{
    width: auto;
    display: inline-block;
}
.form-01 .wpcf7-list-item {
    display: block;
    margin: 0;
}
.form-01 .wpcf7-list-item label {
    display: flex;
    align-items: center;
    margin: 0;
}
.form-01 .wpcf7-list-item-label {
    margin-left: 10px;
}
.form-01 select {
    padding: 8px;
    width: 200px;
}

.form-01 .wpcf7-spinner {
    /* display: none; */
}

.form-01 select {
  /* 1. 標準スタイル（矢印）を消す */
  appearance: none;
  -webkit-appearance: none; /* Safari, Chrome用 */
  -moz-appearance: none;    /* Firefox用 */

  /* 2. 自作の矢印を背景として設定 */
  /* ここでは例としてSVGをData URIで埋め込んでいますが、通常の画像URLでもOKです */
  background-image: url('../img/select-icon.svg');
  background-repeat: no-repeat;
  background-position: right 10px center; /* 右端から10pxの位置に配置 */
  background-size: 12px 12px;

  /* 3. 見た目の調整 */
  padding: 10px 15px;
  padding-right: 30px; /* 重要：矢印と文字が被らないように右余白を空ける */
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  font-size: 16px;
  cursor: pointer;
}

/* IE11対応が必要な場合（今はほぼ不要ですが念のため） */
.custom-select::-ms-expand {
  display: none;
}

/* ベースのスタイル */
.cookie-notification {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #333; /* 背景色（任意変更可） */
  color: #fff;            /* 文字色 */
  padding: 1rem;
  z-index: 9999;          /* 最前面に表示 */
  box-sizing: border-box;
  
  /* スライドダウンのアニメーション設定 */
  transition: transform 0.5s ease-in-out;
  transform: translateY(0);
}

/* 非表示用クラス（下方向に100%移動） */
.cookie-notification.is-hidden {
  transform: translateY(100%);
}

/* レイアウト調整 */
.cookie-notification__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.cookie-notification__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.cookie-notification__btn {
  background-color: #fff;
  color: #333;
  border: none;
  padding: 0.5rem 2rem;
  cursor: pointer;
  border-radius: 4px;
  font-weight: bold;
}

.cookie-notification__btn:hover {
  opacity: 0.8;
}

/* スマホ用調整（任意） */
@media (max-width: 768px) {
  .cookie-notification__inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .u-sp-only { display: block; } /* スマホのみ改行する場合 */
}
@media screen and ( max-width:834px ){
/* ---- マージンパッディング量(主に固定投稿ページ用) */
.mt-100-50 { margin-top: 50px; }
.pa-20-10 { padding: 10px; }
.pb-20-10 { padding-bottom: 10px; }
.pc-pa-30 { padding: 0px; }
/* ---- その他初期設定 */
    .sp-block { display: block; }
    .pc-block { display: none; }
    .sp-direction-column { flex-direction: column; }
    .sp-direction-reserve { flex-direction: column-reverse!important; }
/* ---- ボタン */
.btn-wrap {
    padding: 50px 15px;
    width: 100%;
}

.contact-btn img.bg {
    right: 0;
    left: 0;
    margin: auto;
    height: auto;
    width: auto;
    max-height: 140px;
}

.contact-btn {
    flex-direction: column;
}

.contact-btn .btn-content {
    padding: 20px;
    justify-content: flex-start;
}

.contact-btn .btn-content p {
    margin-bottom: 20px;
}

.btn-06 {
    margin-top: 30px;
    display: block;
    text-align: center;
    font-size: 1.3rem;
    font-weight: bold;
    padding: 20px 0;
    border-radius: 40px;

}


/* ---- タイトル */

.title-01 .sub-title,.title-02 .sub-title {
    font-size: 16px;
}
.title-01 .main-title,.title-02 .main-title {
    font-size: 24px;
    padding-right: 15px;
    line-height: 1.5;
}
.note-wrap .btn-03::before {
    margin: 0 15px;
}
.eye-catch {
    padding-top: 30px;
}
/* ---- header */
.header-inner {
    max-width: 100%;
    height: 60px;
}
.nav-btn {
    top: 5px;
    right: 5px;
    width: 50px;
    height: 50px;
}
.header-nav {
    display: none;
}
.main-menu {
    transform: translateX(100vw);
    width: 100vw;
}

.nav-screen {
    position: fixed;
    z-index: 100;
    height: 100%;
}

.header-sp-nav-wrap {
    transition-duration: var(--duration-050);
    transform: translateX(100%);
    width: 100%;

    background-color: var(--color-01);
    padding: 50px 20px 0;
    overflow-y: auto;
    padding-bottom: 80px;
  
  /* スクロールを滑らかにする（iOS向け） */
  -webkit-overflow-scrolling: touch;
}
.header-sp-nav-wrap.active {
    transition-duration: var(--duration-050);
    transform: translateX(0);
    height: 100%;
}

.nav-btn.active span:nth-of-type(3) {
    top: 28px;
}

.nav-btn.active span:nth-of-type(1) {
    top: 17px;
}

.nav-screen li a {
    min-width: 100%;
    display: block;
    width: 100%;
    line-height: 1.5;
    padding-right: 50px;
    padding-left: 0;
}

.nav-screen li + li {
    margin-top: 0px;
}
.header-sp-nav li {
    text-align: center;
    padding: 5px;
    margin: 0 auto;
    width: 100%;
}

.header-sp-nav a {
    color: var(--color-00);
    display: block;
    padding: 10px 0;
    font-weight: bold;
}

.nav-screen nav {
    padding-top: 0;
}

/* ---- フロントページ */
body {
    min-width: 100%;
}
section.base {
    padding: 50px 20px;
}
section.base .sub-title {
    line-height: 1.75;
}
.catchphrase {
    bottom: 20px;
}
.catchphrase p {
    font-size: 15px;
}
main {
    margin: 50px auto 0;
}
.fv-bg {
    padding-top: 130%;
    min-height: auto;
    height: 0;
}

.fv-img-01 {
    width: 100%;
    max-width: fit-content;
    bottom: 30%;
    left: -14%;
    top: unset;
    bottom: 6%;
}

.fv-img-02 {
    left: 4%;
    width: 44%;
    height: 30%;
    top: 4%;
}

.fv-img-03 {
    top: 17%;
    width: 50%;
    right: -3%;
}

.fv-img-04 {
    display: none;
    top: 90%;
    right: 5%;
    width: 47%;
    width: auto;
}

.flow-wrap {
    width: auto;
    flex-direction: column;
    padding: 0;
}

.flow-wrap li {
    width: 100%;
    padding-bottom: 50px;
}

.flow-wrap li::after {
    right: 0;
    left: 0;
    transform: rotate(90deg);
    margin: auto;
    bottom: -35px;
}

.flow-wrap li p {
    margin-bottom: 20px;
}

.flow-wrap li dt {
    font-size: 26px;
}
.flow-wrap li dd {
    font-size: 16px;
}

.number-visual .content-wrap .item {
    width: 100%;
}

.number-visual .content-wrap .item + .item {
    margin-left: 0;
    margin-top: 20px;
}

.recruitment-card-wrap {
    flex-wrap: wrap;
}
.recruitment-card-wrap {
    margin: 0px;
    padding: 0;
}
.recruitment-card-wrap li {
    width: 100%;
}

.recruitment-card-wrap li + li {
    margin-left: 0;
    margin-top: 20px;
}

.employee-benefits {
    width: 100%;
}

.employee-benefits h2 {
    width: auto;
}
.employee-benefits-wrap {
    flex-direction: column;
}

.employee-benefits-wrap .item {
    width: 100%;
    padding: 15px 10px;
}


/* ---- 固定ページ */
.page {
    margin-top: 60px;
}

.page.wrap .content, .page.single .content {
    padding: 0 20px;
}

.page.about .about-wrap {
    flex-direction: column;
}
.page.about .about-wrap .item {
    width: 100%;
}
.page.about .about-wrap .item .text-img {
    bottom: 0;
    left: 0;
}

.page.about .about-wrap .item p {
    margin-top: 30px;
    margin-left: 0;
    width: 100%!important;
}
.page.about .about-wrap.type-b {
    position: static;
    margin-top: 30px;
}
.page.about .about-wrap.type-b .item.left {
    width: 100%;
    padding: 10px;
    border-radius: 20px;
}
.page.about .about-wrap.type-b .item.owner {
    position: static;
    right: 0;
    margin-top: 20px;
    width: 100%;
    max-width: 100%;
}
.page.about .about-wrap.type-b .item.owner img {
    border-radius: 20px;
    width: 100%;
}
.page.about .about-wrap .item img.owner {
    border-radius: 20px;
}

.page.about .concept {
    margin-top: 20px;
}
.page.about .concept-inner {
    border-radius: 20px;
    padding: 10px;
}

.page-wrap {
    top: 80px;
    padding-bottom: 120px;
}
.pankuzu ul {
    padding: 20px 0;
    width: auto;
}
.page-content {
    padding: 15px;
    margin-top: 0;
}
.articles-wrap {
    width: 100%;
    padding: 0;
}
.category-list {
    flex-wrap: wrap;
    justify-content: inherit;
    margin: 30px auto;
    padding-top: 30px;
}
.category-list li {
    margin: 0 5% 15px;
    width: 40%;
}
.category-list li + li {
    margin-left: 5%;
}
.category-list li a {
    padding: 10px 0;
    width: auto;
}
.articles-wrap {
    padding: 0 15px;
}
.articles-wrap .item {
    width: 100%;
    margin-bottom: 50px;
}
.post-title {
    font-size: 16px;
}

.post-date {
    margin-top: 10px;
    display: inline-block;
}
.pagination {
    padding-bottom: 30px;
}
.pagination a {
    font-size: 24px;
    padding: 5px;
}
.btn-wrap.bottom {
    padding: 40px 15px 0;
}
.news-list .loop-wrap .item .post-content {
    flex-direction: column;
}
.news-list .loop-wrap a:last-child {
    margin-bottom: 30px;
}
.front-pickup::before,
.front-pickup::after {
    width: 70vw;
    height: 45vw;
    background-size: 100%;
}
/* ---- 投稿ページ */

.single h1,.page h1 {
    font-size: 1.7rem;
    line-height: 1.75;
    right: 0px;
    top: 20px;
    padding: 0 20px;
}


.wp-block-table .has-fixed-layout td {
    display: block;
}
.recruit-wrap table td:nth-child(odd) {
    width: 100%;
    border-bottom: none;
}
.recruit-wrap table td:nth-child(even) {
    border-bottom: 1px solid;
}
.article-content {
    padding: 0 20px 50px;
}
.single-page .text-wrap {
    width: auto;
    padding: 0;
}
.single-page {
    padding: 15px;
    border-radius: 15px;
}
.article-eye-wrap {
    padding: 0;
}

.page.achievement .item-wrap {
    flex-direction: column;
}
.page.achievement .item-wrap .item {
    width: 100%;
}
.page.achievement .item-wrap .item + .item {
    margin-top: 20px;
}
/* ---- 記事ループページ */
/* ---- footer */

footer .to-top {
    right: 20px;
    bottom: 20px;
}

footer::before {
    top: -9%;
}

footer {
    padding: 30px 15px 0;
}

.footer-inner,
.footer-inner .menu {
    flex-wrap: wrap;
}
.footer-inner {
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
    align-items: center;
}
footer .footer-nav ul {
    margin: 30px auto;
    flex-wrap: wrap;
    justify-content: flex-start;
}


footer .menu-btn-wrap {
    margin: 30px auto;
}
footer .logo {
    margin-right: 0;
    margin-bottom: 20px;
}
footer .footer-nav li {
    width: 100%;
    line-height: 1.75;
}
footer .footer-nav li a {
    padding: 15px 0;
    display: inline-block;
}
footer .footer-nav ul li + li {
    margin-left: 0;

    
}


footer .menu-btn-wrap {
    padding-bottom: 10px;
}

.form-01 {
    padding: 10px;
}

.form-01 .custom-btn {
    width: 100%;
    text-align: center;
}

}/* max-width:999px ここまで */

