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

/* all */
html {
	scroll-behavior: smooth;
	scroll-padding-top: 120px;
}
body{
	color: #333;
	background: #f5f4f3;
	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,h5,th{
	font-weight: 400;
}
/* 幅調整　*/
.w2560{
	width: 100%;
	max-width: 2560px;
	margin-inline: auto;
	overflow: clip;
}
.w1920{
	width: 100%;
	max-width: 1920px;
	margin-inline: auto;
	overflow: clip;
}
.w1600{
	width: calc(100% - 60px);
	max-width: 1600px;
	margin-inline: auto;
	position: relative;
	z-index: 5;
}
.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);
	}
	.wrap80{
		padding: 10px 0;
	}
}

/* ボタン　================================================== */
.btn_wrap{
	display: block;
	width: 270px;
	margin: 30px auto;
}
.btn_wrap.wide{
	width: 350px;
	max-width: 100%;
}

.btn01{
	display: inline-block;
	text-align: center;
	width: 100%;
	background: linear-gradient(to left, #e14989 0 50%, #fff 50% 100%);
	background-size: 200%;
	background-position: right;
	color: #fff;
	border: solid 1px #e14989;
	padding: 1em;
	position: relative;
	border-radius: 30px;
	font-size: 1em;
	font-weight: 500;
	transition: .5s;
}
.btn01::after{
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	content: "\f105";
	color: #fff;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 15px;
	transition: .5s;
}
.btn01:hover{
	background-position: left;
	color: #e14989;
	transition: .5s;
}
.btn01:hover::after{
	right: 10px;
	color: #e14989;
}

/* table ============================================================ */
.line02 table {
    border-spacing:0;
    margin: 0 auto;
    padding: 0;
    width:100%;
}
.line02 table th{
	border-bottom: solid 3px #e14989;
	padding: 1em;
	width: 30%;
	min-width: 9em;
	font-weight: 600;
}
.line02 table td{
	border-bottom: solid 3px #ccc;
	padding: 1em;
}
.line02 table td i{
	color: #666;
	padding-left: 1em;
}
.line02 dl{
	margin-bottom: 0.5em;
	font-size: 0.9rem;
	display: flex;
	text-align: left;
	width: 100%;
	max-width: 250px;
}
.line02 dl dt{
	width: 3em;
	white-space: nowrap;
}
.line02 dl dd{
	flex: 1;
}

.line02 ul li{
	padding-left: 1em;
	text-indent: -1em;
	margin-bottom: 0.5em;
}
.card001 .line02 dl{
	color: #fff;
	border-bottom: dashed 1px;
}
@media (max-width: 768px){
	.line02 table th{
		display: block;
		width: 100%;
		border-bottom: none;
		text-align: left;
		padding-bottom: 0;
	}
	.line02 table td{
		display: block;
		width: 100%;
		border-bottom: solid 3px #e14989;
	}
	.line02 dl{
		flex-direction: column;
		align-self: flex-start;
		justify-content: flex-start;
	}
}
/* simple ============================== */
.simple01 table {
	border-collapse: collapse;
    border-spacing: 5px;
    margin: 0 auto;
    padding: 0;
    width:100%;
	
}
.simple01 table tr{
	border-bottom: solid 1px #ccc;
}
.simple01 table th,.simple01 table td{
	padding: 1.5em 1em;
	text-align: left;
	vertical-align: top;
}
.simple01 table th{
	color: #8a9898;
	font-weight: 600;
	width: 20%;
	min-width: 6em;
}
.simple01 table td i{
	color: #8a9898;
}
@media (max-width: 960px){
	.simple01 table th,.simple01 table td{
		display: block;
		width: 100%;
	}
	.simple01 table th{
		padding-bottom: 0;
	}
}

/* stripes ============================== */

.stripes table {
	border-collapse: collapse;
    border-spacing: 5px;
    margin: 0 auto;
    padding: 0;
    width:100%;
}
.stripes table tr:nth-child(odd){
	background:#eee;
}
.stripes table th,.stripes table td{
	padding: 0.5em;
}


/* リスト ============================== */
ul.border01{
	font-size: 1em;
}
ul.border01 li{
	border-bottom: dotted 1px #8a9898;
	margin-bottom: 1rem;
	padding-bottom: 0.5rem;
	text-indent: -1.2rem;
	padding-left: 1.2rem;
}
ul.border01 li i{
	color: #e14989;
	display: inline;
}
.dl_border01{
	padding: 1rem;
}
.dl_border01 dl{
	display: flex;
	align-items: flex-start;
	border-bottom: solid 1px #8a9898;
}
.dl_border01 dl dt{
	width: 20%;
	padding: 1em 0 1em 1em;
	font-weight: 700;
}
.dl_border01 dl dt i{
	color: #8a9898;
}
.dl_border01 dl dd{
	padding: 1em;
}
@media (max-width: 960px){
	.dl_border01 dl{
		display: block;
		width: 100%;
	}
	.dl_border01 dl dt{
		width: 100%;
		padding: 1em 1em 0.5em;
	}
	.dl_border01 dl dd{
		width: 100%;
		padding:0.5em 1em 1em;
	}
}


/* 画像調整============================================================ */
.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%;
}
/* 角丸============================================================ */
.bdr15{
	border-radius: 15px;
}
.bdr30{
	border-radius: 30px;
}
.bdr50{
	border-radius: 30px;
}
.bdr_tr{
	border-top-right-radius: 70px;
}
.bdr_tl{
	border-top-left-radius: 70px;
}
.bdr_br{
	border-bottom-right-radius: 70px;
}
.bdr_bl{
	border-bottom-left-radius: 70px;
}
/* 余白調整============================================================ */
.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;
}
.pt70{
	padding-top: 70px;
}
.pb70{
	padding-bottom: 70px;
}
.txt_c{
	text-align: center;
}
.txt_r{
	text-align: right;
}

span.bold{
	font-weight: 600;
}

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

/* TOPへ戻るボタン==================== */
#page_top {
	position: fixed;
	right: 20px;
	bottom: 20px;
	padding: 10px 15px;
	border: none;
	border-radius: 50%;
	background: #e14989;
	color: #fff;
	border: solid 1px #fff;
	font-size: 18px;
	cursor: pointer;
	opacity: 0;
	pointer-events: none; /* 非表示中はクリックできない */
	transition: opacity 0.5s ease;
	z-index: 999;
}
#page_top.show {
	opacity: 1;
	pointer-events: auto; /* 表示中はクリック可能 */
}


/* スクロールフェードイン ================================================== */
.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;
	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;
	}
}

/* 00px以上非表示 ------------------------------ */
@media (min-width: 1200px){
	.openbtn,#g-nav{
		display: none !important;
	}
}
@media (min-width: 960px){
	.tbsp{
		display: none !important;}
}
@media (min-width: 750px){
	.sp{
		display: none!important;}
	}
@media (min-width: 450px){
	.sp_450{
		display: none!important;}
	}
/* 00px以下非表示 ------------------------------ */
@media (max-width: 1200px){
	.pc{
		display: none !important;
	}
	
}
@media (max-width: 960px){
	.pctb{
		display: none !important;
	}
}
@media (max-width: 750px){
	.pctb{
		display: none !important;
	}
}
@media (max-width: 450px){
	.pctb450{
		display: none;
	}
}
