@charset "utf-8";
/*-----------------------------------------------
* 01. Template
* 02. Modal
-------------------------------------------------*/
/*-----------------------------------------------
* 01. Template
-------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;700&family=Kosugi+Maru&display=swap');
@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 100;
}
@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 200;
}
@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 300;
}
@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 400;
}
@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Bold");
	font-weight: bold;
}
body{
    -webkit-text-size-adjust: 100%;
    background-color: #fff;
    color: #000;
    font-family: "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-feature-settings: "palt";
    font-size: 14px;
    font-weight: normal;
    letter-spacing: 0.07em;
    line-height: 1.8;
    word-wrap: break-word;
}
.pc{ display: block; }
.sp{ display: none; }
a{ color: #222; }
a:hover{ text-decoration: none; }
::selection{
	background: #000;
	color: #fff;
}
::-moz-selection{
    background: #000;
    color:#fff;
}
@media screen and (min-width: 769px){
    #fullWrap{
        min-width: 1200px;
        min-height: 620px;
        width: 100%;
    }
    .ah { transition: opacity .3s ease; }
    .ah:hover { opacity: .7; }
}
@media screen and (max-width:768px){ 
    html{ 
        font-size: 62.5% !important;
    }
    body{
        font-size: 10px; 
        font-size: 1rem;
        min-width: 320px;
    }
    .sp{ display: block; }
    .pc{ display: none; }
    img{ max-width: 100%; height: auto; }
    #fullWrap{
        width: 100%;
        overflow: hidden;
    }
}

/* ScrollBar Setting */
::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}
::-webkit-scrollbar-track {
  border-radius: 4px;
  background: rgb(230, 230, 230);
}
::-webkit-scrollbar-thumb {
	background: #ffff00;
	border-radius: 4px;
	margin: 2px;
	box-shadow: none;
}
html{
	scrollbar-color: #ffff00 rgb(230, 230, 230);
	scrollbar-width: thin;
}



/*-----------------------------------------------
* 02. Modal
-------------------------------------------------*/
.modalBox {
    -webkit-overflow-scrolling: touch;
    background-color: rgba(255,255,255,.8);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    width: 100%;
    height: 100%;
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
}
.js-modalBox{
    display: none;
}
.closeBtn {
    width: 100%;
    height: 100%;
    min-width: 1200px;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.closeBtn a{
/*    background: url(../assets/img/close.png) no-repeat center;*/
    display: block;
    width: 80px;
    height: 80px;
    pointer-events: auto;
    position: absolute;
    top: 0px;
    right: 0px;
    transition: all .3s ease-in-out;
    border-bottom-left-radius: 16px;
    background-color: #222222;
}
.closeBtn a:before{
    content: 'Close';
    position: absolute;
    font-family: 'Dancing Script', cursive;
    font-size: 20px;
    font-weight: 700;
    width: 100%;
    height: 20px;
    line-height: 20px;
    text-align: center;
    bottom: 16px;
    color: #fff;
    transition: all .3s ease-in-out;
}
.closeBtn a div{
    width: 48px;
    height: 12px;
    position: absolute;
    margin: auto;
    top: 22px;
    left: calc(50% - 24px);
}
.closeBtn a div span{
    width: 48px;
    height: 2px;
    background: #fff;
    right: 0;
    left: 0;
    position: absolute;
    transition: all .3s ease-in-out;
}
.closeBtn a div span:nth-of-type(1){
    top:6px;
    transform: rotate(30deg);
}
.closeBtn a div span:nth-of-type(2){
    top:6px;
    transform: rotate(-30deg);
}
.oneModal {
    display: none;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.oneModalIn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    height: auto;
    width: 100%;
    min-width: 1200px;
    min-height: 100vh;
    margin: 0 auto;
    position: relative;
}
.ytIframeWrap{
    width: 920px;
    height: 520px;
    margin: 30px 0;
}
.ytIframe{
    width: 100%;
    height: 100%;
    display: block;
}
@media screen and (min-width: 769px){
    .modalBox--Menu {
        -webkit-overflow-scrolling: touch;
        background: #fff;
        width: 50%;
        height: 100%;
        overflow: auto;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 99999;
    }
}
@media screen and (max-width:768px){
    .oneModalIn{
        min-width: 100%;
    }
    .closeBtn{
        min-width: 100%;
    }
    .closeBtn a{
        width: 96px;
        height: 96px;
    }
    .closeBtn a:before{
        height: 24px;
        line-height: 24px;
    }
    .closeBtn a div{
        width: 56px;
        height: 16px;
        top: 28px;
        left:calc(50% - 28px);
    }
    .closeBtn a div span{
        width: 56px;
        top:8px;
    }
    .oneModalIn_cont{
        width: 100%;
    }
    .ytIframeWrap{
        width: 100%;
        height: auto;
        padding-top: 56.25%;
        position: relative;
    }
    .ytIframe{
        position: absolute;
        top: 0;
        left: 0;
    }
}

/* imageModal */
#imgModal .oneModalIn__cont{
	width: 100%;
}
.modalImgWrap{
	width: 66.6667%;
	max-width: 920px;
	margin: 0 auto;
	height: calc(100vh - 200px);
	height: calc(100svh - 200px);
	position: relative;
}
.modalImgIn{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.modalImgIn img{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	object-fit: scale-down;
    -webkit-touch-callout: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -moz-touch-callout: none;
    touch-callout: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    user-drag: none;
}
@media screen and (max-width: 768px){
	.modalImgWrap{
		width: 93.6%;
	}
}


/*-----------------------------------------------
* 02. NEWS PAGER
-------------------------------------------------*/
.pagenavs{
	width: 880px;
	margin: 0 auto 80px;
	display: flex;
	align-items: center;
}
.pagenav-num{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin: 0 auto;
}
.pagenav-num li{
	margin: 6px;
}
.pagenav-num li a{
	width: 40px;
	height: 40px;
	font-family: 'Dancing Script', 'Kosugi Maru', sans-serif, cursive;
	font-weight: 700;
	font-size: 20px;
	text-decoration: none;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	letter-spacing: 0;
	line-height: 1;
}
.pagenav-num li a:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: calc(100% - 4px);
	height: calc(100% - 4px);
	background-color: #fff;
	border-radius: 50%;
	border: 2px solid #ff6868;
}
.pagenav-num li a:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #ff6868;
	border-radius: 50%;
	transform: scale(50%);
	opacity: 0;
	transition: .3s ease;
}
.pagenav-num li a span{
	display: inline-block;
	z-index: 2;
}
.pagenav-num li a:hover::after{
	transform: scale(100%);
	opacity: 60%;
}
.pagenav-num li.is-current a:after{
	opacity: 100%;
	transform: scale(100%);
}
.pagenav-num li.is-current a{
	color: #FFF;
}
@media screen and (max-width:768px){
	.pagenavs{
		width: 87.2%;
		margin-bottom: 12.8%;
	}
	.pagenav-num li a{
		width: 64px;
		height: 64px;
		font-size: 24px;
	}
}