
@charset "utf-8";
body,div,dl,dt,dd,ul,ol,li,p,h1,h2,h3,h4,h5,h6,th,td,pre,code,blockquote,form,fieldset,legend,input,textarea,figcaption,figure{margin:0;padding:0}table{border-collapse:collapse;border-spacing:0}fieldset,img{border:0}address,caption,cite,code,dfn,em,th,var{font-style:normal;font-weight:normal}li{list-style:none}caption,th{text-align:left}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}q:before,q:after{content:''}abbr,acronym{border:0;font-variant:normal}sup{vertical-align:text-top}sub{vertical-align:text-bottom}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit}input,textarea,select{*font-size:100%}legend{color:#FFF}hr{display:none}img{vertical-align:bottom}select,input,button,textarea{font-size:99%}table{font-size:inherit;font:100%;border-collapse:collapse;border-spacing:0}pre,code,kbd,samp,tt{font-family:monospace;*font-size:108%;line-height:100%}.hd{display:block;width:0;height:0;overflow:hidden}.cf:before,.cf:after{content:"";display:table}.cf:after{clear:both}.cf{*zoom:1}article,aside,details,figcaption,figure,footer,header,hgroup,hr,menu,nav,section,main{display:block}*{margin:0;padding:0;box-sizing:border-box;max-height:999999px;outline:none;}*:focus{outline: none;}button{background-color:transparent;border:none;cursor:pointer;outline:none;padding:0;}
/*-----------------------------------------------
 * Bace
 * Modal
 * Header
 * Parts
-------------------------------------------------*/
/*-----------------------------------------------
 * Bace
-------------------------------------------------*/
:root{
	--color-blue: #22afb2;
	--color-black: #372f26;
	--cont-max-width: 1000px;
	--cont-max-outerwidth: 1080px;
	--full-max-width: 1130px;
	--font-zenmaru: 'Zen Maru Gothic', sans-serif;
	--nav-text-shadow: 5px 5px 10px #FFF, -5px -5px 10px #FFF, 5px -5px 10px #FFF, -5px 5px 10px #FFF, 5px 5px 10px #FFF, -5px -5px 10px #FFF, 5px -5px 10px #FFF, -5px 5px 10px #FFF;
	--text-shadow: 2px 2px 10px #FFF, -2px -2px 10px #FFF, 2px -2px 10px #FFF, -2px 2px 10px #FFF;
	--drop-shadow: drop-shadow(0 0 2px #FFF) drop-shadow(0 0 2px #FFF) drop-shadow(0 0 4px #FFF);

	--h2-width: 646;
}

@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: #372f26;
	font-family: 'Noto Sans JP', "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; }
.ah { transition: opacity .3s ease; }
.ah:hover { opacity: .7; }
::selection{
	background: #6ccfee;
	color: #fff;
}
::-moz-selection{
	background: #6ccfee;
	color:#fff;
}
@media screen and (max-width:767px){
	html{
		font-size: 62.5%;
	}
	body{
		font-size: 10px;
		font-size: 1rem;
		min-width: 320px;
	}
	.sp{ display: block; }
	.pc{ display: none; }
	.ah:hover { opacity: 1; }
}

#fullWrap{
  min-width: 350px;
}

/*-----------------------------------------------
 * Modal
-------------------------------------------------*/

/**
 * modalBox
 * 基盤のモーダル
 */
.modalBox{
	-webkit-overflow-scrolling: touch;
	background: rgba(255,255,255,.8);
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
	display: none;
	width: 100%;
	height: 100%;
	overflow: auto;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
}
.oneModal{
	display: none;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
}

/* oneModalIn */
.oneModalIn{
	display: flex;
	justify-content: center;
	align-items: center;
	height: auto;
	width: 100%;
	min-width: 1200px;
	min-height: 100%;
	margin: 0 auto;
	position: relative;
}
.oneModalIn__cont{
	padding: 50px 0;
}
@media screen and (max-width:767px){
	.oneModalIn{
		min-width: 100%;
	}
	.oneModalIn__cont{
		width: 100%;
		padding: 30px 0;
	}
}

/**
 * closeBtn
 */
.closeBtn{
	width: 80px;
	height: 80px;
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 2;
}
@media screen and (max-width:767px){
	.closeBtn{
		width: 40px;
		height: 40px;
	}
}
.closeBtn a{
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
}
.closeBtn a:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	background: url(/wp-content/themes/rearsekai/assets/img/common/icon/icon_close.svg) no-repeat 0 0 / 100%;
	width: 100%;
	height: 100%;
	transform: rotate(180deg);
	opacity: 0;
	transition: .4s ease .5s;
}
.modalBox.--modalopen .closeBtn a:before{
	opacity: 1;
	transform: rotate(0deg);
}


/**
 * iframe
 */
/* common */
.commonIframe{
	width: 100%;
	height: 100%;
	display: block;
}

/* youtube */
.youtubeIframeWrap {
	width: 70%;
	max-width: 159.993vh;
	position: relative;
}
@media screen and (max-width:767px){
	.youtubeIframeWrap {
		width: 100%;
		max-width: 100%;
	}
}
.youtubeIframeWrap:before{
	content: "";
	display: block;
	padding-top: 56.25%;
	z-index: 0;
}
.youtubeIframe{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}


/*-----------------------------------------------
 * Header
-------------------------------------------------*/
.header {
	width: 100%;
	bottom: 0;
	z-index: 999;
	position: fixed;
	top: 0;
	z-index: 1000;
  pointer-events: none;
}
@media screen and (max-width:767px){
  .header {
    top: 0;
		bottom: auto;
    pointer-events: auto;
	}
}

/* inner */
.header__bgin{
  transition: opacity .5s ease, background-color .5s ease;
}

.header.is-fixed .header__bgin {
  background-color: rgba(255, 255, 255, .8);
}

.header__inner{
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 1080px;
	padding: min(calc(26 / 1200 * 100vw), 26px) min(calc(40 / 1200 * 100vw), 40px);
	/* padding: 26px min(3.7037%, 40px); */
	margin: 0 auto;
}

@media screen and (max-width:767px){
	.header__inner {
		-webkit-overflow-scrolling: touch;
		width: 100%;
		height: 100%;
    min-height: 100vh;
		overflow: auto;
		position: fixed;
		top: 0;
		left: 0;
		padding: 80px 0;
		opacity: 0;
		pointer-events: none;
		z-index: 1;
    flex-direction: column;
    transform: translateX(100%);
    transition: opacity .5s ease, transform .8s ease;
	}
	.header.is-active .header__inner {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0%);
	}
	.header:before {
		content: "";
		background: rgba(255, 255, 255, 1);
		position: fixed;
		width: 100%;
		height: 100vh;
		top: 0;
		left: 0;
		z-index: 0;
		pointer-events: none;
		transform: translateX(100%);
		transition: opacity .5s ease, transform .8s ease;
	}
	.header.is-active:before {
		opacity: 1;
		transform: translateX(0%);
	}
}

/**
 * title
 */
.headerTitle{
	/* width: 128px;
	height: 47px; */
	width: min(calc(128 / 1200 * 100vw), 128px);
	height: min(calc(47 / 1200 * 100vw), 47px);
	flex-shrink: 0;
	margin-right: 4.8%;
	position: relative;
  pointer-events: auto;
}
.headerTitle a{
	width: 100%;
	height: 100%;
	background: url(/wp-content/themes/rearsekai/assets/img/common/logo/logo.png) no-repeat center / contain;
	position: absolute;
	top: 0;
	left: 0;
}

html[lang="en"] .headerTitle a{
	width: 100%;
	height: 100%;
	background: url(/wp-content/themes/rearsekai/assets/img/common/logo/logo2.png) no-repeat center / contain;
	position: absolute;
	top: 0;
	left: 0;
}

@media screen and (max-width:767px){
  .headerTitle{
    width: 55.455%;
	height: auto;
    padding-top: 21.237%;
    margin-right: unset;
  }
}


/**
 * headerNav
 */
.headerNav{
	width: 100%;
	position: relative;
	display: flex;
}
@media screen and (max-width:767px){
	.headerNav {
		position: unset;
		z-index: 1;
    flex-direction: column;
    padding: 0 14.286%;
    margin-top: 10.39%;
	}
  .headerNavLists{
    flex-direction: column;
  }
	.headerNavLists__item a {
		color: var(--color-black);
    text-align: center;
    display: block;
	}
}


.headerNavLists{
	display: flex;
	flex-wrap: wrap;
}
.headerNavLists__item{
	padding: 0 12px;
}
.headerNavLists__item a,
.headerLanguage a{
	text-decoration: none;
	/* font-size: 16px; */
	font-size: min(calc(16 / 1200 * 100vw), 16px);
	font-family: var(--font-zenmaru);
	text-shadow: var(--nav-text-shadow);
	font-weight: 700;
	letter-spacing: 0;
	transition: .3s ease;
	pointer-events: auto;
}
@media screen and (max-width: 770px) {
	.headerNavLists__item a,
	.headerLanguage a{
		font-size: 3.696vw
	}
}
.headerNavLists__item a:hover,
.headerNavLists__item a.--is-current{
	color: var(--color-blue);
}

.headerLanguage{
	position: relative;
	width: 130px;
	flex-shrink: 0;
	margin-left: auto;
}
.headerLanguage dt{
  position: relative;
  display: flex;
  align-items: center;
}
.headerLanguage dt::before{
  width: 36px;
  height: 36px;
  content: '';
  display: block;
  background: url(/wp-content/themes/rearsekai/assets/img/common/icon/icon_lang_shadow.png) no-repeat center center/100%;
  position: absolute;
  left: -10px;
}
.headerLanguage dt>a{
  padding-left: 26px;
}
.headerLanguageLists{
	display: none;
	position: absolute;
  width: 100%;
  top: 32px;
}
.headerLanguageList{
  border-top: 3px solid var(--color-black);
}
.headerLanguageList:last-child{
  border-bottom: 3px solid var(--color-black);
}
.headerLanguageList a{
  text-shadow: none;
  display: block;
  text-align: center;
  padding: 8px 0;
  background-color: rgba(255, 255, 255, 0.5);
}
.headerLanguageList a:hover{
  color: var(--color-blue);
}

/**
 * navBtn
 */
@media screen and (max-width:770px){
  .headerNavLists__item{
    width: 100%;
    position: relative;
  }
  .headerNavLists__item::before,
  .headerNavLists__item::after{
    width: 24px;
    height: 20px;
    display: block;
    content: "";
    display: inline-block;
    background-color: var(--color-blue);
    -webkit-mask-image: url(/wp-content/themes/rearsekai/assets/img/common/deco/deco_spmenu.svg);
    mask-image: url(/wp-content/themes/rearsekai/assets/img/common/deco/deco_spmenu.svg);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    position: absolute;
    top: -10px;
  }
  .headerNavLists__item::before{
    left: 0;
  }
  .headerNavLists__item::after{
    right: 0;
    transform: scale(-1,-1);
  }
  .headerNavLists__item a{
    width: calc(100% - 22px);
    margin: 0 auto;
    padding: 6.494% 0;
    border-top: 2px solid var(--color-blue);
    font-size: 3.896vw;
  }
  .headerNavLists__item:last-child a{
    border-bottom: 2px solid var(--color-blue);
  }

  .headerNavLists{
    position: relative;
  }

  .headerNavLists::before,
  .headerNavLists::after{
    width: 24px;
    height: 20px;
    display: block;
    content: "";
    display: inline-block;
    background-color: var(--color-blue);
    -webkit-mask-image: url(/wp-content/themes/rearsekai/assets/img/common/deco/deco_spmenu.svg);
    mask-image: url(/wp-content/themes/rearsekai/assets/img/common/deco/deco_spmenu.svg);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    position: absolute;
    bottom: -10px;
  }
  .headerNavLists::before{
    left: 0;
  }
  .headerNavLists::after{
    right: 0;
    transform: scale(-1,-1);
  }

	.header__navBtnWrap {
    width: 40px;
		height: 40px;
		position: absolute;
    top: max(2.1333333333vw,10.6666666667px);
    right: max(4vw,20px);
		z-index: 2;
    background: rgb(35,176,179);
    background: linear-gradient(139deg, rgba(35,176,179,1) 0%, rgba(1,131,131,1) 100%);
    padding: 1px;
  }
	.header__navBtn {
    display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 100%;
		position: relative;
    border: 1px solid #FFF;
	}
	.header__navBtn__lineWrap {
		width: 19px;
		height: 15px;
		position: relative;
	}
	.header__navBtn--line {
		background-color: #fff;
		display: block;
		width: 100%;
		height: 1px;
		margin: auto;
		position: absolute;
    transition: .4s ease;
	}
	.header__navBtn--line:nth-child(1) {
		top: 0;
	}
	.header__navBtn--line:nth-child(2) {
		top: 0;
		bottom: 0;
	}
	.header__navBtn--line:nth-child(3) {
		bottom: 0;
	}

  .header__navBtn.is-active .header__navBtn--line:nth-child(1) {
    top: 7px;
    transform: rotate(-13deg);
  }
  .header__navBtn.is-active .header__navBtn--line:nth-child(2){
    transform: translateX(-100%);
    opacity: 0;
    transition: transform .4s ease, opacity .3s ease;
  }
  .header__navBtn.is-active .header__navBtn--line:nth-child(3) {
    bottom: 7px;
    transform: rotate(13deg);
  }
  @media screen and (max-width: 767px){
    .header__navBtn.is-active .header__navBtn--line:nth-child(1) {
      transform: rotate(-45deg);
    }
    .header__navBtn.is-active .header__navBtn--line:nth-child(3) {
      transform: rotate(45deg);
    }
  }

  .headerLanguage{
    position: absolute;
    top: 2.87%;
    right: 20%;
  }

  .headerLanguageList a{
    background-color: #FFF;
  }
}


/*-----------------------------------------------
 * Parts
-------------------------------------------------*/

/**
 * shareLists
 */
.shareLists {
	display: flex;
}

/* item */
.shareLists__item {
	width: 60px;
	height: 60px;
}

/* link */
.shareLists__link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	position: relative;
	text-decoration: none;
}
.shareLists__link:before {
	content: "";
	background-color: #000;
	display: block;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: 100%;
	mask-size: 100%;
	transition: background-color .4s ease;
}
.shareLists__link:hover:before {
	background-color: #ff0000;
}

/* 各SNSパーツ */
.shareLists__item.is-twitter .shareLists__link:before {
	width: 26px;
	height: 26px;
	-webkit-mask-image: url(/wp-content/themes/rearsekai/assets/img/common/icon/icon_x.svg);
	mask-image: url(/wp-content/themes/rearsekai/assets/img/common/icon/icon_x.svg);
}
.shareLists__item.is-facebook .shareLists__link:before {
	width: 26px;
	height: 26px;
	-webkit-mask-image: url(/wp-content/themes/rearsekai/assets/img/common/icon/icon_fb.svg);
	mask-image: url(/wp-content/themes/rearsekai/assets/img/common/icon/icon_fb.svg);
}
.shareLists__item.is-line .shareLists__link:before {
	width: 26px;
	height: 26px;
	-webkit-mask-image: url(/wp-content/themes/rearsekai/assets/img/common/icon/icon_line.svg);
	mask-image: url(/wp-content/themes/rearsekai/assets/img/common/icon/icon_line.svg);
}
