@charset "utf-8";

/* 基本設定　ここから */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

.pc { display: block; }
.sp { display: none; }

@media screen and (max-width: 769px){
	.pc { display: none; }
	.sp { display: block; }
}

*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

html {
	
}

body {
	font-family: "Noto Sans JP","游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.7;
	color: #000000;
}
a {
	transition: .3s;
	text-decoration: none;
}



@media screen and (max-width: 767px) {

} 


/*========= ナビゲーションのためのCSS ===============*/

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

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

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

.g-nav_inner {
	max-width:1200px;
	margin: 0 auto;
	display: flex;
	justify-content:space-around;
	padding: 200px 0 0 0;
}
.g-navi_lists {
	width: 400px;
	display: block;
}
@media screen and (max-width: 767px) {
	.g-nav_inner {
		max-width:100%;
		padding: 100px 0 0 0;
	}
	.g-navi_lists {
		width: 400px;
		display: block;
	}
} 


/*ナビゲーション*/
#g-nav ul {
	width: 400px;
  z-index: 999;
	margin-bottom: 50px;
}

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

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

#g-nav li a{
	color: #fff;
	text-decoration: none;
	padding: 25px 0;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: 700;
	font-size: 24px;
	border-bottom: 1px dashed #FFFFFF;
}
#g-nav li:last-child a {
	border-bottom: none;
}

@media screen and (max-width: 767px) {
	#g-nav li a{
		padding: 25px 0;
		font-size: 18px;
	}
	#g-nav li:last-child a {
		border-bottom: none;
	}
} 


.g-navi_btn {
	width: 285px;
	height: 85px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #FFFFFF;
	border-radius: 50px;
}
.g-navi_btn span {
	display: block;
	color: #283C64;
	font-weight: 700;
	font-size: 16px;
	padding-right: 20px;
}
.g-navi_btn img {
	width: 40px;
	height: 40px;
}
@media screen and (max-width: 767px) {
	.g-navi_btn {
		width: 240px;
		height: 60px;
		border-radius: 50px;
	}
	.g-navi_btn span {
		font-size: 14px;
		padding-right: 10px;
	}
	.g-navi_btn img {
		width: 40px;
		height: 40px;
	}
} 



.g-nav_map {
	width: 400px;
	color: #fff;
	text-align: center;
}
.g-nav_map p.p1 {
	font-size: 14px;
	margin-top: 30px;
}
.g-nav_map p.p2 {
	font-weight: 700;
	font-size: 18px;
	margin-top: 20px;
}
@media screen and (max-width: 767px) {
	.g-nav_map {
		display: none;
	}
} 

/*========= ボタンのためのCSS ===============*/
.openbtn {
	position: fixed;
	z-index: 9999;/*ボタンを最前面に*/
	top: 0px;
	right: 0px;
	cursor: pointer;
	width: 90px;
	height: 90px;
	background-color: #003C8A;
}
.openbtn p {
	position: absolute;
	width: 100%;
	top: 10px;
	color: #FFFFFF;
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	text-align: center;
	font-size: 14px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 24px;
    height: 3px;
    border-radius: 2px;
	background-color: #fff;
  	width: 45%;
  }

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

.openbtn.active span:nth-of-type(1) {
    top: 42px;
    left: 26px;
    transform: translateY(6px) rotate(-45deg);
    width: 45%;
}
.openbtn.active span:nth-of-type(2){
    top: 54px;
    left: 26px;
    transform: translateY(-6px) rotate(45deg);
    width: 45%;
}

@media screen and (max-width: 767px) {
	
	/*========= ボタンのためのCSS ===============*/
	.openbtn {
		width: 64px;
		height: 64px;
	}
	.openbtn p {
		top: 10px;
		font-size: 10px;
	}

	/*×に変化*/	
	.openbtn span{
		left: 14px;
		height: 3px;
		width: 60%;
		}

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

	.openbtn.active span:nth-of-type(1) {
			top: 32px;
			left: 14px;
			transform: translateY(6px) rotate(-45deg);
			width: 60%;
	}
	.openbtn.active span:nth-of-type(2){
			top: 44px;
			left: 14px;
			transform: translateY(-6px) rotate(45deg);
			width: 60%;
	}

} 





.wrap_hypoxic-training {
	width: 100%;
	margin: 0;
	padding: 0;
	position: relative;
}


/*ヘッダー*/

header {

}
.wrap_header {
	width: 100%;
	background-color: #FFFFFF;
	height: 90px;
	position: fixed;
	top: 0;
	z-index: 9997;
	display: flex;
  justify-content: space-between;
  align-items: center;
	padding: 20px 200px 20px 100px;

}

@media screen and (max-width: 767px) {
	.wrap_header {
		width: 100%;
		height: 64px;
		justify-content: space-between;
		align-items: center;
		padding: 20px 0 20px 20px;

	}
} 



.head_logo{
	width: 300px;
	height: 50px;
}
.head_logo img{
	width: 100%;
}
.head_tel {
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
	font-size: 28px;
}
.head_tel a {
	color: #000000;	
}
@media screen and (max-width: 767px) {
	.head_logo{
		width: 206px;
		height: 34px;
	}
	.head_logo img{
		width: 100%;
	}
	.head_tel {
		display: none;
	}
} 


.head_contact {
	width: 90px;
	height: 90px;
	background-color: #EAEEF2;
  display: flex;
	flex-direction:column;
  justify-content: center;
  align-items: center;
	position: fixed;
	z-index: 9998;/*ボタンを最前面に*/
	top: 0px;
	right: 90px;
}
.head_contact span {
	display: block;
	text-align: center;
	font-size: 12px;
	font-weight: 700;
	position: absolute;
	top: 10px;
	color: #003C8A;
}
.head_contact img {
	position: absolute;
	top: 30px;
	width: 56px;
	height: 40px;
}

@media screen and (max-width: 767px) {
	.head_contact {
		width: 64px;
		height: 64px;
		top: 0px;
		right: 64px;
	}
	.head_contact span {
		font-size: 9px;
		top: 8px;
	}
	.head_contact img {
		top: 26px;
		width: 35px;
		height: 25px;
	}
} 


/*========= 追従ボタン ===============*/

.cta_btn {
	width: 140px;
	height: 140px;
	display: block;
	position: fixed;
	bottom: 50px;
	right: 50px;
	background-image: url(../images/hypoxic-training/yoyaku.png);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: center center;
}
.cta_btn:hover {
	background-image: url(../images/hypoxic-training/yoyaku_ov.png);
}
@media screen and (max-width: 767px) {
	.cta_btn {
		/*display: none;*/
	width: 100px;
	height: 100px;
	display: block;
	position: fixed;
	bottom: 50px;
	right: 10px;
	background-image: url(../images/hypoxic-training/yoyaku.png);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: center center;
		z-index:1200;
	}	
} 


/*========= メインビジュアル・スライドショー ===============*/

#main_visual {
	margin-top: 90px;
  width: 100%;
	min-width: 1000px;
  aspect-ratio: 120 / 72;
	position: relative;
}

.slide {
  position: relative;
  width: 100%;
	min-width: 1000px;
  aspect-ratio: 120 / 72;
  overflow: hidden;
}

.slide-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: slider-1 24s linear infinite;
}

.slide-image:nth-child(1) {
	background-image: url(../images/hypoxic-training/mv_01_pc.jpg);
	animation-delay: -2s;
}

.slide-image:nth-child(2) {
  background-image: url(../images/hypoxic-training/mv_02_pc.jpg);
  animation-delay: 6s;
}

.slide-image:nth-child(3) {
  background-image: url(../images/hypoxic-training/mv_03_pc.jpg);
  animation-delay: 14s;
}




@keyframes slider-1 {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  4.16% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  41.66% {
    opacity: 0;
    transform: scale(1.2);
  }
    100% {
  opacity: 0;
  }
}

.catchcopy {
	position: absolute;
	top: 0;
	left: 30px;
	width: 50%;
	/*left: 100px;*/
	/*width: 57%;*/
	aspect-ratio: 688 / 550;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-image: url(../images/hypoxic-training/mv_titile.png);
}

@media screen and (max-width: 767px) {
	
	/*========= メインビジュアル・スライドショー ===============*/

	#main_visual {
		margin-top: 90px;
		width: 100%;
		min-width: 100%;
		aspect-ratio: 39 / 50;
		position: relative;
	}

	.slide {
		position: relative;
		width: 100%;
		min-width: 100%;
		aspect-ratio: 39 / 50;
		overflow: hidden;
	}

	.slide-image {
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		opacity: 0;
		animation: slider-1 24s linear infinite;
	}

	.slide-image:nth-child(1) {
		background-image: url(../images/hypoxic-training/mv_01_sp.jpg);
		animation-delay: -2s;
	}

	.slide-image:nth-child(2) {
		background-image: url(../images/hypoxic-training/mv_02_sp.jpg);
		animation-delay: 6s;
	}

	.slide-image:nth-child(3) {
		background-image: url(../images/hypoxic-training/mv_03_sp.jpg);
		animation-delay: 14s;
	}

	.catchcopy {
		position: absolute;
		top: 0;
		left: 10px;
		width: 80%;
		aspect-ratio: 344 / 305;
		background-position: center;
		background-repeat: no-repeat;
		background-size: 100% auto;
		background-image: url(../images/hypoxic-training/mv_title_sp.png);
	}
} 



/*========= NEWS ===============*/

.news {
	position: absolute;
	bottom: 50px;
	left: 100px;
	width: 45%;
	max-width: 700px;
	padding: 20px 40px;
	color: #FFFFFF;
	font-size: 16px;
	border-radius: 70px;
	background-color: hsla(0,0%,0%,0.74);
	display: flex;
}
.news h2.h2news {
	font-weight: 400;
	border-right: 1px solid #FFFFFF;
	padding: 10px 20px 10px 0;
}
.news p {
	padding: 10px 20px;
}
.news_date {
	font-weight: 700;
	padding-right: 20px;
}
.news_txt a {
	color: #FFFFFF;
	font-weight: 700;
}

@media screen and (max-width: 767px) {
	/*========= NEWS ===============*/

	.news {
		position: absolute;
		bottom: 40px;
		right: 0;
		left: 0;
		margin: 0 auto;
		width: 90%;
		max-width: 90%;
		padding: 5px 20px;
		font-size: 14px;
		border-radius: 70px;
		display: flex;
		align-items: center;
	}
	.news h2.h2news {
		font-weight: 400;
		border-right: 1px solid #FFFFFF;
		padding: 5px 20px 5px 0;
	}
	.news p {
		padding: 5px 20px;
	}
	.news_date {
		display: block;
		font-weight: 700;
		padding-right: 20px;
	}
	.news_txt a {
		display: block;
		color: #FFFFFF;
		font-weight: 700;
	}
} 




/*========= メインコンテンツ ===============*/

main {
	
}
.section {
	width: 100%;
	min-width: 1000px;
}
.inner {
	width: 1000px;
	margin: 0 auto;
}

@media screen and (max-width: 767px) {
	
	.section {
		width: 100%;
		min-width: 100%;
	}
	.inner {
		width: 95%;
		min-width: 95%;
		margin: 0 auto;
	}
} 


.h2wrap {
	width: 1000px;
	margin: 0 auto;
	padding: 80px 0;
	background-position: center center;
	background-size: auto 156px;
	background-repeat: no-repeat;
}
.h2_guide {
	background-image: url(../images/hypoxic-training/bg_h2guide.png);
}
.h2_feature {
	background-image: url(../images/hypoxic-training/bg_h2feature.png);
}
.h2_time-saving {
	background-image: url(../images/hypoxic-training/bg_h2time-saving.png);
}
.h2_flow {
	background-image: url(../images/hypoxic-training/bg_h2flow.png);
}
.h2_fee {
	background-image: url(../images/hypoxic-training/bg_h2fee.png);
}
.h2_report {
	background-image: url(../images/hypoxic-training/bg_h2report.png);
}


@media screen and (max-width: 767px) {
	.h2wrap {
		width: 100%;
		margin: 0 auto;
		padding: 55px 0;
		background-position: center center;
		background-size: auto 73px;
		background-repeat: no-repeat;
	}
	.h2_guide {
		background-image: url(../images/hypoxic-training/bg_h2guide_sp.png);
		background-size: auto 80px !important;
	}
	.h2_feature {
		background-image: url(../images/hypoxic-training/bg_h2feature_sp.png);
		background-size: auto 80px !important;
	}
	.h2_time-saving {
		background-image: url(../images/hypoxic-training/bg_h2time-saving_sp.png);
		background-size: auto 130px !important;
	}
	.h2_flow {
		background-image: url(../images/hypoxic-training/bg_h2flow_sp.png);
		background-size: auto 80px !important;
	}
	.h2_fee {
		background-image: url(../images/hypoxic-training/bg_h2fee_sp.png);
		background-size: auto 80px !important;
	}
	.h2_report {
		background-image: url(../images/hypoxic-training/bg_h2report_sp.png);
		background-size: auto 80px !important;
	}
} 



h2.effect {
	margin: 0;
	text-align: center;
	font-size: 40px;
	line-height: 1;
	font-weight: 700;
	letter-spacing: 0.04rem;
	color: #003C8A;
}
h2.effect span {
  display: inline-block;
  padding: 4px 20px;
  position: relative;
}
h2.effect span,
h2.effect span::after {
  animation-delay: var(--animation-delay, 2s); /* アニメーションの開始タイミング */
  animation-iteration-count: var(--iterations, 1); /* 再生される回数 */
  animation-duration: var(--duration, 800ms); /* 完了するまでの所要時間 */
  animation-fill-mode: both; /* 実行の前後 */
  animation-timing-function: cubic-bezier(0, 0, 0.2, 1); /* タイミングの指定 */
}

h2.effect {
    margin: 0;
    text-align: center;
    font-size: 2.4rem;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.04rem;
}
h2.effect span {
    display: inline-block;
    padding: 4px 20px;
    position: relative;
}
h2.effect span,
h2.effect span::after {
  animation-delay: var(--animation-delay, 2s); /* アニメーションの開始タイミング */
  animation-iteration-count: var(--iterations, 1); /* 再生される回数 */
  animation-duration: var(--duration, 800ms); /* 完了するまでの所要時間 */
  animation-fill-mode: both; /* 実行の前後 */
  animation-timing-function: cubic-bezier(0, 0, 0.2, 1); /* タイミングの指定 */
}

h2.effect.scroll-in span {
  --animation-delay: var(--delay, 0);
  --animation-duration: var(--duration, 800ms);
  --animation-iterations: var(--iterations, 1);
  position: relative;
  animation-name: clip-text;
  white-space: nowrap;
}
h2.effect.scroll-in span::after {
  content: "";
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #003c8a;
  transform: scaleX(0);
  transform-origin: 0 50%;
  pointer-events: none;
  animation-name: text-revealer;
}

@media screen and (max-width: 767px) {
	h2.effect {
		font-size: 24px;
	}
} 


/*白バージョン*/

div.effect {
	margin: 0;
	text-align: center;
	font-size: 40px;
	line-height: 1;
	font-weight: 700;
	letter-spacing: 0.04rem;
	color: #ffffff;
}
div.effect span {
  display: inline-block;
  padding: 4px 20px;
  position: relative;
}
div.effect span,
div.effect span::after {
  animation-delay: var(--animation-delay, 2s); /* アニメーションの開始タイミング */
  animation-iteration-count: var(--iterations, 1); /* 再生される回数 */
  animation-duration: var(--duration, 800ms); /* 完了するまでの所要時間 */
  animation-fill-mode: both; /* 実行の前後 */
  animation-timing-function: cubic-bezier(0, 0, 0.2, 1); /* タイミングの指定 */
}

div.effect {
    margin: 0;
    text-align: center;
    font-size: 2.4rem;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.04rem;
}
div.effect span {
    display: inline-block;
    padding: 4px 20px;
    position: relative;
}
div.effect span,
div.effect span::after {
  animation-delay: var(--animation-delay, 2s); /* アニメーションの開始タイミング */
  animation-iteration-count: var(--iterations, 1); /* 再生される回数 */
  animation-duration: var(--duration, 800ms); /* 完了するまでの所要時間 */
  animation-fill-mode: both; /* 実行の前後 */
  animation-timing-function: cubic-bezier(0, 0, 0.2, 1); /* タイミングの指定 */
}

div.effect.scroll-in span {
  --animation-delay: var(--delay, 0);
  --animation-duration: var(--duration, 800ms);
  --animation-iterations: var(--iterations, 1);
  position: relative;
  animation-name: clip-text;
  white-space: nowrap;
}
div.effect.scroll-in span::after {
  content: "";
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  transform: scaleX(0);
  transform-origin: 0 50%;
  pointer-events: none;
  animation-name: text-revealer;
}

@media screen and (max-width: 767px) {
	div.effect {
		font-size: 24px;
	}
} 


/*画像バージョン*/

figure.effect {
	margin: 0;
}
figure.effect span {
  display: inline-block;
  padding: 0;
  position: relative;
}
figure.effect span,
figure.effect span::after {
  animation-delay: var(--animation-delay, 2s); /* アニメーションの開始タイミング */
  animation-iteration-count: var(--iterations, 1); /* 再生される回数 */
  animation-duration: var(--duration, 800ms); /* 完了するまでの所要時間 */
  animation-fill-mode: both; /* 実行の前後 */
  animation-timing-function: cubic-bezier(0, 0, 0.2, 1); /* タイミングの指定 */
}

figure.effect {
    margin: 0;
}
figure.effect span {
    display: inline-block;
    padding: 0;
    position: relative;
}
figure.effect span,
figure.effect span::after {
  animation-delay: var(--animation-delay, 2s); /* アニメーションの開始タイミング */
  animation-iteration-count: var(--iterations, 1); /* 再生される回数 */
  animation-duration: var(--duration, 800ms); /* 完了するまでの所要時間 */
  animation-fill-mode: both; /* 実行の前後 */
  animation-timing-function: cubic-bezier(0, 0, 0.2, 1); /* タイミングの指定 */
}

figure.effect.scroll-in span {
  --animation-delay: var(--delay, 0);
  --animation-duration: var(--duration, 800ms);
  --animation-iterations: var(--iterations, 1);
  position: relative;
  animation-name: clip-text;
  white-space: nowrap;
}
figure.effect.scroll-in span::after {
  content: "";
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #005eea;
  transform: scaleX(0);
  transform-origin: 0 50%;
  pointer-events: none;
  animation-name: text-revealer;
}
.cont_block figure.effect.scroll-in span::after {
	border-radius: 10px;	
}


@media screen and (max-width: 767px) {
	figure.effect {
		
	}
} 



@keyframes clip-text {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes text-revealer {
  0%, 50% {
    transform-origin: 0 50%;
  }
  60%, 100% {
    transform-origin: 100% 50%;
  }
  60% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}

.btn_b, .btn_w {
	display: block;
	margin: 0 auto;
	font-family: "Noto Sans JP","游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	justify-content: center;
	align-items: center;
	background-color: #FFFFFF;
	border-radius: 50px;
	border: 2px solid #005EEA;
	padding: 30px 80px 30px 40px;
	color: #283C64;
	font-size: 16px;
	font-weight: 700;
	position: relative;
	transition: .3s;
}
.btn_b::after, .btn_w::after {
	content: "";
	width: 40px;
	height: 40px;
	background-image: url("../images/hypoxic-training/arrow_btn1.png");
	background-size: 100% auto;
	background-repeat: no-repeat;
	position: absolute;
	right: 20px;
	top: 0;
  bottom: 0;
  margin: auto 0;
	transition: .3s;
}
.btn_b:hover, .btn_w:hover {
	cursor: pointer;
}
.btn_b:hover {
	background-color: #005EEA;
	color: #ffffff;
}
.btn_w:hover {
	color: #005EEA;
}

.btn_b:hover::after, .btn_w:hover::after {
	content: "";
	background-image: url("../images/hypoxic-training/arrow_btn1_ov.png");
}

@media screen and (max-width: 767px) {
	.btn_b, .btn_w {
		padding: 20px 60px 20px 20px;
		color: #283C64;
		font-size: 14px;
	}
	.btn_b::after, .btn_w::after {
		width: 40px;
		height: 40px;
		right: 10px;
	}
} 



/*========= トレーニング空間スライダー ===============*/

.slider_wrap {

}
.slick-slider {
  position: relative;
  display: block;
	padding-bottom: 40px !important;
}
.slider {
  margin: 0;
	padding: 0;
  width: 100%;
	min-width: 1000px;
	overflow: hidden;
}
.slider-img {
  margin: 0 2vw;
}
.slider-img img {
	width: 100%;
	aspect-ratio: 56 / 38;
	object-fit: cover;
	border-radius: 20px;
	margin-bottom: 20px;
}
.slick-dots {
    position: absolute;
    bottom: 0 !important;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.slider_title {
	font-size: 24px;
	font-weight: 400;
	position: relative;
	padding-bottom: 5px;
	margin-bottom: 15px;
}
.slider_title::after {
	content: "";
	width: 50px;
	height: 2px;
	background-color: #005EEA;
	position: absolute;
	bottom: 0;
	left: 0;
}
.slider_exp {
	font-size: 16px;
	font-weight: 400;
}


@media screen and (max-width: 767px) {
	.slick-slider {
		position: relative;
		display: block;
		padding-bottom: 40px !important;
	}
	.slider {
		margin: 0;
		padding: 0;
		width: 100%;
		min-width: 100%;
		overflow: hidden;
	}
	.slider-img {
		margin: 0 2vw;
	}
	.slider-img img {
		width: 100%;
		aspect-ratio: 56 / 38;
		object-fit: cover;
		border-radius: 20px;
		margin-bottom: 20px;
	}
	.slick-dots {
		position: absolute;
		bottom: 0 !important;
		display: block;
		width: 100%;
		padding: 0;
		margin: 0;
		list-style: none;
		text-align: center;
	}

	.slider_title {
		font-size: 18px;
		position: relative;
		margin-bottom: 15px;
	}
	.slider_title::after {
		content: "";
		width: 40px;
		height: 2px;
		background-color: #005EEA;
		position: absolute;
		bottom: 0;
		left: 0;
	}
	.slider_exp {
		font-size: 14px;
	}
} 



/*========= 共通コンテンツ部分 ===============*/

.cont_wrap {
	width: 920px;
	margin: 0 auto;
}
.cont_block {
	display: flex;
	justify-content:space-between;
	margin-bottom: 80px;
}
.cont_block:nth-child(even) {
	flex-direction:row-reverse;
}
.cont_img {
	width: 380px;
	height: 280px;
}
.cont_txt {
	width: 490px;
}
.h3cont {
	font-size: 24px;
	font-weight: 700;
	position: relative;
	padding-bottom: 5px;
	margin-bottom: 15px;
}
.h3cont::after {
	content: "";
	width: 50px;
	height: 2px;
	background-color: #005EEA;
	position: absolute;
	bottom: 0;
	left: 0;
}

.h3cont_2 {
	font-size: 24px;
	font-weight: 700;
	position: relative;
	padding-bottom: 8px;
	margin-bottom: 30px;
	text-align: center;
	line-height: 1.4;
}
.h3cont_2::after {
	content: "";
	width: 50px;
	height: 2px;
	background-color: #005EEA;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
}

.cont_txt p {
	font-size: 16px;
}
.bnr {
	margin-bottom: 80px;
}

.bnr img {
	width: 100%;
}

@media screen and (max-width: 767px) {
	.cont_wrap {
		width: 100%;
		margin: 0 auto;
	}
	.cont_block {
		display: flex;
		flex-direction:column;
		margin-bottom: 80px;
	}
	.cont_block:nth-child(even) {
		flex-direction:column;
	}
	.cont_img {
		width: 100%;
		height: auto;
		margin-bottom: 20px;
	}
	.cont_txt {
		width: 100%;
	}
	.h3cont {
		font-size: 18px;
		font-weight: 700;
		position: relative;
		padding-bottom: 5px;
		margin-bottom: 15px;
	}
	.h3cont::after {
		content: "";
		width: 50px;
		height: 2px;
		background-color: #005EEA;
		position: absolute;
		bottom: 0;
		left: 0;
	}
	.h3cont_2 {
		font-size: 24px;
		font-weight: 700;
		position: relative;
		padding-bottom: 8px;
		margin-bottom: 30px;
		text-align: center;
		line-height: 1.4;
	}
	.h3cont_2::after {
		content: "";
		width: 50px;
		height: 2px;
		background-color: #005EEA;
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		margin: 0 auto;
	}
	.cont_txt p {
		font-size: 14px;
	}
} 



/*========= 効率よく安全な低酸素ルーム ===============*/

#feature {
	background-color: #EFFDFE;
	padding-bottom: 10px;
}


.hypoxia_effect {
	display: flex;
	justify-content:space-between;
	margin-bottom: 60px;
}
.effect_block {
	width: 176px;
}
.effect_block h4 {
	width: 176px;
	height: 176px;
	font-size: 20px;
	font-weight: 700;
	color: #003C8A;
	border: 2px solid #003C8A;
	border-radius: 50%;
	display: flex;
	justify-content:center;
	align-items: center;
	text-align: center;
	line-height: 1.4;
	margin-bottom: 20px;
}
.effect_block ul {
	list-style: disc;
	width: 80%;
	padding-left: 20px;
	margin: 0 auto;
	font-size: 16px;
	font-weight: 400;
}

@media screen and (max-width: 767px) {
	#feature {
		padding-bottom: 20px;
	}

	.hypoxia_effect {
		display: flex;
		justify-content:space-between;
		flex-wrap: wrap;
		margin-bottom: 60px;
		padding: 0 10px;
	}
	.effect_block {
		width: 45%;
	}
	.effect_block h4 {
		width: 100%;
		height: auto;
		aspect-ratio: 1 / 1;
		font-size: 18px;
		line-height: 1.4;
		margin-bottom: 20px;
	}
	.effect_block ul {
		list-style: disc;
		width: 80%;
		padding-left: 20px;
		margin: 0 auto;
		font-size: 14px;
	}

} 



/*========= 時短を求める人が続々利用中! ===============*/

#time-saving {
	
}
.time-saving_detail {
	display: flex;
	justify-content:space-between;
	margin-bottom: 80px;
}
.time-saving_block {
	display: flex;
	flex-direction:column;
	align-items: center;
	width: 310px;
}
.time-saving_img {
	width: 110px;
	height: 110px;
	margin-bottom: 30px;
}
.time-saving_block p {
	font-size: 16px;
}

@media screen and (max-width: 767px) {
	#time-saving {

	}
	.time-saving_detail {
		display: flex;
		flex-direction:column;
		align-items: center;
		margin-bottom: 80px;
	}
	.time-saving_block {
		display: flex;
		flex-direction:column;
		align-items: center;
		width: 100%;
	}
	.time-saving_img {
		width: 110px;
		height: 110px;
		margin-bottom: 30px;
	}
	.time-saving_block p {
		font-size: 14px;
	}
} 



/*========= 相互利用 ===============*/

#mutual {
	background-color: #003C8A;
	padding: 50px 0;
}
.h2_mutual {
	margin-bottom: 50px;
}
.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}
.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0
}
.scroll-infinity__list--left {
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
}
.scroll-infinity__item {
	width: 280px;
	height: 200px;

	margin: 0 10px;
}
.scroll-infinity__item>img {
  width: 100%;
	border-radius: 10px;
}

@keyframes infinity-scroll-left {
	from {
		transform: translateX(0);
	}
		to {
		transform: translateX(-100%);
	}
}

.mutual_exp {
	width: 1000px;
	margin: 30px auto 50px auto;
	color: #FFFFFF;
	text-align: center;
	font-size: 16px;
}

@media screen and (max-width: 767px) {
	#mutual {
		background-color: #003C8A;
		padding: 50px 0;
	}
	.h2_mutual {
		margin-bottom: 50px;
	}
	.scroll-infinity__wrap {
		display: flex;
		overflow: hidden;
	}
	.scroll-infinity__list {
		display: flex;
		list-style: none;
		padding: 0
	}
	.scroll-infinity__list--left {
		animation: infinity-scroll-left 80s infinite linear 0.5s both;
	}
	.scroll-infinity__item {
		width: 280px;
		height: 200px;

		margin: 0 10px;
	}
	.scroll-infinity__item>img {
		width: 100%;
		border-radius: 10px;
	}
	.mutual_exp {
		width: 100%;
		margin: 30px auto 50px auto;
		padding: 0 20px;
		font-size: 14px;
	}
} 



/*========= 低酸素ルーム ご利用の流れ ===============*/

#flow {
	background-color: #EFFDFE;
	padding-bottom: 80px;
}
.flow_box {
	width: 680px;
	margin: 0 auto;
	padding-top: 100px;
}
.flow_block {
	display: flex;
	justify-content:space-between;
	padding-bottom: 60px;
	background-image: url(../images/hypoxic-training/arrow_flow.png);
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: 80px 46px;
	margin-bottom: 30px;
}
.flow_block:last-of-type {
	padding-bottom: 0px;
	background-image: none;
}

.flow_block_img {
	width: 150px;
	height: 150px;
}
.flow_block_txt {
	width: 490px;
}
.flow_block_txt p {
	font-size: 16px;
}
.flow_block_txt p span {
	font-size: 12px;
	padding: 20px 0;
}
.caution {
	/*240603変更*/
	/*font-size: 12px;*/
	font-size: 25px;
	color:red;
	
	width: 80%;
	margin: 0 auto;
}

@media screen and (max-width: 767px) {
	#flow {
		padding-bottom: 80px;
	}
	.flow_box {
		width: 100%;
		margin: 0 auto;
		padding-top: 60px;
	}
	.flow_block {
		display: flex;
		flex-direction:column;
		align-items: center;
		padding-bottom: 60px;
		background-size: 80px 46px;
		margin-bottom: 30px;
	}

	.flow_block_img {
		width: 150px;
		height: 150px;
	}
	.flow_block_txt {
		width: 100%;
	}
	.flow_block_txt p {
		font-size: 14px;
	}
	.flow_block_txt p span {
		font-size: 12px;
		padding: 20px 0;
	}
	.caution {
		font-size: 12px;
		width: 100%;
		margin: 0 auto;
	}	
} 


/*========= 体験キャンペーンバナー ===============*/

#campaign{
	padding: 80px 0;
}
.experience {
  width: 100%;
	padding: 50px;
  background-image: linear-gradient(144deg, rgba(0, 60, 138, 1), rgba(0, 94, 234, 1));
	margin-bottom: 50px;
}
.experience img {
  width: 100%;
	margin-bottom: 50px;
}
#campaign .bnr{
	margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
	#campaign{
		padding: 50px 0;
	}
	.experience {
		padding: 30px;
		margin-bottom: 50px;
	}
	.experience img {
		width: 100%;
		margin-bottom: 50px;
	}
	#campaign .bnr{
		margin-bottom: 10px;
	}
} 


/*========= 料金一覧 ===============*/

#fee{
	background-color: #F6F6FE;
	padding-bottom: 80px;
}
.entrance_fee {
	background-color: #003C8A;
	color: #FFFFFF;
	font-weight: 400;
	text-align: center;
	padding: 20px;
	margin-bottom: 40px;
}
.fee_number {
	font-size: 20px;	
}
.fee_number span {
	font-size: 24px;
	font-family: "Montserrat", sans-serif;
}

.fee_txt {
	font-size: 12px;	
}
.h3plan {
	margin: 70px auto 30px auto;
}
.fee_block, .option_block {
	background-color: #FFFFFF;
	padding: 35px 0;
	display: flex;
	margin-bottom: 10px;
}
.option_block {
	margin-bottom: 60px;
}
.fee_category {
	width: 40%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content:center;
	font-weight: 700;
	line-height: 1;
	border-right: 1px solid #EAEEF2;
}
.option_category {
	width: 35%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content:center;
	font-weight: 700;
	line-height: 1;
	border-right: 1px solid #EAEEF2;
	text-align: center;
}
.cate1 {
	font-size: 36px;
	display: block;
	line-height: 1.2;
}
.cate2 {
	font-size: 36px;
	margin-bottom: 15px;
}
.cate2 span {
	font-size: 48px;
	font-family: "Montserrat", sans-serif;
}
.cate2 span span {
	font-size: 36px;
}
.cate3 {
	font-size: 24px;
}
.cate3 span {
	font-family: "Montserrat", sans-serif;
}
.cate4 {
	font-size: 18px;
	line-height: 1.6;
}

.fee_detail {
	width: 60%;
	padding: 0 35px;
}
.option_detail {
	width: 65%;
	padding: 0 25px;
}

.fee_detail_inner {
	display: flex;
	align-items: center;
	justify-content:space-between;
	line-height: 1;
	margin-bottom: 30px;
}
.option_detail_inner {
	display: flex;
	align-items: center;
	justify-content:space-between;
	line-height: 1;
	padding: 15px 0;
	border-bottom: 1px solid #EAEEF2;
}
.option_detail_inner:last-child {
	border-bottom: none;
}
.fee_detail_head {
	font-weight: 700;
	font-size: 24px;
}
.fee_detail_number {
	text-align: right;
}
.yen {
	color: #005EEA;
	font-weight: 700;
	font-size: 32px;
	line-height: 1.4;
}
.yen span {
	font-size: 62px;
	font-family: "Montserrat", sans-serif;
}
.yen_op {
	color: #005EEA;
	font-weight: 700;
	font-size: 32px;
	line-height: 1.4;
}
.yen_op span {
	font-size: 48px;
	font-family: "Montserrat", sans-serif;
}
.tax {
	font-size: 24px;
}
.tax span {
	font-family: "Montserrat", sans-serif;
}

.fee_detail .caution {
	width: 100%;
}

@media screen and (max-width: 767px) {
	#fee{
		padding-bottom: 80px;
	}
	.entrance_fee {
		text-align: left;
		padding: 20px 15px;
		margin-bottom: 30px;
	}
	.fee_number {
		font-size: 19px;	
	}
	.fee_number span {
		font-size: 23px;
	}
	.fee_txt {
		font-size: 12px;	
	}
	.h3plan {
		margin: 60px auto 25px auto;
	}
	.fee_block {
		padding: 35px 0;
		display: block;
		margin-bottom: 10px;
	}
	.option_block {
		padding: 35px 0 0 0;
		display: block;
		margin-bottom: 30px;
	}
	.fee_category {
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content:center;
		font-weight: 700;
		line-height: 1;
		padding-bottom: 20px;
		border-right: none;
		border-bottom: 1px solid #EAEEF2;
	}
	.option_category {
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content:center;
		font-weight: 700;
		line-height: 1;
		border-right: 1px solid #EAEEF2;
		text-align: center;
		margin-bottom: 20px;
	}
	.cate1 {
		font-size: 24px;
		display: block;
		line-height: 1.2;
	}
	.cate2 {
		font-size: 22px;
		display: inline;
		margin-bottom: 15px;
		text-align: center;
	}
	.cate2 span {
		font-size: 32px;
	}
	.cate2 span span {
		font-size: 36px;
	}
	.cate3 {
		font-size: 20px;
		display: inline;
	}
	.cate3 span {
		font-family: "Montserrat", sans-serif;
	}
	.cate4 {
		font-size: 14px;
		line-height: 1.6;
	}

	.fee_detail {
		width: 100%;
		padding: 20px 0 0 0;
	}
	.option_detail {
		width: 100%;
		padding: 0 25px;
	}

	.fee_detail_inner {
		display: flex;
		align-items: center;
		justify-content:space-around;
		line-height: 1;
		margin-bottom: 15px;
	}
	.option_detail_inner {
		display: flex;
		align-items: center;
		justify-content:space-between;
		line-height: 1;
		padding: 15px 0;
		border-top: 1px solid #EAEEF2;
		border-bottom: none;
	}

	.fee_detail_head {
		font-size: 15px;
	}
	.fee_detail_number {
		text-align: right;
	}
	.yen {
		font-size: 22px;
		line-height: 1.4;
	}
	.yen span {
		font-size: 32px;
	}
	.yen_op {
		font-size: 22px;
		line-height: 1.4;
	}
	.yen_op span {
		font-size: 32px;
		font-family: "Montserrat", sans-serif;
	}
	.tax {
		font-size: 14px;
	}
	.tax span {
		font-family: "Montserrat", sans-serif;
	}

	.fee_detail .caution {
		width: 80%;
	}
} 


/*========= 体験レポート ===============*/

#report {
	
}
.report_head {
	width: 100%;
	min-width: 1000px;
	aspect-ratio: 1200 / 718;
	background-image: url(../images/hypoxic-training/bg_report_head.png);
	background-repeat: no-repeat;
	background-size: 100% auto;
	margin-bottom: 20px;
}
.report_head img {
	width: 50%;
	margin: 40px auto 40px 100px;
}
.report_head p {
	font-size: 24px;
	font-weight: 700;
	margin: 0 auto auto 100px;
}
.report_head p span {
	display: inline-block;
	padding: 20px 50px 20px 20px;
	background-color: #FFFFFF;	
	margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
	#report {

	}
	.report_head {
		width: 100%;
		min-width: 100%;
		aspect-ratio: 390 / 552;
		background-image: url(../images/hypoxic-training/bg_report_head_sp.png);
		background-repeat: no-repeat;
		background-size: 100% auto;
		margin-bottom: 20px;
		position: relative;
	}
	.report_head img {
		width: 90%;
		margin: 20px auto auto auto;
	}
	.report_head p {
		position: absolute;
		bottom: 40px;
		font-size: 14px;
		margin: auto;
	}
	.report_head p span {
		display: inline-block;
		padding: 10px 20px;
		background-color: #FFFFFF;	
		margin-bottom: 10px;
	}	
} 


#supplier {
	background-image: url(../images/hypoxic-training/bg_supplier.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: auto 100%;
}
.supplier_inner {
	width: 1000px;
	margin: 0 auto;
	padding: 40px 0;
}
.supplier_inner p {
	text-align: center;
	margin-bottom: 40px;
}
.supplier_img {
	display: flex;
	justify-content:center;
}
.marvelous {
	width: 211px;
	margin: 0 30px;
}
.insta {
	width: 65px;
	margin: 0 30px;
}

@media screen and (max-width: 767px) {
	#supplier {
		background-image: url(../images/hypoxic-training/bg_supplier_sp.jpg);
		background-repeat: no-repeat;
		background-position: center center;
		background-size: cover;
	}
	.supplier_inner {
		width: 100%;
		margin: 0 auto;
		padding: 40px 0;
	}
	.supplier_inner p {
		margin-bottom: 30px;
	}
	.supplier_img {
		display: flex;
		justify-content:center;
	}
	.marvelous {
		width: 160px;
		margin: 0 10px;
	}
	.insta {
		width: 50px;
		margin: 0 10px;
	}	
} 


#footer {
	width: 100%
}
.footer_inner {
	width: 1000px;
	margin: 0 auto;
	padding: 40px 0 70px 0;
	display: flex;
	font-size: 16px;
}
.foot_info1 {
	width: 50%;
}
.footlogo {
	width: 300px;
	margin-bottom: 20px;
}
.foot_info1 p {
	margin-bottom: 20px;
}
.foot_tel {
	font-size: 28px;
	font-family: "Montserrat", sans-serif;
}
.foot_tel span {
	font-size: 36px;
}
.foot_info2 {
	width: 50%;
}

.copyright {
	background-color: #005EEA;
	text-align: center;
	padding: 20px 0 50px 0;
	color: #FFFFFF;
	font-family: "Montserrat", sans-serif;
	width: 100%;
	min-width: 1000px;
}

@media screen and (max-width: 767px) {
	#footer {

	}
	.footer_inner {
		width: 100%;
		margin: 0 auto;
		padding: 40px 20px 70px 20px;
		display: block;
		font-size: 14px;
	}
	.foot_info1 {
		width: 100%;
	}
	.footlogo {
		width: 300px;
		margin-bottom: 20px;
	}
	.foot_info1 p {
		margin-bottom: 20px;
	}
	.foot_tel {
		font-size: 28px;
		font-family: "Montserrat", sans-serif;
	}
	.foot_tel span {
		font-size: 36px;
	}
	.foot_info2 {
		width: 100%;
	}

	.copyright {
		background-color: #005EEA;
		text-align: center;
		padding: 20px 0 50px 0;
		color: #FFFFFF;
		font-family: "Montserrat", sans-serif;
		width: 100%;
		min-width: 100%;
	}
} 


.bnr_logo_hypoxic {
	position:fixed; 
	left:400px;
}

.bnr_logo_hypoxic_h1{
	width:90px; 
	height:90px; 
	top:0px; 
	position:fixed;
}


@media screen and (max-width: 767px) {
	.bnr_logo_hypoxic {
		display: none;
		/*
	position:fixed; 
	left:300px;
		*/
	}
	
	.bnr_logo_hypoxic_h1{
		width:64px; 
		height:64px; 
		top:0px; 
		position:fixed;
	}

} 

