@charset "UTF-8";

/**
 * share.css
 * modified : 2017.06.28
 */
/*========================================

  .s5-returnToTop

========================================*/
.s5-returnToTop {
	height: 0;
	position: relative;
	z-index: 2;
	margin: 0;
}

.s5-returnToTop__inner1 {
	display: none;
	position: fixed;
	bottom: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
}

.s5-returnToTop__inner2 {
	position: relative;
	max-width: 1260px;
	height: 0;
	margin: 0 auto;
}

.s5-returnToTop__button {
	position: absolute;
	cursor: pointer;
	width: 40px;
	height: 32px;
	right: 20px;
	top: -72px;
	background: url(https://www.sony.jp/share5/images/s5-returnToTop/icon_01.png) no-repeat;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition: top .3s;
	transition: top .3s;
	opacity: .5;
}

.s5-returnToTop__button img {
	width: 100%;
	height: auto;
	opacity: .5;
}

@media screen and (max-width: 639px) {
	.s5-returnToTop__button {
		top: -46px;
		width: 32px;
		height: 26px;
		background-size: 32px 26px;
	}
}

@media screen and (max-width: 639px) {
	.s5-returnToTop.s5-returnToTop--withFOCUSPurchaseFloated .s5-returnToTop__button {
		top: -122px;
	}
}

/*========================================

  .s5-icon-window

========================================*/
.s5-icon-window {
	width: 11px;
	height: 9px;
	vertical-align: middle;
	line-height: 1;
	vertical-align: middle;
	display: inline-block;
	margin: -2px 3px 0 0;
	background: url(https://www.sony.jp/share5/images/s5-icon/sprite_01.png) no-repeat;
}

.s5-icon-window.ml {
	margin-left: 4px;
}

.s5-icon-window.s5-icon-window--light {
	background-position: 0 -24px;
}

.s5-icon-window.s5-icon-window--lightDark {
	background-position: 0 -24px;
}

/*!
	Modaal - accessible modals - v0.4.4
	by Humaan, for all humans.
	http://humaan.com
 */
.imgBox__zoom {
	display: block;
	position: relative;
	margin: 0 auto;
	line-height: 0;
	border: 1px solid #666;
}

.imgBox__zoom:before {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	transition: background-color 0.2s;
}

.imgBox__zoom:hover:before {
	background-color: rgba(255, 255, 255, 0.3);
}

.imgBox__zoom:after {
	display: block;
	position: absolute;
	right: 0;
	bottom: 0;
	width: 18px;
	height: 18px;
	background-image: url("../img/zoom.svg");
	background-repeat: no-repeat;
	background-size: 100% 100%;
	content: '';
}

.modaal-noscroll {
	overflow: hidden;
}

.modaal-accessible-hide {
	position: absolute !important;
	clip: rect(1px 1px 1px 1px);
	/* IE6, IE7 */
	clip: rect(1px, 1px, 1px, 1px);
	padding: 0 !important;
	border: 0 !important;
	height: 1px !important;
	width: 1px !important;
	overflow: hidden;
}

.modaal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
	opacity: 0;
}

.modaal-wrapper {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	overflow: auto;
	opacity: 1;
	box-sizing: border-box;
	-webkit-overflow-scrolling: touch;
	transition: all 0.3s ease-in-out;
}

.modaal-wrapper * {
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-backface-visibility: hidden;
}

.modaal-wrapper .modaal-close {
	border: none;
	background: transparent;
	padding: 0;
	-webkit-appearance: none;
}

.modaal-wrapper.modaal-start_none {
	display: none;
	opacity: 1;
}

.modaal-wrapper.modaal-start_fade {
	opacity: 0;
}

.modaal-wrapper *[tabindex="0"] {
	outline: none !important;
}

.modaal-wrapper.modaal-fullscreen {
	overflow: hidden;
}

.modaal-outer-wrapper {
	display: table;
	position: relative;
	width: 100%;
	height: 100%;
}

.modaal-fullscreen .modaal-outer-wrapper {
	display: block;
}

.modaal-inner-wrapper {
	display: table-cell;
	width: 100%;
	height: 100%;
	position: relative;
	vertical-align: middle;
	text-align: center;
	padding: 80px 25px;
}

.modaal-fullscreen .modaal-inner-wrapper {
	padding: 0;
	display: block;
	vertical-align: top;
}

.modaal-container {
	position: relative;
	display: inline-block;
	width: 100%;
	margin: auto;
	text-align: left;
	color: #000;
	max-width: 1000px;
	border-radius: 0px;
	background: #fff;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	cursor: auto;
}

.modaal-container.is_loading {
	height: 100px;
	width: 100px;
	overflow: hidden;
}

.modaal-fullscreen .modaal-container {
	max-width: none;
	height: 100%;
	overflow: auto;
}

.modaal-close {
	position: absolute;
	right: -10px;
	top: -50px;
	color: #fff;
	cursor: pointer;
	opacity: 1;
	width: 50px;
	height: 50px;
	background: rgba(0, 0, 0, 0);
	border-radius: 100%;
	transition: all 0.3s ease-in-out;
}

.modaal-close:focus,
.modaal-close:hover {
	outline: none;
	opacity: .7;
}

.modaal-close span {
	position: absolute !important;
	clip: rect(1px 1px 1px 1px);
	/* IE6, IE7 */
	clip: rect(1px, 1px, 1px, 1px);
	padding: 0 !important;
	border: 0 !important;
	height: 1px !important;
	width: 1px !important;
	overflow: hidden;
}

.modaal-close:before,
.modaal-close:after {
	display: block;
	content: " ";
	position: absolute;
	top: 14px;
	left: 23px;
	width: 1.5px;
	height: 22px;
	background: #fff;
	transition: background 0.3s ease-in-out;
}

.modaal-close:before {
	transform: rotate(-45deg);
}

.modaal-close:after {
	transform: rotate(45deg);
}

.modaal-fullscreen .modaal-close {
	background: #afb7bc;
	right: 10px;
	top: 10px;
}

.modaal-content-container {
	padding: 30px;
}

.modaal-confirm-wrap {
	padding: 30px 0 0;
	text-align: center;
	font-size: 0;
}

.modaal-confirm-btn {
	font-size: 14px;
	display: inline-block;
	margin: 0 10px;
	vertical-align: middle;
	cursor: pointer;
	border: none;
	background: transparent;
}

.modaal-confirm-btn.modaal-ok {
	padding: 10px 15px;
	color: #fff;
	background: #333333;
	border-radius: 3px;
	transition: background 0.3s ease-in-out;
}

.modaal-confirm-btn.modaal-ok:hover {
	background: #2f2f2f;
}

.modaal-confirm-btn.modaal-cancel {
	text-decoration: underline;
}

.modaal-confirm-btn.modaal-cancel:hover {
	text-decoration: none;
	color: #2f2f2f;
}

@keyframes instaReveal {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-o-keyframes instaReveal {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-moz-keyframes instaReveal {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-webkit-keyframes instaReveal {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-ms-keyframes instaReveal {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.modaal-instagram .modaal-container {
	width: auto;
	background: transparent;
	box-shadow: none !important;
}

.modaal-instagram .modaal-content-container {
	padding: 0;
	background: transparent;
}

.modaal-instagram .modaal-content-container>blockquote {
	width: 1px !important;
	height: 1px !important;
	opacity: 0 !important;
}

.modaal-instagram iframe {
	opacity: 0;
	margin: -6px !important;
	border-radius: 0 !important;
	width: 1000px !important;
	max-width: 800px !important;
	box-shadow: none !important;
	animation: instaReveal 1s linear forwards;
}

.modaal-image .modaal-inner-wrapper {
	padding-left: 140px;
	padding-right: 140px;
}

.modaal-image .modaal-container {
	width: auto;
	max-width: 1200px;
}

.modaal-gallery-wrap {
	position: relative;
	color: #fff;
}

.modaal-gallery-item {
	display: none;
}

.modaal-gallery-item img {
	display: block;
}

.modaal-gallery-item.is_active {
	display: block;
}

.modaal-gallery-label {
	position: absolute;
	left: 0;
	width: 100%;
	margin: 10px 0 0;
	font-size: 13px;
	font-size: 0.8125rem;
	color: #fff;
}

.modaal-gallery-label:focus {
	outline: none;
}

@media screen and (min-width: 640px) {
	.modaal-gallery-label {
		text-align: right;
	}
}

.modaal-gallery-control {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	opacity: 1;
	cursor: pointer;
	color: #fff;
	width: 50px;
	height: 50px;
	background: rgba(0, 0, 0, 0);
	border: none;
	border-radius: 100%;
	transition: all 0.3s ease-in-out;
}

.modaal-gallery-control.is_hidden {
	opacity: 0;
	cursor: default;
}

.modaal-gallery-control:focus,
.modaal-gallery-control:hover {
	outline: none;
	background: #fff;
}

.modaal-gallery-control:focus:before,
.modaal-gallery-control:focus:after,
.modaal-gallery-control:hover:before,
.modaal-gallery-control:hover:after {
	background: #afb7bc;
}

.modaal-gallery-control span {
	position: absolute !important;
	clip: rect(1px 1px 1px 1px);
	/* IE6, IE7 */
	clip: rect(1px, 1px, 1px, 1px);
	padding: 0 !important;
	border: 0 !important;
	height: 1px !important;
	width: 1px !important;
	overflow: hidden;
}

.modaal-gallery-control:before,
.modaal-gallery-control:after {
	display: block;
	content: " ";
	position: absolute;
	top: 16px;
	left: 25px;
	width: 4px;
	height: 18px;
	border-radius: 4px;
	background: #fff;
	transition: background 0.3s ease-in-out;
}

.modaal-gallery-control:before {
	margin: -5px 0 0;
	transform: rotate(-45deg);
}

.modaal-gallery-control:after {
	margin: 5px 0 0;
	transform: rotate(45deg);
}

.modaal-gallery-next-inner {
	left: 100%;
	margin-left: 40px;
}

.modaal-gallery-next-outer {
	right: 45px;
}

.modaal-gallery-prev:before,
.modaal-gallery-prev:after {
	left: 22px;
}

.modaal-gallery-prev:before {
	margin: 5px 0 0;
	transform: rotate(-45deg);
}

.modaal-gallery-prev:after {
	margin: -5px 0 0;
	transform: rotate(45deg);
}

.modaal-gallery-prev-inner {
	right: 100%;
	margin-right: 40px;
}

.modaal-gallery-prev-outer {
	left: 45px;
}

.modaal-video-wrap {
	margin: auto 50px;
	position: relative;
}

.modaal-video-container {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	max-width: 100%;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	background: #000;
	max-width: 1300px;
	margin-left: auto;
	margin-right: auto;
}

.modaal-video-container iframe,
.modaal-video-container object,
.modaal-video-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.modaal-iframe .modaal-content {
	width: 100%;
	height: 100%;
}

.modaal-iframe-elem {
	width: 100%;
	height: 100%;
	display: block;
}

@media only screen and (min-width: 1400px) {
	.modaal-video-container {
		padding-bottom: 0;
		height: 731px;
	}
}

@media only screen and (max-width: 1140px) {
	.modaal-image .modaal-inner-wrapper {
		padding-left: 25px;
		padding-right: 25px;
	}

	.modaal-gallery-control {
		top: auto;
		bottom: 20px;
		transform: none;
		background: rgba(0, 0, 0, 0.7);
	}

	.modaal-gallery-control:before,
	.modaal-gallery-control:after {
		background: #fff;
	}

	.modaal-gallery-next {
		left: auto;
		right: 20px;
	}

	.modaal-gallery-prev {
		left: 20px;
		right: auto;
	}
}

@media screen and (max-width: 900px) {
	.modaal-instagram iframe {
		width: 500px !important;
	}
}

@media screen and (max-height: 1100px) {
	.modaal-instagram iframe {
		width: 700px !important;
	}
}

@media screen and (max-height: 1000px) {
	.modaal-inner-wrapper {
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.modaal-instagram iframe {
		width: 600px !important;
	}
}

@media screen and (max-height: 900px) {
	.modaal-instagram iframe {
		width: 500px !important;
	}

	.modaal-video-container {
		max-width: 900px;
		max-height: 510px;
	}
}

@media only screen and (max-width: 600px) {
	.modaal-instagram iframe {
		width: 280px !important;
	}
}

@media only screen and (max-height: 820px) {
	.modaal-gallery-label {
		display: none;
	}
}

.modaal-profile-item {
	padding: 20px 20px 30px;
	background: #fff;
	line-height: 1.5;
	color: #333333;
}

@media screen and (min-width: 640px) {
	.modaal-profile-item {
		padding: 40px 40px 50px;
		display: flex;
	}
}

.modaal-profile-picturebox {
	text-align: center;
	width: 160px;
	margin: 0 auto;
}

.modaal-profile-picturebox img {
	width: 100%;
}

@media screen and (min-width: 640px) {
	.modaal-profile-picturebox {
		flex: 0 0 32%;
		max-width: 300px;
	}

	.modaal-profile-picturebox img {
		width: 100%;
	}
}

.modaal-profile-textbox {
	margin-top: 20px;
}

@media screen and (min-width: 640px) {
	.modaal-profile-textbox {
		margin-top: 0;
		margin-left: 50px;
		flex: 1 1 auto;
	}
}

.modaal-profile-worker {
	font-family: 'Noto Serif JP', serif;
	font-size: 24px;
	font-size: 1.5rem;
	text-align: center;
}

.modaal-profile-worker span {
	font-size: 14px;
	font-size: .875rem;
	display: block;
}

.modaal-profile-text {
	font-size: 15px;
	font-size: .9375rem;
	line-height: 1.88;
	margin-top: 15px;
}

@media screen and (min-width: 640px) {
	.modaal-profile-worker {
		text-align: left;
	}

	.modaal-profile-text {
		font-size: 18px;
		font-size: 1.125rem;
	}
}

.modaal-loading-spinner {
	background: none;
	position: absolute;
	width: 200px;
	height: 200px;
	top: 50%;
	left: 50%;
	margin: -100px 0 0 -100px;
	transform: scale(0.25);
}

@-ms-keyframes modaal-loading-spinner {
	0% {
		opacity: 1;
		-ms-transform: scale(1.5);
		-moz-transform: scale(1.5);
		-webkit-transform: scale(1.5);
		-o-transform: scale(1.5);
		transform: scale(1.5);
	}

	100% {
		opacity: .1;
		-ms-transform: scale(1);
		-moz-transform: scale(1);
		-webkit-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	}
}

@-moz-keyframes modaal-loading-spinner {
	0% {
		opacity: 1;
		-ms-transform: scale(1.5);
		-moz-transform: scale(1.5);
		-webkit-transform: scale(1.5);
		-o-transform: scale(1.5);
		transform: scale(1.5);
	}

	100% {
		opacity: .1;
		-ms-transform: scale(1);
		-moz-transform: scale(1);
		-webkit-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	}
}

@-webkit-keyframes modaal-loading-spinner {
	0% {
		opacity: 1;
		-ms-transform: scale(1.5);
		-moz-transform: scale(1.5);
		-webkit-transform: scale(1.5);
		-o-transform: scale(1.5);
		transform: scale(1.5);
	}

	100% {
		opacity: .1;
		-ms-transform: scale(1);
		-moz-transform: scale(1);
		-webkit-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	}
}

@-o-keyframes modaal-loading-spinner {
	0% {
		opacity: 1;
		-ms-transform: scale(1.5);
		-moz-transform: scale(1.5);
		-webkit-transform: scale(1.5);
		-o-transform: scale(1.5);
		transform: scale(1.5);
	}

	100% {
		opacity: .1;
		-ms-transform: scale(1);
		-moz-transform: scale(1);
		-webkit-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes modaal-loading-spinner {
	0% {
		opacity: 1;
		-ms-transform: scale(1.5);
		-moz-transform: scale(1.5);
		-webkit-transform: scale(1.5);
		-o-transform: scale(1.5);
		transform: scale(1.5);
	}

	100% {
		opacity: .1;
		-ms-transform: scale(1);
		-moz-transform: scale(1);
		-webkit-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	}
}

.modaal-loading-spinner>div {
	width: 24px;
	height: 24px;
	margin-left: 4px;
	margin-top: 4px;
	position: absolute;
}

.modaal-loading-spinner>div>div {
	width: 100%;
	height: 100%;
	border-radius: 15px;
	background: #fff;
}

.modaal-loading-spinner>div:nth-of-type(1)>div {
	-ms-animation: modaal-loading-spinner 1s linear infinite;
	-moz-animation: modaal-loading-spinner 1s linear infinite;
	-webkit-animation: modaal-loading-spinner 1s linear infinite;
	-o-animation: modaal-loading-spinner 1s linear infinite;
	animation: modaal-loading-spinner 1s linear infinite;
	-ms-animation-delay: 0s;
	-moz-animation-delay: 0s;
	-webkit-animation-delay: 0s;
	-o-animation-delay: 0s;
	animation-delay: 0s;
}

.modaal-loading-spinner>div:nth-of-type(2)>div,
.modaal-loading-spinner>div:nth-of-type(3)>div {
	-ms-animation: modaal-loading-spinner 1s linear infinite;
	-moz-animation: modaal-loading-spinner 1s linear infinite;
	-webkit-animation: modaal-loading-spinner 1s linear infinite;
	-o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner>div:nth-of-type(1) {
	-ms-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
	-moz-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
	-webkit-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
	-o-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
	transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
}

.modaal-loading-spinner>div:nth-of-type(2)>div {
	animation: modaal-loading-spinner 1s linear infinite;
	-ms-animation-delay: .12s;
	-moz-animation-delay: .12s;
	-webkit-animation-delay: .12s;
	-o-animation-delay: .12s;
	animation-delay: .12s;
}

.modaal-loading-spinner>div:nth-of-type(2) {
	-ms-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
	-moz-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
	-webkit-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
	-o-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
	transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
}

.modaal-loading-spinner>div:nth-of-type(3)>div {
	animation: modaal-loading-spinner 1s linear infinite;
	-ms-animation-delay: .25s;
	-moz-animation-delay: .25s;
	-webkit-animation-delay: .25s;
	-o-animation-delay: .25s;
	animation-delay: .25s;
}

.modaal-loading-spinner>div:nth-of-type(4)>div,
.modaal-loading-spinner>div:nth-of-type(5)>div {
	-ms-animation: modaal-loading-spinner 1s linear infinite;
	-moz-animation: modaal-loading-spinner 1s linear infinite;
	-webkit-animation: modaal-loading-spinner 1s linear infinite;
	-o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner>div:nth-of-type(3) {
	-ms-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
	-moz-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
	-webkit-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
	-o-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
	transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
}

.modaal-loading-spinner>div:nth-of-type(4)>div {
	animation: modaal-loading-spinner 1s linear infinite;
	-ms-animation-delay: .37s;
	-moz-animation-delay: .37s;
	-webkit-animation-delay: .37s;
	-o-animation-delay: .37s;
	animation-delay: .37s;
}

.modaal-loading-spinner>div:nth-of-type(4) {
	-ms-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
	-moz-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
	-webkit-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
	-o-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
	transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
}

.modaal-loading-spinner>div:nth-of-type(5)>div {
	animation: modaal-loading-spinner 1s linear infinite;
	-ms-animation-delay: .5s;
	-moz-animation-delay: .5s;
	-webkit-animation-delay: .5s;
	-o-animation-delay: .5s;
	animation-delay: .5s;
}

.modaal-loading-spinner>div:nth-of-type(6)>div,
.modaal-loading-spinner>div:nth-of-type(7)>div {
	-ms-animation: modaal-loading-spinner 1s linear infinite;
	-moz-animation: modaal-loading-spinner 1s linear infinite;
	-webkit-animation: modaal-loading-spinner 1s linear infinite;
	-o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner>div:nth-of-type(5) {
	-ms-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
	-moz-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
	-webkit-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
	-o-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
	transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
}

.modaal-loading-spinner>div:nth-of-type(6)>div {
	animation: modaal-loading-spinner 1s linear infinite;
	-ms-animation-delay: .62s;
	-moz-animation-delay: .62s;
	-webkit-animation-delay: .62s;
	-o-animation-delay: .62s;
	animation-delay: .62s;
}

.modaal-loading-spinner>div:nth-of-type(6) {
	-ms-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
	-moz-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
	-webkit-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
	-o-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
	transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
}

.modaal-loading-spinner>div:nth-of-type(7)>div {
	animation: modaal-loading-spinner 1s linear infinite;
	-ms-animation-delay: .75s;
	-moz-animation-delay: .75s;
	-webkit-animation-delay: .75s;
	-o-animation-delay: .75s;
	animation-delay: .75s;
}

.modaal-loading-spinner>div:nth-of-type(7) {
	-ms-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
	-moz-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
	-webkit-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
	-o-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
	transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
}

.modaal-loading-spinner>div:nth-of-type(8)>div {
	-ms-animation: modaal-loading-spinner 1s linear infinite;
	-moz-animation: modaal-loading-spinner 1s linear infinite;
	-webkit-animation: modaal-loading-spinner 1s linear infinite;
	-o-animation: modaal-loading-spinner 1s linear infinite;
	animation: modaal-loading-spinner 1s linear infinite;
	-ms-animation-delay: .87s;
	-moz-animation-delay: .87s;
	-webkit-animation-delay: .87s;
	-o-animation-delay: .87s;
	animation-delay: .87s;
}

.modaal-loading-spinner>div:nth-of-type(8) {
	-ms-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
	-moz-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
	-webkit-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
	-o-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
	transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
}

/* alphainfo template stylesheet */
.tpl__alphainfo__header {
	background: #ffffff;
}

.tpl__alphainfo__header.black {
	background: #000;
}

.tpl__alphainfo__header--inner {
	width: 93.75%;
	max-width: 1200px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	box-sizing: border-box;
	margin: 0 auto;
	height: 70px;
}

.tpl__alphainfo__header--logo {
	display: block;
	padding: 15px 0;
	width: 110px;
}

.tpl__alphainfo__header--logo img {
	vertical-align: middle;
}

.tpl__alphainfo__header--txt {
	margin-left: auto;
	padding: 14px 0 18px;
	width: 351px;
	line-height: 0;
}

@media (max-width: 959px) {
	.tpl__alphainfo__header--txt {
		width: 300px;
	}
}

@media (max-width: 639px) {
	.tpl__alphainfo__header--logo {
		width: 80px;
	}

	.tpl__alphainfo__header--txt {
		width: 52%;
	}

	.tpl__alphainfo__header--inner {
		height: 55px;
	}
}

.tpl__alphainfo__academy {
	max-width: 1200px;
	margin: 0 auto;
	background: #efefef;
	color: #000;
}

.tpl__alphainfo__academy--inner {
	padding: 50px 60px 80px 50px;
}

.tpl__alphainfo__academy--txt {
	font-size: 18px;
	font-size: 1.125rem;
	line-height: 1.67;
}

.tpl__alphainfo__academy--heading {
	background: #ccc;
	padding: 50px 20px 35px;
	text-align: center;
	color: #333;
	font-size: 28px;
	font-size: 1.75rem;
	font-family: "Yu Mincho", YuMincho, "游明朝", "HGS明朝", "HGP明朝", "HG明朝", serif;
	line-height: 1;
}

.tpl__alphainfo__academy--heading--logo {
	display: block;
	margin-top: 16px;
}

.tpl__alphainfo__academy--heading--logo img {
	display: block;
	margin: 0 auto;
}

.tpl__alphainfo__academy--intro--imgbox {
	margin-left: 46px;
	width: 46.1155%;
	max-width: 463px;
	float: right;
}

.tpl__alphainfo__academy--intro--spimgbox {
	display: none;
}

.tpl__alphainfo__academy--intro--heading {
	font-size: 30px;
	font-size: 1.875rem;
	line-height: 1.5;
	letter-spacing: .05em;
	margin-bottom: 30px;
	font-family: "Yu Mincho", YuMincho, "游明朝", "HGS明朝", "HGP明朝", "HG明朝", serif;
}

.tpl__alphainfo__academy--intro::after {
	content: '';
	display: block;
	clear: both;
}

.tpl__alphainfo__academy--course {
	margin-top: 60px;
	display: flex;
	justify-content: space-between;
}

.tpl__alphainfo__academy--course--imgbox {
	flex: 0 0 39.8406;
	max-width: 400px;
}

.tpl__alphainfo__academy--course--txtbox {
	flex: 0 1 auto;
	margin-left: 60px;
}

.tpl__alphainfo__academy--course--boxttl {
	background: #ea5504;
	display: inline-block;
	padding: 6px 20px 5px;
	color: #fff;
	font-size: 18px;
	font-size: 1.125rem;
	letter-spacing: .025em;
	line-height: 1;
}

.tpl__alphainfo__academy--course--tags {
	padding: 0;
	display: flex;
	margin-top: 30px;
	list-style: none;
}

.tpl__alphainfo__academy--course--tags li {
	border: 1px solid;
	padding: 2px 5px 1px;
	line-height: 1.2;
	box-sizing: border-box;
	font-size: 14px;
	font-size: .875rem;
}

.tpl__alphainfo__academy--course--tags li:nth-of-type(n+2) {
	margin-left: 5px;
}

.tpl__alphainfo__academy--course--tags .free {
	border-color: #5887ab;
	color: #5887ab;
}

.tpl__alphainfo__academy--course--tags .beginner {
	border-color: #f9e575;
	background: #f9e575;
	color: #3a3519;
}

.tpl__alphainfo__academy--course--tags .use {
	border-color: #a2bbea;
	color: #000;
}

.tpl__alphainfo__academy--course--tags .teacher {
	border-color: #ec9717;
	color: #6B460E;
}

.tpl__alphainfo__academy--course--heading {
	font-size: 20px;
	font-size: 1.25rem;
	line-height: 1.5;
	letter-spacing: .075em;
	margin-bottom: 16px;
	margin-top: 26px;
}

.tpl__alphainfo__academy--course--spimgbox {
	display: none;
}

.tpl__alphainfo__academy--banner {
	margin-top: 80px;
	text-align: center;
}

.tpl__alphainfo__academy--banner--heading {
	font-size: 30px;
	font-size: 1.875rem;
	letter-spacing: .05em;
	font-family: "Yu Mincho", YuMincho, "游明朝", "HGS明朝", "HGP明朝", "HG明朝", serif;
}

.tpl__alphainfo__academy--banner--link {
	display: block;
	margin-top: 30px;
	transition: 0.2s;
}

.tpl__alphainfo__academy--banner--link:hover,
.tpl__alphainfo__academy--banner--link:focus {
	opacity: .6;
}

.tpl__alphainfo__academy--banner--caution {
	margin-top: 16px;
}

@media (max-width: 959px) {
	.tpl__alphainfo__academy--inner {
		padding: 30px 20px 40px;
	}

	.tpl__alphainfo__academy--heading {
		padding: 40px 20px 25px;
	}

	.tpl__alphainfo__academy--heading--logo {
		margin-top: 10px;
		transform: scale(0.8);
	}

	.tpl__alphainfo__academy--intro--heading {
		font-size: 24px;
		font-size: 1.5rem;
		margin-bottom: 20px;
	}

	.tpl__alphainfo__academy--intro--heading br {
		display: none;
	}

	.tpl__alphainfo__academy--intro--imgbox {
		margin-left: 20px;
	}
}

@media (max-width: 639px) {
	.tpl__alphainfo__academy--heading {
		padding: 30px 20px 20px;
	}

	.tpl__alphainfo__academy--heading--logo {
		transform: scale(0.6);
	}

	.tpl__alphainfo__academy--intro--heading {
		font-size: 24px;
		font-size: 1.5rem;
		margin-bottom: 15px;
	}

	.tpl__alphainfo__academy--course {
		margin-top: 40px;
	}

	.tpl__alphainfo__academy--course--imgbox {
		display: none;
	}

	.tpl__alphainfo__academy--course--spimgbox {
		display: block;
		margin-top: 20px;
	}

	.tpl__alphainfo__academy--course--spimgbox img {
		width: 100%;
	}

	.tpl__alphainfo__academy--course--txtbox {
		margin-left: 0;
	}

	.tpl__alphainfo__academy--course--tags {
		margin-top: 20px;
	}

	.tpl__alphainfo__academy--course--heading {
		margin-top: 20px;
	}

	.tpl__alphainfo__academy--banner {
		margin-top: 60px;
	}

	.tpl__alphainfo__academy--banner--link {
		margin-top: 20px;
	}

	.tpl__alphainfo__academy--banner--caution {
		text-align: left;
	}
}

@media (max-width: 479px) {
	.tpl__alphainfo__academy--heading {
		font-size: 22.4px;
		font-size: 1.4rem;
	}

	.tpl__alphainfo__academy--intro--heading {
		font-size: 24px;
		font-size: 1.5rem;
		margin-bottom: 15px;
	}

	.tpl__alphainfo__academy--intro--imgbox {
		display: none;
	}

	.tpl__alphainfo__academy--intro--spimgbox {
		display: block;
		margin-bottom: 20px;
	}

	.tpl__alphainfo__academy--course--tags li {
		font-size: 13px;
		font-size: 0.8125rem;
	}

	.tpl__alphainfo__academy--banner--heading {
		font-size: 24px;
		font-size: 1.5rem;
	}
}

.tpl__alphainfo-asidebox {
	background: #eaeaea;
	color: #333333;
	padding: 70px 0 30px;
}

@media screen and (max-width: 639px) {
	.tpl__alphainfo-asidebox {
		padding: 50px 0 80px;
	}
}

.tpl__alphainfo-store+.tpl__alphainfo-store,
.tpl__alphainfo-store+.tpl__alphainfo-program,
.tpl__alphainfo-program+.tpl__alphainfo-store,
.tpl__alphainfo-program+.tpl__alphainfo-program {
	margin-top: 60px;
}

.tpl__alphainfo-store--inner,
.tpl__alphainfo-program--inner {
	width: 93.75%;
	max-width: 1200px;
	box-sizing: border-box;
	margin: 0 auto;
}

.tpl__alphainfo-store--heading,
.tpl__alphainfo-program--heading {
	text-align: center;
	font-family: "Yu Mincho", YuMincho, "游明朝", "HGS明朝", "HGP明朝", "HG明朝", serif;
	font-size: 38px;
	font-size: 2.375rem;
	line-height: 1.34;
	font-weight: normal;
}

.tpl__alphainfo-store--txt,
.tpl__alphainfo-program--txt {
	font-size: 18px;
	font-size: 1.125rem;
	line-height: 1.67;
}

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

	.tpl__alphainfo-store--heading,
	.tpl__alphainfo-program--heading {
		font-size: 30px;
		font-size: 1.875rem;
	}
}

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

	.tpl__alphainfo-store--heading,
	.tpl__alphainfo-program--heading {
		font-size: 24px;
		font-size: 1.5rem;
	}
}

.tpl__alphainfo-store--imgbox {
	margin: 30px 0 50px;
	display: flex;
}

.tpl__alphainfo-store--imgitem {
	flex: 0 0 50%;
}

.tpl__alphainfo-store--list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 40px;
}

.tpl__alphainfo-store--list img {
	width: 100%;
}

.tpl__alphainfo-store--item {
	flex: 0 0 19.167%;
	transition: opacity .25s !important;
}

.tpl__alphainfo-store--item:hover {
	opacity: .8;
}

.tpl__alphainfo-store--name {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	font-size: .875rem;
	font-weight: bold;
	line-height: 1.2;
	color: #fff;
	background: #0e0e0e;
	height: 54px;
}

.tpl__alphainfo-store--name::before {
	content: '';
	display: inline-block;
	position: relative;
	top: -0.1em;
	margin-right: 5px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 4px 0 4px 5px;
	border-color: transparent transparent transparent #fff;
}

.tpl__alphainfo-store--store-sp {
	display: none;
}

.tpl__alphainfo-store--img {
	display: block;
}

@media screen and (max-width: 1259px) {
	.tpl__alphainfo-store--name {
		font-size: 1.2vw;
		height: 4.8vw;
	}
}

@media screen and (max-width: 639px) {
	.tpl__alphainfo-store--store-sp {
		display: block;
		margin-top: 30px;
	}

	.tpl__alphainfo-store--store-sp img {
		width: 100%;
	}

	.tpl__alphainfo-store--list {
		display: none;
	}

	.tpl__alphainfo-store--name {
		font-size: 16px;
		font-size: 1rem;
		height: 48px;
	}

	.tpl__alphainfo-store--imgbox {
		margin: 30px 0;
	}

	.tpl__alphainfo-store--item {
		display: block;
	}
}

@media screen and (max-width: 479px) {
	.tpl__alphainfo-store--name {
		font-size: 14px;
		font-size: 0.875rem;
		height: 40px;
	}

	.tpl__alphainfo-store--imgbox {
		margin: 20px 0;
	}

	.tpl__alphainfo-store--store-sp {
		display: block;
		margin-top: 20px;
	}
}

.tpl__alphainfo-program--box {
	clear: both;
	display: block;
	content: '';
	margin-top: 30px;
}

.tpl__alphainfo-program--img {
	float: right;
	margin: 0 0 0 40px;
	width: 38.584%;
	transition: opacity .2s !important;
}

.tpl__alphainfo-program--img:hover {
	opacity: .8;
}

.tpl__alphainfo-program--btn {
	display: inline-block;
	position: relative;
	box-sizing: border-box;
	margin-top: 20px;
	padding: 13px 30px 12px 30px;
	font-size: 13px;
	font-size: 0.8125rem;
	font-weight: bold;
	line-height: 1.2;
	color: #fff;
	text-align: center;
	text-decoration: none;
	background-color: #5687f5;
	transition: opacity .2s !important;
}

.tpl__alphainfo-program--btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 15px;
	margin-top: -3.5px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 3.5px 0 3.5px 4px;
	border-color: transparent transparent transparent #fff;
}

.tpl__alphainfo-program--btn:hover {
	color: #fff;
	opacity: .8;
}

@media screen and (max-width: 639px) {
	.tpl__alphainfo-program--img {
		display: block;
		float: none;
		margin: 0 0 30px;
		width: 100%;
	}

	.tpl__alphainfo-program--btn {
		font-size: 16px;
		font-size: 1rem;
	}
}

@media screen and (max-width: 479px) {
	.tpl__alphainfo-program--img {
		margin: 0 0 20px;
	}

	.tpl__alphainfo-program--box {
		margin-top: 20px;
	}

	.tpl__alphainfo-program--btn {
		font-size: 14px;
		font-size: 0.875rem;
	}
}

/* End alphainfo template stylesheet */
/* survey template stylesheet */
.tpl__survey {
	background: #fff;
	color: #444;
}

.tpl__survey--inner {
	max-width: 950px;
	width: 93.75%;
	margin: 0 auto;
	padding: 50px 0;
	text-align: center;
}

.tpl__survey--heading {
	font-size: 38px;
	font-size: 2.375rem;
	letter-spacing: .06em;
	line-height: 1.33;
}

.tpl__survey--txt {
	font-size: 18px;
	font-size: 1.125rem;
	letter-spacing: .06em;
	font-weight: 500;
	margin-top: 30px;
	line-height: 1.77;
}

.tpl__survey--linkbtn {
	font-size: 28px;
	font-size: 1.75rem;
	font-weight: bold;
	margin-top: 40px;
	display: block;
	color: #fff;
	background: #5787e4;
	padding: 16px;
	text-decoration: none;
	transition: 0.2s !important;
	line-height: 1.25;
}

.tpl__survey--linkbtn:hover,
.tpl__survey--linkbtn:focus {
	color: #fff;
	background: #8aacf6;
}

@media screen and (max-width: 959px) {
	.tpl__survey--heading {
		font-size: 30px;
		font-size: 1.875rem;
	}
}

@media screen and (max-width: 639px) {
	.tpl__survey--inner {
		width: 90.625%;
	}

	.tpl__survey--txt {
		text-align: left;
	}

	.tpl__survey--linkbtn {
		font-size: 20px;
		font-size: 1.25rem;
	}
}

@media screen and (max-width: 479px) {
	.tpl__survey--inner {
		padding: 34px 0;
	}

	.tpl__survey--heading {
		font-size: 24px;
		font-size: 1.5rem;
	}

	.tpl__survey--txt {
		margin-top: 20px;
	}

	.tpl__survey--linkbtn {
		margin-top: 26px;
		font-size: 18px;
		font-size: 1.125rem;
	}
}

/* End survey template stylesheet */
/*========================================

  #Academy

========================================*/
#Academy {
	padding-bottom: 90px;
	background: #fff;
}

#Academy .inner {
	margin-top: 60px;
	position: relative;
	margin: 60px auto 0;
	max-width: 950px;
	width: 94.0594059%;
}

#Academy .intro h4 {
	margin-bottom: 25px;
	font-size: 2.438rem;
	line-height: 1.23;
	color: #333;
}

#Academy .intro .txt-box {
	position: relative;
	display: inline-block;
	vertical-align: top;
	width: 450px;
}

#Academy .lesson.mod-btn {
	margin-top: 20px;
	background-color: #1890fa;
	font-size: 16px;
	font-weight: 600;
}

@media (max-width: 640px) {
	#Academy {
		padding-bottom: 50px;
	}

	#Academy .inner {
		width: 90.625%;
	}
}

.article-heading {
	background: #2b2b2b;
}

.article-heading__txt {
	position: relative;
	display: block;
	box-sizing: border-box;
	margin: 0 auto;
	padding-left: 32px;
	font-size: 175%;
	line-height: 1.2;
	color: #fff;
	max-width: 950px;
	width: 94.0594059%;
}

.article-heading__txt:before {
	content: '';
	position: absolute;
	display: inline-block;
	top: 50%;
	left: 0;
	margin-top: -16px;
	width: 24px;
	height: 32px;
	background-image: url(../img/arrow_ttl.svg);
	background-repeat: no-repeat;
	background-size: 100% auto;
}

.mod-img img {
	width: 100%;
	height: auto;
}

.mod-txt {
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 2;
	color: #000;
	letter-spacing: -0.03em;
}

/*----------------------------------------
  #Academy .intro
----------------------------------------*/
#Academy .intro h4 {
	margin-bottom: 25px;
	font-size: 2.438rem;
	line-height: 1.23;
	color: #333;
}

#Academy .intro .txt-box {
	position: relative;
	display: inline-block;
	vertical-align: top;
	width: 450px;
}

#Academy .intro .mod-img {
	position: relative;
	display: inline-block;
	vertical-align: top;
	left: 37px;
	width: 463px;
}

@media (max-width: 640px) {
	#Academy .intro {
		margin-top: 30px;
	}

	#Academy .intro h4 {
		margin-bottom: 15px;
	}

	#Academy .intro .txt-box {
		position: static;
		display: block;
		width: auto;
	}

	#Academy .intro .mod-img {
		position: static;
		display: block;
		margin-top: 15px;
		width: auto;
	}
}

@media (max-width: 480px) {
	#Academy .intro h4 {
		font-size: 8.5vw;
	}
}

/*----------------------------------------
  #Academy .course
----------------------------------------*/
#Academy .course .txt-box {
	position: relative;
	display: inline-block;
	vertical-align: top;
	left: 430px;
	width: 520px;
}

#Academy .course .mod-img {
	position: relative;
	display: inline-block;
	vertical-align: top;
	left: -520px;
	width: 400px;
}

#Academy .course .txt-box h4,
#Academy .course .txt-box strong {
	display: block;
	margin-bottom: 15px;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.2;
}

#Academy .course .txt-box h4 {
	display: inline-block;
	margin: 0;
	padding: 2px 20px;
	color: #fff;
	background: #ea5504;
}

#Academy .course .tags {
	margin: 30px 0 20px;
	padding: 0;
	list-style: none;
}

#Academy .course .tags li {
	display: inline-block;
	margin-right: 8px;
	margin-bottom: 5px;
	padding: 2px 5px 1px;
	font-size: 0.875rem;
	color: #111;
	line-height: 1.2;
	border-style: solid;
	border-width: 1px;
}

#Academy .course .tags li:last-child {
	margin-right: 0;
}

#Academy .course .tags .intermediate {
	background-color: #39dbcf;
	border-color: #39dbcf;
}

#Academy .course .tags .content {
	border-color: #a2bbea;
}

#Academy .course .tags .lecturer {
	color: #6b4650;
	border-color: #ec9717;
	letter-spacing: -0.02em;
}

#Academy .course .note {
	display: block;
	margin-top: 15px;
	font-size: 14px;
	line-height: 1.4;
}

@media (max-width: 640px) {
	#Academy .course .txt-box {
		position: static;
		display: block;
		width: auto;
	}

	#Academy .course .txt-box h4 {
		display: block;
		text-align: center;
		padding: 4px 20px;
	}

	#Academy .course .txt-box strong {
		font-size: 1.188rem;
	}

	#Academy .course .tags {
		margin: 15px 0;
	}

	#Academy .course .mod-img {
		position: static;
		margin-top: 15px;
		display: block;
		width: auto;
	}
}

/*----------------------------------------
  #Academy .search
----------------------------------------*/
#Academy .search h4 {
	text-align: center;
	margin-bottom: 25px;
	font-size: 1.75rem;
	line-height: 1.3;
}

#Academy .search .item {
	display: inline-block;
	vertical-align: top;
	margin-left: 10px;
	width: 182px;
	background: #3f3f3f;
}

#Academy .search h4+.item {
	margin-left: 0;
}

#Academy .search .item strong {
	display: block;
	text-align: center;
	padding: 22px 5px 20px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	color: #fff;
	background: #1890fa;
}

#Academy .search .item strong:before {
	display: inline-block;
	margin-right: 4px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5px 0 5px 8px;
	border-color: transparent transparent transparent #fff;
	content: '';
}

#Academy .search p {
	text-align: center;
	font-size: 14px;
	margin-top: 20px;
}

@media (max-width: 640px) {
	#Academy .search h4 {
		margin-bottom: 10px;
	}

	#Academy .search .item {
		margin-top: 2%;
		margin-left: 2%;
		width: 49%;
	}

	#Academy .search .item:nth-child(even) {
		margin-left: 0;
	}

	#Academy .search .item strong {
		padding: 14px 4px 12px;
	}

	#Academy .search .item strong:before {
		margin-right: 3px;
		border-width: 4px 0 4px 6px;
	}
}

@media (max-width: 480px) {
	#Academy .search h4 {
		font-size: 6vw;
	}

	#Academy .search .item strong {
		font-size: 3.6vw;
	}
}

/*========================================

  .academy-recommend

========================================*/
.academy-recommend {
	margin-top: 70px;
}

.academy-recommend.cr-inner {
	max-width: 1000px;
}

.academy-heading+.academy-recommend {
	margin-top: 50px;
}

.academy-recommend__heading {
	margin: 0;
	font-size: 1.25rem !important;
	font-weight: 700 !important;
	line-height: 1.5;
	text-align: left;
}

.academy-recommend .academy-heading {
	margin-top: 70px;
	text-align: center;
	font-weight: normal;
	line-height: 1.2;
	display: block;
	color: #2d2d2d;
	font-size: 24px;
	font-size: 1.5rem;
}

@media screen and (min-width: 480px) {
	.academy-recommend .academy-heading {
		font-size: 26px;
		font-size: 1.625rem;
	}
}

@media screen and (min-width: 640px) {
	.academy-recommend .academy-heading {
		font-size: 28px;
		font-size: 1.75rem;
	}
}

.academy-recommend02 .academy-recommend02__item .button {
	padding: 2.3% 15px 2.3%;
	width: 100%;
	font-size: 87.5%;
	margin-top: 6%;
}

.academy-recommend02 .academy-recommend02__item .button span {
	font-size: 1.25rem !important;
	font-weight: 700 !important;
	line-height: 1.2;
	text-align: left;
}

.academy-recommend p.txt {
	text-align: center;
	margin-top: 15px;
	font-size: 100%;
	line-height: 1.875;
	letter-spacing: 0;
	color: #333;
}

.academy-recommend p.txt.ac-small {
	font-size: 14.4px;
}

@media screen and (max-width: 640px) {
	.academy-recommend p.txt.ac-small {
		font-size: 11.2px;
	}
}

.article-heading__txt .ac-w {
	max-width: 227px;
}

.academy-recommend__heading span {
	font-size: 0.8em;
}

.academy-recommend__heading+.cr-text {
	margin-top: 20px;
}

.academy-recommend .cr-heading+.cr-text {
	margin-top: 25px;
}

/*----------------------------------------
  .report
----------------------------------------*/
.academy-recommend .report {
	text-align: center;
}

.academy-recommend .report img,
.academy-recommend .mod-img img {
	box-sizing: border-box;
	margin: 30px auto 0;
	max-width: 1000px;
	width: 100%;
}

@media (max-width: 640px) {
	.academy-recommend .report img {
		max-width: 760px;
		width: 100%;
	}
}

/*========================================

  #Plaza

========================================*/
#Plaza {
	padding-bottom: 90px;
}

#Plaza .heading {
	padding: 16px 0 14px;
	background: #ea5504;
}

#Plaza .heading em {
	font-size: 193.8%;
}

#Plaza .sec {
	padding-top: 90px;
	position: relative;
	margin: 0 auto;
	max-width: 950px;
	width: 94.0594059%;
}

#Plaza h4 {
	margin-bottom: 25px;
	font-size: 30px;
	font-size: 1.875rem;
	line-height: 1.23;
	color: #333;
	text-align: center;
}

#Plaza .txt {
	margin-top: 25px;
	font-size: 112.5%;
	line-height: 1.5;
}

#Plaza .btn.orange {
	padding-right: 30px;
	padding-left: 30px;
}

@media (max-width: 640px) {
	#Plaza .heading {
		padding: 12px 0 11px;
	}

	#Plaza .heading em {
		font-size: 156.3%;
	}

	#Plaza .sec {
		margin-top: 30px;
		padding-top: 30px;
		width: 90.625%;
	}

	#Plaza h4 {
		margin-bottom: 20px;
		font-size: 137.5%;
		line-height: 1.4;
	}

	#Plaza .txt {
		font-size: 100%;
		line-height: 1.6;
	}

	#Plaza .btn.orange {
		display: block;
		margin: 0 auto;
		width: 100%;
	}
}

/*----------------------------------------
  #Plaza .header
----------------------------------------*/
#Plaza .header {
	position: relative;
}

#Plaza .header-bg {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../img/plaza_header.jpg);
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: auto 100%;
}

#Plaza .header-wrap {
	position: relative;
	margin: 0 auto;
	max-width: 950px;
	width: 94.0594059%;
}

#Plaza .header-holder {
	padding-bottom: 448px;
	padding-bottom: 47.1578947%;
}

#Plaza .header-inner {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#Plaza .header-txt {
	position: absolute;
	display: table;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#Plaza .header h3 {
	display: table-cell;
	vertical-align: middle;
	font-size: 318.8%;
	line-height: 1.0;
	letter-spacing: -0.05em;
	text-shadow: 0 0 40px #fff, 0 0 40px #fff, 0 0 40px #fff, 0 0 40px #fff;
}

#Plaza .header h3 span {
	margin-left: -0.15em;
	font-size: 150%;
}

@media (max-width: 640px) {

	#Plaza .header-bg,
	#Plaza .header-inner,
	#Plaza .header-txt {
		position: static;
	}

	#Plaza .header-bg {
		padding-bottom: 50%;
		background-position: right top;
		background-size: auto 125%;
	}

	#Plaza .header-holder {
		padding-bottom: 0;
	}

	#Plaza .header-txt {
		margin-top: 25px;
	}

	#Plaza .header h3 {
		font-size: 181.3%;
		line-height: 1.4;
		text-shadow: none;
	}

	#Plaza .header h3 span {
		line-height: 0.6;
	}
}

@media (max-width: 320px) {
	#Plaza .header h3 {
		font-size: 162.5%;
	}
}

/*----------------------------------------
  #Plaza .intro
----------------------------------------*/
#Plaza .intro {
	margin: 40px auto 0;
	max-width: 950px;
	width: 94.0594059%;
}

#Plaza .intro .about {
	margin: 30px auto;
	font-size: 0;
}

#Plaza .intro .about .item {
	display: inline-block;
	vertical-align: top;
	margin-left: 1.1578947%;
	width: 24.1052631%;
	font-size: 16px;
	font-size: 1rem;
}

#Plaza .intro .about .item:first-child {
	margin-left: 0;
}

#Plaza .intro .about a {
	display: block;
	margin: 15px 0 10px;
	font-size: 125%;
	font-weight: 700;
	line-height: 1.0;
	letter-spacing: -0.05em;
	text-align: center;
}

#Plaza .intro .about .item:nth-child(3) a {
	letter-spacing: -0.1em;
}

#Plaza .intro .about .txt-box {
	margin: 0 auto;
	width: 97%;
	font-size: 93.8%;
	line-height: 1.5;
}

@media (max-width: 640px) {
	#Plaza .intro {
		margin: 20px auto 0;
	}

	#Plaza .intro .about {
		margin-top: 10px;
	}

	#Plaza .intro .about .item {
		margin: 20px 0 0 4%;
		width: 48%;
	}

	#Plaza .intro .about .item:nth-child(2n+1) {
		margin-left: 0;
	}

	#Plaza .intro .about a {
		font-size: 106.3%;
	}

	#Plaza .intro .about .item:nth-child(3) a {
		letter-spacing: -0.12em;
	}

	#Plaza .intro .about a:before {
		margin-right: 5px;
	}

	#Plaza .intro .about .txt-box {
		width: auto;
		font-size: 75%;
	}
}

@media (max-width: 320px) {
	#Plaza .intro .about a {
		font-size: 100%;
	}

	#Plaza .intro .about .txt-box {
		font-size: 68.8%;
	}
}

/*----------------------------------------
  #Plaza .store
----------------------------------------*/
#Plaza .store .index {
	margin: 40px 0 0;
	font-size: 0;
}

#Plaza .store .item {
	display: inline-block;
	vertical-align: top;
	margin-left: 2%;
	width: 17.643%;
	text-align: right;
}

#Plaza .store .item:first-child {
	margin-left: 0;
}

#Plaza .store .item img {
	width: 100%;
	height: auto;
}

#Plaza .store .index span {
	display: block;
	margin-top: 5px;
	font-size: 16px;
}

#Plaza .store .index span a:before {
	position: relative;
	display: inline-block;
	top: -0.08em;
	margin-right: 5px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5px 0 5px 9px;
	border-color: transparent transparent transparent #000;
	content: '';
}

#Plaza .store .index span a:hover {
	text-decoration: underline;
}

#Plaza .store .item img:hover {
	opacity: 0.7;
}

#Plaza .store p.note {
	margin-bottom: 40px;
}

@media (max-width: 480px) {
	#Plaza .store .index {
		margin-top: 10px;
	}

	#Plaza .store .item {
		margin: 4% 0 0 4%;
		width: 48%;
	}

	#Plaza .store .item:nth-child(2n+1) {
		margin-left: 0;
	}
}

#Ques .inner {
	max-width: 950px;
	margin: 0 auto;
	width: 93.75%;
}

@media screen and (min-width: 768px) {
	#Ques .inner {
		width: 90.625%;
	}
}

#Ques .section-title {
	font-size: 28px;
	font-size: 1.75rem;
	padding: 0;
	width: 100%;
	color: #333333;
}

@media screen and (min-width: 480px) {
	#Ques .section-title {
		font-size: 35px;
		font-size: 2.1875rem;
	}
}

@media screen and (min-width: 640px) {
	#Ques .section-title {
		font-size: 43px;
		font-size: 2.6875rem;
	}
}

@media screen and (min-width: 640px) {
	body {
		min-width: 1260px;
	}
}

footer {
	background: #fff;
}

.no-js .lazyparent {
	display: none;
}

.no-js img.mod__lazy {
	display: none;
}

.serif {
	font-family: 'Noto Serif JP', serif;
	font-weight: 500;
}

.mod-img a {
	display: block;
}

.pc {
	display: none;
}

@media screen and (min-width: 640px) {
	.sp {
		display: none;
	}

	.pc {
		display: block;
	}
}

/* shared */
.profile,
.youtube-block,
.img-block,
.block,
.block-intro,
.inner-box,
.section-read,
.title,
.text,
h4.time,
.item-650,
.item-600,
.point,
.title-p4 {
	box-sizing: border-box;
	width: 93.75%;
	margin: 0 auto;
}

.img-block,
.block-intro,
.profile,
.youtube-block,
.section-read,
.inner-box,
.title,
.text,
h4.time,
.point,
.title-p4,
.use {
	max-width: 950px;
}

.item-650 {
	max-width: 650px;
}

.item-650 .img-block,
.item-650 h4.time,
.item-650 .text {
	width: 100%;
}

.item-600 {
	max-width: 600px;
}

article {
	color: #333333;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
}

/* block */
.block {
	background: #fff;
	max-width: 1200px;
	padding: 40px 0;
	width: 100%;
}

.block.not-bg {
	background: transparent;
	margin-top: 0 !important;
}

@media screen and (min-width: 640px) {
	.block {
		padding: 100px 0;
		margin-top: 100px;
	}

	.block.not-bg {
		padding-top: 80px;
	}
}

.block-title {
	text-align: center;
	font-size: 20px;
	font-size: 1.25rem;
	color: #46D3CD;
	font-weight: bold;
	margin-bottom: 30px;
}

.block-title span {
	display: inline-block;
	position: relative;
	padding-bottom: 10px;
}

.block-title span::before {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: #46D3CD;
}

.block-title span::after {
	content: '';
	display: block;
	position: absolute;
	top: 100%;
	left: 50%;
	border-style: solid;
	border-width: 11px 12px 0 12px;
	border-color: #46d3cc transparent transparent transparent;
	transform: translateX(-50%);
}

.block+.block {
	margin-top: 60px;
}

@media screen and (min-width: 480px) {
	.block+.block {
		margin-top: 80px;
	}

	.block-title {
		font-size: 35px;
		font-size: 2.1875rem;
		margin-bottom: 60px;
	}
}

@media screen and (min-width: 640px) {
	.block+.block {
		margin-top: 100px;
	}

	.block-title {
		font-size: 35px;
		font-size: 2.1875rem;
	}
}

.block-intro {
	display: block;
}

@media screen and (min-width: 640px) {
	.block-intro {
		display: flex;
	}
}

.block-intro .img-box img {
	width: 50%;
	display: block;
	margin: 0 auto;
}

@media screen and (min-width: 640px) {
	.block-intro .img-box {
		flex: 0 0 21.789%;
		max-width: 21.789%;
	}

	.block-intro .img-box img {
		width: 100%;
	}
}

.block-intro .text-box {
	margin-top: 20px;
}

@media screen and (min-width: 640px) {
	.block-intro .text-box {
		margin-top: 0;
		margin-left: 8.4%;
		flex: 0 0 auto;
	}
}

@media screen and (min-width: 640px) {
	.block-intro .text-box.second {
		margin-left: 4.7%;
	}
}

.block-intro-title {
	font-size: 24px;
	font-size: 1.5rem;
	letter-spacing: .12em;
	text-align: center;
}

@media screen and (min-width: 480px) {
	.block-intro-title {
		font-size: 30px;
		font-size: 1.875rem;
	}
}

@media screen and (min-width: 640px) {
	.block-intro-title {
		text-align: left;
		margin-left: -.5em;
		font-size: 36px;
		font-size: 2.25rem;
	}
}

.block-intro-text {
	font-size: 16px;
	font-size: 1rem;
	letter-spacing: -.02em;
	line-height: 2;
	margin-top: 10px;
}

@media screen and (min-width: 480px) {
	.block-intro-text {
		font-size: 18px;
		font-size: 1.125rem;
	}
}

@media screen and (min-width: 640px) {
	.block-intro-text {
		font-size: 20px;
		font-size: 1.25rem;
	}
}

.block-intro+.title {
	margin-top: 40px;
}

@media screen and (min-width: 480px) {
	.block-intro+.title {
		margin-top: 50px;
	}
}

@media screen and (min-width: 640px) {
	.block-intro+.title {
		margin-top: 60px;
	}
}

.inner-box {
	background: #fafafa;
	padding: 20px 3.125% 30px;
	margin-top: 40px;
}

@media screen and (min-width: 480px) {
	.inner-box {
		margin-top: 50px;
	}
}

@media screen and (min-width: 640px) {
	.inner-box {
		padding: 40px 60px 60px;
		margin-top: 60px;
	}
}

.inner-box .title {
	width: 100%;
	margin: 0 auto;
}

.inner-box-img-2col {
	margin-top: 30px;
}

@media screen and (min-width: 640px) {
	.inner-box-img-2col {
		margin-top: 40px;
	}
}

.inner-box-img-2col img {
	width: 100%;
}

@media screen and (min-width: 480px) {
	.inner-box-img-2col .img-box {
		flex: 0 0 49%;
	}
}

.inner-box-img-2col .img-box:nth-of-type(2) {
	margin-top: 5px;
}

@media screen and (min-width: 480px) {
	.inner-box-img-2col .img-box:nth-of-type(2) {
		margin-top: 0;
		margin-left: 2%;
	}
}

@media screen and (min-width: 480px) {
	.inner-box-img-2col {
		display: flex;
	}
}

.mod_btn {
	color: #fff !important;
	background: #666666;
	font-size: 13px;
	font-size: 0.8125rem;
	text-align: center;
	padding: 9px 10px 10px;
	display: inline-block;
	min-width: 186px;
	box-sizing: border-box;
	position: relative;
	transition: .3s;
}

.mod_btn::before {
	content: '';
	display: block;
	position: absolute;
	border-style: solid;
	border-width: 3.5px 0 3.5px 4px;
	border-color: transparent transparent transparent #fff;
	top: 50%;
	left: 20px;
	transform: translateY(-50%);
}

.mod_btn:hover,
.mod_btn:focus {
	background: #8c8c8c;
}

.mod_btn.large {
	min-width: 226px;
}

.mod_btn.orange {
	background: #e06909;
}

.mod_btn.orange:hover,
.mod_btn.orange:focus {
	background: #f7913e;
}

/* title */
.title {
	font-size: 26px;
	font-size: 1.625rem;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	line-height: 1.5;
}

@media screen and (min-width: 480px) {
	.title {
		font-size: 29px;
		font-size: 1.8125rem;
	}
}

@media screen and (min-width: 640px) {
	.title {
		font-size: 32px;
		font-size: 2rem;
	}
}

.title+.img-block {
	margin-top: 40px;
}

@media screen and (min-width: 480px) {
	.title+.img-block {
		margin-top: 50px;
	}
}

@media screen and (min-width: 640px) {
	.title+.img-block {
		margin-top: 60px;
	}
}

.title+.youtube-block {
	margin-top: 20px;
}

@media screen and (min-width: 640px) {
	.title+.youtube-block {
		margin-top: 30px;
	}
}

.title+.text {
	margin-top: 30px;
}

@media screen and (min-width: 480px) {
	.title+.text {
		margin-top: 35px;
	}
}

@media screen and (min-width: 640px) {
	.title+.text {
		margin-top: 40px;
	}
}

.title .num {
	font-size: 73px;
	font-size: 4.5625rem;
	margin-right: .3em;
	font-style: italic;
}

@media screen and (min-width: 480px) {
	.title .num {
		font-size: 81px;
		font-size: 5.0625rem;
	}
}

@media screen and (min-width: 640px) {
	.title .num {
		margin-right: .6em;
		font-size: 90px;
		font-size: 5.625rem;
	}
}

/* text */
.text {
	line-height: 2;
	font-size: 14px;
	font-size: 1rem;
}

.text.caption {
	line-height: 1.5;
	font-size: 14px;
	margin-top: 60px;
}

@media screen and (min-width: 480px) {
	.text {
		font-size: 17px;
		font-size: 1.0625rem;
	}
}

@media screen and (min-width: 640px) {
	.text {
		font-size: 18px;
		font-size: 1.125rem;
	}
}

.text+.title {
	margin-top: 40px;
}

@media screen and (min-width: 480px) {
	.text+.title {
		margin-top: 50px;
	}
}

@media screen and (min-width: 640px) {
	.text+.title {
		margin-top: 60px;
	}
}

/* img-block */
.img-block img {
	max-width: 100%;
}

.img-block.center {
	text-align: center;
}

.img-block .img-2col .img-box img {
	width: 100%;
}

.img-block .img-2col .img-box:nth-of-type(2) {
	margin-top: 5px;
}

@media screen and (min-width: 640px) {
	.img-block .img-2col {
		display: flex;
	}

	.img-block .img-2col .img-box {
		flex: 0 0 49%;
		max-width: 49%;
	}

	.img-block .img-2col .img-box:nth-of-type(2) {
		margin-top: 0;
		margin-left: 2%;
	}
}

.img-block .img-2col+.caption {
	margin-top: 8px;
	text-align: center;
	font-size: 16px;
	font-size: 1rem;
}

@media screen and (min-width: 480px) {
	.img-block .img-2col+.caption {
		font-size: 17px;
		font-size: 1.0625rem;
	}
}

@media screen and (min-width: 640px) {
	.img-block .img-2col+.caption {
		font-size: 18px;
		font-size: 1.125rem;
		margin-top: 16px;
	}
}

.img-block .img-2col+.text {
	margin-top: 30px;
}

@media screen and (min-width: 640px) {
	.img-block .img-2col+.text {
		margin-top: 40px;
	}
}

.img-block+.text {
	margin-top: 40px;
}

@media screen and (min-width: 480px) {
	.img-block+.text {
		margin-top: 50px;
	}
}

@media screen and (min-width: 640px) {
	.img-block+.text {
		margin-top: 60px;
	}
}

/* youtube-block */
.youtube-block+.btnbox {
	margin-top: 10px;
}

.youtube-block .inner {
	position: relative;
	padding-top: 56.25%;
	width: 100%;
}

.youtube-block.horizontal .inner {
	/* 9:16 */
	width: 54%;
	padding-top: 96%;
}

.youtube-block.horizontal .video-meta {
	width: 54%;
	margin-left: auto;
	margin-right: auto;
}

.youtube-block .poster {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
	border: 0;
	background: none;
	margin: 0;
	padding: 0;
}

.youtube-block .poster svg {
	display: block;
	z-index: 2;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 42px;
	height: 30px;
}

.youtube-block .poster svg .play-icon-bg {
	fill-opacity: .8;
	transition: fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1);
}


.youtube-block .poster img {
	position: relative;
	width: 100%;
}


.youtube-block .poster:hover svg .play-icon-bg,
.youtube-block .poster:focus svg .play-icon-bg {
	fill: #f00;
	fill-opacity: 1;
}


.youtube-block .inner iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.youtube-block .caption {
	font-size: 16px;
	font-size: 1rem;
	text-align: center;
	max-width: none;
	width: 100%;
}

@media screen and (min-width: 640px) {
	.youtube-block+.btnbox {
		margin-top: 25px;
	}

	.youtube-block .caption {
		font-size: 17px;
		font-size: 1.0625rem;
		text-align: right;
	}

	.youtube-block .poster svg {
		width: 68px;
		height: 48px;
	}
}

.youtube-block+.text,
.youtube-block+.title {
	margin-top: 30px;
}

@media screen and (min-width: 640px) {

	.youtube-block+.text,
	.youtube-block+.title {
		margin-top: 50px;
	}
}

/* section */
.section {
	background: #EDEDED;
	padding-bottom: 0;
}

@media screen and (min-width: 640px) {
	.section {
		padding-bottom: 120px;
	}
}

.section>.section-title {
	padding: 40px 0 32px;
}

@media screen and (min-width: 640px) {
	.section>.section-title {
		padding: 80px 0 64px;
	}
}

.section-title {
	max-width: 1200px;
	margin: 0 auto;
	width: 93.75%;
	padding: 20px 0;
	letter-spacing: .12rem;
	line-height: 1.5;
	position: relative;
}

.section-title,
.section-title h2 {
	font-size: 24px;
	font-size: 1.5rem;
	font-weight: 700;
	text-shadow: 0px 0px 8px rgba(255, 255, 255, 0.5), 0px 0px 8px rgba(255, 255, 255, 0.5), 0px 0px 8px rgba(255, 255, 255, 0.5), 0px 0px 8px rgba(255, 255, 255, 0.5);
}

.section-title::selection {
	text-shadow: none;
}

@media screen and (min-width: 640px) {

	.section-title,
	.section-title h2 {
		text-shadow: none;
		font-size: 44px;
		font-size: 2.75rem;
	}
}

.section-title-wrap {
	background-position: left center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media all and (-ms-high-contrast:none) {

	*::-ms-backdrop,
	.section-title-wrap {
		justify-content: flex-start;
	}

	/* IE11 */
}

.section-title-wrap .section-title {
	padding: 0 15px;
	text-align: center;
}

.s1-title {
	background-image: url(../img/s1-bg-sp.jpg);
}

.s2-title {
	background-image: url(../img/s2-bg-sp.jpg);
}

.s3-title {
	background-image: url(../img/s3-bg-sp.jpg);
}

.section-subtitle {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
}

.section-title .section-subtitle.pc {
	font-size: 20px;
	font-size: 1.25rem;
	line-height: 1.7;
	margin-top: 20px;
	letter-spacing: 0;
}

.section-subtitle.sp {
	font-size: 14px;
	font-size: 1rem;
	line-height: 1.57;
	padding: 15px;
}

@media screen and (min-width: 640px) {
	.section-title-wrap {
		height: 160px;
	}

	.s1-title {
		background-image: url(../img/s1-bg.jpg);
	}

	.s2-title {
		background-image: url(../img/s2-bg.jpg);
	}

	.s3-title {
		background-image: url(../img/s3-bg.jpg);
	}
}

@media screen and (max-width: 639px) {
	.section-title-wrap-s2 {
		background-position: 10% center;
	}

	.section-title-wrap-s3 {
		background-position: 7% center;
	}

	.section-title-wrap .section-title {
		padding: 20px 0;
	}
}

.section-read {
	font-size: 16px;
	font-size: 1rem;
	line-height: 2;
	letter-spacing: -.01em;
	padding: 34px 0;
}

@media screen and (min-width: 480px) {
	.section-read {
		font-size: 18px;
		font-size: 1.125rem;
		padding: 51px 0 42px;
	}
}

@media screen and (min-width: 640px) {
	.section-read {
		text-align: center;
		padding: 68px 0 56px;
		font-size: 20px;
		font-size: 1.25rem;
	}
}

/* main visual */
.mv {}

.mv-top {
	background-image: url(../img/mv-sp.jpg);
	background-size: cover;
	background-position: center center;
	height: 76.266vw;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mv-top-title {
	width: 100%;
	padding: 0 !important;
}

.mv-top-title img {
	width: 100%;
}

.mv-bottom {
	background: #46D3CD;
	color: #fff;
	padding: 15px 0;
}

.mv-bottom-inner {
	max-width: 1200px;
	padding: 0 15px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
}

.mv-bottom-camera {
	order: 1;
	padding: 0 28px;
	margin-top: 40px;
}

.mv-bottom-text {
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.8125;
}

@media screen and (min-width: 640px) {
	.mv-top {
		background-image: none;
		flex: 1 1 auto;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.mv-top-title {
		width: 993px;
	}

	.mv-bottom {
		flex: 0 0 auto;
		padding: 40px 0 25px;
		background: rgba(255, 255, 255, .6);
		color: #333333;
	}

	.mv-bottom-inner {
		max-width: 1200px;
		padding: 0 15px;
		flex-direction: row;
	}

	.mv-bottom-camera {
		margin-top: 0;
		padding: 0 0 0 12px;
		width: 304px;
	}

	.mv-bottom-text {
		order: 2;
		margin-left: 38px;
		margin-top: -5px;
		font-size: 19px;
		font-size: 1.1875rem;
		line-height: 2.1;
		font-weight: bold;
	}
}

/* page navigation */
.page-nav-wrapper {
	background: #fff;
}

.page-nav {
	margin: 0 auto;
	max-width: 1200px;
}


@media screen and (min-width: 640px) {
	.page-nav {
		background: #fff;
		display: flex;
		width: 93.75%;
		flex-wrap: nowrap;
	}
}

.page-nav-item {
	box-sizing: border-box;
	height: 70px;
	border-top: 1px solid #fff;
}

@media screen and (min-width: 640px) {
	.page-nav-wrapper {
		background: #46D3CD;
		padding: 25px 0;
	}

	.page-nav-item {
		height: auto;
		border-left: 2px solid #fff;
		flex: 0 0 33.33333%;
		max-width: 33.33333%;
		border-top: 0;
	}

	.page-nav-item:last-of-type {
		border-right: 2px solid #fff;
	}
}

.page-nav-link {
	display: block;
	line-height: 1.47;
	margin: 0 auto;
	height: 100%;
	box-sizing: border-box;
	color: #ffffff !important;
	background: #46D3CD;
	text-align: center;
	font-weight: 700;
	font-size: 22px;
	font-size: 1.375rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity .2s !important;
}

.page-nav-link:hover,
.page-nav-link:focus {
	opacity: .8;
}

@media screen and (min-width: 640px) {
	.page-nav-link {
		height: 90px;
		font-size: 27px;
		font-size: 1.6875rem;
		line-height: 1.55;
	}
}

/* profile */
.profile {
	text-align: center;
	margin-top: 30px;
}

@media screen and (min-width: 640px) {
	.profile {
		display: flex;
		margin-top: 50px;
	}
}

.profile-imgbox {
	flex: 0 0 auto;
	display: inline-block;
	transition: .3s !important;
}

.profile-imgbox::after {
	content: none;
}

.profile-imgbox:hover,
.profile-imgbox:focus {
	opacity: .6;
}

.profile-name {
	line-height: 1;
	margin-top: 10px;
}

.profile-name .profession {
	font-size: 16px;
	font-size: 1rem;
}

.profile-name .name {
	font-size: 22px;
	font-size: 1.375rem;
	margin-top: 5px;
}

.profile-name .label {
	font-size: 13px;
	font-size: .8125rem;
	margin-top: 10px;
}

.profile-name .label .label-text {
	position: relative;
}

.profile-name .label .label-text::after {
	position: absolute;
	right: -10px;
	top: 5px;
	content: '';
	width: 6px;
	height: 6px;
	display: inline-block;
	border-top: 1px solid #fff;
	border-left: 1px solid #fff;
	transform: rotate(135deg) skew(calc((90deg - 108deg) / 2), calc((90deg - 108deg) / 2));
}

.profile-text {
	margin-top: 20px;
	text-align: left;
	line-height: 1.8;
	font-size: 14px;
	font-size: .875rem;
}

.profile-text+.profile-text {
	margin-top: 10px;
}

.profile-modal-links {
	margin-top: 20px;
}

.profile-modal-link {
	color: #333333 !important;
	font-size: 18px;
	font-size: 1.125rem;
	display: flex;
	align-items: center;
	font-family: "Noto Serif JP", serif;
	line-height: 1;
}

.profile-modal-link::before {
	content: '';
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5.5px 0 5.5px 7px;
	border-color: transparent transparent transparent #333333;
	margin-right: 6px;
}

.modaal-wrapper .profile-modal-link:first-of-type {
	display: flex;
}

.profile-modal-link .instagram-icon {
	width: 32px;
	height: 32px;
	margin-right: 12px;
}

.profile-modal-link .instagram-text {
	margin-top: -5px;
}

@media screen and (min-width: 640px) {
	.profile-modal-link {
		font-size: 32px;
		font-size: 2rem;
	}

	.profile-modal-link .instagram-text {
		margin-top: -10px;
	}
}


.profile-link {
	position: relative;
	transition: .3s;
}

.profile-link:hover,
.profile-link:focus {
	opacity: .7;
}

.profile-link::after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	border-bottom: 1px solid #444444;
}

@media screen and (min-width: 480px) {
	.profile-text {
		line-height: 2.2;
		font-size: 18px;
		font-size: 1.125rem;
	}
}

@media screen and (min-width: 640px) {
	.profile-textbox {
		margin-left: 30px;
	}

	.profile-text {
		margin-top: 0;
		font-size: 20px;
		font-size: 1.25rem;
	}

	.profile-text+.profile-text {
		margin-top: 20px;
	}

	.profile-imgbox {
		margin-top: 14px;
	}

	.profile-name .profession {
		font-size: 13px;
		font-size: .8125rem;
	}
}

@media screen and (min-width: 1200px) {
	.profile-modal-links {
		display: flex;
		margin-top: 30px;
	}

	.profile-modal-link {
		margin-top: 0 !important;
	}
}

.profile+.youtube-block {
	margin-top: 60px;
}

@media screen and (min-width: 480px) {
	.profile+.youtube-block {
		margin-top: 80px;
	}
}

@media screen and (min-width: 640px) {
	.profile+.youtube-block {
		margin-top: 100px;
	}
}


/* text-list */
.text-list {
	margin-top: 20px;
	list-style: none;
}

@media screen and (min-width: 640px) {
	.text-list {
		margin-top: 30px;
	}
}

.text-list li {
	line-height: 2;
	font-size: 16px;
	font-size: 1rem;
	letter-spacing: .02em;
}

@media screen and (min-width: 480px) {
	.text-list li {
		font-size: 17px;
		font-size: 1.0625rem;
	}
}

@media screen and (min-width: 640px) {
	.text-list li {
		font-size: 18px;
		font-size: 1.125rem;
	}
}

/* 2021.8.24 - 追加css */
.fade {
	transition: opacity .2s;
	display: block;
}

.fade:hover,
.fade:focus {
	opacity: .6;
}

.title-p1 {
	font-size: 20px;
	font-size: 1.25rem;
	letter-spacing: .06em;
	line-height: 1.5;
	text-align: center;
	border-top: 1px solid #707070;
	border-bottom: 1px solid #707070;
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	max-width: 1200px;
	margin: 0 auto;
	box-sizing: content-box;
	padding: 10px 0 12px;
	width: calc(100% - 30px);
}

.title-p2 {
	text-align: center;
	max-width: 950px;
	margin: 0 auto;
	width: calc(100% - 30px);
	box-sizing: border-box;
	color: #fff;
	padding: 8px 0 10px;
	font-size: 24px;
	font-size: 1.5rem;
	font-weight: 900;
	font-family: 'Noto Serif JP', sans-serif;
	margin-bottom: 20px;
}

.title-p2.pink {
	background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 83, 127, 1) 50%, rgba(255, 255, 255, 1) 100%);
}

.title-p2.orange {
	background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 183, 69, 1) 50%, rgba(255, 255, 255, 1) 100%);
}

.title-p2.blue {
	background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(93, 206, 255, 1) 50%, rgba(255, 255, 255, 1) 100%);
}

.title-p3 {
	background: #43BABA;
	color: #fff;
	text-align: center;
	font-size: 22px;
	font-size: 1.375rem;
	line-height: 1.4;
	font-weight: 700;
	padding: 7px 0 11px;
}

.title-p4 {
	margin-top: 40px;
	margin-bottom: 20px;
	border-bottom: 1px solid #1091A8;
	border-left: 10px solid #1091A8;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	font-size: 22px;
	font-size: 1.375rem;
	letter-spacing: .06em;
	line-height: 1.33;
	color: #1091A8;
	padding: 3px 0 5px 12px;
}

@media screen and (min-width: 640px) {
	.title-p1 {
		font-size: 40px;
		font-size: 2.5rem;
		line-height: 1;
		padding: 14px 0 18px;
		width: 100%;
	}

	.title-p2 {
		margin-bottom: 40px;
		padding: 11px 0 14.6px;
		font-size: 34px;
		font-size: 2.125rem;
	}

	.title-p4 {
		font-size: 30px;
		font-size: 1.875rem;
	}
}

#intro {
	padding-top: 60px;
	padding-bottom: 30px;
	background: linear-gradient(145deg, rgba(252, 255, 246, 1) 0%, rgba(226, 252, 251, 1) 40%, rgba(224, 244, 251, 1) 60%, rgba(232, 235, 252, 1) 100%);
}

#intro .profile,
#intro .youtube-block,
#intro .text {
	max-width: 1200px;
}

#intro .text.caption {
	font-size: 10px;
	font-size: .625rem;
}

.intro-title {
	text-align: center;
	font-size: 29px;
	font-size: 1.8125rem;
	line-height: 1.3;
	font-family: "Noto Serif JP";
	font-weight: 600;
}

@media screen and (min-width: 640px) {
	#intro {
		padding-top: 100px;
	}

	#intro .text.caption {
		font-size: 15px;
		font-size: .9375rem;
	}

	.intro-title {
		font-size: 46px;
		font-size: 2.875rem;
	}
}

.img-block+.time {
	font-weight: 900;
	font-size: 18px;
	font-size: 1.125rem;
	letter-spacing: .08em;
	line-height: 1;
	display: flex;
	align-items: center;
	max-width: 950px;
	padding: 0 15px;
	margin: 20px auto 15px;
}

.img-block+.time .time-text {
	background-image: url(../img/time-bg.png);
	background-size: contain;
	background-repeat: no-repeat;
	width: 180px;
	height: 33.15px;
	display: flex;
	align-items: center;
	font-family: 'Noto Sans JP';
}

.img-block+.time .time-text span {
	line-height: 1;
	color: #fff;
	font-weight: 500;
	padding-left: 42px;
	font-size: 18px;
	font-size: 1.125rem;
	margin-top: -2px;
}

.text+.block-item {
	margin-top: 30px;
}

@media screen and (min-width: 640px) {
	.text+.block-item {
		margin-top: 50px;
	}

	.img-block+.time {
		margin-top: 15px;
	}

	.img-block+.time .time-text {
		width: 228px;
		height: 42px;
	}

	.img-block+.time .time-text span {
		padding-left: 54px;
		font-size: 22px;
		font-size: 1.375rem;
		margin-top: -3px;
	}
}

.block-item {
	position: relative;
	padding-bottom: 40px;
}

.block-item+.block-item {
	padding-top: 40px;
}

.block-item+.block-item::before {
	content: '';
	display: block;
	position: absolute;
	top: -1.5px;
	width: 110px;
	left: 50%;
	transform: translateX(-50%);
	height: 3px;
	background: #46D3CD;
}

.block-item+.title-p2 {
	margin-top: 40px;
}

.item-650 {
	margin-top: 40px;
}

.item-600 img {
	width: 100%;
}

.item-600+.text {
	margin-top: 15px;
}

.text+.item-600 {
	margin-top: 40px;
}

.point {
	margin-top: 40px;
	padding: 15px;
	background: #1091A8;
	color: #fff;
	border-radius: 10px;
}

.point-title {
	background: #fff;
	color: #1091A8;
	padding: 4px 26px 7px;
	border-radius: 35px 35px 35px 35px / 50px 50px 50px 50px;
	font-size: 19px;
	font-size: 1.1875rem;
	line-height: 1;
	letter-spacing: .06em;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	text-align: center;
}

.point-list {
	margin-top: 15px;
}

.point-text {
	font-size: 13px;
	font-size: .8125rem;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	line-height: 2;
	position: relative;
	padding-left: 1.5em;
}

.point-text::before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 6px;
	width: 1em;
	height: 1em;
	background: #fff;
	border-radius: 50%;
}

.point-text:nth-of-type(n+2) {
	margin-top: .5em;
}

.table {
	margin-top: 4px;
}

.table .row {
	display: flex;
}

.table .row:nth-of-type(n+2) {
	margin-top: 4px;
}

.table dt,
.table dd {
	font-size: 14px;
	font-size: .875rem;
	line-height: 1.5;
	padding: 10px 6px 12px;
	box-sizing: border-box;
}

.table dt {
	flex: 0 0 37.2%;
	max-width: 37.2%;
	background: #C9E7E8;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 500;
	text-align: center;
}

.table dd {
	margin-left: 4px;
	flex: 1 1 auto;
	background: #F2F7F7;
}


/* use */
.use {
	background: #fff;
	margin: 30px auto 0;
	padding: 30px 15px;
	width: 92%;
	box-sizing: border-box;
}

.use-title {
	font-size: 20px;
	font-size: 1.25rem;
	letter-spacing: .04em;
	line-height: 1.4;
	font-weight: 500;
	text-align: center;
}

.use-item {
	margin-top: 40px;
}

.use-item:first-of-type {
	margin-top: 0;
}

.use-item+.use-item {
	margin-top: 60px;
}

.use-item .imgbox {
	display: block;
}

.use-item .imgbox .product {
	margin: 0 auto;
	display: block;
}

.use-item .imgbox-1 .product {
	width: 63.799%
}

.use-item .imgbox-2 .product {
	width: 49.918%;
}

.use-item .imgbox-3 .product {
	width: 45.646%;
}

.use-item .imgbox-4 .product {
	width: 37.638%;
}

.use-item .imgbox-5 .product {
	width: 77.681%;
}

.use-item .product {
	width: 100%;
}

.use-item .logo {
	margin-left: auto;
	display: block;
}

.use-item .logo-gmaster {
	width: 26.923vw;
	max-width: 105px;
}

.use-item .logo-zeiss {
	width: 12.82vw;
	max-width: 50px;
}

.use-item .imgbox-1 .logo {
	margin-top: 8px;
}

.use-item .imgbox-2 .logo {
	margin-top: 23px;
}

.use-item .textbox {
	margin-top: 10px;
}

.use-item-text {
	font-size: 19px;
	font-size: 1.1875rem;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	margin-bottom: 12px;
}

.use-item-subtitle {
	font-size: 14px;
	font-size: .875rem;
	font-family: "Noto Serif JP", serif;
	font-weight: 300;
}

.use-item-name {
	font-size: 25px;
	font-size: 1.5625rem;
	font-weight: 700;
	font-family: "Noto Serif JP", serif;
}

.use-item-model {
	font-size: 14px;
	font-size: .875rem;
	font-weight: 300;
	margin-top: 4px;
}

.use-item-btns {
	margin-top: 20px;
	display: flex;
}

.use-item-btns .mod_btn {
	flex: 0 0 49.5%;
	max-width: 49.5%;
	width: 49.5%;
	min-width: 49.5%;
}

.use-item-btns .orange {
	margin-left: 2%;
}

.use-item-btns.last .orange {
	margin: 0 auto;
}

@media screen and (min-width: 640px) {
	.use-title {
		font-size: 28px;
		font-size: 1.75rem;
	}
}


#s3 .block {
	padding-bottom: 50px;
}

@media screen and (min-width: 640px) {
	#intro {
		padding-top: 100px;
		padding-bottom: 100px;
	}

	.block-item {
		padding-bottom: 50px;
	}

	.block-item+.block-item {
		padding-top: 50px;
	}

	.block-item+.title-p2 {
		margin-top: 120px;
	}

	.item-650 {
		margin-top: 60px;
	}

	.item-600+.text {
		margin-top: 25px;
	}

	.text+.item-600 {
		margin-top: 100px;
	}

	.point {
		margin-top: 60px;
		border-radius: 15px;
		padding: 40px;
	}

	.point-title {
		font-size: 30px;
		font-size: 1.875rem;
		border-radius: 50px;
		padding: 8px 0 11px;
	}

	.point-list {
		margin-top: 18px;
	}

	.point-text {
		font-size: 18px;
		font-size: 1.125rem;
	}

	.point-text::before {
		top: 10px;
	}

	.table dt,
	.table dd {
		font-size: 18px;
		font-size: 1.125rem;
		padding: 12px 15px 15px 10px;
	}

	.use {
		margin-top: 50px;
		padding: 60px 62px;
		width: 100%;
	}

	.use-item {
		display: flex;
		align-items: center;
		margin-top: 50px;
	}

	.use-item+.use-item {
		margin-top: 70px;
	}

	.use-item .imgbox {
		flex: 0 0 291px;
	}

	.use-item .imgbox-1 .product {
		width: 82.13%;
	}

	.use-item .imgbox-2 .product {
		width: 64.261%;
	}

	.use-item .imgbox-3 .product {
		width: 58.762%;
	}

	.use-item .imgbox-4 .product {
		width: 48.453%;
	}

	.use-item .imgbox-5 .product {
		width: 100%;
	}

	.use-item .imgbox-1 .logo {
		margin-top: 7px;
	}

	.use-item .imgbox-2 .logo {
		margin-top: 16px;
	}

	.use-item .imgbox-3 .logo {
		margin-top: 10px;
	}

	.use-item .textbox {
		flex: 1 1 auto;
		margin-left: 30px;
		margin-top: 0;
	}

	.use-item-btns {
		margin-top: 28px;
		justify-content: flex-end;
	}

	.use-item-btns.last {
		justify-content: flex-start;
	}

	.use-item-btns .mod_btn {
		flex: 0 0 178px;
		width: 178px;
		max-width: none;
		min-width: 0;
	}

	.use-item-btns.last .orange {
		margin-left: auto;
		margin-right: 0;
	}

	#intro .text {
		font-size: 20px;
		font-size: 1.25rem;
	}

	#s3 .block {
		padding-bottom: 0;
	}
}

#s4 {
	background: #D0EFF4;
	padding: 30px 15px;
}

#s4 img {
	width: 100%;
}

#s4 .title-p1 {
	font-size: 25px;
	font-size: 1.5625rem;
	font-weight: 600;
	margin: 0;
	width: 100%;
}

.s4-column {
	margin-top: 32px;
	display: flex;
	flex-wrap: wrap;
}

.s4-column-item:first-of-type {
	flex: 0 0 100%;
}

.s4-column-item:nth-of-type(n+2) {
	flex: 0 0 48%;
	margin-top: 15px;
}

.s4-column-item:last-of-type {
	margin-left: 4%;
}

.instagram-link {
	background: #fff;
	border: 2px solid #EDEDED;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 700;
	border-radius: 50px;
	height: 55px;
	max-width: 282px;
	margin: 18px auto 0;
}

.instagram-link::before {
	content: '';
	display: inline-block;
	margin-right: 12px;
	width: 32px;
	height: 32px;
	background-image: url(../img/icon-instagram.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}

.s4-comment .textbox {
	background: #fff;
	padding: 15px;
	font-family: 'Noto Serif JP', serif;
	font-weight: 500;
	line-height: 1.93;
	margin-top: 16px;
	border-radius: 10px;
}

@media screen and (min-width: 640px) {
	#s4 {
		padding: 70px 0;
	}

	.s4-inner {
		max-width: 1200px;
		margin: 0 auto;
	}

	.s4-column {
		flex-wrap: nowrap;
	}

	.s4-column-item {
		flex: 0 0 390px;
		max-width: 390px;
	}

	.s4-column-item:nth-of-type(n+2) {
		margin-top: 0;
		margin-left: 15px;
	}

	#s4 .btnbox {
		margin-top: 24px;
	}

	.instagram-link {
		margin-top: 0;
		font-size: 19px;
	}

	.s4-comment {
		display: flex;
		align-items: center;
		margin-top: 24px;
	}

	.s4-comment .imgbox {
		flex: 0 0 180px;
		max-width: 180px;
	}

	.s4-comment .textbox {
		margin-top: 0;
		margin-left: 40px;
		position: relative;
		padding: 30px;
		font-size: 20px;
		font-size: 1.25rem;
	}

	.s4-comment .textbox::before {
		content: '';
		position: absolute;
		left: -24px;
		top: 50%;
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 24px 25px 24px 0;
		border-color: transparent #ffffff transparent transparent;
		transform: translateY(-50%);
	}
}

#banner {
	padding: 40px 15px 60px;
	background: #fff;
}

#banner img {
	width: 100%;
}

.banner-title {
	font-family: 'Noto Serif JP', serif;
	font-weight: 500;
	letter-spacing: .04em;
	font-size: 19px;
	font-size: 1.1875rem;
	text-align: center;
}

.banner-link {
	margin-top: 20px;
}

.banner-link+.banner-link {
	margin-top: 60px;
}

.banner-text {
	margin-top: 25px;
	font-size: 14px;
	font-size: 1rem;
}

.banner-text+.banner-link {
	margin-top: 60px;
}

@media screen and (min-width: 640px) {
	#banner {
		padding-top: 60px;
	}

	.banner-inner {
		max-width: 950px;
		margin: 0 auto;
	}

	.banner-title {
		font-size: 28px;
		font-size: 1.75rem;
	}

	.banner-link {
		margin-top: 30px;
	}

	.banner-link+.banner-link {
		margin-top: 50px;
	}

	.banner-text {
		font-size: 18px;
		font-size: 1.125rem;
		margin-top: 20px;
	}

	.banner-text+.banner-link {
		margin-top: 50px;
	}
}

/* 2021.9.1追記 */

.video-text-btn {
	position: relative;
	font-size: 10px;
	font-size: .625rem;
	color: #333333;
}

.video-text-btn::before {
	content: '';
	position: absolute;
	bottom: 1px;
	left: 0;
	width: 100%;
	height: 1px;
	background: #333333;
}

.video-meta {
	margin-top: 15px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.video-meta .text.caption {
	margin-top: 10px;
}

@media screen and (min-width: 640px) {
	.video-text-btn {
		font-size: 17px;
		font-size: 1.0625rem;
	}

	.video-meta {
		flex-direction: row;
		justify-content: space-between;
	}

	.video-meta .video-text-btn {
		flex: 0 0 auto;
		margin-top: 0;
	}

	.video-meta .text.caption {
		margin-top: 0;
		margin-left: 20px;
		flex: 1 1 auto;
	}
}

.btnbox+.text {
	margin-top: 20px;
}

.s3-read {
	background-image: url(../img/s3-read-bg-sp.jpg);
	background-size: cover;
	background-position: center center;
	padding: 25px 0 40px;
	display: flex;
	align-items: center;
}

.s3-read-inner {
	max-width: 950px;
	margin: 0 auto;
	padding: 0 15px;
}

.s3-read .text {
	width: 100%;
}

.s3-read .text+.text {
	margin-top: 40px;
}

.s3-read-title {
	text-align: center;
}

.s3-read-title-imgbox {
	border-radius: 50%;
	width: 110px;
	height: 110px;
	overflow: hidden;
	margin: 0 auto;
}

.s3-read-title-imgbox img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.s3-read-title-text {
	font-size: 20px;
	font-size: 1.25rem;
	margin-top: 16px;
}

.s3-read-title+.text {
	margin-top: 30px;
}

@media screen and (min-width: 640px) {
	#s3 {
		padding-bottom: 120px;
	}

	.s3-read {
		background-image: url(../img/s3-read-bg.jpg);
		min-height: 664px;
		padding: 0;
	}

	.s3-read-title {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.s3-read-title-imgbox {
		width: 128px;
		height: 128px;
		margin: 0;
	}

	.s3-read-title-text {
		font-size: 36px;
		font-size: 2.25rem;
		margin-top: 0;
		margin-left: 40px;
	}

	.s3-read-title+.text {
		margin-top: 50px;
	}
}

@media all and (-ms-high-contrast:none) and (min-width: 640px) {

	*::-ms-backdrop,
	.s3-read-inner {
		padding-top: 80px;
	}

	/* IE11 */
}