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

/* 以下非表示*/
@media (min-width: 1200px){
	.tb_1200{
		display: none !important;
	}
}
@media (min-width: 960px){
	.tbsp{
		display: none !important;}
}
@media (min-width: 768px){
	.sp{
		display: none!important;}
	}
@media (min-width: 450px){
	.sp_450{
		display: none!important;}
	}

/* all */
html {
	scroll-behavior: smooth;
	scroll-padding-top: 100px;
}
body{
	color: #1a1a1a;
	background: #fff;
	font-family: "IBM Plex Sans JP", sans-serif;
	font-weight: 400;
	letter-spacing: 0.12em;
}
p{
	line-height: 180%;
	font-size: 1rem;
}
a{
	text-decoration-line: none;
}
a:link{
	text-decoration: none;
}
ul li{
	list-style: none;
}
h2,h3,h4{
	font-weight: 400;
}

/* 幅調整　*/
.w1980{
	width: 100%;
	max-width: 1980px;
	margin-inline: auto;
	overflow: clip;
}
.w1600{
	width: calc(100% - 60px);
	max-width: 1600px;
	margin-inline: auto;
}
.w1300{
	width: 100%;
	max-width: 1300px;
	margin-inline: auto;
}
.w960{
	width: 100%;
	max-width: 960px;
	margin-inline: auto;
}

.contents{
	padding: 70px 0;
	position: relative;
	z-index: 2;
}
.wrap80{
	padding: 10px 10%;
}
.wrap_center{
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
}
@media (max-width: 960px){
	.wrap80{
		padding: 10px 5%;
	}
}
@media (max-width: 450px){
	.w1600{
		width: calc(100% - 30px);
	}
	.wrap80{
		padding: 10px 0;
	}
}

/* 背景　*/
.bg_w{
	background-color: rgba(255,255,255,1);
}
.bg_b{
	background: #49badc;
}

.bg_light{
	background: #f5f5f5;
}

.bg_inner{
	padding: 70px 15px;
}
.bg_blur{
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
}
.bg_tx_b{
	background: url("../img/bg_tx_b.jpg") repeat;
}
.bg_gap{
	position: relative;
	width: 100%;
	height: 1px;
}
.bg_gap.rt_green::after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 300px;
	clip-path: polygon(0 150px, 100% 0, 100% 100%, 0% 100%);
	background: #48db9c;
}
.bg_gap.lt_blue::after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 300px;
	clip-path: polygon(0 0, 100% 150px, 100% 100%, 0% 100%);
	background: #49badc;
}
@media (max-width: 1200px){
	.bg_gap.rt_green::after{
		clip-path: polygon(0 100px, 100% 0, 100% 100%, 0% 100%);
	}
	.bg_gap.lt_blue::after{
		clip-path: polygon(0 0, 100% 100px, 100% 100%, 0% 100%);
	}
}
@media (max-width: 750px){
	.bg_gap.rt_green::after{
		clip-path: polygon(0 50px, 100% 0, 100% 100%, 0% 100%);
	}
	.bg_gap.lt_blue::after{
		clip-path: polygon(0 0, 100% 50px, 100% 100%, 0% 100%);
	}
}

.path_bottom_r{
	clip-path: polygon(0 0, 100% 0%, 100% calc(100% - 150px), 0% 100%);
}
.path_bottom_l{
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 150px));
}
.path_rt{
	clip-path: polygon(0 150px, 100% 0%, 100% calc(100% - 150px), 0% 100%);
	padding: 150px 0;
}
.path_lt{
	clip-path: polygon(0 0, 100% 150px, 100% 100%, 0 calc(100% - 150px));
	padding: 150px 0;
}
@media (max-width: 1200px){
	.path_bottom_r{
		clip-path: polygon(0 0, 100% 0%, 100% calc(100% - 100px), 0% 100%);
	}
	.path_bottom_l{
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 100px));
	}
	.path_rt{
		clip-path: polygon(0 100px, 100% 0%, 100% calc(100% - 100px), 0% 100%);
		padding: 100px 0;
	}
	.path_lt{
		clip-path: polygon(0 0, 100% 100px, 100% 100%, 0 calc(100% - 100px));
		padding: 100px 0;
	}
}
@media (max-width: 750px){
	.path_bottom_r{
		clip-path: polygon(0 0, 100% 0%, 100% calc(100% - 50px), 0% 100%);
	}
	.path_bottom_l{
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 50px));
	}
	.path_rt{
		clip-path: polygon(0 50px, 100% 0%, 100% calc(100% - 50px), 0% 100%);
		padding: 100px 0;
	}
	.path_lt{
		clip-path: polygon(0 0, 100% 50px, 100% 100%, 0 calc(100% - 50px));
		padding: 100px 0;
	}
}
/* 画像調整　======================================== */
.img_3-2{
	aspect-ratio: 3 / 2;
	object-fit: cover;
}
.img_4-3{
	aspect-ratio: 4 / 3;
	object-fit: cover;
}
.img_16-9{
	aspect-ratio: 16 / 9;
	object-fit: cover;
}
.img_1-1{
	aspect-ratio: 1 / 1;
	object-fit: cover;
}
.img_1-1round{
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 50%;
}

.mask_back{
	position: absolute;
	top: 30px;
	left: -30px;
	width: calc(100% - 30px);
}
.mask_r{
	position: relative;
	mask-image: url("../img/mask01.svg");
	mask-repeat: no-repeat;
	mask-size: 100%;
	height: 100%;
	object-fit: cover;
	vertical-align: middle;
}


/* 見出し　======================================== */
.txt_lv02{
	font-family: fot-chiaro-std, sans-serif;
	font-weight: 700;
	font-size: clamp(1rem, 0.82rem + 0.64vw, 1.3rem);
	letter-spacing: 0.12em;
	margin-bottom: 30px;
	width: 100%;
	color: #006888;
	line-height: 1;
}
.txt_lv02 .ja{
	position: relative;
	line-height: 1.5;
	font-size: clamp(1.4rem, 0.77rem + 2.24vw, 2.8rem);
}
.txt_lv02 .en{
	display: block;
	font-style: normal;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	line-height: 1;
}

.txt_lv03{
	font-size: 1.2rem;
	border-bottom: solid 8px #49badc;
	position: relative;
	margin-bottom: 30px;
}
.txt_lv03 span.ja{
	line-height: 1.5;
	font-weight: 600;
}
.txt_lv03 span.en{
	display: block;
	font-size: 80%;
	line-height: 100%;
}
.txt_lv03 span.nb{
	font-size: 250%;
	font-family: fot-chiaro-std, sans-serif;
	font-weight: 700;
	color: #49badc;
	line-height: 1;
}
.txt_lv03 span.small{
	font-size: 80%;
}
@media (max-width: 750px){
	.txt_lv03 span.nb{
		display: block;
	}
}

.txt_lv04{
	background: linear-gradient(to right , #006888, #49badc 30% 80% ,#48db9c);
	color: #fff;
	padding: 0.25rem 1rem;
	font-weight: 600;
	vertical-align: middle;
	margin-bottom: 16px;
}
.txt_lv05{
	background: rgba(0,0,0,0.05);
	display: block;
	padding: 0.25em 0.5em;
	margin-bottom: 30px;
}
.txt_lv05 i{
	font-size: 60%;
	vertical-align: middle;
	color: #666;
}

.txt_copy01{
	font-size: clamp(1.1rem, 0.86rem + 0.8533vw, 1.5rem);
	text-align: center;
	color: #1a1a1a;
	position: relative;
    display: block;
	width: fit-content;
    padding: 0 1em;
	margin: 0 auto 30px;
}

.txt_copy01::before {
	position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: 1px;
    height: 100%;
    background: #1a1a1a;
    border-radius: 3px;
    transform: rotate(-25deg);
}
.txt_copy01::after {
	position: absolute;
    content: "";
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background: #1a1a1a;
    border-radius: 3px;
    transform: rotate(25deg);
}

.txt_copy02{
	font-size: clamp(1.2rem, 1.02rem + 0.64vw, 1.5rem);
	margin-bottom: 1em;
	font-family: fot-chiaro-std, sans-serif;
	font-weight: 700;
}
.txt_copy03{
	font-size: clamp(1.2rem, 0.8747rem + 1.1566vw, 1.8rem);
	font-family: fot-chiaro-std, sans-serif;
	font-weight: 700;
	font-style: normal;
	text-align: left;
	position: relative;
	padding-left: 55px;
	width: fit-conttent;
	margin-bottom: 1em;
	color: #006888;
}
.txt_copy03::before{
	content: '';
	position: absolute;
	bottom: 50%;
	left: 0;
	width: 50px;
	height: 1px;
	background: #1a1a1a;
}

span.bold{
	font-weight: 600;
}

span.line{
	background:linear-gradient(transparent 60%, rgba(73,186,220,0.3) 60%);
	font-size: 1em;
}
span.inb{
	display: inline-block;
}

/* ボタン　*/

header{
	position: relative;
	width: 100%;
	z-index: 999;
}
.site-header{
	background:linear-gradient(to bottom, rgba(0,0,0,0.3),rgba(0,0,0,0));
    display: flex;
    position: fixed;
    justify-content: space-between;
	align-items:flex-start;
    width: 100%;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.0);
	transition: .5s;
}
.site-header.transform{
	background:linear-gradient(to bottom, rgba(255,255,255,0.9),rgba(255,255,255,0));
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
}
.site-header h1{
	vertical-align: middle;
	position: relative;
	transition: .5s;
	margin-left: 15px;
	margin-top: 10px;
}
.site-header h1 img{
	width: auto;
	height: 80px;
	vertical-align: middle;
	filter: grayscale(100%) invert(100%) brightness(300%);
	transition: .5s;
	pointer-events: none;
}
.site-header h1 a{
	color: #fff;
	transition: .5s;
}
.site-header.transform h1 img{
	filter: none;
}
.site-header .top_nav{
	margin-right: 90px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin-top: 10px;
}
.site-header .top_nav .h_phone{
	text-align: center;
	color: #fff;
	padding-inline:0.5rem;
}
.site-header .top_nav .h_phone a{
	display: block;
	font-size: 1.3rem;
	font-family: fot-chiaro-std, sans-serif;
	font-weight: 700;
	font-style: normal;
	line-height: 1;
	color: #fff;
	transition: .5s;
}
.site-header .top_nav .h_phone a:hover{
	color: #ccc;
}
.site-header.transform .top_nav .h_phone a{
	color: #006888;
}
.site-header.transform .top_nav .h_phone a:hover{
	color: #49badc;
}
.site-header .top_nav .h_phone .txt{
	font-size: 0.7rem;
	line-height: 1;
	background: #fff;
	color: #006888;
	display: block;
	width: 100%;
	padding: 0.25rem;
	margin-bottom: 0.25rem;
	transition: .5s;
}
.site-header.transform .top_nav .h_phone .txt{
	background: #006888;
	color: #fff;
}
.site-header .h_link{
	margin-top: 10px;
	padding-inline:0.25rem;
}
.site-header .h_link a{
	font-size: 0.9rem;
	font-weight: 600;
	color: #fff;
	vertical-align: middle;
	opacity: 1;
	transition: .5s;
}
.site-header .h_link::after{
	content: "/";
	color: #fff;
	font-size: 1.5rem;
	vertical-align: middle;
	padding-left: 0.5rem;
	transition: .5s;
}
.site-header .h_link a:hover{
	opacity: 0.5;
}
.site-header.transform .h_link a:hover{
	opacity: 1;
	color: #006888;
}
.site-header.transform .h_link a,
.site-header.transform .h_link::after{
	color: #006888;
	text-shadow: 2px 2px 10px #fff;
}
.site-header.transform .h_link a:hover{
	color: #49badc;
}
@media (max-width: 1280px){
	.site-header h1 img{
		height: 70px;
	}
	.site-header .top_nav .h_phone a{
		font-size: 1.2rem;
	}
	.site-header .h_link a{
		font-size: 0.85rem;
	}
}
@media (max-width: 1200px){
	.site-header .top_nav{
		display: none;
	}
}
@media (max-width: 960px){
	.site-header h1{
		margin-left: 10px;
	}
}
/* スライダー　==================== */
.slide_wrap{
	width: 100%;
	position: relative;
	background: #fff;
}
.slider{
	background: #fff;
	position: relative;
	clip-path: polygon(0 0, 100% 0%, 100% calc(100% - 150px), 0% 100%);
	z-index: 2;
}
.slider li{
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	min-height: 650px;
	max-height: 1080px;
	z-index: 9;
	overflow: hidden;
}
.slider li.top01{
	background:url("../img/img01.webp") no-repeat;
	background-size: cover;
	background-position: center;
}
.slider li.top02{
	background:url("../img/img02.webp") no-repeat;
	background-size: cover;
	background-position: center;
}

@keyframes fadezoom{
	0%{
		transform: scale(1);
	}
	100%{
		transform: scale(1.1);
	}
}
.add-animation{
	animation: fadezoom 10s 0s forwards;
}
.slide_wrap .copy{
	position: absolute;
	bottom: 15%;
	left: 10%;
	z-index: 11;
}

.slide_wrap .copy h2{
	font-size: clamp(2rem, 1.1rem + 3.2vw, 4rem);
	font-family: fot-chiaro-std, sans-serif;
	font-weight: 700;
	font-style: normal;
	color: #fff;
	line-height: 1.5;
	text-shadow: 2px 2px 15px rgba(0,0,0,0.1), -2px -2px 15px rgba(0,0,0,0.1);
	margin-bottom: 30px;
}
.slide_wrap .copy h2 span{
	color: #49badc;
	font-size: 150%;
}
.slide_wrap .copy p{
	display: inline;
	color: #fff;
	font-weight: 400;
	font-size: clamp(1rem, 0.865rem + 0.48vw, 1.3rem);
	text-shadow: 2px 2px 10px rgba(0,0,0,0.1), -2px -2px 10px rgba(0,0,0,0.1);
	background:linear-gradient(transparent 0, rgba(73,186,220,0.4) 50%);
}
.slide_bg_point{
	position: absolute;
	z-index: 1;
	bottom: 0;
	left: 0;
	right: 0;
	height: 300px;
	background: #49badc;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 150px));
}
@media (max-width: 1200px){
	.slider{
		clip-path: polygon(0 0, 100% 0%, 100% calc(100% - 100px), 0% 100%);
	}
	.slide_bg_point{
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 100px));
	}
}

@media (max-width: 750px){
	.slider{
		height: 90vh;
		min-height: 600px;
		max-height: 900px;
		clip-path: polygon(0 0, 100% 0%, 100% calc(100% - 50px), 0% 100%);
	}
	.slide_bg_point{
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 50px));
	}
	.slide_wrap .copy{
		left: 30px;
		right: 30px;
	}
}
@media (max-width: 450px){
	.slide_wrap .copy{
		left: 15px;
		right: 15px;
	}
}
/* コンテンツ
   ========================================================================== */
.card001{
	display: flex;
	align-content: flex-start;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.card001 .inner{
	width: calc(100% / 3 - 30px);
	margin: 15px;
	background:rgba(255,255,255,0.5);
	padding: 30px;
	position: relative;
	z-index: 2;
	box-shadow: 2px 2px 10px rgba(0,0,0,0.05);
}
.card001 .inner img{
	width: 100%;
}
.card001 .inner img.icon{
	max-width: 180px;
	display: block;
	margin-inline:auto;
	
}

@media (max-width: 960px){
	.card001{
		flex-direction: column;
		justify-content: center;
		align-items: center;
		margin-inline: auto;
		max-width: 600px;
	}
	.card001 .inner{
		width: calc(100% - 30px);
	}
	
}

.card002{
	display: flex;
	justify-content: center;
	align-items: center;
}
.card002 .img {
	width: 100%;
	padding: 10px;
	position: relative;
}
.card002 .img img{
	width: 100%;
}
.card002 .txt{
	width: 100%;
	padding: 15px;
	align-self: center;
}
.card002 .txt p{
	margin-bottom: 1em;
}
.card002 .rec p{
	text-indent: 1em;
}
.card002 .video{
	width: 100%;
}
.card002 .video video{
	width: 100%;
	aspect-ratio: 16 / 9;
}
.card002 .video iframe{
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 15px;
}
.card002 .img_f{
	display: flex;
	justify-content: space-between;
}
.img_f_in{
	width: 50%;
	padding: 15px;
}
.img_f_in img{
	width: 100%;
	aspect-ratio: 9 / 16;
	object-fit: cover;
}

.card003{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 30px 0;
}
.card003 .img{
	width: 300px;
	padding: 15px;
	align-self: center;
}
.card003 .img_s{
	width: 230px;
	padding: 15px;
	align-self: center;
}
.card003 .img img,
.card003 .img_s img{
	width: 100%;
}
.card003 .txt{
	width: 100%;
	flex: 1;
	padding: 10px 5%;
	align-self: center;
}
.service01 .card003{
	margin: 0;
}
@media (max-width: 960px){
	.card002,
	.card003{
		flex-direction: column;
		justify-content: center;
		align-items: center;
		margin-bottom: 30px;
	}
	.card002 .img{
		width: calc(100% - 30px);
		margin-left: 30px;
		text-align: center;
	}
	.card002 .img img{
		max-width: 600px;
	}
	.card002 .txt{
		padding: 15px;
	}
	.service01 .card003{
		margin-bottom: 30px;
	}
	.reverse{
		flex-direction: column-reverse;
	}
}


@media (max-width: 450px){
	.card003 .txt{
		padding: 10px;
	}
}
/* 写真横並び基本　*/
.photo_flex{
	display: flex;
	align-items:flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
	gap:15px;
}
.photo_flex .img{
	width: calc(50% - 8px);
	padding: 0;
}
.photo_flex img{
	width: 100%;
}


/* カルーセル============================================================ */
.carousel_wrap{
	width: 100%;
	margin: auto;
}
.carousel {
	width:calc(100% - 40px);
	padding: 0;
	margin: auto;
}
.carousel .inner {
	overflow: hidden;
	margin: 20px;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}
.carousel .inner img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}
.carousel .slick-next {
	right: -20px;
	z-index: 50;
}
.carousel .slick-prev {
	left: -20px;
	z-index: 50;
}



/* フッター部分　================================================== */
footer{
	margin-bottom: 0;
	color: #1a1a1a;
	padding-top: 150px;
	position: relative;
	z-index: 3;
}
footer::after{
	content:"";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #48db9c;
	z-index: 1;
	clip-path: polygon(0 0, 100% 100px, 100% 100%, 0% 100%);
}
footer::before{
	content:"";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("../img/bg_tx_b.jpg") repeat;
	z-index: 2;
	clip-path: polygon(0 100px, 100% 0, 100% 100%, 0% 100%);
}

footer h2 img{
	width: 350px;
}
.footer_wrap{
	position: relative;
	z-index: 3;
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-direction: column;
	max-width: 960px;
	padding: 10px;
	margin:auto;
}
.footer_in{
	width: 100%;
	max-width: 960px;
	margin: auto;
	display: flex;
	flex-direction: column;
	justify-content:center;
	align-items: center;
}

.footer_in p{
	text-align: center;
	
}

footer p.copyright{
	font-size: 0.9rem;
	text-align: center;
	padding: 15px;
	background: #006888;
	color: #fff;
	position: relative;
	z-index: 5;
}
footer .phone a{
	font-size: clamp(1.3rem, 1.075rem + 0.8vw, 1.8rem);
	font-family: fot-chiaro-std, sans-serif;
	font-weight: 700;
	font-style: normal;
	color: #49badc;
	transition: .5s;
}
footer .phone a:hover{
	color: #48db9c;
}

@media (max-width: 960px){
	.footer_wrap{
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	
}
@media (max-width: 750px){
	footer h2{
		text-align: center;
	}
	footer h2 img{
		width: 100%;
		max-width: 400px;
	}
}



/* サブページタイトル 
   ========================================================================== */
.subtitle{
	display: block;
	width: 100%;
	height: 500px;
	position: relative;
}
.subtitle h2{
	font-family: fot-chiaro-std, sans-serif;
	font-weight: 700;
	font-style: normal;
	color:#fff;
	position: absolute;
	bottom: 180px;
	left: 0;
	width: 100%;
	line-height: 1;
	text-transform: uppercase;
	padding-bottom: 5px;
	text-align: center;
}
.subtitle h2 span.ja{
	font-size: clamp(2.5rem, 1.1446rem + 4.8193vw, 5rem);
	
}
.subtitle h2 span.en{
	font-size: clamp(1.1rem, 0.92rem + 0.64vw, 1.5rem);
	display: block;
	line-height: 1.2;
	padding-bottom: 0.3em;
}

.sub_bg{
	width: 100%;
	height: 100%;
	background: linear-gradient( rgba(0,0,0,0.3), rgba(0,0,0,0.3)),url("../img/img02.webp");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-color: #ccc;
	clip-path: polygon(0 0, 100% 0%, 100% calc(100% - 150px), 0% 100%);
	position: relative;
	z-index: 2;
}
.sub_bg_point{
	position: absolute;
	z-index: 1;
	bottom: 0;
	left: 0;
	right: 0;
	height: 300px;
	background: #48db9c;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 150px));
}
.sub_bg_point.blue{
	background: #49badc;
}
@media (max-width: 1200px){
	.subtitle{
		height: 450px;
	}
	.sub_bg{
		clip-path: polygon(0 0, 100% 0%, 100% calc(100% - 100px), 0% 100%);
	}
	.sub_bg_point{
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 100px));
	}
}
@media (max-width: 750px){
	.subtitle{
		height: 400px;
	}
	.sub_bg{
		clip-path: polygon(0 0, 100% 0%, 100% calc(100% - 80px), 0% 100%);
	}
	.sub_bg_point{
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 80px));
	}
	.subtitle h2{
		bottom: 150px;
	}
}

/*パンくずリスト ================================================== */
.breadcrumb {
	list-style: none;
	position: absolute;
	z-index: 3;
	bottom: 130px;
	left: 50%;
	transform: translateX(-50%);
	padding: 3px 5px;
	font-size: 0.9em;
	text-align: left;
}

.breadcrumb li {
	display: inline;
	list-style: none;
	line-height: 100%;
	color: #fff;
}

.breadcrumb li:after {
	content: '>';
	color: #fff;
	padding-left: 0.5rem;
}

.breadcrumb li:last-child:after {
	content: '';
}

.breadcrumb li a {
	text-decoration: none;
	color: #fff;
}

.breadcrumb li a:hover {
	text-decoration: underline;
}
@media (max-width: 750px){
	.breadcrumb{
		bottom: 80px;
	}
}


/* TOPへ戻るボタン==================== */
#page_top{
	width: 60px;
	height: 60px;
	position: fixed;
	right: 15px;
	bottom: 15px;
	background:#49badc;
	background-size: 150%;
	z-index: 999;
	box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
	opacity: 0.9;
}
#page_top a{
	position: relative;
	display: block;
	width: 60px;
	height: 60px;
	text-decoration: none;
}
#page_top a::before{
	display: block;
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	content: '\f062';
	font-size: 1.2rem;
	color:#fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50% , -50%);
	margin: auto;
	text-align: center;
}
/* スクロールフェードイン ================================================== */
.fadein {
	opacity : 0.2;
	filter: blur(2px);
	transform : translate(0, 80px);
	transition : all 1s;
	}

.fadein.scrollin {
	opacity : 1;
	filter: none;
	transform : translate(0, 0);
	}
/* スクロールエフェクト ================================================== */
.swipe{
   position: relative;
   overflow: hidden;
}
.swipe::after{
   content: '';
   width: 100%;
   height: 100%;
   position: absolute;
   top: 0;
   left: 0;
   background: #49badc;
   pointer-events: none;
   z-index: 1;
   transform: translateX(-100%);
   transition: 1.2s ease-in-out;
}
.swipe .swipe_in{
   opacity: 0;
   transition: 0.2s ease-in;
   transition-delay: 0.6s;
}
.swipe.inview .swipe_in{
   opacity: 1;
}
.swipe.inview::after{
   transform: translateX(100%);
}

.imgup{
	position: relative;
	overflow: hidden;
	height: fit-content !important;
}
.imgup img{
	transition: 1.8s cubic-bezier(0.6, 0, 0.07, 1);
	transform: translateX(-10%) scale(1.4);
}
.imgup{
	clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
	transition: 1.4s;
	transition-delay: 0.3s;
}
.imgup.inview img{
	transform: translateX(0) scale(1);
}
.imgup.inview {
	clip-path: polygon(0 0, 100% 0, 100% 100%, 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: translateX(2rem) ;
		opacity:0;
	}
	to {
		transform: translateX(0rem) ;
		opacity:1;
	}
}

/* 余白調整　*/
.h30{
	height: 30px;
}
.h50{
	height: 50px;
}
.h70{
	height: 70px;
}
.h100{
	height: 100px;
}
.mt15{
	margin-top: 15px;
}
.mt30{
	margin-top: 30px;
}
.mt50{
	margin-top: 50px;
}
.mt70{
	margin-top: 70px;
}
.mt100{
	margin-top: 100px;
}
.mb0{
	margin-bottom: 0;
}
.pt0{
	padding-top: 0;
}
.pb0{
	padding-bottom: 0;
}

.txt_c{
	text-align: center;
}
.txt_r{
	text-align: right;
}
.col_nv{
	color: #006888;
}
/* 以下非表示 ------------------------------ */
@media (max-width: 1200px){
	.pc{
		display: none !important;
	}
	
}
@media (max-width: 750px){
	.pctb{
		display: none !important;
	}
	
}
@media (max-width: 450px){
	.pctb450{
		display: none;
	}
}

