@charset "utf-8";
:root {
  --color-primary: #0F3675;
  --color-secondary: #EDF0FE;
  --color-tertiary: #FFFAE0;
  --color-background: #F4F6FF;
  --color-black: #313131;
  --color-gray01: #999999;
  --color-gray02: #DDDDDD;
  --color-gray03: #F5F5F5;
  --color-white: #FFFFFF;
  --color-accent01: #276BD9;
  --color-accent02: #FCDF45;
  --color-accent03: #FF605F;
  --color-red: #FF0000;
  --color-orange: #F5B221;
  --rp120: 120px;
  --rp100: 100px;
  --rp80: 80px;
  --rp60: 60px;
  --rp40: 40px;
  --rp20: 20px;
  --margin-big: 120px;
  --margin-middle: 60px;
  --margin-small: 20px;
  --margin-col: 40px;
  --container-w1: 60px;
  --container-w2: 30px;
  --header-hight: 80px;
  --font01:"Noto Sans JP", sans-serif;
  --font02:"Mohave", sans-serif;
}
@media screen and (max-width: 768px) {
  :root {
    --rp120: 100px;
    --rp100: 80px;
    --rp80: 60px;
    --rp60: 40px;
    --rp40: 20px;
    --margin-big: 80px;
    --margin-middle: 32px;
    --margin-col: 20px;
    --container-w1: 32px;
  }
}
@media screen and (max-width: 480px) {
  :root {
    --container-w2: 20px;
  }
}
/*====================================================================
　Commons
====================================================================*/
html, body {
  width: 100%;
  word-wrap: break-word;
  word-break: break-all;
}
@media screen and (max-width: 768px) {
  html, body {
    font-size: 16px;
  }
}
@media screen and (max-width: 560px) {
  html, body {
    font-size: 14px;
  }
}
body{
  color: var(--color-black);
  font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  line-height: 1.8;
  background: #FFF;
  font-weight: 400;
}
img {
  display: block;
  max-width: 100%;
  image-rendering: -webkit-optimize-contrast;
}
::-webkit-full-page-media, :future, :root img{
  image-rendering: auto;
}
svg {
  fill: currentColor;
  max-width: 100%;
}
p:not(:first-child) {
  margin: var(--rp20) 0 0;
}
input, 
button, 
select, 
textarea {
  font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
}
input, 
select, 
textarea {
  background: #FFF;
}
*:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #333;
}
/*
link
---------------------------------------------------------*/
a {
  transition: all .3s ease;
}
a:link {
  color: var(--color-black);
  text-decoration: none;
}
a:visited {
  color: var(--color-black);
  text-decoration: none;
}
@media (hover: hover) {
  a:hover {
    color: var(--color-accent01);
    font-weight: 700;
  }
}
@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/*
navskip
---------------------------------------------------------*/
.navskip { display: none; }
/*====================================================================
Layout……各ページを構成するサイト全体で共通したエリアを管理
====================================================================*/
/*----------------------------------------*/
.l-pagetop {
  position: fixed;
  bottom: 20px;
  right: 0;
  z-index: 100;
}
.l-pagetop a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: var(--color-primary);
  border-radius: 0;
  color: var(--color-white);
}
.l-pagetop a img {
  transform: rotate(-90deg);
  width: 24px;
}
.l-pagetop a:hover {
  text-decoration: none !important;
  background-color: var(--color-accent01);
}
/*----------------------------------------*/
.l-container01 {
  margin: var(--rp100) 0;
}
.l-container01.bg01 {
  background: var(--color-tertiary);
  margin: 0;
  padding: var(--margin-big) 0;
}
.l-container01.bg__contact {
  background: var(--color-tertiary);
  margin: 0;
  padding: var(--margin-middle) 0;
}
/*----------------------------------------*/
.l-section01 {
  max-width: calc(1200px + (var(--container-w1) * 2));
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--container-w1);
}
.l-section02 {
  max-width: calc(1620px + (var(--container-w1) * 2));
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--container-w1);
}
.l-section02.border {
  border-top: 1px solid var(--color-gray01);
  padding-top: var(--rp100);
}
.l-section02__inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
/*----------------------------------------*/
.l-footer__inner{
  display: flex;
  justify-content: space-between;
  gap: var(--rp40);
  flex-wrap: wrap;
  padding: var(--container-w1);
}
.l-footer__area01{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.l-footer__logo a{
  display: flex;
}
.l-footer__logo a:hover{
  opacity: .6;
}
.l-footer__logo .l-logo__img{
  color: var(--color-primary) !important;
}
.l-footer__logo .l-logo__img .img{
  background-image: url(/recruit_site/img/common/logo02_s.png) !important;
}
.l-footer__exlink a{
  font-weight: 700;
  display: inline-block;
  position: relative;
  line-height: calc(1em + 8px);
}
.l-footer__exlink a::after{
  content: "";
  display: inline-block;
  vertical-align: text-bottom;
  margin-left: 4px;
  top: 0;
  width: 24px;
  height: 24px;
  background: url(/recruit_site/img/common/ico_link_external02.svg) center center / 100% auto no-repeat;
}
.l-footer__menu__area{
  display: flex;
  flex-wrap: wrap;
  gap: var(--rp40);
}
.l-footer__menu{
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.l-footer__menu > div:first-of-type > a{
  font-weight: 700;
  display: inline-flex;
  font-size: 16px;
  line-height: calc(1em + 8px);
  align-items: center;
  gap: 8px;
}
.l-footer__menu > div:first-of-type > a::after{
  content: "";
  width: 16px;
  height: 16px;
  background: url(/recruit_site/img/common/ico_arrow01_b.svg) center center / 100% auto no-repeat;
  transition: .2s ease-in-out;
}
@media (hover: hover) {
  .l-footer__menu > div:first-of-type > a:hover::after{
    transform: translateX(4px);
    transition: .2s ease-in-out;
  }
}
.l-footer__childmenu a{
  font-size: 14px;
  line-height: calc(1em + 10px);
}
.l-footer__bottom{
  border-top: 1px solid var(--color-gray02);
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: var(--rp40);
  flex-wrap: wrap;
  padding: 40px var(--container-w1);
}
.l-footer__bottom .copyright{
  font-size: 14px;
  line-height: calc(1em + 10px);
  margin: 0;
}
.l-footer__bottom__area01 > ul{
  display: flex;
  gap: var(--rp40);
}
.l-footer__bottom__area01 > ul a{
  font-size: 14px;
  line-height: calc(1em + 10px);
}
@media screen and (max-width: 1080px) {
  .l-footer__menu__area{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media screen and (max-width: 768px) {
  .l-footer{
    margin-top: var(--margin-big);
  }
  .l-footer__menu__area{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .l-footer__bottom{
    padding: 40px 60px 40px 30px;
  }
}
@media screen and (max-width: 560px) {
  .l-footer__area01{
    width: 100%;
  }
  .l-footer__logo a{
    justify-content: center;
  }
  .l-footer__logo .l-logo__img{
    flex-direction: column;
    align-items: center;
  }
  .l-footer__logo .l-logo__img .img{
    width: 200px;
  }
  .l-footer__logo .l-logo__img .text{
    font-size: 16px;
  }
  .l-footer__exlink{
    text-align: center;
  }
  .l-footer__menu > div:first-of-type > a{
    font-size: 16px;
  }
  .l-footer__childmenu{
    display: none;
  }
  .l-footer__menu__area{
    margin-top: var(--rp40);
    display: flex;
    flex-direction: column;
  }
  .l-footer__bottom{
    justify-content: flex-end;
    padding: 20px 60px 20px 30px;
  }
  .l-footer__bottom__area01 > ul{
    display: flex;
    flex-direction: column;
  }
  .l-footer__bottom .copyright{
    font-size: 12px;
  }
}
/*----------------------------------------*/
.l-sub__nav__title{
  margin-left: 20px;
  margin-bottom: 20px;
  font-size: 1.2em;
  font-weight: 700;
}
.l-sub__nav__menu{
  margin-left: 20px;
}
.l-sub__nav__menu > li{
  margin-bottom: 10px;
}
.l-sub__nav__menu > li a{
  color: var(--color-primary);
}
@media screen and (max-width: 1080px) {
  .l-sub__nav__menu{
    margin-left: 0;
    padding: 20px;
    border-top: 1px solid var(--color-secondary);
    border-bottom: 1px solid var(--color-secondary);
  }
}
/*----------------------------------------*/
.l-2column{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1240px;
  width: 100%;
  margin: var(--margin-middle) auto var(--margin-big);
  padding: 0 var(--container-w1);
}
.l-2column__main{
  width: 75%;
}
.l-2column__main .l-container01:first-child{
  margin-top: 0;
  margin-bottom: 0;
}
.l-2column__sub{
  width: calc(25% - 40px);
  border-left: 1px solid var(--color-secondary);
}
@media screen and (max-width: 1080px) {
  .l-2column__main{
    width: 100%;
  }
  .l-2column__sub{
    width: 100%;
    border: none;
    margin-top: var(--margin-big);
  }
}
/*----------------------------------------*/
.l-row {
  display: flex;
  flex-wrap: wrap;
}
.l-row__reverse {
  flex-direction: row-reverse;
}
.l-row__center {
  align-items: center;
}
.l-row__jcenter {
  justify-content: center;
}
.l-row__jspaceb {
  justify-content: space-between;
}
.l-row__childflex1 {
  flex: 1;
}
.l-row .col_img_txt{
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.l-row .col_img_txt > li {
  margin: 0 calc(var(--margin-col) / 2);
}
.l-row .col_img_txt > li:first-child {
  margin-left: 0;
}
.l-row .col_img_txt > li:last-child {
  margin-right: 0;
}
.l-row .col_img_txt > li img {
  margin: auto;
}
@media screen and (max-width: 768px) {
  .l-row .col_img_txt{
    display: block;
  }
  .l-row .col_img_txt > li {
    margin: 0;
  }
  .l-row .col_img_txt > li:first-child {
    margin-bottom: var(--margin-col);
  }
  .l-row .col_img_txt > li:last-child {
    margin: 0;
  }
  .l-row .col_img_txt > li img {
    margin: auto;
  }
}
.l-row .col0{
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.l-row .col0 > li {
  margin: 0 calc(var(--margin-col) / 2);
}
.l-row .col0 > li:first-child {
  margin-left: 0;
}
.l-row .col0 > li:last-child {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .l-row .col0{
    display: block;
  }
  .l-row .col0 > li {
    margin: 0;
  }
  .l-row .col0 > li:first-child {
    margin-bottom: var(--margin-col);
  }
  .l-row .col0 > li:last-child {
    margin: 0;
  }
}
.l-row .col2{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: calc( var(--margin-col) * -1);
}
.l-row .col2 > li {
  width: calc(100% / 2 - (var(--margin-col) / 2));
  margin-right: var(--margin-col);
  margin-bottom: var(--margin-col);
}
.l-row .col2 > li:nth-child(2n) {
  margin-right: 0;
}
@media screen and (max-width: 480px) {
  .l-row .col2 > li {
    width: 100%;
    margin-right: 0 !important;
  }
}
.l-row .col2__2{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: calc( var(--margin-col) * -1);
}
.l-row .col2__2 > li {
  margin-bottom: var(--margin-col);
}
.l-row .col2__2 > li.text > p {
  margin: initial;
}
.l-row .col2__2 > li.text {
  width: calc(( (100% / 3) * 2 ) - (var(--margin-col) / 2));
}
.l-row .col2__2 > li.img {
  width: calc(( (100% / 3) * 1 ) - (var(--margin-col) / 2));
}
@media screen and (max-width: 480px) {
  .l-row .col2__2 > li.text {
    width: 100%;
  }
  .l-row .col2__2 > li.img {
    width: 100%;
  }
}
.l-row .col3{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: calc( var(--margin-col) * -1);
}
.l-row .col3 > li {
  width: calc(100% / 3 - ((var(--margin-col) * 2 ) / 3));
  margin-right: var(--margin-col);
  margin-bottom: var(--margin-col);
}
.l-row .col3 > li:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .l-row .col3 > li {
    width: calc(100% / 2 - (var(--margin-col) / 2));
  }
  .l-row .col3 > li:nth-child(odd) {
    margin-right: var(--margin-col);
  }
  .l-row .col3 > li:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 480px) {
  .l-row .col3 > li {
    width: 100%;
    margin-right: 0 !important;
  }
}
.l-row .col4{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: calc( var(--margin-col) * -1);
}
.l-row .col4 > li {
  width: calc(100% / 4 - ((var(--margin-col) * 3 ) / 4));
  margin-right: var(--margin-col);
  margin-bottom: var(--margin-col);
}
.l-row .col4 > li:nth-child(4n) {
  margin-right: 0;
}
@media screen and (max-width: 1080px) {
  .l-row .col4 > li {
    width: calc(100% / 3 - ((var(--margin-col) * 2 ) / 3));
  }
  .l-row .col4 > li:nth-child(4n) {
    margin-right: var(--margin-col);
  }
  .l-row .col4 > li:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .l-row .col4 > li {
    width: calc(100% / 2 - (var(--margin-col) / 2));
  }
  .l-row .col4 > li:nth-child(3n) {
    margin-right: var(--margin-col);
  }
  .l-row .col4 > li:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 480px) {
  .l-row .col4 > li {
    width: 100%;
    margin-right: 0 !important;
  }
}
.l-row .col5{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: calc( var(--margin-col) * -1);
}
.l-row .col5 > li {
  width: calc(100% / 5 - ((var(--margin-col) * 4 ) / 5));
  margin-right: var(--margin-col);
  margin-bottom: var(--margin-col);
}
.l-row .col5 > li:nth-child(5n) {
  margin-right: 0;
}
@media screen and (max-width: 1080px) {
  .l-row .col5 > li {
    width: calc(100% / 3 - ((var(--margin-col) * 2 ) / 3));
  }
  .l-row .col5 > li:nth-child(5n) {
    margin-right: var(--margin-col);
  }
  .l-row .col5 > li:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .l-row .col5 > li {
    width: calc(100% / 2 - (var(--margin-col) / 2));
  }
  .l-row .col5 > li:nth-child(3n) {
    margin-right: var(--margin-col);
  }
  .l-row .col5 > li:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 480px) {
  .l-row .col5 > li {
    width: 100%;
    margin-right: 0 !important;
  }
}
.l-row .col6{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: calc( var(--margin-col) * -1);
}
.l-row .col6 > li {
  width: calc(100% / 6 - ((var(--margin-col) * 5 ) / 6));
  margin-right: var(--margin-col);
  margin-bottom: var(--margin-col);
}
.l-row .col6 > li:nth-child(6n) {
  margin-right: 0;
}
@media screen and (max-width: 1080px) {
  .l-row .col6 > li {
    width: calc(100% / 3 - ((var(--margin-col) * 2 ) / 3));
  }
  .l-row .col6 > li:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .l-row .col6 > li {
    width: calc(100% / 2 - (var(--margin-col) / 2));
  }
  .l-row .col6 > li:nth-child(3n) {
    margin-right: var(--margin-col);
  }
  .l-row .col6 > li:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 480px) {
  .l-row .col6 > li {
    width: 100%;
    margin-right: 0 !important;
  }
}
/*====================================================================
Project……再利用予定のないプロジェクト固有のスタイルを管理
====================================================================*/
/*----------------------------------------*/
.p-topcontent01{
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  position: relative;
  margin: 0 !important;
  overflow: hidden;
}
.p-topcontent01::before{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  background: url(/recruit_site/img/top/img_deco01.png) bottom center / 100% auto no-repeat;
  width: 100%;
  aspect-ratio: 1 / 0.276;
}
.p-topcontent01 .decoration{
  background: url(/recruit_site/img/top/img_deco_anime01.svg) center right / 300% 100% no-repeat;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 1 / 0.276;
  z-index: 1;
}
.p-topcontent01.animeTrigger.animetion .decoration{
  background: url(/recruit_site/img/top/img_deco_anime01.svg) center right / 0 100% no-repeat;
  transition: background 2s ease-in-out;
}
.p-topcontent01 > section{
  display: flex;
  flex-direction: column;
  gap: var(--rp40);
  position: relative;
  padding: var(--margin-big) var(--container-w1);
  z-index: 2;
  opacity: 0;
  transform: translateY(120px);
}
.p-topcontent01.animeTrigger.animetion section{
  opacity: 1;
  transform: translateY(0);
  transition: 1.6s ease-in-out;
}
.p-topcontent01 > section > h2{
  font-size: 40px;
  font-weight: 700;
  line-height: calc(1em + 16px);
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}
.p-topcontent01 > section > h2 > br{
  display: none;
}
.p-topcontent01 > section > p{
  margin: 0;
}
@media screen and (max-width: 768px) {
.p-topcontent01{
  min-height: initial;
}
.p-topcontent01 > section > h2{
  margin-bottom: var(--rp40);
}
}
@media screen and (max-width: 680px) {
  .p-topcontent01 > section > h2{
    justify-content: flex-start;
  }
  .p-topcontent01 > section > h2 > br{
    display: block;
  }
}
@media screen and (max-width: 560px) {
  .p-topcontent01 > section > h2{
    font-size: 32px;
  }
}
/*----------------------------------------*/
.p-topcontent02{
  position: relative;
  overflow: hidden;
  margin: auto;
}
.p-topcontent02 section{
  position: relative;
    z-index: 1;
}
.p-topcontent02__img{
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  opacity: 0;
  transform: translateX(120px);
}
.p-topcontent02__img > img{
  max-block-size:initial;
  max-width: initial;
  height: 100%;
}
.p-topcontent02.animeTrigger.animetion .p-topcontent02__img{
  opacity: 1;
  transform: translateX(0);
  transition: 1.6s ease-in-out;
}
.p-topcontent02__area{
  display: flex;
  position: relative;
}
.p-topcontent02__inner{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 10vw 0;
  opacity: 0;
  transform: translateY(120px);
}
.p-topcontent02__inner > p{
  margin: 0;
}
.p-topcontent02.animeTrigger.animetion .p-topcontent02__inner{
  opacity: 1;
  transform: translateY(0);
  transition: 1.6s ease-in-out;
}
@media screen and (max-width: 1080px) {
  .p-topcontent02__inner{
    padding: var(--margin-big) 0;
  }
  .p-topcontent02.animeTrigger.animetion .p-topcontent02__img{
    position: relative;
  }
  .p-topcontent02.animeTrigger.animetion .p-topcontent02__img > img{
    margin: auto;
    max-width: 100%;
    max-block-size:100%;
    height: initial;
  }
}
/*----------------------------------------*/
.p-topcontent03{
  overflow: hidden;
  position: relative;
  margin: 0;
  padding: var(--margin-big) 0;
  z-index: 1;
}
.p-topcontent03::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  background: url(/recruit_site/img/top/img_deco02.png) top center / 100% auto no-repeat;
  width: 100%;
  aspect-ratio: 1 / 0.197;
}
.p-topcontent03 .decoration{
  background: url(/recruit_site/img/top/img_deco_anime02.svg) center left / 300% 100% no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 1 / 0.197;
  z-index: 1;
}
.p-topcontent03.animeTrigger.animetion .decoration{
  background: url(/recruit_site/img/top/img_deco_anime02.svg) center left / 0 100% no-repeat;
  transition: background 1.5s ease-in-out;
}
.p-topcontent03 section{
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(120px);
}
.p-topcontent03.animeTrigger.animetion section{
  opacity: 1;
  transform: translateY(0);
  transition: 1.6s ease-in-out;
}
.p-topcontent03 .c-title01{
  margin-bottom: -40px;
}
@media screen and (max-width: 560px) {
  .p-topcontent03 .c-title01{
    margin-bottom: -32px;
  }
}
@media screen and (max-width: 360px) {
  .p-topcontent03 .c-title01{
    margin-bottom: 12px;
  }
}
/*----------------------------------------*/
.p-topcontent04{
  margin: 0;
  padding-bottom: var(--margin-big);
  position: relative;
  z-index: 0;
}
.p-topcontent04::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  background: url(/recruit_site/img/top/img_deco03.png) top center / 100% auto no-repeat;
  width: 100%;
  aspect-ratio: 1 / 0.157;
}
.p-topcontent04 .decoration{
  background: url(/recruit_site/img/top/img_deco_anime01.svg) center right / 300% 100% no-repeat;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 1 / 0.4097;
  z-index: 1;
}
.p-topcontent04.animeTrigger.animetion .decoration{
  background: url(/recruit_site/img/top/img_deco_anime01.svg) center right / 0 100% no-repeat;
  transition: background 1.5s .6s ease-in-out;
}
.p-topcontent04 .l-section01{
  position: relative;
  z-index: 1;
}
.p-topcontent04 section{
  opacity: 0;
  transform: translateY(120px);
}
.p-topcontent04.animeTrigger.animetion section{
  opacity: 1;
  transform: translateY(0);
  transition: 1.6s ease-in-out;
}
/*----------------------------------------*/
.p-topcontent05{
  margin: 0;
  padding: var(--margin-big) 0;
  position: relative;
  background: url(/recruit_site/img/top/img_topdata01.png) top center / cover no-repeat;
  opacity: 0;
  transform: translateY(120px);
}
.p-topcontent05.animeTrigger.animetion{
  opacity: 1;
  transform: translateY(0);
  transition: 1.6s ease-in-out;
}
/*----------------------------------------*/
.p-topcontent06{
  margin: 0;
  padding: var(--margin-big) 0;
  position: relative;
}
.p-topcontent06::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  background: url(/recruit_site/img/top/img_deco03_2.png) top center / 100% auto no-repeat;
  width: 100%;
  aspect-ratio: 1 / 0.1135;
}
.p-topcontent06 .decoration{
  background: url(/recruit_site/img/top/img_deco_anime01.svg) center right / 300% 100% no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 1 / 0.1135;
  z-index: 1;
}
.animeTrigger.animetion.p-topcontent06 .decoration{
  background: url(/recruit_site/img/top/img_deco_anime01.svg) center right / 0 100% no-repeat;
  transition: background 1.5s ease-in-out;
}
.p-topcontent06 .l-section01{
  position: relative;
  z-index: 1;
}
.p-topcontent06 section{
  opacity: 0;
  transform: translateY(120px);
}
.p-topcontent06.animeTrigger.animetion section{
  opacity: 1;
  transform: translateY(0);
  transition: 1.6s ease-in-out;
}
.p-topcontent06__title{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-bottom: 20px;
}
.p-topcontent06__title h3{
  font-size: 24px;
  line-height: calc(1em + 12px);
  font-weight: 700;
}
.p-topcontent06__link{
  display: flex;
  flex-direction: row-reverse;
  padding-right: 32px;
}
@media screen and (max-width: 560px) {
  .p-topcontent06__title h3{
    font-size: 20px;
  }
  .p-topcontent06__link{
    padding-right: 12px;
  }
}
/*----------------------------------------*/
.p-entry{
  margin: 0;
  padding: 200px 0;
  position: relative;
  background: url(/recruit_site/img/top/img_deco04.png) center center / 100% 100% no-repeat;
}
.p-entry .decoration{
  background: url(/recruit_site/img/top/img_deco_anime01.svg) center right / 300% 100% no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.p-entry.animeTrigger.animetion .decoration{
  background: url(/recruit_site/img/top/img_deco_anime01.svg) center right / 0 100% no-repeat;
  transition: background 1.5s ease-in-out;
}
.p-entry .l-section01{
  position: relative;
  z-index: 1;
  max-width: calc(1380px + (var(--container-w1) * 2));
}
.p-entry section{
  opacity: 0;
  transform: translateY(120px);
}
.p-entry.animeTrigger.animetion section{
  opacity: 1;
  transform: translateY(0);
  transition: 1.6s ease-in-out;
}
.c-entry-btn__area{
  background: url(/recruit_site/img/top/img_entry_bg.png) center center / 100% 100% no-repeat;
  position: relative;
  padding: var(--margin-big);
  min-height: 550px;
  display: flex;
  justify-content: center;
}
.c-entry-deco01{
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
}
.c-entry-deco02{
  position: absolute;
  bottom: 0;
  left: 10vw;
  width: 180px;
}
.c-entry-deco03{
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
}
.c-entry-btn__inner{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--rp40);
}
.c-entry-btn__inner p{
  margin: 0;
  color: var(--color-white);
}
@media screen and (max-width: 1080px) {
  .p-entry{
    background: none;
    padding: 0 0;
  }
  .p-entry.animeTrigger.animetion .decoration{
    display: none;
  }
  .p-entry .l-section01{
    max-width: initial ;
    padding: 0;
  }
  .c-entry-btn__area{
    background: url(/recruit_site/img/top/img_entry_bg.png) center center / 200% 100% no-repeat;
  }
  .c-entry-deco01{
    left: var(--rp40);
    width: 160px;
  }
  .c-entry-deco02{
    left: initial;
    bottom: initial;
    top: -20px;
    right: var(--rp40);
    width: 140px;
    transform: scale( -1 , 1);
  }
  .c-entry-deco03{
    right: var(--rp40);
    width: 220px;
    transform: translateY(50%);
  }
}
@media screen and (max-width: 560px) {
  .c-entry-btn__area{
    padding: 120px var(--container-w1);
    background: url(/recruit_site/img/top/img_entry_bg.png) center center / 1080px 100% no-repeat;
  }
  .c-entry-deco01{
    width: 100px;
  }
  .c-entry-deco02{
    width: 80px;
  }
  .c-entry-deco03{
    width: 160px;
    transform: translateY(30%);
  }
}
/*-------------------------------------------*/
.p-topics {
  display: flex;
  flex-direction: column;
}
.p-topics > li {
  border-top: 1px solid var(--color-gray01);
  padding: 32px;
}
.p-topics > li:last-child {
  border-bottom: 1px solid var(--color-gray01);
}
.p-topics > li > a {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  text-decoration: none !important;
  color: var(--color-black) !important;
  padding-right: 32px;
  position: relative;
}
.p-topics > li > a::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 24px;
    height: 24px;
    background: url(/recruit_site/img/common/ico_arrow01_b.svg) center center / 100% auto no-repeat;
    transition: .3s ease-in-out;
}
.p-topics > li > a:hover:before {
    transform: translateX(12px);
    transition: .3s ease-in-out;
}
.p-topics > li > a > .day {
  font-size: 20px;
  font-weight: 700;
  line-height: calc(1em + 8px);
  white-space: nowrap;
}
.p-topics > li > a > .category {
  padding: 0 4px;
  border: 1px solid var(--color-black);
  width: 10em;
  text-align: center;
}
.p-topics > li > a > .title {
  flex: 1;
  font-weight: 400;
}
@media (hover: hover) {
  .p-topics > li > a:hover > .day {
    color: var(--color-accent01);
  }
  .p-topics > li > a:hover > .title {
    font-weight: 700;
    color: var(--color-accent01);
  }
}
@media screen and (max-width: 768px) {
  .p-topics > li > a > .title {
    flex: auto;
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .p-topics > li{
    padding: 20px 12px;
  }
  .p-topics > li > a{
    gap: 8px;
  }
}
/*----------------------------------------*/
.p-pager ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
.p-pager li a {
  text-decoration: none;
  color: var(--color-primary);
  background: var(--color-secondary);
  padding: 8px 16px;
  display: inline-flex;
  text-decoration: none !important;
}
.p-pager li.active a {
  font-weight: bold;
  background: var(--color-primary);
  color: var(--color-white) !important;
}
@media (hover: hover) {
  .p-pager li a:hover {
    background-color: var(--color-accent01);
    color: var(--color-white) !important;
  }
}
/*----------------------------------------*/
.p-map iframe{
  width: 100%;
  height: 50vh;
  border: none;
}
/*----------------------------------------*/
.p-pageimage{
  width: 100%;
  margin-top: var(--header-hight);
  min-height: 280px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
}
.p-pageimage::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 1 / 0.348;
  background: url(/recruit_site/img/top/img_deco05.png) center center / 100% 100% no-repeat;
  z-index: -1;
  animation: p-pageimage_anime 2s ease 0s 1 forwards;
}
.p-pageimage .decoration{
  display: none;
}
@keyframes p-pageimage_anime {
  0% { 
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* .p-pageimage.animeTrigger .decoration{
  display: block;
  background: #FFF;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: inherit;
  aspect-ratio: 1 / 0.348;
  z-index: -1;
}
.p-pageimage.animeTrigger.animetion .decoration{
  animation: p-pageimage_anime 2s ease 0s 1 forwards;
} */



.p-pageimage__bg{
  max-width: calc(1620px + (var(--container-w1) * 2));
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--container-w1);
  position: relative;
  z-index: 1;
}
.p-pageimage.animeTrigger .p-pageimage__bg{
  opacity: 0;
  transform: translateY(120px);
}
@keyframes p-pageimage_anime02 {
  0%{opacity: 0;transform: translateY(120px);}
  100% { transform: translateY(0);opacity: 1;}
}
.p-pageimage.animeTrigger.animetion .p-pageimage__bg{
  animation: p-pageimage_anime02 1.2s ease .5s 1 forwards;
}
@media screen and (max-width: 1080px) {
  .p-pageimage{
    min-height: 240px;
  }
  .p-pageimage::before{
    aspect-ratio: initial;
    height: 400px;
    background: url(/recruit_site/img/top/img_deco05.png) top center / 1080px auto no-repeat;
  }
  .p-pageimage .decoration{
    aspect-ratio: initial;
    height: 400px;
  }
}
@media screen and (max-width: 560px) {
  .p-pageimage{
    min-height: 200px;
  }
  .p-pageimage::before{
    aspect-ratio: initial;
    height: 400px;
    background: url(/recruit_site/img/top/img_deco05.png) top center / 760px auto no-repeat;
  }
}
.p-pageimage.animeTrigger + .p-breadcrumb{
  opacity: 0;transform: translateY(120px);
}
.p-pageimage.animeTrigger.animetion + .p-breadcrumb{
  animation: p-pageimage_anime02 1.2s ease 0.75s 1 forwards;
}
/* .p-pageimage.animeTrigger.animetion + .p-breadcrumb + main{
  opacity: 0;transform: translateY(120px);
  animation: p-pageimage_anime02 1.2s ease 1s 1 forwards;
} */
.p-pageimage02{
  width: 100%;
  min-height: 250px;
  margin-top: var(--header-hight);
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  border-bottom: 1px solid var(--color-secondary);
}
.p-pageimage02__bg{
  padding: 20px;
}
.p-pageimage02__bg > h2{
  text-align: center;
  font-size: 3em;
  font-weight: 900;
}
.p-pageimage02__bg > p{
  margin: 20px 0 0;
  text-align: center;
  font-size: 1.2em;
}
@media screen and (max-width: 768px) {
  .p-pageimage02__bg > h2{
    font-size: 2em;
  }
  .p-pageimage02{
    min-height: 100px;
  }
}
/*----------------------------------------*/
.p-breadcrumb {
  width: 100%;
  max-width: calc(1620px + (var(--container-w1) * 2));
  padding: 0 var(--container-w1);
  margin: auto;
  position: relative;
  z-index: 2;
}
.p-breadcrumb__item {
  display: inline;
  font-size: 0.9rem;
  text-decoration: none;
}
.p-breadcrumb__item:not(:last-child):after {
  content: "＞";
  font-weight: 700;
  margin: 0 .5em;
  color: var(--color-primary);
}
.p-breadcrumb__item a {
  margin-right: 5px;
  font-weight: 400;
  color: var(--color-black) !important;
}
.p-breadcrumb__item:last-child a {
  pointer-events: none;
  color: var(--color-primary) !important;
  font-weight: 700;
}
@media (hover: hover) {
.p-breadcrumb__item a:hover {
  color: var(--color-accent01) !important;
  text-decoration: underline;
}
}
/*----------------------------------------*/
/* form-nav */
.p-formstep {
  display: flex;
  flex-wrap: wrap;
}
.p-formstep > li {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 13px 0;
    line-height: 1.5;
    background: var(--color-secondary);
    color: #999999;
    height: 74px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}
.p-formstep > li > .nm {
  width: 100%;
  display: block;
  font-weight: 700;
}
.p-formstep > li > .tx {
  width: 100%;
  display: block;
}
.p-formstep > li:not(:last-child)::before,
.p-formstep > li:not(:last-child)::after {
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    left: 100%;
    content: '';
    border: 37px solid transparent;
    border-left: 20px solid var(--color-secondary);
    margin: auto;
}
.p-formstep > li:not(:last-child)::before {
    margin-left: 1px;
    border-left-color: #FFF;
}
@media screen and (max-width: 480px) {
  .p-formstep {
    display: block;
  }
  .p-formstep > li:not(:last-child)::before,
  .p-formstep > li:not(:last-child)::after {
    display: none;
  }
  .p-formstep > li {
    border-bottom: 1px solid #FFFFFF;
}
}
/* active */
.p-formstep > li.fs__active {
    z-index: 1;
    background: var(--color-primary);
    color: #FFF;
}
.p-formstep > li.fs__active:not(:last-child)::after {
    border-left-color: var(--color-primary);
}
.p-formstep > li.fs__active:not(:last-child)::before {
    border-left: none;
}
/*----------------------------------------*/
.p-form__bg{
  border: 1px solid var(--color-secondary);
  border-radius: 20px;
  padding: var(--container-w1) 150px;
}
.p-form{
    margin: auto;
}
.p-input{
  width: 100%;
  display: block;
  margin-bottom: 60px ;
}
.p-input > .title__area{
  display: flex;
  align-items: flex-start;
  width: 100%;
  font-weight: 700;
  position: relative;
  margin-bottom: 16px;
}
.p-input > .input__area{
  flex: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.p-input > .input__area > .nowrap{
  flex: 1;
  display: flex;
  align-items: center;
}
.p-input > .input__area .attached{
  margin-right: 10px;
  margin-left: 10px;
}
.p-input > .input__area .attached__f{
  margin-right: 10px;
}
.input__flex1{
  flex: 1;
}
.input__error{
  width: 100%;
  color:#DE1963;
}
.input__width01{
  width: 5em;
}
.input__width02{
  width: 8em;
}
.input__width03{
  width: 10em;
}
@media screen and (max-width: 480px) {
  .p-input{
    display: block;
    margin-bottom: 40px;
  }
  .p-input > .title__area{
    margin-bottom: .8em;
  }
  .input__width01{
    width: 100%;
  }
  .input__width02{
    width: 200%;
  }
  .input__width03{
    width: 100%;
  }
}
/*必須・任意*/
.p-required{
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 3px;
  font-size: 0.8em;
  padding: .2em .5em;
  display: flex;
  align-items: center;
  margin-right: .5em;
}
.p-required.any{
  background: var(--color-gray02);
  color: var(--color-black);
}
/*ツールチップ　ヒント*/
.p-tooltip .tip__ico{
  position: absolute;
  top: 0;
  right: 0;
  width: calc(1em * 1.8);
  height: calc(1em * 1.8);
  display: block;
  cursor: pointer;
}
.p-tooltip .tip__ico:hover{
  opacity: .6;
}
.p-tooltip .tip__ico::before{
  content: "？";
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: calc(1em * 1.8);
  height: calc(1em * 1.8);
  background: var(--color-primary);
  border-radius: calc(1em * 1.8);
  color: var(--color-white);
  font-weight: 700;
  position: absolute;
  top: 0;
  right: 0;
}
.p-tooltip .tip__text{
  width: max-content;
  max-width: 100%;
  background: var(--color-gray03);
  font-size: 0.8em;
  padding: .5em .8em;
  position: absolute;
  bottom: calc(1.7em * 1.8);
  right: 0;
  opacity: 0;
  transform-origin: bottom right;
  transform: scale(0 , 0) ;
  transition: all .3s;
  z-index: 10;
}
.p-tooltip .tip__text::after{
  content: "";
  position: absolute;
  bottom: -10px;
  right: calc((1em * 1.8) / 3);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  border-top: 10px solid var(--color-gray03);
  border-bottom: 0;
}
.p-tooltip .tip__text > p{
  margin: .5em 0;
}
.p-tooltip .tip__ico:hover + .tip__text{
  display: block;
  transform: scale(1 , 1);
  opacity: 1;
}
/*セレクトボックス*/
.p-input select{
  border-radius: 3px;
  border: 1px solid var(--color-gray01);
  display: inline-block;
  padding: .3em .5em;
  line-height: 1.8;
  width: 100%;
}
.p-input select:focus{
  border: 1px solid var(--color-primary);
}
/*テキストエリア*/
.p-input textarea{
  border-radius: 3px;
  border: 1px solid var(--color-gray01);
  padding: .3em .5em;
  line-height: 1.8;
  height: 8em;
}
.p-input textarea:focus{
  border: 1px solid var(--color-primary);
}
/*その他*/
.p-input input[type="file"]{
  cursor: pointer;
  width: 18em;
}
/*入力フォームまわり*/
.p-input input:not([type="submit"]):not([type="reset"]):not([type="radio"]):not([type="checkbox"]):not([type="file"]):not([type="color"]):not([type="range"]):not([type="button"]):not([type="hidden"]){
  border-radius: 3px;
  border: 1px solid var(--color-gray01);
  padding: .3em .5em;
  line-height: 1.8;
}
.p-input input:not([type="submit"]):not([type="reset"]):not([type="radio"]):not([type="checkbox"]):not([type="file"]):not([type="color"]):not([type="range"]):not([type="button"]):not([type="hidden"]):focus{
  border: 1px solid var(--color-primary);
}
/*ラジオボタン・チェックボックス*/
.p-checklist{
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -1em;
}
.p-checklist > li{
  margin: 0 1em 1em 0;
  position: relative;
  display: flex;
}
.p-checklist label{
  display: inline-block;
  line-height: 1;
  margin-left: 1.2em;
  cursor: pointer;
}
.p-checklist input[type="radio"]{
  appearance: none;
  background: url(/recruit_site/img/common/ico_radio01_1.svg) center center / 100% auto no-repeat;
  width: 1rem;
  height: 1rem;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 1px;
  cursor: pointer;
  outline: none;
}
.p-checklist input[type="radio"]:checked{
  background: url(/recruit_site/img/common/ico_radio01_2.svg) center center / 100% auto no-repeat;
}
.p-checklist input[type="checkbox"]{
  appearance: none;
  background: url(/recruit_site/img/common/ico_checkbox01_1.svg) center center / 100% auto no-repeat;
  width: 1rem;
  height: 1rem;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 1px;
  cursor: pointer;
  outline: none;
}
.p-checklist input[type="checkbox"]:checked{
  background: url(/recruit_site/img/common/ico_checkbox01_2.svg) center center / 100% auto no-repeat;
}
/*送信ボタン・リセットボタン*/
.p-formbutton{
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-formbutton > button,
.p-formbutton > input{
  margin: 0 .5em;
}
@media screen and (max-width: 1080px) {
  .p-form__bg{
    padding: var(--container-w1) 40px;
  }
}
@media screen and (max-width: 480px) {
  .p-form__bg{
    padding: var(--container-w1) 20px;
  }
}
/*-------------------------------------------*/
.p-faq{
  background: var(--color-tertiary);
  padding: var(--margin-small);
  margin-bottom: var(--margin-small);
}
.p-faq:last-child{
  margin-bottom: 0;
}
.p-faq__q{
  cursor: pointer;
  position: relative;
}
.p-faq__q:hover{
  opacity: .6;
}
.p-faq__q::before{
  content: "";
  display: inline-block;
  width: 2px;
  height: 12px;
  background: var(--color-black);
  position: absolute;
  right: 6px;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all .3s;
}
.p-faq__q::after{
  content: "";
  display: inline-block;
  width: 2px;
  height: 12px;
  background: var(--color-black);
  position: absolute;
  right: 6px;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(90deg);
  transition: all .3s;
}
.p-faq__q.faq__close::before{
  opacity: 0;
}
.p-faq__q.faq__close::after{
  transform: rotate(450deg);
}
.p-faq__q > p{
  position: relative;
  display: block;
  padding-left: calc(1.2em * 1.8);
  padding-right: calc(12px + .5em);
}
.p-faq__q > p:first-child{
  margin: 0;
}
.p-faq__q > p:last-child{
  margin-bottom: 0;
}
.p-faq__q > p:first-child::before{
  content: "Q";
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: calc(1em * 1.8);
  height: calc(1em * 1.8);
  background: var(--color-primary);
  border-radius: calc(1em * 1.8);
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color-white);
  font-weight: 700;
}
.p-faq__a {
  margin-top: calc(var(--margin-small) + 10px);
}
.p-faq__a > p{
  position: relative;
  display: block;
  padding-left: calc(1.2em * 1.8);
  padding-right: calc(12px + .5em);
}
.p-faq__a > p:first-child{
  margin: 0;
}
.p-faq__a > p:last-child{
  margin-bottom: 0;
}
.p-faq__a > p:first-child::before{
  content: "A";
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: calc(1em * 1.8);
  height: calc(1em * 1.8);
  background: var(--color-black);
  border-radius: calc(1em * 1.8);
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color-white);
  font-weight: 700;
}
/*-------------------------------------------*/
.p-login{
  background: url(/recruit_site/img/common/pic_image01.png) center center / cover no-repeat;
  width: 100vw;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-login__inner{
  width: 100%;
  max-width: 660px;
  min-height: 300px;
  background: var(--color-white);
  position: relative;
  border-radius: 10px;
  padding: var(--margin-middle);
  margin: var(--margin-middle);
}
.p-login__title img{
  margin: auto;
}
/*-------------------------------------------*/
.p-categorylist{
  border: 1px solid var(--color-secondary);
  border-radius: 10px;
  padding: var(--margin-col);
}
.p-categorylist__inner{
  display: flex;
  align-items: center;
}
.p-categorylist__title{
  font-size: 1.8em;
  font-weight: 700;
  margin-right: var(--margin-col);
}
.p-categorylist__list{
  flex: 1;
}
.p-categorylist__list > ul{
  display: flex;
  flex-wrap: wrap;
}
.p-categorylist__list > ul > li{
  margin: 10px 10px 10px 0;
}
.p-categorylist__list > ul > li > a{
  display: inline-block;
  padding: 8px 10px 7px;
  line-height: 1.2;
  background: var(--color-tertiary);
  text-align: center;
  font-size: 1.2rem;
}
.p-categorylist__list > ul > li > a:hover{
  text-decoration: none;
  background: var(--color-tertiary);
}
.p-categorylist__list > ul > li > a.active{
  background: var(--color-secondary);
}
@media screen and (max-width: 768px) {
  .p-categorylist__title{
    font-size: 1.2em;
    margin-right: 0;
  }
  .p-categorylist__inner{
    display: block;
  }
  .p-categorylist__list > ul > li{
    margin: 10px 10px 0 0;
  }
  .p-categorylist__list > ul > li > a{
    font-size: 1rem;
  }
}
/*-------------------------------------------*/
.p-content01{
  display: flex;
  flex-direction: column;
  gap: var(--rp40);
}
.p-content01__list{
  display: flex;
  flex-wrap: wrap;
  gap: var(--rp40);
  border: 1px solid var(--color-primary);
  padding: var(--rp40);
  border-radius: 20px;
  background: var(--color-white);
}
.p-content01__list_col1{
  flex: 1;
}
.p-content01__list_col2{
  flex: 1;
}
.p-content01__list .title{
  width: 100%;
  font-size: 28px;
  line-height: calc(1em + 12px);
  font-weight: 700;
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
  padding-bottom: 8px;
}
.p-content01__list h4{
  margin-bottom: 20px !important;
  margin-top: 0 !important;
}
.p-content01__list ul{
  margin-top: 0 !important;
}
@media screen and (max-width: 768px) {
  .p-content01{
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: var(--rp40);
  }
}
@media screen and (max-width: 560px) {
  .p-content01__list .title{
    font-size: 24px;
  }
  .p-content01__list{
    flex-direction: column;
  }
}
/*-------------------------------------------*/
.p-datacontent01{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}
.p-datacontent01.col2{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.p-datacontent01__list{
  padding: var(--rp40);
  border-radius: 20px;
  background: var(--color-white);
  box-shadow: 0 0 8px rgba(39, 107, 217 , .4);
}
.p-datacontent01__list p{
  margin: 0;
}
.p-datacontent01__list .img img{
  margin: auto;
}
.p-datacontent01__list__inner{
  display: flex;
  align-items: center;
  gap: var(--rp40);
}
.p-datacontent01__list__inner02{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--rp40);
}
.p-datacontent01__list__inner03{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--rp40);
}

.p-datacontent01__list--col2 {
  grid-column: span 2;
}
.p-datacontent01__list--col3 {
  grid-column: span 3;
}
.p-datacontent01__list .title{
  font-size: 24px;
  line-height: calc(1em + 12px);
  font-weight: 700;
  color: var(--color-primary);
  text-align: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-primary);
  margin-bottom: 16px;
}
.p-datacontent01__list .title02{
  font-size: 20px;
  line-height: calc(1em + 12px);
  font-weight: 700;
  background: var(--color-secondary);
  border-radius: 4px;
  text-align: center;
  padding: 8px 16px;
}
.p-datacontent01__list .number{
  font-size: 36px;
  line-height: calc(1em + 16px);
  font-weight: 700;
  color: var(--color-accent01);
  text-align: center;
}
.p-datacontent01__list .anime_number{
  font-size: 48px;
  line-height: calc(1em);
  font-weight: 800;
}
.p-datacontent01__list .number.min{
  font-size: 28px;
  line-height: calc(1em + 12px);
}
.p-datacontent01__list .anime_number.min{
  font-size: 40px;
}

.p-datacontent01__list ul{
  margin-top: 0 !important;
}
.p-datacontent01__list .deco01{
  font-size: 36px;
  line-height: calc(1em + 16px);
  font-weight: 700;
  color: var(--color-accent01);
}
.p-datacontent01__list .deco02{
  font-size: 24px;
  line-height: calc(1em + 12px);
  font-weight: 700;
  color: var(--color-accent01);
}
.deco02_area{
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.deco02_area_list{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.deco02_area_list .deco02{
  flex: 1;
}
@media screen and (max-width: 911px) {
  .deco02_area_list{
    flex-direction: column;
    gap: 0;
  }
  .deco02_area_list .deco02{
    text-align: center;
  }
}

@media screen and (max-width: 1024px) {
  .p-datacontent01{
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .p-datacontent01.col2{
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .p-datacontent01__list--col2 {
    grid-column: initial;
  }
  .p-datacontent01__list--col3 {
    grid-column: initial;
  }
  .p-datacontent01__list__inner02{
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .p-datacontent01__list__inner03{
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .p-datacontent01__list__inner{
    flex-direction: column;
    gap: var(--rp40);
  }
  .p-datacontent01__list .spnone{
    display: none;
  }
}
@media screen and (max-width: 560px) {
  .p-datacontent01__list .number{
    font-size: 20px !important;
    line-height: calc(1em + 12px) !important;
  }
  .p-datacontent01__list .anime_number{
    font-size: 28px !important;
    line-height: calc(1em + 12px) !important;
  }
  .p-datacontent01__list .deco01{
    font-size: 20px;
    line-height: calc(1em + 12px);
  }
  .p-datacontent01__list .deco02{
    font-size: 20px;
    line-height: calc(1em + 12px);
  }
}
.p-datacontent01__list.animeTrigger .fade{
  transform: translateY(50px);
  opacity: 0;
  transition: transform .6s ease-in-out , opacity .6s ease-in-out;
}
.p-datacontent01__list.animeTrigger.animetion .fade{
  transform: translateY(0);
  opacity: 1;
}

/*-------------------------------------------*/
.p-talkcontent01{
  display: flex;
  gap: var(--rp40);
  position: relative;
}
.p-talkcontent01.reverse{
  flex-direction: row-reverse;
}
.p-talkcontent01.text{
  align-items: flex-start;
}
.p-talkcontent01__img{
  position: sticky;
  top: 0;
  align-self: flex-start;
  flex: 1;
}
.p-talkcontent01__img img{
  border-radius: 20px;
  width: 100%;
}
.p-talkcontent01__text{
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--rp40);
  justify-content: center;
}
.c-name_area{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.c-name_area .name{
 display: flex;
 align-items: flex-end;
 gap: 8px;
 width: 100%; 
}
.c-name_area .name .initial{
  font-size: 32px;
  font-weight: 700;
  line-height: calc(1em + 12px);
}
.c-name_area .tag01{
  background: var(--color-secondary);
  padding: 4px 16px;
  border-radius: 8px;
  color: var(--color-primary);
}
@media screen and (max-width: 1080px) {
  .p-talkcontent01__img{
    width: 100%;
    max-width: 360px;
  }
}
@media screen and (max-width: 768px) {
  .p-talkcontent01{
    flex-direction: column;
    gap: var(--rp40);
  }
  .p-talkcontent01.reverse{
    flex-direction: column;
  }
  .p-talkcontent01__img{
    position: static;
    margin: auto;
  }
  .p-talkcontent01__img img{
    margin: auto;
  }
  .p-talkcontent01.text{
    gap: var(--rp60);
  }
}
/*-------------------------------------------*/
.p-talkcontent02{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--rp100);
  position: relative;
  overflow: hidden;
}
.p-talkcontent02::before{
  content: "";
  display: block;
  background: url(/recruit_site/img/top/img_deco06.svg) center center / 180% 100% no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
  height: 100%;
  width: 100%;
}
.p-talkcontent02 .decoration{
  background: url(/recruit_site/img/top/img_deco_anime01.svg) center right / 300% 100% no-repeat;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.p-talkcontent02.animeTrigger.animetion .decoration{
  background: url(/recruit_site/img/top/img_deco_anime01.svg) center right / 0 100% no-repeat;
  transition: background 2s ease-in-out;
}
.p-talkcontent02__inner{
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: var(--rp60);
  background: var(--color-white);
  border-radius: 16px;
}
.p-talkcontent02__il01{
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-50%) translateY(-25%);
}
.p-talkcontent02__il02{
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translateX(50%);
}
@media screen and (max-width: 768px) {
  .p-talkcontent02{
    padding: var(--rp100) var(--container-w1);
    overflow: initial;
  }
  .p-talkcontent02__inner{
    padding: 40px var(--rp40) var(--rp40);
  }
  .p-talkcontent02::before{
    background: url(/recruit_site/img/top/img_deco06.svg) center center / 300% 100% no-repeat;
  }
  .p-talkcontent02__il01{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    transform: translateX(-50%) translateY(-85%);
    width: 50px;
  }
  .p-talkcontent02__il02{
    position: absolute;
    top: 0;
    bottom: initial;
    left: 0;
    right: 0;
    margin: auto;
    transform: translateX(50%) translateY(-85%);
    width: 50px;
  }
}
/*-------------------------------------------*/

.p-entrytop{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--container-w1);
}
@media screen and (max-width: 768px) {
  .p-entrytop{
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: var(--rp80);
  }
}


@media screen and (max-width: 560px) {
  .p-entrytable01 table,
  .p-entrytable01 table tbody,
  .p-entrytable01 table tr,
  .p-entrytable01 table tr th,
  .p-entrytable01 table tr td{
    display: block;
    width: 100% !important;
  }
  .p-entrytable01 table tr th,
  .p-entrytable01 table tr td{
    margin-top: -1px;
  }
}

.p-nwefaq{
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: var(--rp60) 0;
}
.p-nwefaq > h3{
  margin: 0 !important;
}
.p-nwefaq h3{
  padding-left: 48px !important;
  padding-bottom: 20px !important;
}
.p-nwefaq h3::before{
  content: "Q" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  height: calc(1em + 12px) !important;
  width: calc(1em + 12px) !important;
  line-height: calc(1em + 8px) !important;
  vertical-align: middle !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  background: var(--color-primary) !important;
  color: var(--color-white) !important;
  border-radius: 40px !important;
  text-align: center !important;
  display: inline-block !important;
}
.p-nwefaq h3::after{
  width: 100% !important;
  background: var(--color-primary) !important;
  height: 1px !important;
}
.p-nwefaq > p{
  margin: 0 !important;
  position: relative !important;
  padding-left: 48px !important;
}
.p-nwefaq > p::before{
  content: "A" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  height: calc(1em + 12px) !important;
  width: calc(1em + 12px) !important;
  line-height: calc(1em + 10px) !important;
  vertical-align: middle !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  background: var(--color-accent01) !important;
  color: var(--color-white) !important;
  border-radius: 40px !important;
  text-align: center !important;
  display: inline-block !important;
}
@media screen and (max-width: 768px) {
  .p-nwefaq h3::before{
    font-size: 20px !important;
  }
  .p-nwefaq > p::before{
    font-size: 20px !important;
  }
}


/*====================================================================
Component……再利用可能な小さな単位のモジュールを管理（ボタンなど）
====================================================================*/
/*-------------------------------------------*/
.c-btn-icon01{
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-btn-icon01 > .icon{
  margin-right: 0.5em;
  display: inline-block;
}
.c-btn-icon01 > .icon img{
  width: 1.2em;
}
.c-btn-icon01 > .text{
  line-height: 1.4;
  display: inline-block;
}
.c-btn__area{
  display: flex;
  justify-content: center;
  gap: var(--rp40);
  flex-wrap: wrap;
}
.c-btn01{
  background: var(--color-primary);
  color: var(--color-white) !important;
  text-decoration: none !important;
  font-size: 20px;
  font-weight: 700;
  line-height: calc(1em + 8px);
  border-radius: 60px;
  padding: 16px 28px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.c-btn01.inline{
  display: inline-flex;
  gap: 8px;
}
.c-btn01::after{
  content: "";
  width: 20px;
  height: 20px;
  background: url(/recruit_site/img/common/ico_arrow01_w.svg) center center / 100% auto no-repeat;
  transition: .3s;
}
@media (hover: hover) {
  .c-btn01:hover{
    background:var(--color-accent01);
    opacity: 1;
  }
  .c-btn01:hover:after{
    transform: translateX(8px);
    transition: .3s;
  }
}
.c-btn02{
  background: var(--color-accent01);
  color: var(--color-white) !important;
  text-decoration: none !important;
  font-size: 16px;
  line-height: calc(1em + 8px);
  border-radius: 60px;
  padding: 8px 24px;
  text-align: center;
  display: flex;
  justify-content: center;
}
@media (hover: hover) {
  .c-btn02:hover{
    background: var(--color-accent02);
    color: var(--color-primary) !important;
    opacity: 1;
  }
}
.c-btn03_area{
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-btn03_area > a{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 16px;
  padding: var(--rp40) 80px var(--rp40) var(--rp40);
  min-height: 260px;
  position: relative;
}
.c-btn03_area > a::before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 40px;
  transform: translateX(50%);
  margin: auto;
  width: 24px;
  height: 24px;
  background: url(/recruit_site/img/common/ico_arrow01_w.svg) center center / 100% auto no-repeat;
  transition: .4s;
}
.c-btn03_area > a > .title{
  font-weight: 700;
  font-size: 20px;
  line-height: calc(1em + 12px);
}
.c-btn03_area > a:hover::before{
  right: 32px;
  transition: .4s;
}
@media (hover: hover) {
  .c-btn03_area > a:hover{
    text-decoration: none;
    background: var(--color-accent01);
  }
}
@media screen and (max-width: 560px) {
  .c-btn03_area > a{
    min-height: 200px;
  }
}
.c-btn04{
  background: var(--color-accent02);
  color: var(--color-primary) !important;
  text-decoration: none !important;
  font-size: 20px;
  font-weight: 700;
  line-height: calc(1em + 8px);
  border-radius: 60px;
  padding: 16px 28px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.c-btn04::after{
  content: "";
  width: 20px;
  height: 20px;
  background: url(/recruit_site/img/common/ico_arrow01.svg) center center / 100% auto no-repeat;
  transition: .3s;
}
@media (hover: hover) {
  .c-btn04:hover{
    background:var(--color-primary);
    color: var(--color-white) !important;
    opacity: 1;
  }
  .c-btn04:hover:after{
    background: url(/recruit_site/img/common/ico_arrow01_w.svg) center center / 100% auto no-repeat;
    transform: translateX(8px);
    transition: .3s;
  }
}
.c-btn05 {
    font-weight: 700;
    display: inline-flex;
    font-size: 16px;
    line-height: calc(1em + 8px);
    align-items: center;
    gap: 8px;
}
.c-btn05::after {
    content: "";
    width: 16px;
    height: 16px;
    background: url(/recruit_site/img/common/ico_arrow01_b.svg) center center / 100% auto no-repeat;
    transition: .2s ease-in-out;
}
@media (hover: hover) {
  .c-btn05:hover::after{
    transform: translateX(4px);
    transition: .2s ease-in-out;
  }
}
.c-formbtn01{
  border-radius: 3px;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 0.5em 2em;
  cursor: pointer;
}
.c-formbtn01:hover{
  opacity: .6;
}
.c-formbtn02{
  border-radius: 3px;
  background: var(--color-gray03);
  color: var(--color-black);
  padding: 0.5em 2em;
  cursor: pointer;
}
.c-formbtn02:hover{
  opacity: .6;
}
/*----------------------------------------*/
.c-link__list li {
  display: block;
  position: relative;
  padding-left: 1em;
}
.c-link__list li:before {
  position: absolute;
  left: 0;
  content: ">";
  font-weight: 700;
  font-size: 1em;
}
.c-link__list li:after {
  display: none;
}
/*----------------------------------------*/
.c-box01{
  padding: 20px;
  border: 1px solid var(--color-primary);
  border-radius: 4px;
}
.c-box01 > h1,
.c-box01 > h2,
.c-box01 > h3,
.c-box01 > h4,
.c-box01 > h5,
.c-box01 > h6{
  margin: 0 0 16px 0 !important;
}
.c-box01 > p{
  margin: 0;
}
/*----------------------------------------*/
.c-title01{
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.c-title01 .en_text{
  font-family: var(--font02);
  font-weight: 700;
  font-size: 32px;
  line-height: calc(1em + 8px);
  color: var(--color-accent01);
  text-align: left;
}
.c-title01 .text{
  font-weight: 700;
  font-size: 40px;
  line-height: calc(1em + 12px);
  text-align: left;
}
@media screen and (max-width: 560px) {
  .c-title01{
    gap: 0;
  }
  .c-title01 .en_text{
    font-size: 24px;
  }
  .c-title01 .text{
    font-size: 28px;
  }
}
.c-title02{
  display: flex;
  flex-direction: row-reverse;
  justify-content: left;
  align-items: center;
  gap: 16px;
}
.c-title02 .en_text{
  font-family: var(--font02);
  font-weight: 700;
  font-size: 24px;
  line-height: calc(1em);
  color: var(--color-accent01);
  text-align: left;
  margin-top: 8px;
}
.c-title02 .text{
  font-weight: 700;
  font-size: 36px;
  line-height: calc(1em + 16px);
  text-align: left;
}
@media screen and (max-width: 560px) {
  .c-title02{
    flex-direction: column;
    gap: 0;
  }
  .c-title02 .en_text{
    font-size: 20px;
    margin-top: 0;
  }
  .c-title02 .text{
    font-size: 28px;
  }
}
.c-entry-title01{
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.c-entry-title01 .en_text{
  font-family: var(--font02);
  font-weight: 700;
  font-size: 32px;
  line-height: calc(1em + 8px);
  color: var(--color-accent02);
  text-align: center;
}
.c-entry-title01 .text{
  font-weight: 700;
  font-size: 40px;
  line-height: calc(1em + 12px);
  text-align: center;
  color: var(--color-white);
}
@media screen and (max-width: 560px) {
  .c-entry-title01{
    gap: 0;
  }
  .c-entry-title01 .en_text{
    font-size: 24px;
  }
  .c-entry-title01 .text{
    font-size: 28px;
  }
}
.c-layer-title01{
  display: flex;
  flex-direction: column;
}
.c-layer-title01 .en_text{
  font-family: var(--font02);
  font-weight: 700;
  font-size: 32px;
  line-height: calc(1em + 8px);
  color: var(--color-accent01);
  text-align: left;
}
.c-layer-title01 .text{
  font-weight: 700;
  font-size: 48px;
  line-height: calc(1em + 12px);
  text-align: left;
}
@media screen and (max-width: 560px) {
  .c-title01 .en_text{
    font-size: 24px;
  }
  .c-title01 .text{
    font-size: 28px;
  }
}
/*----------------------------------------*/
.c-ul__disc {
  list-style-type: none;
}
.c-ul__disc > li {
  margin-bottom: 0.5em;
  position: relative;
  padding-left: 1em;
}
.c-ul__disc > li:before {
  position: absolute;
  top: 0.7em;
  left: 0;
  content: "";
  background: var(--color-black);
  border-radius: 10px;
  width: 0.5em;
  height: 0.5em;
}
.c-ul__number {
  list-style: decimal;
  padding-left: 1em;
}
.c-ul__number > li {
  margin-bottom: 0.5em;
}
.c-ul__number > li::marker {
  color: var(--color-black);
}
/*-------------------------------------------*/
.c-page__anchor{
  padding: 0 0 25px 0;
  border-bottom: 1px solid var(--color-primary);
}
.c-page__anchor > ul{
  display: flex;
  flex-wrap: wrap;
}
.c-page__anchor > ul > li {
  position: relative;
  padding: 0 1em 0 calc(20px + .5em);
  margin: .5em 1em .5em 0;
}
.c-page__anchor > ul > li:before {
  content: "";
  background: var(--color-primary);
  width: 20px;
  height: 20px;
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  color: #d81862;
}
.c-page__anchor > ul > li::after {
  content: "";
  border: 1px solid var(--color-white);
  border-top: none;
  border-left: none;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  font-weight: 700;
  position: absolute;
  left: 5px;
  top: -6px;
  bottom: 0;
  margin: auto;
  color: #d81862;
}
/*----------------------------------------*/
.c-table01 th,
.c-table01 td{
  border: 1px solid var(--color-gray02);
  padding: .5em;
}
.c-table01 th{
  background: var(--color-gray03);
}
/*-------------------------------------------*/
.c-menulink01{
  display: flex;
  justify-content: center;
  gap: var(--rp40);
}
.c-menulink01_list{
  flex: 1;
  max-width: 580px;
}
.c-menulink01_list > a{
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.c-menulink01_list > a > .img{
  object-fit: cover;
  overflow: hidden;
  border-radius: 16px;
}
.c-menulink01_list > a > .img > img{
  transition: .4s ease-in-out;
}
.c-menulink01_list > a > .text{
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.c-menulink01_list > a > .text h3{
  font-size: 20px;
  font-weight: 700;
  line-height: calc(1em + 12px);
  color: var(--color-primary);
  position: relative;
  padding-right: 40px;
  transition: .4s ease-in-out;
}
.c-menulink01_list > a:hover > .text .sup{
  font-weight: 400 !important;
  transition: .4s ease-in-out;
}
.c-menulink01_list > a > .text h3::after{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 32px;
  height: 32px;
  background: url(/recruit_site/img/common/ico_arrow02.svg) center right / 24px auto no-repeat;
  transition: .4s ease-in-out;
}
@media (hover: hover) {
  .c-menulink01_list > a:hover {
    text-decoration: none;
  }
  .c-menulink01_list > a:hover > .img > img{
    transform: scale(1.1);
    transition: .4s ease-in-out;
  }
  .c-menulink01_list > a:hover > .text h3{
    color: var(--color-accent01);
    transition: .4s ease-in-out;
  }
  .c-menulink01_list > a:hover > .text h3::after{
    background-image: url(/recruit_site/img/common/ico_arrow02_a01.svg);
    transform: translateX(4px);
    transition: .4s ease-in-out;
  }
  .c-menulink01_list > a:hover > .text .sup{
    color: var(--color-accent01);
    transition: .4s ease-in-out;
  }
}
@media screen and (max-width: 560px) {
  .c-menulink01{
    flex-direction: column;
  }
  .c-menulink01_list > a > .text h3{
    font-size: 18px;
  }
}
/*----------------------------------------*/
.c-menulink02{
  display: flex;
  flex-direction: row;
  overflow: hidden;
  border-radius: 20px;
}
.c-menulink02.reverse{
  flex-direction: row-reverse;
}
.c-menulink02 .text{
  flex: 1;
  display: flex;
  justify-content: center;
  background: #97D7FF;
  background: linear-gradient(135deg, rgba(151, 215, 255, 1) 0%, rgba(233, 247, 255, 1) 100%);
  }
.c-menulink02 .text .text_inner{
  display: flex;
  flex-direction:column;
  justify-content: center;
  gap: 20px;
  padding: var(--rp60);
}
.c-menulink02 .text .title{
  font-size: 32px;
  line-height: calc(1em + 12px);
  font-weight: 700;
}
.c-menulink02 .text p{
  margin: 0;
}
.c-menulink02 > .img{
  flex: 1;
  overflow: hidden;
  position: relative;
  display: flex;
}
.c-menulink02 > .img > img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .c-menulink02,
  .c-menulink02.reverse{
    flex-direction: column-reverse;
  }
  .c-menulink02 .text .text_inner{
    padding: var(--rp40);
  }
  .c-menulink02 .text .title{
    font-size: 24px;
  }
}
/*----------------------------------------*/
.c-menulink03{
  display: flex;
  overflow: hidden;
  gap: var(--rp40);
}
.c-menulink03 .text{
  flex: 1;
  display: flex;
  justify-content: center;
  }
.c-menulink03 .text .text_inner{
  display: flex;
  flex-direction:column;
  justify-content: center;
  gap: 20px;
}
.c-menulink03 .text .title{
  font-size: 32px;
  line-height: calc(1em + 12px);
  font-weight: 700;
}
.c-menulink03 .text p{
  margin: 0;
}
.c-menulink03 > .img{
  flex: 1;
  overflow: hidden;
  position: relative;
  display: flex;
  border-radius: 16px;
}
.c-menulink03 > .img > img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .c-menulink03{
    flex-direction: column-reverse;
    gap: 16px;
  }
  .c-menulink03 .text .text_inner{
    padding: 0;
    gap: 12px;
  }
  .c-menulink03 .text .title{
    font-size: 18px;
  }
}
/*----------------------------------------*/
.c-menulink04{
  display: flex;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}
.c-menulink04 .img{
  position: absolute;
  width: 100%;
  height: 100%;
}
.c-menulink04 .img > img{
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  transition: .4s ease-in-out;
}
.c-menulink04::before{
  content: "";
  background: #0F3675;
  background: linear-gradient(90deg, rgba(15, 54, 117, .5) 0%, rgba(15, 54, 117, 0) 75%, rgba(15, 54, 117, 0) 100%);
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.c-menulink04 > .inner{
  position: relative;
  z-index: 1;
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: var(--rp40) calc(var(--rp40) * 2) var(--rp40) var(--rp40);
  min-height: 340px;
  position: relative;
  color: var(--color-white);
  text-decoration: none !important;
}
.c-menulink04 > .inner::before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: var(--rp40);
  margin: auto;
  width: var(--rp40);
  height: var(--rp40);
  background: url(/recruit_site/img/common/ico_arrow02.svg) center center / 100% 100% no-repeat;
  transition: .4s ease-in-out;
}
.c-menulink04 > .inner .text{
  display:flex;
  flex-direction:column;
  gap: 16px;
}
.c-menulink04 > .inner .title{
  font-size: 20px;
  line-height: calc(1em + 12px);
  font-weight: 700;
  transition: .4s ease-in-out;
}
.c-menulink04 > .inner p{
  margin: 0;
  transition: .4s ease-in-out;
}
@media (hover: hover) {
  .c-menulink04:hover .img > img{
    transform: scale(1.1);
    transition: .4s ease-in-out;
  }
  .c-menulink04:hover > .inner .title{
    color: var(--color-accent02);
    transition: .4s ease-in-out;
  }
  .c-menulink04:hover > .inner p{
    color: var(--color-accent02);
    transition: .4s ease-in-out;
  }
  .c-menulink04:hover > .inner::before{
    background-image: url(/recruit_site/img/common/ico_arrow02_a02.svg);
    transform: translateX(8px);
    transition: .4s ease-in-out;
  }
}
@media screen and (max-width: 560px) {
  .c-menulink04 > .inner .title{
    font-size: 18px;
  }
  .c-menulink04 > .inner .text{
    gap: 12px;
    padding-right: var(--rp40);
  }
}
/*-------------------------------------------*/
.c-menulink05{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--rp40);
}
.c-menulink05.one-item{
  grid-template-columns: 1fr;
  place-items: center;
}
.c-menulink05_list{
  flex: 1;
  display: flex;
  max-width: 580px;
}
.c-menulink05_list > a{
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 2px solid var(--color-primary);
  border-radius: 20px;
  padding: var(--rp40);
  background: var(--color-white);
}
.c-menulink05_list > a > .text{
  display: flex;
  flex-direction: column;
  gap: 4px;
  height: 100%;
  padding-right: 40px;
  position: relative;
}
.c-menulink05_list > a > .text h3{
  font-size: 20px;
  font-weight: 700;
  line-height: calc(1em + 12px);
  color: var(--color-primary);
  position: relative;
  transition: .4s ease-in-out;
}
.c-menulink05_list > a > .text::after{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 32px;
  height: 32px;
  background: url(/recruit_site/img/common/ico_arrow02.svg) center right / 24px auto no-repeat;
  transition: .4s ease-in-out;
}
@media (hover: hover) {
  .c-menulink05_list > a:hover {
    text-decoration: none;
    background-color: var(--color-secondary);
  }
  .c-menulink05_list > a:hover > .text{
    color: var(--color-accent01);
    transition: .4s ease-in-out;
  }
  .c-menulink05_list > a:hover > .text h3{
    color: var(--color-accent01);
    transition: .4s ease-in-out;
  }
  .c-menulink05_list > a:hover > .text::after{
    background-image: url(/recruit_site/img/common/ico_arrow02_a01.svg);
    transform: translateX(4px);
    transition: .4s ease-in-out;
  }
}
@media screen and (max-width: 560px) {
  .c-menulink05{
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
/*----------------------------------------*/
.c-menulink06{
  display: flex;
  flex-wrap: wrap;
  gap: var(--rp40);
  justify-content: center;
}
.c-menulink06__list {
  width: 100%;
  max-width: calc((100% / 3) - ((var(--rp40) * 2) / 3) );
}
@media screen and (max-width: 768px) {
  .c-menulink06{
    justify-content: flex-start;
  }
  .c-menulink06__list {
    max-width: calc((100% / 2) - ((var(--rp40) * 1) / 2) );
  }
}
@media screen and (max-width: 560px) {
  .c-menulink06__list {
    max-width: 100%;
  }
  .c-menulink06__text .title{
    font-size: 16px;
    line-height: calc(1em + 8px);
  }
}
/*-------------------------------------------*/
.c-menulink07{
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: var(--rp40);
}
.c-menulink07.one-item{
  grid-template-columns: 1fr;
  place-items: center;
}
.c-menulink07_list{
  flex: 1;
  display: flex;
}
.c-menulink07_list > a{
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 2px solid var(--color-primary);
  border-radius: 20px;
  padding: var(--rp40);
  background: var(--color-white);
}
.c-menulink07_list > a.entry{
  background: #fff4b5;
}
.c-menulink07_list > a > .text{
  display: flex;
  flex-direction: column;
  gap: 4px;
  height: 100%;
  padding-right: 40px;
  position: relative;
}
.c-menulink07_list > a > .text h3{
  font-size: 20px;
  font-weight: 700;
  line-height: calc(1em + 12px);
  color: var(--color-primary);
  position: relative;
  transition: .4s ease-in-out;
}
.c-menulink07_list > a > .text::after{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 32px;
  height: 32px;
  background: url(/recruit_site/img/common/ico_arrow02.svg) center right / 24px auto no-repeat;
  transition: .4s ease-in-out;
}
@media (hover: hover) {
  .c-menulink07_list > a:hover {
    text-decoration: none;
    background-color: var(--color-secondary);
  }
  .c-menulink07_list > a:hover > .text{
    color: var(--color-accent01);
    transition: .4s ease-in-out;
  }
  .c-menulink07_list > a:hover > .text h3{
    color: var(--color-accent01);
    transition: .4s ease-in-out;
  }
  .c-menulink07_list > a:hover > .text::after{
    background-image: url(/recruit_site/img/common/ico_arrow02_a01.svg);
    transform: translateX(4px);
    transition: .4s ease-in-out;
  }
}
@media screen and (max-width: 560px) {
  .c-menulink07{
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.c-menulink07_entry{
  flex: 1;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  border: 2px solid var(--color-primary);
  border-radius: 20px;
  padding: var(--rp40);
  background: #fff557;
}
.c-menulink07_entry .text{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  position: relative;
}
.c-menulink07_entry .text h3{
  font-size: 20px;
  font-weight: 700;
  line-height: calc(1em + 12px);
  color: var(--color-primary);
  position: relative;
  transition: .4s ease-in-out;
}
.c-menulink07_entry .link{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  position: relative;
  flex: 1;
  min-width: 140px;
}
.c-menulink07_entry .link .c-btn05{
  background: var(--color-primary);
  color: var(--color-white);
  padding: 8px 24px;
  border-radius: 60px;
  flex: 1;
  justify-content: center;
}
.c-menulink07_entry .link .c-btn05::after{
  background-image: url(/recruit_site/img/common/ico_arrow01_w.svg);
}
@media (hover: hover) {
  .c-menulink07_entry .link .c-btn05:hover{
    background: var(--color-accent01);
  }
}
/*----------------------------------------*/
.c-midashi01{
  display: flex;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.c-midashi01 .img{
  position: absolute;
  width: 100%;
  height: 100%;
}
.c-midashi01 .img > img{
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  transition: .4s ease-in-out;
}
.c-midashi01 > .text{
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: var(--rp40);
  margin: 300px 0 60px 0;
  position: relative;
  text-decoration: none !important;
  background: var(--color-white);
  border-radius: 0 20px 20px 0;
}
.c-midashi01 > .text .title{
  font-size: 36px;
  line-height: calc(1em + 16px);
  font-weight: 700;
  color: var(--color-primary);
}
.c-midashi01 > .text .subtitle{
  font-size: 20px;
  line-height: calc(1em + 16px);
}
.c-midashi01 > .text p{
  margin: 0;
}
@media screen and (max-width: 1440px) {
  .c-midashi01 > .text{
    margin: 360px 40px 40px 0;
  }
}
@media screen and (max-width: 836px) {
  .c-midashi01{
    flex-direction: column;
  }
  .c-midashi01 .img{
    position: static;
    width: 100%;
    aspect-ratio: 16 / 9;
  }
  .c-midashi01 > .text{
    margin: 0;
    background: var(--color-secondary);
    border-radius: 0 0 20px 20px;
  }
}
@media screen and (max-width: 768px) {
  .c-midashi01 > .text{
    gap: 12px;
  }
  .c-midashi01 > .text .title{
    font-size: 24px;
    line-height: calc(1em + 12px);
  }
  .c-midashi01 > .text .subtitle{
    font-size: 16px;
    line-height: calc(1em + 12px);
  }
}
/*----------------------------------------*/
.c-midashi02{
  display: flex;
  flex-direction: row-reverse;
  position: relative;
  overflow: hidden;
  aspect-ratio: 24 / 11;
}
.c-midashi02 .img{
  position: relative;
  flex: 1;
}
.c-midashi02 .img > img{
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  transition: .4s ease-in-out;
}
.c-midashi02 > .text{
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: var(--rp40) calc(var(--rp40) * 2);
  position: relative;
  text-decoration: none !important;
  background: var(--color-primary);
  border-radius: 0;
  max-width: 600px;
}
.c-midashi02 > .text .title{
  font-size: 36px;
  line-height: calc(1em + 16px);
  font-weight: 700;
  color: var(--color-white);
}
.c-midashi02 > .text .subtitle{
  line-height: calc(1em + 16px);
  color: var(--color-white);
}
.c-midashi02 > .text p{
  margin: 0;
}
@media screen and (max-width: 1080px) {
  .c-midashi02{
    flex-direction: column;
    aspect-ratio: initial;
  }
  .c-midashi02 > .text{
  padding: var(--rp40) var(--container-w1);
  max-width: initial;
  }
}
@media screen and (max-width: 768px) {
  .c-midashi02 > .text .title{
    font-size: 24px;
    line-height: calc(1em + 12px);
  }
  .c-midashi02 > .text{
    gap: 12px;
  }
  .c-midashi02 > .text .title  br{
    display: none;
  }
}
/*----------------------------------------*/
.c-flowchart{
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.c-flowchart__list{
  display: flex;
  gap: 12px;
  background: var(--color-secondary);
  position: relative;
  border-radius: 4px;
}
.c-flowchart__list p{
  margin: 0;
}
.c-flowchart__list .namber{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  padding: 12px;
  font-size: 24px;
  line-height: calc(1em);
  font-weight: 700;
  color: var(--color-white);
  background: var(--color-accent01);
  border-radius: 4px 0 0 4px;
}
.c-flowchart__list .title{
  display: flex;
  width: 12em;
  align-items: center;
  padding: 12px;
  font-weight: 700;
  font-size: 20px;
  line-height: calc(1em + 12px);
  color: var(--color-primary);
}
.c-flowchart__list .title.wauto{
  width: auto;
}
.c-flowchart__list .summary{
  flex: 1;
  display: flex;
  align-items: center;
  padding: 12px;
}
.c-flowchart__list::after{
  content: "";
  position: absolute;
  bottom: -24px;
  left: 0;
  right: 0;
  margin: auto;
  width: 16px;
  height: 16px;
  border-left: 4px solid var(--color-accent01);
  border-bottom: 4px solid var(--color-accent01);
  transform: rotate(-45deg);
  z-index: -1;
}
.c-flowchart__list:last-child:after{
  display: none;
}
.c-flowchart__list.offer{
  background: #fff1a8;
}
@media screen and (max-width: 768px) {
  .c-flowchart__list{
    flex-wrap: wrap;
    border-radius: 0;
  }
  .c-flowchart__list .namber{
    border-radius: 0;
  }
  .c-flowchart__list .title{
    flex: 1;
    padding: 12px 12px 12px 0;
  }
  .c-flowchart__list .summary{
    flex: initial;
    width: 100%;
    padding: 0 12px 12px 12px;
  }
}
/*----------------------------------------*/
@media screen and (max-width: 560px) {
  .c-table__area{
    overflow: auto;
    position: relative;
  }
  .c-table__area::before{
    content: "横にスクロールしてご覧いただけます。";
    display: block;
    background: url(/recruit_site/img/common/ico_scroll.svg) center left / 24px auto no-repeat;
    padding-left: 28px;
  }
  .c-table__area table{
    width: 900px !important;
  }
}
/*----------------------------------------*/
.c-accordion__area .c-accordion:last-child{
  border-bottom: 1px solid var(--color-gray02);
}
.c-accordion{
  border-top: 1px solid var(--color-gray02);
}
.c-accordion__title{
  cursor: pointer;
  padding: var(--rp20) 40px var(--rp20) 0;
  position: relative;
  font-size: 18px;
  line-height: calc(1em + 10px);
  font-weight: 700;
  color: var(--color-primary);
}
.c-accordion__title::before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 8px;
  margin: auto;
  width: 16px;
  height: 16px;
  border-left: 4px solid var(--color-accent01);
  border-bottom: 4px solid var(--color-accent01);
  transform: rotate(-45deg);
  transition: transform .4s ease-in-out;
}
.c-accordion__title.close::before{
  transform: rotate(135deg);
}
.c-accordion__contents{
  padding-bottom: var(--rp20);
}
/*----------------------------------------*/
@media screen and (max-width: 768px) {
  .c-img_spsc01{
    overflow: auto;
  }
  .c-img_spsc01::before{
    content: "横にスクロールしてご覧いただけます。";
    display: block;
    background: url(/recruit_site/img/common/ico_scroll.svg) center left / 24px auto no-repeat;
    padding-left: 28px;
    margin-bottom: 12px;
  }
  .c-img_spsc01 > img{
    width: 768px;
    max-width: initial;
  }
}
/*----------------------------------------*/
.c-video iframe{
  aspect-ratio: 16 / 9;
  width: 100%;
}

/*====================================================================
.article__area…記事部分の装飾まとめ
====================================================================*/
.article__area a:not([class]):link{
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: underline;
}
.article__area a:not([class]):visited{
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: underline;
}
.article__area a:not([class]):hover{
  color: var(--color-accent01);
}
.article__area img:not([class]){
  height: initial;
}
.article__area a[href$=".pdf"]:not([class])::after {
  content:" ";
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url(/recruit_site/img/common/ico_link_pdf.svg) center center / auto 100% no-repeat;
  vertical-align: text-bottom;
  margin-left: 4px;
}
.article__area a[href$=".doc"]:not([class])::after,
.article__area a[href$=".docx"]:not([class])::after{
	content: "";
	background: url(/recruit_site/img/common/ico_link_word.svg) center center / auto 100% no-repeat;
  width: 24px;
  height: 24px;
	display: inline-block;
  vertical-align: text-bottom;
  margin-left: 4px;
}
.article__area a[href$=".xls"]:not([class])::after,
.article__area a[href$=".xlsx"]:not([class])::after{
	content: "";
	background: url(/recruit_site/img/common/ico_link_excel.svg) center center / auto 100% no-repeat;
  width: 24px;
  height: 24px;
	display: inline-block;
  vertical-align: text-bottom;
  margin-left: 4px;
}
.article__area a[target="_blank"]:not([class]):not(a[href$=".pdf"]):not(a[href$=".doc"]):not(a[href$=".docx"]):not(a[href$=".xls"]):not(a[href$=".xlsx"])::after {
  content:" ";
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url(/recruit_site/img/common/ico_link_external02.svg) center center / 100% auto no-repeat;
  margin-left: 4px;
  vertical-align: text-bottom;
}
.article__area .iconnone a[href$=".pdf"]::after,
.article__area .iconnone a[href$=".doc"]::after,
.article__area .iconnone a[href$=".docx"]::after,
.article__area .iconnone a[href$=".xls"]::after,
.article__area .iconnone a[href$=".xlsx"]::after,
.article__area .iconnone a[target="__blank"]::after{
  display: none;
}
.article__area h1:not([class]),
.article__area h2:not([class]){
  margin: var(--rp100) 0 var(--rp40);
  font-size: 36px;
  line-height: calc(1em + 16px);
  font-weight: 700;
  position: relative;
  color: var(--color-primary);
}
.article__area h3:not([class]){
  font-size: 24px;
  line-height: calc(1em + 12px);
  font-weight: 700;
  padding-bottom: .5em;
  margin: var(--rp60) 0 var(--rp40);
  position: relative;
  color: var(--color-primary);
}
.article__area h3:not([class]) > .sup{
  font-size: 16px;
  line-height: calc(1em + 8px);
  font-weight: 400;
  color: var(--color-primary);
  display: block;
  margin-bottom: 8px;
}
.article__area h3:not([class])::before{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: var(--color-secondary);
}
.article__area h3:not([class])::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 30%;
  background: var(--color-primary);
}
.article__area h4:not([class]){
  margin: var(--rp60) 0 var(--rp40);
  font-size: 20px;
  line-height: calc(1em + 12px);
  font-weight: 700;
  padding-left: .5em;
  position: relative;
  border-left: 6px solid var(--color-accent01);
  color: var(--color-primary);
}
.article__area h5:not([class]){
  font-size: 20px;
  line-height: calc(1em + 12px);
  font-weight: 700;
  margin: var(--rp60) 0 var(--rp40);
  position: relative;
  background: var(--color-secondary);
  padding: 8px 16px ;
  color: var(--color-primary);
}
.article__area h6:not([class]){
  font-size: 20px;
  line-height: calc(1em + 12px);
  font-weight: 700;
  margin: var(--rp60) 0 var(--rp40);
  position: relative;
  color: var(--color-primary);
}
.article__area h1:first-child,
.article__area h2:first-child{
  margin-top: 0;
}
.article__area h1:not([class]) + h1:not([class]),
.article__area h1:not([class]) + h2:not([class]),
.article__area h1:not([class]) + h3:not([class]),
.article__area h1:not([class]) + h4:not([class]),
.article__area h1:not([class]) + h5:not([class]),
.article__area h1:not([class]) + h6:not([class]),
.article__area h2:not([class]) + h2:not([class]),
.article__area h2:not([class]) + h3:not([class]),
.article__area h2:not([class]) + h4:not([class]),
.article__area h2:not([class]) + h5:not([class]),
.article__area h2:not([class]) + h6:not([class])
{margin-top: var(--rp40);}
.article__area h3:not([class]) + h3:not([class]),
.article__area h3:not([class]) + h4:not([class]),
.article__area h3:not([class]) + h5:not([class]),
.article__area h3:not([class]) + h6:not([class]),
.article__area h4:not([class]) + h4:not([class]),
.article__area h4:not([class]) + h5:not([class]),
.article__area h4:not([class]) + h6:not([class]),
.article__area h5:not([class]) + h5:not([class]),
.article__area h5:not([class]) + h6:not([class])
{margin-top: var(--rp20);}
@media screen and (max-width: 768px) {
  .article__area h1:not([class]) br,
  .article__area h2:not([class]) br,
  .article__area h3:not([class]) br,
  .article__area h4:not([class]) br,
  .article__area h5:not([class]) br,
  .article__area h6:not([class]) br{
    display: none;
  }
  .article__area h1:not([class]),
  .article__area h2:not([class]){
    font-size: 28px;
  }
  .article__area h3:not([class]){
    font-size: 20px;
  }
  .article__area h4:not([class]){
    font-size: 18px;
    line-height: calc(1em + 10px);
  }
  .article__area h5:not([class]){
    font-size: 18px;
    line-height: calc(1em + 10px);
  }
  .article__area h6:not([class]){
    font-size: 18px;
    line-height: calc(1em + 10px);
  }
}
.article__area ul:not([class]){
  list-style-type: none;
  margin: var(--rp40) 0 0 0.5em;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.article__area ul:not([class]) > li {
  position: relative;
  padding-left: 1em;
}
.article__area ul:not([class]) > li:before {
  position: absolute;
  top: 0.75em;
  left: 0;
  content: "";
  background: var(--color-primary);
  width: 6px;
  height: 6px;
  border-radius: 3px;
}
.article__area ul.checklist{
  list-style-type: none;
  margin: var(--margin-small) 0 0 0.5em;
}
.article__area ul.checklist > li {
  margin-bottom: 0.5em;
  position: relative;
  padding-left: 1em;
}
.article__area ul.checklist > li:before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 10px;
  height: 5px;
  border-left: 2px solid var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  transform: rotate(315deg);
}
.article__area ol:not([class]) {
  list-style: decimal;
  margin: var(--rp40) 0 0 0.5em;
  padding-left: 1em;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.article__area ol:not([class]) > li::marker {
  font-weight: 700;
  color: var(--color-primary);
}
.article__area ol:not([class]) > li::before {
  color: var(--color-black);
}
.article__area table:not([class]) {
  width: 100%;
  margin-top: var(--rp40);
}
.article__area table:not([class]) th,
.article__area table:not([class]) td {
  border: 1px solid var(--color-gray02);
  padding: 16px;
  line-height: calc(1em + 12px);
}
.article__area table:not([class]) th{
  background: var(--color-secondary);
  width: 0;
  white-space: nowrap;
  font-weight: 700;
  color: var(--color-primary);
}
.article__area table:not([class]) th + th,
.article__area table:not([class]) th:has(+ th){
  background: var(--color-secondary);
  width: auto;
  white-space:initial;
}
.article__area .color2 table:not([class]) th{
  background: var(--color-tertiary);
}
.article__area table:not([class]) td {
  background: var(--color-white);
}
.u-nowrap{
  width: 0;
  white-space: nowrap;
}
/*====================================================================
Utility…調整のための便利クラスなどを管理
====================================================================*/
.u-left {  text-align: left !important;}
.u-right {  text-align: right !important;}
.u-center {  text-align: center;}
.u-center--pc {  text-align: center;}
@media screen and (max-width: 768px) {
  .u-center--pc {  text-align: left;}
  .u-center--sp {  text-align: center;}
}
@media screen and (max-width: 768px) {
  .u-spbr{
    display: none;
  }
}
.u-lh10{line-height: 1 !important;}
.u-lh12{line-height: 1.2 !important;}
.u-lh14{line-height: 1.4 !important;}
.u-lh16{line-height: 1.6 !important;}
.u-lh18{line-height: 1.8 !important;}
.u-lh20{line-height: 2 !important;}
/*----------------------------------------*/
.u-fnt--bold{font-weight: bold !important;}
.u-fnt--w01{font-weight: 100 !important;}
.u-fnt--w02{font-weight: 200 !important;}
.u-fnt--w03{font-weight: 300 !important;}
.u-fnt--w04{font-weight: 400 !important;}
.u-fnt--w05{font-weight: 500 !important;}
.u-fnt--w06{font-weight: 600 !important;}
.u-fnt--w07{font-weight: 700 !important;}
.u-fnt--w08{font-weight: 800 !important;}
.u-fnt--w09{font-weight: 900 !important;}
/*----------------------------------------*/
.u-fnt--size14{
  font-size: 14px;
  line-height: calc(1em + 8px);
}
.u-fnt--size14b{
  font-size: 14px;
  line-height: calc(1em + 8px);
  font-weight: 700;
}
.u-fnt--size16{
  font-size: 16px;
  line-height: calc(1em + 8px);
}
.u-fnt--size16b{
  font-size: 16px;
  line-height: calc(1em + 8px);
  font-weight: 700;
}
.u-fnt--size18{
  font-size: 18px;
  line-height: calc(1em + 8px);
}
.u-fnt--size18b{
  font-size: 18px;
  line-height: calc(1em + 8px);
  font-weight: 700;
}
.u-fnt--size20{
  font-size: 20px;
  line-height: calc(1em + 8px);
}
.u-fnt--size20b{
  font-size: 20px;
  line-height: calc(1em + 8px);
  font-weight: 700;
}
.u-fnt--size24{
  font-size: 24px;
  line-height: calc(1em + 12px);
}
.u-fnt--size24b{
  font-size: 24px;
  line-height: calc(1em + 12px);
  font-weight: 700;
}
.u-fnt--size28{
  font-size: 28px;
  line-height: calc(1em + 12px);
}
.u-fnt--size28b{
  font-size: 28px;
  line-height: calc(1em + 12px);
  font-weight: 700;
}
.u-fnt--size32{
  font-size: 32px;
  line-height: calc(1em + 12px);
}
.u-fnt--size32b{
  font-size: 32px;
  line-height: calc(1em + 12px);
  font-weight: 700;
}
.u-fnt--size36b{
  font-size: 36px;
  line-height: calc(1em + 16px);
  font-weight: 700;
}
.u-fnt--size36{
  font-size: 36px;
  line-height: calc(1em + 16px);
}
.u-fnt--size40{
  font-size: 40px;
  line-height: calc(1em + 16px);
}
.u-fnt--size40b{
  font-size: 40px;
  line-height: calc(1em + 16px);
  font-weight: 700;
}
@media screen and (max-width: 560px) {
.u-fnt--size14{
  font-size: 14px;
  line-height: calc(1em + 8px);
}
.u-fnt--size14b{
  font-size: 14px;
  line-height: calc(1em + 8px);
  font-weight: 700;
}
.u-fnt--size16{
  font-size: 16px;
  line-height: calc(1em + 8px);
}
.u-fnt--size16b{
  font-size: 16px;
  line-height: calc(1em + 8px);
  font-weight: 700;
}
.u-fnt--size18{
  font-size: 18px;
  line-height: calc(1em + 8px);
}
.u-fnt--size18b{
  font-size: 18px;
  line-height: calc(1em + 8px);
  font-weight: 700;
}
.u-fnt--size20{
  font-size: 20px;
  line-height: calc(1em + 8px);
}
.u-fnt--size20b{
  font-size: 20px;
  line-height: calc(1em + 8px);
  font-weight: 700;
}
.u-fnt--size24{
  font-size: 20px;
  line-height: calc(1em + 12px);
}
.u-fnt--size24b{
  font-size: 20px;
  line-height: calc(1em + 12px);
  font-weight: 700;
}
.u-fnt--size28{
  font-size: 24px;
  line-height: calc(1em + 12px);
}
.u-fnt--size28b{
  font-size: 24px;
  line-height: calc(1em + 12px);
  font-weight: 700;
}
.u-fnt--size32{
  font-size: 28px;
  line-height: calc(1em + 12px);
}
.u-fnt--size32b{
  font-size: 28px;
  line-height: calc(1em + 12px);
  font-weight: 700;
}
.u-fnt--size36b{
  font-size: 32px;
  line-height: calc(1em + 12px);
  font-weight: 700;
}
.u-fnt--size36{
  font-size: 32px;
  line-height: calc(1em + 12px);
}
.u-fnt--size40{
  font-size: 36px;
  line-height: calc(1em + 16px);
}
.u-fnt--size40b{
  font-size: 36px;
  line-height: calc(1em + 16px);
  font-weight: 700;
}
}
/*----------------------------------------*/
.u-fnt--ssss {font-size:0.6em;}
.u-fnt--sss {font-size:0.7em;}
.u-fnt--ss {font-size:0.8em;}
.u-fnt--s {font-size:0.9em;}
.u-fnt--l {font-size:1.1em;}
.u-fnt--ll {font-size:1.2em;}
.u-fnt--lll {font-size:1.4em;}
.u-fnt--llll {font-size:1.6em;}
.u-fnt--lllll {font-size:1.8em;}
.u-fnt--llllll {font-size:2em;}
.u-fnt--lllllll {font-size:2.2em;}
.u-fnt--llllllll {font-size:2.4em;}
.u-fnt--lllllllll {font-size:3em;}
/*----------------------------------------*/
.u-fntcolor--primary {color: var(--color-primary) !important;}
.u-fntcolor--secondary {color: var(--color-secondary) !important;}
.u-fntcolor--tertiary {color: var(--color-tertiary) !important;}
.u-fntcolor--accent01 {color: var(--color-accent01) !important;}
.u-fntcolor--accent02 {color: var(--color-accent02) !important;}
.u-fntcolor--accent03 {color: var(--color-accent03) !important;}
.u-fntcolor--sub1 {color: #9bd5cc !important;}
.u-fntcolor--red {color: #e41010 !important;}
.u-fntcolor--orange {color: #e48510 !important;}
.u-fntcolor--yellow {color: #e4cf10 !important;}
.u-fntcolor--green {color: #0f9a00 !important;}
.u-fntcolor--blue {color: #1041e4 !important;}
.u-fntcolor--purple {color: #840bc0 !important;}
/*----------------------------------------*/
.u-m--layout01  {margin-top: var(--margin-big) !important;}
.u-m--layout02  {margin-top: var(--margin-middle) !important;}
.u-m--layout03  {margin-top: var(--margin-small) !important;}
.u-m10  {margin: 10px !important;}
.u-m20  {margin: 20px !important;}
.u-m30  {margin: 30px !important;}
.u-m40  {margin: 40px !important;}
.u-m50  {margin: 50px !important;}
.u-m60  {margin: 60px !important;}
.u-m70  {margin: 70px !important;}
.u-m80  {margin: 80px !important;}
.u-m90  {margin: 90px !important;}
.u-m100  {margin: 100px !important;}
.u-mt0  {margin-top: 0 !important;}
.u-mt10 {margin-top: 10px !important;}
.u-mt20 {margin-top: 20px !important;}
.u-mt30 {margin-top: 30px !important;}
.u-mt40 {margin-top: 40px !important;}
.u-mt50 {margin-top: 50px !important;}
.u-mt60 {margin-top: 60px !important;}
.u-mt70 {margin-top: 70px !important;}
.u-mt80 {margin-top: 80px !important;}
.u-mt90 {margin-top: 90px !important;}
.u-mt100 {margin-top: 100px !important;}
.u-mb0  {margin-bottom: 0 !important;}
.u-mb10 {margin-bottom: 10px !important;}
.u-mb20 {margin-bottom: 20px !important;}
.u-mb30 {margin-bottom: 20px !important;}
.u-mb40 {margin-bottom: 40px !important;}
.u-mb50 {margin-bottom: 50px !important;}
.u-mb60 {margin-bottom: 60px !important;}
.u-mb70 {margin-bottom: 70px !important;}
.u-mb80 {margin-bottom: 80px !important;}
.u-mb90 {margin-bottom: 90px !important;}
.u-mb100 {margin-bottom: 100px !important;}
.u-mtrp20 {margin-top: var(--rp20) !important;}
.u-mtrp40 {margin-top: var(--rp40) !important;}
.u-mtrp60 {margin-top: var(--rp60) !important;}
.u-mtrp80 {margin-top: var(--rp80) !important;}
.u-mtrp100 {margin-top: var(--rp100) !important;}
.u-mtrp120 {margin-top: var(--rp120) !important;}
.u-mbrp20 {margin-bottom: var(--rp20) !important;}
.u-mbrp40 {margin-bottom: var(--rp40) !important;}
.u-mbrp60 {margin-bottom: var(--rp60) !important;}
.u-mbrp80 {margin-bottom: var(--rp80) !important;}
.u-mbrp100 {margin-bottom: var(--rp100) !important;}
.u-mbrp120 {margin-bottom: var(--rp120) !important;}
.u-ml0  {margin-left: 0 !important;}
.u-ml10 {margin-left: 10px !important;}
.u-ml20 {margin-left: 20px !important;}
.u-ml30 {margin-left: 30px !important;}
.u-ml40 {margin-left: 40px !important;}
.u-mr0  {margin-right: 0 !important;}
.u-mr10 {margin-right: 10px !important;}
.u-mr20 {margin-right: 20px !important;}
.u-mr30 {margin-right: 30px !important;}
.u-mr40 {margin-right: 40px !important;}
.u-mauto {margin: auto !important;}
.u-m0   {margin: 0 !important;}
/*----------------------------------------*/
.u-p10  {padding: 10px !important;}
.u-p20  {padding: 20px !important;}
.u-p30  {padding: 30px !important;}
.u-p40  {padding: 40px !important;}
.u-p50  {padding: 50px !important;}
.u-p60  {padding: 60px !important;}
.u-p70  {padding: 70px !important;}
.u-p80  {padding: 80px !important;}
.u-p90  {padding: 90px !important;}
.u-p100  {padding: 100px !important;}
.u-pt0  {padding-top: 0 !important;}
.u-pt10 {padding-top: 10px !important;}
.u-pt20 {padding-top: 20px !important;}
.u-pt40 {padding-top: 40px !important;}
.u-pt50 {padding-top: 50px !important;}
.u-pt60 {padding-top: 60px !important;}
.u-pt70 {padding-top: 70px !important;}
.u-pt80 {padding-top: 80px !important;}
.u-pt90 {padding-top: 90px !important;}
.u-pt100 {padding-top: 100px !important;}
.u-pb0  {padding-bottom: 0 !important;}
.u-pb10 {padding-bottom: 10px !important;}
.u-pb20 {padding-bottom: 20px !important;}
.u-pb40 {padding-bottom: 40px !important;}
.u-pb50 {padding-bottom: 50px !important;}
.u-pb60 {padding-bottom: 60px !important;}
.u-pb70 {padding-bottom: 70px !important;}
.u-pb80 {padding-bottom: 80px !important;}
.u-pb90 {padding-bottom: 90px !important;}
.u-pb100 {padding-bottom: 100px !important;}
.u-pl0  {padding-left: 0 !important;}
.u-pl10 {padding-left: 10px !important;}
.u-pl20 {padding-left: 20px !important;}
.u-pl40 {padding-left: 40px !important;}
.u-pr0  {padding-right: 0 !important;}
.u-pr10 {padding-right: 10px !important;}
.u-pr20 {padding-right: 20px !important;}
.u-pr40 {padding-right: 40px !important;}
.u-p0   {padding: 0 !important;}
/*----------------------------------------*/
.u-w100p {  width: 100% !important;}
.u-wauto {  width: auto !important;}
.u-wmx320 {  width: 100% !important;max-width: 320px !important;}
.u-wmx360 {  width: 100% !important;max-width: 360px !important;}
.u-wmx560 {  width: 100% !important;max-width: 560px !important;}
/*----------------------------------------*/
.u-kadomaru01{border-radius: 10px;}
.u-kadomaru02{border-radius: 20px;}
/*----------------------------------------*/
.u-border01{border:1px solid var(--color-primary)}
.u-border02{border:2px solid var(--color-primary)}
.u-bordertop01{border-top:1px solid var(--color-primary)}
.u-borderbottom01{border-bottom:1px solid var(--color-primary)}
/*----------------------------------------*/
.u-nolink{pointer-events: none;}
.u-indent01{
  text-indent: -1em;
  padding-left: 1em;
}
/*====================================================================
animation
====================================================================*/
/*順々に表示する*/
@keyframes Display__order {
  0% { opacity: 0; }
  100% { opacity: 1;filter: blur(0); transform: translateY(0);}
}
.animeTrigger.display__order .order1,
.animeTrigger.display__order .order2,
.animeTrigger.display__order .order3,
.animeTrigger.display__order .order4,
.animeTrigger.display__order .order5,
.animeTrigger.display__order .order6,
.animeTrigger.display__order .order7,
.animeTrigger.display__order .order8,
.animeTrigger.display__order .order9,
.animeTrigger.display__order .order10{
  opacity: 0;
  filter: blur(30px);
  transform: translateY(100px);
}
.animeTrigger.display__order.animetion .order1{
  animation: Display__order 1.2s ease .5s 1 forwards;
}
.animeTrigger.display__order.animetion .order2{
  animation: Display__order 1.2s ease 1s 1 forwards;
}
.animeTrigger.display__order.animetion .order3{
  animation: Display__order 1.2s ease 1.5s 1 forwards;
}
.animeTrigger.display__order.animetion .order4{
  animation: Display__order 1.2s ease 2s 1 forwards;
}
.animeTrigger.display__order.animetion .order5{
  animation: Display__order 1.2s ease 2.5s 1 forwards;
}
.animeTrigger.display__order.animetion .order6{
  animation: Display__order 1.2s ease 3s 1 forwards;
}
.animeTrigger.display__order.animetion .order7{
  animation: Display__order 1.2s ease 3.5s 1 forwards;
}
.animeTrigger.display__order.animetion .order8{
  animation: Display__order 1.2s ease 4s 1 forwards;
}
.animeTrigger.display__order.animetion .order9{
  animation: Display__order 1.2s ease 4.5s 1 forwards;
}
.animeTrigger.display__order.animetion .order10{
  animation: Display__order 1.2s ease 5s 1 forwards;
}
/*フェード*/
@keyframes fade {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@-webkit-keyframes fade {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.animeTrigger.a-fade{
  opacity: 0;
}
.animeTrigger.animetion.a-fade{
  animation: fade 1s ease 0s 1 forwards;
}
.mt-image-none{
  width: initial;
  height: initial;
}
/*====================================================================
print
====================================================================*/
@media print {
  /* アニメーション無効化 */
  * {
    opacity: 1 !important;
  }
  html,body {
    width: 1080px;
    margin: auto !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }
  .top #header_gnav header{
    background: var(--color-primary) !important;
    color: var(--color-white) !important;
    position: relative !important;
  }
  .top header::before{
    display: none !important;
  }
  .layer #header_gnav header{
    position: relative !important;
  }
  .p-mainiimages__text{
    /* display: none !important; */
    height: 100% !important;
  }
  .p-topcontent01{
    min-height: auto !important;
  }
}