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

* {
	margin: 0;
	padding: 0;
}

body {
	color: #333;
    font-size: 14px;
	font-family: "M PLUS Rounded 1c", sans-serif ;
    line-height: 1.8;
    text-align: left;
	background: #fff url("../img/bk_img_sp.png") top center / cover repeat-y;
	overflow: hidden;
}

.pc {
	display: none;
}

.discList {
	display: table;
}
.discList li {
	display: table-row;
}
.discList li:after {
	content: "";
	display: block;
	margin-bottom: 0.5em;
}
.discList li:before {
	content: "•";
	display: table-cell;
	padding-right: 0.4em;
}
.discList li:last-child {
	margin-bottom: 0;
}
a.back{
	color:#333;
}

a {
	font-weight: bold;
	padding: 5px;
	color: #eb4c88;
	text-decoration: none;
}

a img {
	opacity:1;
	transition:0.3s;
	cursor:pointer;
	margin: -5px;
}
a img:hover {
	opacity:0.8;
}

@media (min-width: 520px) {
	body {
		font-size: 16px;
		line-height: 1.8;
		background-image: url("../img/bk_img_pc.png");
	}
	.pc {
		display: block;
	}
	.sp {
		display: none;
	}
}

/* ----- header ----- */

header {
	display: flex;
	flex-direction: column;
}
header .kab {
	width:60px;
	height:auto;
	margin:15px 0 10px 20px;
}
header .kab img {
	width:100%;
	height:auto;
}
.header_inner {
	display: flex;
	flex-direction: column;
	width: 90%;
	margin: 15px auto;
}
.header_inner h1 img {
	width: 100%;
	height: auto;
}
.header_inner p {
	width: 89%;
	margin: 15px auto;
}
.header_inner a {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin: 0 auto;
	transition: 0.3s;
	order: 1;
}
.header_inner a::after {
	content: '';
	width: 10px;
	height: 10px;
	border-top: 2px solid #eb4c88;
	border-right: 2px solid #eb4c88;
	transform: rotate(45deg);
	margin-right: -18px;
	margin-left: 18px;
	transition: 0.3s;
	order: 2;
}
.header_inner a::before {
	content: '';
	width: 30px;
	height: 30px;
	border: 2px solid #eb4c88;
	border-radius: 15px;
	transition: 0.3s;
	order: 3;
}
.header_inner a:hover::after {
	border-color: #fff;
}
.header_inner a:hover::before {
	background: #eb4c88;
}
@media (min-width: 520px) {
	.header_inner {
		flex-direction: row;
		align-items: flex-end;
		align-items: center;
		flex-wrap: wrap;
		margin-bottom: 35px;
		max-width: 1200px;
	}
	.header_inner h1 {
		flex: 1 3 65%;
		min-width: 440px;
	}
	.header_inner div {
		flex: 2 1 35%;
	}
	.header_inner p {
		line-height: 2;
		font-size: 15px;
		margin-left:10%;
	}
	.header_inner p span {
		display: inline-block;
	}
	.header_inner a {
		font-size: 14px;
		justify-content: flex-start;
		padding-left:10%;
	}
}
@media (min-width: 960px) {
	header .kab img {
		width:63px;
	}
	.header_inner p {
		font-size: 17px;
		margin-left:15%;
	}
	.header_inner a {
		font-size: 17px;
		padding-left:15%;
	}
}

/* ----- nav ----- */

#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
	top:-120%;
    right: 0;
	width:100vw;
    height: 100vh;/*ナビの高さ*/
	background: rgba(235,76,136,0.8);
	transition: all 0.5s; /*動き*/
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    top: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
	width: 90%;
}

/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
    text-align: center;
}

#g-nav li a{
	color: #fff;
	text-decoration: none;
	padding:15px 0;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 18px;
    transition: all 0.5s;
}

#g-nav li a:hover{
    color:#ccc;
}

.openbtn{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:10px;
	right: 10px;
	cursor: pointer;
    width: 44px;
    height:44px;
	background: #eb4c88;
	border-radius: 10px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 12px;
    height: 3px;
    border-radius: 2px;
	background-color: #fff;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:13px;	
}

.openbtn span:nth-of-type(2) {
	top:21px;
}

.openbtn span:nth-of-type(3) {
	top:29px;
}

.openbtn.active {
    background: #FFF;
}

.openbtn.active span:nth-of-type(1) {
    top: 15px;
    left: 15px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
	background-color: #eb4c88;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 27px;
    left: 15px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
	background-color: #eb4c88;
}

@media (min-width: 520px) {
	#g-nav li a{
	padding:15px 0;
	font-size: 22px;
	}
}

/* ----- main ----- */

main section {
	margin-bottom:50px;
}
main section:last-child {
	margin-bottom:0;
}
section h1 {
	color:#eb4c88;
	font-size:16px;
	font-weight:bold;
	margin-bottom:10px;
}

@media (min-width: 520px) {
	/* main section > div {
		max-width:600px;
	} */
	main section {
		margin-bottom:80px;
	}
	section h1 {
		font-size:20px;
		margin-bottom:20px;
	}
}

/* ----- news ----- */

.news {
	display: flex;
	flex-direction: column;
	background: #FFF;
	border:#fdf2e0 5px solid;
	border-radius: 10px;
	width: 90%;
	margin: 0 auto 30px;
}
.news h1 {
	background: #fdf2e0;
	width: 60%;
	height: 30px;
	line-height: 27px;
	letter-spacing: 1.5px;
	text-align: center;
	border-radius: 0 0 10px 10px;
	margin: 0 auto;
	color: #999;
}
.news ul {
	list-style: none;
	width: 85%;
	margin: 10px auto 5px;
}
.news ul li {
	display: flex;
	flex-direction: column;
	line-height: 1.5;
	margin-bottom: 10px;
}
.news ul li span {
	font-size: 13px;
	color: #999;
}
.news ul li a {
	color: #333;
	padding: 0;
	text-decoration: underline;
}
@media (min-width: 520px) {
	.news {
		flex-direction: row;
		width: 80%;
		margin: 0 auto 50px;
		font-size: 14px;
		max-width: 1000px;
	}
	.news h1 {
		height: auto;
		width: 20%;
		border-radius: 0;
		display: flex;
		justify-content: center;
		align-items: center;
		font-size: 16px;
	}
	.news h1 span {
		display: inline-block;
	}
	.news ul li {
		flex-direction: row;
		align-items: center;
		margin-left: 20px;
		margin-bottom: 5px;
		gap:15px;
	}
}

/* ----- next ----- */

.next {
	background: rgb(255, 240, 240, 0.8);
	width: 90%;
	margin: 0 auto 30px;
	padding: 40px 10%;
	border-radius: 10px;
	position: relative;
}
.next h1 {
	margin: 0;
}
.next h1 img {
	position: absolute;
	top: 10px;
	left: -30px;
	width: auto;
	height: 72px;
}
.oa {
	text-align: right;
	color: #eb4c88;
	margin-bottom: 15px;
	line-height: 1.5;
	font-weight: 700;
	font-size: 15px;
}
.oaTitleBox {
	text-align: center;
	background: #FFF;
	border-radius: 10px;
	margin-bottom: 15px;
	padding: 10px;
}
.oaTitle {
	font-size: 16px;
	line-height: 1.5;
	/* border-bottom: #999 1px dashed;
	padding-bottom: 10px; */
	margin-bottom: 5px;
}
.oaTitle span {
	display: inline-block;
}
.name {
	display: flex;
	flex-direction: column;
	font-size: 13px;
	color: #999;
	line-height: 1.5;
}
.detail {
	margin-bottom: 15px;
}
.nextImgBox {
	margin: 0 auto;
	width: 100%;
}
.nextImgBox img {
	width: 100%;
	height: auto;
}
.slick-slider {
	margin-bottom: 10px !important;
}
.slick-prev:before, .slick-next:before {
	color: #999 !important;
}
.slick-dots {
	bottom: -30px !important;
}

@media (min-width: 520px) {
	.next {
		padding: 60px 6%;
		max-width: 1100px;
		margin-bottom: 50px;
	}
	.next h1 img {
		height: 80px;
	}
	.next_inner {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		flex-wrap: wrap;
	}
	.oaDtail {
		flex: 1 1 60%;
		min-width: 300px;
		padding-right:5%;
	}
	.oa {
		font-size: 17px;
		margin-bottom: 20px;
	}
	.oaTitleBox {
		margin-bottom: 25px;
		padding: 15px;
	}
	.oaTitle {
		font-size: 19px;
	}
	.name {
		flex-direction: row;
		justify-content: center;
	}
	.name span {
		padding-right: 10px;
	}
	.nextImgBox {
		flex: 1 1 40%;
		max-width: 300px;
	}
	.noImg {
		max-width: 700px;
		margin-left: auto;
		margin-right: auto;
	}
}

/* ----- poem ----- */

.poem {
	background: rgb(255, 240, 220, 0.8);
	width: 90%;
	margin: 0 auto 30px;
	padding: 40px 10%;
	border-radius: 10px;
	position: relative;
}
.poem h1 {
	margin: 0;
}
.poem h1 img {
	position: absolute;
	top: 10px;
	right: -30px;
	width: auto;
	height: 72px;
}
.poem p {
	margin-bottom:15px;
}
.poem ul, .poem li {
	list-style:none;
	margin:0;
	padding:0;
}
.poem li {
	background:#FFF;
	padding:10px;
	border-radius:10px;
	margin-bottom:10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.poem li::after {
	content: '';
	width: 10px;
	height: 10px;
	border-top: 2px solid #ebae4c;
	border-right: 2px solid #ebae4c;
	transform: rotate(45deg);
	transition: 0.3s;
	margin-right:5px;
}
.js-modal-video {
	transition: 0.3s;
}
.js-modal-video:hover, .js-modal-video:active {
	background: #ebae4c;
	cursor:pointer;
}
.js-modal-video:hover p, .js-modal-video:active p {
	color:#ffe8c2;
}
.js-modal-video:hover p span, .js-modal-video:active p span {
	color:#FFF;
}
.js-modal-video:hover::after, .js-modal-video:active::after {
	border-color:#FFF;
}
.poem li p {
	margin:0;
	display:flex;
	flex-direction: column;
	font-size: 13px;
	color: #999;
	line-height:1.5;
	width:90%;
}
.poem li p span {
	font-size:16px;
	font-weight:700;
	color:#333;
}
/* coming soon 
 .poem p {
	height: 100px;
	line-height: 140px;
	text-align: center;
	color: #ebae4c;
	font-weight: 700;
	font-size: 16px;
	letter-spacing: 2px;
} */
@media (min-width: 520px) {
	.poem {
		padding: 60px 6%;
		max-width: 1100px;
		margin-bottom: 50px;
	}
	.poem p {
	margin-bottom:30px;
}
	.poem ul {
		display:flex;
		flex-direction: row;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.poem li {
		padding:20px;
		margin-bottom:20px;
		width:49%;
	}
	.poem li p {
		line-height:1.75;
	}
	.poem li p span {
		font-size:18px;
	}
	/* coming soon 
	.poem p {
		line-height: 100px;
		font-size: 30px;
	} */
}

/* ----- button ----- */

.button {

	text-align: center;
	position: relative;
	padding: 0.5rem;
	border-radius: 100px;
	background: #ffff99;
	width:50%;
	min-width:300px;
	margin: 50px auto 50px auto;
	font-size: 1.1em;
	font-weight: bold;
}


.button:hover {
	background-color: #fff;
	border:4px solid #ffff99;
}



/* ----- aside 1 bnlist ----- */

.bnList {
	width: 90%;
	margin: 0 auto;
	border-bottom: 1px solid #ccc;
}
.bnList div {
	width:100%;
	max-width:320px;
	padding:30px 0 20px;
	margin:0 auto;
	display:flex;
	flex-wrap:wrap;
	justify-content:left;
}
.bnList div a {
	width:155px;
	height:60px;
	margin-bottom:10px;
	margin: 0 0 10px;
}
.bnList div a:nth-child(odd) {
	margin-right: 10px;
}

@media (min-width: 520px) {
	.bnList div {
		max-width:700px; /* バナーの数に合わせて変更 */
		padding:50px 0 30px;
	}
	.bnList div a {
		margin: 0 10px 20px;
	}
}

/* ----- aside 2 shusai ----- */

.shusai {
	width:90%;
	margin:25px auto;
	color:#666;
}
.shusai table {
	margin-top:5px;
}
.shusai th {
	width:3em;
	vertical-align:top;
}
.shusai td {
	padding-bottom:5px;
}
@media (min-width: 520px) {
	.shusai {
		max-width:960px;
		font-size:14px;
		margin:35px auto;
	}
}
.shusai span {
	display: inline-block;
	white-space:nowrap;
}

/* ----- modal ----- */

.modal__content h1 {
	font-size:18px;
	color:#eb4c88;
	font-weight: 700;
	position: relative;
	display: inline-block;
	margin-bottom: 1.5em;
}
.modal__content h1::before {
	content: '';
	position: absolute;
	bottom: -15px;
	display: inline-block;
	width: 40px;
	height: 3px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #eb4c88;
	border-radius: 2px;
}
.modal__content img {
	width: 100%;
	height: auto;
}
.modal__content p {
	font-size:14px;
	text-align: left;
}
.modal__content .whatPoemHl {
	text-align: center;
	position: relative;
	width: 70%;
	margin: 25px auto;
	padding: 10px 0;
}
.modal__content.whatPoemHl span {
	display: inline-block;
}
.modal__content .whatPoemHl::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	border: 4px solid #ccc;
	border-right:none;
	border-bottom:none;
}
.modal__content .whatPoemHl::after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 20px;
	height: 20px;
	border: 4px solid #ccc;
	border-left:none;
	border-top:none;
}
@media (min-width: 520px) {
	.modal__content h1 {
		font-size:18px;
	}
	.modal__content p {
		font-size:16px;
		text-align: left;
	}
}

/* ----- aside 2 shusai ----- */

footer {
	background:#eb4c88;
	padding:25px 5%;
}
.kabfull {
	display:block;
	width:214px;
	margin:0 auto 10px;
}
.kabfull img {
	width:214px;
	height:auto;
}
small {
	display:block;
	color:#fff;
	line-height:1.25;
	font-size:12px;
	text-align:center;
}

@media (min-width: 520px) {
	.kabfull {
		width:255px;
	}
	.kabfull img {
		width:255px;
	}
	small {
		font-size:14px;
	}
}