@charset "utf-8";
/*
Theme Name: Life Logi Support Theme
Author: synapse design lab.
*/
:root{
  --c-black:#222;
  --c-darkblue:#222c4a;
  --c-white:#fff;
  --c-orange:#ff4000;
  --c-blue:#0070c0;
  --c-lightblue:#e5f1f9;
  --c-yellow:#fff000;
}
html{
  scroll-behavior:smooth;
  scroll-padding-top:100px;
  font-size:62.5%;
}
body{
  font-family:'Noto Sans JP','Hiragino Sans','Meiryo','Hiragino Kaku Gothic ProN',sans-serif;
  color:var(--c-darkblue); font-size:1.6rem; font-weight:normal;
  font-feature-settings:"palt"; line-height:1.8; text-align: justify;
  max-width:100%;
}
@media (max-width: 640px) {
  body{
    font-size:1.4rem;
  }
}
h1, h2, h3, h4, h5, h6{
  text-align: left;
}
/* ハンバーガーメニュー展開時の背景固定 */
body.active {height:100%; overflow:hidden;}
main{overflow-x:hidden;}
main ul{list-style:disc;}
main li{margin-left:1.2em;}
p:not(:last-of-type){margin-bottom:1.7em;}
/* 全体表示フェードイン */
body{
  animation-name:fadeInAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
  opacity:0;
}
@keyframes fadeInAnime{
  from{opacity:0;}
  to{opacity:1;}
}
main{
	animation:up-in 1.5s ease 0s 1 forwards; opacity:0;
}
/* スクロールフェードイン */
.fade_in {
  opacity: 0;
  transform: translate(0, 50px);
  transition: .5s;
}
.fade_in.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}
.right_in.fade_in {
  opacity: 0;
  transform: translate(100px, 0);
  transition: .5s;
}
.right_in.fade_in.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}
.left_in.fade_in {
  opacity: 0;
  transform: translate(-100px, 0);
  transition: .5s;
}
.left_in.fade_in.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}
@keyframes down-in{
	0% {transform:translate(0, -50px); opacity:0;}
	100% {transform:translate(0, 0); opacity:1;}
}
@keyframes up-in{
	0% {transform:translate(0, 50px); opacity:0;}
	100% {transform:translate(0, 0); opacity:1;}
}
@keyframes left-in{
	0% {transform:translate(-50px, 0); opacity:0;}
	100% {transform:translate(0, 0); opacity:1;}
}
@keyframes right-in{
	0% {transform:translate(50px, 0); opacity:0;}
	100% {transform:translate(0, 0); opacity:1;}
}
@keyframes zoom-in{
	0% {transform:scale(0.8,0.8); opacity:0;}
	100% {transform:scale(1,1); opacity:1;}
}

/* TOPへ戻るボタン */
#page-top a{
  display: flex;
  justify-content:center;
  align-items:center;
  background:#333;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  transition:all 0.3s;
}
#page-top a:hover{
  background: #777;
}
#page-top {
  position: fixed;
  right: 10px;
  z-index: 2;
  opacity: 0;
  transform: translateY(100px);
}
#page-top.UpMove{
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from { opacity: 0; transform: translateY(100px); }
  to { opacity: 1; transform: translateY(0); }
}
#page-top.DownMove{
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 1; transform: translateY(100px); }
}

.br_no{white-space:nowrap;}
.br_sp{display:none;}
.br_pc{display:inline;}
@media (max-width: 640px) {
  .br_sp{display:inline;}
  .br_pc{display:none;}
}
img{max-width:100%; height:auto; object-fit:cover;}
a{text-decoration:none; transition:0.3s;}

/* 外部リンクマーク */
a[target="_blank"]:after {
  font-family: "Font Awesome 5 Free";
  content: '\f35d';
  font-weight: 900;
  margin-left: .4em;
  font-size: 1em;
  }

/* ================================== 各ページ 共通 ================================== */
/* ===== section ===== */
section{
  position: relative;
  overflow: hidden;
  padding: 150px 35px;
}
.sec_in_1200{
  max-width: 1200px;
  margin-inline: auto;
}
.sec_in_1000{
  max-width: 1000px;
  margin-inline: auto;
}
.sec_in_800{
  max-width: 800px;
  margin-inline: auto;
}
@media (max-width: 640px) {
  section{
    padding: 70px 35px;
  }
}
/* ===== Page head ===== */
.p_head{
  margin-top: 100px;
  padding-block: 0;
  height: 300px;
  background: url(img/p_head.svg) no-repeat left center / auto 100%;
  border-bottom: var(--c-lightblue) 1px solid;
}
.p_head_in{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2px 20px;
  height: 100%;
  position: relative;
}
.h1_en{
  font-family: "Oswald", sans-serif;
  font-size: clamp(45px, -1.852px + 10.185vw, 100px);
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(120deg, #ff5000 0%, #c11862 30%, #334778 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
	animation:left-in 1.5s ease 0.8s 1 forwards; opacity:0;
}
.h1_ja{
  font-size: clamp(14px, 8.000px + 1.6vw, 24px);
  font-weight: 900;
  line-height: 1.2;
	animation:left-in 1.5s ease 1.2s 1 forwards; opacity:0;
}
.breadcrumbs{
  position: absolute;
  bottom: 10px; left:0;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
	animation:left-in 1.5s ease 2s 1 forwards; opacity:0;
}

@media (max-width: 1200px) {
  .p_head{
    margin-top: 50px;
  }
}
@media (max-width: 768px) {
  .p_head{
    height: 200px;
  }
  .p_head_in{
    padding-bottom: 20px;
  }
}
@media (max-width: 640px) {
  .p_head{
    height: 180px;
    background-position: left top;
    background-size: auto 90%;
  }
  .p_head_in{
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
}
/* ===== Hタグ ===== */
.cmn_h2{
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 50px;
}
.cmn_h2 h2{
  display: flex;
  flex-wrap: wrap;
  align-items:center;
  gap: 2px 20px;
}
.cmn_h2 span{
  font-size: 2rem;
  font-weight: 700;
}

@media (max-width: 640px) {
  .cmn_h2{
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
  .cmn_h2 h2{
    flex-direction: column;
    align-items: flex-start;
  }
  .cmn_h2 span{
    font-size: 1.4rem;
  }
}
/* ===== 背景 back_line ===== */
.back_line{
  position: absolute;
  top: 0; bottom: 0; left: 0; right: 0;
  margin: auto;
  width: 100vw;
}
.back_line[src="<?php echo get_template_directory_uri(); ?>/img/real01_line.webp"]{
  top: 19%; bottom: auto;
}
.back_line[src="<?php echo get_template_directory_uri(); ?>/img/join01_line.webp"]{
  top: 13%; bottom: auto;
}
@media (max-width: 768px) {
  .back_line{
    top: 20%; bottom: auto;
  }
  .back_line[src="<?php echo get_template_directory_uri(); ?>/img/abo_04_line.webp"]{
    top: 70px; bottom: auto;
  }
  .back_line[src="<?php echo get_template_directory_uri(); ?>/img/abo_05_line.webp"]{
    top: 30px; bottom: auto;
  }
  .back_line[src="<?php echo get_template_directory_uri(); ?>/img/abo_06_line.webp"]{
    top: 70px; bottom: auto;
  }
  .back_line[src="<?php echo get_template_directory_uri(); ?>/img/real03_line.webp"]{
    top: auto; bottom: 15%;
  }
  .back_line[src="<?php echo get_template_directory_uri(); ?>/img/join01_line.webp"]{
    top: 45%; bottom: auto;
  }
}
@media (max-width: 640px) {
    .back_line[src="<?php echo get_template_directory_uri(); ?>/img/abo_03_line.webp"]{
    top: 25%; bottom: auto;
  }
  .back_line[src="<?php echo get_template_directory_uri(); ?>/img/real01_line.webp"]{
    top: 22%; bottom: auto;
  }
}
/* =====  ===== */

@media (max-width: 640px) {
}
/* ================================== header ================================== */
header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  padding-inline: 5vw;
  background: #fff;
  border-bottom: var(--c-darkblue) 1px solid;
  display: flex;
  justify-content:space-between;
  align-items:center;
  gap: 20px;
  z-index: 999;
  transition: all .3s ease-in-out;
	animation:down-in 1.5s ease .5s 1 forwards; opacity:0;
}
.head_logo{
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 35px;
  position: relative;
  z-index: 999;
}
.nav_pc{
  display: flex;
  align-items: center;
  gap: 2.5vw;
  font-weight: 700
}
.head_nav{
  transition: all .3s ease-in-out;
  border-bottom: transparent 2px solid;
  padding-block: 8px;
}
.head_nav:hover{
  border-bottom: var(--c-darkblue) 2px solid;
  padding-block: 5px;
}

.head_btn{
  width: 160px;
  height: 50px;
  border-radius: 99px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all .3s ease-in-out;
  background: url(img/head_btn.svg) no-repeat left center;
}
.head_btn:hover{
  background: url(img/head_btn.svg) no-repeat right center;
}

/* === header.scroll-nav === */
header.scroll-nav{
  height: 80px;
}
/* === nav pc sp break point === */
.nav_sp{
  display: none;
}
@media (max-width: 1260px) {
  header,
  header.scroll-nav{
    height: 50px;
  padding-inline: 15px;}
  .head_logo img{
    height: 32px;}
  .head_logo{
    gap: 10px;
    font-size: 1rem;
  }
.nav_pc{
  gap: 25px;
  font-size: 1.4rem;
}
.head_btn{
  width: 120px;
  height: 34px;
}
}
@media (max-width: 840px) {
  .nav_pc{display:none;}
  .nav_sp{display:block;}
}

/* === nav_sp === */
body.hm-active {
  overflow:hidden;
}
#hm-btn {
  position: fixed;
  top:0; right:0;
  display: grid;
  place-items: center;
  place-content: center;
  width: 50px;
  height: 50px;
  border: none;
  cursor: pointer;
  z-index: 999;
  transition: all .3s ease-in-out;
}
.button_bar,
.button_bar:before,
.button_bar:after {
  width: 20px;
  height: 3px;
  background-color: var(--c-orange);
  border-radius: 99px;
  transition: transform 0.3s;
}
.button_bar {
  display: grid;
}
.button_bar:before,
.button_bar:after {
  content: "";
  grid-area: 1 / 1;
}
.button_bar:before {
  transform: translateY(-7px);
}
.button_bar:after {
  transform: translateY(7px);
}
#hm-btn[aria-expanded="true"] .button_bar {
  background-color: transparent;
}
#hm-btn[aria-expanded="true"] .button_bar:before {
  transform: rotate(45deg);
}
#hm-btn[aria-expanded="true"] .button_bar:after {
  transform: rotate(-45deg);
}
.groval {
  position: fixed;
  height: 100vh;
  height: 100dvh;
  width: 100%;
  inset: 0;
  z-index: 998;
  overflow-y: auto;
  transform: translateX(100%);
  transition: .3s;
  padding: 80px 35px 40px;
}
.groval:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: rgba(255,255,255,.95);
  z-index: -1;
}
.hm-active .groval {
    transform: translateX(0);
}
.groval_wrap{
  max-width: 500px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content:space-between;
}
.head_nav_sp_wrap{
  display: flex;
  flex-direction: column;
  border-top: var(--c-darkblue) 1px solid;
}
.head_nav_sp{
  position: relative;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-block: 15px;
  border-bottom: var(--c-darkblue) 1px solid;
  transition: .3s;
}
.head_nav_sp:hover{
  padding-inline: 20px;
}
.head_nav_sp:after{
  content:"";
  position: absolute;
  top: 50%;
  right: 3px;
  width: 10px;
  height: 10px;
  border-right: var(--c-darkblue) 1px solid;
  border-bottom: var(--c-darkblue) 1px solid;
  transform: translateY(-50%) rotate(-45deg);
  transition: .3s;
}
.head_nav_sp:hover:after{
  right: 13px;
}
.head_nav_sp span{
  font-family: "Oswald", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
}
.groval_foot{
  font-size: 1.4rem;
  line-height: 1.5;
}
.nav_sp_logo{
  width: 170px;
  margin-bottom: 15px;
}
.g_foot_btn{
  display: inline-block;
  margin-top: 15px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background: var(--c-darkblue);
  border-radius: 99px;
  padding: 10px 30px;
  width: 100%;
  transition: .3s;
}
.g_foot_btn:hover{
  background: var(--c-orange);
}
/* ================================== footer ================================== */
footer{
  background: var(--c-blue);
  padding: 80px 35px 0;
  color: var(--c-white);
  text-align: left;
}
.foot_wrap{
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap:50px 20px;
  max-width: 1200px;
  margin-inline: auto;
  padding-bottom: 80px;
}
.foot_nav_wrap{
  display: flex;
  flex-direction: column;
  border-top: var(--c-white) 1px solid;
  max-width: 320px;
  width: 100%;
}
.foot_nav{
  position: relative;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-block: 20px;
  border-bottom: var(--c-white) 1px solid;
  transition: .3s;
}
.foot_nav:hover{
  padding-inline: 20px;
}
.foot_nav span{
  font-size: 2.2rem;
}
.foot_nav:after{
  content:"";
  position: absolute;
  top: 50%;
  right: 3px;
  width: 10px;
  height: 10px;
  border-right: var(--c-white) 1px solid;
  border-bottom: var(--c-white) 1px solid;
  transform: translateY(-50%) rotate(-45deg);
  transition: .3s;
}
.foot_nav:hover:after{
  right: 13px;
}
.foot_nav span{
  font-family: "Oswald", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
}
.foot_cont{
  line-height: 1.7;
}
.foot_logo{
  margin-bottom: 25px;
}
.foot_add{
  display: flex;
}
.foot_add_01{
  width: 3em;
  white-space:nowrap;
}
.foot_btn{
  display: grid;
  place-items: center;
  margin-top: 25px;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  color: var(--c-blue);
  background: var(--c-white);
  border-radius: 99px;
  width: 300px;
  height: 60px;
  transition: .3s;
}
.foot_btn:hover{
  background: var(--c-darkblue);
  color: var(--c-white);
}

.foot_copy{
  font-size: 1.4rem;
  text-align: center;
  padding-block: 8px;
  margin-inline: -35px;
  background: var(--c-darkblue);
}
@media (max-width: 640px) {
footer{
  padding-top: 50px;
}
  .foot_wrap{
  display: flex;
  flex-direction: column;
  padding-bottom: 50px;
}
.foot_nav_wrap{
  max-width: 100%;
}
.foot_nav{
  font-size: 1.2rem;
  padding-block: 17px;
}
.foot_nav span{
  font-size: 1.8rem;
}
.foot_logo{
  width: 170px;
}
.foot_btn{
  font-size: 1.6rem;
  width: 100%;
  height: 40px;
}
}
/* ================================== top_page ================================== */
.top_01_02,
.top_03_04{
  padding: 0;
}
/* ===== top_01_02 ===== */
.top_01_02 {
  position: relative;
  min-height: 100vh;
  background: url(img/top_01_02_back.svg) no-repeat center top calc(100vh - 28vw) / contain;
}
.top_01_02::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(img/top_main-pc.svg) no-repeat center / cover;
  width: 100%;
  height: calc(100vh + 50px);
  height: calc(100dvh + 50px);
  z-index: -2;
}
.top_01_02::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 100vh);
  background: var(--c-blue);
  border-radius: 50px 50px 0 0;
  z-index: -1;
}
.top_01{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  align-content:center;
  padding-left: 11vw;
	animation:left-in 1.5s ease 1.5s 1 forwards; opacity:0;
}
.top_h1 span{
  font-size: clamp(42px, 7.200px + 9.28vw, 100px);
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.7;
  background: var(--c-blue);
	display: inline;
	padding: 0 .2em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  position: relative;
  z-index: 2;
}
.top_h1 span:nth-child(2){
  background: var(--c-orange);
}
@media (orientation: portrait) {
  .top_01_02::before {
    background: url(img/top_main-sp.svg) no-repeat center / cover;
  }
}
@media (max-width: 640px) {
  .top_01_02{
    background-size: 140vw auto;
    background-position: center top calc(100vh - 40vw);
  }
}
.top_02{
  margin-top: 100vh;
  width: 100%;
  padding: 100px 35px;
  color: var(--c-white);
  position: relative;
  z-index: 1;
}
.top_02::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.top_02_wrap{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  position: relative;
  z-index: 2;
}
.top_02_h2{
  font-size: clamp(16px, 13.170px + 0.755vw, 18px);
  font-weight: 700;
  margin-bottom: 20px;
}
.top_02_h2 span{
  font-family: "Oswald", sans-serif;
  font-size: clamp(42px, 13.698px + 7.547vw, 62px);
  margin-right: 10px;
}
.top_02_list{
  list-style: none;
  border-top: var(--c-white) 1px dotted;
}
.top_02_item{
  margin: 0;
  padding-block: 15px;
  border-bottom: var(--c-white) 1px dotted;
  line-height: 1.5;
}
.top_02_item a{
  transition: .3s;
}
.top_02_item a:hover{
  color: var(--c-yellow);
}
.top_02_date{
  font-weight: 700;
  display: block;
  padding-bottom: 5px;
}
.top_02_link{
  display: inline-block;
  margin-top: 20px;
  padding-bottom: 2px;
  border-bottom: transparent 1px solid;
  transition: .3s;
}
.top_02_link:hover{
  border-bottom: var(--c-white) 1px solid;
}
.top_02_link::after{
  content:"";
  width: 9px;
  height: 9px;
  border-top: var(--c-white) 1px solid;
  border-right: var(--c-white) 1px solid;
  display: inline-block;
  margin-left: 10px;
  transform: rotate(45deg);
}
.top_02_blog{
  position: relative;
  display: block;
  overflow: hidden;
  max-width: 575px;
  margin-inline: auto;
}
.top_02_blog img{
  transition: .3s;
}
.top_02_blog:hover img{
  transform: scale(1.05);
}
.top_02_blog_box{
  position: absolute;
  top: 0; bottom: 0; right: 0;
  margin: auto;
  width: 130px;
  background: url(img/top_blog_back.svg) no-repeat right center / auto 100%;
}

.top_02_insta{
  display: block;
  margin-top: 30px;
  margin-inline: auto;
  max-width: 450px;
  width: 100%;
  height: 80px;
  background: #fff;
  border: var(--c-darkblue) 2px solid;
  border-radius: 99px;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--c-darkblue);
  text-align: center;
  align-content:center;
  position: relative;
  transition: .3s;
}
.top_02_insta:hover{
  background: var(--c-lightblue);
}
.top_02_insta::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 40px;
  width: 40px;
  height: 40px;
  background: url(img/insta.png) no-repeat center / contain;
  transform: translateY(-50%);
}
.top_02_insta::after{
  content:"";
  position: absolute;
  top: 50%;
  right: 25px;
  width: 30px;
  height: 30px;
  background: url(img/top_02_arrow.svg) no-repeat center / contain;
  transform: translateY(-50%);
}

a.top_02_blog::after,
a.top_02_insta::after{
  content: "";
}

@media (max-width: 840px) {
.top_02_wrap{
  grid-template-columns: 1fr;
}
}
@media (max-width: 640px) {
  .top_02_item{
    font-size: 1.4rem;
  }
  .top_02_insta{
    max-width: 350px;
    height: 50px;
    font-size: 1.6rem;
  }
  .top_02_insta::before{
    width: 25px;
    height: 25px;
    left: 20px;
  }
  .top_02_insta::after{
    width: 20px;
    height: 20px;
    right: 15px;
  }
}

/* ===== top_03_04 ===== */
.top_h2_wrap{
  display: grid;
  justify-items: center;
  margin-bottom: 30px;
}
.top_04 .top_h2_wrap{
  justify-items: start;
}
.top_h2_en{
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-size: clamp(45px, -7.481px + 13.995vw, 100px);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(120deg, #ff5000 0%, #c11862 30%, #334778 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}
.top_h2{
  display: inline-block;
  font-size: clamp(14px, 5.509px + 2.264vw, 20px);
  font-weight: 700;
  color: var(--c-white);
  line-height: 1;
  background: var(--c-darkblue);
  padding: 5px 10px 7px;
}
.top_h3{
  font-size: clamp(20px, 8.679px + 3.019vw, 28px);
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 20px;
}
.top_more_btn{
  font-size: 1.8rem;
  font-weight: 700;
  width: 265px;
  height: 60px;
  background: var(--c-white);
  border: var(--c-darkblue) 2px solid;
  border-radius: 99px;
  margin-top: 50px;
  padding-inline: 25px;
	display: flex;
	justify-content: space-between;
	align-items: center;
  transform: .3s;
}
.top_more_btn:hover{
  padding-inline: 35px;
}
.top_more_btn::after{
  content:"";
  width: 20px;
  height: 20px;
  background: url(img/top_more_arrow.svg) no-repeat center / contain;
}

.top_03_04{
  position: relative;
  min-height: 100vh;
}
.top_0304_line{
  position: absolute;
  left: 0; right: 0; bottom: 50px;
  margin: auto;
  width: 100%;
}
.top_03_04::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(img/top_03.webp) no-repeat center bottom / cover;
  width: 100%;
  height: clamp(670px, 556.792px + 30.189vw, 750px);
  z-index: -3;
}
.top_03_04::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: clamp(800px, 654.661px + 18.924vw, 895px);
  background: var(--c-lightblue);
  z-index: -2;
}
.top04_img{
  position: absolute;
  bottom: 0; right: 0;
  width: 50%;
  height: clamp(800px, 654.661px + 18.924vw, 895px);
  z-index: -1;
}

.bg-gear {
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 0;
  pointer-events: none;
  will-change: transform; 
}
@keyframes rotate-right {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes rotate-left {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}
.top_gear1{
  background-image: url(img/top_gear1.svg);
  width: 372px;
  height: 372px;
  top: -130px;
  left: -130px;
  animation: rotate-right 20s linear infinite;
}
.top_gear2{
  background-image: url(img/top_gear2.svg);
  width: 183px;
  height: 183px;
  top: 120px;
  left: 230px;
  animation: rotate-left 20s linear infinite;
}
.top_gear3{
  background-image: url(img/top_gear3.svg);
  width: 372px;
  height: 372px;
  bottom: -130px;
  right: -130px;
  animation: rotate-right 20s linear infinite;
}

.top_03{
  height: clamp(670px, 556.792px + 30.189vw, 750px);
  padding: 0 35px;
  text-align: center;
  display: grid;
  place-items: center;
  align-content: center;
  position: relative;
  z-index: 1;
}
.top_04{
  height: clamp(800px, 654.661px + 18.924vw, 895px);
  align-content:center;
  position: relative;
  z-index: 2;
}
.top_04_box{
  max-width: 1270px;
  margin-inline: auto;
  padding-inline: 35px clamp(394px, 10.000px + 50vw, 645px);
}
.top04_real{
  position: absolute;
  top: 0; right: 0;
  width: 50vw;
  height: 100%;
}
@media (max-width: 768px) {
  .top_gear1{
    width: 37vw;
    height: 37vw;
    top: -13vw;
    left: -13vw;
  }
  .top_gear2{
    width: 18.5vw;
    height: 18.5vw;
    top: 12vw;
    left: 23vw;
  }
  .top_gear3{
    width: 37vw;
    height: 37vw;
    bottom: -13vw;
    right: -13vw;
  }
  .top_04_gear_sp{
    display: block;
    position: absolute;
    top: clamp(670px, 556.792px + 30.189vw, 750px); left: 0;
    width: 100%;
    height: 53.33vw;
    overflow: hidden;
  }
  .top_0304_line{
    background-size: 768px auto;
  }
  .top_03_04::after{
    height: calc(53vw + 700px);
  }
  .top04_img{
    bottom: 700px;
    width: 100%;
    height: 53vw;
  }
  .top_04{
    height: calc(53vw + 700px);
    padding-top: 53vw;
  }
  .top_04_box{
    padding-inline: 35px;
  }
}
@media (max-width: 640px) {
  .top_h2_wrap{
    justify-items: start;
  }
  .top_more_btn{
    width: 100%;
    max-width: 350px;
    height: 50px;
    font-size: 1.6rem;
  }
  .top_0304_line{
    background-size: 640px auto;
  }
  .top_03_04::after{
    height: calc(53vw + 590px);
  }
  .top04_img{
    bottom: 590px;
  }
  .top_04{
    height: calc(53vw + 590px);
  }
  .top_03{
    text-align: left;
    place-items: start;
    align-content: flex-start;
    padding-top: 140px;
  }
}
/* ===== top_05 ===== */
.top_05{
  background: url(img/top_05.png) no-repeat center / contain;
}
.top_05_area{
  text-align: center;
  display: grid;
  place-items: center;
  align-content: center;
}
.top_05_area .top_h3{
  text-align: center;
}
.top_05_btn{
  margin-top: 50px;
  width: 300px;
  height: 60px;
  border-radius: 99px;
  font-weight: 700;
  color: #fff;
  transition: all .3s ease-in-out;
  background: url(img/top05_btn_back.svg) no-repeat left center;
  padding-inline: 25px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.top_05_btn:hover{
  background: url(img/top05_btn_back.svg) no-repeat right center;
  padding-inline: 35px;
}
.top_05_btn::after{
  content:"";
  width: 20px;
  height: 20px;
  background: url(img/btn_arrow_white.svg) no-repeat center / contain;
}

@media (max-width: 768px) {
  .top_05{
    background-size: 768px auto;
  }
}
@media (max-width: 640px) {
  .top_05{
    background: url(img/top_05_sp.svg) no-repeat center / contain;
  }
  .top_05_area{
    text-align: left;
    place-items: start;
  }
  .top_05_area .top_h3{
    text-align: left;
  }
  .top_05_btn{
    width: 100%;
    max-width: 350px;
    height: 50px;
    font-size: 1.6rem;
  }
}
@media (max-width: 500px) {
  .top_05{
    background-size: 500px auto;
  }
}

/* ================================== NEWS ================================== */
.news_01{
  background: var(--c-lightblue);
}
/* ===== news_list ===== */
.news_list_wrap{
  border-top: var(--c-darkblue) 1px dashed;
  list-style: none;
}
.news_list_item{
  margin: 0;
  padding-block: 12px;
  border-bottom: var(--c-darkblue) 1px dashed;
}
.news_list_item a{
  display: flex;
}
.news_list_date{
  font-weight: 700;
  color: var(--c-blue);
  width: 150px;
}
.news_list_tit{
  font-size: 1.4rem;
  line-height: 1.5;
}
.news_list_item a:hover .news_list_date,
.news_list_item a:hover .news_list_tit{
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pnavi{
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 50px;
}
.page-numbers{
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-weight: 700;
  background: var(--c-white);
  transition: .3s;
}
.page-numbers.current{
  background: var(--c-blue);
  color: var(--c-white);
}
.page-numbers:hover{
  background: var(--c-blue);
  color: var(--c-white);
}
@media (max-width: 768px) {
}
@media (max-width: 640px) {
  .news_list_item a{
    flex-direction: column;
  }
  .pnavi{
    gap: 10px;
  }
  .page-numbers{
    width: 30px;
    height: 30px;
  }
}
/* ===== news_single ===== */
.news_01 .sec_in_1000{
  margin-top: -20px;
}
.news_date{
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--c-blue);
  margin-bottom: 20px;
}
.news_tit{
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 70px;
}
.news_01 img{
  margin-bottom: 1.7em;
}
.news_wrap{
  margin-bottom: 20px;
  padding-bottom: 70px;
  border-bottom: var(--c-darkblue) 1px solid;
}
.back_list{
  transition: .3s;
}
.back_list:hover{
  color: var(--c-orange);
}

@media (max-width: 768px) {
}
@media (max-width: 640px) {
  .news_date{
    font-size: 2rem;
  }
  .news_tit{
    font-size: 2rem;
    margin-bottom: 35px;
  }
  .news_wrap{
    margin-bottom: 15px;
    padding-bottom: 35px;
  }
}
/* ================================== ABOUT ================================== */
.abo_h2_en{
  position: absolute;
  top:-1.22em; left:-0.12em;
  font-family: "Oswald", sans-serif;
  font-size: clamp(100px, 54.545px + 12.121vw, 200px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--c-white);
  transform: rotate(90deg);
  transform-origin: left bottom;
}
.abo_in{
  position: relative;
}
.abo_2culmns{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  position: relative;
  z-index: 1;
}
.abo_h3_wrap{
  margin-bottom: 30px;
}
.abo_h3{
  font-size: clamp(24px, -7.132px + 8.302vw, 46px);
  font-weight: 900;
  color: var(--c-white);
  background: var(--c-orange);
	display: inline;
	padding: 0 .5em .08em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.abo_txt20{
  font-size: 2.0rem;
}
.abo_wrap01{
  position: relative;
  padding: 50px;
  background: var(--c-white);
  border: var(--c-darkblue) 1px solid;
  border-radius: 20px;
}
.abo_wrap02{
  position: relative;
  padding: 50px;
  background: var(--c-lightblue);
  border: var(--c-darkblue) 1px solid;
  border-radius: 20px;
}
.abo_wrap01:not(:last-child){
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .abo_2culmns{
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .abo_txt20{
    font-size: 1.4rem;
  }
  .abo_wrap01, .abo_wrap02{
    padding: 30px;
  }
}
/* ===== 各セクション背景 ===== */
.abo_l_blue{
  position: relative;
  background: var(--c-lightblue);
}
.abo_white{
  position: relative;
  background: var(--c-white);
}
.abo_02{
  position: relative;
  background: url(img/abo02back-pc.webp) no-repeat center / cover;
}
@media (max-width: 768px) {
  .abo_02{
    background: url(img/abo02back-sp.webp) no-repeat center / cover;
  }
}
/* ===== abo_01 & 02 ===== */
.abo_01_box2{
  text-align: right;
  container-type: inline-size;
  width: 100%;
  height: 100%;
}
.abo_01-sp{
  display: none;
}
@container (max-width: 400px) {
  .abo_01-sp{
    display: inline;
  }
  .abo_01-pc{
    display: none;
  }
}

@media (max-width: 768px) {
  .abo_01_box2{
    text-align: center;
  }
}
/* ===== abo_03 ===== */
.abo_03_in1{
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px 30px;
  margin-bottom: 50px;
}
.abo03_1_box{
  padding: 0 10px 30px;
  background: var(--c-darkblue);
  text-align: center;
  color: var(--c-white);
}
.abo_03_1_h3_en{
  font-family: "Oswald", sans-serif;
  font-size: 7rem;
  font-weight: 700;
  line-height: 1;
  color: #334778;
  margin-top: -.12em;
}
.abo_03_1_no{
  font-family: "Oswald", sans-serif;
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--c-orange);
  margin-top: -.5em;
}
.abo_03_1_h3_ja{
  margin-block: 20px;
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1.3;
  text-align:center;
}

.abo_03_2_h3{
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--c-white);
  background: var(--c-orange);
  border-radius: 5px;
  padding: .5em .7em .6em;
  display: inline-block;
  margin-bottom: 40px;
}
.abo_03_2_h4{
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 10px;
}
.abo_03_2_wrap{
  border-top: var(--c-darkblue) 1px dashed;
  margin-top: 30px;
  padding-block: 30px;
  display: grid;
  grid-template-columns: auto 350px;
  align-items: start;
  gap: 30px;
}
.abo_03_2_box1{
  display: grid;
  grid-template-columns: 207px auto;
  gap: 25px;
  max-width: 640px;
}
.abo_03_2_box1 dt{
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 15px 20px;
  align-content:center;
  background: linear-gradient(135deg, #ffede5 10%, #f9e8ef 40%, #e7f1ff 80%);
  border-radius: 5px;
}
.abo_03_2_box1 dt span{
  font-size: 1.6rem;
  font-weight: 400;
}
.abo_03_2_box1 dd{
  align-content:center;
}
.abo0321_wrap{
  border: var(--c-darkblue) 1px solid;
  border-radius: 5px;
  padding: 25px 30px;
  margin-bottom: 20px;
}
.abo_03_2_box2{
  display: grid;
  gap: 20px;
}
.abo_03_2_txt2{
  border-top: var(--c-darkblue) 1px dashed;
  padding-top: 30px;
  font-size: 1.8rem;
  font-weight: 700;
}
.abo_03_3_box{
  margin: 10px 370px 10px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
}
.abo_03_3_atem{
  color: var(--c-white);
  background: var(--c-darkblue);
  padding: 5px 10px 7px;
  display: inline-block;
  line-height: 1;
}
.abo_03_3_box2{
  margin-bottom: 30px;
}
.abo_03_3_img{
  position: absolute;
  top: 50px; right: 50px;
  width: 350px;
}

@media (max-width: 1270px) {
  .abo_03_1_h3_en{
    font-size: 5.7vw;
  }
}
@media (max-width: 1000px) {
  .abo_03_in1{
    grid-template-columns: 1fr 1fr;
  }
  .abo_03_1_h3_en{
    font-size: 7vw;
  }
  .abo_03_2_wrap{
    grid-template-columns: 1fr;
  }
  .abo_03_2_box2{
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .abo_03_3_box{
    margin-right: 0;
  }
  .abo_03_3_img{
    position: static;
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .abo_03_in1{
    grid-template-columns: 1fr;
  }
  .abo_03_1_h3_en{
    font-size: 14vw;
  }
}
@media (max-width: 640px) {
  .abo_03_1_h3_ja{
    margin-block: 10px;
    font-size: 2.8rem;
  }
  .abo_03_2_h3{
    font-size: 1.4rem;
    margin-bottom: 25px;
  }
  .abo_03_2_h4{
    font-size: 2rem;
  }
  .abo_03_2_box1{
    grid-template-columns: 1fr;
  }
  .abo_03_2_box1 dt{
    text-align: center;
    font-size: 1.4rem;
  }
  .abo_03_2_box1 dt span{
    font-size: 1.2rem;
  }
}
/* ===== abo_04 ===== */
.abo_04_line{
  position: absolute;
  top: 0; bottom: 0; left: 0; right: 0;
  margin: auto;
  width: 100vw;
}
.abo_04_wrap{
  display: flex;
  justify-content:space-between;
  gap: 30px;
}
.abo_04_box{
  flex: 1;
  max-width: 500px;
}
.abo_04_box:has(h3){
  max-width: 460px;
}
.abo_04_h3{
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--c-orange);
  margin-top: -0.4em;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: var(--c-darkblue) 1px solid;
  display: block;
}

@media (max-width: 768px) {
  .abo_04_wrap{
    flex-direction: column-reverse;
  }
  .abo_04_box,
  .abo_04_box:has(h3){
    max-width: 100%;
  }
}
@media (max-width: 640px) {
  .abo_04_h3{
    font-size: 1.8rem;
  }
}
/* ===== abo_05 ===== */
.abo_05_in{
  display: flex;
  justify-content:space-between;
  gap: 0 30px;
  margin-bottom: 150px;
  position: relative;
}
.abo_05_box2{
  max-width: 800px;
  width: 100%;
}
.abo_05_table{ /* recruit_new & mid 募集要項 */
  width: 100%;
  border-collapse: collapse;
}
.abo_05_table tr{
  border-bottom: var(--c-darkblue) 1px dashed;
}
.abo_05_table th,
.abo_05_table td{
  padding: 10px 0;
}
.abo_05_table td{
  padding-left: 10px;
}

.abo_05_in2{
  position: relative;
}
.abo_05_wrap{
  display: grid;
  grid-template-columns: auto auto;
  justify-content:space-between;
  gap: 40px 30px;
}
.abo_05_box3{
  flex: 1;
  max-width: 550px;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: 0;
}
.abo_05_2_h3{
  font-size: 2.4rem;
  font-weight: 900;
  margin-block: 15px 10px;
}
.abo_05_btn{
  margin-top: 20px;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
  color: var(--c-white);
  background: var(--c-darkblue);
  border-radius: 99px;
  height: 50px;
  display: flex;
  justify-content:space-between;
  align-items:center;
  padding: 0 30px;
  transition: .3s;
}
.abo_05_btn:hover{
  background: var(--c-blue);
  padding: 0 40px;
}

@media (max-width: 768px) {
  .abo_05_in{
    flex-direction: column;
    margin-bottom: 70px;
  }
  .abo_05_box1,
  .abo_05_box2{
    max-width: 100%;
  }
  .abo_05_wrap{
    grid-template-columns: 1fr;
  }
  .abo_05_box3{
    max-width: 100%;
  }
}
@media (max-width: 640px) {
  .abo_05_table th,
  .abo_05_table td{
    display: block;
  }
  .abo_05_table th{
    padding: 10px 0 0;
  }
  .abo_05_table td{
    padding: 0 0 10px;
  }
  .abo_05_2_h3{
    font-size: 1.8rem;
  }
  .abo_05_btn{
    font-size: 1.6rem;
  }
}
/* ===== abo_06 ===== */
.abo_06_in{
  display: flex;
  justify-content:space-between;
  gap: 0 30px;
  position: relative;
}
.abo_06_h3{
  font-size: 1.8rem;
  font-weight: 900;
}
.abo_06_his{
  display:grid;
  grid-template-columns: 190px 1fr;
  gap: 30px 0;
}
.abo_06_his dt{
  position:relative;
  padding-left: 60px;
}
.abo_06_his dt span{
  font-weight:900;
}
.abo_06_his dt::before{
  content: "";
  position: absolute;
  top: 0.4em; left: 0;
  width: 15px;
  height: 15px;
  background: var(--c-white);
  border: var(--c-darkblue) 1px solid;
  border-radius: 50%;
}
.abo_06_his dt:not(:last-of-type):after{
  position:absolute; 
  content:""; 
  left:7px; top:1.8em;
  width:0; 
  height:100%;
  border-left: var(--c-darkblue) 1px dotted;
}
.abo_06_his dd{
  position: relative;
  text-align: justify;
}

@media (max-width: 768px) {
  .abo_06_in{
    flex-direction: column;
  }
}
@media (max-width: 640px) {
  .abo_06_h3{
    font-size: 1.6rem;
  }
  .abo_06_his{
    grid-template-columns: 1fr;
    gap:  0;
  }
  .abo_06_his dt{
    padding-left: 40px;
  }
  .abo_06_his dt::before{
    width: 12px;
    height: 12px;
  }
  .abo_06_his dt:not(:last-of-type):after{
    border-left: none;
  }
  .abo_06_his dd{
    padding-left: 40px;
    padding-bottom: 20px;
  }
  .abo_06_his dd:not(:last-of-type):after{
    position:absolute; 
    content:""; 
    left:5px; top:0px;  
    width:0; 
    height:100%;
    border-left: var(--c-darkblue) 1px dotted;
  }
}

/* ================================== REAL ================================== */
.real_h2_txt{
  margin-bottom: 50px;
}
@media (max-width: 640px) {
  .real_h2_txt{
    margin-bottom: 30px;
  }
}
/* ===== real_01 ===== */
.real01_wrap{
  display: grid;
  grid-template-columns: auto auto;
  align-items: start;
  gap: 30px 50px;
}
.real01_wrap:not(:last-child){
  margin-bottom: 150px;
}
.real01_box1{
  position: relative;
  max-width: 500px;
  padding-right: 20px;
  padding-bottom: 20px;
}
.real01_namearea{
  position: absolute;
  bottom: 0; right: 0;
  display: inline;
  background: linear-gradient(135deg, #ffede5 10%, #f9e8ef 40%, #e7f1ff 80%);
  padding: 20px;
  font-weight: 900;
  line-height: 1.2;
}
.real01_year{
  display: inline-block;
  color: var(--c-white);
  line-height: 1;
  background: var(--c-blue);
  padding: 5px 10px 6px;
}
.real01_wrap.new .real01_year {
  background: var(--c-orange);
}
.real01_name span{
  font-size: clamp(16px, 8.889px + 0.926vw, 20px);
  padding-right: .5em;
}
.real01_name{
  font-size: clamp(24px, 9.778px + 1.852vw, 32px);
}

.real01_box2{
  display: grid;
  gap: 40px;
}
.real01_area > .real01_wrap:nth-child(even) .real01_box1 {
  order: 2;
}
.real01_area > .real01_wrap:nth-child(even) .real01_box2 {
  order: 1;
}
.real01_q{
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-blue);
  margin-bottom: 10px;
  margin-left: 1em;line-height: 1.5;
}
.real01_wrap.new .real01_q {
  color: var(--c-orange);
}
.real01_q::before{
  content: "Q.";
  margin-left: -1em;
}

@media (max-width: 768px) {
  .real01_wrap{
    grid-template-columns: 1fr;
  }
  .real01_wrap:not(:last-child){
    margin-bottom: 70px;
  }
  .real01_img{
    aspect-ratio: 288/220;
    object-position: 50% 20%
  }
  .real01_area > .real01_wrap:nth-child(even) .real01_box1 {
    order: 1;
  }
  .real01_area > .real01_wrap:nth-child(even) .real01_box2 {
    order: 2;
  }
}
@media (max-width: 640px) {
  .real01_box1{
    padding-right: 12px;
    padding-bottom: 12px;
  }
  .real01_namearea{
    padding: 8px;
  }
  .real01_year{
    font-size: 1.2rem;
  }
  .real01_name span{
    font-size: 1.4rem;
  }
  .real01_name{
    font-size: 2.2rem;
  }
  .real01_q{
    font-size: 1.8rem;
    margin-bottom: 5px;
  }
}
/* ===== real_02 ===== */
.real_02{
  background: linear-gradient(135deg, #ffede5 10%, #f9e8ef 40%, #e7f1ff 80%);
}
.real02_wrap{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(20px, 15.455px + 1.212vw, 30px);
}
[class^="info_"]{
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
.real02_date{
  text-align: right;
  margin-top: 20px;
}

@media (max-width: 768px) {
}
@media (max-width: 640px) {
  .real02_date{
    margin-top: 10px;
  }
}
/* ===== real_03 ===== */
.real03_area{
  display: grid;
  gap: 60px;
}
.real03_wrap{
  position: relative;
  display: grid;
  grid-template-columns: auto auto;
  justify-content:space-between;
  gap: 30px;
  padding-top: 70px;
}
.real03_h3{
  position: absolute;
  top: 0; left: 0;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  width: 250px;
  height: 50px;
  background: linear-gradient(135deg, #ffede5 10%, #f9e8ef 40%, #e7f1ff 80%);
  border-radius: 5px;
  line-height: 50px;
}
.real03_box{
  max-width: 550px;
}
.real03_h4{
  font-size: 2rem;
  font-weight: 700;
  padding-block: 10px 5px;
}

@media (max-width: 768px) {
}
@media (max-width: 640px) {
  .real03_wrap{
    grid-template-columns: 1fr;
    padding-top: 50px;
  }
  .real03_h3{
    font-size: 1.4rem;
    width: 150px;
    height: 35px;
    line-height: 35px;
  }
  .real03_h4{
    font-size: 1.6rem;
  }
}
/* ================================== JOIN ================================== */
/* ===== join_01 ===== */
.join_01_wrap{
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items:start;
  margin-bottom: 150px;
}
.join01_box1{
  display: grid;
  gap: 40px;
  padding-right: 10px;
}
.join01_item{
  display: grid;
  gap: 10px;
}
.join01_h3_wrap{
  display: grid;
  grid-template-columns: auto 1fr;
  align-items:center;
  gap: 10px 20px;
  text-align: left;
  
}
.join01_h3_no{
  font-family: "Oswald", sans-serif;
  font-size: clamp(22px, 17.455px + 1.212vw, 32px);
  font-weight: 700;
  color: var(--c-white);
  background: var(--c-orange);
  width: clamp(35px, 28.182px + 1.818vw, 50px);
  height: clamp(35px, 28.182px + 1.818vw, 50px);
  line-height: clamp(35px, 28.182px + 1.818vw, 50px);
  text-align: center;
}
.join01_h3{
  font-size: clamp(22px, 19.273px + 0.727vw, 28px);
  font-weight: 900;
  line-height: 1.3;
}
.join01_img{
  margin-top: -80px;
  filter: drop-shadow(0px 0px 5px rgba(0,0,0,0.25));
}

.join_01_wrap2{
  position: relative;
  max-width: 1000px;
  width: 100%;
  margin-inline: auto;
  display: flex;
  justify-content:space-between;
  align-items: center;
  margin-bottom: 150px;
}
.join01_2_copy{
  font-size: clamp(16px, 8.727px + 1.939vw, 32px);
  font-weight: 900;
  color: var(--c-white);
  line-height: 2.3;
	display: inline;
	padding: .2em .5em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  background: linear-gradient(90deg, #ff5000 0%, #c11862 30%, #334778 100%);
}

@media (max-width: 768px) {
  .join_01_wrap{
    grid-template-columns: 1fr;
    justify-items: center;
    gap:80px;
    margin-bottom: 60px;
  }
  .join01_box1{
    order: 2;
    padding-right: 0;
  }
  .join01_box2{
    order: 1;
    text-align: center;
  }
  .join01_img{
    margin-top: 0;
  }
}
@media (max-width: 640px) {
  .join_01_wrap2{
    flex-direction: column-reverse;
    gap: 40px;
    margin-bottom: 70px;
  }
  .join01_h3_wrap{
    grid-template-columns: auto;
  }
  .join01_2_img{width: 85px;}
}

/* ========== FAQ ==========*/
.faq_wrap{
  display: grid;
  gap:20px;
  max-width: 1000px;
  margin-inline: auto;
}
.toggle {
  display:none;
}
.faq-cont {
  position:relative;
}
.question,
.answer {
  -webkit-backface-visibility:hidden;
  backface-visibility:hidden;
  transform:translateZ(0);
  transition:all 0.3s;
}
.question{
  margin:0;
  padding:0;
  width:100%;
  min-height:58px;
  display:flex;
  align-items:center;
  align-content:center;
  background: var(--c-darkblue);
  border: var(--c-darkblue) 1px solid;
  border-radius: 10px;
  color: var(--c-white);
  line-height: 1.3;

}

.question:after{
  content:"";
  width:20px;
  height:20px;
  background: url(img/faq_arrow.svg) no-repeat center / contain;
  position:absolute;
  right:30px; top:0; bottom: 0;
  margin: auto;
  transition:all 0.3s;
  z-index:1;
}
.question h3{
  position:relative;
  padding:10px 30px;
  padding-right: 60px;
  width:100%;
  font-weight:700;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.3;
  text-align: left;
}
@media (max-width: 640px) {
  .question:after{
    width: 15px;
    height: 15px;
    right: 20px;
  }
  .question h3{
    padding-inline: 20px 45px;
  }
}
.question h3::before{
  content:"Q.";
  font-family: "Oswald", sans-serif;
  font-size: 2.4rem;
}

.answer {
  max-height:0;
  overflow: hidden;
  text-align: justify;
}
.a_wrap {
  margin-top: 5px;
  padding:20px 30px;
  width:100%;
  border: var(--c-darkblue) 1px solid;
  border-radius: 10px;
  font-size: 1.4rem;
}
.toggle:checked + .question + .answer {
  max-height: 1200px;
  transition: all 1.5s;
}
.toggle:checked + .question:after {
  transform: rotate(90deg) !important;
}
/* ===== join_02 ===== */
.join_02{
  background: linear-gradient(135deg, #ffede5 10%, #f9e8ef 40%, #e7f1ff 80%);
}
.join02_h2.cmn_h2 h2{
  flex-direction: column;
    align-items: center;
}

.join02_h3{
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 30px;
}
.join02_h3 h3{
  display: flex;
  flex-wrap: wrap;
  align-items:center;
  gap: 2px 20px;
}
.join02_h3 span{
  font-size: 2rem;
  font-weight: 700;
}

.join02_btn{
  font-weight: 700;
  color: var(--c-white);
  max-width: 475px;
  width: 100%;
  height: 58px;
  padding-inline: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--c-orange);
  border-radius: 10px;
  margin-bottom: 100px;
  transition: .3s;
}
.join02_btn:hover{
  background: var(--c-darkblue);
  padding-inline: 35px;
}
.join02_btn::after{
  content: "";
  width: 20px;
  height: 20px;
  background: url(img/faq_arrow.svg) no-repeat center / contain;
}
@media (max-width: 640px) {
  .join02_h2.cmn_h2{
    margin-bottom: 50px;
  }
  .join02_h3{
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
  .join02_h3 h3{
    flex-direction: column;
    align-items: flex-start;
  }
  .join02_h3 span{
    font-size: 1.4rem;
  }
  .join02_btn{
    margin-bottom: 50px;
  }
}

/* ================================== recruit new & mid ================================== */
/* recruit head */
.rec_head_wrap{
  display: grid;
  justify-items: start;
  gap: 10px;
  line-height: 1.2;
}
.rec_head_label{
  font-size: clamp(14px, 8.275px + 1.527vw, 20px);
  font-weight: 900;
  color: var(--c-white);
  padding: .15em .7em .3em;
  background: var(--c-orange);
	animation:left-in 1.5s ease 0.8s 1 forwards; opacity:0;
}
.recruit-mid .rec_head_label{
  background: var(--c-blue);
}
.rec_h1{
  font-size: clamp(26px, -2.626px + 7.634vw, 56px);
  font-weight: 900;
	animation:left-in 1.5s ease 1.2s 1 forwards; opacity:0;
}

.rec_02,
.rec_03{
  margin-top: 150px;
}
@media (max-width: 640px) {
  .rec_02,
  .rec_03{
    margin-top: 70px;
  }
}

/* ===== rec_01 ===== */
.rec01_wrap{
  display: grid;
  grid-template-columns: 45% 50%;
justify-content:space-between;
  gap: 30px 5%;
}
.rec01_img{
  aspect-ratio: 54/31;
}
.rec01_txt{
  margin-top: -0.4em;
}
@media (max-width: 768px) {
  .rec01_wrap{
    grid-template-columns: 1fr;
  }
  .rec01_img{
    aspect-ratio: 300/207;
  }
}
/* ===== rec_02 ===== */
.rec02_wrap{
  padding: 30px 20px 20px;
  background: linear-gradient(135deg, #ffede5 10%, #f9e8ef 40%, #e7f1ff 80%);
  border-radius: 10px;
  display: grid;
  place-content: center;
}
.rec02_h3{
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--c-white);
  line-height: 1.2;
  text-align: center;
  background: var(--c-darkblue);
  display: grid;
  width: 13em;
  height: 40px;
  align-content:center;
  margin-top: 50px;
  margin-inline: auto;
}
.rec02_wrap_02{
  margin-top: -20px;
  border: var(--c-darkblue) 1px solid;
  border-radius: 10px;
  padding-inline: clamp(20px, 3.240px + 4.469vw, 60px);
  padding-block: 80px 50px;
  display: grid;
  grid-template-columns: 32% 1fr;
  gap: 25px 5%;
}
@media (max-width: 768px) {
  .rec02_wrap_02{
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .rec02_wrap{
    border-radius: 5px;
  }
  .rec02_h3{
    font-size: 1.6rem;
    margin-top: 25px;
  }
  .rec02_wrap_02{
    padding-block: 40px 30px;
  }
}

/* ========== 1日の流れ ==========*/
.schedule{
  display:grid;
  grid-template-columns: 120px 1fr;
  gap: 30px 20px;
}
.schedule dt{
  position:relative;
}
.schedule dt span{
  display: grid;
  place-content: center;
  height: 40px;
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight:700; 
  color:var(--c-darkblue); 
  background: var(--c-lightblue);
  border-radius: 99px;
}
.schedule dt:not(:last-of-type):after{
  position:absolute; 
  content:""; 
  left:0;right:-1px; top:40px; 
  margin:auto; 
  width:0; 
  height:calc(100% + 12px);
  border-left: var(--c-darkblue) 1px dotted;
}
.schedule dd{
  line-height:1.5;
  text-align: justify;
}
.schedule h4{
  font-weight: 900;
}
@media (max-width: 640px) {
  .schedule{
    grid-template-columns: 60px 1fr;
    gap: 20px 15px;
  }
  .schedule dt span{
    height: 30px;
    font-size: 1.4rem;
  }
  .schedule dt:not(:last-of-type):after{
    top: 30px;
  }
}
/* ===== rec_03 ===== */
.rec03_wrap{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 60px;
}
.rec03_wrap.flow_mid{
  grid-template-columns: repeat(5, 1fr);
}
.rec03_box{
  display: grid;
  align-content:start;
  gap: 10px 20px;
  text-align: center;
}
.rec03_img_wrap{
  position: relative;
  display: grid;
  place-content: center;
  border: var(--c-darkblue) 3px solid;
  border-radius: 10px;
  padding: 15px;
  height: 150px;
}
.rec03_box:last-child .rec03_img_wrap{
  background: var(--c-darkblue);
}
.rec03_box:not(:last-child) .rec03_img_wrap::after{
  position: absolute;
  top: 0; bottom: 0; right: -36px;
  margin: auto;
  content: "";
  width: 18px;
  height: 18px;
  border-top: var(--c-darkblue) 3px solid;
  border-right: var(--c-darkblue) 3px solid;
  transform: rotate(45deg);
}
.rec03_img{
  height: clamp(30px, 10.916px + 5.089vw, 50px);
}
.rec03_txt{
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.3;
}.rec03_txt span{
  font-size: 1.6rem;
  font-weight: 400;
  display: block;
}

@media (max-width: 768px) {
  .rec03_wrap,
  .rec03_wrap.flow_mid{
    grid-template-columns: 1fr;
  }
  .rec03_box{
    grid-template-columns: 1fr 11em;
    align-items: center;
    text-align: left;
  }
  .rec03_box:not(:last-child) .rec03_img_wrap::after{
    top: auto; left: 0; right: 0; bottom: -21px;
    width: 18px; height: 18px;
    transform: rotate(135deg);
  }
  .rec03_img_wrap{
    height: auto;
  }
}
@media (max-width: 640px) {
  .rec03_txt{
    font-size: 1.6rem;
  }
  .rec03_txt span{
    font-size: 1.4rem;
  }
}
/* ===== rec_04 ===== */
.rec_04{
  background: linear-gradient(135deg, #ffede5 10%, #f9e8ef 40%, #e7f1ff 80%);
}
.rec04_wrap{
  max-width: 1000px;
  margin-inline: auto;
  padding: 50px;
  background: var(--c-white);
  border: var(--c-darkblue) 1px solid;
  border-radius: 20px;
}


@media (max-width: 768px) {
}
@media (max-width: 640px) {
}
/* ===== rec_05 ===== */
.rec05_txt{
  margin-bottom: 50px;
}

@media (max-width: 768px) {
}
@media (max-width: 640px) {
}


.zzz{
    background: linear-gradient(135deg, #ffede5 10%, #f9e8ef 40%, #e7f1ff 80%);
}


/* ================================== contact ================================== */
/* =====  ===== */

@media (max-width: 768px) {
}
@media (max-width: 640px) {
}

/* ========== 募集要項 ==========*/
/* ========== snow monkey form ==========*/
button,
input,
select,
textarea {
  -webkit-appearance: auto;
  appearance: auto;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea{
  margin-top:-1px;
  padding:10px;
  width:100%;
  background: var(--c-lightblue);
  color: var(--c-darkblue);
  border-radius: 5px;
}
input[type="checkbox"],
input[type="radio"]{
  margin:-4px 3px 0 0;
  cursor: pointer;
  vertical-align: initial;
}

.smf-radio-button-control__control{
  display: none;
}
.smf-label {
  display: none;
}
.smf-label:has(input[type="radio"]:checked) {
  display: block;
}
.smf-label:has(input[type="checkbox"]) {
  display: grid;
  justify-items: center;
  margin-top: -25px;
}

.smf-form{
  display: grid;
  gap: 30px;
}
.smf-item{
  display: grid;
  gap: 5px;
}
.smf-item__col--label{
  font-weight: 700;
}
.smf-item__col--controls{
}
.privacy .smf-item__col--controls,
.privacy_check .smf-item__col--controls{
  width: 100%;
  text-align: center;
}
.privacy .smf-item__col--controls p{
  line-height: 1.5;
}
.privacy a{
  text-decoration: underline;
  color: var(--c-orange);
}
.smf-radio-buttons-control__control{
  display: flex;
  gap:10px 30px;
}
.smf-action{
  display: flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:20px;
}
.submit,
.smf-action .smf-button-control__control{
  margin-top: 50px;
  width: 300px;
  height: 60px;
  border-radius: 99px;
  font-weight: 700;
  color: #fff;
  transition: all .3s ease-in-out;
  background: url(img/top05_btn_back.svg) no-repeat left center;
  padding-inline: 25px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.submit:hover,
.smf-action .smf-button-control__control:hover{
  background: url(img/top05_btn_back.svg) no-repeat right center;
  padding-inline: 35px;
}

/* ===== 必須項目 ===== */
.smf-item__label__text {
  position: relative;
}
.smf-item:has([data-validations~="required"]) .smf-item__label__text::after {
  content: "*";
  color: #f22;
  padding-left: 3px;
}
span.required{
  color: #f22;
}
/* ===== form 追加css ===== */

@media (max-width: 768px) {
}
@media (max-width: 640px) {
}
/* ================================== privacy ================================== */
.pri_box{
  margin-bottom: 70px;
}
.pri_h2{
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 20px;
}
/* ========== 特殊リスト 1.2.3.>(ア)(イ)(ウ)>①②③ ==========*/
ol{
  list-style-type: none;
  padding-left: 0;
  counter-reset: custom-counter;
}
ol.no_list>li,
ol.kana_list>li,
ol.maru_no_list>li{
  margin: 0;
  padding-left: 2.5em;
  position: relative;
}
ol.no_list>li::before{
  counter-increment: custom-counter;
  content: counter(custom-counter) ".";
  position: absolute;
  left: 0;
}
ol.kana_list>li:nth-child(1):before{
  counter-increment: katakana-parens;
  content: "（ア）";
  position: absolute;
  left: 0;
}
ol.kana_list>li:nth-child(2):before{
  counter-increment: katakana-parens;
  content: "（イ）";
  position: absolute;
  left: 0;
}
ol.kana_list>li:nth-child(3):before{
  counter-increment: katakana-parens;
  content: "（ウ）";
  position: absolute;
  left: 0;
}
ol.kana_list>li:nth-child(4):before{
  counter-increment: katakana-parens;
  content: "（エ）";
  position: absolute;
  left: 0;
}
ol.kana_list>li:nth-child(5):before{
  counter-increment: katakana-parens;
  content: "（オ）";
  position: absolute;
  left: 0;
}
ol.kana_list>li:nth-child(6):before{
  counter-increment: katakana-parens;
  content: "（カ）";
  position: absolute;
  left: 0;
}
ol.kana_list>li:nth-child(7):before{
  counter-increment: katakana-parens;
  content: "（キ）";
  position: absolute;
  left: 0;
}
ol.kana_list>li:nth-child(8):before{
  counter-increment: katakana-parens;
  content: "（ク）";
  position: absolute;
  left: 0;
}
ol.kana_list>li:nth-child(9):before{
  counter-increment: katakana-parens;
  content: "（ケ）";
  position: absolute;
  left: 0;
}
ol.kana_list>li:nth-child(10):before{
  counter-increment: katakana-parens;
  content: "（コ）";
  position: absolute;
  left: 0;
}

ol.maru_no_list>li:nth-child(1):before{
  counter-increment: katakana-parens;
  content: "①";
  position: absolute;
  left: 0;
}
ol.maru_no_list>li:nth-child(2):before{
  counter-increment: katakana-parens;
  content: "②";
  position: absolute;
  left: 0;
}
ol.maru_no_list>li:nth-child(3):before{
  counter-increment: katakana-parens;
  content: "③";
  position: absolute;
  left: 0;
}
ol.maru_no_list>li:nth-child(4):before{
  counter-increment: katakana-parens;
  content: "④";
  position: absolute;
  left: 0;
}
ol.maru_no_list>li:nth-child(5):before{
  counter-increment: katakana-parens;
  content: "⑤";
  position: absolute;
  left: 0;
}
ol.maru_no_list>li:nth-child(6):before{
  counter-increment: katakana-parens;
  content: "⑥";
  position: absolute;
  left: 0;
}
ol.maru_no_list>li:nth-child(7):before{
  counter-increment: katakana-parens;
  content: "⑦";
  position: absolute;
  left: 0;
}
ol.maru_no_list>li:nth-child(8):before{
  counter-increment: katakana-parens;
  content: "⑧";
  position: absolute;
  left: 0;
}
ol.maru_no_list>li:nth-child(9):before{
  counter-increment: katakana-parens;
  content: "⑨";
  position: absolute;
  left: 0;
}
ol.maru_no_list>li:nth-child(10):before{
  counter-increment: katakana-parens;
  content: "⑩";
  position: absolute;
  left: 0;
}


@media (max-width: 768px) {
}
@media (max-width: 640px) {
}



/* ==================================  ================================== */
/* =====  ===== */

@media (max-width: 768px) {
}
@media (max-width: 640px) {
}

