@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: #f3ff2e;
}

.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: 65%;
	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: #000000;
}

.main-visual-scroll-arrow::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 1px;
	height: 90px;
	margin: 0 auto;
	background-color: #cccccc;
	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 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;
}

#section02 {
	background: url('../images/fukushimax/bg-mv.png') top center no-repeat;
	background-size: cover;
	background-attachment: fixed;
}

.tatenaga #section02 {
	background-attachment: scroll;
}

#section-inner02 {
	position: relative;
	padding: 70px 50px 50px;
	border-radius: 20px;
	background: rgba(0,191,246,0.9);
	color: #ffffff;
}

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

.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;
}

.sec02-concept-wrap {
	position: relative;
	z-index: 0;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	margin-top: 60px;
	color: #000000;
}

.sec02-concept.left,
.sec02-concept.right {
	position: relative;
	width: 40%;
	padding: 0 40px 40px;
	border-radius: 20px;
	background: #ffffff;
}

.sec02-concept.left:before,
.sec02-concept.right:before {
	content: "";
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: -1;
	border-radius: 25px;
	width: 100%;
	height: 100%;
	background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/PjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuX3hrM3VqIiBwYXR0ZXJuVW5pdHM9InVzZXJTcGFjZU9uVXNlIiB3aWR0aD0iNi41IiBoZWlnaHQ9IjYuNSIgcGF0dGVyblRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PGxpbmUgeDE9IjAiIHk9IjAiIHgyPSIwIiB5Mj0iNi41IiBzdHJva2U9IiNGM0ZGMkUiIHN0cm9rZS13aWR0aD0iMyIvPjwvcGF0dGVybj48L2RlZnM+IDxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjcGF0dGVybl94azN1aikiIG9wYWNpdHk9IjEiLz48L3N2Zz4=');
}

.sec02-concept.center {
	width: 20%;
	text-align: center;
	align-self: center;
}

.sec02-concept.center img {
	width: 70%;
}

p.sec02-concept-head {
	width: 100%;
	height: 60px;
	margin-bottom: 40px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	background: #f3ff2e;
	text-align: center;
	line-height: 60px;
	font-family: futura-pt, sans-serif;
	font-weight: 600;
	font-style: italic;
	font-size: 40px;
	color: #000000;
}

.h3-sec02 {
	margin-bottom: 20px;
    line-height: 1.2;
	text-align: center;
	font-size: 24px;
	font-weight: bold;
}

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

.sec02-feature-head {
	display: inline-block;
	padding: 5px 30px;
	border-radius: 50px;
	background: #f3ff2e;
	line-height: 1;
	font-size: 28px;
	font-weight: bold;
	color: #000000;
}

.h4-sec02 {
	height: 80px;
	margin-top: 50px;
	margin-bottom: 20px;
	line-height: 80px;
	font-size: 24px;
	font-weight: bold;
	color: #f3ff2e;
}

.h4-sec02 span {
	display: inline-block;
	width: 80px;
	height: 80px;
	margin-right: 10px;
	padding-top: 15px;
	border-radius: 50%;
	background: #f3ff2e;
	text-align: center;
	vertical-align: bottom;
	line-height: 1;
	letter-spacing: 1px;
	font-size: 16px;
	font-weight: bold;
	color: #000000;
}

.h4-sec02 span font {
	font-family: futura-pt, sans-serif;
	font-weight: 600;
	font-style: italic;
	font-size: 40px;
}

#section03 {
	position: relative;
	background: #f3ff2e;
}

#section03::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	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 #section03::after {
	background-attachment: scroll;
}

#section-inner03 {
	position: relative;
	z-index: 1;
	padding: 70px 50px 50px;
	border-radius: 20px;
	background: rgba(255,255,255,0.9);
}

.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;
}

#section04 {
	position: relative;
	background: #ffffff;
}

#section04::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	background: url('../images/fukushimax/bg-sec04.svg') 0 0 repeat;
	background-size: 300px 300px;
	background-attachment: fixed;
	opacity: 0.7;
}

.tatenaga #section04::after {
	background-attachment: scroll;
}

#section-inner04 {
	position: relative;
	z-index: 1;
}

#h2-sec04 {
	color: #00BFF6;
}

.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;
}

.project-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;
}

.project {
	position: relative;
	z-index: 1;
	width: 47%;
	height: auto;
	margin-bottom: 6.6%;
	outline: none;
}

.project-pic {
	position: relative;
	width: 100%;
	margin-bottom: 20px;
	text-align: center;
	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	-ms-transition: all 200ms linear;
	transition: all 200ms linear;
}

.project-pic:before {
	content: "";
	display: block;
  	padding-top: 50%;
	z-index: 0;
}

.project-pic:after {
	content: "";
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 0;
	width: 100%;
	height: 100%;
	border-radius: 25px;
	background-color: rgba(0243,255,46,0.6);
	background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/PjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuX3hrM3VqIiBwYXR0ZXJuVW5pdHM9InVzZXJTcGFjZU9uVXNlIiB3aWR0aD0iNi41IiBoZWlnaHQ9IjYuNSIgcGF0dGVyblRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PGxpbmUgeDE9IjAiIHk9IjAiIHgyPSIwIiB5Mj0iNi41IiBzdHJva2U9IiMwMEJGRjYiIHN0cm9rZS13aWR0aD0iMyIvPjwvcGF0dGVybj48L2RlZnM+IDxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjcGF0dGVybl94azN1aikiIG9wYWNpdHk9IjEiLz48L3N2Zz4=');
}

.project-pic img {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	border-radius: 20px;
	box-shadow: 0 0 0 1px #efefef;
	object-fit: cover;
}

/*
.project:hover .project-pic {
	-moz-transform: scale(0.98,0.98);
	-webkit-transform: scale(0.98,0.98);
	-o-transform: scale(0.98,0.98);
	-ms-transform: scale(0.98,0.98);
	transform: scale(0.98,0.98);
}
*/

p.project-title {
	margin-bottom: 10px;
	line-height: 1.5;
	font-size: 20px;
	font-weight: bold;
	color: #000000;
}

p.project-name {
	margin-bottom: 20px;
	line-height: 1.2;
	font-size: 16px;
    font-weight: bold;
	color: #00BFF6;
}

p.project-status-end {
	display: inline-block;
	height: 30px;
	margin-top: 10px;
	margin-bottom: 10px;
	padding: 0 15px 0 12px;
	border-radius: 20px;
	background: #a6b6c3;
	line-height: 30px;
	font-size: 14px;
	font-weight: bold;
	color: #ffffff;
}

.link-youtube {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 30px;
    background: #fe0000;
    font-size: 14px;
    font-weight: bold;
    color: #ffffff;
    transition: all 200ms linear;
}

.link-youtube i {
    font-size: 18px;
}

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

#section05 {
	position: relative;
	padding-bottom: 100px;
	background: #00bff6;
}

#section05::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	background: url('../images/fukushimax/bg-mv.png') top center no-repeat;
	background-size: cover;
	background-attachment: fixed;
	opacity: 0.1;
}

.tatenaga #section05::after {
	background-attachment: scroll;
}

#section-inner05 {
	position: relative;
	z-index: 1;
	color: #ffffff;
}

#h2-sec05 {
	color: #f3ff2e;
}

.mentors {
	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;
}

.mentor {
	position: relative;
	z-index: 1;
	width: 20%;
	height: auto;
	margin-bottom: 6.6%;
	outline: none;
}

.mentor-pic {
	position: relative;
	z-index: 0;
	width: 100%;
	margin-bottom: 20px;
	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	-ms-transition: all 200ms linear;
	transition: all 200ms linear;
}

.mentor-pic:before {
	content: "";
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 1;
	border-radius: 50%;
	width: 102%;
	height: 102%;
	background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/PjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuX05wVG8iIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHdpZHRoPSI2LjUiIGhlaWdodD0iNi41IiBwYXR0ZXJuVHJhbnNmb3JtPSJyb3RhdGUoOTApIj48bGluZSB4MT0iMCIgeT0iMCIgeDI9IjAiIHkyPSI2LjUiIHN0cm9rZT0iI0YzRkYyRSIgc3Ryb2tlLXdpZHRoPSIzIi8+PC9wYXR0ZXJuPjwvZGVmcz4gPHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuX05wVG8pIiBvcGFjaXR5PSIxIi8+PC9zdmc+');
}

.mentor-pic:hover {
	-moz-transform: scale(0.98,0.98);
	-webkit-transform: scale(0.98,0.98);
	-o-transform: scale(0.98,0.98);
	-ms-transform: scale(0.98,0.98);
	transform: scale(0.98,0.98);
}

.mentor-pic a {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	height: 100%;
	cursor: pointer;
	outline: none !important;
}

.mentor-pic a:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: rgba(0,0,0,0);
	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	-ms-transition: all 200ms linear;
	transition: all 200ms linear;
}

.mentor-pic a:hover:after {
	background: rgba(0,0,0,0.5);
}

.mentor-pic img {
	position: relative;
	z-index: auto;
	width: 100%;
	border-radius: 50%;
	box-shadow: 0 0 0 5px #f3ff2e;
}

.mentor-modal-button {
	display: block;
	position: absolute;
	bottom: 10px;
	right: 10px;
	z-index: 3;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: 1px solid #f3ff2e;
	background: rgba(0,0,0,0.3);
	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	-ms-transition: all 200ms linear;
	transition: all 200ms linear;
}

.mentor-modal-button:before {
	content: "\E8BC";
	position: absolute;
	top: 0;
	left: 0;
	width: 58px;
	height: 58px;
	line-height: 58px;
	text-align: center;
	font-family: 'yosomon2022-webfont';
	font-size: 30px;
	color: #f3ff2e;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.mentor-pic a:hover .mentor-modal-button {
	border: 1px solid #f3ff2e;
}

.mentor-pic a:hover .mentor-modal-button:before {
	color: #f3ff2e;
	-webkit-transform-origin: center;
	transform-origin: center;
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

p.mentor-city span {
	display: inline-block;
	height: 40px;
	padding: 0 20px;
	border-radius: 30px;
	background: #f3ff2e;
	line-height: 40px;
	font-size: 16px;
	font-weight: bold;
	color: #00bff6;
}

p.mentor-city.center {
	text-align: center;
}

p.mentor-name-eng {
	margin-bottom: 10px;
	line-height: 1;
	letter-spacing: -0.05em;
	font-family: futura-pt, sans-serif;
	font-weight: 600;
	font-style: italic;
	font-size: 36px;
	color: #ffffff;
}

p.mentor-name {
	margin-bottom: 10px;
	line-height: 1;
	font-weight: bold;
	font-size: 20px;
	color: #ffffff;
}

p.mentor-name span {
	font-size: 17px;
}

p.mentor-status {
	margin-bottom: 0;
	line-height: 1;
	font-size: 12px;
	color: #ffffff;
}

.mentor-cat {
	margin-bottom: 0;
}

.mentor-cat span {
	display: inline-block;
	height: 2rem;
	padding: 0 1.5rem;
	margin-right: 0.5rem;
	border: 1px solid #5c28f0;
	border-radius: 3rem;
	line-height: 1.8rem;
	font-size: 1.4rem;
	font-weight: bold;
	color: #5c28f0;
}

.lock {
    overflow: hidden;
}

.modal-overlay {
    z-index: 10000;
    position: fixed;
	top: 0;
    left: 0;
	right: 0;
    width: 100%;
    height: 120%;
	background: rgba(0,191,246,0.9);
	opacity: 0;
}

.modal-wrap {
    z-index: 10001;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
}

.modal-content {
    display: none;
	position: relative;
	z-index: 10002;
    width: 50%;
	max-width: 700px;
    margin: 0;
	padding-bottom: 50px;
	color: #ffffff;
}

.modal-close {
	display: block;
	position: fixed;
	top: 50px;
	right: 20%;
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	font-size: 50px;
	cursor: pointer;
}

.modal-pic {
	position: relative;
	width: 300px;
	height: 300px;
	margin: 20px auto 30px;
}

.modal-pic img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	box-shadow: 0 0 0 5px #f3ff2e;
}

.modal-name-eng {
	margin: 0 auto 10px;
	text-align: center;
	line-height: 0.95;
	letter-spacing: -0.05em;
	font-family: futura-pt, sans-serif;
	font-weight: 600;
	font-style: italic;
	font-size: 50px;
	color: #f3ff2e;
}

.modal-name {
	margin: 0 auto 1rem;
	text-align: center;
	line-height: 1.2;
	font-size: 20px;
	font-weight: bold;
	color: #f3ff2e;
}

.modal-name .small {
	font-size: 14px;
	font-weight: lighter;
}

.modal-cat {
	margin: 0 auto 20px;
	text-align: center;
}

.modal-cat span {
	display: inline-block;
	height: 20px;
	padding: 0 15px;
	margin-right: 5px;
	border: 1px solid #ffffff;
	border-radius: 3rem;
	line-height: 18px;
	font-size: 14px;
	font-weight: bold;
	color: #ffffff;
}

.modal-profile {
	line-height: 1.8;
	font-size: 14px;
}

.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;
}

#section06 {
	background: url('../images/fukushimax/bg-mv.png') top center no-repeat;
	background-size: cover;
	background-attachment: fixed;
}

.tatenaga #section06 {
	background-attachment: scroll;
}

#section-inner06 {
	padding: 70px 50px 50px;
	border-radius: 20px;
	background: rgba(0,191,246,0.9);
}

#h2-sec06 {
	color: #ffffff;
}

.flow {
	width: 100%;
	padding: 15px 10px;
	border-radius: 20px;
	background: #ffffff;
	font-size: 14px;
}

.flow-title {
	margin-bottom: 10px;
	line-height: 1;
	font-size: 20px;
	font-weight: bold;
	color: rgba(0,191,246,1);
}

.flow-title span {
	display: inline-block;
	padding: 5px 20px;
	border-radius: 30px;
	background: rgba(0,191,246,1);
	vertical-align: middle;
	font-family: futura-pt, sans-serif;
	font-weight: 600;
	font-style: italic;
	font-size: 30px;
	color: #f3ff2e;
}

p.flow-heading {
	text-align: center;
	font-size: 28px;
	font-weight: bold;
	color: #f3ff2e;
}

.flow p {
	padding: 0 20px;
	line-height: 1.5;
	font-size: 14px;
}

.flow p.day {
	margin-bottom: 10px;
	line-height: 1;
	font-size: 16px;
	font-weight: bold;
}

.flow p.day span {
	display: inline-block;
	margin-left: 10px;
	padding: 5px 10px;
	border-radius: 30px;
	background: #ff8bdc;
	vertical-align: baseline;
	font-size: 14px;
	font-weight: bold;
	color: #ffffff;
}

p.flow-arrow {
	margin: 5px auto;
	line-height: 1;
	text-align: center;
	font-size: 40px;
	color: #ffffff;
}

#section07 {
	position: relative;
	background: #ffffff;
}

#section07::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	background-attachment: fixed;
	background-image:  radial-gradient(#00bff6 3px, transparent 3px), radial-gradient(#00bff6 3px, #ffffff 3px);
	background-size: 40px 40px;
	background-position: 0 0,20px 20px;
	opacity: 0.5;
}

.tatenaga #section07::after {
	background-attachment: scroll;
}

#section-inner07 {
	position: relative;
	z-index: 1;
}

.accordion {
	position: relative;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 30px;
	border-top: 1px solid #000000;
}

.accordion-title {
	position: relative;
	padding: 20px 10px;
	border-bottom: 1px solid #000000;
	background: #ffffff;
	font-size: 16px;
	cursor: pointer;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;	
}

.accordion-title:hover {
	background: #f7f7f7;
}

.accordion-title.open,
.accordion-title.open:hover {
	background: #f3ff2e;
}

.accordion-title::after {
	content: "";
	display: block;
	position: absolute;
	right: 25px;
	top: 42%;
	width: 8px;
	height: 8px;
	border-right: solid 2px #000000;
	border-top: solid 2px #000000;
	transform: rotate(135deg);
	transition: transform .3s ease-in-out, top .3s ease-in-out;
}

.accordion-title.open::after {
	top: 45%;
	transform: rotate(-45deg);
}

.accordion-content {
	display: none;
	padding: 10px 30px;
	border-bottom: 1px solid #000000;
	background: #ffffff;
}

.accordion-content p {
	line-height: 1.5;
	font-size: 16px;
}

.qa {
	font-family: futura-pt, sans-serif;
	font-weight: 600;
	font-style: italic;
	font-size: 24px;
}

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

.tatenaga #section08 {
	background-attachment: scroll;
}

#section08::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;
}

#section-inner08 {
	position: relative;
	z-index: 1;
	padding-bottom: 150px;
}

.zoom-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;
}

.zoom {
	position: relative;
	z-index: 1;
	width: 45%;
	height: auto;
	margin-bottom: 0;
	outline: none;
}

.zoom .kabegami img {
	width: 100%;
	border-radius: 10px;
	box-shadow: 0 0 0 2px #000000;
}

.zoom-dl {
	margin-bottom: 0;
	text-align: center;
}

.zoom-dl a {
	padding: 10px 40px;
	border-radius: 40px;
	background: #000000;
	text-align: center;
	text-decoration: none;
	color: #ffffff;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;	
}

.zoom-dl a:hover {
	opacity: 0.7;
}

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

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

.top-info {
	position: relative;
	width: 600px;
	height: 400px;
	border: 1px solid #e9eaed;
	background: #ffffff;
	box-shadow: 0 0 0 3px #f5f6f7;
}

.top-info-contents {
	overflow-y: scroll;
	height: 398px;
}

.top-info dl {
	margin: 0;
	padding: 10px;
	border-bottom: 1px solid #e9eaed;
	cursor: pointer;
}

.top-info dl:hover {
	background: #f3f3f3;
}

.top-info dl dt {
	width: 100%;
	margin: 0 0 5px;
	line-height: 1;
	font-size: 10px;
	color: #999999;
}

.top-info dl dd {
	width: 100%;
	margin: 0;
	line-height: 1.3;
}

.top-info dl dd a {
	color: #000000;
	text-decoration: none;
}

.top-info dl dd a:hover {
	color: #000000;
	text-decoration: none;
}

#section09 {
    position: relative;
	background: #ffffff;
}

#section09::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	background: url('../images/fukushimax/bg-sec04.svg') 0 0 repeat;
	background-size: 300px 300px;
	background-attachment: fixed;
	opacity: 0.7;
}

.tatenaga #section09::after {
	background-attachment: scroll;
}

#section-inner09 {
	position: relative;
	z-index: 1;
}

#h2-sec09 {
	color: #00bff6;
}

.sec09-flow-wrap {
    display : -webkit-box;     /* old Android */
    display : -webkit-flex;    /* Safari etc. */
    display : -ms-flexbox;     /* IE10        */
    display : flex;
    -ms-flex-wrap: wrap; /* 画面幅に合わせてカラム落ちさせる */
	flex-wrap: wrap; /* 画面幅に合わせてカラム落ちさせる */
    -webkit-box-pack: justify;
	-ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    align-items: stretch;
	width: 100%;
    margin-top: 50px;
}

/* 最後のコンテンツを左寄せにする指定 */
.sec09-flow-wrap:after {
    content: "";
    display: block;
    width: 30%;  /* .boxに指定したwidthと同じ幅を指定する */
    height: 0;
}

.sec09-flow {
	position: relative;
    display : -webkit-box;     /* old Android */
    display : -webkit-flex;    /* Safari etc. */
    display : -ms-flexbox;     /* IE10        */
    display : flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
	width: 30%;
    border: 2px solid #00bff6;
    border-radius: 10px;
    margin-bottom: 50px;
    padding: 15px;
    background: #ffffff;
    box-shadow: 6px 6px #f3ff2e;
}

.sec09-flow:before {
    content: "";
    position: absolute;
    top: -10px;
    left: -30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #00bff6;
    line-height: 60px;
    text-align: center;
    font-family: futura-pt, sans-serif;
	font-weight: 600;
	font-style: italic;
	font-size: 40px;
    color: #f3ff2e;
}

.sec09-flow:nth-child(1):before {
    content: "1";
}

.sec09-flow:nth-child(2):before {
    content: "2";
}

.sec09-flow:nth-child(3):before {
    content: "3";
}

.sec09-flow:nth-child(4):before {
    content: "4";
}

.sec09-flow:nth-child(5):before {
    content: "5";
}

.sec09-flow:after {
    content: "";
    position: absolute;
    top: 50%;
    right: -47px;
    width: 39px;
    height: 30px;
    margin-top: -15px;
    background: url('../images/fukushimax/arrow-sec09.svg') center center no-repeat;
    background-size: 39px 30px;
}

.sec09-flow:nth-child(5):after {
    display: none;
}

.sec09-flow-h3 {
    position: relative;
    margin-bottom: 20px;
    text-align: center;
    font-size: 19px;
    font-weight: bold;
    color: #00bff6;
}

.sec09-flow-h3 span {
    font-size: 16px;
}

.sec09-flow-icon {
    margin-bottom: 0;
    text-align: center;
}

.sec09-flow-icon img {
    width: 150px;
    height: auto;
}

.sec09-flow-text {
    margin-bottom: 0 !important;
    line-height: 1.5 !important;
    font-size: 14px !important;
}

#h2-sec10 {
	color: #00bff6;
}

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;
}