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

.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 */



/*///// styles /////*//* 230823 */
/*///// basic /////*/
/* basic style */
@media screen and (min-width: 640px) {
body {min-width: 1260px;}
}

.no-js .lazyparent {display: none;}
.no-js img.mod__lazy {display: none;}
article {
	color: #333333;
	font-family:"游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	font-weight: normal;
}

/*///// Footer /////*/
footer {
	background: #fff;
}
.footer-inner{
	margin: 0 auto;
	max-width: 1200px;
	width: 94.0594059%;
}

/*///// movie /////*/
/* 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;
}
.youtube-block.block-with-margin{margin-bottom: 60px}

@media screen and (min-width: 640px) {
.youtube-block+.text,
.youtube-block+.title {
	margin-top: 50px;
}
.youtube-block.block-with-margin{margin-bottom: 80px}

}

/* video meta */
/* 2021.9.1追記 */
.video-text-btn {
	position: relative;
	font-size: 0.75rem;
	color: #000!important;
	padding-bottom: 0.1rem;
}
.video-text-btn::before {
	content: '';
	position: absolute;
	bottom: 1px;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000;
}
.video-meta {
	margin-top: 10px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.video-meta .text.caption {
	margin-top: 10px;
}

@media screen and (min-width: 640px) {
	.video-text-btn {
		font-size: 17px;
		font-size: 1.0625rem;
		line-height: 1.2;
	}
	.video-meta {
		margin-top: 6px;
		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;
	}
}


/*///// common /////*/
/* 2021.8.24 - 追加css */
.fade {
	transition: opacity .2s;
	display: block;
}
.fade:hover,
.fade:focus {
	opacity: .6;
}

/*///// wrap basic /////*/
/* section */
.section {background: #fff;}
.section.bg-col-lightgray {
	background: #F5F5F5;
}
.section.bg-col-type1 {
	background-image: url("../img/CR_cinematic_vlog_bg_01.svg");
	background-size: cover;
}
.section.bg-col-type2 {
	background-image: url("../img/CR_cinematic_vlog_bg_02.svg");
	background-size: cover;
}

@media screen and (max-width: 640px) {
.section {padding-bottom: 80px;}
/* in section */
.atc-outer{
	margin: 0 20px;
}
.atc-inner{
	margin: 0 auto;
}
.bnn-inner{
	margin: 0 20px 90px;
}
.img-box img.sp{
	width: 100%;
	height: auto;
}

}

@media screen and (min-width: 641px) {
.section {padding-bottom: 120px;}
/* in section */
.atc-outer{
	width: 1200px;
	margin: 0 auto;
}
.atc-inner{
	width: 950px;
	margin: 0 auto;
}
.bnn-inner{
	width: 950px;
	margin: 0 auto 120px;
}

}



/*///// mainvisual /////*/
.mainvisual {
	overflow: hidden;
	margin: 0 auto;
}
.mainvisual h1 {
	margin: 0 auto;
	max-width: 1200px;
	line-height: 0;
}
/* img size ctrl */
.mainvisual h1 img {
	margin: 0 0 0 -30%;
	width: 160%;
	height: auto;
}
.main-nav{
	display: block;
	background-color: #F5F5F5;
}

@media(max-width:640px) {
.mainvisual h1 img {
	margin: 0 0 0 0;
	width: 100%;
}

}

@media(min-width:1920px){/* img size ctrl */
.mainvisual h1 {
	max-width: none;
}
.mainvisual h1 img {
	margin: 0;
	width: 100%;
	height: auto;
}

}


/*///// main nav /////*/
.mv-caption {
	flex: 0 0 auto;
	color: #333333;
}
.mv-caption-inner {
	text-align: center;
	box-sizing: border-box;
}
.mv-caption-text {
	font-weight: normal;
}
@media screen and (max-width: 640px) {
.mv-caption {
	padding: 36px 0 0;
	margin-bottom: 50px;
}
.mv-caption-inner {
	width: 100%;
	padding: 0 20px;
}
.mv-caption-text {
	font-size: 1rem;
	line-height: 1.6875;
}

}

@media screen and (min-width: 641px) {
.mv-caption {
	padding: 34px 0 0;
	margin-bottom: 68px;
}
.mv-caption-inner {
	max-width: 1200px;
	padding: 0 15px;
	margin: 0 auto;
}
.mv-caption-text {
	font-size: 1.375rem;
	line-height: 1.818;
}

}

/* page navigation */
.page-nav-wrapper {}
.page-nav {}
.page-nav-item {
	box-sizing: border-box;
}
.page-nav-link {
	margin: 0 auto;
	height: 100%;
	box-sizing: border-box;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #333!important;
	background-color: #fff;
	border: 1px solid #333;
	font-size: 1.375rem;
	font-weight: bold;
}
.page-nav-link:hover {
	background-color: #D9F8FF;
	color: #333;
	transition: 0.3s;
}


@media screen and (max-width: 640px) {
.page-nav-wrapper {
	padding-bottom: 50px;
}
.page-nav {
	margin: 0 20px;
}
.page-nav-item {
	height: 55px;
	margin-bottom: 10px;
	background-color: #006835;
}
.page-nav-link {font-size: 1rem;}

}

@media screen and (min-width: 641px) {
.page-nav-wrapper {
	padding-bottom: 80px;
	max-width: 1200px;
    margin: 0 auto;
}
.page-nav {
	display: flex;
    margin: 0 auto;
    flex-wrap: nowrap;
    max-width: 1200px;
}
.page-nav-item {
	height: auto;
	margin-bottom: 0px;
	width: 49.2%;
}

li.page-nav-item:not(:last-child) {
	margin-right: 0.76%;
}
.page-nav-link {
	height: 75px;
}

}


/*///// article title /////*/
h2 {text-align: center;}
h3 {font-weight: bold;}

.ttl-cts-attraction{background-color: #1F1F1F;}
.attraction-ttl-box{text-align: center;}
.attraction-ttl-box h3{font-weight: bold;}

.question-ttl{font-weight: bold;}
.question-ttl img{}
.answer-ttl{font-weight: bold;}
.answer-ttl img{}

.recommendations-ttl-box{
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
}
.recommendations-ttl:before{
	content: "";
	width: 36px;
	height: 36px;
	border-top: 2px solid #006835;
	border-left: 2px solid #006835;
	position: relative;
}
.recommendations-ttl:after{
	content: "";
	width: 36px;
	height: 36px;
	border-bottom: 2px solid #249CD3;
	border-right: 2px solid #249CD3;
	display: block;
	position: relative;
}
p.recommendations-ttl{
	line-height: 1;
	font-weight: bold;
	display: flex;
	align-items: center;
	position: relative;
}
.recommendations-ttl-descript{
	font-weight: bold;
}

@media screen and (max-width: 640px) {
h2 {}
h3 {
	font-size: 1rem;
	line-height: 1.5625;
}
.ttl-cts-attraction{
	margin-bottom: 40px;
}
.ttl-cts-attraction img{
	width: 100%;
}
.attraction-ttl-box h3{
	font-size: 1.25rem;
	margin-bottom: 50px;
	line-height: 1.5;
}

.question-ttl{
	display: flex;
	align-items: center;
	font-size: 0.875rem;
	line-height: 1.785;
}
.answer-ttl{
	display: flex;
	align-items: flex-start;
	font-size: 0.875rem;
}
.answer-ttl.answer-ttl-only{
	margin-left: 54px;
	margin-bottom: 1.6rem;
}
.question-ttl img{
	margin-right: 14px;
	width: 40px;
	height: auto;
}
.answer-ttl img{
	margin-right: 14px;
	width: 40px;
	height: auto;
}
.question-box{
	margin-bottom: 40px;
}
.answer-box{
	margin-bottom: 30px;
}
.answer-box p{
	font-size: 0.875rem;
	padding-left: 54px;
	line-height: 1.784;
	position: relative;
	top: -1.3rem;
}

.recommendations-ttl-box{
	flex-direction: column;
	margin-bottom: 10px;
	text-align: center;
}
.recommendations-ttl-box h3{
	font-size: 1.25rem;
	line-height: 1.5;
}
.recommendations-ttl:before{
	margin: 0 -1.2rem auto;
}
.recommendations-ttl:after{
	margin: auto -1.2rem 0;
}
p.recommendations-ttl{
	font-size: 1.125rem;
	margin-bottom: 10px;
	height: 50px;
}
.recommendations-ttl-descript{
	font-size: 1.25rem;
	line-height: 1.5;
}
h3.section-title{
	font-size: 1.25rem;
	font-weight: normal;
}

}

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

h2 {}
h3 {
	font-size: 1.875rem;
	line-height: 1.333;
}
.ttl-cts-attraction{
	margin-bottom: 100px;
}
.attraction-ttl-box h3{
	font-size: 1.875rem;
	margin-bottom: 90px;
}

.question-ttl{
	display: flex;
	align-items: flex-end;
	font-size: 1.125rem;
}
.answer-ttl{
	display: flex;
	align-items: flex-end;
	font-size: 1.125rem;
	margin-bottom: 0.5rem;
}
.answer-ttl.answer-ttl-only{
	margin-left: 90px;
}
.question-ttl img{
	margin-right: 36px;
}
.answer-ttl img{
	margin-right: 36px;
}
.question-box{
	margin-bottom: 60px;
}
.answer-box{
	margin-bottom: 90px;
}
.answer-box p{
	font-size: 1.125rem;
	padding-left: 90px;
	line-height: 1.944;
	margin-bottom: 20px;
}

.recommendations-ttl-box{
	margin-bottom: 60px;
}
.recommendations-ttl-box h3{
	font-size: 1.875rem;
}
.recommendations-ttl:before{
	margin: 0 0 auto;
}
.recommendations-ttl:after{
	margin: auto 0 0;
}
p.recommendations-ttl{
	font-size: 1.5625rem;
	margin-right: 50px;
	height: 65px;
}
.recommendations-ttl-descript{
	font-size: 1.875rem;
	line-height: 1.333;
}
h3.section-title{
	font-size: 2.6875rem;
	font-weight: normal;
}

}



/*///// article /////*/

/* hint */
.hint-ttl-box{
	position: relative;
	border: 1px solid #333;
}

@media screen and (max-width: 640px) {
/* annotation */
.note-time{
	font-size: 0.875rem;
	font-weight: bold;
	line-height: 1;
	margin-top: 10px;
}
.note-time img{
	height: 0.75rem;
}

/* hint */
.hint-ttl-box{
	padding: 25px 25px 10px;
	text-align: center;
	margin-bottom: 56px;
}
.hint-ttl-box p{
	text-align: left;
	font-size: 0.875rem;
	line-height: 1.785;
	margin-bottom: 16px;
}
img.icon-hint{
	position: relative;
	width: 40px;
	height: auto;
	margin-bottom: 20px;
}
.hint-ttl{
	font-size: 1.125rem;
	font-weight: bold;
	text-align: center;
	margin-bottom: 20px;
	line-height: 1.555;
}
.hint-notes{
	font-size: 0.75rem!important;
	line-height: 1.666!important;
}
.hint-ttl-intype{
	font-size: 1.125rem;
	font-weight: bold;
	text-align: center;
	margin-top: 30px;
	margin-bottom: 30px;
	line-height: 1.555;
}

}

@media screen and (min-width: 641px) {
/* annotation */
.note-time{
	font-size: 1rem;
	font-weight: bold;
	line-height: 1;
	margin-top: 20px;
}
.note-time img{
	height: 0.875rem;
}

/* hint */
.hint-ttl-box{
	padding: 40px 70px 14px;
	margin-bottom: 100px;
}
.hint-ttl-box p{
	text-align: left;
	font-size: 1.125rem;
	line-height: 1.944;
	margin-bottom: 16px;
}
img.icon-hint{
	position: absolute;
	top: 20px;
	left: 20px;
}
.hint-ttl{
	font-size: 1.375rem;
	font-weight: bold;
	text-align: center;
	margin-bottom: 20px;
}
.hint-notes{
	font-size: 0.875rem!important;
	line-height: 1.785!important;
}
.hint-ttl-intype{
	font-size: 1.375rem;
	font-weight: bold;
	text-align: center;
	margin-bottom: 20px;
	margin-top: 44px;
}

}


/*///// info button /////*/
.use-item-btns .mod_btn {
	max-width: 49.5%;
	min-width: 49.5%;
}
a.review-link{
	text-decoration: underline;
}

/* info button content */
.mod_btn {
	color: #fff !important;
	background: #666666;
	font-size: 13px;
	font-size: 0.875rem;
	text-align: center;
	padding: 9px 8px 10px;
	display: inline-block;
	min-width: 186px;
	box-sizing: border-box;
	position: relative;
	transition: .3s;
	font-weight: normal;
	font-family: 'Noto Sans JP', sans-serif;
}

.mod_btn::before {
	content: '';
	display: block;
	position: absolute;
	border-style: solid;
	border-width: 5.5px 0 5.5px 7.2px;
	border-color: transparent transparent transparent #fff;
	top: 50%;
	left: 16px;
	transform: translateY(-50%);
}
.mod_btn:hover {
	background: #8c8c8c;
}
.mod_btn.large {
	min-width: 226px;
}
.mod_btn.orange {
	background: #e06909;
}
.mod_btn.orange:hover {
	background: #f7913e;
}
/* info button color */
.mod_btn.btncol-info {
	background: #2D75C7;
}
.mod_btn.btncol-info:hover {
	background: #5492D8;
}
.mod_btn.btncol-buy {
	background: #D24615;
}
.mod_btn.btncol-buy:hover {
	background: #EB6D41;
}
.mod_btn.btncol-compatibleproduct {
	background: #606060;
}
.mod_btn.btncol-compatibleproduct:hover{
	background: #808080;
}

@media screen and (max-width: 640px) {
/* info button flame */
.use-item-btns {
	display: flex;
	justify-content: center;
	justify-content: space-between;
	margin-top: 26px;
	margin-bottom: 4px;
}

.use-item-btns a {
	margin-right: 0px;
}
.use-item-btns a:nth-child(2) {
	margin-bottom: 0px;
}
.use-item-btns .mod_btn {
	min-width: 48.6%;
}
.use-item-btns .mod_btn {
	box-sizing: border-box;
}
a.review-link{
	font-size: 0.75rem;
}

}

@media screen and (min-width: 641px) {
.use-item-btns {
	display: flex;
	margin-top: 40px;
	margin-bottom: 14px;
}
.use-item-btns a {
	margin-right: 30px;
}
.use-item-btns a:nth-child(3) {
	margin-right: 0px;
}
.use-item-btns .mod_btn {
	flex: 0 0 186px;
	width: 186px;
	max-width: none;
	min-width: 0;
	text-indent: 1em;
}
a.review-link{
	font-size: 0.875rem;
}

}



/*///// profile /////*/
.profile-box{
	display: flex;
}
.profile-title{
	text-align: left;
	font-weight: bold;
}
.profile-detail-pc,.profile-detail-sp{}
.profile-box-overview{
max-width: 80%;
}

@media screen and (max-width: 640px) {
.profile-box-wrap{margin-bottom: 50px;}
.profile-box{
	margin-bottom: 18px;
}

.profile-box-photo{
	margin-right: 17px;
}
.profile-title{
	font-size: 0.875rem;
}
.profile-title span{
	font-size: 1.25rem;
}
.profile-detail-pc{display: none;}
.profile-detail-sp{
	font-size: 0.875rem;
	font-weight: normal;
	margin-bottom: 0.6rem;
	line-height: 1.7857;
}

}

@media screen and (min-width: 641px) {
.profile-box-wrap{}
.profile-box{
	margin-bottom: 50px;
}
.profile-box-photo{
	margin-right: 30px;
}
.profile-title{
	font-size: 1.375rem;
	margin-bottom: 0.6rem;
}
.profile-title span{
	font-size: 2.1875rem;
}
.profile-detail-pc{
	font-size: 1.125rem;
	line-height: 1.94;
	font-weight: normal;
	margin-bottom: 1rem;
}
.profile-detail-sp{display: none;}

}



/*///// products /////*/

.products-box{
	display: flex;
}
.products-photo{
	position: relative;
}
a.text-link{
	text-decoration: underline;
	line-height: 2;
	margin: 0 0 1rem;
}
a.text-link:hover{
	opacity: 0.5;
	transition: 0.3s;
}
a.text-link-bold{font-weight: bold;}
.profile-sns{}
.profile-sns a{
	display: flex;
	align-items: center;
}

@media screen and (max-width: 640px) {
.products-box{
	display: flex;
	flex-direction: column;
	margin-bottom: 30px;
}
.p-box-1{margin-bottom: 30px;}
.p-box-2{margin-bottom: 30px;}
.p-box-3{margin-bottom: 20px;}
.p-box-4{margin-bottom: 30px;}

.products-detail{}

.p-photo-1{width: 80%; height: auto; position: relative; left:11.4%; margin-top: 6.3%; margin-bottom: 6.3%;}
.p-photo-2{width: 67.7%; height: auto; position: relative; left:2.3%;}
.p-photo-3{width: 77.7%; height: auto; position: relative; left:-2.6%;}
.p-photo-4{width: 83.1%; height: auto; position: relative; left:-0.3%;}
.lens-logo-1{}
.lens-logo-2{width: 12.3%; height: auto; position: absolute; top:29.2vw; right:17.4%;}
.lens-logo-3{width: 26.3%; height: auto; position: absolute; top:36.2vw; right:3.4%;}
.lens-logo-4{width: 26.3%; height: auto; position: absolute; top:40.3vw; right:3.4%;}
.products-1{}
.products-2{margin-top: 11px;}
.products-3{margin-top: 9px;}
.products-4{margin-top: 11px;}
.products-ttl{
	font-size: 0.875rem;
	font-weight: bold;
	line-height: 1.428;
	margin-bottom: 0.6rem;
}
.products-notes{
	font-size: 0.75rem;
	margin-bottom: 0.6rem;
}
.products-name{
	font-size: 0.875rem;
	font-weight: bold;
	margin-bottom: 0.4rem;
}
.profile-detail-pc.profile-sns{
	display: none;
}
.profile-detail-sp.profile-sns{
	display: flex;
	flex-wrap: wrap;
}
.profile-sns img{
	display: flex;
    margin: 0.1rem 35px 0 0;
}
img.icon-link-window{
	height: 0.6rem;
	vertical-align: middle;
	margin: auto 0 auto 0.4rem;
}
img.icon-link-window-in-tex{
	height: 1rem;
	vertical-align: middle;
	margin: auto 0.4rem auto 0.4rem;
}

}

@media screen and (min-width: 641px) {
.products-box{
	justify-content: space-between;
	margin-bottom: 130px;
}
.p-box-1{margin-bottom: 86px;}
.p-box-2{margin-bottom: 86px;}
.p-box-3{margin-bottom: 59px;}
.p-box-4{margin-bottom: 110px;}

.lens-logo{}
.products-detail{
	width: 532px;
}
.p-photo-1{position: relative; left:-14px;}
.p-photo-2{position: relative; left:47px;}
.p-photo-3{position: relative; left:-7px;}
.p-photo-4{position: relative; left:-33px;}
.lens-logo-1{}
.lens-logo-2{position: absolute; bottom:14px; left:277px;}
.lens-logo-3{position: absolute; bottom:12px; left:228px;}
.lens-logo-4{position: absolute; bottom:12px; left:228px;}
.products-1{padding-top: 60px;}
.products-2{padding-top: 22px;}
.products-3{padding-top: 37px;}
.products-4{padding-top: 64px;}
.products-ttl{
	font-size: 1.125rem;
	font-weight: bold;
	line-height: 1.666;
}
.products-notes{
	font-size: 0.875rem;
}
.products-name{
	font-size: 1.3125rem;
	font-weight: bold;
}
.profile-detail-pc.profile-sns{
	display: flex;
}
.profile-detail-sp.profile-sns{
	display: none;
}
.profile-sns img{
	display: inline-block;
	display: flex;
	height: 40px;
	align-items: center;
	margin: 0 60px 0 0.5rem;
	transform: 0.3s;
	opacity: 1;
}

img.icon-link-window{
	height: 1rem;
	vertical-align: middle;
	margin: auto 1.8rem auto 0.4rem;
}
img.icon-link-window-in-tex{
	height: 1rem;
	vertical-align: middle;
	margin: auto 0.4rem auto 0.4rem;
}

}


/*///// banner area /////*/
/* counter style */
#Academy,#Plaza{padding: 0;}

/* title bar design */
.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,.post-banner img,.guide-banner img{
	width: 100%;
	height: auto;
}
/* title bar in logo */
.article-heading__txt .ac-w {
	max-width: 227px;
}
.article-heading__txt .ca-w {
	max-width: 114px;
}
/* title bar font size */
.academy-recommend__heading span {
	font-size: 0.8em;
}
/* banner before title */
.academy-ttl{
	font-family: Meiryo, sans-serif;
	letter-spacing: 0.04rem;
	font-weight: normal;
	text-align: center;
}
.plaza-ttl{
	font-family: Meiryo, sans-serif;
	font-weight: bold;
	text-align: center;
	border-bottom: 1px solid #333333;
	margin-bottom: 27px;
}
.plaza-txt{
	font-family: Meiryo, sans-serif;
	font-weight: normal;
}
.tex-up{
	vertical-align: super;
}

@media screen and (max-width: 640px) {
.article-heading {
	margin-bottom: 60px;
}
/* annotation */
.banner-note{
	font-size: 0.875rem;
	line-height: 1.785;
	font-weight: normal;
}
/* banner before title */
.academy-ttl{
	font-size: 1.375rem;
	line-height: 1.4;
	margin-bottom: 20px;
}
.plaza-ttl{
	font-size: 1.375rem;
	line-height: 1.4;
	letter-spacing: 0.04rem;
}
.plaza-txt{
	font-size: 1rem;
	line-height: 1.5;
	margin-bottom: 27px;
}
.tex-up{
	font-size: 0.375rem;
}

.super{
	vertical-align: 40%;
	font-size: 0.7rem;
	padding-right:0.2rem;

}
/* enquete */
.btn-box {
	max-width: 950px;
	width: 93.75%;
	margin: 0 auto;

}
.btn-box a{
	font-weight: bold!important;
}
.inner{
	padding: 0 20px;
}

/* unique */
.mb-narrow{
	margin-bottom: -5px!important;
}
.mb-narrow-unique{
	margin-bottom: 10px!important;
}
.mb-narrow-unique-2{
	margin-bottom: 10px!important;
}
.p-margin{
	margin-bottom: 20px;
}


}

@media screen and (min-width: 641px) {
.article-heading {
	margin-bottom: 80px;
}
/* annotation */
.banner-note{
	font-size: 1.125rem;
	line-height: 1.666;
	font-weight: normal;
}
/* banner before title */
.academy-ttl{
	font-size: 1.75rem;
	line-height: 1;
	margin-bottom: 54px;
}
.plaza-ttl{
	font-size: 1.75rem;
	line-height: 1.4285;
	letter-spacing: 0.04rem;
}
.plaza-txt{
	font-size: 1.125rem;
	line-height: 1.5;
	margin-bottom: 46px;
}
.tex-up{
	font-size: 0.5rem;
}

.super{
	vertical-align: 50%;
	font-size: 0.8rem;
	padding-right:0.2rem;

}
/* enquete */
.btn-box {
	max-width: 950px;
	width: 93.75%;
	margin: 0 auto;

}
.btn-box a{
	font-weight: bold!important;
}

/* unique */
.mb-narrow{
	margin-bottom: 30px!important;
}
.mb-narrow-unique{
	margin-bottom: 50px!important;
}
.mb-narrow-unique-2{
	margin-bottom: 30px!important;
}
.p-margin{
	margin-bottom: 20px;
}


}


/*///// unique control /////*/
.mb10{margin-bottom: 10px;}
.mb80{margin-bottom: 80px;}
.mb200{margin-bottom: 200px;}

@media(max-width:640px) {
/* unique margin control */
.img-box.u-photo-s2{margin-bottom: 20px;}
.img-box.u-img-s1{}
.img-box.u-img-s2{margin-bottom: 12px;}
.img-box.u-img-s3{margin-bottom: 40px;}
.img-box.u-img-pp{margin-bottom: 24px;}
.img-box.u-img-fq{margin-bottom: 57px;}
.img-box.u-img-pf{margin-bottom: 70px;}
.img-box.u-photo-s3{margin-bottom: 29px;}
.img-box.u-photo-s4{margin-bottom: 31px;}
.recommendations-ttl-box.r-ttl-01{margin-bottom: 50px;}
.recommendations-ttl-box.r-ttl-02{}
.recommendations-ttl-box.r-ttl-03{margin-top: 70px;margin-bottom: 33px;}
.mb-inbanner{margin-bottom: 40px}

/*///// style counter /////*/
/* all.min.css > basic.min.css > html font-size:87.5% */
html{font-size: 100%!important; line-height: initial;}

}

@media(min-width:641px) {
/* unique margin control */
.img-box.u-photo-s2{margin: 0 75px 0px;}
.img-box.u-img-s1{margin-bottom: 10px;}
.img-box.u-img-s2{margin-bottom: 40px;}
.img-box.u-img-s3{margin-bottom: 60px;}
.img-box.u-img-pp{margin-bottom: 40px;}
.img-box.u-img-fq{margin-bottom: 100px;}
.img-box.u-img-pf{margin-bottom: 90px;}
.img-box.u-photo-s3{margin: 0 75px 0px;}
.img-box.u-photo-s4{margin: 0 75px 0px;}
.recommendations-ttl-box.r-ttl-01{margin-bottom: 90px;}
.recommendations-ttl-box.r-ttl-02{}
.recommendations-ttl-box.r-ttl-03{margin-bottom: 54px!important;}
.mb-inbanner{margin-bottom: 34px}

}
