@charset "UTF-8";

/*/==========================================================
/ 
/ 光射す教室 css
/
==========================================================/*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&amp;family=Noto+Serif+JP:wght@400;500;700;900&amp;family=Shippori+Mincho:wght@500;700;800&amp;family=IBM+Plex+Mono:wght@400;500;700&amp;family=Cormorant+Garamond:ital,wght@0,400;0,500;1,400&amp;display=swap');


body {
	font-family:'Noto Sans JP',sans-serif;
	font-optical-sizing: auto;
	font-weight: 300;
	font-style: normal;
	font-size: 1.6rem;
	line-height:125%;
    color: rgb(51, 51, 51);
	background-color: #FFFFFF;
}

body.opn{
	height:100%;
	overflow:hidden;
}

.min-txt{
    font-family: "Shippori Mincho", "Noto Serif JP", "Yu Mincho", serif;	
}
.mono-txt{
    font-family: "IBM Plex Mono", ui-monospace, monospace;
}

#wrapper{
	display:block;
	position:relative;
}

/*----------------------------------

 ヘッダ

----------------------------------*/
header{
	display: block;
    align-items: center;
    padding: 18px 40px;
    border-bottom: 1px solid #eaeaea;
    align-content:center;
    position: sticky;
    top: 0;
    background: #fafaf7E6;
    backdrop-filter: saturate(1.2) blur(10px);
    -webkit-backdrop-filter: saturate(1.2) blur(10px);
    z-index: 40;
}


/* for Narrow --------------------*/
@media screen and ( max-width:979px) {

	header{
		display:flex;
	    padding: 0 4vw;
	    height:19vw;
	    justify-content: space-between;
	}

}


/* for Sp --------------------*/
@media screen and ( max-width:768px) {


}


/*****************************
 メインロゴ
 *****************************/
#header-logo{
    display:inline-block;
    overflow:hidden;
    color: rgb(17, 17, 17);
    align-items: center;
}

#header-logo strong{
    font-size: 2.2rem;
    font-weight: 700;
    line-height:125%;
    color:#ec7431;
}


#header-logo > span{
	display:inline-block;
	overflow:hidden;
	font-size: 1.4rem;
    line-height:125%;
    letter-spacing: 0.22em;
    color: rgb(136, 136, 136);
    margin-left:1em;
}



/* for Narrow --------------------*/
@media screen and ( max-width:979px) {

	#header-logo strong{
	    font-size: 1.8rem;
	    font-weight: 700;
	    line-height:125%;
	}

	#header-logo > span{
		font-size: 1.2rem;
	    line-height:125%;
	}

}


/* for Sp --------------------*/
@media screen and ( max-width:768px) {


}


/*****************************
 ハンバーガーメニュー ボタン
 *****************************/
button[name="hamburger-btn"]{
	display:none;
	width:min(11vw,44px);
	height:min(11vw,44px);
	padding:3vw;
	position:relative;
	float:right;
}

button[name="hamburger-btn"] > span{
    display: block;
    width: 100%;
    height: 1px;
    background: #111111;
    position: relative;
	transition: all 0.3s ease-out;
}

button[name="hamburger-btn"] > span::before,
button[name="hamburger-btn"] > span::after{
	content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: #111111;
	transition: all 0.2s ease-out;
	transform-origin: center;
}

button[name="hamburger-btn"] > span::before{
	top:6px;
}
button[name="hamburger-btn"] > span::after{
	bottom:6px;
}


.opn button[name="hamburger-btn"] > span{
    background:unset;
}
.opn button[name="hamburger-btn"] > span::before,
.opn button[name="hamburger-btn"] > span::after{
    width: 115%;
    top:0;
}

.opn button[name="hamburger-btn"] > span::before{
	transform: rotate(45deg);
}

.opn button[name="hamburger-btn"] > span::after{
	transform: rotate(-45deg);
}


/* for Narrow --------------------*/
@media screen and ( max-width:979px) {

	button[name="hamburger-btn"]{
		display: inline-block;
	}

}


/* for Sp --------------------*/
@media screen and ( max-width:768px) {


}




/*****************************
 グローバルメニュー
 *****************************/
nav#global-nav{
	display:inline-block;
	float:right;
}
nav#global-nav > ul{
	display:flex;
	gap:0 24px;
}

nav#global-nav > ul > li{

}

nav#global-nav> ul > li > a{
	display:block;
	overflow:hidden;

    font-size: 1.4rem;
    line-height:125%;
    text-decoration: none;
    color: #111111;
    position: relative;
    transition: color .15s;
}

nav#global-nav > ul > li > a > .en{
    letter-spacing: .22em;
}

nav#global-nav > ul > li > a > .ja{
	display:none;
}


/* for Narrow --------------------*/
@media screen and ( max-width:979px) {

	nav#global-nav{
		display:block;
		width:100%;
		height:calc(100vh - 19vw);
		padding:4vw 4vw;
		background-color:rgba(255,255,255,0.9);
		float:none;
		position:absolute;
		left:-100%;
		top:19vw;
		transition: all 0.3s ease-out;
	}

	nav#global-nav > ul{
		flex-direction:column;
		gap:0 24px;
	}

	nav#global-nav > ul > li{

	}

	nav#global-nav > ul > li + li{
		border-top: 1px solid #CCCCCC;
	}

	nav#global-nav> ul > li > a{
		padding:1.5em 1em;
	    font-size: 1.6rem;
	    line-height:125%;
	}

	nav#global-nav > ul > li > a > .en{
	    letter-spacing: .22em;
	}

	nav#global-nav > ul > li > a > .ja{
		display:initial;
	}

	nav#global-nav > ul > li > a > .ja::before{
		content:"／";
	}


	.opn nav#global-nav{
		left:0;
	}

}

/* for Sp --------------------*/
@media screen and ( max-width:768px) {


}


/*----------------------------------

 カバー

----------------------------------*/
#cover{
	display: flex;
    overflow: hidden;
    justify-content:right;
    min-height: 86vh;
    position: relative;
    background:url("../images/cover.webp") no-repeat 0 50%;
    background-size:cover;
}

/*****************************
 カバー画像
 *****************************/
#cover-image{
	display: block;
    overflow: hidden;
   /* width:60%;
	width:100%;
	height:100%;*/
	position:relative;
}

#cover-image > img{
	display:none;
}

#cover-image > p{
	display:block;
	overflow:hidden;
	padding:24px 24px;
	font-size: 2.1rem;
    font-weight: 500;
    line-height: 155%;
    color:#FFFFFF;
    position:absolute;
    lef:0;
    bottom:0;
}


/* for Narrow --------------------*/
@media screen and ( max-width:979px) {

	#cover{
		background:unset;
		flex-direction:column;
		min-height:auto;
	}

	#cover-image {
		width:100%;
	}

	#cover-image > img{
		display:block;
		width:100%;
		height:auto;
	}

	#cover-image > p{
		padding:2vw 2vw;
		font-size: 1.6rem;
	    line-height: 155%;
	}

}


/* for Sp --------------------*/
@media screen and ( max-width:768px) {


}


/*****************************
 メインタイトル
 *****************************/
#cover-info{
	display:block;
	overflow:hidden;
    padding: 50px 40px 40px;
	width:min(460px,40%);
	position:relative;
	background-color: rgba(255,255,255,0.8);
	float:right;
}

#main-title{
	display:block;
	overflow:hidden;
}

#main-title .copy-txt{
	display:block;
	overflow:hidden;
	margin-bottom: 2em;
	font-size: 1.4rem;
	line-height:155%;
    letter-spacing: 0.3em;
    color: rgb(136, 136, 136);
}

#main-title h1{
	display:block;
	overflow:hidden;
	font-size: clamp(56px, 7.5vw, 105px);
    font-weight: 700;
    line-height: 115%;
    letter-spacing: 0.04em;
    color:#ec7431;
    white-space:nowrap;
}

#main-title h1 > span{
	display:block;
	overflow: hidden;
}

#main-title h1 + span{
	display:block;
	overflow:hidden;
	font-size: 1.6rem;
	line-height:155%;
    letter-spacing: 0.3em;
    color: rgb(136, 136, 136);
    margin-top:1em;
}

#main-title > p{
	display:block;
	overflow:hidden;
	margin-top:1em;
	font-size: 2.4rem;
    font-weight: 700;
	line-height:155%;
}


/* for Narrow --------------------*/
@media screen and ( max-width:979px) {

	#cover-info{
	    padding: 4vw 4vw;
		width:100%;
	}

	#main-title h1{
		display:block;
		overflow:hidden;
		font-size: clamp(56px, 7.5vw, 128px);
	    font-weight: 700;
	    line-height: 115%;
	    letter-spacing: 0.04em;
	    color:#ec7431;
	    white-space:nowrap;
	}

	#main-title h1 > span{
		display:initial;
	}

	#main-title > p{
		font-size: 1.8rem;
		line-height:155%;
	}

}


/* for Sp --------------------*/
@media screen and ( max-width:768px) {


}


/*****************************
 基本情報
 *****************************/
#movie-data{
	display:block;
	overflow:hidden;
	margin-top:2em;
    border-top: 1px solid rgb(17, 17, 17);
    border-bottom: 1px solid rgb(17, 17, 17);
}

#movie-data dl{
	display:block;
	overflow:hidden;
	margin-top:1em;
	/*padding:0 1em;*/
	font-size:1.4rem;
	line-height:125%;
	letter-spacing: 0.12em;
}

#movie-data dl > dt{
	width: 6em;
	float:left;
	color: rgb(136, 136, 136);
}

#movie-data dl > dd{
	width: calc(50% - 6em);
	float:left;
	margin-bottom:1em;
}


/* for Narrow --------------------*/
@media screen and ( max-width:979px) {

	#movie-data dl > dt{
		width: 50%;
	}

	#movie-data dl > dd{
		width: 50%;
		margin-bottom:0.5em;
	}

}


/* for Sp --------------------*/
@media screen and ( max-width:768px) {


}


/*----------------------------------

 ティッカー

----------------------------------*/
#ticker{
	display:block;
	overflow:hidden;
	width:100%;
    padding: 14px 0px;
    white-space: nowrap;
	background-color: rgb(230, 0, 18);
}

#ticker-inner{
	display: flex;
	width: fit-content;
}

#ticker-inner > ul{
	display:flex;
    white-space: nowrap;
	width: fit-content;
	animation: ticker 30s linear infinite;
}

#ticker-inner > ul > li{
    font-size: 14px;
    letter-spacing: 0.28em;
    line-height: 125%;
    color: rgb(255, 255, 255);
    white-space: nowrap;
}
#ticker-inner > ul > li::before{
	content:"★";
	margin:40px;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}



/* for Narrow --------------------*/
@media screen and ( max-width:979px) {


}


/* for Sp --------------------*/
@media screen and ( max-width:768px) {


}



/*----------------------------------

 セクションタイトル

----------------------------------*/
.section-ttl{
	/*display: block;*/
	display:inline-block;
    overflow: hidden;
	min-width:400px;
	height:100%;
	padding-right:40px;
	float:left;
}

.section-ttl > span{
	display: inline-flex;
    overflow: hidden;

    font-size: 1.4rem;
    line-height:125%;
    letter-spacing: .3em;
    color: #E60012;
    margin-bottom: 1em;
    position:relative;
    align-items: center;
}

.section-ttl > span::before{
	content:"";
	display:inline-block;
	overflow:hidden;
	width:3em;
	height: 1px;
	background: #E60012;
	margin-right:1em;
}

.section-ttl > h2{
	display: block;
    overflow: hidden;
    font-size:4.0rem;
    line-height:155%;
    font-weight: 700;
    letter-spacing: .02em;
}

.section-ttl p{
	display: block;
    overflow: hidden;
	font-size: 1.4rem;
	line-height: 155%;
    letter-spacing: 0.2em;
    color: rgb(136, 136, 136);
    margin-top: 2em;
}


/* for Narrow --------------------*/
@media screen and ( max-width:979px) {

	.section-ttl{
		display: block;
		min-width:100%;
		height:auto;
		padding-right:0;
		float:none;
		margin-bottom:8vw;
	}

	.section-ttl > span::before{
		width:2em;
	}

	.section-ttl > h2{
	    font-size:3.1rem;
	    line-height:155%;
	}

}


/* for Sp --------------------*/
@media screen and ( max-width:768px) {


}


/*----------------------------------

 お知らせ

----------------------------------*/
#news{
	display: block;
    overflow: hidden;
    position: relative;
    padding: 120px 48px;
}

#news-list{
	display:block;
	overflow:hidden;
	width:min(100% - 400px);
}

#news-list ul{
	display:block;
	overflow:hidden;
	font-size:1.6rem;
	line-height:155%;
}

#news-list ul > li{
	display:flex;
	gap:0 1em;
}

#news-list ul > li + li{
	margin-top:0.75em;
}

.tag{
	display:inline-block;
	overflow:hidden;
	width:6em;
	font-size:1.4rem;
	line-height:155%;
	text-align:center;
	border: 1px solid #CCCCCC;
}



/* for Narrow --------------------*/
@media screen and ( max-width:979px) {

	#news{
	    padding:8vw 4vw;
	}

	#news-list{
		width:100%;
	}

	#news-list ul > li{
		flex-wrap:wrap;
	}

	.news-ttl{
		width:100%;
		display:block;
		overflow:hidden;
		padding-left:1em;
	}


}


/* for Sp --------------------*/
@media screen and ( max-width:768px) {


}


/*----------------------------------

 情報エリア

----------------------------------*/
#info-ber{
	display: block;
    overflow: hidden;
}



.gallery{
    background: rgb(17, 17, 17);
    padding:10px 0;
}


.gallery > ul{
	display: flex;
    overflow: hidden;
    justify-content:space-around;
    gap:0 10px;
}

.gallery > ul > li{
	flex:1;
}

.gallery > ul > li > img{
 	/*width: min(100%,480px);*/
 	width: 100%;
 	height:auto;

}

.gallery > ul > li span > strong{
	font-size: 6.8rem;
	font-weight: 500;
	line-height:100%;
    color: rgb(230, 0, 18);
}


.gallery > ul > li + li{
	border-left: 1px solid rgba(255, 255, 255, .1);
}


#info-ber2.gallery > ul > li:nth-child(1),
#info-ber3{
	display:none;
}



/* for Narrow --------------------*/
@media screen and ( max-width:979px) {


}


/* for Sp --------------------*/
@media screen and ( max-width:768px) {

	#info-ber2.gallery > ul > li:nth-child(1),
	#info-ber3{
		display:block;
	}


	#info-ber.gallery > ul > li:nth-child(3),
	#info-ber2.gallery > ul > li:nth-child(n+3){
		display:none;
	}


}


/*----------------------------------

 イントロダクション

----------------------------------*/
#about{
	display: block;
    overflow: hidden;
    position: relative;
    padding: 120px 48px;
    background-color: #fafaf7;
}

#about .content-body{
	display:block;
    overflow: hidden;
}

#about .content-body > article + article{
	margin-top:25px;
    color: rgb(34, 34, 34);
}

#about .content-body > article > h3{
    font-size: 1.8rem;
    font-weight:700;
    line-height: 200%;
    border-bottom: 1px solid rgb(232, 232, 232);
}

#about .content-body > article > h3::before{
	content:"■";
}

#about .content-body > article > p{
    line-height: 200%;
}

#about .content-body p + p{
	margin-top: 1em;
}

.wired-box{
	display:block;
	overflow:hidden;
	clear:both;
	margin-top:50px;
	padding:1em;
    border: 1px solid rgb(232, 232, 232);
    background-color:#FFFFFF;
    font-size: 1.4rem;
    line-height: 155%;
}

.wired-box dt{
	font-weight: 700;
}

.wired-box dd{
	padding-left: 1em;
	margin-top: 0.5em;
}


/* for Narrow --------------------*/
@media screen and ( max-width:979px) {

	#about{
	    padding: 8vw 4vw;
	}

	#about .content-body > article + article{
		margin-top:2em;
	    color: rgb(34, 34, 34);
	}

	.wired-box{
		margin-top:8vw;
		padding:2vw 2vw;
	}

	.wired-box dd{
		padding-left: 0;
	}

}


/* for Sp --------------------*/
@media screen and ( max-width:768px) {


}



/*----------------------------------

 予告編

----------------------------------*/
#trailer{
	display: block;
    overflow: hidden;
    position: relative;
    padding: 120px 48px;
    background: rgb(10, 10, 10)
}

#trailer .section-ttl > h2{
	color:#FFFFFF;
}


#video-frame{
	display: block;
    overflow: hidden;
    width:calc(100% - 400px);
	margin:0 auto;
	text-align:center;
}

	#video-frame iframe{
	    width:100%;
	    height:auto;
	    aspect-ratio:560/315;
	}


/* for Narrow --------------------*/
@media screen and ( max-width:979px) {

	#trailer{
	    padding: 8vw 4vw;
	}

	#video-frame{
		display: block;
	    overflow: hidden;
	    width:100%;
		margin:0 auto;
		text-align:center;
	}

}


/* for Sp --------------------*/
@media screen and ( max-width:768px) {


}


/*----------------------------------

 キャスト

----------------------------------*/
#cast{
	display: block;
    overflow: hidden;
    position: relative;
    padding: 120px 48px;
}

#cast > .content-body{
	display:flex;
	gap: 0 55px;
}

#cast > .content-body > article{
	 flex:1;
}

#cast > .content-body > article > img{
	float:left;
	margin-right:24px;
}

#cast > .content-body > article .person-pos{
	display:block;
	overflow:hidden;
    font-size: 1.2rem;
    color: rgb(230, 0, 18);
    letter-spacing: 0.3em;
    line-height:125%;
    margin-bottom:1em;
}

#cast > .content-body > article h3{
	display:block;
	overflow:hidden;
    font-size: 2.8rem;
    font-weight: 700;
    line-height:125%;
}

#cast > .content-body > article h3 > span{
	display:block;
	overflow:hidden;
    font-size: 1.2rem;
    font-weight:normal;
    line-height:125%;
    letter-spacing: 0.2em;
    color: rgb(153, 153, 153);
    margin:0.5em 0 1em;
}

#cast > .content-body > article .person-role{
	display:block;
	overflow:hidden;
	font-size: 1.4rem;
    line-height:125%;
    color: rgb(102, 102, 102);
    margin-bottom: 1em;
}

#cast > .content-body > article p{
	display:block;
	overflow:hidden;
	font-size: 1.4rem;
    line-height:200%;
    margin-bottom: 1em;
}


/* for Narrow --------------------*/
@media screen and ( max-width:979px) {

	#cast{
	    padding: 8vw 4vw;
	}

	#cast > .content-body{
		flex-direction:column;
		gap: 4vw 0;
	}

	#cast > .content-body > article{
		 flex:1;
	}

	#cast > .content-body > article > img{
		float:left;
		margin-right:1em;
		width:50%;
		height:auto;
	}

	#cast > .content-body > article p{
		clear:both;
	}


}


/* for Sp --------------------*/
@media screen and ( max-width:768px) {


}


/*****************************
 本作に登場する主な人びと
 *****************************/
#people{
	display:block;
	overflow:hidden;
	margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgb(17, 17, 17);
}

#people h3{
	display:block;
	overflow:hidden;
	font-size:1.4rem;
	line-height:125%;
    letter-spacing: 0.3em;
    color: rgb(230, 0, 18);
}

#people h3 > span{
	display:inline-block;
	overflow:hidden;
	letter-spacing:initial;
	color: rgb(136, 136, 136);
	float:right;
}


#people ul{
	display:flex;
	gap:0 20px;
	margin-top: 40px;
}

#people ul > li{
	flex: 1;
    border-top: 1px solid rgb(17, 17, 17);
    padding-top:1em;
    font-size:1.4rem;
    line-height:155%;
    color: rgb(136, 136, 136);
}

#people ul > li > h4{
	font-size:1.8rem;
	line-height:155%;
	color:#111111;
}

#people ul > li > p{
	margin-top: 1em;
}


/* for Narrow --------------------*/
@media screen and ( max-width:979px) {

	#people{
		margin-top: 8vw;
	    padding-top: 8vw;
	}

	#people h3{
		display:block;
		overflow:hidden;
		font-size:1.4rem;
		line-height:125%;
	    letter-spacing: 0.3em;
	    color: rgb(230, 0, 18);
	}

	#people h3 > span{
		display:block;
		float:none;
		text-align:right;
		margin-top:0.5em;
	}


	#people ul{
		flex-wrap:wrap;
		gap:4vw 4vw;
		margin-top: 8vw;
	}

	#people ul > li{
		width: calc(50% - 4vw);
		flex: initial;
	}

	#people ul > li > h4{
		font-size:1.6rem;
		line-height:155%;
	}

}


/* for Sp --------------------*/
@media screen and ( max-width:768px) {


}




/*----------------------------------

 スタッフ

----------------------------------*/
#staff{
	display: block;
    overflow: hidden;
    position: relative;
    padding: 120px 48px;
    background-color: #fafaf7;
}

#staff .content-body{
	display:flex;
	flex-wrap:wrap;
	gap:0 1em;
}


#staff dl{
	/*flex:1;*/
	display:block;
	overflow:hidden;
	position:relative;
}

#staff dl > dt,
#staff dl > dd{
	display: block;
	overflow:hidden;
	line-height:155%;
	padding: 0.5em 0;
	float:left;
}


dl.staff-list > dt{
	width:13em;
	letter-spacing: 0.2em;
    color: rgb(136, 136, 136);
    clear:both;
}

dl.staff-list > dd{
	width:calc(100% - 13em);
}

dl.staff-list+dl.staff-list{
	margin-top:1em;
	padding-top: 1em;
	border-top:1px dotted rgb(17, 17, 17);
}


/* for Narrow --------------------*/
@media screen and ( max-width:979px) {

	#staff{
	    padding: 8vw 4vw;
	}

	#staff .content-body{
		flex-direction:column;
		gap:1em 0;
	}


	dl > dt,
	dl > dd{
		font-size:1.4rem;
		line-height:125%;
	}


	dl.staff-list > dt{
		clear:both;
		width:10em;
	}

	dl.staff-list > dd{
		width:calc(100% - 10em);
		margin-bottom: 0;
	}

}


/* for Sp --------------------*/
@media screen and ( max-width:768px) {


}



/*----------------------------------

 自主上映案内

----------------------------------*/
#contact{
	display: block;
    overflow: hidden;
    position: relative;
    padding: 120px 48px;
}

#contact .section-ttl{
	display:inline-block;
	min-width:400px;
	margin-right:80px;
	float:left;
}

#contact .content-body{
	display:block;
    overflow: hidden;
    font-size: 1.6rem;
    line-height: 200%;
}

#contact .content-body p + p{
	margin-top: 1em;
}

a.box_btn{
	display:block;
	overflow:hidden;
	width:20em;
	margin:2em auto 0;
	padding:0.75em 1em;
	font-size:1.4rem;
	line-height:125%;
	text-align:center;
	text-decoration:none;
	color:#111111;
	border: 1px solid #111111;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

a.box_btn::after{
	content:"→";
	float:right;
}

a.box_btn:hover{
	background-color:#CCCCCC;
}

/* for Narrow --------------------*/
@media screen and ( max-width:979px) {

	#contact{
	    padding: 8vw 4vw;
	}

	#contact .section-ttl{
		display:block;
		min-width:100%;
		margin-right:0;
		float:none;
	}

	#contact .content-body{
		display:block;
	    overflow: hidden;
	    font-size: 1.6rem;
	    line-height: 200%;
	}

	#contact .content-body p + p{
		margin-top: 1em;
	}

}


/* for Sp --------------------*/
@media screen and ( max-width:768px) {


}



/*****************************
 FAQ
 *****************************/
dl#faq{
	display:block;
	overflow:hidden;
}

dl#faq > dt{
	display:block;
	overflow:hidden;
    margin-top:2em;
}

dl#faq > dt{
	display:block;
	overflow:hidden;
	font-weight: 700;
}

dl#faq > dt > span{
	margin-right:1em;
	color: rgb(230, 0, 18);
}


dl#faq > dd{
	display:block;
	overflow:hidden;
	padding-left:3.5em;
	padding-bottom: 1em;
	border-bottom: 1px solid rgb(238, 238, 238);
}




/* for Narrow --------------------*/
@media screen and ( max-width:979px) {


}


/* for Sp --------------------*/
@media screen and ( max-width:768px) {


}



/*****************************
 アフェリエイト リンク
 *****************************/
#link{
	display: block;
    overflow: hidden;
    position: relative;
    padding: 120px 48px;
    background-color: #fafaf7;
}

#link .section-ttl {
    display: inline-block;
    min-width: 400px;
    margin-right: 80px;
    float: left;
}

#link .content-body {
    display: block;
    overflow: hidden;
    font-size: 1.6rem;
    line-height: 200%;
}


#link figure{
	display:block;
	overflow:hidden;
}

#link figure > img{
    width:264px;
	height:auto;
    float:left;
    border:1px solid #CCCCCC;
}

#link figure > figcaption{
	display:block;
	overflow:hidden;
	padding:0 2em;
}



#link ul{
	display:flex;
	justify-content:center;
	flex-wrap:wrap;
	gap:0.5em 1em;
	margin-top:2em;
}

#link ul > li{

}

#link ul > li > a{
	display:block;
	overflow:hidden;
	padding:0.5em 0.5em 0.5em 1.5em;
	width:calc(33.3% - 1em);
	min-width:10em;
	font-size:1.8rem;
	line-height:100%;
	color:#FFFFFF;
	text-align:center;
	text-decoration:none;
	border-radius:8em;
	background-color:#22bfa1;
	transition: all 0.3s ease-out;
}

#link ul > li > a::after{
	content:"→";
	float:right;
}

#link ul > li > a:hover{
	filter:brightness(1.5);
}

a.amazon{
	background-color: #FF9901!important;
}

a.rakten{
	background-color: #c20004!important;
}




/* for Narrow --------------------*/
@media screen and ( max-width:979px) {


	#link{
	    padding: 8vw 4vw;
	}

	#link .section-ttl{
		display:block;
		min-width:100%;
		margin-right:0;
		float:none;
	}

	#link .content-body{
		display:block;
	    overflow: hidden;
	    font-size: 1.6rem;
	    line-height: 200%;
	}

	#contact .content-body p + p{
		margin-top: 1em;
	}



	#link figure{
		text-align:center;
	}

	#link figure > img{
	    width:min(100%,264px);
	    float:none;
	}

	#link figure > figcaption{
		padding:0 0;
		text-align:left;
	}



	#link ul{
		flex-direction:column;
		gap:0.75em 0;
		margin-top:2em;
	}

	#link ul > li > a{
		padding:0.75em 1em;
		width:14em;
		margin:0 auto;
	}

}


/* for Sp --------------------*/
@media screen and ( max-width:768px) {


}



/*----------------------------------

 フッタ

----------------------------------*/
footer{
	display: block;
    overflow: hidden;
    position: relative;
    background: rgb(10, 10, 10);
    color: rgb(255, 255, 255);
    padding: 60px 24px 40px;
}

footer > .content-body{
	display:flex;
	gap:0 40px;
	justify-content:space-between;
}


footer h4{
    font-size: 1.4rem;
    line-height:125%;
    letter-spacing: 0.3em;
    color: rgb(230, 0, 18);
    margin-bottom: 1em;
}


/* for Narrow --------------------*/
@media screen and ( max-width:979px) {

	footer{
	    padding: 8vw 4vw;
	}

	footer > .content-body{
		display:flex;
		flex-direction:column;
		gap:4vw 0;
	}

}


/* for Sp --------------------*/
@media screen and ( max-width:768px) {


}


/*****************************
 フッタロゴ
 *****************************/
#ft-logo{

}
#ft-logo > h3{
	font-size: 3.2rem;
    font-weight: 700;
    line-height:155%;
    color:#ec7431;
}

#ft-logo > h3 > strong{
	color: rgb(230, 0, 18);
}

#ft-logo > p{
	font-size: 1.2rem;
	line-height:125%;
    letter-spacing: 0.3em;
    color: rgb(136, 136, 136);
    margin-bottom: 20px;
}

#ft-logo figure > figcaption{
	font-size: 1.4rem;
	line-height:155%;
	color: rgb(136, 136, 136);
}


/* for Narrow --------------------*/
@media screen and ( max-width:979px) {


}


/* for Sp --------------------*/
@media screen and ( max-width:768px) {


}

/*****************************
 サイトマップ
 *****************************/
#sitemap{

}

#sitemap a{
	color:#FFFFFF;
	text-decoration:none;
}
#sitemap a:hover{
	text-decoration:underline;
}

#sitemap ul{
	font-size:1.4rem;
	line-height:125%;
}

#sitemap li+li{
	margin-top:1em;
}


/* for Narrow --------------------*/
@media screen and ( max-width:979px) {

	#sitemap{
		display:none;
	}

}


/* for Sp --------------------*/
@media screen and ( max-width:768px) {


}

/*****************************
 SNS リンク
 *****************************/
#sns-link{

}

#sns-link ul{
	display:flex;
	gap:0 10px;
}

#sns-link ul > li{

}

#sns-link ul > li > a{
	display:block;
	overflow:hidden;
	width:3em;
	aspect-ratio:1/1;
	border: 1px solid rgb(51, 51, 51);
    color: rgb(221, 221, 221);
    font-size: 1.4rem;
    line-height:3em;
    text-align:center;
    text-decoration:none;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

#sns-link ul > li > a:hover{
	background-color: rgb(51, 51, 51);
}


#sns-link p{
	margin-top: 2em;
    font-size: 1.4rem;
    line-height:175%;
    color: rgb(102, 102, 102);
}



/* for Narrow --------------------*/
@media screen and ( max-width:979px) {


}


/* for Sp --------------------*/
@media screen and ( max-width:768px) {


}



#copy-right{
	display:block;
	overflow:hidden;
	margin-top:40px;
	padding-top: 20px;
	font-size:1.4rem;
	line-height:125%;
	color: rgb(102, 102, 102);
	border-top: 1px solid rgb(34, 34, 34);
}



/* for Narrow --------------------*/
@media screen and ( max-width:979px) {

	#copy-right{
		margin-top:8vw;
		padding-top: 8vw;
		font-size:1.2rem;
		line-height:125%;
		text-align:center;
	}

}


/* for Sp --------------------*/
@media screen and ( max-width:768px) {


}



