@charset 'utf-8';

@media (min-width: 600px){
	main > div.wrapper{
		width: 100%;
		padding:0;
	}
	header > div.wrapper {
        margin:0 auto;
        /* justify-content: end; */
    }
}

/* トップページのみパンくず非表示 */
.breadcrumbs,
#breadcrumbs {
    display: none;
}

/* ▼▼▼▼▼▼▼▼▼▼ 共通リンク ▼▼▼▼▼▼▼▼▼▼ */
.list_more_wrap{text-align: center;}
.list_more_wrap > *{font-size: 24px;border-radius: 5px;padding: 15px 85px 15px 120px;}	
#area_slider .list_more_wrap > a,
#area_step .list_more_wrap > a{background: #79df5d;color: #fff;text-decoration: none;}
#area_step .list_more_wrap > a{padding: 15px 45px ;}
#area_worksheet .list_more_wrap > a{background: rgba(11,23,97,1);padding: 12px 84px;color: white;}
/* ▲▲▲▲▲▲▲▲▲▲共通リンク  ▲▲▲▲▲▲▲▲▲▲ */

/* ▼▼▼▼▼▼▼▼▼▼ 共通パーツ ▼▼▼▼▼▼▼▼▼▼ */
*{
	font-family: YakuHanRPs, "Zen Kaku Gothic New", sans-serif;
}
.red { color:#f9320a; }
.blue { color:#236de9; }
.bg-lblue { background-color:#eef5fe; }

/* ボタン */
.btn {
    display: block;
    color: #fff;
    width: 426px;
    height: 79px;
    border-radius: 40px;
    margin: 0 auto 40px;

	transition: .3s;
}
.btn.red{
	background:#f9320a;
	box-shadow: 8px 6px 0px #236de9;
}
.btn.blue{
	background:#236de9;
	box-shadow: 8px 6px 0px #f9320a;
}
.btn.red:hover,
.btn.blue:hover{
	box-shadow: unset;
	transform: translate(4px,4px);
  }
.btn a{
	display:block;
	width:100%;
	height:100%;
	color:#fff;
	font-size: 27px;
    line-height: 2.4;
    letter-spacing: 0.5px;
}
.btn.blue a{
	letter-spacing: -1px;
    text-indent: -0.8em;
}
.btn a.ca:after{
	content:"";
	display:block;
	float: right;
	width:38px;
	height:38px;
	background-image: url(../images/top/icon_circlearrow.png);
	background-repeat: no-repeat;
	background-size: contain;
	margin: 15px 42px 0 -42px;
}
.btn a.ca_right:after{
	content:"";
	display:block;
	float: right;
	width:38px;
	height:38px;
	background-image: url(../images/top/icon_circlearrow_right.png);
	background-repeat: no-repeat;
	background-size: contain;
	margin: 15px 42px 0 -42px;
}

.section{
	width:100%;
	position:relative;
}
.section img{
	width:100%;
}
.section.bg-word:before{
	content:"";
	display:block;
	position:absolute;
	top:40px;
	right:0;
	height: 98px;
	background-repeat: no-repeat;
}
.section .section_inner{
	width:990px;
	margin: 130px auto 0;
	position: relative;
}
.section .section_title{
	height:82px;
}
.section .section_title.left{
	margin: 60px 0 55px -45px;
}
.section .section_title.center{
	display:block;
	margin:0 auto;
}
.section .section_title.center img{
	position: absolute;
    top: -32px;
    left: 50%;
	transform: translate(-50%,0);
}
@media (max-width: 599px){
	.section.bg-word:before{
		display:none;
	}
	.section .section_inner {
		width: 90%;
		margin: 90px auto 0;
	}
	.btn{
		width: 100%;
		height: 73px;
		margin-left: -10px;
	}
	.btn a{
		font-size: 22px;
		line-height: 2.7;
	}
	.btn a.ca:after {
		margin: 10px 32px 0 -42px;
	}
	.section_title{
		padding:0;
	}
	.section .section_title.left {
		margin: 20px auto 40px;
	}
}

/* ▲▲▲▲▲▲▲▲▲▲ 共通パーツ ▲▲▲▲▲▲▲▲▲▲ */

/* ▼▼▼▼▼▼▼▼▼▼ モーダル ▼▼▼▼▼▼▼▼▼▼ */

body.open_popup {
    overflow: hidden;
}

.bg_onetime_popup {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

body.open_popup .bg_onetime_popup {
    opacity: 1;
    visibility: visible;
}

.onetime_popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 50%;
    min-width: 500px;
    background-color: #fff;
}

.onetime_popup_title {
    position: relative;
    padding: 1em 80px;
    margin: 0px;
    background-color: #3388dd;
    color: #fff;
    font-size: 32px;
    text-align: center;
    line-height: 1.5;
}

.onetime_popup_title_close {
    position: absolute;
    top: 50%;
    right: 30px;
    width: 30px;
    height: 30px;
    transform: translateY(-50%);
    cursor: pointer;
}
.onetime_popup_title_close::before,
.onetime_popup_title_close::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 100%;
    height: 4px;
    background-color: #fff;
    content: "";
}
.onetime_popup_title_close::before {
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.onetime_popup_title_close::after {
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.onetime_popup_content {
    padding: 60px 30px;
    text-align: center;
}
.bg_onetime_popup,
.onetime_popup{
	display:none;
}
@media (max-width: 599px){
	/*.bg_onetime_popup,
	.onetime_popup{
		display:none;
	}
	 .onetime_popup {
		width: 90%;
		min-width: 360px;
	}
	.onetime_popup_title{
		padding: 7px 0 15px;
	} */
}
/* ▼▼▼▼▼▼▼▼▼▼ ヘッダー（topページのみパンくずなし） ▼▼▼▼▼▼▼▼▼▼ */
header {
    height: 65px;
	padding: 40px 0 80px;
}

/* ▼▼▼▼▼▼▼▼▼▼ トップ ▼▼▼▼▼▼▼▼▼▼ */
/* mv */
#mv{
	position: relative;
	width:100%;
	/* max-width: 1200px; */
    margin: 0 auto;
	padding-top: 120px;
}
#mv .fukiwrap {
	position: absolute;
    width: 100%;
	max-width:1200px;
    height: 100%;
    min-height: 200px;
    max-height: 355px;
	left: 50%;
    transform: translateX(-50%);
}
#mv .fukiwrap .fukidashi{
	position: absolute;
}
.fukidashi#fuki01 {
    left: 55px;
	bottom: 40px;
}
.fukidashi#fuki02 {
    left: 30%;
	bottom: 1%;
}
.fukidashi#fuki03 {
    right: 23%;
    bottom: 7%;
}
.fukidashi#fuki04 {
    bottom: 40px;
    right: 3%;
}
.fukidashi#fuki05 {
    right: 23%;
    bottom: 7%;
}
.fukidashi#fuki06 {
    bottom: 40px;
    right: 3%;
}
#mv .fukidashi img{
	height:75px;
}
/* 吹き出しアニメーション */
.pyoko {
  animation: pyoko 5s ease-in-out infinite backwards;
}
@keyframes pyoko {
	0% {
	  transform: translateY(40px) scale(0.8);
	  opacity: 0;
	}
	5%{
		transform: translateY(0) scale(1.0);
		opacity: 1;
	}
	20% {
		transform: translateY(0) scale(1.0);
		opacity: 1;
	  }
	25% {
		transform: translateY(40px) scale(0.8);
		opacity: 0;
	}
	100%{
		transform: translateY(40px) scale(0.8);
		opacity: 0;
	}
  }
/* .puyon {
	-webkit-animation: puyon 1.0s linear 0s 1;
	animation: puyon 1.0s linear 0s 1;
}
@-webkit-keyframes puyon {
	0%   { -webkit-transform: scale(1.0, 1.0) translate(0%, 0%); }
	40%  { -webkit-transform: scale(0.95, 1.2) translate(0%, -10%); }
	50%  { -webkit-transform: scale(1.1, 0.9) translate(0%, 5%); }
	60%  { -webkit-transform: scale(0.95, 1.05) translate(0%, -3%); }
	70%  { -webkit-transform: scale(1.05, 0.95) translate(0%, 3%); }
	80%  { -webkit-transform: scale(1.0, 1.0) translate(0%, 0%); }
	100% { -webkit-transform: scale(1.0, 1.0) translate(0%, 0%); }
}
@keyframes puyon {
	0%   { transform: scale(1.0, 1.0) translate(0%, 0%); }
	40%  { transform: scale(0.95, 1.2) translate(0%, -10%); }
	50%  { transform: scale(1.1, 0.9) translate(0%, 5%); }
	60%  { transform: scale(0.95, 1.05) translate(0%, -3%); }
	70%  { transform: scale(1.05, 0.95) translate(0%, 3%); }
	80%  { transform: scale(1.0, 1.0) translate(0%, 0%); }
	100% { transform: scale(1.0, 1.0) translate(0%, 0%); }
} */

#mv .mv-bg,
#mv .mv-bg img{
	width:100%;
	max-width:1200px;
	margin:0 auto;
}
/* リード */
.section .read_image{
	position:absolute;
	display:block;
}
.section .read_image.right{
	top: -48px;
    right: -28px;
    width: 245px;
}
.section .read_image.left{
	top: 350px;
    left: -11px;
    width: 229px;
}
.section .section_inner .upper,
.section .section_inner .bottom{
	margin:0 auto;
	text-align:center;
}
.section .section_inner .upper{
	margin-bottom:152px;
}
.section .section_inner .upper h3 {
    font-size: 25px;
    font-weight: bold;
    line-height: 2.3;
    letter-spacing: -1px;
	margin-bottom: 100px;
}
.section .section_inner .upper h3 .tagline {
    display: block;
    font-size: 38px;
	font-weight: bold;
    letter-spacing: 2px;
    line-height: 1;
    text-indent: 20px;
    margin-bottom: 60px;
}

.section .section_inner .bottom .text_area {
    width: 990px;
    margin: 0 auto;
    position: relative;
}
.section .section_inner .bottom .text_area_headder,
.section .section_inner .bottom .text_area_footer{
	height:60px;
	width:100%;
}
.section .section_inner .bottom .text_area_headder:before{
	content: "";
    position: absolute;
    left: -3px;
    top: -2px;
    width: 55px;
    height: 55px;
    border-top: 4px solid #236de9;
    border-left: 4px solid #236de9;
}
.section .section_inner .bottom .text_area_headder:after{
	content: "";
    position: absolute;
    right: -3px;
    top: -2px;
    width: 55px;
    height: 55px;
    border-top: 4px solid #236de9;
    border-right: 4px solid #236de9;
}
.section .section_inner .bottom .text_area_footer:before{
	content: "";
    position: absolute;
    left: -3px;
    bottom: -2px;
    width: 55px;
    height: 55px;
    border-bottom: 4px solid #236de9;
    border-left: 4px solid #236de9;
}
.section .section_inner .bottom .text_area_footer:after{
	content: "";
    position: absolute;
    right: -3px;
    bottom: -2px;
    width: 55px;
    height: 55px;
    border-bottom: 4px solid #236de9;
    border-right: 4px solid #236de9;
}
.section .section_inner .bottom .text_area_headder h3 {
    font-size: 37px;
	font-weight:bold;
	letter-spacing: 0.5px;

	position: absolute;
	left:50%;
	top:-25px;
	transform: translateX(-50%);
}
.section .section_inner .bottom .text_area_inner,
.section .section_inner .bottom .text_area_inner span{
	padding: 40px 0 50px;
    font-size: 26px;
    /* letter-spacing: -1.1px; */
    line-height: 1.8;
}
/* font-feature-settings: “palt”が効かないフォントのため応急処置 */
.section .section_inner .bottom .text_area_inner .ng{
	margin: 0 -5px 0;
}
@media (max-width: 599px){
	#mv {
		padding-top: 30px;
	}
	#mv img{
		width:100%;
	}
	.section .read_image.right {
		top: -46px;
		right: -28px;
		width: 202px;
		opacity: 0.5;
	}
	.section .read_image.left {
		top: 205px;
		left: -11px;
		width: 174px;
		opacity: 0.5;
	}
	.section .section_inner .upper h3 .tagline{
		font-size: 32px;
		margin-bottom: 35px;
	}
	.section .section_inner .upper h3{
		font-size: 18px;
		line-height: 1.7;
	}
	.section .section_inner .bottom .text_area{
		width: 96%;
	}
	.section .section_inner .bottom .text_area_headder h3{
		font-size: 20px;
		top: -16px;
	}
	.section .section_inner .bottom .text_area_headder:before,
	.section .section_inner .bottom .text_area_headder:after,
	.section .section_inner .bottom .text_area_footer:before,
	.section .section_inner .bottom .text_area_footer:after{
		width: 40px;
		height: 40px;
	}
	.section .section_inner .bottom .text_area_inner,
	.section .section_inner .bottom .text_area_inner span{
		padding: 5px 10px 15px;
		font-size: 18px;
	}
	.section .section_inner .bottom .text_area_inner span.red{
		padding:0;
	}
	.section .section_inner .bottom .text_area_inner .ng {
		margin: 0 -11px 0;
	}
}

/* ▼▼▼▼▼▼▼▼▼▼ works ▼▼▼▼▼▼▼▼▼▼ */
#works.section.bg-word:before{
	width:504px;
	background-image:url(../images/top/works/bg_word.png);
}
/* carousel */
.works_carousel {
	/* overflow: hidden; */
	width: 100vw;
	margin-bottom: 200px;
  }
  .works_list {
	display: flex;
	position: relative;
	left: 0;
  }
  .works_list li {
	width: 306px;
	margin-right: 24px;
	flex-shrink: 0;
	list-style: none;
  }
  .works_list li:nth-child(even){
	margin-top:50px;
  }
  .works_list img {
	width: 100%;
	height: auto;
	display: block;
  }
  @media (max-width: 599px){
	#works .section_inner .section_title img {
		width: 360px !important;
        margin-left: -5px;
	}
	.works_carousel {
		margin-bottom: 100px;
	  }
	.works_list li{
		width: 205px;
	}
  }

/* ▼▼▼▼▼▼▼▼▼▼ reason ▼▼▼▼▼▼▼▼▼▼ */
section#reason {
    padding-bottom: 145px;
}
.txt {
    padding: 60px 0 50px;
    text-align: center;
}
.txt .highlight {
	display: inline-block;
    background: #fff;
    font-size: 31px;
    letter-spacing: -1px;
	margin-bottom: 15px;
}
.cell_wrap.reason01{
	display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
	width: 730px;
    margin: 0 auto;
}
.cell_wrap .cell{
	width: 350px;
    padding: 20px 34px 10px;
	margin-bottom: 40px;
	text-align: center;

	background: #fff;
	border: 4px solid #236de9;
	border-radius: 40px;
	box-shadow: 10px 6px 0px #236de9;
}
.cell_wrap .cell h4 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}
.cell_wrap .cell img {
    display: block;
}
.cell_wrap .cell:nth-child(1) img {
    width:92px;
	margin: 30px auto 25px;
}
.cell_wrap .cell:nth-child(2) img {
    width:87px;
	margin: 0 auto 15px;
}
.cell_wrap .cell:nth-child(3) img {
    width: 96px;
    margin: 25px auto 20px;
}
.cell_wrap .cell:nth-child(4) img {
    width: 113px;
    margin: 25px auto 15px;
}
.cell_wrap .cell p{
	text-align: left;
    line-height: 1.55;
    letter-spacing: -1px;
}
.reason02 {
    margin: 150px auto 0;
    width: 880px;
}
.reason03 {
    margin: 135px auto -10px;
    width: 727px;
}
.reason02 img, .reason03 img {
    width: 100%;
}
section#reason .area_wrap{
	width: 655px;
    margin: 25px auto;
}
section#reason .tab-menu {
	display: flex;
	margin: 0 0 -1px 50px;
}
section#reason .tab {
	height:60px;
	padding: 15px 60px;
	background: #f44336;
	color: #fff;
	font-size: 20px;
	border-radius: 30px 30px 0 0;
	cursor: pointer;
	margin-right: 10px;
	font-weight: bold;
	transition: 0.3s;
}
section#reason .tab:hover{
	transform: scale(1.06);
	transition: 0.3s;
}
section#reason .tab.blue {
	background: #2c6fdd;
}
section#reason .tab-contents {
	background: #fff;
	border: 4px solid #f44336;
	border-radius: 40px;
	padding: 60px 82px;
	min-height: 500px;
	box-shadow: 10px 6px 0px #f9320a;
}
section#reason .tab-menu:has(.tab.blue.active) + .tab-contents {
	border: 4px solid #2c6fdd;
	box-shadow: 10px 6px 0px #2c6fdd;
  }
/* 中身 */
section#reason .tab-content {
	display: none;
}
section#reason .tab-content.active {
	display: block;
}
section#reason .tab-content ul {
	list-style: none;
	padding: 0;
}
section#reason .tab-content li a{
	font-size: 20px;
    line-height: 2.05;
    color: #000;
}
section#reason .tab-content li a:hover {
    text-decoration: underline;
}
section#reason .tab-content li{
	margin-bottom:25px;
}
section#reason .tab-content li dl dt{
	font-size: 20px;
}
section#reason .tab-content li dl dd{
	font-size: 16px;
    line-height: 1.2;
    margin-top: 4px;
}
@media (max-width: 599px){
	section#reason {
		padding-bottom: 50px;
	}
	#reason .section_inner .section_title img {
		width: 100% !important;
	}
	.txt {
		padding: 0 0 50px;
	}
	.txt .highlight{
		font-size: 20px;
	}
	.cell_wrap.reason01{
		width:100%;
	}
	.cell_wrap .cell{
		width: 80%;
        margin: 0 auto 30px;
		padding: 20px 20px 10px;
	}
	.cell_wrap .cell h4{
		font-size: 20px;
	}
	.cell_wrap .cell:nth-child(1) img {
		width: 80px;
		margin: 20px auto 17px;
	}
	.cell_wrap .cell:nth-child(2) img {
		width: 72px;
		margin: 0 auto 15px;
	}
	.cell_wrap .cell:nth-child(3) img {
		width: 75px;
		margin: 18px auto;
	}
	.cell_wrap .cell p{
		font-size:14px;
	}
	.reason02 {
		margin: 50px auto 0;
		width: 100%;
	}
	.reason03 {
		margin: 60px auto 30px;
		width: 100%;
	}
	section#reason .area_wrap {
		width: 100%;
	}
	section#reason .tab-menu {
		margin: 0 0 -1px -7px;
	}
	section#reason .tab {
		height: 45px;
        padding: 12px 25px;
        font-size: 16px;
        margin-right: 5px;
	}
	section#reason .tab:hover{
		padding: 12px 25px;
		margin-top: 0;
	}
	section#reason .tab-contents{
		padding: 40px 40px;
	}
	section#reason .tab-content li a {
		font-size: 16px;
		line-height: 1;
	}
	section#reason .tab-content li dl dd {
		font-size: 14px;
	}
  }

/* ▼▼▼▼▼▼▼▼▼▼ search ▼▼▼▼▼▼▼▼▼▼ */
section#search {
    padding-bottom: 30px;
}
#search.section.bg-word:before{
	width:589px;
	background-image:url(../images/top/search/bg_word.png);
}
.search_tags ul {
    display: flex;
	flex-wrap: wrap;
	height: 44px;
    margin: 5px 0 40px -70px;
}
.search_tags ul li{
	background: #fed6ce;
    margin-right: 12px;
    padding: 4px 10px;
}
.search_tags ul li a{
	display:block;
	width:100%;
	height:100%;
}
.search_tags ul li.active,
.search_tags ul li:hover{
	background:#f9320a;
}
.search_tags ul li p {
	font-size:20px;
	line-height: 1.7;
    letter-spacing: 0.5px;
	margin-bottom: 0;
	color:#f9320a;
}
.search_tags ul li.active p,
.search_tags ul li:hover p{
	color:#fff;
}
/* .search_tags ul li p:before{
	content:"#";
	margin-right:0.05em;
} */
.slider_items .item_wrapper{
    min-height: 545px;
    flex-shrink: 0;
    background-color: #eef5fe;

	position:relative;
}
.slider_items .item_wrapper a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 20px 20px 65px;
}
.slider_items .item_wrapper a:after{
	content:"この仕事に応募する";
	display:block;
	width:100%;
	height:50px;
	color:#fff;
	text-align: center;
    font-size: 22px;
    line-height: 2.1;
	background:#2c6fdd;

	position:absolute;
	left:0;
	bottom:0;
}
.bx-wrapper .bx-pager.bx-default-pager a {
    background: #fccb00 !important;
}
.bx-wrapper .bx-controls-auto, .bx-wrapper .bx-pager {
    bottom: -80px;
}
#area_slider *{text-align: center;}
#area_slider a{text-decoration: underline;}
.bx-viewport{
	width: 106.2%!important;
	margin-left: -20px;
}
#area_slider:before,#area_slider:after{
	position: absolute;
	content: "";
}
#area_slider:before{
	height: 30px;
	top: -30px;
	background: #ffcc5a;
	z-index: -1;
}
#area_slider:after{
	top: 0;
	width: 100vw;
	height: 100%;
    margin: 0 -500%;
    padding: 0 500%;
	background: #ffcc5a;
	z-index: -1;
}
#area_slider .slider_title{margin-top: -.5em;margin-bottom: 45px;}
#area_slider .slider_title_sub{margin: 27px 0;}
#area_slider .slider_item{
	background: #fff;
	position: relative;
	padding: 10px 20px 20px;
	border-radius: 5px;
}
#area_slider .slider_item .item_top{
	padding: 3px 0 15px;
	text-align: left !important;
}
#area_slider .slider_item .item_body{padding: 0 20px;height: 85%;}
#area_slider .slider_item .item_more{
	position: absolute;
	bottom: -1rem;
	left: calc(50% - 2.5em - 25px);
	z-index: 999;
	background: rgba(140,185,245,1);
	border-radius: 3em;
	padding: 10px 25px;
	color: #fff!important;
}
.item_body_access,
.item_body_salary {
    color: #000;
	text-align: left !important;
	line-height: 1.57;
	margin: 15px 0;
}
.item_top {
    color: #f9320a;
    text-decoration: underline;
	margin: -10px 0 18px;
}
.item_body_image{
	text-align: center;
	min-height: 205px;
	max-height: 205px;
    margin-bottom: 45px;
	overflow: hidden;
}
.item_body_image img {
    width: 100%;
    height: auto;
}
.item_wrapper .item_favarite{margin-top: 15px;padding-bottom: 2px;margin-bottom: 2px;}
.item_wrapper .item_favarite a {padding-left: 1.75em;color:rgba(11,23,97,1);}
.item_wrapper .item_favarite img{height: 1em;padding-left: 1.75em;}
.item_wrapper .item_favarite a:before{
	position: absolute;
	content: "☆";
	font-size: 1.25em;
	top: -.15em;
	color: rgba(11,23,97,1);
	left: .25em;
}
.item_wrapper .item_favarite.favorite_active a:before{content:"★"!important;}

.item_wrapper .item_favarite.add_favarite:before{color: orange}

.bx-wrapper{
	margin: 0 auto;
	margin-bottom: 170px;
	box-shadow:none;
	border:none;
	background:none;
}
#area_slider .bx-wrapper .bx-pager a {
	color: #f5d76e!important;
}
.bx-controls .bx-controls-direction {
    position: absolute;
    bottom: -65px;
    left: 50%;
	transform: translateX(-50%);
    width: 370px;
	z-index: 1;
}
.bx-controls .bx-controls-direction a.bx-prev,
.bx-controls .bx-controls-direction a.bx-next{
	background:#fccb00!important;
	border-radius:50%;
	width:50px;
	height:50px;
}
.bx-controls .bx-controls-direction a.bx-prev:after,
.bx-controls .bx-controls-direction a.bx-next:after {
    content: "";
    display: block;
    width: 17px;
    height: 17px;
    border-right: 4px solid #fff;
    border-bottom: 4px solid #fff;
}
.bx-controls .bx-controls-direction a.bx-prev:after{
	transform: rotate(135deg);
	margin: -7px 18px;
}
.bx-controls .bx-controls-direction a.bx-next:after{
	transform: rotate(-45deg);
	margin: -7px 14px;
}
@media (max-width: 599px){
	#search  .section_inner {
        margin: 35px auto 0;
    }
	#search .section_inner .section_title img {
		width: 250px !important;
	}
	.search_tags ul {
		height: auto;
        margin: -40px 0 15px -41px;
	}
	.search_tags ul li {
		margin-right: 8px;
		padding: 5px 8px 0 7px;
		margin-bottom: 5px;
	}
	.search_tags ul li p {
		font-size: 14px;
		margin-bottom: 5px;
	}
	.item_wrapper {
		overflow: hidden;
	}
	.slider_item{
		width:auto;
	}
	.bx-viewport {
		margin-left: -10px;
	}
	.bx-controls .bx-controls-direction{
		bottom: -42px;
	}
	.bx-wrapper .bx-controls-auto,
	.bx-wrapper .bx-pager {
		bottom: -55px;
	}
	.bx-wrapper{
		max-width: 95% !important;
		margin: 0 auto 120px;
	}
}

/* ▼▼▼▼▼▼▼▼▼▼ review ▼▼▼▼▼▼▼▼▼▼ */
section#review {
    padding-bottom: 55px;
}
#review .text_area_inner {
    padding: 63px 58px 0;
}
.text_area_inner .cell{
	position:relative;
	height: 250px;

	background-repeat: no-repeat;
	background-position: left top;
	margin-bottom: 80px;
}
.text_area_inner .cell:nth-child(1){
	background-image:url(../images/top/review/review01_bg.png);
}
.text_area_inner .cell:nth-child(2){
	background-image:url(../images/top/review/review02_bg.png);
}
.text_area_inner .cell:nth-child(3){
	background-image:url(../images/top/review/review03_bg.png);
}
.text_area_inner .cell .text{
	position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    text-align: left;
    font-size: 20px;
	letter-spacing: 0.5px;
    line-height: 1.7;
    padding: 50px 35px 0;
} 
.text_area_inner .cell:nth-child(2n) .text{
	left:0;
	padding: 60px 32px 0 22px;
}
.text_area_inner .cell .text .type{
	display: block;
    text-align: right;
    font-size: 22px !important;
    line-height: 1.3 !important;
    padding: 0 !important;
}
@media (max-width: 599px){
	#review .text_area_inner {
		padding: 0 10px;
	}
	.text_area_inner .cell {
		height: 175px;
		margin-bottom: 25px;
	}
	.text_area_inner .cell .text {
		font-size: 14px;
        font-weight: 500;
        line-height: 1.45;
        width: 70%;
        padding: 16px 14px 0;
        letter-spacing: -0.1px;
	}
	.text_area_inner .cell .text .type {
		font-size: 13px !important;
		line-height: 1.7 !important;
        margin-top: 5px;
	}
	.text_area_inner .cell{
		background-size:contain;
	}
	.text_area_inner .cell:nth-child(2n) .text {
		padding: 20px 22px 0;
	}
	.text_area_inner .cell:nth-child(1){
		background-image:url(../images/top/review/review01_bg_sp.png);
	}
	.text_area_inner .cell:nth-child(2){
		background-image:url(../images/top/review/review02_bg_sp.png);
	}
	.text_area_inner .cell:nth-child(3){
		background-image:url(../images/top/review/review03_bg_sp.png);
	}
}

/* ▼▼▼▼▼▼▼▼▼▼ flow ▼▼▼▼▼▼▼▼▼▼ */
section#flow {
    padding-bottom: 100px;
}
#flow .section_inner {
    width: 1045px;
}
#flow .section_title.left{
	margin: 50px 0 65px -7px;
}
#flow.bg-word:before{
	width:402px;
	background-image:url(../images/top/flow/bg_word.png);
}
#flow .mensetsu_wrap{
	width: 990px;
    margin: 68px auto 30px;
}
#flow .tab-menu {
	display: flex;
	margin: 0 0 -4px 0;
}
#flow .tab2 {
	height: 60px;
    padding: 7px 78px;
    background: #fff;
    color: #2c6fdd;
    font-size: 28px;
	border:4px solid #2c6fdd;
    border-radius: 24px 24px 0 0;
    cursor: pointer;
    margin-right: 20px;
    font-weight: bold;
    transition: 0.3s;
}
#flow .tab2.active,
#flow .tab2:hover{
	background: #2c6fdd;
    color: #fff;
}
#flow .tab-contents {
	background: #eef5fe;
    border: 4px solid #2c6fdd;
    border-radius: 40px;
    padding: 52px 50px 45px 50px;
    min-height: 323px;
    box-shadow: 8px 6px 0px #2c6fdd;
}
/* 中身 */
#flow .tab-content2 {
	display: none;
	background-repeat: no-repeat;
}
#flow .tab-content2.active {
	display: block;
}
#flow .tab-content2 .text{
	padding:0 0 0 39%;
	min-height: 220px;
}
#flow .tab-content2 .text h4 {
	color: #2c6fdd;
    font-size: 23px;
    font-weight: bold;
    text-indent: -2px;
    line-height: 1.3;
}
#flow .tab-content2 .text p {
    margin: 10px 0 0 -3px;
    line-height: 1.55;
}
#flow .tab-content2#zoom{
	background-image:url(../images/top/flow/zoom_bg.png);
	background-position: left 27px top;
	background-size: 230px;
}
#flow .tab-content2#shucchou{
	background-image:url(../images/top/flow/shucchou_bg.png);
	background-position: left top 10px;
	background-size: 275px;
}
#flow .tab-content2#raisha{
	background-image:url(../images/top/flow/raisha_bg.png);
	background-position: left top;
	background-size: 295px;
}
#flow .tab-content2 .text .zoom_logo img {
    width: 76px;
}
#flow .contents.hayami {
	width:99%;
	height:170px;
    background-image:url(../images/top/flow/hayami.png);
	background-repeat: no-repeat;
	background-position:left bottom;
	background-size: contain;
	margin-top: -10px;
	transition: 0.3s;
}
#flow .contents.hayami:hover {
    transform: scale(0.95);
	transition: 0.3s;
}
#flow .contents.hayami a{
	display:block;
	width:100%;
	height:100%;
}
@media (max-width: 599px){
	section#flow {
		padding-bottom: 50px;
	}
	#flow .section_inner{
		width:90%;
		margin: -30px auto 0;
	}
	#flow .section_title.left {
		margin: 50px 0 30px -5px;
	}
	#flow .section_inner .section_title img {
        width: 100% !important;
    }
	#flow .contents.hayami,
	#flow .contents.hayami:hover{
		width: 102%;
		background-image:url(../images/top/flow/hayami_sp.png);
	}
	#flow .tab-contents{
		padding: 30px 45px 35px;
	}
	#flow .mensetsu_wrap {
		width: 100%;
	}
	#flow .tab-menu {
		margin: 0 0 -4px -10px;
	}
	#flow .tab-content2 .text {
		padding: 180px 0 0 0;
	}
	#flow .tab-content2{
		background-size: 200px;
	}
	#flow .tab-content2#zoom{
		background-position: center top;
		background-size: 180px;
	}
	#flow .tab-content2#shucchou{
		background-size: 205px;
		background-position: top 13px center;
	}
	#flow .tab-content2#raisha{
		background-size: 215px;
		background-position: top center;
	}
	#flow .tab2 {
		height: 50px;
		padding: 10px;
		font-size: 16px;
		margin-right: 5px;
	}
}
/* ▼▼▼▼▼▼▼▼▼▼ Q&A ▼▼▼▼▼▼▼▼▼▼ */
section#qanda {
    padding-bottom: 100px;
}
.qandalist_wrap{
	position:relative;
	padding-top: 35px;
}
#qanda .section_inner {
    width: 1030px;
}
#qanda.bg-word:before{
	width:402px;
	background-image:url(../images/top/qanda/bg_word.png);
}
#qanda.section.bg-word:before{
	top: -51px;
	right: -87px;
}
.qandalist_wrap ul {
    padding: 0;
}
.qandalist_wrap:before{
	content:"";
	display:block;
	width: 173px;
    height: 205px;

    position: absolute;
    top: -165px;
    left: 121px;

	background-image:url(../images/top/qanda/img.png);
	background-repeat: no-repeat;
	background-position:left top;
	background-size: contain;
}
.qandalist_wrap .line {
	color: #fff;
    background:#2c6fdd;
	min-height: 100px;
    margin: 5px auto 22px;
	border-radius: 30px;
	position:relative;
}
.qandalist_wrap .line:before{
	content: "";
    display: block;
    width: 40px;
    height: 45px;

    position: absolute;
    top: 30px;
    left: 45px;

    background-image: url(../images/top/qanda/q.png);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: contain;
}
.qandalist_wrap .line .qst {
	position:relative;
	display: block;
	font-size: 22px;
	letter-spacing: 1px;
	padding: 20px 0 3px 125px;
}
.qandalist_wrap .line .qst:after{
	content:"";
	display: block;
	position: absolute;
	right: 51px;
	top: 28px;
	width: 45px;
	height: 45px;

	background-image: url(../images/top/icon_circlearrow.png);
	background-repeat: no-repeat;
	background-size: contain;

	transition: transform 0.3s ease;
}
.qandalist_wrap .line .qst p {
    font-size: 23px;
    line-height: 61px;
}
.qandalist_wrap .line .qst.open:before {
	display: none;
}
.qandalist_wrap .line .qst.open:after{
	transform: rotate(180deg);
}
.qandalist_wrap .line .ans {
	display: none;
	padding: 25px 25px 15px 125px;
	font-size: 18px;
	line-height: 1.6;
	background: #fff;
	color:#2c6fdd;
	border:#2c6fdd 2px solid;
	border-radius: 0 0 30px 30px;
	position:relative;
}
.qandalist_wrap .line .ans:before{
	content: "";
    display: block;
    width: 40px;
    height: 45px;

    position: absolute;
    top: 30px;
    left: 45px;

    background-image: url(../images/top/qanda/a.png);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: contain;
}
.qandalist_wrap .line .qst.open {
	padding-bottom: 0;
}
@media (max-width: 599px){
	section#qanda {
		padding-bottom: 0px;
	}
	#qanda .section_inner {
		width: 90%;
	}
	#qanda .section_inner .section_title img {
        width: 260px !important;
		left: 55%;
    }
	.qandalist_wrap {
		padding-top: 0;
	}
	.qandalist_wrap:before {
		width: 86px;
		top: -125px;
        left: 16px;
	}
	.qandalist_wrap .line{
		min-height: 75px;
		margin: 5px auto 10px;
		border-radius: 20px;
	}
	.qandalist_wrap .line:before {
		width: 30px;
		height: 30px;
		top: 23px;
		left: 17px;
	}
	.qandalist_wrap .line .qst {
		font-size: 12px;
		padding: 20px 20px 8px 55px;
	}
	.qandalist_wrap .line .qst:after {
		right: 15px;
        top: 25px;
        width: 25px;
        height: 25px;
	}
	.qandalist_wrap .line .qst p {
		font-size: 18px;
		line-height: 1.7;
	}
	.qandalist_wrap .line .ans {
		padding: 18px 18px 10px 60px;
	}
	.qandalist_wrap .line .ans:before {
		width: 25px;
		height: 25px;
		top: 18px;
		left: 17px;
	}
}
/* ▼▼▼▼▼▼▼▼▼▼ エントリー ▼▼▼▼▼▼▼▼▼▼ */
section#entry {
    padding-bottom: 28px;
}
#entry .section_inner {
    width: 1030px;
	position:relative;
}
#entry .section_inner:before{
	content: "";
    display: block;
    width: 379px;
    height: 300px;

    position: absolute;
    top: -255px;
    right: 97px;

	background-image: url(../images/top/entry/img.png);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: contain;
}
.entry_border{
	position:relative;
	width:100%;
	height: 1410px;
	border: 4px solid #2c6fdd;
    box-shadow: 10px 6px 0px #2c6fdd;
	border-radius: 40px;
    padding: 45px 55px;
	margin-top: 240px;
}
.entry_border .form_title{
	position: absolute;
    top: -43px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    background: #F9320B;
    color: #fff;
    font-size: 30px;
    line-height: 2.5;
    text-align: center;
    width: 218px;
    height: 75px;
    border-radius: 40px;
}


/* =========================
  フォーム全体
========================= */
.entry_wrap {
	margin-bottom: 40px;
  }
  .form-row {
	margin-bottom: 34px;
  }
  .two-col {
	display: flex;
	gap: 32px;
  }
  .form-field {
	flex: 1;
  }
  .form-row > label,
  .form-field > label {
	margin-bottom: 18px;
    font-size: 20px;
    line-height: 1;
	color: #2c6fdd;
  }
  input[type="text"],
  input[type="email"],
  input[type="number"],
  input[type="password"] {
	width: 100%;
	height: 57px;
	padding: 0 12px;
	background: #e5e5e5;
	border: none;
	font-size: 16px;
  }
  input:focus {
	outline: none;
	background: #ddd;
  }
  .gender-group {
	width: 100%;
    display: flex;
    gap: 30px;
  }
  .gender-group label {
	flex: 1;
	cursor: pointer;
  }
  .gender-group input {
	display: none;
  }
  .gender-group span {
	display: block;
	padding: 14px 0;
	background: #e5e5e5;
	text-align: center;
	font-weight: bold;
	color: #2c6fdd;
	transition: 0.2s;
  }
  .gender-group input:checked + span {
	background: #2c6fdd;
	color: #fff;
  }
  .form-note {
	font-size: 15px;
    line-height: 1.6;
    margin: -5px 0 23px;
  }
  small {
	margin-top: 10px;
    font-size: 16px;
    font-weight: bold;
  }
  .form-agree {
	text-align: center;
	margin: 40px 0;
  }
  .form-agree input {
	margin-right: 6px;
  }
  .form-agree span {
	font-size: 18px;
	font-weight: bold;
	color: #2c6fdd;
  }
  .form-submit {
	text-align: center;
  }
  .form-submit button {
	background: #f44336;
	color: #fff;
	border: none;
	border-radius: 999px;
	padding: 16px 66px;
    font-size: 20px;
	font-weight: bold;
	cursor: pointer;
  }
  .form-submit button:hover {
	opacity: 0.9;
  }

  @media (max-width: 599px){
	#entry .section_inner {
		width: 95%;
        margin-right: 4px;
        position: relative;
	}
	#entry .section_inner:before{
		background-image: url(../images/top/entry/img_sp.png);
        width: 230px;
        top: -144px;
        right: 94px;
	}
	.entry_border {
		width: 95%;
        height: auto;
        padding: 50px 30px;
        margin-top: 202px;
	}
	.entry_border .form_title {
		top: -24px;
		font-size: 22px;
		line-height: 1.7;
		width: 155px;
		height: 40px;
	}
	.two-col {
		display: block;
	}
	.form-field {
		margin-bottom: 10px;
	}
	.form-row > label,
	.form-field > label {
		margin-bottom: 5px;
		font-size: 16px;
	}
  }

/* ▼▼▼▼▼▼▼▼▼▼ news ▼▼▼▼▼▼▼▼▼▼ */
#news .text_area_inner {
    padding: 0;
	line-height: 1.4;
}
.news_list {
	width: 82%;
    border-collapse: collapse;
    margin: 0 auto;
 }
 .news_list tr {
    display: flex;
    margin-bottom: 20px;
}
.news_list td {
	font-size: 18px;
	text-align: left;
	vertical-align: top;
}
.news_list .date,
.news_list .title {
	color: #f44336;
	font-weight: bold;
	white-space: nowrap;
}
.news_list .date{
	width:18%;
	font-family: "Zilla Slab", serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
	line-height: 1;
}
.news_list .title{
	width:20%;
}
.news_list .text,
.news_list .text a {
	color: #000;
	width: 60%;
}
@media (max-width: 599px){
	.news_list tr {
		display: block;
	}
	.news_list td {
		display: block;
	}
	.news_list .date {
		font-size: 16px;
		width: 100%;
	}
	.news_list .title {
		font-size: 16px;
		width: 100%;
	}
	.news_list .text {
		font-size: 14px;
		margin-bottom: 25px;
		width: 100%;
	}
}

/* ▼▼▼▼▼▼▼▼▼▼ お問い合わせ ▼▼▼▼▼▼▼▼▼▼ */
#contact:after {
	content:"";
	display:block;
    width: 100%;
    height: 63px;
    background: #2c6fdd;
}
.footer_contact {
    display: block;
}
.footer_contact:hover{
	top: -310px;
	transition: .3s;
}
.footer_contact img{
    width:395px;
	display: block;
    margin: 0 auto -62px;
}
.footer_contact a{
	display:block;
	width: 395px;
    height: 100%;
    margin: 0 auto;
}
@media (max-width: 599px){
	.footer_contact {
		top: -250px;
	}
	.footer_contact:hover{
		top: -250px;
	}
	.footer_contact img {
		width: 300px;
	}
}







/* ▼▼▼▼▼▼▼▼▼▼  ▼▼▼▼▼▼▼▼▼▼ */
/* ▲▲▲▲▲▲▲▲▲▲  ▲▲▲▲▲▲▲▲▲▲ */
/* ▼▼▼▼▼▼▼▼▼▼  ▼▼▼▼▼▼▼▼▼▼ */
/* ▲▲▲▲▲▲▲▲▲▲  ▲▲▲▲▲▲▲▲▲▲ */