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

/*------------------共通部分----------------------*/
:root{
	--main_color: #224391;
  	--sub_color: #00B88A;
	--font: "Shippori Mincho", serif;
	--bg_color: #fff;
  	--text_color: #333;
    --section_space: clamp(40px, 5vw, 100px);
}
html{
	box-sizing: border-box;
	font-size: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: 120px;
	text-size-adjust: 100%;
}
*, *::before, *::after {
	box-sizing: inherit;
}
body{
	font-family: var(--font);
	font-weight: 500;
	color: var(--text_color);
	font-size: clamp(14px, 2vw, 20px);
	background: var(--bg_color);
	-webkit-font-smoothing: antialiased;/*アンチエイリアスを滑らかに*/
	-moz-osx-font-smoothing: grayscale;
	line-height: 1.9;
}
@media (prefers-color-scheme: dark) {/*OSのダークモードに対応*/
  :root {
    --bg-color: #121212;
    --text-color: #f1f1f1;
  }
}


p{
	font-size: 1rem;
	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;
}
.mg50{
	margin-bottom: 50px !important;
}
.mg30{
	margin-bottom: 30px !important;
}
.mg20{
	margin-bottom: 20px !important;
}
.mg10{
	margin-bottom: 10px !important;
}

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



/*---------メインタイトル--------------*/
.main_ttl {
	font-size: 3rem;
	letter-spacing: 0.1em;
	text-align: center;
	color: var(--main_color);
	font-weight: 500;
    position: relative;
}

.main_ttl::before {
    position: absolute;
    bottom: -10px;
    left: calc(50% - 30px);
    width: 60px;
    height: 3px;
    content: '';
    background: var(--sub_color);
}

.main_ttl span {
	display: block;
	color: #333;
	font-size: 1.5rem;
}

@media(max-width:768px){
	.main_ttl{
		font-size: 2.5rem;
		letter-spacing:0.15em;
	}
}

@media(max-width:550px){
	.main_ttl{
		font-size: 2rem;
		letter-spacing:0.15em;
	}
	.main_ttl span{
		font-size: 1.2rem;
	}
}


/*--------サブタイトル----------*/

.sub_ttl {
    margin: 1.4em 0;
    padding: 0.3em 0 0.3em 0.5em;
    border: 1px solid #333;
    box-shadow: 12px 8px var(--main_color);
    text-align: center;
    font-size: clamp(1rem, 0.7rem + 1.2vw, 1.6rem);
    letter-spacing: 0.15em;
    background: #fff;
}


.sub_ttl2 {
	font-size: clamp(1rem, 0.85rem + 0.6vw, 1.3rem);
    position:relative;
    border-bottom:solid 5px #ddd;
}

.sub_ttl2::after{
    position:absolute;
    content:"";
    display:block;
    border-bottom:solid 5px var(--sub_color);
    bottom:-5px;
    width:20%;
}
.txt_left{
	text-align: left
}
.txt_right{
	text-align: right;
}
.center{
	text-align: center;
}
.pc_center{
	text-align: center;
}
@media (max-width: 768px){
	.pc_center{
		text-align: left;
	}
}

.w960{
	max-width: 960px;
	margin: auto;
}
/*--------画面遷移---------*/

.transition {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: #0e1928; /* ブランドカラーにすると◎ */
  z-index: 9999;
  pointer-events: none;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.6s ease;
}


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

.btn01 a {
    display: flex;
    justify-content: flex-start;
    gap:10px;
    align-items: center;
    position: relative;
    margin: 0 auto;
    padding: 0.5em 1em;
    width: 300px;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    background-color: var(--main_color);
    transition: 0.3s;
}

.btn01 a::before {
  content: '';
  position: absolute;
  bottom: -7px;
  right: -7px;
  width: 100%;
  height: 2px;
  background-color: var(--main_color);
  transition: 0.2s ease 0s;
}

.btn01 a::after {
  content: '';
  position: absolute;
  top: 7px;
  right: -7px;
  width: 2px;
  height: 100%;
  background-color: var(--main_color);
  transition: 0.2s ease 0.2s;
}

.btn01 a:hover::before {
  width: 0%;
}

.btn01 a:hover::after {
  height: 0%;
}

.btn01 a:hover {
  text-decoration: none;
  background-color: var(--sub_color);
}




/*---------インスタアイコンボタン--------*/
.insta_btn {
	color: #fff;/*文字・アイコン色*/
	border-radius: 100%;
	position: relative;
	display: block;
	height: 45px;
	width: 45px;
	font-size: 1rem;
	text-align: center;
	padding-top: 9px;/*上側との余白*/
	box-sizing: border-box;
	border: 1px solid #333;
	overflow: hidden;
	text-decoration:none;
	transition: all .5s ease;
	margin-left: 10px;

}
.insta_btn i{
	font-size: 1.5rem;
	transition: all .5s ease;
	color:#333;
}

.insta_btn:hover{
	background: #fff;
	color: #333;
	border: 1px solid #fff;
}
.insta_btn:hover.insta_btn i{
	color: #333;
}




.sp_btn {
	color: #fff;/*文字・アイコン色*/
	border-radius: 100%;
    position: absolute;
    top: 20px;
    right: 80px;
	height: 40px;
	width: 40px;
	font-size: 1rem;
	text-align: center;
	padding-top: 9px;/*上側との余白*/
	box-sizing: border-box;
	border: 1px solid #fff;
	overflow: hidden;
	text-decoration:none;
	transition: all .5s ease;
	margin-left: 10px;
    display: none;

}
.sp_btn i{
	font-size: 1.2rem;
	transition: all .5s ease;
	color:#fff;
    position: relative;
    top: -5px;
}

.sp_btn:hover{
	background: #fff;
	color: #333;
	border: 1px solid #fff;
}
.sp_btn:hover.sp_btn i{
	color: #333;
}

@media(max-width:960px){
    .sp_btn{
        display: block;
    }
}
@media(max-width:550px){
    .sp_btn{
        top:17px;
        right: 65px;
    }
}


.sbtn{
	width: 300px;
	margin: 0 auto;
}
.sbtn a{
	display: block;
	border:1px solid #fff;
	text-align: center;
    color:#fff;
	width: 100%;
	padding: 15px 0;
	letter-spacing: 0.15em;
	font-size: 0.9rem;
	transition: all .5s ease;
	
}
.sbtn a:hover{
	color: #fff;
	background: #00B88A;
	border: 1px solid #00B88A;
}
.sbtn.wh a{
	background:#fff;
	color: #333;
	border: 1px solid #333;
}
.sbtn.wh a:hover{
	color: #fff;
	background: #000;
	border: 1px solid #fff;
}
.sbtn.bk a{
	background:#333;
	color: #fff;
	border: 1px solid #333;
}
.sbtn.bk a:hover{
	color: #333;
	background: #fff;
	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: #224391;
	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;
}


/*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: #224391;
	color: #fff;
	width: 30%;
	border-right: 1px solid #ccc;
	font-weight: 500;
}
.info_table td{
	background: #f8f8f8;
	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: #626262;
	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 #626262;
}
.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: var(--sub_color);
	margin-right: .5em;
	font-size: 1rem;
	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: #333;
	margin-right: .5em;
	font-size: 1rem;;
}
ul.check_list02_wh li{
	letter-spacing: 0.08em;
	margin-bottom: 5px;
}
ul.check_list02_wh li::before{
	font-family: "Font Awesome 6 Free";
	content: "\f14a";
	font-weight: bold;
	display: inline-block;
	color: #fff;
	margin-right: .5em;
	font-size: 1rem;;
}



ul.check_list li:last-child,
ul.check_list02 li:last-child,
ul.check_list02_wh li:last-child{
	margin-bottom: 0;
}
ul.check_list02.row,
ul.check_list02_wh.row{
	display: flex;
	flex-wrap: wrap;
}
ul.check_list02.row li,
ul.check_list02_wh.row li{
	margin-right: 40px;
	margin-bottom: 10px;
}
@media (max-width: 768px){
	ul.check_list02.row,
	ul.check_list02_wh.row{
		display: block;
	}
	ul.check_list02.row li,
	ul.check_list02_wh.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 6 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-around;
	align-items: center;
	position: relative;
}
.info_flexbox .img{
	width: 48%;
}
.info_flexbox .text{
	width: 48%;
}

@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;
	}
}

/*階段型*/
.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;
	}
}

.map {
  position: relative;
  aspect-ratio: 16 / 9; 
  width: 100%;
  overflow: hidden;
  border:none;
}

.map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.text{
    width: 95%;
    margin: auto;
}


/*------------共通部分end-----------------*/






/*===ヘッダー==============================*/
.site_header{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	transition: 0.6s;
	padding: 15px 0;
    backdrop-filter: blur(10px);
    background: rgba(34, 67, 145, 0.6);
    border-bottom: 1px solid rgba(200, 200, 200, 0.3);
}
.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{
	transition: 0.6s;
	font-size: 1.5rem;
	letter-spacing: 0.2em;
    line-height: normal;

/*
	background-image: url("../img/logo.png");
	background-repeat: no-repeat;
	background-size: contain;
*/
}
.logo{
	position: relative;
	
}
.logo_wh{

}
.logo_bk{
	opacity: 0;
	
}
.site_header h1 a{
/*	display: flex;*/
	color: #fff;
	align-items: center;
	gap:20px;
	font-weight: 800;
/*	width: 50%;*/
}
.site_header h1 a small{
    font-size: 1.1rem;
    text-align: center;

}

.site_header h1 a img{
	display: block;
	width: 100px;
	transition: .4s;
}
.site_header h1 a:hover img{
	opacity: .6;
}

.site_header .info{
/*
	position: absolute;
	top:27%;
	right:5%;
*/
}
.site_header .tr{
	display: flex;
	justify-content: right;
	align-items: center;
	margin-bottom: 5px;
}
.site_header .tr .sbtn{
	margin: 0;
    margin-left: 20px;
    width: 200px;
}
.site_header .tr .sbtn a{
	padding: 10px 0;
	line-height: normal;
}
.sbtn span{

}

@media(max-width:1200px){
	.site_header h1{
	    font-size: 1.2rem;
	}
}

@media(max-width:550px){
	.site_header h1{
	    font-size: 0.9rem;
	}
    .site_header h1 a small{
        font-size: 0.6rem;
    }
}

/*---------------global_nav----------------*/
.global_nav{
	width: 100%;
	height: 50px;
	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: 1rem;
	line-height: 1;
	letter-spacing: 0.2em;
	text-align: center;
	color: #fff;
	position: relative;
}
.global_nav ul li a span{
	display: block;
	font-size: 0.8rem;
	color: #fff;
	letter-spacing: 0.1em;
	padding-bottom: 5px;
}
.global_nav ul li a::after{
	content: '';
	display: block;
	width: 0;
	height: 1px;
	background: #00B88A;
	margin: 5px auto;
	transition: all 0.2s ease-in;
}
.global_nav ul li:hover a::after{
	width: 50px;
}
@media (max-width: 1200px){
	.global_nav ul li{
		margin-left: 20px;
	}
	.global_nav ul li a{
		font-size: 0.8rem;
	}
}
@media (max-width: 960px){

	.site_header .info{
		display: none;
	}
	

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

/*
.site_header.transform_header{
	width: 100%;
	background-color: rgba(255, 255, 255,1);
	padding: 15px 0;
}
*/
/*
@media(max-width:960px){
	.site_header.transform_header{
		padding: 10px 0;
	}
	.site_header h1{
		width: 85%;
		font-size: 1.2rem;
	}
}
*/
/*
.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: #333;
}
.transform_header .insta_btn{
	color: #fff;
	border: 1px solid #fff;
}
.transform_header .insta_btn:hover{
	color:#333;
	background: #fff;
	border: none;
}
*/



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

.bg_black{
	background: #1d1d1d;
}
.bg_white{
	background: #fff;
    padding: 10px;
}
.bg_gray{
	background:#eee;
}

.bg_blue{
	background: #B3E4FF;
}
.bg_main{
      
}

.bg_section{
    background: url("../img/section_bg.webp") center center / cover no-repeat;
    padding: 80px 20px;
    position: relative;
    z-index: 1;
    overflow: hidden; /* ::beforeがはみ出さないように */
}
.bg_section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.6); /* ←ここで透明度調整！ */
    z-index: 0;
}

.bg_section > * {
    position: relative;
    z-index: 1; /* テキストなどを前面に */
}



.illust001{
	background:url("../img/illust001.png");
	background-repeat: no-repeat;
    background-size: contain;
    width: 30%;	
    bottom: 0;
    left: 0;
    aspect-ratio: 16 / 9;
    position: absolute;
}
@media(max-width:960px){
    .illust001{
        width: 25%;;
    }
}
@media(max-width:768px){
    .illust001{
        width: 250px;
        z-index: 1;
    }
    .t_service .text{
        margin-bottom: 100px;
    }
}

.bg_flame01{
	border-radius: 47% 53% 38% 62% / 41% 44% 56% 59% ;
	width: 100%;
	height: 100%;
}

.bg01{
	background:url("../img/bg01.webp");
	object-fit: cover;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	overflow: hidden;
    position: relative;
    z-index: -1;
}
.bg01::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top:0;
    left: 0;
    background: rgba(255,255,255,0.3);
    z-index: -1;
}


/*-----背景右寄-----*/
.bg_right{
    width: 80%;
    height: 70%;
    position: absolute;
    right: 5%;;
	bottom: 0;
	border-radius: 50px;
	z-index: -1;
}
/*-----背景左寄-----*/
.bg_left{
	width: 80%;
    height: 40%;
    position: absolute;
    left: 0;
    top: 5%;
	border-radius: 10px;
	z-index: -1;
}

/*-----背景上寄-----*/
.bg_top{
    width: 100%;
    height: 250px;
    position: absolute;
    top: 0;
	z-index: -1;
}
/*-----背景下寄-----*/
.bg_bottom{
    width: 100%;
    height: 250px;
    position: absolute;
    bottom: 0;
	z-index: -1;
}

.sp_br{
	display: none;
}
.sp_none{
	display: contents;
}
@media(max-width:550px){
	.sp_br{
		display: block;
	}
	.sp_none{
		display: none;
	}
}


.sp_br2{
	display: none;
}
@media(max-width:580px){
	.sp_br2{
		display: block;
	}
}
/*--------------------imgフレーム imgタグにつける-----------------------*/
.photo_flame01{
	width: 100%;
	object-fit: cover;
	border-radius: 29% 71% 24% 76% / 59% 31% 69% 41% ;
}

.photo_flame02{
	width: 100%;
	object-fit: cover;
	border-radius: 84% 16% 70% 30% / 50% 50% 50% 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: rgba(50,63,197,0.8);
	font-weight: 400;
	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-size:1.5rem;
	display: block;
	text-align: center;
	padding-bottom: 50px;
}
	

/* HTML: <div class="loader"></div> */
.loader {
  width: fit-content;
  font-size: 40px;
  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, 30%);
	transition: 2s;
}
.fadeIn_right {
	opacity: 0;
	transform: translate(30%, 0);
	transition: 2s;
}
.fadeIn_left {
	opacity: 0;
	transform: translate(-30%, 0);
	transition: 2s;
}
.inview {
	transform: translate(0, 0);
	opacity: 1;
}

/*------ふわふわ-------*/
.fuwafuwa {
  animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
}
@keyframes floating-y {
  0% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(10%);
  }
}


/*------かくかく-------*/
.kakukaku {
  animation: kakukaku 1s steps(2, start) infinite;

}
@keyframes kakukaku {
  0% {
    transform: rotate(20deg);
  }
  to {
    transform: rotate(-10deg);
  }
}

.kakukaku2 {
  animation: kakukaku2 1s steps(3, start) infinite;

}
@keyframes kakukaku2 {
  0% {
    transform: rotate(20deg);
  }
  to {
    transform: rotate(-10deg);
  }
}



.slide_in_top_right{
	
}

.slide_in_top_right.inview {
	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.inview {
	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;
	}
}




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

.swipe{
	position: relative;
	overflow: hidden;
}
.swipe::after{
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top:0;
	left: 0;
	background:var(--main_color);
	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: var(--main_color);
	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);
}



/*-----スクロールダウンアニメーション------*/
.container_01 {
    margin: 0;
    padding: 0;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: #a5cbd7; */
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    z-index: 1;
}


.scroll-down_01 {
    position: relative;
    width: 145px;
    height: 145px;
    color: #224391;
    text-shadow: #fff 0px 0px 3px, #fff 0px 0px 3px, #fff 0px 0px 3px, #fff 0px 0px 3px, #fff 0px 0px 3px, #fff 0px 0px 3px, #fff 0px 0px 3px, #fff 0px 0px 3px, #fff 0px 0px 3px, #fff 0px 0px 3px, #fff 0px 0px 3px, #fff 0px 0px 3px, #fff 0px 0px 3px;
    text-decoration: none;
}

.circle-text_01 {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotate 20s linear infinite;
}

.circle-text_01 span {
    position: absolute;
    left: 50%;
    font-size: 16px;
    transform-origin: 0 70px;
}

.arrow_01 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 35px;
    transform: translate(-50%, -50%);
    animation: scroll_01 3s infinite;
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.8));
}

.arrow_01::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    width: 1.5px;
    background-color: #224391;
    transform: translateX(-50%);
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.8));
}
.arrow_01::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 12px;
    height: 12px;
    border-bottom: 1.5px solid #224391;
    transform: translateX(-50%) rotate(-45deg);
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.8));
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes scroll_01 {
  0% {
    transform: translate(-50%, -50%) translateY(-10px);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) translateY(10px);
    opacity: 0;
  }
}

/*--------FVスライダー使う場合--------------*/
.top_slider{
	position: relative;
	overflow: hidden;
}
.top_slider .slider{
}
.top_slider::after{
    content: "";
    background: rgba(0, 122, 204,0.2);
    width: 100%;
    height: 100%;
    position: absolute;
    top:0;
    left:0;
    bottom: 0;
}

.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.webp);
}
.top_slider .slider li.top02{
	background-image: url(../img/top02.webp);
}
.top_slider .slider li.top03{
	background-image: url(../img/top03.webp);
}

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

.slide_items img{
	width: 100%;
    height: calc(100vh - 160px);
    object-fit: cover;
}

/*----------キャッチ----------------*/
.top_slider .catch{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    text-align: center;
    font-weight: 800;
    color: #224391;
    pointer-events: none;
    z-index: 2;
    animation: apper 1.5s ease-in-out;
  text-shadow: #fff 0px 0px 3px, #fff 0px 0px 3px, #fff 0px 0px 3px, #fff 0px 0px 3px, #fff 0px 0px 3px, #fff 0px 0px 3px, #fff 0px 0px 3px, #fff 0px 0px 3px, #fff 0px 0px 3px, #fff 0px 0px 3px, #fff 0px 0px 3px, #fff 0px 0px 3px, #fff 0px 0px 3px, #fff 0px 0px 3px, #fff 0px 0px 3px, #fff 0px 0px 3px, #fff 0px 0px 3px, #fff 0px 0px 3px, #fff 0px 0px 3px, #fff 0px 0px 3px, #fff 0px 0px 3px, #fff 0px 0px 3px, #fff 0px 0px 3px, #fff 0px 0px 3px, #fff 0px 0px 3px, #fff 0px 0px 3px, #fff 0px 0px 3px;
/*
    -webkit-text-stroke: 3px #fff;
    text-stroke: 4px #fff;
    paint-order: stroke;
*/
}

.fv_main {
    font-size: 2.5rem;
    display: block;
    letter-spacing: 0.2em;
    font-weight: 800;
}
.fv_sub {
    font-size: 1.5rem;
    margin-top: 0.3em;
    display: block;
    font-weight: 800;
}
.fv_sub2{
    position: relative;
    font-size: 1.3rem;
    letter-spacing: 0.15em;
    padding: 5px 25px;
    border: 1px solid #224391;
    background: #fff;
}
/*
.fv_sub2::after{
    content: "";
    position: absolute;
    top: calc(100% + 5px);
    left: 50%;
    width: 30px;
    height: 1px;
    box-sizing: border-box;
    background-color: #224391;
    rotate: 50deg;
    translate: -25%;
}
*/

@keyframes apper {
	0% {
		opacity: 0;
	}
	50%{
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

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


@media(max-width:960px){
	.fv_main {
	    font-size: 2rem;
	}
}
@media (max-width: 768px){
	.fv_main {
	    font-size: 1.5rem;
	}
    .fv_sub {
	    font-size: 1.2rem;
	}

}
@media (max-width: 550px){
	.top_slider .catch{
        text-align: left;
        margin-left: 10px;
	}
    .fv_main {
	    font-size: 1.5rem;
	}
    .fv_sub {
	    font-size: 1.4rem;
	}
}
.mask{
	mask-image: url(../img/mask.png);
    mask-size: 100% calc(100vh - 160px);
    mask-repeat: no-repeat;
}






/*---TOPメイン--------------*/
main{
	display: block;
	position: relative;
}
main section{
	padding-block: var(--section_space);
	position: relative;
	z-index: 1;
	overflow: hidden;
}
	
/*
@media (max-width: 768px){
	main section{
		padding: 60px 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 .info_flexbox{
    justify-content: center;
    gap:30px;
    padding: 0 20px;
}


/*-------TOP ごあいさつ----------------------*/
.img_colm{
    display: flex;
    flex-direction: column;
    width: 48%;
    gap:50px;
}
.img_colm .img{
    width: 70%;
    position: relative;
}
.img_colm .img:first-child{
    margin-left: auto;
}

.img_colm .img img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}

/* 右にずらす背景 */
.shadow_right::before {
  content: "";
  position: absolute;
  top: 20px;
  left: -20px;
  width: 100%;
  height: 100%;
  background: var(--main_color);
  z-index: 1;
}

/* 左にずらす背景 */
.shadow_left::before {
  content: "";
  position: absolute;
  top: 20px;
  right: -20px;
  width: 100%;
  height: 100%;
  background: var(--main_color);
  z-index: 1;
}

.t_greeting .info_flexbox .text{
    width: 50%;
    padding: 0 10px;
}

@media(max-width:768px){
    .t_greeting .info_flexbox .text{
        width: 98%;
        margin: auto;
    }
    .img_colm{
        width: 100%;
    }
}



/*-------TOP 事業内容---------------------*/
.t_service{
    position: relative;
}
/*-------TOP 受け入れ対応国----------------------*/

/* 回転アニメーションの定義 */
@keyframes rotateAnimation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* 回転する要素のスタイル */
.world_rotate {
    width: 20%;
    aspect-ratio: 1 / 1;
    position: absolute;
    bottom: 5%;
    right: 5%;
    background: url("../img/world.svg");
    background-repeat: no-repeat;
    animation: rotateAnimation 40s linear infinite;
    z-index: -1;
}


.world_rotate_left{
    width: 20%;
    aspect-ratio: 1 / 1;
    position: absolute;
    bottom: 5%;
    left: 5%;
    background: url("../img/world.svg");
    background-repeat: no-repeat;
    animation: rotateAnimation 40s linear infinite;
    z-index: -1;
}



.t_countries_box {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    margin-bottom: 150px;

}
.t_countries_item {
/*    border-radius: 5px;*/
    width: 31%;
    border: 1px solid var(--sub_color);
    padding: 15px;
    text-align: center;
    background: #f4fdff;
}
.t_countries_item img {
    max-width: 100%;
    height: auto;
}
.t_countries_item p {
    text-align: center;
    font-weight: 500;
}
@media(max-width:768px){
    .t_countries_box{
        gap:10px;
    }
    .world_rotate_left{
        width: 40%;
    }
    .t_countries_item{
        padding: 5px
    }
    .t_countries_item p{
        font-size: 0.8rem;
        letter-spacing: 0em;
    }

}



/*-------TOP メニュー コンテンツ----------------------*/

.img_btn{
    display: flex;
    position: relative;
    width: 45%;
    flex-direction: column;
    overflow: hidden;
}
.img_btn img{
    width: 100%;
}
.img_btn h3{
    position: absolute;
    top:50%;
    text-align: center;
    color: var(--main_color);
    transform: translateY(-50%);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    z-index: 1;
    text-shadow: #fff 0px 0px 3px, #fff 0px 0px 3px, #fff 0px 0px 3px, #fff 0px 0px 3px, #fff 0px 0px 3px, #fff 0px 0px 3px, #fff 0px 0px 3px, #fff 0px 0px 3px, #fff 0px 0px 3px, #fff 0px 0px 3px, #fff 0px 0px 3px, #fff 0px 0px 3px, #fff 0px 0px 3px;
    width: 100%;
}

.t_contents .info_flexbox{
    justify-content: center;
    gap:50px;
}

.img_btn:hover img{
    transform: scale(1.2);
}
@media(max-width:768px){
    .img_btn{
        width: 100%;
    }
}


/*===フッター==============================*/
.footer_top{
	position: relative;
	z-index: 1;
	background: url(../img/footer.webp);
    vertical-align:middle;
    object-fit: cover;
	background-size: cover;
	background-position: top;
	padding: 60px 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.4);
	pointer-events: none;
	z-index:-1;
}


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

.footer_top .sbtn{
	width: 300px;
	margin: 0;
}
.footer_top .sbtn a{
	font-size: 1rem;
	letter-spacing: 0.2em;
	font-weight: 500;
/*	width: 260px;*/
}


.footer_flex{
	width: 100%;
	display: flex;
	justify-content: center;
	gap:100px;
}

.footer_text{
	padding: 0;
	width: 100%;
}
.footer_text p{
	margin: 0;
	color: #333;
}
.footer_text h3{
	display: block;
	color: #333;
	width: 100%;
	font-size: 1.5rem;
	font-weight: 500;
    margin-bottom: 15px;
}
.footer_text h3 span{
	font-size: 1.2rem;
	font-weight: 400;
}
.footer_text img{
	width: 100px;
}
.transform .inner .main_ttl::before{
	color: #fff;
}
.footer_middle{
	text-align: center;
	position: relative;
	padding:50px 0; 

}

.footer_contact{
	padding-top: 100px;
	position: relative;

}

.footer_flex .sbtn a{
	color:#fff;
	border: 1px solid #fff;
}
.footer_flex .sbtn a:hover{
	background: var(--sub_color);
	color: #fff;
	border: 1px solid var(--sub_color);

}

.btn_link{
    width: 300px;
    transition: all .3s 0s ease-in;
    border: 1px solid #333;
    opacity: 1;
}

.btn_link:hover{
    opacity: 0.6;
    transform: translateY(-10px);
}

@media(max-width:768px){
	.footer_flex{
		flex-direction: column;
		gap:30px;
		align-items: center;
	}
}

.copyright{
	text-align: center;
	padding: 10px 0;
	color: #fff;
	letter-spacing: 0.08em;
	background: var(--main_color);
}
.copyright p{
	font-size: 0.8rem;
	
}
@media(max-width:580px){
	.copyright p{
		font-size: 0.5rem;
	}
}


/*-------トップに戻る----------*/
.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: var(--sub_color);
  	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{
	background: url("../img/kasou_about.jpg");
	background-size: cover;
	background-position: center;
}
.kasou_contact{
	background: url("../img/kasou_about.jpg");
	background-size: cover;
	background-position: center;
}
.kasou_news{
	background: url("../img/kasou_about.jpg");
	background-size: cover;
	background-position: center;
}
.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;
}

@media (max-width: 450px){
	.kasou_top::after{
		background-size: 1px 1px;
		opacity: 0.5;
	}
}
.kasou_top h2{
	position: relative;

	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;
}




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



.card_container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.card_img {
    width: 100%;
    height: 140px;
    object-fit: contain;
}

.card_body {
    padding: 16px;
}

.card_title {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 8px;
    text-align: center;
}

.card_text {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #444;
}

/* 番号バッジ */
.card::before {
    content: counter(card_num, decimal-leading-zero);
    counter-increment: card_num;
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: var(--sub_color);
    font-size: 3rem;
    line-height: 1;
    font-weight: 500;
    padding: 4px 8px;
    z-index: 2;
    opacity: 0.2;
}

/* 番号のカウンターをリセット */
.card_container {
    counter-reset: card_num;
}





.service_slider{
	width: 100%;
	padding: 30px 0;
}

.service_slider img{
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	padding: 0 10px;
}



/*---特定技能について-------------------------*/


.skill .text{
    border: 1px solid #333;
    padding: 10px;
    font-size: 1rem;
}

/*
.skill .text .check_list{
    text-indent: -1rem;
    padding-left: 1rem;
}
*/


.job_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  padding: 2rem 0;
}

.job_card {
    background: #fff;
    /*  border-radius: 12px;*/
    border: 1px solid var(--sub_color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
}

.job_card:hover {
  transform: translateY(-5px);
}
.job_card h3{
    color: var(--main_ttl);
}
.job_card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.job_card h3 {
  padding: 1rem;
  font-size: 1.1rem;
  color: #333;
}


.area .img{
    width: 100%;
    max-width: 512px;
    margin: auto;
}

.flow_img{
    width: 100%;
    max-width: 900px;
    margin: auto;
}

/*---よくある質問-------------------------*/

.faq .img{
    width: 100%;
    max-width: 512px;
    margin: auto;
}
.bg_faq {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 80px 20px;
}

.bg_faq::before {
  content: "";
  position: fixed; /* ←ポイント！ */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/section_bg.webp") center center / cover no-repeat;
  opacity: 0.2; /* 好きな透明度で */
  z-index: 0;
  pointer-events: none; /* クリック防止 */
}

.bg_faq > * {
  position: relative;
  z-index: 1;
}


.faq_container {
    margin: 0 auto;
    width: 100%;
    max-width: 1000px;
    color: #4d5974;
}
.faq .faq_item {
    border-bottom: 1px solid #e5e5e5;
}
.faq button[aria-expanded='true'] {
    border-bottom: 1px solid var(--main_color);
}

.faq button {
    position: relative;
    display: block;
    width: 100%;
    text-align: left;
    padding: 1em 0;
    font-size: 1.15rem;
    color: #7288a2;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
}
.faq button:hover,
.faq button:focus {
    color: var(--main_color);
}
.faq button:hover .icon,
.faq button:focus .icon {
    color: var(--main_color);
    border-color: var(--main_color);
}

.faq_title {
    padding: 1em 1.5em 1em 0;
    display: inline-block;
}

.icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 22px;
    height: 22px;
    border: 1px solid;
    border-radius: 50%;
}
.icon::before,
.icon::after {
    content: '';
    position: absolute;
    background: currentColor;
}
.icon::before {
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
}
.icon::after {
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
}

.faq button[aria-expanded='true'] .icon::after {
  width: 0;
}

.faq_content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 200ms linear;
}
.faq button[aria-expanded='true'] + .faq_content {
  opacity: 1;
  max-height: 9em;
  transition: all 200ms linear;
}
.faq_content p {
  margin: 2em 0;
  font-size: 1rem;
  font-weight: 300;
}
/*---会社概要-------------------------*/



/*---お問い合わせ-------------------------*/
.dl{
	padding-bottom: 0;
}
.btn_flex{
	width: 100%;
	display: flex;
	justify-content: space-around;
}

.contact .img{
    width: 100%;
    max-width: 512px;
    margin: auto;
}

/*===お問い合わせページ==============================*/
.contact .tel_contact{
	text-align: center;
	
	padding: 10px 0;
	margin: 0 auto;
	max-width: 600px;
}
.contact .tel_contact a{
	display: block;
	font-size: 2rem;
	white-space: nowrap;
}
.contact .tel_contact a:hover{
	opacity: 0.6;
}
.contact .tel_contact p{
	font-size: .8rem;
}
.tel_contact i{
	color: #333;
	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%, #224391 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;
    display: flex;
    align-items: center;
}
.mailform .row div:nth-child(2){
	width: 70%;
	line-height: 1.5;
}
.mailform .row span{
    padding: 5px 15px;
    margin-right: 10px;
    font-size: 0.8rem;
    border-radius: 2px;
}
.mailform .row span.hissu{
	color: #fff;
	background: var(--main_color);
}
.mailform .row span.ninni{
	border: 1px solid var(--main_color);
	color: var(--main_color);
/*	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;
}

.selectbox {
/*	width: 100% !important;*/
	border: 1px solid #ddd;
  	padding: 5px;
	-webkit-appearance: none;
	margin-bottom: 5px;
	background: #fff;
    display: inline-flex;
    align-items: center;
    position: relative;
}
.selectbox::after {
    position: absolute;
    right: 15px;
    width: 10px;
    height: 7px;
    background-color: #535353;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
/*    pointer-events: none;*/
}
.selectbox select {
    appearance: none;
    width: 100%;
/*    padding: .4em calc(.8em + 30px) .4em .8em;*/
    border: none;
    background-color: #fff;
    color: #333333;
    font-size: 1em;
    cursor: pointer;
}
.selectbox select:focus {
    outline: none;
}


.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:var(--main_color);
	border: 1px solid var(--main_color);
/*	border-radius: 25px;*/
	color: #fff;
}
.mailform button:hover{
	background: #fff;
	color: var(--main_color);
	border: 1px solid var(--main_color);
}
.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 var(--main_color);
    border-bottom: 3px solid var(--main_color);
    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: #333;
	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){
}

