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

/* 以下非表示*/
@media (min-width: 1200px){
	.openbtn,#g-nav{
		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: 120px;
}
body{
	color: #333;
	background: #fff;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	font-style: normal;
	letter-spacing: 0.12em;
}
p{
	line-height: 180%;
	font-size: 1rem;
}
a{
	text-decoration-line: none;
}
a:link{
	text-decoration: none;
}
ul li,ol li{
	list-style: none;
}
h2,h3,h4{
	font-weight: 400;
}
/* 幅調整　*/
.w1980{
	width: 100%;
	max-width: 1980px;
	margin: 0 auto;
	overflow: clip;
}
.w1600{
	width: calc(100% - 60px);
	max-width: 1600px;
	margin-inline: auto;
	position: relative;
	z-index: 5;
}
.inner_wrap{
	width: calc(100% - 60px);
	max-width: 1300px;
	margin-inline: auto;
	padding: 70px 15px;
	position: relative;
	border-radius: 50px;
	z-index: 2;
}
.w1300{
	width: 100%;
	max-width: 1300px;
	margin-inline: auto;
}
.w960{
	width: 100%;
	max-width: 960px;
	margin-inline: auto;
}

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

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

.bg_light{
	background: #f8f4e6;
}

.bg_inner{
	padding: 50px 0;
}
.bg_blur{
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
}
.bg_img01{
	background:linear-gradient( to bottom ,rgba(0,0,0,0.5) ,rgba(0,0,0,0.5)) , url("../img/bg_img01.webp");
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	color: #fff;
}
/*Safariのみ*/
::-webkit-full-page-media, :future, :root .bg_img01{
	background-attachment: scroll;
}
.bg_tx_tr{
	background: url("../img/bg_tx02_tr.webp") no-repeat;
	background-position: top right;
	background-size: 40%;
}
.bg_tx_tl{
	background: url("../img/bg_tx02_tl.webp") no-repeat;
	background-position: top left;
	background-size: 40%;
}
@media (max-width: 1200px){
	.bg_tx_tr,
	.bg_tx_tl{
		background-size: 50%;
	}
}

/* 画像調整 ============================================================ */
.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%;
}
.bdr_30{
	border-radius: 30px;
}
.bdr_15{
	border-radius: 15px;
}
/* 装飾画像 ============================================================ */
.cut_tl{
	position: absolute;
	top: -50px;
	left: -30px;
	z-index: 1;
}
.cut_tl img{
	width: 300px;
}
.cut_tr{
	position: absolute;
	top: -50px;
	right: -30px;
	z-index: 1;
}
.cut_tr img{
	width: 300px;
}

.cut_br_s{
	position: absolute;
	bottom: 0;
	right: 6%;
	z-index: 1;
}
.cut_bl_s{
	position: absolute;
	bottom: 0;
	left: 6%;
	z-index: 1;
}
.cut_tl_s{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
.cut_tr_s{
	position: absolute;
	top: -30px;
	right: 0;
	z-index: 1;
}
.cut_br_s img,
.cut_tl_s img,
.cut_tr_s img,
.cut_bl_s img{
	width: 200px;
}

@media (max-width: 1200px){
	.cut_tl img,
	.cut_tr img{
		width: 250px;
	}
	.cut_br_s img,
	.cut_tl_s img,
	.cut_tr_s img,
	.cut_bl_s img{
		width: 180px;
	}
}
@media (max-width: 750px){
	.cut_tl img,
	.cut_tr img{
		width: 200px;
	}
	.cut_br_s img,
	.cut_tl_s img,
	.cut_tr_s img,
	.cut_bl_s img{
		width: 160px;
	}
}
/* 動き ============================================================ */
.shake-up {
    animation: shake-up 3s infinite ease-in-out;
}

@keyframes shake-up {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(15px);
    }
}

/* 見出し ============================================================ */
.txt_lv02{
	font-size: clamp(1rem, 0.82rem + 0.64vw, 1.3rem);
	font-family: "Kosugi Maru", sans-serif;
	font-weight: 400;
	letter-spacing: 0.12em;
	text-align: center;
	margin-inline: auto;
	margin-bottom: 30px;
	padding-bottom: 25px;
	background: url("../img/border01.png") no-repeat;
	background-position: bottom center;
	background-size: auto 12px;
	display: block;
	
}
.txt_lv02 .ja{
	display: block;
	position: relative;
	margin-top: 0.5rem;
}

.txt_lv02 .en{
	display: inline-block;
	font-family: "Fredoka", sans-serif;
	font-weight: 500;
	position: relative;
	font-size: 200%;
	letter-spacing: 0.15em;
	text-transform:capitalize;
	width: fit-content;
	margin: auto;
	line-height: 1;
}
.txt_lv02 .en::before{
	position: absolute;
	content: '';
	display: block;
	left: -3rem;
	top: 50%;
	width: 2.5rem;
	height: 2px;
	background: #333;
}
.txt_lv02 .en::after{
	position: absolute;
	content: '';
	display: block;
	right: -3rem;
	top: 50%;
	width: 2.5rem;
	height: 2px;
	background: #333;
}
.txt_lv02 .en.col_g{
	color: #8cc63f;
}
.txt_lv02 .en.col_g::before,
.txt_lv02 .en.col_g::after{
	background:#8cc63f;
}
.txt_lv02 .en.col_p{
	color: #f291ab;
}
.txt_lv02 .en.col_p::before,
.txt_lv02 .en.col_p::after{
	background:#f291ab;
}
.txt_lv02 .en.col_o{
	color: #f29d49;
}
.txt_lv02 .en.col_o::before,
.txt_lv02 .en.col_o::after{
	background:#f29d49;
}
.txt_lv02 .en.col_pu{
	color: #b299f4;
}
.txt_lv02 .en.col_pu::before,
.txt_lv02 .en.col_pu::after{
	background:#b299f4;
}


.txt_lv03{
	font-family: "Kosugi Maru", sans-serif;
	font-size: 1.2rem;
	border-bottom: solid 3px #ccc;
	position: relative;
	margin-bottom: 1em;
	padding-bottom: 0.5em;
}
.txt_lv03 span.ja{
}
.txt_lv03 span.en{
	font-family: "Fredoka", sans-serif;
	font-weight: 500;
	display: block;
	font-size: 80%;
	line-height: 100%;
}
.txt_lv03::after{
	content: "";
	display: block;
	position: absolute;
	z-index: 2;
	left: 0;
	bottom: -3px;
	width: 100px;
	height: 3px;
	background-color: #f29d49;
}
.txt_lv04{
	
}
.txt_lv05{
	background: rgba(250,227,96,0.6);
	display: block;
	padding: 0.25em 0.5em;
	margin-bottom: 30px;
}
.txt_lv05 i{
	font-size: 60%;
	vertical-align: middle;
	color: #f29d49;
	padding-right: 0.2rem;
}

.txt_copy01{
	font-size: clamp(1.1rem, 0.86rem + 0.8533vw, 1.5rem);
	font-family: "Kosugi Maru", sans-serif;
	text-align: center;
	color: #333;
	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: #333;
    border-radius: 3px;
    transform: rotate(-25deg);
}
.txt_copy01::after {
	position: absolute;
    content: "";
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background: #333;
    border-radius: 3px;
    transform: rotate(25deg);
}

.txt_copy02{
	font-family: "Kosugi Maru", sans-serif;
	font-size: clamp(1.2rem, 1.02rem + 0.64vw, 1.5rem);
	margin-bottom: 1em;
}
.txt_copy03{
	font-family: "Kosugi Maru", sans-serif;
	font-size: clamp(1.2rem, 0.8747rem + 1.1566vw, 1.8rem);
	text-align: left;
	position: relative;
	padding-left: 55px;
	width: fit-conttent;
	margin-bottom: 1em;
}
.txt_copy03::before{
	content: '';
	position: absolute;
	bottom: 50%;
	left: 0;
	width: 50px;
	height: 1px;
	background: #333;
}
.txt_copy03.bg_b::before{
	content: '';
	position: absolute;
	bottom: 50%;
	left: 0;
	width: 50px;
	height: 1px;
	background: #fff;
}

span.bold{
	font-weight: 600;
}

span.line{
	background:linear-gradient(transparent 60%, rgba(235,153,1,0.5) 60%);
	
}
span.inb{
	display: inline-block;
}

/* ボタン　*/

header{
	position: relative;
	width: 100%;
	z-index: 999;
}
.site-header{
    display: flex;
    position: fixed;
    justify-content: space-between;
	align-items:flex-start;
    width: 100%;
	transition: .5s;
}
.site-header .header_title{
	vertical-align: middle;
	position: relative;
	background:rgba(255,255,255,0);
	padding: 15px 30px 15px 15px;
	border-bottom-right-radius: 30px;
	transition: .5s;
}

.site-header h1 img{
	width: auto;
	height: 120px;
	vertical-align: middle;
	transition: .5s;
}
.site-header.transform .header_title{
	background:rgba(255,255,255,1.0);
	box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
}
.site-header.transform h1 img{
	height: 90px;
}

.site-header .h_phone a{
	display: block;
	font-size: 1.6rem;
	padding: 1rem 1rem 1rem 1.5rem;
	color: #fff;
	background: #f29d49;
	font-family: "Kosugi Maru", sans-serif;
	border-bottom-left-radius: 20px;
	transition: .5s;
}
.site-header .h_phone a:hover{
	opacity: 0.6;
}
.nav_wrap{
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: flex-start;
}

.site-header .top_nav{
	background: #fff;
	border-bottom-left-radius: 20px;
	box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
}
.site-header .top_nav ul{
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	padding-left: 30px;
	padding-right: 15px;
}
.site-header .top_nav ul li{
	margin: auto;
	font-size:1.1rem;
	font-family: "Kosugi Maru", sans-serif;
	text-align: center;
	position: relative;
}
.site-header .top_nav ul li a{
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	color: #333;
	line-height: 1.2;
	padding: 15px;
	transition: 0.5s;
	z-index: 2;
}

.site-header .top_nav ul li a span{
	font-size: 80%;
}

.site-header .top_nav ul li::after{
	position: absolute;
	content: "";
	top: 50%;
	left: 50%;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	background: #f291ab;
	z-index: 1;
	transform: translate(-50%,-50%) scale(0.1);
	opacity: 0;
	transition: .5s;
}
.site-header .top_nav ul li:hover::after{
	transform: translate(-50%,-50%) scale(1);
	opacity: 0.8;
}

@media (max-width: 1200px){
	.site-header h1 img{
		height: 100px;
	}
	.site-header.transform h1 img{
		height: 80px;
	}
	.nav_wrap{
		display: none;
	}
}
@media (max-width: 960px){
	.site-header h1 img{
		height: 90px;
	}
	.site-header.transform h1 img{
		height: 70px;
	}
}
@media (max-width: 750px){
	.site-header h1 img{
		height: 80px;
	}
	.site-header.transform h1 img{
		height: 60px;
	}
}
@media (max-width: 450px){
	.site-header h1 img{
		height: 70px;
	}
}
/* スライダー　==================== */
.slide_wrap{
	width: 100%;
	height: 100vh;
	min-height: 768px;
	max-height: 1080px;
	position: relative;
	overflow: hidden;
	background: url("../img/bg_tx01_t.webp") no-repeat;
	background-position: top center;
	background-size: 100%;
}
.slider{
	position: absolute;
	top: 60%;
	right: 50px;
	left: calc(30% - 50px);
	transform: translateY(-50%);
	height: 100%;
	width: 100%;
	max-width: calc(70% - 50px);
	max-height: 65%;
	aspect-ratio: 3 / 2;
	border-radius: 50px;
	z-index: 3;
}
.slide_wrap .img01{
	position: absolute;
	bottom: 15px;
	right: 30px;
	text-align: right;
	z-index: 4;
}
.slide_wrap .img01 img{
	width: 350px;
}

.slide_wrap .copy{
	position: absolute;
	bottom: 20%;
	left: 70px;
	z-index: 5;
}
.slide_wrap .copy h2{
	font-family: "Kosugi Maru", sans-serif;
	font-weight: 400;
	font-size: clamp(1.5rem, 0.825rem + 2.4vw, 3rem);
	line-height: 1.5;
	text-shadow: 2px 2px rgba(255,255,255,1), -2px -2px rgba(255,255,255,1), -2px 2px rgba(255,255,255,1), 2px -2px rgba(255,255,255,1),
		2px 0 1px rgba(255,255,255,1), 0 2px 1px rgba(255,255,255,1) ,-2px 0 1px rgba(255,255,255,1), 0 -2px 1px rgba(255,255,255,1);
}
@media (max-width: 1200px){
	.slider{
		top: 120px;
		left: 50px;
		right: 50px;
		width: calc(100% - 100px);
		aspect-ratio: 5 / 4;
		max-width:none;
		height: auto;
		transform: none;
	}
	.slide_wrap .copy{
		bottom: 100px;
		left: 50px;
	}
	.slide_wrap .img01{
		right: 0;
	}
	.slide_wrap .img01 img{
		width: 300px;
	}
}
@media (max-width: 960px){
	.slide_wrap{
		width: 100%;
		height: 90vh;
		min-height: 600px;
		max-height: 980px;
		background-size: 116%;
	}
	.slider{
		left: 30px;
		right: 30px;
		width: calc(100% - 60px);
	}
	.slide_wrap .img01 img{
		width: 250px;
	}
}
@media (max-width: 750px){
	.slider{
		aspect-ratio: 1 / 1;
	}
}

@media (max-width: 450px){
	.slider{
		left: 15px;
		right: 15px;
		width: calc(100% - 30px);
		border-radius: 30px;
	}
	.slide_wrap .copy{
		bottom: 50px;
		left: 30px;
	}
	
}
/* コンテンツ
   ========================================================================== */
.card001{
	display: flex;
	align-content: flex-start;
	justify-content: flex-start;
	gap:15px;
}
.card001 .inner{
	width: 100%;
	margin: 20px;
	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);
}

@media (max-width: 960px){
	.card001{
		flex-direction: column;
		justify-content: center;
		align-items: center;
		margin-inline: auto;
		max-width: 450px;
	}
	.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 .wrap{
	width: 100%;
	padding: 0 30px;
	position: relative;
}
.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;
	flex-basis: 300px;
	padding: 15px;
	align-self: center;
}
.card003 .img img{
	width: 100%;
}
.card003 .txt{
	width: 100%;
	flex: 1;
	padding: 10px 5%;
	align-self: center;
}
@media (max-width: 960px){
	.card002,
	.card003{
		flex-direction: column;
		justify-content: center;
		align-items: center;
		margin-bottom: 30px;
	}
	.card002 .wrap{
		max-width: 700px;
		margin-bottom: 30px;
		margin-top: 30px;
	}
	.card002 .img{
		text-align: center;
	}
	.card002 .img img{
		max-width: 600px;
	}
	.card002 .txt{
		padding: 15px;
	}
	.reverse{
		flex-direction: column-reverse;
	}
}


@media (max-width: 450px){
	.card003 .txt{
		padding: 10px;
	}
}



/* カルーセル============================================================ */
.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_contact{
	display: flex;
	justify-content: center;
	text-align: center;
	max-width: 960px;
	margin-inline: auto;
}
.footer_contact .phone{
	color: #333;
	font-weight: 400;
	display: block;
	width: calc(100% - 30px);
	margin: 15px;
	padding: 1.5rem;
	border: solid 3px #f29d49;
	border-radius: 100px;
	line-height: 100%;
	background: rgba(255,255,255,1);
	transition: .5s;
}
.footer_contact .phone .txt{
	font-size: 1rem;
	text-align: center;
	display: block;
	line-height: 120%;
	transition: .5s;
}
.footer_contact .phone .nb{
	font-family: "Fredoka", sans-serif;
	font-weight: 500;
	color: #f29d49;
	font-size: 1.6rem;
	line-height: 120%;
	transition: .5s;
}
.footer_contact .phone:hover{
	background: rgba(242,157,73,1.0);
	color: #333;
}

.footer_contact .phone:hover .txt,
.footer_contact .phone:hover .nb{
	color: #fff;
}
@media (max-width: 960px){
	.footer_contact{
		flex-direction: column;
	}
}

/* フッター部分　================================================== */
footer{
	width: 100%;
	overflow: clip;
	margin-bottom: 0;
	padding: 50px 10px 0;
	color: #333;
	background: url("../img/bg_tx01_b.webp") no-repeat;
	background-position: bottom;
	background-size: 100%;
}


footer h2 img{
	width: 400px;
	padding: 15px;
}
.footer_wrap{
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-direction: column;
	max-width: 960px;
	padding: 0 10px;
	margin-inline: 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;
}
.cut_footer{
	width: 150px;
	padding: 15px;
}

footer p.copyright{
	font-size: 0.9rem;
	text-align: center;
	padding: 15px;
	border-top: solid 1px ;
}
@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: calc(100% - 60px);
	}
}



/* サブページタイトル 
   ========================================================================== */
.subtitle{
	display: block;
	width: 100%;
	height: 400px;
	background-image: url("../img/clip01.webp");
	background-position: bottom 0 right;
	background-size: cover;
	background-color: #fff;
	position: relative;
}
.subtitle h2{
	color:#f29d49;
	position: absolute;
	bottom: 100px;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
}
.subtitle h2 span.ja{
	font-size: clamp(2rem, 1.1rem + 3.2vw, 4rem); 
	font-family: "Kosugi Maru", sans-serif;
}
.subtitle h2 span.en{
	font-family: "Fredoka", sans-serif;
	font-weight: 500;
	font-size: clamp(1rem, 0.55rem + 1.6vw, 2rem);
}

@media (max-width: 1200px){
	.subtitle{
		height: 350px;
		background-size: 130%;
		background-position: bottom center;
	}
	.subtitle h2{
		width: 100%;
	}
}
@media (max-width: 960px){
	.subtitle{
		background-size: 150%;
	}
}
@media (max-width: 750px){
	.subtitle{
		background-size: 180%;
	}
}

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

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

.breadcrumb li:after {
	content: '｜';
	padding-left: 0.5em;
	color: #333;
}

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

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

.breadcrumb li a:hover {
	text-decoration: underline;
}
@media (max-width: 750px){
	.breadcrumb{
		font-size: 0.8em;
	}
}


/* TOPへ戻るボタン==================== */
#page_top{
	width: 50px;
	height: 50px;
	position: fixed;
	right: 0;
	bottom: 0;
	opacity: 0.8;
	z-index: 999;
}
#page_top a{
	display: block;
	border-top: solid 1px #333;
	border-left: solid 1px #333;
	width: 24px;
	height: 24px;
	transform: rotate(45deg);
}
/* スクロールフェードイン ================================================== */
.fadein {
	opacity : 0.2;
	filter: blur(4px);
	transform : translate(0, 100px);
	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: #fff;
   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%);
}
/* テキストアニメ　==================== */
.eachTextAnime span{
	opacity: 0;
}
.eachTextAnime.appeartext span{ 
	animation:text_anime_on 1.5s ease-out forwards; 
}
@keyframes text_anime_on {
	0% {
		opacity:0;
		
	}
	100% {
		opacity:1;
		transform : translate(0, 0);
	}
}
/* Loading背景画面設定　==================== */
#splash {
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background-color: #fff;
	text-align:center;
}

/* Loading画像中央配置　*/
#splash_logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
	width: 90%;
	max-width:350px;
}
/* 余白調整　*/
.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;
}
.mb70{
	margin-bottom: 70px;
}
.mb30{
	margin-bottom: 30px;
}
.pt0{
	padding-top: 0;
}
.pb0{
	padding-bottom: 0;
}
.txt_c{
	text-align: center;
}
.txt_r{
	text-align: right;
}

.mask_back{
	position: absolute;
	top: 30px;
	left: -15px;
	width:calc(100% - 30px);
}
.mask_01{
	width: 100%;
	object-fit: cover;
	position: relative;
	mask-image: url("../img/clip01.webp");
	mask-repeat: no-repeat;
	mask-size: 100%;

}
.mask_02{
	position: relative;
	mask-image: url("../img/clip02.webp");
	mask-repeat: no-repeat;
	mask-size: 100%;

}
/* 以下非表示 ------------------------------ */
@media (max-width: 1200px){
	.pc{
		display: none !important;
	}
	
}
@media (max-width: 750px){
	.pctb{
		display: none !important;
	}
	
}
@media (max-width: 450px){
	.pctb450{
		display: none;
	}
}

