@charset "UTF-8";
/* CSS Document */
/*=====================================================================================
***************************************************************************************

　reset

***************************************************************************************
=====================================================================================*/
body,div,dl,dt,dd,menu,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,p,fieldset,input,textarea,p,q,blockquote,th,td,nav,small,address,section,article {
   margin:0; 
   padding:0; 
}
a,input,q {border: 0;}
b {font-weight: normal;}
table {
	border-collapse:collapse; 
    border-spacing:0; 
}
button {
	border: 0;
	padding: 0;
	margin: 0;
	cursor: pointer;
}
fieldset,img {border:0;}
address,caption,cite,code,dfn,em,strong,th,var,small { 
    font-style:normal; 
    font-weight:normal; 
}
ol,ul,menu {list-style:none;}
caption,th { text-align:left;}
h1,h2,h3,h4,h5,h6 { 
    font-size:100%; 
    font-weight:normal; 
}
q:before,q:after {content:'';}
abbr,acronym {border:0;}
.clear {
	clear: both;
	padding:0;
	margin:0;
	border:0;
}
img{
	border: none;
	padding:0;
	margin:0;
	vertical-align:top;
}
hr{
	padding:0;
	margin:0;
	border:none;
}
/*=====================================================================================
***************************************************************************************

　comomon

***************************************************************************************
=====================================================================================*/
body{
    font-size: 20px;
    line-height: 1.5;
    text-align: center;
}
body{
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  font-weight: 300;/*基本の文字の太さは後で調節する*/
}
a{text-indent: 0;}
*{
	vertical-align: top;
	box-sizing: border-box;
	word-break: break-all;
}
img{max-width: 100%;}

.sp{display: none;}
@media screen and (max-width: 750px){
	body{font-size: 16px;}
	.pc{display: none;}
	.sp{display: block;}
}
/*=============== ホバーで出てくる矢印 ===============*/
.arrow{
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease;
}
.arrow::before {
	content: '';
	position: absolute;
	inset:0 auto 0 -22px;
	margin: auto 0;
	width: 16px; /* 画像の幅 */
	height: 20px; /* 画像の高さ */
	background-image: url('../img/common/arrow.svg'); /* 矢印の画像を指定 */
	background-size: contain; /* 画像サイズを調整 */
	background-repeat: no-repeat; /* 画像が繰り返されないように */
	opacity: 0; /* 初期は非表示 */
}
a.btn .arrow::before,
button.btn .arrow::before{inset: 0 -30px 0 auto;}
.arrow:hover::before {opacity: 1; /* ホバー時に矢印を表示 */}
.sns .arrow::before {left: -18px; /* sns部分の矢印の位置調節 */}

/*=============== ボタンの共通スタイル ===============*/
a.btn, button.btn{
	font-size: 16px;
	text-align: center;
    max-width: 300px;
    width: 65%;
	color: #FFFFFF;
	text-decoration: none;
	display: block;
	margin: 100px auto 0;
	padding: 0;
}
.btn div{padding: 2em 2em 2em 0;}
a.row2,button.row2{display: inline-block;}
a.row2,button.row2:nth-child(even){margin-left: 5%;}
@media screen and (max-width: 750px){
	a.btn, button.btn{margin-top: 40px;}	
	a.row2,button.row2{display: block;}
	a.row2,button.row2:nth-child(even){margin: 20px auto 0;}
}
/*=============== 黒ボックスの共通スタイル ===============*/
.blackbox{
	background-color: #000000;
	padding: 6px;
	border-radius:5px;
	color: #FFFFFF;
}
.blackbox a{
	color: #FFFFFF;
	text-decoration: none;
}
/*=============== 背景色 ===============*/
.bg{
	background-color: #ffffff;
	background-image: linear-gradient(90deg, #f2f2f2 1px, transparent 1px), linear-gradient(#f2f2f2 1px, transparent 1px);
	background-position: 10px 10px;
	background-size: 51px 51px;
}
@media screen and (max-width: 750px){
	.bg{background-size: 30px 30px;}
}
/*=============== header ===============*/
#header a{
	width: 100%;
	max-width:270px;
}
.innerpage #header{/*TOPページ以外の配置*/	
	display: flex;	
    align-items: center;
	justify-content: space-between;
	gap:0 2%;
	width: 90%;	
	position: fixed;
	inset:50px 0 auto 0;
	margin: auto;
	z-index: 99;
}
.innerpage #header .navbar{
	max-width: 900px;
	width: 68%;
	z-index: 1;
}
#header .menu {	
	display: flex;
    align-items: center;
    justify-content: center;
	flex-wrap: wrap;
    gap: 10px 1.8em;
    padding: 20px 1.5em;
	border: solid 2px #f27612;
    background-color: #fff;
    border-radius: 100px;
}
#header .menu a{color: #f27612;text-decoration: none;}
#header .menu a:hover{color: #1c74a1;}
#header .menu .arrow::before {background-image: url(../img/common/arrow_blue.svg);}
.hamburger-container{
      display: none;
      cursor: pointer;
}
.hamburger-container .blackbox_in{padding: 20px 0 15px;}
.hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 29px; /* 3本の線 (3px * 3) + 2つの間隔 (10px * 2) */
}
.hamburger-icon span {
    display: block;
    width: 38px; /* 指定された幅 */
    height: 3px; /* 指定された高さ */
    background-color: #69fcdf;
    transition: all 0.1s ease-in-out;
}
.hamburger-icon span + span {margin-top: 10px; /* 線と線の間隔 */}
.menu-text {
 	color: #FFFFFF;
    font-size: 20px;
    text-align: center;
    margin-top: 0.5em;
}
.innerpage #header.hide-header,
#top #header.hamburger.hide-header{display: none;}
/*=============== SNS ===============*/
.sns{
	padding: 22px 15px;
	position: fixed;
	right: 2.5%;
	top:200px;
	background-color: #f27612;
    border: solid 1px #69fcdf;
    border-radius: 50px;
}
.sns li:first-child{margin-bottom: 12px;}

#header .menu_sns{
	display: none;
	color: #f27612;
	font-weight: 500;
	margin-top: 30px;
}
.menu_sns ul{
	margin-top: 15px;
	display: flex;
    gap: 0 50px;
    justify-content: center;
}
#header .hamburger-container{
	width: 60px;
    height: 60px;
	background-color:#f27612 ;
	border: solid 1px #69fcdf;
    align-items: center;
    justify-content: center;
}
.hamburger-container.active .hamburger-icon span:nth-child(1) {transform: translateY(13px) rotate(45deg);}
.hamburger-container.active .hamburger-icon span:nth-child(2) {opacity: 0;}
.hamburger-container.active .hamburger-icon span:nth-child(3) {transform: translateY(-13px) rotate(-45deg);}

@media screen and (max-width: 1300px){
	.innerpage #header .navbar{max-width: 600px;}
	.sns{inset:210px 2.5% auto auto;}
}
@media (max-width: 1000px) {
	.innerpage #header{inset:25px 0 auto 0;}
	.innerpage #header .navbar {width: auto;}
    #header .menu {
        display: none;
        flex-direction: column;
        position: absolute;
		padding: 30px 1.5em;
        top: 70px;
        left: 0;
        width: 100%;
    }
	#header .menu_sns{display: block;}
    #header .menu.active {display: flex;}	
	#header .hamburger-container{display: flex;}
	.sns{display: none;}
}
@media screen and (max-width: 750px){
	#header a{width: 60%;}
	#header .menu{border-radius: 30px;}
	.menu_sns .title{font-size: 18px;}
	.hamburger-container ul {padding: 15px 0 10px;}
	.hamburger-icon span + span {margin-top: 8px; /* 線と線の間隔 */}
    .hamburger-container.active .hamburger-icon span:nth-child(1) {transform: translateY(9px) rotate(45deg);}
}
/*=============== footer ===============*/
#footer{
	padding-bottom: 0;
	color: #fff;
	padding: 80px 5% 0;
}
#footer .banner{margin-bottom: 50px;}
#footer .footer_in{
	background-color: #f27612;
	padding: 50px 10px;
	border-radius:80px 80px 0 0;
}
#footer .footer_in a{
	color: #fff;
	text-decoration: none;
	display: block;
}
#footer .logo{max-width: 265px;}
#footer .footer_menu {
	display: inline-flex;
    justify-content: center;
	flex-wrap: wrap;
    gap: 20px 60px;
    margin: 50px 0;
}
.copy{
	font-size: 13px;
	text-align: center;
	padding: 15px 5% 10px;
	background-color: #69fcdf;
	color: #f27612;
}
@media screen and (max-width: 1100px){
	.footer_menu{gap: 25px 130px;}
}
@media screen and (max-width: 750px){
	#footer .banner{margin-bottom: 20px;}
	#footer .footer_in {
		padding: 40px 5% 20px;
		border-radius:45px 45px 0 0;
	}
	#footer .footer_menu{
		flex-direction: column;
		margin: 25px 0 30px;
	}
}
/*=====================================================================================
***************************************************************************************

　TOP

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

#top h4{
	font-size: 35px;
	font-weight: bolder;
	text-align: center;
	margin-bottom: 50px;
}
#top h4 img{width: 40%;max-width: fit-content;}
#top h4 span{
	display: block;
	font-size: 18px;
}
#top h4::before,#top h4::after{display: none;}
#top #header{
	position: absolute;
	inset: auto 0 55px 0;
    margin: 0 auto;
    max-width: 900px;
	z-index: 20;
}
#top #header .menu ul li a{color: #f27612;}
#top #header .menu ul li a:hover{color: #1c74a1;}
#top #header .menu ul li a.arrow::before {background-image: url(../img/common/arrow_blue.svg);}
/*MVより下のコンテンツ部分のheader*/

#top #header.hamburger .menu{display: none;}
#top #header.hamburger .active{
	display: flex;
	z-index: 1;
}
#top #header.hamburger{
	display: block;
    position: fixed;
	z-index: 50;
    width: 90%;
    inset: 25px 2.5% auto auto;
	max-width: 100%;
}
#top #header.hamburger .active{
	width: 80%;
	margin: 0 auto;
}
#top #header.hamburger .hamburger-container{
	position: absolute;
    inset: 0 0 0 auto;
	display: flex;
	width: 60px;
}
#top #header .hamburger-container{
	width: 60px;
    height: 60px;
	background-color:#f27612 ;
	border: solid 1px #69fcdf;

    align-items: center;
    justify-content: center;
}
#top #header.hamburger .sns{inset: 180px 1.9% auto auto;}

#top .mv{
	background: url("../img/top2/MVbg.png") center;
	height: 926px;
	position: relative;
	padding-top: 30px;
}
#top h1{
	max-width: 265px;
	margin: 0 auto;
}
#top .sns{
	right: 2.5%;
    top: 120px;
    background-color: #f27612;
    border: solid 1px #69fcdf;
    border-radius: 50px;
    width: auto;
    padding: 22px 15px;
}
#top .sns li:first-child{margin-bottom: 12px;}
#top .movie{
	max-width: 254px;
	position: absolute;
    inset: auto auto 300px 2.5%;
	background-color: #fff;
	border: solid 2px #f27612;
	color:#f27612;
}
#top .movie a{
	padding: 8px;
	display: block;
}
.title_contents {
	margin: 0 auto;
	overflow: hidden;
	display: flex;
    flex-direction: column;
    align-items: center;
	row-gap: 5px;
	margin-top: 20px;
}
.title_contents .MV_character{
	width: 120%;
	max-width: 1800px;
}
.fun-image {
    object-fit: cover;
    opacity: 0;
    transform: scale(0.7) translateY(20px);
    transition: opacity 0.4s ease-out, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.fun-image.show {
    opacity: 1;
    transform: scale(1) translateY(0);
}
@media screen and (max-width: 1300px){
	#top .movie{
		max-width: 200px;
		inset: auto auto 170px 2.5%;
	}
	#top .mv{height: 800px;}
}
@media screen and (max-width: 1000px){
	#top #header{
		inset: 20px 0 auto 0;
        width: 95%;
	}
	#top #header .hamburger-container{
		display: flex;
		position: absolute;
        right: 0;
	}
	#top #header.hamburger{width: 95%;}
	#top #header.hamburger .active{width:100%;}
	#top #header.hamburger .hamburger-container.active{width: 90px;}
	#top .sns {inset: 180px 2.5% auto auto;}
	#top .movie{inset: auto auto 100px 2.5%;}
}
@media screen and (max-width: 900px){
	#top h4{margin-bottom: 25px;}
	#top .mv{
		height: 70vh;
		background: url(../img/top2/MVbg_sp.png) center;
		background-size: cover;
	}
	.title_contents .MV_character{width: 140%;}
	.mv .MV_title {
		max-width: 500px;
        width: 92%;
	}
}
@media screen and (max-width: 750px){
	#top h1 {
		max-width: 210px;
		margin-bottom: 10px;
	}
	.title_contents .MV_character{width: 100%;}

	#top .movie{
		max-width: 150px;
		inset: auto auto -25px 2.5%;
	}
	#top .sns {inset: 180px 2.5% auto auto;}
}

/*=============== Message ===============*/
.message{
	padding: 100px 2.5%;
	position: relative;
}
.message img{position: absolute;}
.message .eng_title_img{
    z-index: 5;
    top: 15px;
    left: 15%;
	max-width: 434px;
}
.message .top{
	inset: 0;
    margin: auto;
	z-index: 5;
}
.message .bottom{
	inset: 0;
    margin: auto;
}
.message .text_box{
	position: relative;
	max-width: 900px;
	width: 85%;
	margin: 0 auto;
    padding: 120px 2.5% ;
	position: relative;
	border-bottom: none;
	color: #7525a7;

	background-color: #ffa64f; /* ベースのオレンジ色 */
	background-image: radial-gradient(#ff9943 20%, transparent 20%);
	background-size: 40px 40px; /* ドットの間隔を調整 */
	border-radius:15%;
}
.message .text_box p {
	line-height: 2.5;
	margin-top: 50px;
	font-size: 18px;
}
.message .text_box .title{
	font-size: 32px;
	font-weight: 500;
}

.img_height{
	position: absolute;
	inset:auto 0 0 0;
	margin: 0 auto;
}
.message a{
	position: relative;
	z-index: 1;
}
@media screen and (max-width: 1000px){
	.message .eng_title_img{left: 5%;}
}
@media screen and (max-width: 820px){
	.message .text_box .title{font-size: 20px;}
	.message{padding-top: 50px;}
	.message .text_box p{margin-top: 20px;}
}
@media screen and (max-width: 750px){
	.message a{width: 80%;}
	.message .eng_title_img{
		width: 60%;
		top: 30px;
	}
	.message .text_box{
		padding:80px 2.5% 50px;
		border-radius:100px;
	}
	.message .text_box p {line-height: 1.4;}
	.message{padding: 50px 0;}
}
/*=============== 城 ===============*/

.siro{
	background: url("../img/top2/siro_bg.jpg") top center;
	height: 600px;
	position: relative;
	z-index: -1;
}
.siro img{
	inset:100px 0 0 0;
	margin: auto;
}
/*=============== ダンジョン ===============*/
.dungeons{
	background: url("../img/top2/dungeons_bg.jpg") top center;
	padding-top: 140px;
	color: #FFFFFF;
	position: relative;
}
.dungeons .eng_title_img{
	position: absolute;
	inset: -50px 0 auto 0;
	margin: auto;
	width: 70%;
    max-width: fit-content;
}
.dungeons .text_box{
	color: #FFFFFF;
	max-width: 900px;
	width: 90%;
	margin: 0 auto;
}
.dungeons .text_box .title{
	font-family: "DotGothic16", sans-serif,"游ゴシック体",YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic";
	font-size: 30px;
	padding: 1.5em 0 1em;
}
.dungeons .text_box .title img{
	transform: rotate(90deg);
	margin-top: 20px;
}
.dungeons .scroll{
	position: absolute;
	inset:auto 0 0 0;
}
.dungeons ul{
	font-size: 17px;
	display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 0 1%;
    max-width: 1250px;
	margin: 0 auto;
}
.dungeons ul li div{
	margin-top: 35px;
	line-height: 3;
}

@media screen and (max-width: 1000px){
	.dungeons ul li div{margin-top: 10px;}
	.dungeons{
		background-position: center -124px;
        padding-top: 80px;
	}
	.dungeons .scroll{
		overflow:auto;
		padding-bottom: 20px;
	}
	.dungeons ul{
		width: 1000px;
	}
}
@media screen and (max-width: 750px){
	.dungeons .text_box .title{font-size: 25px;}
	.dungeons .text_box .title img{margin-top: 10px;}
}

/*=============== スクロールバーカスタム ===============*/
.dungeons .scroll{
  --sb-track-color: #1e150e;
  --sb-thumb-color: #b9976a;
  --sb-size: 8px;
}
.dungeons .scroll::-webkit-scrollbar {
	height: var(--sb-size);
	padding-top: 30px;
}
.dungeons .scroll::-webkit-scrollbar-track { background: var(--sb-track-color);}
.dungeons .scroll::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 100px;  
}
@supports not selector(::-webkit-scrollbar) {
  body {
    scrollbar-color: var(--sb-thumb-color)
                     var(--sb-track-color);
  }
}
/*=============== ダンジョン下 ===============*/

.dungeons2{
	padding: 60px 5% 0;
	background-color: #1e150e;
	position: relative;
}
.dungeons2::before{
	content: "";
	position: absolute;
	height: 60px;
	background: url("../img/top2/kusa.jpg") ;
	inset:auto 0 0 0;
	z-index: 1;
	border-top: solid 4px #000000;
	box-shadow: 0px -8px 0px 0px rgba(255, 255, 255, 1), 0px -11px 0px 0px rgba(0, 0, 0, 1);
}
.dungeons2 .blackbox{
	max-width: 800px;
	margin: 0 auto;
	text-align: justify;
	color: #FFFFFF;
	position: relative;
	z-index: 2;
}
.dungeons2 .blackbox .blackbox_in{padding: 1.2em 5% 1.8em;}

.dungeons2 .blackbox .blackbox{
	position: absolute;
    line-height: 1.2;
    max-width: 360px;
    inset: auto -2.5% -50px auto;
    width: 100%;
}
.dungeons2 .blackbox .blackbox .blackbox_in{
	padding-bottom: 1.2em;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    gap: 0 10px;
}
@media screen and (max-width: 750px){
	.dungeons2 .blackbox .blackbox{
   		max-width: 290px;
		inset: auto -2.5% -40px auto;}
	}
/*=============== 撃退 ===============*/

.gekitai{
	position: relative;
	margin-bottom: 120px;
}
.gekitai::before{
	content: "";
	position: absolute;
	height: 300px;
	inset: 0;
    margin: 0 auto;
}
.gekitai::before{background-color:#1e4c64;}

.gekitai .monster{
	position: absolute;
	inset: 70px 0 auto;
    margin: 0 auto;
}
.gekitai .text_box{
	color: #1e4c64;
	max-width: 800px;
	margin: 50px auto 0;
}
.gekitai>*{
	position: relative;
	z-index:2;
}

/*=============== アニメーション ===============*/
.gekitai .img_animation {
  opacity: 0;
  transform: scale(0.1);
  transition: opacity 0.5s, transform 0.5s;
  will-change: opacity, transform;
}

.gekitai .img_animation.visible {
  opacity: 1;
  animation: explode 0.5s ease-out forwards;
}

@keyframes explode {
  0% {
    transform: scale(0.1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes implode {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.5;
  }
  100% {
    transform: scale(0.1);
    opacity: 0;
  }
}

/* 2つ目の画像（モンスター）に遅延を追加 */
.gekitai .monster.img_animation.visible {
  animation-delay: 0.2s;
}

/* モンスターの初期状態と非表示状態を設定 */
.gekitai .monster.img_animation {
  transition-delay: 0.2s;
}

/* JavaScript で .visible クラスが削除されたときのアニメーション */
.gekitai .img_animation:not(.visible) {
  animation: implode 0.5s ease-in forwards;
}

.gekitai .monster.img_animation:not(.visible) {
  animation-delay: 0.2s;
}

@media screen and (max-width: 1000px){
	.gekitai .monster{inset: 120px 0 auto;}
}
@media screen and (max-width: 820px){
	.gekitai{margin-bottom: 50px;}
	.gekitai .text_box{margin: 0 5% 30px;}
}
@media screen and (max-width: 750px){
	.gekitai{margin-bottom: 60px;}
}
/*=============== recruit ===============*/
.recruit{
	padding: 45px 0 120px;
	overflow: hidden;
}
.slideshow-container {
    position: relative;
    width: 100%;
    height: 300px;
}
.slideshow {
    display: flex;
    position: absolute;
    left: 0;
}
.slide {
    flex: 0 0 420px;
    height: 300px;
    background-size: cover;
    background-position: center;
}
.title-image {
    position: absolute;
    inset:0;
	margin: auto;
    z-index: 10;
}
.recruit .btn_box{
	margin-top: 100px;
	display: flex;
    justify-content: center;
    gap: 25px 50px;
    flex-wrap: wrap;
}
@media (max-width: 820px) {
	.recruit{padding: 15px 0 60px;}
    .title-image {max-width: 330px;}
	.slide{flex: 0 0 300px;}
	.slideshow-container,.slide {height: 200px;}
	.recruit .btn_box{margin-top: 40px;}
}
@media (max-width: 750px) {
    .title-image {max-width: 250px;}
	.slide{flex: 0 0 200px;}
	.slideshow-container,.slide {height: 150px;}	
	.recruit .btn_box{margin-top: 40px;}
}

/*=============== NEWS ===============*/
.news{padding-bottom: 100px;}
.naka #innerpage_wrap .news{
	padding-bottom: 100px;
    margin-bottom: 0;
}
.news .news_box{
	max-width: 900px;
	width: 90%;
	margin:0 auto 80px;
	display: flex;
	flex-wrap: wrap;
	gap:20px 6.65%;
}
.news .news_box .img_box{
	width: 100%;
	aspect-ratio: 3 / 2;
	overflow: hidden;
}
.news .news_box .img_box img{width: 100%; height: 100%;}
.news .news_box li{
	width: 28.89%;
}
.news .news_box li a{
	color: #000000;
	text-decoration:none;
}
.news .news_box li .text_box{
	text-align: justify;
}
.news .news_box li .news-date{
	margin: 0.8em 0 0.2em;
	font-size: 18px;
}
.news .news_box li .link{
	font-size: 18px;
	text-align: right !important;
	margin: 10px 2em 0 0;
}
.news .news_box li .arrow::before {
	background-image: url("../img/common/arrow_bg.svg");
	inset:5px -1.5em 0 auto;
    width: 20px;
    height: 16px;
}
@media (max-width: 820px) {
	.news .news_box{margin-bottom:40px;}
	.news{padding-bottom: 60px;}
	.news .news_box li {width: 46%;}
	.news .news_box li .news-date,
	.news .news_box li .link{font-size: 15px}
}

/*=============== 校舎案内 ===============*/

.school h4{color: #FFFFFF;}
.school{
	background-image:url(../img/top2/minamo.png);
	background-color: #43e1f8;
	padding: 100px 0;
	border-radius:%;
}
.school .inner{
	max-width: 1200px;
    margin: 0 auto;
    width: 90%;
    display: flex;
    gap: 50px 6%;
}
.school .inner .img_box{width: 46%;}
.school .inner .text_box{
	width: 48%;
	display: flex;
    gap: 0 4%;
    flex-wrap: wrap;
    align-items: flex-start;
}
.school .inner .text_box> ul{width: 48%;}
.school .inner ul .blackbox{margin-bottom: 20px;}
.school .inner ul .blackbox ul{
	text-align: left;
	margin: 20px 12%;
    padding-left: 1em;
    display: flex;
    flex-direction: column;
    gap: 5px 0;
    align-items: flex-start;
}
.school .inner ul .blackbox p{
    font-size: 20px;
    line-height: 2;
    color: #FFFFFF;
    border-bottom: solid 3px #FFFFFF;
}

@media (max-width: 950px) {
	.school .inner{ 
		flex-direction: column;
		align-items: center;
	}
	.school .inner .text_box{width: 80%;}
	.school{
		border-radius:50px;
	}
}
@media (max-width: 820px) {.school{padding: 50px 0;}}
@media (max-width: 758px) {
	.school{padding: 50px 0;}
	.school .inner .img_box{width: 80%;}
	.school .inner .text_box{width: 100%;}
}
/*=====================================================================================
***************************************************************************************

　会社概要

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

/*=============== アニメーション ===============*/
#about .img_animation {
	opacity: 0;
	transform: translateY(80px);
	transition: opacity 0.5s, transform 0.3s;
	transition-timing-function: ease-in;
}

#about .img_animation.visible {
  opacity: 1;
  transform: translateY(0);
}

/*=============== アニメーション ===============*/
#about .about_message{padding-bottom: 200px;}
#about .about_message .about_copy p{
	font-size: 22px;
	font-weight: bold;
	margin: 80px auto;
	text-align: center;
}
#about .about_message .about_copy{
	margin: 0 auto;
	width: 90%;
}
#about .about_message ul{
	display: flex;
	max-width: 1100px;
	width: 90%;
	flex-wrap: wrap;
	justify-content: center;
    align-items: flex-end;
	gap: 20px;
	margin: 0 auto 165px;
}
#about .about_message ul li{max-width: 345px;}
#about .about_message ul li.arrow::before {
    transform: rotate(90deg);
    inset: 0 25px 0 auto;
    width: 12px;
	height: 16px;
}

/* オーバーレイのスタイル */
#about .overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5); /* 薄い黒 */
	z-index: 999; /* ポップアップよりも低い */
	display: none; /* 初期状態は非表示 */
}

/* スクロール無効用クラス */
body.no-scroll {overflow: hidden;}

/*ポップアップ設定*/
#about #popup {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	max-width: 900px;
	width: 90%;
	z-index: 1000;
	color: #FFFFFF;
	display: none; /* ポップアップ自体は初期状態で非表示 */
}
#about .popup-content {position: relative;}
#about .about_message .popup-div.blackbox_in {
	display: none; 
	padding:60px 6%;
}
#about .close-btn {
	position: absolute;
	right: 30px;
	top: 10px;
	cursor: pointer;
	font-size: 40px;
}
#about .pop_tl{
	text-align: center;
	font-size: 35px;
	font-weight: bold;
	margin-bottom: 1em;
}
#about .pop_tl span{
	display: block;
	font-size: 65%;
	line-height: 1;
	margin-bottom: 0.3em;
}
#about #popup1 .pop_tl span{color: #825aa9;}
#about #popup2 .pop_tl span{color: #59b197;}
#about #popup3 .pop_tl span{color: #feba5b;}
#about #popup4 .pop_tl span{color: #fd6043;}
#about #popup5 .pop_tl span{color: #a13332;}

#about #popup .popup-div .img_box{
	display: flex;
	justify-content: center;
	gap:0 4%;
	margin: 0 6% 20px;
}
#about #popup .popup-div .img_box img{width: 48%;}
#about #popup .popup-div .text_box{
	height: 200px;
	padding-right: 1em;
	overflow-y:scroll;
}
#about #popup .popup-div .text_box p:not(:last-child) { margin-bottom: 1em;}


/*スクロールバーカスタム*/


#about .text_box{
  --sb-track-color: #9c9c9c;
  --sb-size: 10px;
}
#about #popup1 .text_box{--sb-thumb-color: #825aa9;}
#about #popup2 .text_box{--sb-thumb-color: #59b197;}
#about #popup3 .text_box{--sb-thumb-color: #feba5b;}
#about #popup4 .text_box{--sb-thumb-color: #fd6043;}
#about #popup5 .text_box{--sb-thumb-color: #a13332;}
#about .text_box::-webkit-scrollbar {
  width: var(--sb-size);
	padding-left: 10px;
}

#about .text_box::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 8px;
}

#about .text_box::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 8px;
  
}

@supports not selector(::-webkit-scrollbar) {
  #about .text_box {
    scrollbar-color: var(--sb-thumb-color)
                     var(--sb-track-color);
  }
}

#about .about_message .last_box{
	max-width: 1200px;
	width: 94%;
	position: relative;
	margin: 0 auto;
}
#about .about_message .last_box .text_box{
	max-width: 1100px;
	margin: 0 auto;
	width: 80%;
	font-size: 24px;
	padding: 40px 0;
	color: #7525a7;
	background-color: #e5e5e5;
    background-image: radial-gradient(#e1e1e1 20%, transparent 20%);
    background-size: 40px 40px;
    border-radius: 50px;
}
#about .about_message .last_box img{
	position: absolute;
	inset: 0;
	margin: auto 0;
}
.tb{display: none;}
#about .about_message .last_box .p1{
	left:0;
	right: auto;
}
#about .about_message .last_box .p2{
	left:auto;
	right: 0;
}
@media screen and (min-width: 750px) and (max-width: 1300px){
	#about .about_message .last_box img{width: 30%;}
}
@media screen and (min-width: 750px) and (max-width: 1024px){
	#about .about_message .copy_box{
		width: 125%;
		position: relative;
		left: 50%;
		transform: translateX(-50%);
	}
}
@media screen and (max-width: 1024px){
	#about .about_message {padding-bottom: 40px;}
	.tb_none{display: none;}
	.tb{display: block;}
	#about .about_message ul{margin-bottom: 100px;}
	#about .about_message ul li{width: 48%;}
	#about .about_message .last_box .text_box{font-size: 20px;}
	#about .about_message .last_box img{width: 30%;}
}
@media screen and (max-width: 750px){
	#about .about_message .about_copy p{
		font-size: 14px;
		margin: 30px auto 40px;
	}
	.about_copy li{width:90%;}
	#about .about_message .copy_box .tb{display: none;}
	#about .about_message .copy_box{
		max-width: 337px;
		margin: 0 auto;
	}
	#about .about_message .last_box{width: 98%;}
	#about .about_message .last_box .text_box{
		font-size: 14px;
		padding: 25px 0;
	}
	#about .about_message .last_box img{width: 27%;}
	#about .about_message .popup-div.blackbox_in {padding: 40px 6%;}
	#about .pop_tl{font-size: 23px;}
}
@media screen and (max-width: 575px){
	#about .about_message ul{margin-bottom: 50px;}
	#about .about_message ul li{width: 80%;}
	#about .about_message .last_box .p1{left: -17px;}
	#about .about_message .last_box .p2{right: -10px;}
}
/*======================代表メッセージ======================*/
.president_message{
	background-image: url("../img/about/message_bg.png") ;
	background-color: #d1d1d138;
	background-repeat:repeat;
	background-size: auto;
	background-position: top center;
	padding: 80px 0 0;
}
.president_message>div{
	max-width: 1200px;
	width: 90%;
	margin: 0 auto;
	display: flex;
	align-items: flex-end;
	color: #FFFFFF;
	font-size: 17px;
}
.president_message .img_box{
	width: 50%;
	min-width: 200px;
	position: relative;
	overflow: hidden;
    height: 600px;
}
.president_message .img_box .name_box{
	position: absolute;
    inset: auto 0 50px 0;
    margin: auto;
    color: #7525a7;
    background-color: #e5e5e5;
    border-radius: 23px;
    padding: 1em;
    max-width: 250px;
    width: 80%;
}
.president_message .text_box{
	position: relative;
	width: 600px;
	text-align: justify;
	margin-bottom: 50px;
	color: #7525a7;
	background-color: #fef459;
	padding: 40px 45px;
	border-radius: 30px;
}
.president_message .blackbox_in{padding: 40px 2em;}
#about #innerpage_wrap .president_message h2{
	margin-bottom: 20px;
	padding: 0;
	text-align: center;
	background: none;
}
@media screen and (max-width: 1024px){
	.president_message .img_box{
		height: 490px;
	}
	.president_message .img_box .blackbox{left: 6%;}
	.president_message .text_box{width: 65%;}
}
@media screen and (max-width: 820px){
	.president_message>div {font-size: 15px;}
}
@media screen and (max-width: 750px){
	.president_message>div {
		align-items: center;
		flex-direction: column;
		font-size: 15px;
	}
	.president_message .img_box{
		max-width: 300px;
        width: 85%;
        min-width: inherit;
        height: 330px;
        overflow: hidden;
	}
	.president_message .img_box img {margin-left: 10%;}
	.president_message .img_box .blackbox{
		inset: auto 0 10px 0;
        margin: 0 auto;
        width: 60%;
	}
	.president_message .text_box{
		width: 100%;
		padding: 30px 2em;
	}
	.president_message .blackbox_in {padding: 30px 1.5em;}
	.president_message h2{margin: 0 auto 20px;}
}
/*=====================会社概要表のところ=====================*/
#innerpage_wrap .about_info{
	max-width: 100%;
	width: 100%;
	padding: 95px 0 ;
	margin: 0 auto;
}
#innerpage_wrap .about_info h2{background-image: url("../img/about/about.png");}
#innerpage_wrap .about_info .middle_box{margin:0 auto;width: 90%;}
	
/*=====================沿革=====================*/

#about .history h2{
	color: #641793;
	background-image: url("../img/about/history_h2_bg.png") ;
	background-color: #9696ec;
	background-size: inherit;
	background-blend-mode: multiply;
	padding: 100px 0;
	margin-bottom: 0;
}
#about .history .history_box{
	background-image: url("../img/about/history_bg.jpg");
	background-color: #d7d7f9;
	background-repeat: repeat-x;
	padding-bottom: 170px;
	position: relative;
	overflow: hidden;
}
#about .history .history_box img{
	position: absolute;
}
#about .history .history_box .renga_deco01{
	left: 0;
	top:40%;
}
#about .history .history_box .renga_deco02{
	left: 0;
	top:65%;
}
#about .history .history_box .renga_deco03{
	right: 0;
	top: 50%;
}
#about .history .history_box .yusya{inset: 44% auto auto 47%;}
#about .history .history_box .deco_bottom{
	inset:auto 0 0;
	margin: 0 auto; 
	z-index: 2;
	left: 50%;
    transform: translate(-50%);
	max-width: none;
}
#about .history .history_box ul{
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap:0 12%;
}
#about .history .history_box .w_1200px{
	max-width: 1200px;
	width: 90%;
}
#about .history .history_box .w_1100px{
	max-width: 1100px;
	width: 85%;
}
#about .history .history_box::before{
	content: '';
    position: absolute;
	width: 68px;
	height: 150%;
	background: url("../img/about/hashigo.png") repeat-y;
	inset:0 0 auto;
	margin: auto;
}
#about .history .history_box::after{
	content: '';
    position: absolute;
	background: url("../img/about/botm_dec02.png") repeat-x;
	height: 92px;
	width: 100%;
	inset:auto 0 0;
	margin: auto;
}
#about .history .history_box ul li{
	width: 44%;
	max-width: 480px;
	text-align: justify;
	padding: 2em 4%;
	position: relative;
	color: #7525a7;

	background-color: #ffa64f;
    background-image: radial-gradient(#ff9943 20%, transparent 20%);
    background-size: 30px 30px;
    border-radius: 50px;
}
#about .history .history_box ul li:nth-child(2){margin-top: 200px;}



/* bタグ内のテキストのスタイル (オプション) */
li b {
    display: block;
    margin-bottom: 0.5em;
	font-weight: 600;
}
#about .history .history_box ul .deco > p::before {
	content: '';
    position: absolute;
	background-size: contain;
	background-repeat: no-repeat;
}
#about .history .history_box ul .monster01 > p::before{
	background-image: url("../img/about/monster01.png");
	width: 260px;
    height: 180px;
    top: -170px;
    left: 20px;
}
#about .history .history_box ul .monster02 > p::before{
	background-image: url("../img/about/monster02.png");
	width: 232px;
    height: 115px;
	top: -100px;
    left: 20px;
}
#about .history .history_box ul .battle01 > p::before{
	background-image: url("../img/about/battle01.png");
    width: 313px;
    height: 164px;
    top: -65px;
    right: -195px;
}
#about .history .history_box ul .battle02 > p::before{
	background-image: url("../img/about/battle02.png");
	width: 295px;
	height: 127px;
	top: -127px;
	left: 10px;
}

@media screen and (max-width: 750px){
	#about .history h2{padding: 70px 0;}
	#about .history .history_box ul{
		flex-direction: column;
    	align-items: center;
		margin-bottom: 50px;
	}
	#about .history .history_box ul li{
		width: 100%;
		border-radius: 20px;
		padding: 2em 1.5em;
	}
	#about .history .history_box ul li:nth-child(2){margin-top: 50px;}
	#about .history .history_box ul li.monster01{margin-top:190px;}
	#about .history .history_box ul li.monster02{margin-top: 30px;}
	#about .history .history_box ul li.battle01{margin-top: 80px;}
	#about .history .history_box ul li.battle02{margin-top: 140px;}
	#about .history .history_box ul .battle01 > p::before{right: -182px;}
}
/*=====================================================================================
***************************************************************************************

　採用情報

***************************************************************************************
=====================================================================================*/
#recruit{overflow: hidden;}
#recruit #innerpage_wrap { padding-top: 0;}
/*=============== やりがい ===============*/
#recruit #contents01{
	margin-bottom: 100px;
	padding: 90px 0 150px;
    background-color: #fffde4;
    box-shadow: inset 0px 0px 40px 0px rgb(217 190 125 / 30%);
}
#recruit #contents01 .slide01{
	margin: 0 auto;
	width: 100%;
}
#recruit #contents01 .slide01 li{
	/*max-width: 587px;
	width: 100%;*/
	text-align: center;
	margin: 0 50px;
}
#recruit #contents01 .slide01 li img{margin: 0 auto;}
#recruit #contents01 .slide01 li p{margin-top: 30px; font-weight: bold; font-size: 16px;}

/*矢印の設定*/
#recruit #contents01 .slide01 .slick-prev{
	left: 23.5vw;
	background: url("../img/recruit/prev.png") no-repeat;
	background-size: cover;
	width: 60px;
	height: 60px;
	z-index: 10;
}
#recruit #contents01 .slide01 .slick-next{
	right: 23.5vw;
	background: url("../img/recruit/next.png") no-repeat;
	background-size: cover;
	width: 60px;
	height: 60px;
	z-index: 10;
}
.slick-prev:before, .slick-next:before{display: none!important;}

/*ドットの設定*/
#recruit #contents01 .slide01 .slick-dots li{margin: 0 5px;}
#recruit #contents01 .slide01 .slick-dots{bottom: -60px;}
#recruit #contents01 .slick-dots li button:before{font-size: 50px;}

@media screen and (max-width: 750px){
	#recruit #contents01{
		margin-bottom: 50px;
        padding: 30px 0 100px;
	}
	#recruit #contents01 .slide01 li p{font-size: 14px;}
	#recruit #contents01 .slide01 .slick-next,#recruit #contents01 .slide01 .slick-prev{
		width: 30px;
		height: 30px;
	}
	#recruit #contents01 .slide01 .slick-prev{left: 3.5vw;}
	#recruit #contents01 .slide01 .slick-next{right: 3.5vw;}
	#recruit #contents01 .slide01 .slick-dots{bottom: -40px;}
	
	#innerpage_wrap h2{margin-bottom: 20px;}
}



/*=============== 教員紹介 ===============*/
#recruit #contents02{margin-bottom: 140px;}
#recruit #contents02 .slide02 li img{
	margin: 0 auto;
    width: 90%;
    max-width: 900px;
}
#recruit #contents02 .slide02 .sp{display: none;}

/*矢印の設定*/
#recruit #contents02 .slide02 .slick-prev{
	left: 14vw;
	background: url("../img/recruit/prev.png") no-repeat;
	background-size: cover;
	width: 60px;
	height: 60px;
	z-index: 10;
}
#recruit #contents02 .slide02 .slick-next{
	right: 14vw;
	background: url("../img/recruit/next.png") no-repeat;
	background-size: cover;
	width: 60px;
	height: 60px;
	z-index: 10;
}


/*ドット絵アイコンの設定*/
#recruit #contents02 .thumbnail-slider {
	width: 500px;
	margin: 30px auto 0;
	text-align: center; /* 中央に揃える */
}

#recruit #contents02 .thumbnail-slider li{
	margin: 0 15px; 
	position: relative;
	padding-top: 35px;
}
#recruit #contents02 .thumbnail-slider img {
  cursor: pointer;
  display: inline-block; /* サムネイルを横に並べる */
}

#recruit #contents02 .thumbnail-slider .slick-current::after {
    content: "";
    display: block;
    width: 25px;
    height: 25px;
    background: url("../img/recruit/arrow_b.svg") no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 24px;
    
    /* 点滅アニメーションの設定 */
    animation: blink 1s infinite; /* 1秒間隔で無限に点滅 */
}

/* 点滅の定義 */
@keyframes blink {
  0%, 50% { opacity: 1; }	
  60%, 100% { opacity: 0; }
}

@media screen and (max-width: 750px){
	#recruit #contents02{margin-bottom: 70px;}
	
	#recruit #contents02 .slide02 li img{width: 85%; margin: 0 auto;}
	#recruit #contents02 .slide02 .sp{display: block;}
	#recruit #contents02 .slide02 .pc{display: none;}
	
	#recruit #contents02 .slide02 .slick-next,#recruit #contents02 .slide02 .slick-prev{
		width: 30px;
		height: 30px;
	}
	#recruit #contents02 .slide02 .slick-prev{left: 3.5vw;}
	#recruit #contents02 .slide02 .slick-next{right: 3.5vw;}
	
	#recruit #contents02 .thumbnail-slider{width: 340px; margin: 15px auto 0;}
	#recruit #contents02 .thumbnail-slider li{margin: 0 5px;}
	#recruit #contents02 .thumbnail-slider img{width: 60px;}
	#recruit #contents02 .thumbnail-slider .slick-current::after{width: 15px; height: 15px; left: 22px;}
	#recruit #contents02 .thumbnail-slider li{padding-top: 20px;}
}




/*=============== 募集要項 ===============*/
#recruit #contents03 .btn_box{margin-bottom: 60px;}
#recruit #contents03 .btn_box a{margin: 0 25px; display: inline-block;}
#career{margin-bottom: 0;}
#recruit #contents03 section{
	padding-top: 250px;
	margin-top: -250px; 
}
@media screen and (max-width: 750px){
	#recruit #contents03 .btn_box{
		display: flex; 
		padding: 0 5%; 
		justify-content: space-between;
		margin-bottom: 30px;
	}
	#recruit #contents03 .btn_box a{margin: 0; width: 49%;}
	#recruit #contents03 section{
		padding-top: 150px; 
		margin-top: -150px; 
	}
}
/*=====================================================================================
***************************************************************************************

　汎用ページ共通設定

***************************************************************************************
=====================================================================================*/
#innerpage_wrap{padding-top: 100px;}
/*=============== 囲い系 ===============*/
/*幅1200px*/
#innerpage_wrap section{
	max-width: 1200px;
	width: 85%;
	margin: 0 auto 100px;
}
/*幅1000px*/
#innerpage_wrap .middle_box{max-width: 1000px;}

#innerpage_wrap p{
	text-align: justify;
	font-size: 16px;
}

/*2カラム系*/
#innerpage_wrap .flex_box{
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
}
#innerpage_wrap .two_column {gap:25px 4%;}
#innerpage_wrap .two_column >*{width: 48%;}

/*3カラム系*/
#innerpage_wrap .three_column {gap:25px 2%;}
#innerpage_wrap .three_column >*{width: 32%;}

a{
	text-decoration: underline;
	color: #071fd2;
}
a:hover{text-decoration: none;}

a.btn2{
	display: block;
	font-size: 16px;
	color: #ffffff;
	max-width: 300px;
	width: 70%;
	margin: 80px auto 0;
	background-color: #f27612;
	position: relative;
	text-decoration: none;
	border-radius: 100%;
}
.btn2 b{position: inherit;}
.btn2 .btn2_in{padding: 2.1em 2.5em;text-align: left;}
.btn2.arrow::before{
	background: url("../img/common/arrow.svg") no-repeat;
	inset:0 10% 0 auto;
	margin: auto 0;
}
@media screen and (max-width: 820px){
	#innerpage_wrap .two_column >*{width: 100%;}
	#innerpage_wrap .three_column {gap:25px 4%;}
	#innerpage_wrap .three_column >*{width: 48%;}
}
@media screen and (max-width: 750px){
	#innerpage_wrap{padding-top: 50px;}
	#innerpage_wrap section{margin-bottom: 50px;}
	#innerpage_wrap p{font-size: 14px;}
	#innerpage_wrap .two_column >*{	width: 100%;}
}

/*=============== 各見出しの設定 ===============*/
/*見出し2*/
h2{
	font-size: 25px;
	font-weight: bold;
	padding: 30px 0;
	margin-bottom: 60px;
    width: 100%;
    background: url("../img/common/h2_bg.png") repeat-x;
	background-size: contain;
    -webkit-animation: bgroop 30s linear infinite;
    animation: bgroop 30s linear infinite;
}
h2::before{content: "・";}
h2::after{content: "・";}
@-webkit-keyframes bgroop {
    from {
        background-position: 0  50%;
    }
    to {
        background-position: -1956px 50%;
    }
}
@keyframes bgroop {
    from {
        background-position: 0 50%;
    }
    to {
        background-position: -1956px 50%;
    }
}

/*見出し3*/
h3{
	font-size: 28px;
	text-align: justify;
	font-weight: bold;
	margin-bottom: 0.4em;
	padding-left: 1.5em;
	position: relative;
}
h3::before{
	content: "";
	background: url(../img/common/arrow_b.svg) no-repeat right center;
	width: 28px;
	height: 28px;
	position: absolute;
	top: 0.25em;
	left: 0;
}

/*見出し4*/
h4{
	text-align: justify;
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 0.5em;
}
h4::before{content: "【";}
h4::after{content: "】";}



@media screen and (max-width: 750px){
	h2 {
    	font-size: 20px;
    	padding: 20px 0;
		margin-bottom: 20px;
	}
	h3{font-size: 20px;}
	h3::before{
		width: 20px;
    	height: 24px;
	}
	h4{font-size: 18px;}
	
	
}
/*=============== ページネーション ===============*/
.pagination {
	max-width: 800px;
	margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 2%;
    list-style-type: none;
    padding: 0;
}

.pagination a {
	font-weight: bold;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2em;
    height: 2.5em;
    border: 2px solid #000000;
    border-radius: 1px;
    color: #000000;
	background-color: #FFFFFF;
	text-decoration: none;
}
.pagination :not(:first-child):not(:last-child) a:hover{
	background-color: #000000;
    color: #fff;
}
.pagination .current a {
    background-color: #f27612;
    color: #fff;
    pointer-events: none;
	border: 2px solid #f27612;
}
.prev img,.next img{
	width: 20px;
    height: 16px;
}
.prev img{transform: rotate(90deg);}
.next img{transform: rotate(-90deg);}


/*=============== tableデザイン ===============*/
table{
	width: 100%;
	
	font-size: 14px;
	text-align: justify;
}
table , td, th {
	border: 1px solid #000000;
	border-collapse: collapse;
}
td, th {padding: 20px !important;}
th {
	background: #D2E3EC;
	text-align: center;
	font-weight: bold;
	width: 200px;
	vertical-align: middle;
}

@media screen and (max-width: 750px){
	td, th {display: block!important;}
	th {width: 100%; text-align: justify;}
	td, th {padding: 15px!important;}
}

/*=============== フォームデザイン ===============*/

.form-group {
	font-size: 18px;
    margin-bottom: 50px;
    display: flex;
    flex-wrap: wrap;
	align-items: center;
	gap: 15px 5%;
}
form .form-group > label{
    width: 30%;
	font-weight: bold;
    box-sizing: border-box;
	text-align: left;
}
form .input-wrapper {
    width: 65%;
    position: relative;
	text-align: left;
}
form input[type="text"], textarea {
    width: 100%;
    padding: 8px;
    border: 2px solid #000;
    background-color: #fff;
    box-sizing: border-box;
}
textarea {height: 200px;}
input[type="text"]::placeholder, 
textarea::placeholder{color: #7f7f7f;}

form.checkbox-group,
form.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.custom-checkbox, .custom-radio {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    gap: 5px 10px;
}
.custom-checkbox input, .custom-radio input {
    display: none;
}
.checkmark, .radiomark {
    width: 26px;
    height: 26px;
    border: 2px solid #000;
    background-color: #fff;
    display: inline-block;
    margin-right: 5px;
}
.checkmark {position: relative;}
.radiomark {border-radius: 50%;}
.checkbox-group{
	display: flex;
    gap: 10px 35px;
    flex-wrap: wrap;
}
.custom-checkbox input:checked + .checkmark {
    background-image: url('../img/common/check.svg') !important;
    background-size: 20px 16px;
    background-position: center;
    background-repeat: no-repeat;
}
.custom-radio input:checked + .radiomark {
    background-color: #f27612;
}
.required-label {
    background-color: #f27612;
    color: #FFFFFF;
    font-size: 12px;
	padding: 2px 5px 3px;
}

.custom-select {
    width: 100%;
    padding: 10px 35px 10px 10px;
    font-size: 16px;
    border: 2px solid #000;
    border-radius: 0;
    background-color: #fff;
    
    /* デフォルトの矢印を非表示 */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    
    /* カスタム矢印の設定 */
    background-image: url("../img/common/arrow_bg.svg");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    
    /* iOSでのデフォルトスタイルをリセット */
    cursor: pointer;
}
/* iPhoneでの文字色を制御 */
.custom-select,
.custom-select option {
    color: #000;
    -webkit-text-fill-color: #000;
}
/* iOSでの角丸みをリセット */
.custom-select {-webkit-border-radius: 0;}

/* Firefoxでの点線を削除 */
.custom-select::-moz-focus-inner {border: 0;}

/* Edge/IEでの矢印を非表示 */
.custom-select::-ms-expand {display: none;}

/* フォーカス時のスタイル */
.custom-select:focus {
    outline: none;
    border-color: #000;
}


button {
	max-width: 200px;
	margin: 0 auto;
	width: 70%;
	display: block;
	color: #FFFFFF;
}

@media screen and (max-width: 750px){
	form .form-group > label ,form .input-wrapper{
		width:100%;
	}
	form .form-group{margin-bottom: 30px;}
}
/*=============== フォームデザイン 確認ページ ===============*/

.check .form-group {
	border-bottom: 2px solid #000;
	padding: 0 5% 15px 5%;
}
.form-group > .label {
   	width: 30%;
	font-weight: bold;
    box-sizing: border-box;
	text-align: left;
}
.input-wrapper {width: 65%;text-align: left;}
.check .back-button{background-color: #7f7f7f;}

/*=============== ページ上部部分 ===============*/
.hed_box{
	padding: 200px 0 120px;
	position: relative;
	background: url("../img/common/hed_bg.webp") center repeat-x;
	overflow: hidden;
}
.hed_box h1{
	color: #FFFFFF;
	display: inline-block;
	background-color: #ffa64f;
    background-image: radial-gradient(#ff9943 20%, transparent 20%);
    background-size: 40px 40px;
	border-radius: 50px;
	padding: 1.5em 2.5%;
	margin-bottom: 30px;
	max-width: 670px;
	width: 90%;
	font-family: "DotGothic16", sans-serif, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic";
}
.hed_box h1 p{
	font-size: 60px;
}
.hed_box h1 p span{
	font-size: 30px;
	line-height: 1;
}
.pankuzu{
	display: block;
    text-align: center;
    color: #3d3c3a;
    max-width: 1600px;
    width: 90%;
    margin: 0 auto;
    text-align: justify;
}
.pankuzu a{
	position: relative;
	padding-right: 1.5em;
	color: #3d3c3a;
}
.pankuzu a::before{
	content: "";
    position: absolute;
    background-image: url(../img/common/arrow_bg.svg);
	transform: rotate(-90deg);
    background-size: contain;
    background-repeat: no-repeat;
	width: 17px;
    height: 18px;
    inset: 0 0 0 auto;
    margin: auto 0;
}
@media screen and (max-width: 1000px){
	.hed_box{padding: 100px 0 50px;}
}
@media screen and (max-width: 750px){
	.hed_box{padding: 95px 0 20px;background-size: 160%;}
	.hed_box h1{border-radius: 20px;}
	.hed_box h1 span{font-size: 16px;}
	.hed_box h1 p{font-size: 30px;}
	
	.pankuzu{font-size: 13px;}
	.pankuzu ul{padding: 10px;}
}
/*=============== カスタムフィールド改行を無効 ===============*/
/* テキストエリアの改行をPCで無効にする */
.pc_br_none {
white-space: nowrap;
overflow-wrap: break-word;
}
@media screen and (max-width: 768px) {
.pc_br_none {
white-space: normal;
}
}
/*=============== Contact Form ===============*/
.bt_black {background:#000 !important;color:#fff;font-size: 16px;}
/*
a.btn, button.btn.tp_none {
margin-top: 0 !important;
}
*/
.mb_80 {
margin-bottom: 60px;
}
.ft_center {
text-align: center !important;
}
.wpcf7-response-output {
color: #f27612;
font-weight: 700;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
border: none;
}
/*=============== インフォメーション ===============*/
.post_ttl {
margin-bottom: 3rem;
}
.post_ttl h1 {
font-weight: bold;
}
.post_content p {
margin-bottom: 1em;
}
.post_content img ,.post_content div{
margin-bottom: 1em;
}
#post .wp-block-columns {
gap: 1rem;
margin-bottom: 2rem;
margin-top: 2rem;
}
.post_content h2,.post_content h3 {
font-size: 1.4rem;
background: none;
}
.post_content {
letter-spacing: 5px;
	max-width:950px;
	margin:auto;
	}
.post_content td:first-child {
background: #D2E3EC;;
text-align: center;
font-weight: bold;
width: 200px;
vertical-align: middle;
}
@media screen and (max-width: 750px) {
.post_content td:first-child {width: 100%;}
}
.post_content .wp-block-button {
font-size: 16px;
max-width: 320px;
width: 70%;
margin: 80px auto 15px;
background-color: #FFFFFF;
border: solid 4px #000000;
position: relative;
}
.post_content a.wp-block-button__link.wp-element-button {
display: block;
color:#333;
   padding: 1.2em 12%;
width: 100%;
text-decoration: none;
}
/* 左上の角 */
.post_content .wp-block-button::before {
content: "";
position: absolute;
top: -4px;
left: -4px;
transform: rotate(0deg); /* 回転角度を追加 */
width: 12px;
height: 12px;
background-image: url(../img/common/btn2.jpg);
background-size: cover;
}
/* 右上の角 */
.post_content .wp-block-button::after {
content: "";
position: absolute;
transform: rotate(90deg);
top: -4px;
right: -4px;
width: 12px;
height: 12px;
background-image: url(../img/common/btn2.jpg);
background-size: cover;
}
/* 左下の角 */
.post_content .wp-block-button__link.wp-element-button::before {
content: "";
position: absolute;
bottom: -4px;
left: -4px;
transform: rotate(-90deg);
width: 12px;
height: 12px;
background-image: url(../img/common/btn2.jpg);
background-size: cover;
}
/* 右下の角 */
.post_content .wp-block-button__link.wp-element-button::after {
content: "";
position: absolute;
bottom: -4px;
right: -4px;
transform: rotate(180deg);
width: 12px;
height: 12px;
background-image: url(../img/common/btn2.jpg);
background-size: cover;
}
@media (max-width: 781px){
#post .wp-block-columns {
margin-top: 1rem;
}
}
}

/* recruitに福利厚生追加 */

section.contents04_box {
    max-width: 950px !important;
}
.contents04_box p,.contents04_box img,.contents04_box li,.contents04_box div {
    margin-top: 2em;
    margin-bottom: 1em;
	font-size:16px;
	gap: 25px;
}
.contents03_btn {
    margin-bottom: 100px !important;
}
strong {
    font-weight: bold;
}
.banner {
    display: flex;
    justify-content: center;
	gap:15px;
}