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

/*===共通部分==============
====================================================================*/
html{
	font-size: 100%;
}
body{
	font-family: "Noto Serif JP", serif;
	font-weight: 400;
	color: #333;
	font-size: 16px;
	background: #fff;
	-webkit-font-smoothing: antialiased;/*アンチエイリアスを滑らかに*/
	-moz-osx-font-smoothing: grayscale;
	line-height: 1.9;
}
p{
	letter-spacing: 0.08em;
	margin: 5px 0;
}
h1,h2,h3,h4,h5,h6{
	font-weight: 500;
	line-height: 1.7;
}
a{
	text-decoration: none;
	color: #333;
	transition: .4s;
}
ul,ol{
	list-style: none;
	padding: 0;
}
svg{
	padding: 0;
	margin: 0;
	vertical-align: bottom;
	min-height: 0%;
}
img{
  	line-height: 1;
	vertical-align: top;
	max-width: 100%;
	transition: .4s;
	font-size: 0;
}
.img{
	min-height: 0%;
}
.img img{
	display: block;
	width: 100%;
}
.img a{
	display: block;
	width: 100%;
}
.img a:hover img{
	opacity: .8;
}
.logo img{
	pointer-events: none;
}

.inner{
	width: 96%;
	max-width: 1200px;
	margin: 0 auto;
}
.inner.wide{
	max-width: 1400px;
}
.inner.max{
	max-width: none;
}
.mg100{
	margin-bottom: 100px !important;
}
.mg80{
	margin-bottom: 80px !important;
}
.mg60{
	margin-bottom: 60px !important;
}
.mg50{
	margin-bottom: 50px !important;
}
.mg40{
	margin-bottom: 40px !important;
}
.mg30{
	margin-bottom: 30px !important;
}
.mg20{
	margin-bottom: 20px !important;
}
.mg15{
	margin-bottom: 15px !important;
}
.mg10{
	margin-bottom: 10px !important;
}
.mg5{
	margin-bottom: 5px !important;
}
.mg0{
	margin-bottom: 0 !important;
}



span.red{
	color: #f05742;
}
.overwrap{
	overflow: hidden;
}

/*----------タイトル--------------*/
.main_ttl {
	font-size: 2rem;
	letter-spacing: 0.2em;
	text-align: center;
	font-family: "Noto Sans JP", sans-serif;
	color: #1784d7;
/*
	background: linear-gradient(140deg, rgba(23,132,215,1) 0%, rgba(86,229,178,1) 54%, rgba(97,211,22,1) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
*/
}

.main_ttl span {
	display: block;
	color: #1784d7;
	font-size: 0.5em;
	text-transform: uppercase;
	background: linear-gradient(90deg, rgba(23,132,215,1) 40%, rgba(151,222,59,1) 60%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;

}



@media(max-width:460px){
	.main_ttl{
		font-size: 1.5rem;
	}
}


/*--------サブタイトル----------*/
.sub_ttl{
    padding:0 .4em .2em;
    border-bottom: 3px solid #1784d7;;
    color: #333333;
}



/*--------サブタイトル 1文字目を大きく----------*/

.sub_ttl2{
    margin-bottom: 0.2rem;
    background: linear-gradient(140deg, rgba(23,132,215,1) 0%, rgba(86,229,178,1) 51%, rgba(151,222,59,1) 100%);
    background-repeat: no-repeat;
    background-size: 50% 5%;
    background-position: bottom left;
    font-weight: 400;
	font-family: "Noto Serif JP", serif;
    font-size: 1.5rem;
	letter-spacing: 0.1em
}
.sub_ttl2:first-letter {
    color: #1784d7;
    font-size: 2.5rem;
	
}

.sub_ttl2_2{
    margin-bottom: 0.2rem;
    background: linear-gradient(140deg, rgba(23,132,215,1) 0%, rgba(86,229,178,1) 51%, rgba(151,222,59,1) 100%);
    background-repeat: no-repeat;
    background-size: 100% 5%;
    background-position: bottom left;
    font-weight: 400;
	font-family: "Noto Serif JP", serif;
    font-size: 1.5rem;
	letter-spacing: 0.1em
}
.sub_ttl2_2:first-letter {
    color: #1784d7;
    font-size: 2.5rem;
	
}

@media(max-width:768px){
	.sub_ttl2{
		font-size: 1.3rem;
		background-size: 100% 5%;
	}
	.sub_ttl2:first-letter {
		font-size: 1.8rem;
	}
}




.sub_ttl4{
	color: #333333;
	text-align: center;
	font-size: 1rem;
	font-weight: 800;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap:10px;
	padding: 10px;
	letter-spacing: 0.1em;
}
.sub_ttl4::before{
	content: "";
	width: 50px;
	height: 50px;
	background: url('../img/logo02.png');
	background-position: center;
    background-size: cover;
}


.sub_ttl5{
	display: inline-block;
	background: rgb(23,132,215);
    background: linear-gradient(140deg, rgba(23,132,215,1) 0%, rgba(58,196,177,1) 52%, rgba(159,228,69,1) 100%);
	-webkit-background-clip:text;
	-webkit-text-fill-color: transparent;
}


/*--------背景グラデ見出し----------*/
.grad_ttl{
	font-size: 1.2rem;
	position: relative;
	padding: 30px 10px;
	background: linear-gradient(90deg, rgba(0,139,200,1) 0%, rgba(0,88,151,1) 50%, rgba(29,32,135,1) 100%);
	color: #fff;
	text-align: center;
    margin: 50px 0;
	letter-spacing: 0.2em
}
@media(max-width:860px){
	.grad_ttl{
		font-size: 1rem;
	}
}
@media(max-width:450px){
	.grad_ttl{
		font-size: 0.9rem;
	}
}



.company{
	font-family: "Noto Serif JP", serif;
	font-size: 1.3rem;
	font-weight: 900;
	letter-spacing: 0.2em;
	color: #fff;
}
@media(max-width:450px){
	.company{
		font-size: 1.2rem;
		letter-spacing: 0.1em;
	}
}



.txt_left{
	text-align: left
}
.txt_right{
	text-align: right;
}


/*mtitle*/
.mtitle{
	position: relative;
    font-size: 1.3rem;
    line-height: 1.4;
	letter-spacing: 0.08em;
    background: linear-gradient(60deg, #04a4da 0%, #04a4da 85%, #1FC7FF 85.1%);
    padding: 14px 18px;
	color: #fff;
    margin-bottom: 20px;
}
/*ctitle*/
.ctitle{
	text-align: center;
	margin-bottom: 30px;
	font-size: 1.4rem;
	letter-spacing: 0.08em;
}
.ctitle::before{
	content: '';
	display: block;
	width: 52px;
	height: 23px;
	background: url(../img/ctitle_deco.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	margin: 0 auto 5px;
}
.ctitle.white{
	color: #fff;
}
.ctitle.white::before{
	background-image: url(../img/ctitle_deco_w.png);
}


.center{
	text-align: center;
}
.pc_center{
	text-align: center;
}
@media (max-width: 768px){
	.pc_center{
		text-align: left;
	}
}



.w960{
	max-width: 960px;
	margin: auto;
}




/*--------ボタン--------*/

.btn_box{
	width: 100%;
	margin: auto;
}

/* ボタンのスタイル */
.btn_grad {
	margin: auto;
	position: relative;
	display: block;
	width: 100%;
	max-width: 320px;
	height: 64px;
	padding: 2px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	text-align: center;
	overflow-wrap: anywhere;
	background: linear-gradient(140deg, rgba(7,120,205,1) 0%, rgba(58,196,177,1) 52%, rgba(159,228,69,1) 100%);
	border-radius: 32px; /* (buttonの高さ / 2) の値 */
}

.btn_grad::before {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	content: "";
	background: linear-gradient(140deg, rgba(7,120,205,1) 0%, rgba(58,196,177,1) 52%, rgba(159,228,69,1) 100%);
	filter: blur(8px);
	border-radius: 32px; /* (buttonの高さ / 2) の値 */
	opacity: 0;
}

.btn_grad_item {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: #333;
	background-color: #fff;
	border-radius: 32px; /* (buttonの高さ / 2) の値 */
	letter-spacing: 0.2em;
}
.btn_grad_item::after{
 /* くの字の表示設定 */
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20%;;
  width: 13px;    /* くの字を山なりに見た時、左側の長さ */
  height: 13px;   /* くの字を山なりに見た時、右側の長さ */
  border-top: 2px solid #666;     /* くの字を山なりに見た時、左側の太さと色 */
  border-right: 2px solid #666;   /* くの字を山なりに見た時、右側の太さと色 */
  transform: rotate(45deg);    /* くの字の向き */

}

@media (any-hover: hover) {
  .btn_grad::before {
    transition: opacity 0.2s;
    will-change: filter;
  }

  .btn_grad:hover::before {
    opacity: 1;
  }
}










.button {
	width: 250px;
	margin: auto;
}


.button-link {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #fff;
  transition: .3s;
}

.button-text {
	font-size: 1rem;
	font-family: "Yuji Syuku", serif;
}

.bg-throungh {
	padding: 10px;
	border: 1px solid #fff;
	color: #fff;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.bg-throungh::before {
	content: '';
	width: 100%;
	height: 100%;
	background-color: #111;
	position: absolute;
	left: -100%;
	top: 0;
	transition: .8s;
	z-index: -1;
}

.bg-throungh:hover::before {
  left: 100%;
}


.c_button {
	width: 350px;
}

.c_button-link {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #fff;
  transition: .3s;
}

.c_button-text {
	font-size: 1.2rem;
	font-family: "Yuji Syuku", serif;
	font-weight: 400;
}


.c_bg-throungh {
  padding: 10px;
  border: 2px solid #fff;
  color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.c_bg-throungh::before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #111;
  position: absolute;
  left: -100%;
  top: 0;
  transition: .8s;
  z-index: -1;
}






	

.btn-box{
	width: 100%;
	position: relative;
}

.btn {
	position: relative;
	margin: auto;
	display: block;
	width: 250px;
	height: 50px;
	line-height: 50px;
	font-size: 1rem;
	font-family: "Yuji Syuku", serif;
	text-decoration: none;
	color: #fff;
	text-align: center;
	cursor: pointer;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}

.btn:hover:before {
	content: "";
	height: 25px;
	width: 25px;
	position: absolute;
	top: 0;
	left: 0;
	border: 1px solid #fff;
	border-width: 1px 0 0 1px;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}

.btn:hover::after {
	content: "";
	height: 25px;
	width: 25px;
	position: absolute;
	top: 25px;
	left: 225px;
	border: 1px solid #fff;
	border-width: 0 1px 1px 0;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}

.btn:before {
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	border: 1px solid #fff;
	border-width: 1px 0 0 1px;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}

.btn:after {
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	border: 1px solid #fff;
	border-width: 0 1px 1px 0;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}

.btn_bk {
	position: relative;
	margin: auto;
	display: block;
	width: 250px;
	height: 50px;
	line-height: 50px;
	font-size: 1rem;
	font-family: "Yuji Syuku", serif;
	text-decoration: none;
	color: #111;
	text-align: center;
	cursor: pointer;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}

.btn_bk:hover:before {
	content: "";
	height: 25px;
	width: 25px;
	position: absolute;
	top: 0;
	left: 0;
	border: 1px solid #111;
	border-width: 1px 0 0 1px;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}

.btn_bk:hover::after {
	content: "";
	height: 25px;
	width: 25px;
	position: absolute;
	top: 25px;
	left: 225px;
	border: 1px solid #111;
	border-width: 0 1px 1px 0;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}

.btn_bk:before {
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	border: 1px solid #111;
	border-width: 1px 0 0 1px;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}

.btn_bk:after {
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	border: 1px solid #111;
	border-width: 0 1px 1px 0;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}



.btn2 {
  cursor: pointer;
  background-color: #000;
  width: 330px;
  height: 64px;
  line-height: 64px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  box-shadow: 0px 0px 17px 1px rgba(0, 0, 0, 0.34);
}
.btn2 span {
  color: #fff;
  display: block;
  padding-left: 35px;
  text-transform: uppercase;
  font: bold 18px/66px Arial;
font-family: "Yuji Syuku", serif;
  transform: scaleX(0.6);
  letter-spacing: 3px;
  transform-origin: center left;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}
.btn2 em {
  position: absolute;
  height: 1px;
  background: #fff;
  width: 47%;
  right: 23px;
  top: 50%;
  transform: scaleX(0.25);
  transform-origin: center right;
  transition: all 0.3s ease;
  z-index: 1;
}
.btn2:before,
.btn2:after {
  content: "";
  background: #fff;
  height: 50%;
  width: 0;
  position: absolute;
  transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.btn2:before {
  top: 0;
  left: 0;
  right: auto;
}
.btn2:after {
  bottom: 0;
  right: 0;
  left: auto;
}
.btn2:hover:before {
  width: 100%;
  right: 0;
  left: auto;
}
.btn2:hover:after {
  width: 100%;
  left: 0;
  right: auto;
}
.btn2:hover span {
  color: #000;
}
.btn2:hover em {
  background: #000;
  transform: scaleX(1);
}


.logo_btn{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 90%;
	margin: auto;
	padding: 20px;
	text-align:center;
	color: #ffffff;
	font-weight: 700;
	font-size: 1rem;
	letter-spacing: 0.2em;
	background: linear-gradient(45deg, rgba(0,139,200,1) 0%, rgba(0,88,151,1) 20%, rgba(29,32,135,1) 40%, rgba(29,32,135,1) 60%, rgba(0,88,151,1) 80%, rgba(0,139,200,1) 100%);
	background-position: 0% 50%;
	background-size: 200% auto;
	text-decoration: none;
	line-height: 1.3;
	transition: all 0.3s ease;
	box-shadow: 0px 2px 20px 0px rgba(2, 40, 49, 0.2);
	position: relative;
}

.logo_btn:hover{
    background-position: 100% 50%;
    transform: scale(0.97);
}

@media(max-width:450px){
	.logo_btn a{
		font-size: 0.8rem
	}
}


.grdBtn {
	display: block;
	width: 80%;
	margin: auto;
	padding: 10px 20px;
	text-align:center;
	color: #ffffff;
	font-weight: 700;
	font-size: 1rem;
	letter-spacing: 0.2em;
	background: linear-gradient(45deg, rgba(0,139,200,1) 0%, rgba(0,88,151,1) 20%, rgba(29,32,135,1) 40%, rgba(29,32,135,1) 60%, rgba(0,88,151,1) 80%, rgba(0,139,200,1) 100%);
	background-position: 0% 50%;
	background-size: 200% auto;
	text-decoration: none;
	line-height: 1.3;
	transition: all 0.3s ease;
	box-shadow: 0px 2px 20px 0px rgba(2, 40, 49, 0.2);
}
.grdBtn:hover{
    background-position: 100% 50%;
    transform: scale(0.97);
}



.bgleft:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background:#4ED790;
  width: 100%;
  height: 100%;
  transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}

.bgleft:hover:before{
  transform-origin:left top;
  transform:scale(1, 1);
}



.sbtn{
	max-width: 300px;
	margin: 0 auto;
}
.sbtn a{
	display: block;
	border: 1px solid #fff;
	text-align: center;
	width: 100%;
	padding: 15px 0;
	letter-spacing: 0.08em;
	font-size: 0.8rem;
	color: #fff;
	transition: all .5s ease;
	
}
.sbtn a:hover{
	background:#fff;
	color: #1784d7;
	border: 1px solid #fff;
}
.sbtn.white a{
	background:#fff;
	color: #000;
	border: 1px solid #000;
}
.sbtn.white a:hover{
	color: #fff;
	background: #000;
	border: 1px solid #fff;
}

.sbtn p{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 5px;
}
.sbtn p::before,
.sbtn p::after{
	content: '';
	background: #005897;
	height: 1px;
	flex-grow: 1;
	opacity: 0.5;
}
.sbtn p::before{
	margin-right: 1em;
}
.sbtn p::after{
	margin-left: 1em;
}

.sbtn.left{
	margin: 0 auto 0 0;
}
.sbtn.long a{
	width: 100%;
}
.m_contact a{
	min-width: 280px;
}

.sbtn2{
	max-width: 768px;
	margin: 0 auto;
	display: flex;
	justify-content: space-around;
}
.sbtn2 .sbtn{
	width: 48%;
}
.sbtn3{
	max-width: 960px;
	margin: 0 auto;
	display: flex;
	justify-content: space-around;
}
.sbtn3 .sbtn{
	width: 33%;
}
@media (max-width: 960px){
	.sbtn3{
		display: block;
	}
	.sbtn3 .sbtn{
		width: 100%;
	}
	.sbtn3 .sbtn:not(:last-child){
		margin-bottom: 10px;
	}
}
@media (max-width: 768px){
	.sbtn.left{
		margin: 0 auto;
	}
	.sbtn2{
		display: block;
	}
	.sbtn2 .sbtn{
		width: 100%;
	}
	.sbtn2 .sbtn:first-child{
		margin-bottom: 10px;
	}
}


/*テキストリンク*/
a.t_link{
	color: #d17baa;
	background-image: linear-gradient(to right, #d17baa, #d17baa);
	background-position: 0 100%;
	background-position: bottom left;
	background-size: 100% 1px;
    background-repeat: no-repeat;
	transition: 0.4s;
}
a.t_link:hover{
	opacity: 0.6;
    background-size: 0% 1px;
}


/*2行の基本Table*/
.info_table{
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
}
.info_table tr{
	border: 1px solid #ccc;
}
.info_table th,
.info_table td{
	padding: 15px 10px;
	letter-spacing: 0.08em;
}
.info_table th{
	background: #f5f5f5;
	width: 30%;
	border-right: 1px solid #ccc;
	font-weight: 500;
}
.info_table td{
	background: #fff;
	width: 70%;
	border-right: 1px solid #ccc;
	border-left: 1px solid #ccc;
}
@media (max-width: 768px){
	.info_table th,
	.info_table td{
		display: block;
		width: 90%;
		margin: auto;
		border: none;
		text-align: left;
	}
	.info_table tr{
		border: none;
	}
	
	.info_table{
		font-size: 0.9rem;
	}
}

/*ver2*/
.info_table02{
	width: 100%;
	table-layout: fixed;
	border-spacing: 0 6px;
}
.info_table02 tr{
}
.info_table02 tr:last-child{
	border-bottom: none !important;
}
.info_table02 th,
.info_table02 td{
	padding: 18px 0;
	letter-spacing: 0.08em;
	font-size: 0.95rem;
}
.info_table02 th{
	position: relative;
	background: #007766;
	width: 200px;
	font-weight: 500;
	color: #fff;
}
.info_table02 th::after{
    position: absolute;
    top: calc(50% - 10px);
    right: -8px;
    display: block;
    width: 0;
    height: 0;
    content: "";
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #007766;
}
.info_table02 td{
	padding-left: 20px;
	padding-right: 20px;
	background: #f8f8f8;
}
@media (max-width: 768px){
	.info_table02 tr{
		border-width: 4px;
	}
	.info_table02 th,
	.info_table02 td{
		padding: 18px 0;
		font-size: 0.9rem;
	}
	.info_table02 th{
		width: 120px;
	}
	.info_table02 td{
		padding-left: 20px;
		padding-right: 20px;
	}
}

.info_table03{
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
	border-bottom: 1px solid rgba(196,196,196,.43);
}
.info_table03 tr{
	border-top: 1px solid rgba(196,196,196,.43);
}
.info_table03 th,
.info_table03 td{
	padding: 40px 0;
	text-align: left;
	vertical-align: top;
	letter-spacing: 0.08em;
}
.info_table03 th{
	width: 20%;
	padding-left: 40px;
	font-weight: 500;
}
.info_table03 td{
	width: 80%;
	padding-left: 20px;
}
@media (max-width: 768px){
	.info_table03 th,
	.info_table03 td{
		padding: 40px 0;
	}
	.info_table03 th{
		width: 25%;
		padding-left: 20px;
	}
	.info_table03 td{
		width: 75%;
		padding-left: 20px;
	}
}
@media (max-width: 450px){
	.info_table03{
		font-size: 0.9rem;
		padding: 30px 0;
	}
	.info_table03 th{
		width: 30%;
		padding-left: 10px;
	}
	.info_table03 td{
		width: 70%;
		padding-left: 10px;
	}
}



/*list*/
ul.check_list li{
	border-bottom: 1px solid #ddd;
	margin-bottom: 5px;
	padding-left: 2px;
	letter-spacing: 0.08em;
}
ul.check_list li::before{
	font-family: "Font Awesome 6 Free";
	content: "\f058";
	font-weight: bold;
	display: inline-block;
	color: #1784d7;
	margin-right: .5em;
	font-size: 0.6rem;
	transform: translateY(-2px);
}
ul.check_list02 li{
	letter-spacing: 0.08em;
	margin-bottom: 5px;
}
ul.check_list02 li::before{
	font-family: "Font Awesome 6 Free";
	content: "\f14a";
	font-weight: bold;
	display: inline-block;
	color: #08A6A6;
	margin-right: .5em;
	font-size: .9em;
}
ul.check_list li:last-child,
ul.check_list02 li:last-child{
	margin-bottom: 0;
}
ul.check_list02.row{
	display: flex;
	flex-wrap: wrap;
}
ul.check_list02.row li{
	margin-right: 40px;
	margin-bottom: 10px;
}
@media (max-width: 768px){
	ul.check_list02.row{
		display: block;
	}
	ul.check_list02.row li{
		margin-right: 0;
	}
}

ul.check_list03{
	display: flex;
	flex-wrap: wrap;
}
ul.check_list03 li{
	width: 31%;
	letter-spacing: 0.08em;
	margin: 0 1%;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 2px dotted #f7b525;
}
ul.check_list03 li::before{
	font-family: "Font Awesome 6 Free";
	content: "\f14a";
	font-weight: bold;
	display: inline-block;
	color: #f7b525;
	margin-right: .5em;
	font-size: .9em;
}
@media (max-width: 960px){
	ul.check_list03{
		justify-content: space-between;
	}
	ul.check_list03 li{
		width: 48%;
		margin: 0 0 10px;
	}
}
@media (max-width: 768px){
	ul.check_list03 li{
		width: 100%;
	}
}


ul.dot_list li{
	letter-spacing: 0.08em;
	margin-bottom: 5px;
}
ul.dot_list li::before{
	content: '・';
	color: #08A6A6;
	margin-right: 5px;
}

ul.care_list li{
	letter-spacing: 0.08em;
	margin-bottom: 5px;
	font-size: 0.8rem;
}
ul.care_list li::before{
	content: '※';
	color: #f05742;
	font-weight: bold;
}

ul.text_list li{
	border-bottom: 1px solid #ddd;
	margin-bottom: 5px;
	padding-left: 2px;
	letter-spacing: 0.08em;
}

ul.single_list{
}
ul.single_list li{
	border-bottom: 1px solid rgba(170, 170, 170, 0.3);
	padding: 0 2px;
	padding-bottom: 6px;
	margin-bottom: 8px;
	font-size: 0.9rem;
}
ul.single_list li:last-child{
	margin-bottom: 0;
}
ul.single_list li::before{
	display: inline-block;
	font-family: "Font Awesome 5 Free";
	content: "\f105";
	font-weight: bold;
	margin-right: 6px;
	font-size: 0.6rem;
	transform: translateY(-2px);
	color: #08A6A6;
}
ul.single_list.non li::before{
	display: none;
}

/*===info_flexbox======*/
/*画像 + テキスト 通常のflex*/
.info_flexbox{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.info_flexbox .img{
	width: 48%;
}
.info_flexbox .text{
	width: 48%;
}
.f_center{
	align-items: center;
}
@media (max-width: 768px){
	.info_flexbox{
		flex-direction: column;
		gap:30px;
	}
	.info_flexbox.reverse{
		flex-direction: column-reverse;
	}
	.info_flexbox .img{
		width: 90%;
	}
	.info_flexbox .text{
		width: 100%;
		margin-top: 20px;
	}
}


/*画像 + テキスト 画像小さめのflex*/
.mini_flex{
	display: flex;
	justify-content: space-between;
}

.mini_flex .sbtn{
	width: 300px;
}
.mini_flex .sbtn a{
	padding: 15px 20px;
}

.mini_flex .img{
	width: 300px;
}
.mini_flex .text{
	width: calc(100% - 340px);
}
@media (max-width: 768px){
	.mini_flex{
		flex-direction: column;
	}
	.mini_flex.reverse{
		flex-direction: column-reverse;
	}
	.mini_flex .img{
		width: 100%;
	}
	.mini_flex .text{
		width: 100%;
	}
}

.t_flex{
	display: flex;
	justify-content: space-between;
}
.t_flex .text{
	width: 48.5%;
}
@media (max-width: 768px){
	.t_flex{
		display: block;
	}
	.t_flex .text{
		width: 100%;
	}
}


.img_wrap3{
	display: flex;
	justify-content: space-between;
}
.img_wrap3 .img{
	width: 32%;
}

.img_wrap2{
	display: flex;
	justify-content: space-between;
}
.img_wrap2 .img{
	width: 48%;
}

/*階段型*/
.stairs_img2{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
}
.stairs_img2 .img{
	width: 48%;
}
.stairs_img2 .img:nth-child(1){
	margin-top: 20px;
}

.stairs_img3{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
}
.stairs_img3 .img{
	width: 32%;
}
.stairs_img3 .img:nth-child(2){
	margin-top: 20px;
}
.stairs_img3 .img:nth-child(3){
	margin-top: 40px;
}
@media (max-width: 768px){
	.stairs_img3 .img{
		width: 90%;
		margin-bottom: 20px;
	}
	.stairs_img3 .img:nth-child(2){
		margin: 0 auto 20px auto;
	}
	.stairs_img3 .img:nth-child(3){
		margin: 0 0 0 auto;
	}
}



.text p{
	font-size:1rem;
}


/*===// 共通部分ここまで ===========*/






/*===ヘッダー==============================*/
.site_header{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	transition: 0.6s;
	padding: 10px 0;
}
.site_header .inner{
/*	background-color: rgba(36,133,203,0.79);*/
	max-width: none;
}

.sticky{
	position: sticky;
	top: 0;
	left:0;
	right:0;
	z-index: 100;
}

.site_header .flex{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 20px;
}

.site_header h1{
	width: 40%;
	transition: 0.6s;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 2.5rem;
	letter-spacing: 0.2em;
/*	background-image: url("../img/logo.png");*/
}
@media(max-width:1200px){
	.site_header h1{
		width: 40%;
	}
	
}

@media(max-width:768px){
	.site_header h1{
		font-size: 2rem;
	}
}
@media(max-width:460px){
	.site_header h1{
		font-size: 1.6rem;
	}
}


.logo{
	position: relative;
}
.logo_wh{

}
.logo_bk{
	opacity: 0;
	
}
.site_header h1 a{
	display: block;
	color: #fff;
	width: 100%;
}
.site_header h1 a img{
	display: block;
	width: 80%;
	transition: .4s;
}
.site_header h1 a:hover img{
	opacity: .6;
}

.site_header .info{
	width: 60%;
}
.site_header .tr{
	display: flex;
	justify-content: right;
	width: 100%;
/*	align-items: center;*/
/*	margin-bottom: 5px;*/
}
.site_header .tr .sbtn{
	margin: 0;
	margin-left: 20px;
	width: 25%;
}
.site_header .tr .sbtn a{
	padding: 10px 0;
	font-size: 1.2rem;
	font-weight: 900;
/*	width: 250px;*/
}

/*---------------ヘッダー変化----------------*/

.site_header.transform_header{
	width: 100%;
	background-color: rgba(23, 132, 215,0.9);
	padding: 15px 0;
}
@media(max-width:960px){
	.site_header.transform_header{
		padding: 10px 0;
	}
	.site_header h1{
		width: 80%;
	}
}



.site_header .transform_header h1 a{
	color:#fff;
}
.transform_header .global_nav{
	padding-bottom: 30px;
}
.transform_header .global_nav ul li a{
	color:#fff;
}

.transform_header .global_nav ul li a span{
	color:#fff;
}

.transform_header .global_nav ul li a::after{
	background: #fff;
}

.transform_header .sbtn a{
	color:#fff;
	border: 1px solid #fff;
}
.transform_header .sbtn a:hover{
	background: #fff;
	color: #1784d7;
}

/*global_nav*/
.global_nav{
	width: 75%;
	font-family: "Noto Serif JP", serif;
	padding-bottom:10px;
	padding-top: 10px;
}
.global_nav ul{
	margin: 0 0 0 auto;
	display: flex;
	justify-content: right;
	width: -moz-fit-content;
	width: fit-content;
}
.global_nav ul li{
	margin-left: 40px;
	transition: .4s;
	height: 0;
}
.global_nav ul li a{
	display: block;
	font-size: 1.2rem;
	line-height: 1;
	letter-spacing: 0.15em;
	text-align: center;
	color: #fff;
	font-weight: 500;
	position: relative;
}
.global_nav ul li a span{
	display: block;
	font-size: 0.8rem;
	color: #fff;
	letter-spacing: 0.1em;
	font-weight: 500;
	padding-bottom: 5px;
}
.global_nav ul li a::after{
	content: '';
	display: block;
	width: 0;
	height: 1px;
	background: #fff;
	margin: 5px auto;
	transition: all 0.2s ease-in;
}
.global_nav ul li:hover a::after{
	width: 50px;
}
@media (max-width: 1300px){
	.global_nav ul{
	
	}
	.global_nav ul li{
		margin-left: 20px;
	}
	.global_nav ul li a{
		font-size: 1rem;
	}
	.global_nav{
		width: 70%;
		padding-top: 15px;
	}
	.site_header .tr .sbtn{
		width: 30%;
	}
}
@media (max-width: 1060px){

	.site_header .info{
		display: none;
	}

}


/*---------装飾　背景-----------*/



.bg_world{
	background:url("../img/bg_world.jpg");
	width: 100%;
	aspect-ratio: 16 / 9;
	background-repeat: no-repeat;
	background-size: cover;
}
	
.bg02{
	background:url("../img/bg02.png");
	object-fit: cover;
	background-position: center;
	background-size: cover;

}

.bg03 {
	background:url("../img/bg03.png");
	object-fit: cover;
	background-position: center;
	background-size: cover;
}
.bg03_2 {
	background:url("../img/bg03_2.png");
	object-fit: cover;
	background-position: center;
	background-size: cover;
}
.bg00{
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: -1;
	top:60px;
}
.bg_gray{
	background: #f7f7f7;
}

.bg_white{
	background:rgba(255,255,255,0.5);
	padding: 50px;
}
.bg_white2{
	background:rgba(255,255,255,0.6);
	padding: 10px;
}

.text_white{
	color: #fff;
}
/*-----背景右下寄-----*/
.bg_right{
    width: 30%;
    height: 40%;
    position: absolute;
    right: 0;
    bottom: 5%;
	opacity: 0.3;
	z-index: -1;
}
/*-----背景左上寄-----*/
.bg_left{
	width: 30%;
    height: 40%;
    position: absolute;
    left: 0;
    top: 5%;
	opacity: 0.3;
	z-index: -1;
}
.sp_br{
	display: none;
}
.sp_none{
	display: contents;
}
@media(max-width:460px){
	.sp_br{
		display: block;
	}
	.sp_none{
		display: none;
	}
}


.sp_br2{
	display: none;
}
@media(max-width:580px){
	.sp_br2{
		display: block;
	}
}

/*------画像フィルター------*/

.img_filter {
	filter: brightness(50%) grayscale(50%);
}

/*-------流れる文字--------------- */
.flowimg::before, .flowimg::after {
	content: ".CO.,LTD. ";
	position: absolute;
	bottom: 35px;
	width: 100%;
	height: auto;
	font-size: 12rem;
	line-height: 1.0;
	text-align: center;
	white-space: nowrap;
	color: #fff;
	font-family: "Noto Serif JP", serif;
	font-weight: 600;
	opacity: 0.2;
	pointer-events: none;
	z-index: 1;
}
.flowimg::before {
  left: 0;
  animation: flowimg 35s linear infinite;
}
.flowimg::after {
  left: 3000px;
  animation: flowimg 35s linear infinite;
}
@keyframes flowimg {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-3000px);
  }
}
@media (max-width: 550px) {
  .flowimg::before, .flowimg::after {
    font-size: 5rem;
  }
  .flowimg::after {
    left: 1115px;
  }
  @keyframes flowimg {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-1115px);
    }
  }
}






/*-------------loading------------*/
.loading {
	position: fixed;
	width: 100%;
	height: 100%;
	/* 背景色の設定 */
	background-color: #333;
	z-index: 100;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	align-self: center;
}
.load_logo{
	width: 450px;
	text-align: center;
}

.load_logo img{
	width: 80%;
	margin: auto;
}

.loading p{
	font-family: "Noto Sans JP", sans-serif;
	font-size:1.5rem;
	display: block;
	text-align: center;
	padding-bottom: 50px;
}
	

/* HTML: <div class="loader"></div> */
.loader {
  width: fit-content;
  font-size: 40px;
  font-family: system-ui,sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  color: #0000;
  -webkit-text-stroke: 1px #000;
  --l:#0000 45%,#000 0 55%,#0000 0;
  --g:0/300% 100% no-repeat text;
  background: 
    linear-gradient(-60deg,var(--l)) var(--g),
    linear-gradient( 60deg,var(--l)) var(--g);
  animation: l7 4s linear infinite;
}
.loader:before {
  content: "Loading";
}
@keyframes l7 {
  0%  {background-position: 100%,0   }
  50% {background-position: 0   ,0   }
  to  {background-position: 0   ,100%}
}



/*---------アニメーション------------*/

/* ---テキストアニメ-- */
.eachTextAnime span{
	opacity: 0;
}
.eachTextAnime.appeartext span{ 
	display: inline-block;
	animation:text_anime_on 1s 3s ease forwards; 
	backface-visibility: hidden;
	perspective: 1000px;
}
@keyframes text_anime_on {
	0%,30% {
		transform: translateY(1.5rem) rotate(10deg);
		opacity:0;
	}
	to {
		transform: translateY(0rem) rotate(0deg);
		opacity:1;
	}
}

/*------フェードアップ-------*/
.fadeIn_up {
	opacity: 0;
	transform: translate(0, 50%);
	transition: 2s;
}
.fadeIn_up.is-show {
	transform: translate(0, 0);
	opacity: 1;
}



.slide_in_top_right{
	
}

.slide_in_top_right.is-show {
	animation:slide-top-right 1s linear both;
} 
@keyframes slide-top-right{
	0%
	{
		transform:translateY(300px) translateX(-300px);
		opacity: 0;
	}100%{
		transform:translateY(0) translateX(0);
		opacity: 1;
	}
}

.slide_in_top_left{
	
}


.slide_in_top_left.is-show {
	animation:slide-top-left 1s linear both;
} 
@keyframes slide-top-left{
	0%
	{
		transform:translateY(300px) translateX(300px);
		opacity: 0;
	}100%{
		transform:translateY(0) translateX(0);
		opacity: 1;
	}
}



.bg {
  animation:slide 3s ease-in-out infinite alternate;
  background-image: linear-gradient(-60deg, #000 50%, #222 50%);
  bottom:0;
  left:-50%;
  opacity:.5;
  position:fixed;
  right:-50%;
  top:0;
  z-index:-1;
}

.bg2 {
  animation-direction:alternate-reverse;
  animation-duration:4s;
}

.bg3 {
  animation-duration:5s;
}


@keyframes slide {
  0% {
    transform:translateX(-25%);
  }
  100% {
    transform:translateX(25%);
  }
}



.area{
    background: #000;  
    background: -webkit-linear-gradient(to left, #8f94fb, #4e54c8);  
    width: 100%;
    height:100%;
    
   
}

.circles{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
	opacity: 0.3;
}

.circles li{
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    animation: animate 25s linear infinite;
    bottom: -150px;
    
}

.circles li:nth-child(1){
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}


.circles li:nth-child(2){
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3){
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4){
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5){
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6){
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7){
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8){
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9){
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10){
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}



@keyframes animate {

    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}
	


/*-----------------swipe---------------------*/

.swipe{
	position: relative;
	overflow: hidden;
}
.swipe::after{
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	background: #1784d7;
	pointer-events: none;
	z-index: 1;
	transform: translateX(-100%);
	transition: 2s ease;
}
.swipe .swipe_in{
	opacity: 0;
	transition: opacity 1.4s, transform 1s;
	transition-delay: 0.6s;
	transform: scale(1.1) translate(-10px, 10px);
}
.swipe.inview::after{
	transform: translateX(101%);
}
.swipe.inview .swipe_in{
	opacity: 1;
	transform: scale(1) translate(0, 0);
}




.swipe1{
	position: relative;
	overflow: hidden;
}
.swipe1::after{
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50px;
	left: 0;
	background: #005897;
	pointer-events: none;
	z-index: 1;
	transform: translateX(-100%);
	transition: 2s ease;
}
.swipe1 .swipe_in{
	opacity: 0;
	transition: opacity 1.4s, transform 1s;
	transition-delay: 0.6s;
	transform: scale(1.1) translate(-10px, 10px);
}
.swipe1.inview::after{
	transform: translateX(101%);
}
.swipe1.inview .swipe_in{
	opacity: 1;
	transform: scale(1) translate(0, 0);
}


.swipe2{
	position: relative;
	overflow: hidden;
}
.swipe2::after{
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #1d2087;
	pointer-events: none;
	z-index: 1;
	transform: translateX(-100%);
	transition: 2s ease;
}
.swipe2 .swipe_in{
	opacity: 0;
	transition: opacity 1.4s, transform 1s;
	transition-delay: 0.6s;
	transform: scale(1.1) translate(-10px, 10px);
}
.swipe2.inview::after{
	transform: translateX(101%);
}
.swipe2.inview .swipe_in{
	opacity: 1;
	transform: scale(1) translate(0, 0);
}




/*-----スクロールダウンアニメーション------*/
/*=== 9-1-2 丸が動いてスクロールを促す ====*/

/*スクロールダウン全体の場所*/
.scrolldown{
    /*描画位置※位置は適宜調整してください*/
	position:absolute;
	bottom:10px;
	left:50%;
}
	

/*Scrollテキストの描写*/
.scrolldown span{
    /*描画位置*/
	position: absolute;
	left:10px;
	bottom:10px;
    /*テキストの形状*/
	color: #eee;
	font-size: 0.7rem;
	letter-spacing: 0.05em;
	/*縦書き設定*/
	-ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}
	

/* 丸の描写 */
.scrolldown:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom:0;
    left:-4px;
    /*丸の形状*/
	width:10px;
	height:10px;
	border-radius: 50%;
	background:#eee;
    /*丸の動き1.6秒かけて透過し、永遠にループ*/
	animation:
		circlemove 1.6s ease-in-out infinite,
		cirlemovehide 1.6s ease-out infinite;
}
	

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove{
      0%{bottom:45px;}
     100%{bottom:-5px;}
 }

/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide{
      0%{opacity:0}
     50%{opacity:1;}
    80%{opacity:0.9;}
	100%{opacity:0;}
 }

/* 線の描写 */
.scrolldown:after{
	content:"";
    /*描画位置*/
	position: absolute;
	bottom:0;
	left:0;
    /*線の形状*/
	width:2px;
	height: 50px;
	background:#eee;
}
/*--------FVスライダー使う場合--------------*/
.top_slider{
	position: relative;
	overflow: hidden;
}
.top_slider .slider{
}
.top_slider .slider li{
	width: 100%;
	height: 100vh;
	min-height: 400px;
	background-size: cover;
	background-position: center center;
}
.top_slider .slider li.top01{
	background-image: url(../img/top01.jpg);
}
.top_slider .slider li.top02{
	background-image: url(../img/top02.jpg);
}
.top_slider .slider li.top03{
	background-image: url(../img/top03.jpg);
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15); /* 拡大率 */
  }
}
.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}

/*----------キャッチ----------------*/
.top_slider .catch{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	pointer-events: none;
	text-align: center;
	z-index: 2;
	width: 100%;
	max-width: 900px;
	animation: apper 1.5s ease-in-out;
}
@keyframes apper {
	0% {
		opacity: 0;
	}
	50%{
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

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

.top_slider .catch h2{
	font-family: "Noto Sans JP", sans-serif;
	font-size: 4rem;
	letter-spacing: 0.2em;
	color: #fff;
	text-shadow: 0px 0px 10px rgba(23, 132, 215, 1), 5px 5px 10px rgba(23, 132, 215, 1);
}
@media (max-width: 768px){
	.top_slider .catch h2{
		font-size: 3rem;
	}
}
@media (max-width: 460px){
	.top_slider .catch h2{
		font-size: 2.2rem;
	}
}
.pd20{
	padding: 20px;
}

/*===TOPメイン==============================*/
main{
	display: block;
	position: relative;
}
main section{
	padding: 50px 0;
	position: relative;
	z-index: 1;
	overflow: hidden;
}
@media (max-width: 768px){
	main section{
		padding: 30px 0;
	}
}

.inner.white{
	background-color: #fff;
	padding: 40px;
	border-radius: 10px;
}
	
@media (max-width: 768px){
	.inner.white{
		padding: 40px 20px;
	}
}

.info_wrap{
	background-color: #fff;
	padding: 40px 30px;
	border-radius: 10px;
}
@media (max-width: 768px){
	.info_wrap{
		padding: 30px 15px;
	}
}

.shadow{
	text-shadow: 5px 4px 3px rgba(36, 133, 203, 0.8);
}
.u_line{
	background: linear-gradient(transparent 60%, #bfbfbf 60%);
}

/*-------TOP 新着情報--------------------------*/
.news_area{
	padding: 50px 0;
}


/*-------TOP ごあいさつ--------------------------*/


.img_box{
	width: 50%;
	position: relative;
	opacity: 0;
	transition: 2.5s;
}
.img_box img{
	transform: scale(1.2);
    transition: 2.5s;
}
.img_box.inview{
	opacity: 1;
}
.img_box.inview img{
	transform: scale(1);
}
.img_box:after{
    position: absolute;
	width: 100%;
	height: 100%;
	content: "";
    top: 20px;
    left: -20px;
    background: rgba(23,132,215,1);
    z-index: -1;
}




@media(max-width:768px){
	.img_box{
		width: 100%;
	}
	
}




/*-------TOP 事業内容----------------------*/

.t_service{
	padding: 0;
	margin: 50px 0;
}

/*-------TOP 技能実習制度って？----------------------*/
.t_training{
	
	
}

/*-------TOP 受け入れ対応国----------------------*/

.t_receiving{
	background: #f7f7f7;
	padding: 50px 0;
}

.country_bg{
	width: 100%;
	min-height: 500px;
	background: url("../img/bg01.png");
	background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
	
}
.country_grid {
	display: grid;
	gap: 30px;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.country_item {
	padding: 15px;
	text-align: center;
}


.country_item p{
	font-size: 1.2rem;
	font-weight: 600;
}

@media(max-width:768px){
	.country_grid{
		gap:10px;
		
	}    
}
@media(max-width:460px){
	.country_grid{
		grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
		gap:0;
	}	
}


/*===フッター==============================*/
.footer_top{
	position: relative;
	z-index: 1;
	background: url(../img/footer.jpg);
/*    vertical-align:middle;*/
    object-fit: cover;
	background-size: cover;
	background-position: center;
	padding: 100px 0;
	text-align: center;
	color: #fff;
	background-attachment: fixed;
}
/*Safariのみ*/
::-webkit-full-page-media, :future, :root .footer_top{
	background-attachment: scroll;
}
.footer_top::after{
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.5);
	pointer-events: none;
	z-index:-1;
}




.footer_top .main_ttl{
	color: #fff;
}
.footer_top .main_ttl span{
	color: #fff;
	background: #fff;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;

}


.footer_top .text{
	text-align: center;
}
.footer_top .text p{
	color: #fff;
}


.footer_top .sbtn a{
	font-size: 1rem;
	letter-spacing: 0.2em;
	font-weight: 500;
}


.transform .inner .main_ttl::before{
	color: #fff;
}
.footer_middle{
	text-align: center;
	padding: 10px 0;
	background-color: #1784d7;
	border-bottom: 1px solid #fff;
}
.footer_middle p{
	color: #fff;
}
.footer_middle h3{
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.2rem;
	letter-spacing: 0.2em;
	font-weight: 600;
	color: #fff;
}

.copyright{
	text-align: center;
	padding: 10px 0;
	color: #fff;
	letter-spacing: 0.08em;
	background-color: #1784d7;
}





/*トップに戻る*/
.page_top{
	opacity: 0;
	pointer-events: none;
  	width: 60px;
	aspect-ratio: 1 / 1;
  	position: fixed;
  	right: 3%;
  	bottom: 4%;
	border-radius: 50%;
	transition: 1s;
	background: #1784d7;
  	z-index: 50;
}
.page_top a{
	display: block;
	position: relative;
	z-index: 10;
  	width: 100%;
	height: 100%;
	border-radius: 50%;
	
}
.page_top a i{
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
  	font-weight: 900;
  	font-size: 10px;
  	color: #fff;
}
.page_top.is_animation{
	opacity: 1;
	pointer-events: all;
}
.page_top.is_animation:hover{
	transform: translateY(-5px);
}
@media (max-width: 768px){
	.page_top{
		width: 45px;
		height: 45px;
		right: 10px;
		bottom: 10px;
	}
}





/*=================================*/
/*===下層ページ===============================================================*/
/*下層トップ*/
.kasou_top{
	position: relative;
	z-index: 1;
	background: url("../img/kasou_top.jpg");
	background-size: cover;
	background-position: center;
	width: 100%;
	padding: 130px 0;
	padding: 180px 0 100px;
}

.kasou_about{
	position: relative;
	z-index: 1;
	background: url("../img/kasou_about.jpg");
	background-size: cover;
	background-position: center;
	width: 100%;
	padding: 130px 0;
	padding: 180px 0 100px;
}
.kasou_contact{
	position: relative;
	z-index: 1;
	background: url("../img/kasou_contact.jpg");
	background-size: cover;
	background-position: center;
	width: 100%;
	padding: 130px 0;
	padding: 180px 0 100px;
}

.kasou_top::before{
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #000;
    opacity: 0.3;
	pointer-events: none;
	z-index:-1;
}
/*ドットテクスチャ*/
.kasou_top::after{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: url(img/pattern-01.png);
	background-repeat: repeat;
	background-size: 2px 2px;
	opacity: 0.5;
	z-index: 1;
}
@media (max-width: 450px){
	.kasou_top::after{
		background-size: 1px 1px;
		opacity: 0.5;
	}
}
.kasou_top h2{
	position: relative;
	font-family: "ta-fuga-fude", sans-serif;
	z-index: 3;
	text-align: center;
	font-size: 2.2rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	color: #fff;
	margin-bottom: 8px;
}
@media (max-width: 768px){
	.kasou_top{
		padding: 150px 0 100px;
	}
	.kasou_top h2{
		font-size: 1.9rem;
	}
}


/*パンくず*/
.breadcrumb{
	position: relative;
	z-index: 3;
	font-size: 11px;
	color: #fff;
	text-align: center;
	letter-spacing: 0.05em;
	padding: 0;
}
.breadcrumb li {
	display: inline;
	list-style: none;
}
.breadcrumb li:after {
	content: '>';
	padding: 0 0.2em;
	vertical-align: top;
}
.breadcrumb li:last-child:after {
	display: none;
}
.breadcrumb li a {
	text-decoration: none;
	color: #fff;
}
.breadcrumb li:first-child a::before{
	font-family: "Font Awesome 6 Free";
	content: '\f015';
	font-weight: bold;
}
.breadcrumb li a:hover{
	opacity: 0.7;
}


/*--------事業内容----------------------*/
.s_img{
	width: 48%;
	overflow: hidden;
}
.s_img img{
	width: 100%;
	transform: scale(1.1);
	transition: 2.5s;
}

.s_img.inview img{
	transform: scale(1);
}

.info_flexbox .s_flex{
	width: 50%;
	display: flex;
	gap:30px;
}
.info_flexbox .s_flex .s_img:nth-child(2){
	padding-top: 50px;
}


@media(max-width:768px){
	.s_img{
		width: 80%;
	}
	.info_flexbox .s_flex{
		width: 80%;
	}
}


.s_gallery{
	padding: 50px 0;
	background: #f7f7f7;
}

.merit .text{
	width: 45%;
}
@media(max-width:768px){
	.merit .text{
		width: 90%;
	}
	
}

/*--------ギャラリーCMS-------------*/
img{
	border:0;
}

#gallery_wrap {
	width:100%;
	padding-top: 20px;
	padding-bottom: 30px;
	color: #4c392c;
}
#gallery_list { 
	display:flex; 
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
}
#gallery_list li{
	width:calc(100% / 4 - 20px);
	margin:10px;
	padding:10px;
	font-size:0.9em;
	line-height: 180%;
}
#gallery_list a.photo{
	display:block;
	width:100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	margin:0 auto 10px;
}
#gallery_list a.photo img{
	width: 100%;
	height: 100%;
	transform: scale(1.0);
	background: #fff;
	object-fit: cover;
	transition: .5s;
}
#gallery_list a.photo:hover img{
	transform: scale(1.2);
}
#gallery_list .detail_text{
	font-size: 0.9rem;
	padding: 0.5em;
    font-weight: 400;
}


/*--------技能実習制度----------------------*/


.table1 .training_table{
	max-width: 750px;
	margin: auto;
}


.table1 .sub_ttl , .table2 .sub_ttl{
	max-width: 460px;
}
.training_table{
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
}
.training_table tr{
	border: 1px solid #ccc;
}
.training_table th,
.training_table td{
	padding: 15px 10px;
	letter-spacing: 0.08em;
}
.training_table th{
	background: #f5f5f5;
	width: 30%;
	border-right: 1px solid #ccc;
	font-weight: 500;
}
.training_table td{
	background: #fff;
	width: 70%;
	border-right: 1px solid #ccc;
	border-left: 1px solid #ccc;
}


@media(max-width:460px){
	.training_table td{
		font-size: 0.8rem;
	}
}

.flow_img{
	width: 100%;
	overflow: hidden;
}
.flow_img img{
	width: 100%;
	transform: scale(1.1);
	transition: 2.5s;
}

.flow_img.inview img{
	transform: scale(1);
}


.job_grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.job_item {
  background: #c0e9f9;
  padding: 15px;
  text-align: center;
}
.job_item img {
	max-width: 100%;
	height: auto;
	object-fit: contain;
	aspect-ratio: 4 / 3;
}
.job_item p {
  text-align: center;
}


/*--------組合概要----------------------*/



/*---------------------------------
	      Pager style
---------------------------------*/
.pager_link{
	text-align:right;
	padding:10px;
}
/*ページャーボタン*/
.pager_link a {
    border: 1px solid #4c392c;
    color: #4c392c;
    font-size: 12px;
    padding: 3px 7px 2px;
    text-decoration: none;
	margin:0 1px;
}
/*現在のページ、オーバーボタン*/
.pager_link a.current,.pager_link a:hover{
    background: #4c392c;
    color: #fff;
}
.overPagerPattern{
	padding:0 2px ;	
}

@media (max-width: 959px){
	#gallery_list li{
		width:calc(100% / 3 - 20px);
	}
}
@media (max-width: 750px){
	#gallery_list li{
		width:calc(100% / 2 - 20px);
	}
}
@media (max-width: 450px){
	#gallery_list{
		flex-direction: column;
		justify-content: center;
		width: calc(100% - 20px);
		max-width: 450px;
		margin: auto;
	}
	#gallery_list li{
		width:calc(100% - 20px);
	}
}


/*--------事業内容----------------------*/






/*===お問い合わせページ==============================*/
.contact .tel_contact{
	text-align: center;
	
	padding: 10px 0;
	margin: 0 auto;
	max-width: 600px;
}
.contact .tel_contact a{
	display: inline-block;
	font-size: 2.4rem;
	white-space: nowrap;
}
.contact .tel_contact a:hover{
	opacity: 0.6;
}
.contact .tel_contact p{
	font-size: .8rem;
}
.tel_contact i{
	color: #005897;
	padding-left: 10px;
}

.contact_flexbox{
	display: flex;
	justify-content: space-around;
	width: 80%;
	margin: auto;
	border-top: 2px solid;
	border-bottom: 2px solid;
	border-image: linear-gradient(to right, #008bc8 0%, #005897 50%, #1d2087 100%) 1;
}
@media (max-width: 768px){
	.contact_flexbox{
		flex-direction: column;
		gap:50px;
	}
	.contact .tel_contact a{
		font-size: 2rem;
	}
}

/*メールフォーム*/
.mailform{
	margin: 0 auto;
	max-width: 960px;
}
.mailform .row{
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
}
.mailform .row:not(.last){
	border-bottom: 1px dotted #cccccc;
}
.mailform .row div:nth-child(1){
	width: 28%;
	letter-spacing: 0.08em;
	font-size: 0.9rem;
}
.mailform .row div:nth-child(2){
	width: 70%;
	line-height: 1.5;
}
.mailform .row span{
	padding: 5px;
	margin-right: 5px;
	font-size: 11px;
	border-radius: 2px;
	vertical-align: middle;
}
.mailform .row span.hissu{
	color: #fff;
	background: linear-gradient(90deg, rgba(0,139,200,1) 0%, rgba(0,88,151,1) 50%, rgba(29,32,135,1) 100%);
}
.mailform .row span.ninni{
	border: 1px solid #1d2087;
	color: #1d2087
/*	background: linear-gradient(90deg, rgba(0,139,200,1) 0%, rgba(0,88,151,1) 50%, rgba(29,32,135,1) 100%);*/

}
.mailform .row small{
	display: block;
	margin-top: 3px;
}
.mailform .box, .mailform textarea{
	border: 1px solid #ddd;
  	padding: 5px;
  	width: 100% !important;
  	border-radius: 0;
	-webkit-appearance: none;
	margin-bottom: 5px;
	background: #fff;
}
.mailform .box.mini{
	width: 120px !important;
}
.mailform .postal_btn{
	padding: 2px 10px;
	background: #f4f4f4;
	border-radius: 2px;
	margin-left: 5px;
	border: 1px solid #ccc;
}
.mailform .postal_btn:hover{
	opacity: 0.7;
}
.mailform button{
	display: block;
	text-align: center;
	transition: .6s;
	font-size: 1rem;
	padding: 8px 5px;
	margin: 0 auto;
	width: 250px;
	background: linear-gradient(90deg, rgba(0,139,200,1) 0%, rgba(0,88,151,1) 50%, rgba(29,32,135,1) 100%);
/*	border: 1px solid #1d2087;*/
	border-radius: 25px;
	color: #fff;
}
.mailform button:hover{
	background: #fff;
	color: #1d2087;
	border: 1px solid #1d2087;
}
.mailform button::before{
	font-family: "Font Awesome 6 Free";
	content: "\f0e0";
	font-weight: 700;
	margin-right: 10px;
}

@media (max-width: 768px){
	.mailform .row{
		padding: 20px 0;
		flex-direction: column;
	}
	.mailform .row div:nth-child(1){
		width: 100%;
		margin-bottom: 20px;
	}
	.mailform .row div:nth-child(2){
		width: 100%;
	}
}

/*チェックボックス*/
input[type=checkbox] {
    display: none;
}
input[type=checkbox] + label{
    display: inline-block;
	padding-left: 20px;
	position:relative;
	margin-right: 20px;
	margin-bottom: 10px;
	cursor: pointer;
}
input[type=checkbox] + label::before{
    background: #fff;
    border: 1px solid #999;
    content: '';
    display: block;
	position: absolute;
	top: 55%;
	transform: translate(0,-50%);
  	left: 0;
    width: 15px;
  	height: 15px;
	border-radius: 3px;
}
input[type=checkbox] + label::after{
    border-right: 3px solid #005897;
    border-bottom: 3px solid #005897;
    content: '';
    display: block;
    height: 15px;
    left: 8px;
    margin-top: -7px;
    opacity: 0;
    position: absolute;
    top: 36%;
    width: 5px;
	transform: rotate(45deg) translate3d(0,2px,0) scale3d(.7,.7,1);
	transition: transform .2s ease-in-out, opacity .2s ease-in-out;
}
input[type=checkbox]:checked + label::after{
    opacity: 1;
	transform: rotate(45deg) scale3d(1,1,1);
}
@media (max-width: 768px){
	input[type=checkbox] + label{
		display: block;
	}
}

/*ラジオボタン*/
input[type=radio]{
	display: none;
}
input[type=radio] + label{
    display: inline-block;
	padding-left: 20px;
	position:relative;
	margin-right: 20px;
	margin-bottom: 10px;
	cursor: pointer;
}
input[type=radio] + label::before {
	content: "";
	display: block;
	position: absolute;
	top: 55%;
	transform: translate(0,-50%);
  	left: 0;
    width: 15px;
  	height: 15px;
	background: #f4f4f4;
	border-radius: 100%;
	border: 1px solid #b4b4b4;
	cursor: pointer;
	text-align: center;
	transition: all 250ms ease;
}
input[type=radio]:checked + label::before {
	background-color: #dd7e52;
	box-shadow: inset 0 0 0 2px #f4f4f4;
}
input[type=radio]:focus + label::before{
	outline: none;
	border-color: #dd7e52;
}
input[type=radio]:disabled + label::before {
	box-shadow: inset 0 0 0 2px #f4f4f4;
	border-color: #b4b4b4;
	background: #b4b4b4;
}
input[type=radio] + label:empty::before{
	margin-right: 0;
}
@media (max-width: 768px){
	input[type=radio] + label{
		display: block;
	}
}


.contact_info ul li{
	margin-bottom: 5px;
	text-align: center;
	font-size: 0.9rem;
}

/*プライバシーポリシー*/
.privacy{
}
.privacy li{
}
.privacy li .privacy_wrap{
	
}
.privacy li .privacy_wrap .privacy_subject{
	text-align: center;
	cursor: pointer;
	width: -moz-fit-content;
	width: fit-content;
	margin: 0 auto;
	text-decoration: underline;
	font-size: 0.9rem;
	letter-spacing: 0.1em;
}
.privacy li .privacy_wrap .privacy_subject:hover{
	text-decoration: none;
}
.privacy li .privacy_wrap .privacy_subject.area_close{
}

/*アコーディオンで現れるエリア*/
.privacy li .privacy_wrap .privacy_box{
	position: relative;
	display: none;/*はじめは非表示*/
	padding: 20px;
	background-color: #e6e6e6;
}

.privacy_flame{
	height: 250px;
	overflow-y: scroll;
}
.privacy_flame p{
	padding: 10px;
	font-size: 0.8rem;
}
.privacy_flame p span{
	display: block;
	color: #005897;
	font-size: 0.9rem;
}
.privacy_flame p span::before{
	content: "■";
	display: inline-block;
	font-size: 0.6rem;
	margin-right: 0.5em;
	transform: translateY(-2.5px);
}
.privacy_flame ul li{
	font-size: 0.8rem;
}

/*スクロールバー*/
.privacy_flame::-webkit-scrollbar{
    overflow: hidden;
    width: 1px;
    background: #fafafa;
}
.privacy_flame::-webkit-scrollbar-button {
    display: none;
}
.privacy_flame::-webkit-scrollbar-thumb, .privacy_flame::-webkit-scrollbar-corner {
    background: #433c2e;
}

/*===サンクスページ===*/
.thanks .inner .small p{
	font-size: 0.8rem;
}
.thanks .sbtn a{
	margin-bottom: 20px;
}

/*===倉庫==============================*/
@media (max-width: 960px){
}
@media (max-width: 768px){
}
@media (max-width: 450px){
}




/*---------追加更新　12/09-----------*/


.regu{
	padding-top: 0;
	padding-bottom: 100px;
}

.regu .inner{
	background-color: #f5f5f5;
	padding: 70px 0;
}

.regu .btn_area{
	display: flex;
	justify-content: center;
}

.regu .btn_area .r_btn{
	width: 320px;
}
.regu .btn_area .r_btn a{
	display: block;
	background-color: #cfe7ef;
	padding: 20px 0;
	text-align: center;
	letter-spacing: 0.03em;
	font-weight: 600;
}
.regu .btn_area .r_btn+.r_btn{
	margin-left: 10px;
}

.regu .btn_area .r_btn a:hover{
	background-color: #008bc8;
}

@media (max-width: 768px){
	.regu .btn_area{
		flex-direction: column;
		align-items: center;
	}
	.regu .btn_area .r_btn+.r_btn{
		margin: 0;
		margin-top: 10px;
	}
	.regu .inner{
		padding: 40px 0;
	}
	.regu{
		padding-bottom: 50px;
	}
}