@charset "utf-8";

/*---------------------------------------------
	body
---------------------------------------------*/
html {
  scroll-behavior: smooth;
  font-size: 62.5%;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
}

body {
  width: 100%;
  font-size: 1.6rem;
  line-height: 1.8;
  text-align: center;
  -webkit-text-size-adjust: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  position: relative;
  color: #000;
  background: #fff;
  overflow: hidden;
  box-sizing: border-box;
}
*{
  box-sizing: border-box;
  transition: all 0.5s;
}

p {
  text-align: left;
}

img {
  width: 100%;
  height: auto;
}

.mincho {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
}
.mincho2 {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-style: normal;
}

.eigo {
  font-family: "Outfit", sans-serif;
}

.eigo2 {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
}

/*---------------------------------------------
	Anchor
---------------------------------------------*/
a {
  outline: none;
}

a:link {
  color: #000;
  text-decoration: none;
}

a:visited {
  color: #000;
  text-decoration: none;
}

a:hover {
  color: #777;
  text-decoration: none;
}

a:active {
  color: #777;
  text-decoration: none;
}

a {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

#form {
  padding-top: 20px;
  margin-top: -20px;
  display: block;
}

/*---------------------------------------------
	p
---------------------------------------------*/
p {
  margin-bottom: 1.5em;
}

.only_pc_none {
  display: none;
}

.only_sp_none {
  display: block;
}

.sp_br {
  display: none;
}

.pc_br {
  display: inline;
}

/*---------------------------------------------
 ** ON OFF hover
---------------------------------------------*/
.hover {
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.hover:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -ms-filter: "alpha( opacity=60 )";
}

/*=================================================================================================================================*/
/**  共通部分	*/
/*=================================================================================================================================*/

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.scroll-up.done,
.scroll-fade.done {
  opacity: 1;
  transform: translate(0, 0);
}

.load-fade {
  opacity: 0;
  transition: all 4s
    /*処理にかかる時間*/
  ;
}

.mb_8 {
  margin-bottom: 8%;
}

.load-up {
  opacity: 0;
  transform: translateY(30px)
    /*スクロールアップする距離*/
  ;
  transition: all 4s
    /*処理にかかる時間*/
  ;
}

.load-up.done,
.load-fade.done {
  opacity: 1;
  transform: translate(0, 0);
}

.btn_blue{
  min-width:220px;
  display: inline-block;
  padding:3px 50px;
  border-radius: 30px;
  position:relative;
  color:#fff!important;
  font-size:110%;
  background:#004698;
  text-align: center;
}
.btn_blue::after{
  content:'';
  width:8px;
  height:10px;
  background:url(../img/icon_arrow.png) no-repeat center center;
  background-size:100% auto;
  position:absolute;
  right:15px;
  top:0;
  bottom:0;
  margin:auto 0;
  transition: all 0.5s;
}

.btn_blue:hover{
  background:#3c78be;
}
.btn_blue:hover:after{
  right:10px;
}

.btn_black{
  min-width:220px;
  display: inline-block;
  padding:3px 50px;
  border-radius: 30px;
  position:relative;
  color:#000!important;
  font-size:110%;
  border:2px solid #000;
  text-align: center;
}
.btn_black::after{
  content:'';
  width:8px;
  height:10px;
  background:url(../img/icon_arrow03.png) no-repeat center center;
  background-size:100% auto;
  position:absolute;
  right:15px;
  top:0;
  bottom:0;
  margin:auto 0;
  transition: all 0.5s;
}

.btn_black:hover{
  background:#e8e8e8;
}
.btn_black:hover:after{
  right:10px;
}

.btn_gray{
  min-width:230px;
  display: inline-block;
  padding:12px 40px 12px 35px;
  border-radius: 5px;
  position:relative;
  color:#fff!important;
  font-size:100%;
  background:#4d4d4d;
  text-align: center;
}
.btn_gray::after{
  content:'';
  width:15px;
  height:10px;
  background:url(../img/icon_arrow2.png) no-repeat center center;
  background-size:100% auto;
  position:absolute;
  right:20px;
  top:0;
  bottom:0;
  margin:auto 0;
  transition: all 0.5s;
}

.btn_gray:hover{
  background:#939393;
}
.btn_gray:hover:after{
  right:13px;
}


/*---------------------------------------------
 ** フェードイン
---------------------------------------------*/
.scrollanime {
  opacity: 0;
}

/*一瞬表示されるのを防ぐ*/
.fadeInDown {
  animation-name: fadeInDown;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
    transform: translate(0);
  }
}

/*2.上下の動きを指定*/
.updown {
  transform: translateY(-50px);
}

.downup {
  transform: translateY(50px);
}

/*3.左右の動きを指定*/
.sect02 {
  overflow: hidden;
}

/*横スクロールバーを隠す*/
.slide-right {
  transform: translateX(100px);
}

.slide-left {
  transform: translateX(-100px);
}

/*---------------------------------------------
 ** ローディング
---------------------------------------------*/

.start {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9000;
}

.start p {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 9999;
  width: 70%;
  max-width: 350px;
}

/* fadeUpをするアイコンの動き */

.fadeIn {
  animation-name: fadeUpAnime;
  animation-duration: 2.5s;
  animation-fill-mode: forwards;
  opacity: 0;
  display: block !important;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#curtain {
  z-index: 999;
}

.jump2 {
  opacity: 0;
}

.jump03 {
  opacity: 0;
}

/* ジャンプする動き */
.jump_on {
  animation: poyoyon 1s ease-in-out 1 forwards;
  animation-delay: 1s;
}

.jump_on02 {
  animation: poyoyon 1s ease-in-out 1 forwards;
  animation-delay: 1s;
}

.jump_on03 {
  animation: poyoyon 1s ease-in-out 1 forwards;
  animation-delay: 0s;
}

@keyframes poyoyon {
  0% {
    transform: scale(0.5, 0.5) translate(0, 0);
  }

  15% {
    transform: scale(0.7, 0.7) translate(0, 8px);
  }

  30% {
    transform: scale(1.02, 1) translate(0, 12px);
  }

  50% {
    transform: scale(0.98, 1.05) translate(0, -12px);
  }

  70% {
    transform: scale(1, 0.9) translate(0, 8px);
  }

  100% {
    transform: scale(1, 1) translate(0, 0);
  }

  0%,
  100% {
    opacity: 1;
  }
}

/* フォントが下から順に表示 */
.pro_anime div p {
  display: inline-block;
  transform-origin: center center;
  transform: translate3d(0, 100px, 0);
  margin-bottom: 0 !important;
}

.pro_anime div p span {
  transform-origin: center center;
  transform: scale3d(0.1, 0.1, 1);
  opacity: 0;
  font-size: 100% !important;
}

.pro_anime_on p:nth-child(1) {
  transition: transform 0.8s ease 0.1s;
}
.pro_anime_on p:nth-child(1) span {
  transition: transform 0.8s ease 0.1s, opacity 0.8s ease 0.1s;
}

.pro_anime_on p:nth-child(2) {
  transition: transform 0.8s ease 0.2s;
}
.pro_anime_on p:nth-child(2) span {
  transition: transform 0.8s ease 0.2s, opacity 0.8s ease 0.2s;
}

.pro_anime_on p:nth-child(3) {
  transition: transform 0.8s ease 0.3s;
}
.pro_anime_on p:nth-child(3) span {
  transition: transform 0.8s ease 0.3s, opacity 0.8s ease 0.3s;
}

.pro_anime_on p:nth-child(4) {
  transition: transform 0.8s ease 0.4s;
}
.pro_anime_on p:nth-child(4) span {
  transition: transform 0.8s ease 0.4s, opacity 0.8s ease 0.4s;
}

.pro_anime_on p:nth-child(5) {
  transition: transform 0.8s ease 0.5s;
}
.pro_anime_on p:nth-child(5) span {
  transition: transform 0.8s ease 0.5s, opacity 0.8s ease 0.5s;
}

.pro_anime_on p:nth-child(6) {
  transition: transform 0.8s ease 0.6s;
}
.pro_anime_on p:nth-child(6) span {
  transition: transform 0.8s ease 0.6s, opacity 0.8s ease 0.6s;
}

.pro_anime_on p:nth-child(7) {
  transition: transform 0.8s ease 0.7s;
}
.pro_anime_on p:nth-child(7) span {
  transition: transform 0.8s ease 0.7s, opacity 0.8s ease 0.7s;
}

.pro_anime_on p:nth-child(8) {
  transition: transform 0.8s ease 0.8s;
}
.pro_anime_on p:nth-child(8) span {
  transition: transform 0.8s ease 0.8s, opacity 0.8s ease 0.8s;
}

.pro_anime_on p:nth-child(9) {
  transition: transform 0.8s ease 0.9s;
}
.pro_anime_on p:nth-child(9) span {
  transition: transform 0.8s ease 0.9s, opacity 0.8s ease 0.9s;
}

.pro_anime_on p:nth-child(10) {
  transition: transform 0.8s ease 1.0s;
}
.pro_anime_on p:nth-child(10) span {
  transition: transform 0.8s ease 1.0s, opacity 0.8s ease 1.0s;
}

.pro_anime_on p:nth-child(11) {
  transition: transform 0.8s ease 1.1s;
}
.pro_anime_on p:nth-child(11) span {
  transition: transform 0.8s ease 1.1s, opacity 0.8s ease 1.1s;
}

.pro_anime_on p:nth-child(12) {
  transition: transform 0.8s ease 1.2s;
}
.pro_anime_on p:nth-child(12) span {
  transition: transform 0.8s ease 1.2s, opacity 0.8s ease 1.2s;
}

.pro_anime_on p:nth-child(13) {
  transition: transform 0.8s ease 1.3s;
}
.pro_anime_on p:nth-child(13) span {
  transition: transform 0.8s ease 1.3s, opacity 0.8s ease 1.3s;
}

.pro_anime_on p:nth-child(14) {
  transition: transform 0.8s ease 1.4s;
}
.pro_anime_on p:nth-child(14) span {
  transition: transform 0.8s ease 1.4s, opacity 0.8s ease 1.4s;
}

.pro_anime_on p:nth-child(15) {
  transition: transform 0.8s ease 1.5s;
}
.pro_anime_on p:nth-child(15) span {
  transition: transform 0.8s ease 1.5s, opacity 0.8s ease 1.4s;
}


.pro_anime_on p {
  transform: translate3d(0, 0, 0) !important;
}

.pro_anime_on p span {
  display: block !important;
  transform: scale3d(1, 1, 1) !important;
  opacity: 1 !important;
}

/*---------------------------------------------
 ** ヘッダー　ナビ
---------------------------------------------*/
header {
  width:100%;
  position:fixed;
  top:0;
  z-index:10;
  background:#fff;
}

#header_in{
  width:90%;
  height:97px;
  max-width:1680px;
  margin: 0 auto;
  z-index: 2;
  padding:30px 0 0px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items:flex-end;
}

h1 {
  width:135px;
  margin-bottom:1.2%;
}

.navOpen #head_btn {
  background: unset;
}


@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.pikopiko {
  animation: pikopiko 1s steps(2, start) infinite;
}

@keyframes pikopiko {
  0% {
    transform: rotate(10deg);
  }

  to {
    transform: rotate(-6deg);
  }
}

/*---------------------------------------------
 ** ナビ
---------------------------------------------*/

/*---------------------------------------------
 ** TOP
---------------------------------------------*/

#main{
  width:100%;
  min-height: 100svh;
  background:#4c4945cd;
  position:relative;
}
body#home main{
  z-index:-1;
}

body#home main>div{
  overflow: hidden;
  max-height: 100svh;
  transition: max-height .3s,transform .3s;
  z-index:0;
}
#top_mv{
  width:100%;
  min-height: 100svh;
  position: fixed;  
  top:0;
  left:0;
  z-index:1;
}
#top_mv_sp{
  display: none;
}

#top_mv video{
  width:100%;
  object-fit: cover;
  object-position: center;
  min-height: 100svh;
  opacity: 1;
  transition: opacity 0.5s ease;
}
#top_mv video.hidden {
  opacity: 0;
  pointer-events: none; 
}

#main>a{
  width:320px;
  display: block;
  z-index:2;
  position:absolute;
  bottom:0;
  right:0;
}
#award_btn_sp{
  display: none;
}

#contents{
  z-index:1;
  position:relative;

  background:#fff;
}
#top_message{
  padding:7% 0 5%;
  background:url(../img/message_bg.jpg) no-repeat bottom center;
  background-size:cover;
}

#home h2{
  font-size:240%;
  margin-bottom:4%;
}
#top_message>div{
  width:90%;
  max-width:690px;
  margin:0 auto;
}
#top_message>div h3{
  font-size:170%;
  margin-bottom:8%;
  font-weight: 600;
  text-align: left;
  padding-left:14%;
}

#top_message>div p{
  font-size:110%;
  margin-bottom:6%;
  letter-spacing: -0.02rem;
  padding-left:14%;
  line-height:2.0;
  font-weight: 400;
}

@media screen and (max-width: 900px) {
  #top_message{
    padding:7% 0 5%;
    background:url(../img/message_bg02.jpg) no-repeat bottom center;
    background-size:110% auto;
  }
}

#top_news{
  padding:8% 0 5%;
}
#top_news ul{
  width:85%;
  max-width:1100px;
  margin:0 auto;
}
#top_news ul li {
  height:auto;
  display: block;
}
#top_news ul li a{
  display: block;
  padding:20px;
}

#top_news ul li a:hover{
  background-color: #f0eadb;
  color:#000;
}


#top_news ul li a > div{
  overflow: hidden;
  max-height:210px;
}


#top_news ul li a:hover img{
  filter: brightness(120%); 
  transform: scale(1.1);
}

#top_news ul li dl dt{
  padding:5% 0 5%;
  border-bottom:1px solid #c8a559;
  position:relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#top_news ul li dl dt span:nth-child(1){
  width:60%;
  color:#c8a559;
  display: block;
  text-align: left;
}
#top_news ul li dl dt span:nth-child(2){
  width:35%;
  display: block;
  text-align: right;
}
#top_news ul li dl dd{
  padding:5% 0;
  text-align: left;
}
.slick-slider div{
  transition: none;
}

.slick-arrow{
  z-index:2!important;
  width:65px!important;
  height:65px!important;
}


.slick-arrow:before{
  content:""!important;
  width: 100%!important;
  height: 100%!important;
  position: absolute;
  top: 0;
  left: 0;
}

.slick-next{
  right:-95px!important;
  transition: all 0.5s;
}

.slick-next:before{
  background: url(../img/arrow01.png) no-repeat!important;
  background-size: contain!important;
  transition: all 0.5s;
}
.slick-next:hover:before{
  background: url(../img/arrow01_on.png) no-repeat!important;
  background-size: contain!important;
}

.slick-prev{
  left:-95px!important;
  transition: all 0.5s;
}

.slick-prev:before{
  background: url(../img/arrow01.png) no-repeat!important;
  background-size: contain!important;
  transform: rotate(180deg);
  transition: all 0.5s;
}
.slick-prev:hover:before{
  background: url(../img/arrow01_on.png) no-repeat!important;
  background-size: contain!important;
}
.more_btn{
  text-align: center;
  padding:3% 0;
}
.more_btn a{
  min-width:160px;
  display: inline-block;
  padding:3px 10px;
  border-radius: 40px;
  background: #c8a559;
  color:#fff;
  position:relative;
}
.more_btn a::before{
  content:'';
  width:4px;
  height:12px;
  background:url(../img/arrow02.png) no-repeat center left;
  background-size:100% auto;
  position:absolute;
  right:15px;
  top:0;
  bottom:0;
  margin:auto 0;
  pointer-events: none;
  transition: all 0.5s;
}
.more_btn a:hover{
  transform: scale(1.1);
  background: #d5b570;
}
.more_btn a:hover::before{
  right:10px;
}

@media screen and (max-width: 1300px) {
  .slick-arrow:before{
    width: 80%!important;
    height: 80%!important;
  }
  .slick-next{
    right:-70px!important;
  }
  .slick-prev{
    left:-55px!important;
  }
  
}

#top_location{
  display: block;
  pointer-events: none;
}

#top_hall{
  background:#f4f2e9;
}
#top_hall_sp{
  display: none;
}

#top_hall ul{
  width:90%;
  max-width:1680px;
  aspect-ratio: 84 / 129;
  position:relative;
  margin:0 auto;
}

#top_hall ul li{
  display: block;
  position:absolute;
}


.hall_kyoto01{
  width:32%;
  top:3%;
  left:0;
}
.hall_kyoto02{
  width:51%;
  top:0;
  left:33.5%;
}
.hall_kyoto03{
  width:37%;
  top:10%;
  right:0;
}
.hall_kyoto04{
  width:23%;
  top:23.5%;
  left:3%;
}
.hall_kyoto05{
  width:34.5%;
  top:22.5%;
  left:27.5%;
}
.hall_kyoto06{
  width:62%;
  top:27.5%;
  right:3%;
}
.hall_shiga01{
  width:38%;
  top:46%;
  left:7%;
  z-index:1;
}
.hall_shiga02{
  width:40%;
  top:58%;
  left:1%;
}
.hall_osaka01{
  width:53%;
  top:46%;
  right:0%;
}
.hall_okayama01{
  width:28%;
  top:66%;
  right:33%;
}
.hall_okayama02{
  width:24%;
  top:70%;
  right:5%;
}
.hall_okayama03{
  width:45%;
  bottom:0;
  right:10%;
}
.hall_hiroshima01{
  width:36%;
  bottom:0%;
  left:0%;
}

#top_hall ul li:last-child{
  position: static;
}
#top_hall ul li>img{
  width:16%;
  position: absolute;
  pointer-events: none;
}
#icon_kyoto{
  top:7%;
  right:-5%;
}
#icon_shiga{
  top:60.5%;
  left:30%;
}
#icon_osaka{
  top:60.5%;
  right:37%;
}
#icon_okayama{
  bottom:31%;
  right:16%;
}
#icon_hiroshima{
  bottom:22%;
  left:0%;
}



#top_hall ul li a{
  position:relative;
  display: block;
  z-index:0;
}
#top_hall ul li a:hover{
  display: block;
  position:relative;
  z-index:2;
}
#top_hall ul li a::before{
  content:'';
  width:calc(100% + 80px);
  height:calc(100% + 80px);
  pointer-events: none;
  border-radius: 20px;
  background:none;
  position:absolute;
  top:-40px;
  right:-40px;
  z-index:-1;
}
#top_hall ul li a:hover img{
  filter: brightness(110%); 
}

#top_hall ul li a:hover::before{
  background: #ffffffe4;
  box-shadow: 0px 0px 20px #d0c9c3;
  animation: fadeIn 1s forwards; /* アニメーションを適用 */
}
@keyframes fadeIn {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
#top_hall ul li a.hover-off::before{
  animation: fadeOut 1s forwards; /* アニメーションを適用 */
  background: #ffffffe4;
  box-shadow: 0px 0px 20px #d0c9c3;
}
@keyframes fadeOut {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0;
  }
}

/* キラキラ追従 */
.top_hall_on.hideCursor *{
  cursor: none!important; 
}

.cursor,
.m_kirakira span {
  border-radius: 50%;
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
}

.top_hall_on .cursor {
  width: 100px;
  height: 100px;
  background:url(../img/kirakira.png) no-repeat;
  background-size:100% auto;
  z-index: 1001;
}
.top_hall_on .m_kirakira span {
  width: 30px;
  height: 30px;
  background:url(../img/kirakira.png) no-repeat;
  background-size:100% auto;
  opacity: 0.9;
  z-index: 1000;
}


#top_report{
  padding:8% 0 5%;
}
#top_report ul{
  width:85%;
  max-width:1100px;
  margin:0 auto;
}
#top_report ul li {
  height:auto;
  display: block;
}
#top_report ul li a{
  display: block;
  padding:20px;
  text-align: left;
}

#top_report ul li a:hover{
  background-color: #f0eadb;
  color:#000;
}

#top_report ul li a > div{
  overflow: hidden;
  max-height:210px;
}

#top_report ul li a:hover img{
  filter: brightness(120%); 
  transform: scale(1.1);
}

#top_report ul li dl dt{
  display: block;
  padding:12px 0 3px;
  line-height:1.4;
}

#top_report ul li dl dd{
  display: block;
  line-height:1.4;
  font-size:90%;
}

#top_recruit{
  background: linear-gradient(90deg, #56a1ff 0%, #95b5fb 50%, #d19ee1 100%);
  overflow: hidden;
  position:relative;
}
#top_recruit>div{
  width:90%;
  max-width:1200px;
  margin:0 auto;
  color:#fff;
  position:relative;
  z-index:2;
  padding:7% 0;
  text-align: left;
}
#top_recruit>div>div{
  display: inline-block;
}
#top_recruit>div>div>p{
  display: flex;
  justify-content: space-between;
  font-size:220%;
  padding:5% 0 0;
  margin-bottom:0;
}
#top_recruit>div>div>p span{
  display: inline-block;
}
#top_recruit>div>div h2{
  font-size:450%;
  font-weight: 500;
  line-height:1.0;
}
#top_recruit .more_btn a{
  background:#0071ff;
}
#top_recruit>img{
  width:70%;
  position:absolute;
  right:0;
  top:0;
  bottom:0;
  margin:auto 0;
  mix-blend-mode:overlay;
}

#top_special{
  background:#c8bba8;
  padding:8% 0 250px;
}
#top_blog{
  width:90%;
  max-width:1480px;
  margin:0 auto;
  background:#e9e4dd;
  overflow: hidden;
  padding:5% 0 0;
}
#top_blog>div{
  width:93%;
  border-radius: 0% 70px 0 0;
  overflow: hidden;
  position:relative;
  z-index:0;
}
#top_blog>div>div::before{
  content:'';
  width:100%;
  height:600px;
  display: block;
  background:url(../img/blog_bg.jpg) no-repeat left bottom;
  background-size:105% auto;
  position: absolute;
  bottom:-80%;
  left:0;
  z-index:1;
}
#top_blog>div>div>div{
  width:85%;
  margin:0 auto;
  display: flex;
  align-self:center;
  position: relative;
  padding:7% 0 7%;
  z-index:2;
}
#top_blog>div h3{
  width:25%;
  max-width:230px;
  margin-right:3%;
}
#top_blog>div .more_btn a{
  background:#000;
  margin-top:20px;
}

#top_ban{
  padding:8% 0 3%;
  background:url(../img/ban_bg.jpg) no-repeat center center;
  background-size:cover;
}
#top_ban>div{
  width:80%;
  max-width:1200px;
  margin:0 auto;
}
#top_ban ul{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
#top_ban ul li{
  display: block;
  margin-bottom:4%;
}
#top_ban #ban01{
  width:32.4%;
  margin-right:3%;
}
#top_ban #ban02{
  width:32.4%;
  margin-right:3%;
}
#top_ban #ban03{
  width:29.2%;
}
#top_ban #ban04{
  width:37.5%;
  margin-right:3%;
}
#top_ban #ban05{
  width:27%;
  margin-right:3%;
}
#top_ban #ban06{
  width:29.5%;
}
#top_ban ul li a:hover{
  filter: brightness(120%); 
}

footer{
  padding:5% 0 2%;
  background:#e9e4dd;
  font-size:85%;
  position:relative;
  z-index:1;
}
footer>div{
  width:90%;
  max-width:1200px;
  margin:0 auto;
  position:relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  text-align: left;
}
footer>div h1{
  width:200px;
  margin-right:7%;
}
footer>div>ul{
  width:17%;
  margin-right:3%;
}
footer>div>ul li{
  font-size:120%;
  margin-bottom:10px;
}
footer>div>div{
  width:50%;
}
footer>div>div p{
  font-size:120%;
  margin-bottom:2px;
}
footer>div>div>div{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
footer>div>div>div>ul:nth-child(1){
  display: inline-block;
  margin-right:5%;
}
footer>div>div>div>ul:nth-child(2){
  display: inline-block;
}
footer>div>div>div ul li{
  margin-bottom:4px;
}
footer>div>div>div ul li::before{
  content:'−';
  display: inline-block;
  margin-right:5px;
}
footer #icon01{
  width:45px;
  display: block;
  position:absolute;
  top:-36px;
  right:57px;
}
footer #icon02{
  width:38px;
  display: block;
  position:absolute;
  top:-40px;
  right:0px;
}


footer.rec_foot>div{
  max-width:800px;
  padding-bottom:80px;
}
footer.rec_foot>div h1{
  width:100%;
  text-align: center;
}
footer.rec_foot>div h1{
  margin-right:0;
}
footer.rec_foot>div h1>img{
  width:60%;
  max-width:300px;
  margin:0 auto 3%;
}
footer.rec_foot>div>ul{
  width:25%;
}
footer.rec_foot>div>div {
  width: 65%;
}


footer.rec_foot #icon01{
  top:auto;
  bottom:10px;
  right:calc(50% + 5px);
  margin:0 auto;
}
footer.rec_foot #icon02{
  top:auto;
  bottom:8px;
  right:calc(50% - 50px);
  margin:0 auto;
}
.btn_official{
  text-align: center;
  padding-bottom:0!important;
}
.btn_official a{
  width:85%;
  max-width:350px;
  display: block;
  border:1px solid#000;
  font-size:200%;
  padding:10px 20px;
  margin:20px auto;
}
.btn_official a:hover{
  background:#000;
  color:#fff;
}
footer>p{
  text-align: center;
  margin-bottom:0;
  font-size:90%;
  padding-top:5%;
}

@media screen and (max-width: 1120px) {
  footer>div{
    max-width:800px;
    padding-bottom:80px;
  }
  footer>div h1{
    width:100%;
    text-align: center;
  }
  footer>div h1{
    margin-right:0;
  }
  footer>div h1>img{
    width:200px;
    margin:0 auto 5%;
  }
  footer>div>ul{
    width:25%;
  }
  footer>div>div {
    width: 65%;
  }


  footer #icon01{
    top:auto;
    bottom:10px;
    right:calc(50% + 5px);
    margin:0 auto;
  }
  footer #icon02{
    top:auto;
    bottom:8px;
    right:calc(50% - 50px);
    margin:0 auto;
  }
}
@media screen and (max-width: 900px) {
  footer>div{
    max-width:550px;
    padding-bottom:100px;
  }
  footer>div>ul{
    width:45%;
  }
  footer>div>div {
    width: 45%;
  }
}


#pageTop {
  display: none;
  position: fixed;
  bottom: 10px;
  right: 30px;
  z-index: 9;
  transition: none;
}

#pageTop a {
  display: block;
  width: 12px;
  height: 140px;
  background: url(../img/pagetop.png) no-repeat bottom left;
  background-size: 100% auto;
}

#pageTop a:hover {
  text-decoration: none;
  opacity: 0.7;
}

/*---------------------------------------------
 ** RECRUIT
---------------------------------------------*/

.c-text {
  overflow: hidden;
  display: flex;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  color:#e9e4dd;
  line-height:1.0;
}
.c-text span{
  color:#c3e8ff;
  display: inline-block;
  box-sizing: content-box;
  padding-right:60px;
}
.c-text__item {
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 140px;
}
.c-text__item:nth-child(odd) {
  animation: MoveLeft 60s -30s infinite linear;
}

.c-text__item:nth-child(even) {
  animation: MoveLeft2 60s infinite linear;
}

.c-text_rev .c-text__item:nth-child(odd) {
  animation: MoveRight 60s -30s infinite linear;
}

.c-text_rev .c-text__item:nth-child(even) {
  animation: MoveRight2 60s infinite linear;
}


@keyframes MoveLeft {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes MoveLeft2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}

@keyframes MoveRight {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}

@keyframes MoveRight2 {
  from {
    transform: translateX(-200%);
  }
  to {
    transform: translateX(0);
  }
}

#rec_main{
  height:700px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position:relative;
}
#rec_menu{
  width:330px;
  background:#c3e8ff;
  padding:3% 70px;
  display: flex;
  align-items: center;
}
#rec_menu ul{
  font-size:150%;
  font-weight: 300;
}
#rec_menu li a{
  display: block;
  padding:10px 0;
  text-align: left;
}

#rec_slide{
  width:calc(100% - 330px);
  position:relative;
}

#rec_slide>ul li img{
  height:700px;
  object-fit: cover;
  object-position: 0 100%;
}
#rec_slide>p.eigo2{
  width:450px;
  height:55px;
  background:#fff;
  padding:0 10px;
  display: inline-block;
  font-size:200%;
  text-align: center;
  position:absolute;
  top:0;
  right:0;
  left:0;
  bottom:0;
  margin:auto;
}


.slide_sp{
  display: none!important;
}
@media screen and (max-width: 2000px) {
  #rec_main{
    height:500px;
  }
  #rec_slide>ul li img{
    height:500px;
  }
}
@media screen and (max-width: 1150px) {
  #rec_main{
    height:400px;
  }
  #rec_menu{
    display:none;
  }
  #rec_slide{
    width:100%;
  }
  #rec_slide>ul li img{
    height:400px;
  }
  .c-text__item {
    font-size: 100px;
  }
}
#anc_message{
  background:#e9e4dd;
  position:relative;
  z-index:0;
  padding-bottom:5%;
}
.rec_message01{
  max-width:calc(52% + 700px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items:flex-start;
}
.rec_message01 > img{
  width:50%;
}
.rec_message01 > div{
  width:40%;
  padding:3% 0;
}
#anc_message h2{
  font-size:500%;
  color:#7accff;
  text-align: right;
  font-weight: 300;
  line-height:1.6;
  margin-bottom:5%;
  margin-right:5%;
}
#anc_message h3{
  font-size:240%;
  font-weight: 500;
  text-align: left;
  margin-bottom:40px;
}

.rec_message_p{
  font-size:120%;
  font-weight: 500;
}
.rec_message_p span{
  letter-spacing: 0.2rem;
  font-size: 105%;
  display: inline-block;
  text-indent: -1rem;
}

.rec_message02{
  width:90%;
  max-width:1400px;
  margin:0 auto;
}

.rec_message02>div{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding:5% 0;
}
.rec_message02>div:nth-child(1){
  flex-direction: row-reverse;
}
.rec_message02>div>img{
  width:63%;
}
.rec_message02>div>div{
  width:32%;
  padding:3% 0;
}
@media screen and (max-width: 1480px) {
  .rec_message01 > div {
    width: 43%;
  }
  .rec_message02>div>img{
    width:55%;
  }
  .rec_message02>div>div{
    width:40%;
  }

}
@media screen and (max-width: 1150px) {
  .rec_message01 > img{
    width:80%;
  }
  .rec_message01 > div{
    width:90%;
    margin:0 auto;
    padding:3% 0;
  }
  #anc_message h2{
    font-size:400%;
    margin-right:0;
  }
  #anc_message h3{
    font-size:200%;
  }
  #anc_message h2,
  #anc_message h3,
  #anc_message p{
    text-align: center;
  }
  #anc_message .br_none{
    display: none;
  }
  .rec_message02>div>img{
    width:100%;
  }
  .rec_message02>div{
    padding:0 0 5%;
  }
  .rec_message02>div>div{
    width:100%;
    padding:50px 0 10px;
    margin:0 auto;
  }
  #anc_message h3 {
    margin-bottom: 20px;
  }
}


#anc_awards{
  width:90%;
  position:relative;
  z-index:2;
  padding:250px 0 120px 0;
  margin:0 auto;
}

.rec_entry_btn{
  width:80%;
  max-width:640px;
  height:140px;
  position:absolute;
  display: block;
  top:-70px;
  right:0;
  left:0;
  margin:0 auto;
}
.rec_entry_btn a{
  height:140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #5bbaea 0%, #c3e8ff 50%, #7accff 100%);
  background-position: 100% 0;
  background-size: 200% 100%;
  font-size:200%;
  position:relative;
  color:#000!important;
  transition: all 0.5s;
  line-height:1.0;
}
.rec_entry_btn a::after{
  content:'';
  width:30px;
  height:30px;
  display: block;
  background:url(../img/recruit/arrow01.png) no-repeat right center;
  background-size:100% auto;
  position:absolute;
  right:50px;
  top: 0;
  bottom:0;
  margin: auto 0;
  pointer-events: none;
  transition: all 0.5s;
}
.rec_entry_btn a:hover{
  background-position: 0 0;
}
.rec_entry_btn a:hover::after{
  right:30px;
}


#anc_awards h2{
  font-size:400%;
  color:#978475;
  text-align: center;
  font-weight: 300;
  line-height:1.0;
  margin-bottom:40px;
}
#anc_awards h2 span{
  font-size:130%;
  display: block;
}
#anc_awards p{
  color:#978475;
  text-align: center;
  margin-bottom:60px;
}

.youtube {
  max-width:960px;
  aspect-ratio: 16 / 9.2;
  margin: 0 auto 5%;
}

.youtube iframe {
  width: 100%;
  height: 100%;
  background:#fff;
}

.awards_bg{
  background:#ded4c88f;
  transform: skewX(-35deg);
  display: block;
  pointer-events: none;
  z-index:-1;
}
#awards_bg01{
  width:120%;
  height:87%;
  position:absolute;
  left:-5%;
  bottom:0;
  z-index:-1;
}
#awards_bg02{
  width:120%;
  height:83%;
  position:absolute;
  left:-120%;
  bottom:20%;
}
#awards_bg03{
  width: 80%;
  height: 85%;
  position: absolute;
  right: -70%;
  bottom: 74%;
}
@media screen and (max-width: 1420px) {
  #awards_bg01{
    width:140%;
    left:-15%;
  }
  #awards_bg02{
    left:-140%;
  }
  #awards_bg03{
    right:-90%;
  }
}
@media screen and (max-width: 1150px) {
  #anc_awards h2 {
    font-size: 320%;
  }
  .rec_entry_btn {
    max-width: 480px;
  }
  .rec_entry_btn a{
    height:120px;
  }
  #awards_bg01 {
    width: 180%;
    left: -25%;
  }
  #awards_bg03 {
    right: -110%;
  }
  
}

#anc_recruitment{
  padding:80px 0 60px;
  background:#c3e8ff;
  position:relative;
  z-index:2;
}

#anc_recruitment>div{
  width:90%;
  max-width:1200px;
  margin:0 auto;
}

#anc_recruitment h2{
  width:90%;
  max-width:1400px;
  color:#978475;
  text-align: left;
  line-height:1.0;
  margin:0 auto 40px;
  display: flex;
  align-items: baseline;
}
#anc_recruitment h2 span{
  font-size:500%;
  display: inline-block;
  margin-right:30px;
}

.recruitment_data{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.recruitment_data>a{
  width:31%;
  margin-right:3.5%;
  background:#fff;
  padding:1.5%;
  color:#000!important;
}

.recruitment_data>a:nth-child(3n){
  margin-right:0;
}
.recruitment_data .recruitment_img{
  margin-bottom:15px;
  overflow: hidden;
}
.recruitment_data>a:hover{
  background:#e6f5ff;
  box-shadow: 0 0 20px #a1b8c6;
}
.recruitment_data a:hover img{
  filter: brightness(120%); 
  transform: scale(1.1);
}

.recruitment_data h3{
  color:#7accff;
  text-align: left;
  font-size:130%;
  margin-bottom:12px;
  font-weight: 600;
  line-height: 1.4;
}
.recruitment_data ul{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.recruitment_data ul li{
  border:2px solid #7accff;
  background:#fff;
  font-weight: 500;
  display: inline-block;
  margin:0 15px 15px 0;
  padding:4px 10px;
  border-radius: 30px;
}
.recruitment_data .recruitment_yen_town{
  border-top:1px solid #000;
  padding-top:20px;
  line-height:1.4;
}
.recruitment_data .icon_yen{
  background:url(../img/recruit/icon_yen.png) no-repeat top left;
  background-size:25px auto;
  padding:0 0 3px 35px;
  margin-bottom:5px;
}
.recruitment_data .icon_town{
  background:url(../img/recruit/icon_town.png) no-repeat top left 3px;
  background-size:18px auto;
  padding:0 0 3px 35px;
  margin-bottom:5px;
}

.btn_view_more{
  width:90%;
  max-width:1200px;
  height:76px;
  position:absolute;
  display: block;
  bottom:-38px;
  right:0;
  left:0;
  margin:0 auto;
}
.btn_view_more a{
  width:305px;
  height:76px;
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content:center;
  background: #000;
  font-size:140%;
  position:relative;
  color:#fff!important;
  transition: all 0.5s;
  position:absolute;
  right:0;
}
.btn_view_more a::after{
  content:'';
  width:18px;
  height:18px;
  display: block;
  background:url(../img/recruit/arrow02.png) no-repeat right center;
  background-size:100% auto;
  position:absolute;
  right:25px;
  top: 0;
  bottom:0;
  margin: auto 0;
  pointer-events: none;
  transition: all 0.5s;
}
.btn_view_more a:hover{
  background:#666;
}
.btn_view_more a:hover::after{
  right:15px;
}

@media screen and (max-width: 1150px) {
  #anc_recruitment {
    padding: 120px 0 60px;
  }
  #anc_recruitment h2{
    display: block;
    text-align: center;
  }

  #anc_recruitment h2 span{
    font-size:400%;
    display:block;
    margin-right:0px;
    margin-bottom:10px;
  }
  .recruitment_data>a {
    width: 100%;
    margin-right: 0;
    margin-bottom:20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding:25px;
  }
  .recruitment_data>a>div:nth-of-type(1){
    width:350px;
    margin-bottom:0;
  }
  .recruitment_data>a>div:nth-of-type(2) {
    width:calc(95% - 350px);
  }
  .btn_view_more a{
    left:0;
    margin:0 auto;
  }

}
@media screen and (max-width: 900px) {
  .recruitment_data a{
    align-items: stretch;
  }
  .recruitment_data>a>div:nth-of-type(1){
    width:300px;
  }
  .recruitment_data>a>div:nth-of-type(1) img{
    object-fit: cover;
    object-position: center center;
    height:100%;
    width:100%;
  }
  .recruitment_data>a>div:nth-of-type(2) {
    width:calc(95% - 300px);
  }
}

#anc_interviews{
  padding:80px 0 60px;
  position:relative;
  z-index:1;
}


#anc_interviews h2{
  font-size: 500%;
  display: block;
  color:#7accff;
  text-align: center;
  position:relative;
  line-height:1.0;
}

#anc_interviews h2:after{
  content:'';
  width:75%;
  height:300px;
  display: block;
  background:#dbd2c1;
  position:absolute;
  bottom:-290px;
  right:0;
  z-index:-1;
}

#anc_interviews .read{
  width:90%;
  max-width:1480px;
  text-align: center;
  color:#fff;
  padding-top:40px;
  margin:0 auto;
}

#anc_interviews>div{
  position:relative;
}
#anc_interviews>div:after{
  content:'';
  width:calc(50% - 800px);
  height:100%;
  display: block;
  background:#dbd2c1;
  position:absolute;
  top:0;
  left:0;
  z-index:1;
}



.interview_block{
  width:90%;
  max-width:1480px;
  margin:0 auto;
  position:relative;
}

.interview_block>div:nth-of-type(1){
  width:100%;
  min-height:400px;
  display: flex;
  align-items: center;
  position:relative;
}
.interview_block>div:nth-of-type(1)>div{
  z-index:2;
  position:relative;
  white-space: nowrap;
}
.interview_block01{
  background:url(../img/recruit/interview01.jpg) no-repeat right top;
  background-size:cover;
  padding-left:12%;
}
.interview_block02{
  width:100%;
  background:url(../img/recruit/interview02.jpg) no-repeat left top;
  background-size:cover;
  padding-right:12%;
  justify-content: right;
}
.interview_block03{
  background:url(../img/recruit/interview03.jpg) no-repeat right top;
  background-size:cover;
  padding-left:12%;
  color:#fff;
  position:relative;
}
.interview_shadow{
  width:100%;
  height:100%;
  display: block;
  position:absolute!important;
  top:0;
  left:0;
  background-image: linear-gradient(90deg, rgba(86, 86, 86, 0.398), rgba(255, 255, 255, 0));
  z-index:0!important;
}

.interview_block>div>img{
  width:75px;
  height:75px;
  position:absolute;
  top:0;
  bottom:0;
  margin:auto 0;
  background:#fff;
  padding:15px;
  border-radius: 50px;
  transition: all 0.5s;
  border:4px solid #fff;
  z-index:2;
}
.interview_block01 img,
.interview_block03 img{
  left:-15px;
}
.interview_block02 img{
  right:-15px;
}
.staff_ban {
  transition: 0.3s;
  cursor: pointer;
  position: relative;
  margin-top:40px;
}

.staff_ban:hover img {
  transform: scale(1.3);
  border:4px solid #7accff;
}
.staff_ban.active img {
  transform: rotate(225deg) scale(1.3);
}

.staff_data {
  padding: 0 40px;
  opacity: 0;
  height: 0;
  line-height: 0;
  transition: 0.3s;
  background:#f3f0ec;
  position:relative;
  overflow: hidden;
}
.staff_data > * + * {
  margin-top: 0;
}

.staff_data img {
  height: 0;
}

.staff_data.open {
  padding: 40px 5% 20px;
  opacity: 1;
  line-height: normal;
  height: auto;

}
.staff_data.open > * + * {
  margin-top: 10px;
}
.staff_data.open img {
  height: auto;
}

.staff_ban p{
  font-size:110%;
  font-weight: 600;
}
.staff_ban h3{
  font-size:120%;
  font-weight: 300;
  text-align: left;
}
.staff_ban h3 span{
  font-size:220%;
  font-weight: 500;
  display: block;
  line-height:1.2;
  margin-top:10px;
}


.staff_data::before{
  content:'';
  width: 60%;
  height: 400px;
  position: absolute;
  left: -20%;
  top: 0;
  background: #ded4c88f;
  transform: skewX(-35deg);
  display: block;
  pointer-events: none;
  z-index:0;
}
.staff_data>div{
  opacity: 0;
}
.staff_data1.open>div{
  z-index:1;
  position:relative;
  animation: fadein 3s forwards;
}
.staff_data2.open>div{
  z-index:1;
  position:relative;
  animation: fadein 3s forwards;
}

.staff_data3.open>div{
  z-index:1;
  position:relative;
  animation: fadein 3s forwards;
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.staff_data dl{
  margin:0 auto 60px;
  text-align: left;
}

.staff_data dl dt{
  font-weight: 600;
  font-size:120%;
}
.staff_data dl dd{
  font-size:200%;
  font-weight: 600;
}
.staff_data dl dd span{
  display: inline-block;
  font-size:40%;
  font-weight: 500;
  padding-left:20px;
}

.staff_voice>div{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  font-size:90%;
  margin-bottom:40px;
}
.staff_voice>div:nth-child(2n-1){
  flex-direction: row-reverse;
}
.staff_voice>div>div{
  width:46.5%;
  margin-bottom:20px;
}
.staff_voice>div>div h4{
  font-size:120%;
  color:#736357;
  text-align: left;
  margin-bottom:20px;
}
.staff_voice>div>div p{
  line-height:2.0;
}
.staff_voice>div>img{
  width:46.5%;
  margin-bottom:20px;
}

.close_btn{
  display: inline-block;
  margin:-30px auto 20px;
  background:#000;
  color:#fff;
  font-weight: 600;
  padding:5px 20px;
  cursor: pointer;
}
.close_btn:hover{
  background:#999;
}

@media screen and (max-width: 1150px) {
  
  #anc_interviews {
    padding: 120px 0 60px;
  }
  #anc_interviews h2 {
    font-size: 400%;
  }
}

#anc_model{
  padding:80px 0 60px;
  position:relative;
  background:#f0f0f0;
  z-index:1;
}


#anc_model h2{
  font-size: 400%;
  display: block;
  color:#7accff;
  text-align: center;
  position:relative;
  line-height:1.0;
  margin-bottom:40px;
}

.model_data{
  width:95%;
  max-width:1480px;
  margin:0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.model_accodion{
  width:32%;
  background:#fff;
  border-radius: 0 50px 0 0;
  padding:30px 30px 10px 30px;
  box-shadow: 0 0 3px #d6d6d6;
}
.model_ban{
  position:relative;
  min-height:170px;
}
.model_ban>div{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.model_ban>div dl{
  display: inline-block;
  margin-right:20px;
  text-align: left;
  font-size:90%;
}
.model_ban>div dl .br_none{
  display: none;
}
.model_ban>div dl dt{
  display: inline-block;
  background:#7accff;
  color:#fff;
  font-weight: 600;
  line-height:1.0;
  padding:5px 10px;
  margin-bottom:5px;
  position:relative;
}
.model_ban>div dl dt.icon_staff_m::after{
  content:'';
  width:40px;
  height:60px;
  display: block;
  background:url(../img/recruit/icon_staff_m.png) no-repeat top left;
  background-size:100% auto;
  position:absolute;
  right:-60px;
  top:-10px;
}
.model_ban>div dl dt.icon_staff_w::after{
  content:'';
  width:40px;
  height:60px;
  display: block;
  background:url(../img/recruit/icon_staff_w.png) no-repeat top left;
  background-size:100% auto;
  position:absolute;
  right:-60px;
  top:-10px;
}

.model_ban>div>img{
  width:40px;
}
.model_ban>p{
  font-size:85%;
  line-height:1.6;
  padding:10px 0;
}
.model_ban>span{
  width:40px;
  display: block;
  text-align: center;
  position:absolute;
  right:0;
  top:35px;
}
.model_ban>span>img{
  max-width:20px;
  margin:0 auto;
}
.model_ban>span::after{
  content:'VIEW';
  width:100%;
  color: #7accff;
  font-size:70%;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
}
.model_accodion:has(.model_ban:hover){
  background:#f5fbff;
}
.model_accodion:has(.model_ban.active){
  background:#f5fbff;
}
.model_ban.active>span>img {
  transform: rotate(225deg);
}
.model_ban.active>span::after{
  content:'CLOSE';
}

.model_detail{
  display: none;
  transition: none;
}
.model_detail p{
  font-size:80%;
}
.model_detail>div{
  margin:20px 0;
}
.model_detail>div dl{
  border-bottom:1px solid #7accff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items:center;
  padding-bottom:5px;
  margin-bottom:10px;
}
.model_detail>div dl dt{
  width:60px;
  background:#7accff;
  color:#fff;
  font-size:90%;
  letter-spacing: 0.2rem;
  text-align: center;
  padding:0 5px 2px;
  line-height:1.4;
  border-radius: 0 8px 0 0;
}
.model_detail>div dl dt span{
  font-size:120%;
}
.model_detail>div dl dd{
  width:calc(96% - 60px);
  font-size:85%;
  text-align: left;
  line-height:1.2;
  padding-bottom:3px;
}

@media screen and (max-width: 1320px) {
  .model_data{
    width:90%;
    max-width:1000px;
  }
  .model_accodion{
    width:48.5%;
    margin-bottom:3%;
  }
}


#anc_job{
  padding:80px 0 60px;
}

#anc_job>div{
  width:90%;
  max-width:1300px;
  margin:0 auto;
}


#anc_job h2{
  font-size: 400%;
  display: block;
  color:#c8bba8;
  text-align: center;
  position:relative;
  line-height:1.0;
  margin-bottom:40px;
}
#anc_job h2+p{
  text-align: center;
  margin-bottom:30px;
}
#anc_job ul{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
#anc_job ul li{
  width:23.8%;
  margin-right:1.6%;
  display: block;
  margin-bottom:1.6%;
}
#anc_job ul li:nth-child(4n){
  margin-right:0;
}
@media screen and (max-width: 1150px) {
  #anc_job {
    padding: 100px 0 60px;
  }
  #anc_job h2{
    font-size:350%;
    margin-bottom:20px;
  }
}
@media screen and (max-width: 900px) {
  #anc_job ul li{
    width:48.5%;
    margin-right:2%;
    display: block;
    margin-bottom:2%;
  }
  #anc_job ul li:nth-child(2n){
    margin-right:0;
  }
}

#anc_faq{
  padding:80px 0 60px;
  background:url(../img/recruit/faq_bg.jpg) no-repeat top center #f6f6f4;
  background-size:100% auto;
}

#anc_faq>div{
  width:90%;
  max-width:1300px;
  margin:0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}


#anc_faq h2{
  width:400px;
  font-weight: 500;
  text-align: left;
}
#anc_faq h2 span{
  font-size: 400%;
  display: inline-block;
  color:#7accff;
  position:relative;
  line-height:1.0;
  margin-bottom:40px;
  margin-right:30px;
}
.faq_block{
  width:calc(100% - 400px);
}

.faq_q {
  transition: 0.5s;
  cursor: pointer;
  position: relative;
  line-height: normal;
  margin-top:12px;
  border: 1px solid #7accff;
  background:#fff;
  text-align: left;
  padding:17px 40px 17px 45px;
}
.faq_q span{
  color: #7accff;
  font-size:120%;
  font-weight: 500;
  display: inline-block;
  position:absolute;
  left:15px;
  top:15px;
}
.faq_q img{
  width:12px;
  position:absolute;
  right:15px;
  top:0;
  bottom:0;
  margin:auto 0;
}
.faq_q:hover,
.faq_q.active {
  background:#f5fbff;
}

.faq_q.active img {
  transform: rotate(225deg);
}

.faq_a {
  opacity: 0;
  display: none;
  overflow: hidden;
  background:#f5fbff;
  position:relative;
  overflow: hidden;
  text-align: left;
  padding:17px 20px 17px 45px;
  border: 1px solid #7accff;
  border-top: none;
  transition: none;
}
.faq_a > * + * {
  margin-top: 0;
}
.faq_a span{
  color: #7accff;
  font-size:120%;
  display: inline-block;
  position:absolute;
  left:15px;
  top:15px;
}

.faq_a.open {
  opacity: 1;
  padding:17px 20px 17px 45px;
}
.faq_a.open > * + * {
  margin-top: 10px;
}
.faq_a.open img {
  height: auto;
}
.faq_a a{
  margin-left:20px;
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  color:#29abe2;
  font-size:85%;
  font-weight: 500;
  text-decoration: underline;
}
.faq_a a:hover{
  text-decoration: none;
}

@media screen and (max-width: 1050px) {
  #anc_faq{
    padding:120px 0 100px;
  }
  #anc_faq h2{
    width:100%;
    text-align: center;
    margin-bottom:50px;
  }
  #anc_faq h2 span{
    display: block;
    margin-right:0;
    margin-bottom:20px;
  }
  .faq_block{
    width:90%;
    max-width:700px;
    margin:0 auto;
  }
  
}

#anc_entry{
  padding:100px 0 160px;
}

#anc_entry>div{
  width:90%;
  max-width:1300px;
  margin:0 auto;
  text-align: center;
}


#anc_entry h2{
  font-size: 200%;
  display: inline-block;
  color:#7accff;
  position:relative;
  line-height:1.4;
  margin-bottom:40px;
  text-align: center;
  font-weight: 600;
}
#anc_entry h2 br.br_none{
  display: none;
}

#anc_entry .rec_entry_btn {
  position:relative;
  right: auto;
  top:auto;
  left: auto;
  margin: 0 auto;
}

.grecaptcha-badge { visibility: hidden; }