@charset "utf-8";

@import "reset.css";
@import "utility.css";
@import "exvalidation.css";
@import "animations.css";
@import "animate.css";
@import "skins/minimal/grey.css";
@import "yosomon2024-webfont.css";
@import "jquery.realperson.css";

@font-face {
    font-family: helvetica-normal;
    src: url('../font/helvetica-nomal.woff') format('woff');
}

@font-face {
    font-family: helvetica-thin;
    src: url('../font/helvetica-thin.woff') format('woff');
}

@font-face {
    font-family: helvetica-bold;
    src: url('../font/helvetica-bold.woff') format('woff');
}

@font-face {
    font-family: din-medium;
    src: url('../font/din-medium.woff') format('woff');
}

@font-face {
    font-family: din-bold;
    src: url('../font/din-bold.woff') format('woff');
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * html/body
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

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

/* リンクなどの要素をタップした時の色を消す */
* {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* 長押しした際に表示されるポップアップメニューを消す */
* {
    -webkit-touch-callout: none;
}

/* 行頭禁則文字 */
* {
	word-break: break-word;
	word-wrap: break-word;
}

body {
	width: 100%;
	position: relative;
	background: #ffffff;
	font-family: "YuGothic", "游ゴシック","Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3","Meiryo","ＭＳ Ｐゴシック","MS PGothic", sans-serif;
	font-size: 16px;
	line-height: 1.5em;
	color: #000000;
	margin: 0;
	padding: 0;
	overflow-y: scroll;
}

/*
.is-ie body{
	font-family: "Meiryo","ＭＳ Ｐゴシック","MS PGothic", sans-serif;
}
*/


/* display
-------------------------------------------------------------*/

.disp {
	display: block !important;
}

.disp-none {
	display: none !important;
}

.disp-table {
	display: table !important;
}

.disp-inline {
	display: inline !important;
}

.disp-inline-block {
	display: inline-block !important;
}

/* visibility
-------------------------------------------------------------*/

.visibility-hidden {
	visibility: hidden !important;
}

.visibility-visibile {
	visibility: visible !important;
}

/* other
-------------------------------------------------------------*/

.weaken {
    font-size: 80% !important;
}

.link-btn {
    display: inline-block;
    padding: 20px 30px;
	border-radius: 50px;
	background: #ff8bdc;
	text-decoration: none;
    text-align: center;
    line-height: 1;
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    -webkit-transition: all 200ms linear;
	transition: all 200ms linear;	
}

.link-btn:hover {
    opacity: 0.7;
}

/*------------------------- page gyosomon ------------------------- */

.main-visual {
	overflow: hidden !important;
	position: relative;
	width: 100%;
	height: 100vh;
	background: #ff8bdc;
}

.tatenaga .main-visual {
	height: 600px !important;
}

.main-visual-single {
	position: relative;
	width: 100%;
	height: 300px;
	background: #f3ff2e;
}

.main-visual-single:before {
    content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background: url('../images/fukushimax/bg-mv.png') top center no-repeat;
	background-size: cover;
	background-attachment: fixed;
	opacity: 0.2;
}

.mv-single-title {
    padding-top: 80px;
    text-align: center;
    line-height: 1.2;
    font-size: 24px;
	font-weight: bold;
}

.mv-single-title span {
	display: inline-block;
	letter-spacing: -0.05em;
	font-family: futura-pt, sans-serif;
	font-weight: 600;
	font-style: italic;
	font-size: 100px;
}

.main-visual-loading {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 4;
	width: 200px;
	height: 200px;
	margin: auto;
	text-align: center;
	-webkit-animation: mv-loader 2.3s linear;
	animation: mv-loader 2.3s linear;
	-webkit-transform-origin: center;
	transform-origin: center;
}

.main-visual-loading img {
	width: 	100%;
	height: 100%;
}

@keyframes mv-loader {
	0% {
		transform: scale(0.9);
		opacity: 0.5;		
	}
	20% {
		transform: scale(1);
		opacity: 1;	
	}	
	40% {
		transform: scale(0.9);
		opacity: 0.5;	
	}
	60% {
		transform: scale(1);
		opacity: 1;	
	}	
	80% {
		transform: scale(0.9);
		opacity: 0.2;	
	}
	90% {
		transform: scale(100);
		opacity: 0;		
	}
	100% {
		transform: scale(100);
		opacity: 0;	
	}			
}

@-webkit-keyframes mv-loader {
	0% {
		-webkit-transform: scale(0.9);
		opacity: 0.5;		
	}
	20% {
		-webkit-transform: scale(1);
		opacity: 1;	
	}	
	40% {
		-webkit-transform: scale(0.9);
		opacity: 0.5;	
	}
	60% {
		-webkit-transform: scale(1);
		opacity: 1;	
	}	
	80% {
		-webkit-transform: scale(0.9);
		opacity: 0.2;	
	}
	90% {
		-webkit-transform: scale(100);
		opacity: 0;	
	}
	100% {
		-webkit-transform: scale(100);
		opacity: 0;	
	}			
}

.main-visual-pic {
	display: none;
	overflow: hidden !important;
	position: relative;
	width: 100%;
	height: 100%;
	background: url('../images/fukushimax/bg-mv.png') top center no-repeat;
	background-size: cover;
	background-attachment: fixed;
	opacity: 0.2;
}

.tatenaga .main-visual-pic {
	background-attachment: scroll;
}

.main-visual-contents {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
	width: 100%;
	height: 100%;
}

.main-visual-logo {
	display: none;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 10%;
	left: 0;
	height: 40%;
	width: 100%;
	margin: auto;
	text-align: center;
}

.main-visual-logo img {
	height: 100%;
	width: auto;
}

.main-visual-yoso-logo {
	display: none;
	position: absolute;
	top: 20px;
	left: 20px;
	z-index: 4;
	width: 143px;
	height: 41px;
}

.main-visual-yoso-logo img {
	width: 100%;
	height: auto;
}

.main-visual-catch {
	display: none;
	position: absolute;
	top: 15%;
	left: 7.5%;
	z-index: 4;
	height: 60%;
	width: auto;
}

.main-visual-catch img {
	width: 100%;
	height: 100%;
}

.main-visual-scroll-arrow-text {
	position: absolute;
	z-index: 6;
	bottom: 90px;
	left: 50%;
	margin: 0;
	letter-spacing: 1px;
	font-family: 'helvetica-normal', sans-serif;
	font-weight: 400;
	font-size: 10px;
	text-align: end;
	-moz-transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
	-moz-transform-origin: left bottom;
	-webkit-transform-origin: left bottom;
	-o-transform-origin: left bottom;
	-ms-transform-origin: left bottom;
	transform-origin: left bottom;
}

.main-visual-scroll-arrow {
	overflow: hidden;
	position: absolute;
	z-index: 6;
	bottom: 0;
	left: 50%;
	width: 1px;
	height: 90px;
	margin: 0 auto;
	background-color: transparent;
}

.main-visual-scroll-arrow::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 1px;
	height: 90px;
	margin: 0 auto;
	background-color: #000000;
	animation: sdl 2s cubic-bezier(1, 0, 0, 1) infinite;
}

@-webkit-keyframes sdl {
	0% {
		-webkit-transform: scale(1, 0);
		-webkit-transform-origin: 0 0;
	}
	35% {
		-webkit-transform: scale(1, 1);
		-webkit-transform-origin: 0 0;
	}
	35.1% {
		-webkit-transform: scale(1, 1);
		-webkit-transform-origin: 0 100%;
	}
	70%, 100% {
		-webkit-transform: scale(1, 0);
		-webkit-transform-origin: 0 100%;
	}
}

@keyframes sdl {
	0% {
		transform: scale(1, 0);
		transform-origin: 0 0;
	}
	35% {
		transform: scale(1, 1);
		transform-origin: 0 0;
	}
	35.1% {
		transform: scale(1, 1);
		transform-origin: 0 100%;
	}
	70%, 100% {
		transform: scale(1, 0);
		transform-origin: 0 100%;
	}
}

.expandOpen2 {
	animation-name: expandOpen;
	-webkit-animation-name: expandOpen;	

	animation-duration: 0.8s;	
	-webkit-animation-duration: 0.8s;

	animation-timing-function: ease-out;	
	-webkit-animation-timing-function: ease-out;	

	visibility: visible !important;	
}

@keyframes expandOpen2 {
	0% {
		transform: scale(3);		
	}
	50% {
		transform: scale(0.95);
	}	
	80% {
		transform: scale(1.05);
	}
	90% {
		transform: scale(0.98);
	}	
	100% {
		transform: scale(1);
	}			
}

@-webkit-keyframes expandOpen2 {
	0% {
		-webkit-transform: scale(3);		
	}
	50% {
		-webkit-transform: scale(0.95);
	}	
	80% {
		-webkit-transform: scale(1.05);
	}
	90% {
		-webkit-transform: scale(0.98);
	}	
	100% {
		-webkit-transform: scale(1);
	}					
}

.main-visual-bn {
	position: fixed;
	z-index: 6;
	bottom: 50px;
	right: 50px;
	width: 15%;
}

.main-visual-bn img {
	width: 100%;
	height: 100%;
}

/*　ハンバーガーメニューボタン　*/
.hamburger {
	display : none;
	position: fixed;
	z-index : 103;
	right : 15px;
	top   : 9px;
	width : 60px;
	height: 60px;
	cursor: pointer;
	text-align: center;
}

.hamburger span {
	display : block;
	position: absolute;
	width   : 48px;
	height  : 2px;
	left    : 6px;
	background : #000000;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition   : 0.3s ease-in-out;
	transition        : 0.3s ease-in-out;
}

.hamburger::after {
	content: "MENU";
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 100%;
	height: 20px;
	text-align: center;
	font-size: 10px;
	font-family: 'helvetica-normal', sans-serif;
	font-weight: normal;
}

.hamburger span:nth-child(1) {
	top: 19px;
}

.hamburger span:nth-child(2) {
	top: 29px;
}

.hamburger span:nth-child(3) {
	top: 39px;
}

/* スマホメニューを開いてる時のボタン */
.hamburger.active span:nth-child(1) {
	top : 30px;
	left: 6px;
	background :#fff;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
	top: 30px;
	background :#fff;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
}

.hamburger.active::after {
	content: "CLOSE";
	color: #ffffff;
}

/* メニュー背景　*/
nav.globalMenuSp {
	position: fixed;
	z-index : 102;
	top  : 0;
	left : 0;
	color: #ffffff;
	background: rgba(0,191,246,0.95);
	text-align: center;
	width: 100%;
	height: 100vh;
	transform: translateX(100%);
	transition: all 0.6s;
}

nav.globalMenuSp ul {
	margin: 20px auto 0;
	padding: 0;
	width: 100%;
}

nav.globalMenuSp ul li {
	list-style-type: none;
	margin: 0;
	padding: 0;
	width: 100%;
	transition: .4s all;
}

nav.globalMenuSp ul li:last-child {
	padding-bottom: 0;
}

nav.globalMenuSp ul li a {
	display: inline-block;
	color: #ffffff;
	padding: 20px 0;
	text-decoration :none;
	font-size: 14px;
	font-weight: bold;
}

nav.globalMenuSp ul li a span {
	display: inline-block;
	margin-right: 15px;
	vertical-align: bottom;
	letter-spacing: -0.05em;
	font-family: futura-pt, sans-serif;
	font-weight: 600;
	font-style: italic;
	font-size: 30px;
	color: #F3FF2E;
}

/* クリックでjQueryで追加・削除 */
nav.globalMenuSp.active {
	opacity: 100;
	display: block;
	transform: translateX(0%);
}

.section {
	padding: 150px 0;
}

.section p {
	margin-bottom: 20px;
	line-height: 2em;
	font-size: 18px;
}

.section ul li {
	margin-bottom: 20px;
	line-height: 1.5em;
	font-size: 18px;
}
.section ol li {
	margin-bottom: 20px;
	line-height: 1.5em;
	font-size: 18px;
}

.section p.small {
	line-height: 1.5em;
	font-size: 12px;
}

.section p.large {
	line-height: 1.5em;
	font-size: 24px;
}

.section-inner {
	position: relative;
	width: 960px;
	margin: 0 auto;
}

.section-inner-wide {
	position: relative;
	width: 1080px;
	margin: 0 auto;
}

.section-inner-narrow {
	position: relative;
	width: 800px;
	margin: 0 auto;
}

.section-inner-morenarrow {
	position: relative;
	width: 670px;
	margin: 0 auto;
}

.float-right-pic {
	float: right;
	width: 40%;
    margin: 0 0 20px 50px;
    text-align: right;
}

.float-right-pic img {
	width: 100%;
	height: auto;
}

.attention-white {
	padding: 40px;
	border: 1px solid #ffffff;
	border-radius: 10px;
    background: #ffffff;
    color: #000000;
}

.h2-sec01 {
	margin-bottom: 60px;
	text-align: center;
}

.h2-sec01 img {
	width: 80%;
	height: auto;
}

.bn-pre-event {
	text-align: center;
}

.bn-pre-event img {
	width: 100%;
	border-radius: 6px;
	box-shadow: 0 0 10px #cccccc;
}

.bn-pre-event-2col-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	position: relative;
	width: 100%;
	margin: 0 auto;
}

.bn-pre-event-2col {
	position: relative;
	z-index: 1;
	width: 460px;
	height: auto;
}

.bn-pre-event-2col img {
	width: 100%;
	border-radius: 6px;
	box-shadow: 0 0 10px #cccccc;
}

#pics-band {
    height: 150px;
    margin-bottom: 150px;
    padding: 0;
    background: url('../images/fukushimax/band.jpg') top center repeat;
	background-size: 1600px 150px;
}


#section-contents {
	padding: 150px 0;
}

.h2-sec {
	margin-bottom: 70px;
	font-size: 30px;
	font-weight: bold;
    color: #ff45cc;
}

.h2-sec span {
	display: inline-block;
	margin-right: 30px;
	letter-spacing: -0.05em;
	font-family: futura-pt, sans-serif;
	font-weight: 600;
	font-style: italic;
	font-size: 120px;
}

.h2-sec.small span {
	font-size: 60px;
}

.h3-sec {
	margin-bottom: 10px;
    line-height: 1.2;
	font-size: 24px;
	font-weight: bold;
}

.h3-sec span {
	font-size: 14px;
}

.table {
	display: table;
	width: 100%;
	border-collapse: collapse;
}

.table-row {
	display: table-row;
}

.section .table-row p {
    font-size: 16px;
}

.section .table-row p.big {
    font-size: 20px;
}

.table-cell {
	display: table-cell;
	padding: 15px 15px;
	border-top: 1px solid #000000;
	vertical-align: middle;
}

.table-cell.left {
	width: 30%;
    vertical-align: top;
	font-weight: bold;
}

.table-cell.right {
	width: 70%;
    vertical-align: top;
}

ul.m0 {
	margin: 0;
}

ul.m0 > li {
	margin-left: 20px;
}

.coming-soon {
    margin-bottom: 10px !important;
    line-height: 1 !important;
    text-align: center;
    letter-spacing: -0.05em;
	font-family: futura-pt, sans-serif;
	font-weight: 600;
	font-style: italic;
	font-size: 60px !important;
}

.link-btn-url {
	position: relative;
	padding: 10px 30px 10px 25px;
	border: 2px solid #f3ff2e;
	text-decoration: none;
	font-size: 14px;
	color: #f3ff2e;
}

.link-btn-url:hover {
	border: 2px solid #f3ff2e;
	background: rgba(243,255,46,0.2);
	text-decoration: none;
}

.coach-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.coach-pic {
    position: relative;
    width: 20%;
}

.coach-pic img {
    width: 100%;
    border-radius: 50%;
    box-shadow: 0 0 10px #cccccc;
}

.coach-text {
    position: relative;
    width: 80%;
    padding-left: 30px;
}

.section .coach-prof {
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 14px;
}

#section-footer {
	position: relative;
    padding-top: 0;
	padding-bottom: 0;
	background: url('../images/fukushimax/bg-sec08.png') bottom right no-repeat;
	background-size: 40%;
	background-attachment: fixed;
}

#section-footer::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	background: url('../images/fukushimax/pattern-white.png') 0 0 repeat;
}

.footer {
	position: relative;
	z-index: 1;
	padding-top: 100px;
	border-top: 1px solid #e3e3e3;
}

.footer-contents {
	width: 600px;
	margin: 0 auto 60px;
}


p.footer-org {
	text-align: center;
}

p.footer-org a {
	text-decoration: none;
	color: #000000;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;	
}

p.footer-org a:hover {
	text-decoration: underline;
	color: #000000;
}

p.footer-contact {
	margin-bottom: 60px;
	text-align: center;
}

p.footer-contact a {
	padding: 10px 40px;
	border-radius: 40px;
	border: 1px solid #000000;
	background: #ffffff;
	text-align: center;
	text-decoration: none;
	font-size: 14px;
	font-weight: bold;
	color: #000000;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;	
}

p.footer-contact a:hover {
	opacity: 0.7;
}

p.footer-logo {
	text-align: center;
}

.footer-sns {
	width: 800px;
	margin: 0 auto;
	padding: 40px 0;
	text-align: center;
}

.footer-sns-title {
	margin-bottom: 20px;
	line-height: 1;
	font-family: futura-pt, sans-serif;
	font-weight: 600;
	font-style: italic;
	font-size: 18px;
}

.footer-sns-btn {
	display: table;
	width: auto;
	margin: 0 auto;
	text-align: center;
}

.footer-sns-btn div {
	display: table-cell;
	width: auto;
	margin: 0;
	padding: 0 10px;
	vertical-align: top;
}

.line-it-button {
	margin-left: 12px;
}

.copyright {
	width: 100%;
	padding: 50px 0;
}

.copyright-inner {
	display: table;
	width: 960px;
	margin: 0 auto;
}

.footer-etic-logo {
	display: table-cell;
	width: 480px;
	height: 80px;
	line-height: 80px;
	font-size: 11px;
}

.copyright small {
	display: table-cell;
	width: 480px;
	height: 80px;
	line-height: 80px;
	text-align: right;
	font-size: 14px;
	font-family: futura-pt, sans-serif;
	font-weight: 600;
	font-style: italic;
}

/*------------------------- single ------------------------- */

.single-h2 {
	padding: 0 0 30px;
	text-align: left;
	line-height: 1.5;
	font-size: 24px;
	font-weight: bold;
	word-break: normal;
    word-wrap: break-word;
}

.single-date {
	padding-bottom: 20px;
	border-bottom: 1px solid #e3e3e3;
	line-height: 1;
    font-size: 16px;
}

.single-contents img {
	display: block;
    max-width: 100%;
    height: auto;
    margin: 20px auto;
	border-radius: 4px;
    clear: both;
}

.single-contents h5 {
	margin: 20px 0;
	font-size: 20px;
	font-weight: bold;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
	margin-bottom: 20px;
    height: 0;
}
  
.video-container iframe,  
.video-container object,  
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.link-arc-btn {
    display: inline-block;
	width: 50%;
	height: 60px;
	border: none;
    border-radius: 4px;
	background: rgba(0,191,246,1);
    line-height: 60px;
	font-size: 18px;
	font-weight: bold;
	color: #ffffff;
	cursor: pointer;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
	transition: all 0.3s;
}

.link-arc-btn:hover {
    opacity: 0.7;
}


/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 *Wordpress Settings
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.alignnone {
	text-align: left;
	margin: 0 auto;
	clear: both;
	display: block;
	max-width: 100%;
	height: auto;
}

.aligncenter {
	text-align: left;
	margin: 0 auto;
	clear: both;
	display: block;
	max-width: 100%;
	height: auto;
}

.alignleft {
	text-align: left;
	margin: 0 auto;
	clear: both;
	display: block;
	max-width: 100%;
	height: auto;
}

.alignright {
	text-align: left;
	margin: 0 auto;
	clear: both;
	display: block;
	max-width: 100%;
	height: auto;
}

.wp-caption-text {
	font-size: 10px;
	margin-top: 0;
	margin-bottom: 20px;
	text-align: center;
}