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

/*------------------共通部分----------------------*/
:root{
	--main_color: #edfdff;
  	--sub_color: #3D50E3;
	--font:"Zen Kaku Gothic New", sans-serif;
}
html{
	font-size: 100%;
	scroll-behavior: smooth;/*スムーススクロール*/
	scroll-padding-top: 120px;/*ヘッダーの高さ分ズラす*/
}
body{
	font-family: var(--font);
	font-weight: 500;
	color: #333;
	font-size: 16px;
	background: #fff;
	-webkit-font-smoothing: antialiased;/*アンチエイリアスを滑らかに*/
	-moz-osx-font-smoothing: grayscale;
	line-height: 1.9;
}

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;
	border-radius: 30px;
}
.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: 4rem;
	letter-spacing: 0.1em;
	text-align: center;
	color: var(--main_color);
	font-weight: 500;
	line-height: normal;
	background: linear-gradient(90deg,rgba(64, 242, 255, 1) 30%, rgba(113, 165, 245, 1) 52%, rgba(61, 80, 227, 1) 80%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.main_ttl span {
	display: block;
	color: #333;
	font-size: 1.5rem;
	background: #333;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
@media(max-width:1200px){
	.main_ttl{
		font-size: 3rem;
	}
}
@media(max-width:768px){
	.main_ttl{
		font-size: 2.5rem;
	}
	.main_ttl span{
		font-size: 1.2rem;
	}
}



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


.sub_ttl {
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    position: relative;
    padding: 10px;
    margin-bottom: 20px;
}

.sub_ttl:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70%;
    height: 5px;
    content: '';
    background: linear-gradient(-90deg,rgba(64, 242, 255, 1) 20%, rgba(113, 165, 245, 1) 52%, rgba(61, 80, 227, 1) 100%);
}

.sub_ttl2{
    text-align: center;
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    position: relative;
}

.sub_ttl2::after{
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 5px;
    content: '';
    background: linear-gradient(-90deg, rgba(64, 242, 255, 1) 30%, rgba(113, 165, 245, 1) 52%, rgba(61, 80, 227, 1) 80%);
}

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


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

.btn01 a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 225px;
    padding: 10px 0px 10px 25px;
    color: #333;
    transition: 0.3s ease-in-out;
    font-weight: 500;
	letter-spacing: 0.25em;
	margin-top: 50px;
}

.btn01 a:before, .btn01 a:after {
	content: "";
	position: absolute;
	display: block;
	top: 50%;
}
.btn01 a:before {
	width: 0.5rem;
	height: 0.5rem;
	left: 1.1rem;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	z-index: 2;
	transform: translateY(-50%) rotate(45deg);
	transition: all 0.3s;
}
.btn01 a:after {
	left: 0;
	background: var(--sub_color);
	z-index: 1;
	width: 3rem;
	height: 3rem;
	border-radius: 4rem;
	transform: translateY(-50%);
	transition: all 0.5s;
}
.btn01 a span {
	position: relative;
	transition: all 0.3s;
	z-index: 3;
}

.btn01 a:hover span {
  color: #fff;
}
.btn01 a:hover:before {
  left: 2rem;
}
.btn01 a:hover:after {
  right: 0;
  width: 100%;
}









.h_btn_insta a{
	display: block;
	width: 38px;
	font-size: 1.1rem;
	text-align: center;
	
	background-size: 180%;
	background-position: left;
	color: #fff;
	border-radius: 50%;
	margin: 0 20px 0 0;
	transition: .5s;
}
.h_btn_insta a:hover{
	background: linear-gradient(45deg, rgba(254,212,117,1) 0%,rgba(229,61,93,1) 50%,rgba(194,49,134,1) 70%,rgba(156,56,187,1) 100%);
}
.h_btn_insta a i{
	line-height: 38px;
	vertical-align: middle;
}



.sbtn{
	width: 300px;
	margin: 0 auto;
}
.sbtn a{
	display: block;
	border:1px solid #333;
	border-radius: 25px;
	text-align: center;
	width: 100%;
	padding: 10px 0;
	letter-spacing: 0.15em;
	font-size: 0.9rem;
	transition: all .5s ease;
	
}
.sbtn a:hover{
	color: #fff;
	background: var(--sub_color);
	border: 1px solid #3D50E3;
}
.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: #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;
}


/*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: #eee;
	color: #333;
	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: #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;
	width: 100%;
	height: 450px;
	border: none;
}


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






/*===ヘッダー==============================*/
.site_header{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	transition: 0.6s;
	padding: 15px 0;
	background: #fff;
	box-shadow: 0px 8px 16px -2px rgba(10,10,10,0.1), 0px 5px 8px 0px rgba(10,10,10,0.2);
}
.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;

/*
	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: #333;
	align-items: center;
	gap:10px;
	font-size: 2rem;
	
/*	width: 50%;*/
}
.site_header h1 a img{
	display: block;
	width: 70px;
	transition: .4s;
}
.site_header h1 a:hover{
	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{
		width: 40%;
	}
	.site_header h1 a{
		font-size: 1.5rem;
		}
}

@media(max-width:960px){
	.site_header h1 a img{
		width:  50px;
	}
}

/*---------------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: #333;
	position: relative;
}
.global_nav ul li a span{
	display: block;
	font-size: 0.8rem;
	letter-spacing: 0.1em;
	padding-bottom: 5px;
}
.global_nav ul li a::after{
	content: '';
	display: block;
	width: 0;
	height: 1px;
	color:#fff;
	background: var(--sub_color);
	margin: 5px auto;
	transition: all 0.2s ease-in;
	z-index: -1;
}
.global_nav ul li:hover a::after{
	width: 100%;
}

@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);
}
@media(max-width:960px){
	.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_gray{
	background:#eee;
}

.bg_blue{
	background: #edfdff;
}

.illust001{
	background:url("../img/illust001.svg");
	background-repeat: no-repeat;
	width: 30%;
    bottom: 0;
    aspect-ratio: 4 / 3;
    position: absolute;
    opacity: 0.7!important;
	z-index: -1;
}

.illust002{
	background:url("../img/illust002.svg");
	background-repeat: no-repeat;
	width: 35%;
    bottom: 0;
	right: 0;
    aspect-ratio: 4 / 3;
    position: absolute;
    opacity: 0.7!important;
	z-index: -1;
}
.illust003{
	background:url("../img/illust003.svg");
	background-repeat: no-repeat;
	width: 35%;
    top: 0;
	left: 0;
    aspect-ratio: 4 / 3;
    position: absolute;
    opacity: 0.7!important;
	z-index: -1;
}

.illust004{
	background:url("../img/illust004.svg");
	background-repeat: no-repeat;
	width: 22%;
    top: 0;
	right: 0;
    aspect-ratio: 1 / 2;
    position: absolute;
    opacity: 0.8!important;
	z-index: 1;
}


@media(max-width:550px){
	.illust001 , .illust002{
		width: 45%;
	}
}
.bg_flame01{
	border-radius: 47% 53% 38% 62% / 41% 44% 56% 59% ;
	width: 100%;
	height: 100%;
}

.bg01{
	background:url("../img/bg01.jpg");
	object-fit: cover;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	overflow: hidden;
}
.bg01:before{
	content: "";
	background: inherit;
	filter:brightness(60%) contrast(120%) grayscale(100%);
	width: 100%;
	height: 100%;
	position: absolute;
	top:0;
	z-index: -1;
}
.bg01::after{
	content: "";
	background: rgba(0,0,0,0.5);
	width: 100%;
	height: 100%;
	position: absolute;
	top:0;
	z-index: -1;
}


/*-----背景右寄-----*/
.bg_right{
    width: 90%;
    height: 62%;
    position: absolute;
    right: 0;
	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_left2{
    width: 95%;
    height: 100%;
    position: absolute;
    left: 0;
	bottom: 0;
	border-radius: 50px;
	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:460px){
	.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% 
}

/*--------------------SVGフレーム-----------------------*/


.deco001{
overflow:hidden;
position:relative;
	height: 100px;
}
.deco001::before{
content:'';
position: absolute;
bottom: -1px;
left: -1px;
right: -1px;
top: -1px;
z-index: 3;
pointer-events: none;
background-repeat: no-repeat; 
background-size: 100% 57px;
background-position: 50% 0%;    
background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M0 .5c3.07.55 9.27-.42 16.14 0 6.88.4 13.75.57 19.14-.11V0H0z" fill="%23fff0f8"/></svg>'); 
}

/*
@media (min-width:768px){
.deco001::before{
background-size: 100% 83px;
background-position: 50% 0%;   
}  
}
*/
 
@media (min-width:1025px){
.deco001::before{ 
bottom: -0.1vw;
left: -0.1vw;
right: -0.1vw;
top: -0.1vw; 
background-size: 100% 83px;
background-position: 50% 0%;  
}
}
@media (min-width:2100px){
.deco001::before{
background-size: 100% calc(2vw + 83px);
}
}
 
 

.deco002{
	overflow:hidden;
	position:relative;
	height: 100px;
}
.deco002::before{
	content:'';
	position: absolute;
	bottom: -1px;
	left: -1px;
	right: -1px;
	top: -1px;
	z-index: 3;
	pointer-events: none;
	background-repeat: no-repeat; 
	background-size: 100% 63px;
	background-position: 50% 0%;    
	background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M0 .5c3.07.55 9.27-.42 16.14 0 6.88.4 13.75.57 19.14-.11V0H0z" fill="%23ffffff"/></svg>'); 
}

@media (min-width:768px){
	.deco002::before{
		background-size: 100% 84px;
		background-position: 50% 0%;   
	}  
}
 
@media (min-width:1025px){
	.deco002::before{ 
		bottom: -0.1vw;
		left: -0.1vw;
		right: -0.1vw;
		top: -0.1vw; 
		background-size: 100% 71px;
		background-position: 50% 0%;  
	}
}
@media (min-width:2100px){
	.deco002::before{
		background-size: 100% calc(2vw + 71px);
	}
}
 
/*------画像フィルター------*/

.img_filter {
	   filter: blur(2px) grayscale(80%);
}

.img_btn .img_filter{
	transition:1s all;
}
.img_btn .img_filter:hover{
	filter: none;
	transition:1s all;
}


/*-------流れる文字--------------- */
.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;
}
.is-show {
	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.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%);
  }
}




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

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







/*-----スクロールダウンアニメーション------*/
.scroll_down{
  position:absolute;
  bottom: 0px;
  left: 50%;
}

.scroll_down span{
  position: absolute;
  left: 10px;
  bottom: 87px;
  color: #000;
  font-size: 14px;
  letter-spacing: .2em;
  writing-mode: vertical-lr;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll_down:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background:#000;
  animation:
    circlemove 1.6s ease-in-out infinite,
    cirlemovehide 1.6s ease-out infinite;
}

@keyframes circlemove{
  0%{bottom:160px;}
  100%{bottom:0px;}
}

@keyframes cirlemovehide{
  0%{opacity:0}
  50%{opacity:1;}
  80%{opacity:0.9;}
  100%{opacity:0;}
}

.scroll_down:after{
  content:"";
  position: absolute;
  bottom:0;
  left:0;
  width:2px;
  height: 160px;
  background:#000;
}


/*-------------FV---------------*/
.hero_wrap {
	overflow: hidden;
	position: relative;
	width: 100%;
}

.hero {
	width: 100%; /* 横幅いっぱい */
	height: 65vh;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.hero_inner {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden; /* 念のため */
}


.hero_catch {
	position: absolute;
	bottom: 15%;
	left: 5%;
	font-size: 2.5rem;
	letter-spacing: 0.1em;
	line-height: normal;
	z-index: 3;
	font-weight: 900;
	color: var(--sub_color);
	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, #fff 0px 0px 3px, #fff 0px 0px 3px;
}
/*

.hero_catch::after{
	content: "";
    position: absolute;
	top:0;
    height: 100%;
    color:  var(--sub_color);
    width: 100%;
    display: block;
	opacity: 0.8;
}
*/

.slider {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	overflow: hidden;
}

.hero_img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 1s ease-in-out;
	border-radius: 30px;
	clip-path: ellipse(80% 50% at 50% 50%)
}

.hero_img.active {
	opacity: 1;
	 z-index: 3;
}

@media(max-width:1200px){
	.hero{
		height: 50vh;
	}
	
}

@media(max-width:960px){
	.hero_catch{
		font-size: 2rem;
	}
	.hero{
		height: 40vh;
	}
	
}
@media(max-width:768px){
	.hero_catch{
		font-size: 1.5rem;
	}
	.hero_img{
		border-radius: 15px;
	}
	.hero{
		height: 30vh;
	}
}
@media(max-width:550px){
	.hero{
		height: 25vh;
	}
	.hero_catch{
		font-size: 1rem;
	}
}


/*===TOPメイン==============================*/
main{
	display: block;
	position: relative;
}
main section{
	padding: 100px 0;
	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){
	.hero{
		min-height: 350px;
	}
	.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 ごあいさつ----------------------*/
.t_greeting{
	padding: 50px 0 100px 0;
}

/*-------TOP こんなお悩みありませんか？----------------------*/
.t_worries{
	padding-bottom: 0;
}


.t_worries .check_list{
	background: #fff;
    padding: 20px;
    border-radius: 15px;
}

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

/*-------TOP サービス紹介--------------------------*/
.t_service{
	padding-bottom: 0;
}
.t_service_wrap {
	display: grid;
	grid-template-columns: repeat(4, 1fr); /* 4列グリッド */
	gap: 20px; /* 任意の間隔 */
	width: 100%;
	padding: 100px 30px;
	border-radius: 50px;
}

.t_service_item {
	display: flex;
	flex-direction: column;
	padding: 25px 15px;
	background: #fff;
	border-radius: 30px;
}
.t_service_item p {
	flex-grow: 1; /* テキスト部分が伸びる */
}

.t_service_item h3{
	font-size: 1.5rem;
	letter-spacing: 0.1em;
	text-align: center;
	color: var(--main_color);
	font-weight: 500;
	background: linear-gradient(90deg,rgba(64, 242, 255, 1) 0%, rgba(113, 165, 245, 1) 50%, rgba(61, 80, 227, 1) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 30px;
}

.btn01 {
	margin-top: auto; /* ボタンを下に寄せる */
}



/* 画面幅が1024px以下 → 2カラム */
@media (max-width: 1024px) {
	.t_service_wrap {
		grid-template-columns: repeat(2, 1fr);
		padding: 100px 10px;
	}
}

/* 画面幅が600px以下 → 1カラム */
@media (max-width: 600px) {
	.t_service_wrap {
		grid-template-columns: 1fr;
	}
}

/*-------TOP 新着情報--------------------------*/
.news_area .info_flexbox{
	justify-content: center;
	gap:30px;
}

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

/*===フッター==============================*/
.footer_top{
	position: relative;
	z-index: 1;
	background: url(../img/footer.jpg);
    vertical-align:middle;
    object-fit: cover;
	background-size: cover;
	background-position: top;
	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: #323fc5;
}
.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{
	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: contents;
	color: #333;
	width: 100%;
	font-size: 1.8rem;
	letter-spacing: 0.2em;
	font-weight: 500;
}
.footer_text h3 span{
	font-size: 1.2rem;
	font-weight: 400;
}
.footer_text img{
	width: 60px;
}

.footer_logo{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
}


.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: #3D50E3;
	color: #fff;
	border: 1px solid #3D50E3;

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

.copyright{
	text-align: center;
	padding: 10px 0;
	color: #333;
	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.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;
}
/*ドットテクスチャ*/
.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;

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

/*---事業紹介-------------------------*/

.service_box{
    border: 5px solid #fff;
    border-radius: 15px;
    padding: 20px;
    background: #fff;    
}

.service .info_flexbox{
    display: flex;
	justify-content: space-around;
	align-items: center;
	position: relative;
	min-height: 200px;
}
.service_ttl{
    background: #3D50E3;
    color:#fff;
    padding: 0 20px;
    margin-left: 15px;
    display: inline-block;
    position: relative;
    top:15px;
    border-radius: 15px;
}



.area h3{
    text-align: center;
    font-size: 1.7rem;
    letter-spacing: 0.2em;
    position: relative;
}

.area h3::after{
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 5px;
    content: '';
    background: linear-gradient(-90deg, rgba(64, 242, 255, 1) 30%, rgba(113, 165, 245, 1) 52%, rgba(61, 80, 227, 1) 80%);
}

@media(max-width:768px){
    .area h3{
        font-size: 1.2rem;
    }
}


/*---よくある質問-------------------------*/
.qa_1 {
    width: 100%;
    margin: auto;
    max-width: 750px;
    margin-bottom: 7px;
    border: 1px solid #d6dde3;
    border-radius: 5px;
}

.qa_1 summary::-webkit-details-marker {
  display: none; /* Safariの独自矢印を消す */
}
.qa_1 summary {
     list-style: none; /* デフォルトの矢印を無効化 */
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em 1em 3em;
    color: #333333;
    font-weight: 600;
    cursor: pointer;
}

.qa_1 summary::before,
.qa_1 p::before {
    position: absolute;
    left: 1em;
    font-weight: 600;
    font-size: 1.3em;
}

.qa_1 summary::before {
    color: #75bbff;
    content: "Q";
}

.qa_1 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #333333b3;
    border-right: 3px solid #333333b3;
    content: '';
    transition: transform .5s;
}

.qa_1[open] summary::after {
    transform: rotate(225deg);
}

.qa_1 p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 3em 1.5em;
    color: #333;
    transition: transform .5s, opacity .5s;
}

.qa_1[open] p {
    transform: none;
    opacity: 1;
}

.qa_1 p::before {
    color: #ff8d8d;
    line-height: 1.2;
    content: "A";
}

/*---下層ページ-------------------------*/


/*---下層ページ-------------------------*/


/*---下層ページ-------------------------*/



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



/*===お問い合わせページ==============================*/
.contact .tel_contact{
	text-align: center;
	
	padding: 10px 0;
	margin: 0 auto;
	max-width: 600px;
}
.contact .tel_contact a{
	display: block;
	font-size: 2.3rem;
	white-space: nowrap;
    color: var(--sub_color);
    font-weight: 900;
}
.contact .tel_contact a:hover{
	opacity: 0.6;
}
.contact .tel_contact p{
	font-size: .8rem;
}
.tel_contact i{
	color: var(--sub_color);
	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: var(--sub_color);
}
.mailform .row span.ninni{
	border: 1px solid var(--sub_color);;
	color: var(--sub_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(--sub_color);
	border: 1px solid var(--sub_color);
	border-radius: 25px;
	color: #fff;
}
.mailform button:hover{
	background: #fff;
	color: var(--sub_color);
	border: 1px solid var(--sub_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%;
	}
}
/*----mailform proチェックボックス-----*/
#content{
    height: 150px!important;
}
input[type=checkbox]{
	margin-right: 10px;
}
label.check_label{
	display: inline-block!important;
	margin-bottom: 8px !important;
	width: -moz-fit-content;
	width: fit-content;
	cursor: pointer;
    margin-right: 20px;
}

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(--sub_color);
    border-bottom: 3px solid var(--sub_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){
}

