@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: #1a1a1a;
	font-family: 'Noto 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;
}
::-webkit-scrollbar{
	width: 8px;
	height: 8px;
}
::-webkit-scrollbar-track{
	background-color: #e3e3e3;
}
::-webkit-scrollbar-thumb{
	background-color: #666;
}
/* 幅調整　*/
.w1980{
	width: 100%;
	max-width: 1980px;
	margin: 0 auto;
	overflow: clip;
}
.w1600{
	width: calc(100% - 60px);
	max-width: 1600px;
	margin: auto;
}
.w1300{
	width: 100%;
	max-width: 1300px;
	margin: 0 auto;
}
.w960{
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
}

.contents{
	padding: 70px 0;
	position: relative;
	z-index: 5;
}
.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_light{
	background: rgba(239,239,239,0.5);
}
.bg_blue{
	background: #1664bf;
	color: #fff;
}

.bg_inner{
	padding: 70px 15px;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.05) ,-2px -2px 5px rgba(0,0,0,0.05);
}
.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_blue.bg_img02{
	background-color: #1664bf;
	background-image: url("../img/bg_img02.webp");
	background-repeat: no-repeat;
	background-size: cover;
	color: #fff;
}

.bg_blue.bg_img03{
	background-color: #1664bf;
	background-image: linear-gradient( to bottom ,rgba(0,0,0,0.2) ,rgba(0,0,0,0.2)) , url("../img/bg_img04.webp");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom;
	color: #fff;
}

.bg_naname {
    position: relative;
    height: 1px;
}
.bg_naname .n01_tl_br {
    position: absolute;
    width: 2900px;
    left: -50%;
    right: -50%;
    margin: auto;
}
.bg_naname .n01_tl_br > div {
    position: absolute;
    left: 0;
    top: -300px;
    width: 0;
    height: 1500px;
    background: url("../img/bg_gray_01.webp") left top no-repeat;
    z-index: 1;
    transition: width 2s 0.5s;
    will-change: transform;
}
.bg_naname .n01_tr_bl {
	position: absolute;
    width: 2900px;
    left: -50%;
    right: -50%;
    margin: auto;
}
.bg_naname .n01_tr_bl > div{
	position: absolute;
    right: 0;
    top: -300px;
    width: 0;
    height: 1500px;
    background: url("../img/bg_gray_02.webp") right top no-repeat;
    z-index: 1;
    transition: width 2s 0.5s;
    will-change: transform;
}

.bg_naname.inview .n01_tl_br > div,
.bg_naname.inview .n01_tr_bl > div{
    width: 100%;
    transition: width 2s 1s;
}

.box_wrap_rt{
	position: relative;
}
.box_wrap_rt::before{
	display: block;
    content: '';
    width: 75%;
    height: calc(100% - 200px);
    position: absolute;
    top: 0;
    right: 0;
    background: #f5f5f5;
    z-index: -1;
}
.box_wrap_lt{
	position: relative;
}
.box_wrap_lt::before{
	display: block;
    content: '';
    width: 75%;
    height: calc(100% - 200px);
    position: absolute;
    top: 0;
	left: 0;
    background: #f5f5f5;
    z-index: -1;
}
/* 画像調整　*/
.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%;
}
.img_center{
	text-align: center;
}
.img_center img{
	width: calc(100% - 15px);
	max-width: 500px;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	box-shadow: 15px 15px #e1f2fa;
}
.img_center02{
	text-align: center;
}
.img_center02 img{
	width: auto;
	max-width: 250px;
}

.txt_lv02{
	font-size: clamp(1rem, 0.82rem + 0.64vw, 1.3rem);
	font-weight: 400;
	letter-spacing: 0.12em;
	margin-bottom: 30px;
	display: block;
	width: 100%;
	line-height: 120%;
}
.txt_lv02 .ja{
	font-family: 'Noto Sans JP', sans-serif;
	display: block;
	position: relative;
	margin-top: 1rem;
}
.txt_lv02 .ja::before{
	position: absolute;
	content: '';
	display: block;
	left: 0;
	top: -10px;
	width: 2rem;
	height: 5px;
	background: #1664bf;
}
.txt_lv02 .en{
	font-family: "Barlow Semi Condensed", sans-serif;
	font-weight: 600;
	font-style: normal;
	font-size: 200%;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #1664bf;
}
.txt_lv02.txt_c .ja::before{
	left: calc(50% - 1rem);
}
.bg_blue .txt_lv02 .en,
.bg_img01 .txt_lv02 .en,
.bg_contact .txt_lv02 .en{
	color: #fff;
}
.bg_blue .txt_lv02 .ja::before,
.bg_img01 .txt_lv02 .ja::before,
.bg_contact .txt_lv02 .ja::before{
	background: #fff;
}

.txt_lv03{
	font-size: 1.2rem;
	border-bottom: solid 5px #1664bf;
	position: relative;
	margin-bottom: 15px;
	padding-bottom: 0.5em;
}
.txt_lv03 span.ja{
}
.txt_lv03 span.en{
	font-family: "Barlow Semi Condensed", sans-serif;
	display: block;
	font-size: 80%;
	line-height: 100%;
	font-weight: 600;
}
.txt_lv03 span.nb{
	font-size: 200%;
	font-family: "Barlow Semi Condensed", sans-serif;
	display: block;
	color: #1664bf;
	font-weight: 600;
}

.txt_lv04{
	color: #1664bf;
	font-weight: 600;
	font-size: 1rem;
	margin-bottom: 0.5rem;
	
}
.txt_lv05{
	background: #1664bf;
	color: #fff;
	display: block;
	padding: 0.25em 0.5em;
	font-weight: 600;
	margin-bottom: 0.5rem;
}
.txt_lv05 i{
	vertical-align: middle;
}

.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;
}
.txt_copy03{
	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: #1a1a1a;
}
.txt_copy03.bg_b::before{
	content: '';
	position: absolute;
	bottom: 50%;
	left: 0;
	width: 50px;
	height: 1px;
	background: #fff;
}

span.bold{
	font-size: 1.1em;
	font-weight: 600;
}

span.line{
	background:linear-gradient(transparent 60%, rgba(235,153,1,0.5) 60%);
	font-size: 1em;
	display: inline-block;
}
.inb{
	display: inline-block;
}
.col_b{
	color: #1664bf;
}

/* ボタン　*/

header{
	position: relative;
	width: 100%;
	z-index: 999;
}
.site-header{
	background:linear-gradient( to bottom, rgba(0,0,0,0.2),rgba(0,0,0,0.0));
    display: flex;
    position: fixed;
    justify-content: space-between;
	align-items:center;
    width: 100%;
	height: 80px;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.0);
	transition: .5s;
}
.site-header.transform{
    background:rgba(255,255,255,1.0);
	box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}
.site-header h1{
	vertical-align: middle;
	position: relative;
	transition: .5s;
	margin-left: 30px;
}
.site-header h1 img{
	width: auto;
	height: 50px;
	vertical-align: middle;
	filter:grayscale(100%) invert(100%) brightness(300%);
	transition: .3s;
}
.site-header h1 a{
	color: #fff;
	transition: .5s;
}
.site-header.transform h1 img{
	filter: none;
}

.header_phone{
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	font-size: 1.1rem;
	font-weight: 600;
}
.site-header .h_phone a{
	display: block;
	width: 250px;
	line-height: 40px;
	vertical-align: middle;
	text-align: center;
	padding: 0 15px;
	background: #1664bf;
	color: #fff;
	transition: .5s
}

.site-header .h_phone a:hover{
	background: #179BBF;
}
.site-header .h_mail a{
	display: block;
	width: 250px;
	line-height: 40px;
	vertical-align: middle;
	text-align: center;
	padding: 0 15px;
	background: #2B5C95;
	color: #fff;
	transition: .5s
}
.site-header .h_mail a:hover{
	background: #179BBF;
}
@media (max-width: 960px){
	.site-header h1{
		margin-left: 10px;
	}
}
@media (max-width: 750px){
	.site-header h1 img{
		height: 45px;
	}
}
@media (max-width: 450px){
	.site-header h1 img{
		height: 40px;
	}
}

/*global_nav ==================*/
.site-header .global_nav{
	margin: auto;
	padding: 0 10px;
}
.site-header .global_nav ul#main{
	width: 100%;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.site-header .global_nav #main > li{
	position: relative;
	font-weight: 500;
	line-height: 150%;
	padding-left: 1.5rem;
	z-index: 5;
	margin-top: 10px;
}

.site-header .global_nav #main > li > a{
	display: block;
	width: 100%;
	text-align: center;
	color: #fff;
	white-space: normal;
	transition: .3s;
}
.site-header.transform .global_nav #main > li > a{
	color: #1a1a1a;
}
.site-header .global_nav #main > li > a > span{
	font-family: "Barlow Semi Condensed", sans-serif;
	display: block;
	font-size: .7rem;
	text-transform:uppercase;
	color: #fff;
	font-weight: 600;
	font-style: normal;
	line-height: 1;
}
.site-header.transform .global_nav #main > li > a > span{
	color: #1664bf;
}
.site-header .global_nav #main > li > a:hover{
	opacity: 0.5;
}

.site-header .drop {
  overflow: hidden;
	list-style: none;
	position: absolute;
	visibility:hidden;
	transform-origin: top;
	transform: scaleY(0);
	padding: 0;
	width: 220px;
	left: -25%;
	top: 48px;
	transition: .5s;
}

.site-header .drop li {
	display: block;
	margin-top: 0.5rem;
	transition: .5s;
}
.drop li a{
	display: block;
	color: #fff;
	background:#1664bf;
	width: 100%;
	text-align: center;
	font-size: 0.9rem;
	padding: 1em;
	transition: .5s;
}
.drop li a:hover{
	background: #179BBF;
}

.site-header .global_nav ul#main li:hover ul.drop{
	transform: scaleY(1);
	visibility: visible;
	transform-origin: top left;
}
@media (max-width: 1200px){
	.global_nav{
		display: none;
	}
}

/* スライダー　==================== */
.slide_wrap{
	width: 100%;
	position: relative;
	overflow: hidden;
	z-index: 2;
}
.slider{
	overflow: hidden;
}
.slider::after{
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10;
	background: linear-gradient(rgba(0,0,0,0.05) 10%,rgba(0,0,0,0.05)) ;
}
.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 img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.add-animation{
	animation: fadezoom 10s 0s forwards;
}
.slide_wrap .copy{
	position: absolute;
	max-width: 1200px;
	bottom: 25%;
	left: 50px;
	z-index: 11;
}

.slide_wrap .copy h2{
	color: #fff;
	font-size: clamp(1.5rem, 0.3rem + 4.2667vw, 3.5rem);
	font-weight: 600;
	
}
.slide_wrap .copy h2 img{
	width: 100%;
	padding: 15px;
	vertical-align: middle;
}

@media (max-width: 768px){
	.slider{
		height: 90vh;
		min-height: 600px;
		max-height: 900px;
	}
	.slide_wrap .copy{
		width: calc(100% - 80px);
		min-width: 300px;
	}
}
/* コンテンツ
   ========================================================================== */

.card001{
	width: 100%;
	display: flex;
	align-content: flex-start;
	justify-content: flex-start;
	margin: 50px auto;
	gap:15px;
}
.card001 .inner{
	width: calc(100% / 3);
	padding: 15px;
}
.card001 .inner img{
	width: 100%;
	margin: 15px 0;
}
.card001 .inner:nth-child(1){
	transform: translateY(-50px);
}
.card001 .inner:nth-child(3){
	transform: translateY(50px);
}


@media (max-width: 960px){
	.card001{
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.card001 .inner{
		width: calc(100% - 100px);
		max-width: 600px;
	}
	.card001 .inner:nth-child(1){
		transform: translateY(0);
		align-self: flex-start;
	}
	.card001 .inner:nth-child(2){
		align-self: center;
	}
	.card001 .inner:nth-child(3){
		align-self: flex-end;
		transform: translateY(0);
	}
}
@media (max-width: 769px){
	.card001 .inner{
		width: 100%;
		max-width: 600px;
	}
	.card001 .inner:nth-child(1){
		transform: translateY(0);
		align-self: center;
	}
	.card001 .inner:nth-child(2){
		align-self: center;
	}
	.card001 .inner:nth-child(3){
		align-self: center;
		transform: translateY(0);
	}
}

.card002{
	display: flex;
	justify-content: center;
	align-items: center;
}
.card002 .img {
	width: 100%;
	padding: 10px;
}
.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{
	width: 100%;
	display: flex;
	justify-content: space-between;
}
.img_f_in{
	width: 50%;
	padding: 15px;
}
.img_f .img_f_in:last-child{
	margin-top: 70px;
}
.img_f_in img{
	width: 100%;
	aspect-ratio: 2 / 3;
	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{
	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 .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;
	}
}
/* 写真横並び基本　*/
.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%;
}



/* コンタクト　================================================== */
.bg_contact{
	background: linear-gradient(rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.5) 100%),
		url("../img/bg_img01.webp");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	color: #fff
}

/*Safariのみ*/
::-webkit-full-page-media, :future, :root .bg_contact{
	background-attachment: scroll;
}

.footer_contact{
	display: flex;
	justify-content: center;
	text-align: center;
	max-width: 960px;
	margin: auto;
}
.footer_contact .phone{
	color: #fff;
	font-weight: 400;
	display: block;
	width: calc(100% - 30px);
	margin: 15px;
	padding: 1.5rem;
	border: solid 1px #fff;
	line-height: 100%;
	background: rgba(0,0,0,0.0);
	transition: .5s;
}
.footer_contact .phone .txt{
	font-family: "Barlow Semi Condensed", sans-serif;
	font-weight: 600;
	font-size: 1rem;
	text-align: center;
	display: block;
	line-height: 120%;
}
.footer_contact .phone .nb{
	font-size: 1.6rem;
	line-height: 120%;
}
.footer_contact .phone:hover{
	background: rgba(0,0,0,0.3);
	color: #fff;
}
@media (max-width: 960px){
	.footer_contact{
		flex-direction: column;
	}
}

/* フッター部分　================================================== */
footer{
	margin-bottom: 0;
	padding: 70px 10px 0;
	background: #efefef;
	color: #1a1a1a;
	z-index: 2;
}
footer h2{
	margin-bottom: 30px;
}

footer h2 img{
	width: 350px;
}
.footer_wrap{
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-direction: column;
	max-width: 960px;
	padding: 0 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;
}
.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;
	}
	.footer_contact{
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	
}
@media (max-width: 750px){
	footer h2{
		text-align: center;
	}
	footer h2 img{
		width: calc(100% - 60px);
	}
}



/* サブページタイトル 
   ========================================================================== */
.subtitle{
	display: block;
	width: 100%;
	height: 450px;
	background-size: cover;
	background-color: #ccc;
	position: relative;
	z-index: 2;
}
.subtitle h2{
	color:#fff;
	position: absolute;
	bottom: 100px;
	left: 50%;
	transform: translateX(-50%);
	font-size:1.2em;
	text-transform: uppercase;
	padding-bottom: 5px;
	text-align: center;
}
.subtitle h2 span.en{
	font-family: "Barlow Semi Condensed", sans-serif;
	font-weight: 600;
	font-size: clamp(2.5rem, 1.1446rem + 4.8193vw, 5rem);
	vertical-align: top;
}

.sub_bg{
	background: linear-gradient( rgba(0,0,0,0.2), rgba(0,0,0,0.2)),url("../img/bg_img03.webp");
	background-repeat: no-repeat;
	background-position:right center;
	background-size: cover;
	background-color: #ccc;
}
@media (max-width: 960px){
	.subtitle{
		height: 350px;
	}
	.subtitle h2{
		width: 100%;
		bottom: 70px;
	}
}

/*パンくずリスト ================================================== */
.breadcrumb {
	list-style: none;
	position: absolute;
	bottom: 1em;
	right: 1em;
	padding: 3px 5px;
	font-size: 0.9em;
}

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

.breadcrumb li:after {
	content: '>';
	padding: 0 0.2em;
	color: #fff;
}

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

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

.breadcrumb li a:hover {
	text-decoration: underline;
}



/* TOPへ戻るボタン==================== */
#page_top{
	position: fixed;
	bottom: 15px;
	right: 10px;
	z-index: 999;
}
#page_top a img{
	position: absolute;
	bottom: 0;
	right: 0;
	width: 25px;
}
@media (max-width: 1200px){
	#page_top a img{
		bottom: 50px;
		width: 20px;
	}
}
/* スクロールフェードイン ================================================== */
.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: #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%);
}
/* スクロールエフェクト ================================================== */
.imgup {
	position: relative;
	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;
	display: inline-block;
}
.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;
}
.pt0{
	padding-top: 0;
}
.pb0{
	padding-bottom: 0;
}
.txt_c{
	text-align: center;
}
.txt_r{
	text-align: right;
}
/* 以下非表示 ------------------------------ */
@media (max-width: 1200px){
	.pc{
		display: none !important;
	}
	
}
@media (max-width: 750px){
	.pctb{
		display: none !important;
	}
	
}
@media (max-width: 450px){
	.pctb450{
		display: none;
	}
}

