@charset "UTF-8";
/*
 * cmn_layout.css
 */
/* ==========================================================
!HTML5 elements
========================================================== */
nav,
main,
section,
aside,
article {
	display: block;
}

figure,
figcaption {
	margin: 0;
	padding: 0;
}

/* ==========================================================
!Reseting
========================================================== */
/* 全ての要素のbox-sizingをデフォルトでborder-boxにする */
:root {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

*,
::before,
::after {
	border-width: 0;
	border-style: solid;
}

html {
	font-size: 62.5%;
}

body {
	position: relative;
	color: #434241;
	font-size: 16px;
	font-size: 1.6em;
	line-height: 1.75;
	-webkit-text-size-adjust: none;
	   -moz-text-size-adjust: none;
	    -ms-text-size-adjust: none;
	        text-size-adjust: none;
	background: #ffffff none;

	overflow-scrolling: touch;
}

body #feature {
	font-family: Noto Sans CJK JP !important;
	text-align: justify;
}

/* Hack for Safari 7.1-8.0 */
_::-webkit-full-page-media,
_:future,
:root body {
	-webkit-font-feature-settings: "pkna";
	        font-feature-settings: "pkna";
}

body,
div,
pre,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
th,
td {
	margin: 0;
	padding: 0;
}

input,
textarea {
	margin: 0;
	font-size: 100%;
}

label {
	cursor: pointer;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 100%;
}

fieldset,
img {
	border: 0;
}

img {
	height: auto;
	vertical-align: middle;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
	font-weight: normal;
	font-style: normal;
}

ol,
ul {
	list-style: none;
}

caption,
th {
	text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
	font-weight: normal;
}

q:after,
q:before {
	content: "";
}

a,
input {
	/* outline: none; */
}

abbr,
acronym {
	border: 0;
}

/* ==========================================================
!Clearfix
========================================================== */
/* ==========================================================
!Layout
========================================================== */
html {
	overflow-y: scroll;
	/* 768px以上（タブレット） */
}

@media only screen and (min-width: 768px), print {
	html {
		overflow-x: hidden;
	}
}

@media print {
	html,
	html body {
		*zoom: 0.65;
	}
}

/* ==========================================================
!Gnavi
========================================================== */
/* メニューが開いた時のページ内スクロール打ち消し / h1ロゴのレイアウト */
/* 768px以上（タブレット） */
@media only screen and (min-width: 768px), print {
	html.click-custom {
		overflow-y: scroll;
	}
}

/* nav */
.hidden-nav {
	display: none;
}

.drawer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	position: relative;
	height: 13vw;
	padding: 0 1em;
}

.drawer .sp-logo {
	display: none !important;
	width: 20vw;
	margin-top: 1vw;
}

.drawer .navbar_toggle {
	position: absolute;
	left: 15px;
	z-index: 9999;
	-webkit-transform: translateY(5px);
	    -ms-transform: translateY(5px);
	        transform: translateY(5px);
}

.drawer .navbar_toggle .navbar_toggle_icon {
	display: block;
	position: relative;
	width: 8vw;
	height: 3px;
	background: #2f353d;
	        -o-transition: ease-out 0.2s;
	        transition: ease-out 0.2s;

	-webkit-transition: ease-out 0.2s;
}

.drawer .navbar_toggle .navbar_toggle_icon:nth-child(1) {
	top: 0;
}

.drawer .navbar_toggle .navbar_toggle_icon:nth-child(2) {
	margin: 4px 0;
}

.drawer .navbar_toggle .navbar_toggle_icon:nth-child(3) {
	top: 0;
}

.drawer .navbar_toggle .toggle-text {
	display: block;
	color: #2f353d;
	font-family: "Noto Serif JP", serif !important;
	font-size: 0.7rem;
	line-height: 2;
}

.drawer .navbar_toggle.open-nav .navbar_toggle_icon:nth-child(1) {
	top: 6.5px;
	        -ms-transform: rotate(45deg);
	            transform: rotate(45deg);

	-webkit-transform: rotate(45deg);
}

.drawer .navbar_toggle.open-nav .navbar_toggle_icon:nth-child(2) {
	opacity: 0;
	        -ms-transform: translateY(-50%);
	            transform: translateY(-50%);

	-webkit-transform: translateY(-50%);
}

.drawer .navbar_toggle.open-nav .navbar_toggle_icon:nth-child(3) {
	top: -7.5px;
	        -ms-transform: rotate(-45deg);
	            transform: rotate(-45deg);

	-webkit-transform: rotate(-45deg);
}

nav.fixed-nav {
	position: relative;
	width: 100%;
	height: 13vw;
	font-family: Noto Sans CJK JP !important;
	background: #ffffff;
}

nav.fixed-nav.transform-horizontally {
	position: fixed;
	top: 0;
	z-index: 13;
}

nav.fixed-nav.transform-horizontally .sp-logo {
	display: block !important;
}

nav.fixed-nav .menu {
	position: relative;
	z-index: 2000;
	height: 100vh;
	background: #2f353d;
	        -ms-transform: translateX(-100%);
	            transform: translateX(-100%);
	        -o-transition: ease-out 0.5s;
	        transition: ease-out 0.5s;

	-webkit-transform: translateX(-100%);
	-webkit-transition: ease-out 0.5s;
}

nav.fixed-nav .menu ul li {
	padding: 20px 6% 20px 2.5%;
	border-bottom: 1px solid #24292f;
}

nav.fixed-nav .menu ul li a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	color: #ffffff;
}

nav.fixed-nav .menu ul li a img {
	width: 15.5vw;
	max-width: 100px;
}

nav.fixed-nav .menu ul li a .menu-numbers {
	position: relative;
	bottom: -23px;
	left: -1.5vw;
	color: #898d92;
	font-family: "Noto Serif JP", serif !important;
	font-size: 4vw;
}

nav.fixed-nav .menu ul li a .menu-text {
	margin-left: 4%;
	font-size: 4vw;
	line-height: 1.4;
}

nav.fixed-nav .menu.open-nav {
	overflow-y: hidden;
	        -ms-transform: translateX(0);
	            transform: translateX(0);

	-webkit-overflow-scrolling: touch;
	-webkit-transform: translateX(0);
}

/* 768px以上（タブレット） */
@media only screen and (min-width: 768px), print {
	.hidden-nav {
		        -ms-transform: translateY(-173px);
		            transform: translateY(-173px);

		-webkit-transform: translateY(-173px);
	}
	.hidden-nav p {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		height: 80px;
	}
	.hidden-nav p img {
		height: 55px;
	}
	.drawer .navbar_toggle .navbar_toggle_icon {
		width: 42px;
	}
	.drawer .navbar_toggle .navbar_toggle_icon:nth-child(2) {
		margin: 8px 0;
	}
	.drawer .navbar_toggle .toggle-text {
		font-size: 0.8rem;
	}
	.drawer .navbar_toggle.open-nav .navbar_toggle_icon:nth-child(3) {
		top: -14.5px;
	}
	/* nav */
	nav.fixed-nav {
		position: absolute;
		z-index: 10;
		width: 100px;
		background-color: transparent;
		        -o-transition: ease-out 0.5s;
		        transition: ease-out 0.5s;

		-webkit-transition: ease-out 0.5s;
	}
	nav.fixed-nav .drawer .navbar_toggle .navbar_toggle_icon {
		width: 40px;
	}
	nav.fixed-nav .drawer .navbar_toggle .navbar_toggle_icon:nth-child(2) {
		margin: 8px 0;
	}
	nav.fixed-nav.transform-horizontally {
		position: absolute;
		top: 0;
		        -o-transition: ease 0.1s;
		        transition: ease 0.1s;

		-webkit-transition: ease 0.1s;
	}
	nav.fixed-nav.transform-horizontally + .hidden-nav {
		display: block;
		position: fixed;
		top: 0;
		z-index: 2001;
		width: 100vw;
		height: 80px;
		background-color: #ffffff;
		        -ms-transform: translateY(0);
		            transform: translateY(0);
		        transform: translateY(0);
		        -o-transition: ease-out 0.5s;
		        transition: ease-out 0.5s;

		-webkit-transform: translateY(0);
		-webkit-transform: translateY(0);
		-webkit-transition: ease-out 0.5s;
	}
	nav.fixed-nav.transform-horizontally + .hidden-nav .drawer {
		position: absolute;
		top: 15px;
		height: auto;
	}
	nav.fixed-nav.transform-horizontally + .hidden-nav .drawer .navbar_toggle {
		margin-top: 25px;
	}
	nav.fixed-nav.transform-horizontally .open-nav {
		width: 100vw;
		margin-left: 0 !important;
	}
	nav.fixed-nav.transform-horizontally .drawer {
		display: none;
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
		z-index: 2001;
		height: 80px;
	}
	nav.fixed-nav.transform-horizontally .menu {
		position: fixed;
		height: 100vh;
	}
	nav.fixed-nav.transform-horizontally .menu ul {
		margin-top: 100px;
	}
	nav.fixed-nav .drawer {
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		-webkit-box-align: start;
		    -ms-flex-align: start;
		        align-items: flex-start;
		height: 100%;
		padding-top: 20px;
	}
	nav.fixed-nav .drawer .navbar_toggle {
		left: auto;
	}
	nav.fixed-nav .drawer .navbar_toggle .toggle-text {
		display: block;
		position: relative;
		top: 30px;
		left: -10%;
		padding-top: 0;
		font-size: 1rem;
		-webkit-transform: rotate(90deg);
		    -ms-transform: rotate(90deg);
		        transform: rotate(90deg);
	}
	nav.fixed-nav .drawer .navbar_toggle .navbar_toggle_icon {
		width: 40px;
	}
	nav.fixed-nav .drawer .navbar_toggle .navbar_toggle_icon:nth-child(2) {
		margin: 8px 0;
	}
	nav.fixed-nav .menu {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		position: absolute;
		top: 0;
		z-index: -1;
		width: calc(100vw - 100px);
		height: calc(100vh - 175px);
		margin-top: 0;
	}
	nav.fixed-nav .menu ul {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-flow: wrap;
		    flex-flow: wrap;
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
		-webkit-box-align: start;
		    -ms-flex-align: start;
		        align-items: flex-start;
		padding: 5vw 30px;
	}
	nav.fixed-nav .menu ul li {
		width: 49.5%;
		margin-bottom: 70px;
		padding: 0;
		border-bottom: none;
	}
	nav.fixed-nav .menu ul li a {
		padding: 25px;
	}
	nav.fixed-nav .menu ul li a:hover {
		text-decoration: none;
		background-color: #2f353d;
		        -o-transition: ease 0.4s;
		        transition: ease 0.4s;

		-webkit-transition: ease 0.4s;
	}
	nav.fixed-nav .menu ul li a:hover img {
		opacity: 0.7;
		        -o-transition: ease 0.4s;
		        transition: ease 0.4s;

		-webkit-transition: ease 0.4s;
	}
	nav.fixed-nav .menu ul li a:hover .menu-numbers {
		color: #ffffff;
		        -o-transition: ease 0.4s;
		        transition: ease 0.4s;

		-webkit-transition: ease 0.4s;
	}
	nav.fixed-nav .menu ul li a img {
		width: 10vw;
		max-width: 150px;
	}
	nav.fixed-nav .menu ul li a .menu-numbers {
		position: inherit;
		margin-left: 4%;
		font-size: 3rem;
	}
	nav.fixed-nav .menu ul li a .menu-text {
		font-size: 1.5vw;
		line-height: 1.6;
	}
	nav.fixed-nav .menu.open-nav {
		overflow-y: scroll;
		margin-left: 100px;
	}
}

@media only screen and (min-width: 1200px), print {
	nav.fixed-nav .menu ul {
		padding: 5vw 100px;
	}
	nav.fixed-nav .menu ul li a img {
		width: 100%;
	}
	nav.fixed-nav .menu ul li a .menu-numbers {
		font-size: 2rem;
	}
	nav.fixed-nav .menu ul li a .menu-text {
		font-size: 1.25rem;
	}
}

/* ==========================================================
!Mainimg
========================================================== */
.mainimg01 {
	margin-bottom: 35vw;
	font-family: Noto Sans CJK JP;
}

.mainimg01 .fade-text {
	position: relative;
	z-index: 2;
}

.mainimg01 .fade-text h1 {
	position: absolute;
	top: -10vw;
	left: 34%;
	width: 22%;
	padding: 0.35rem 0.85rem;
	background-color: #ffffff;
}

.mainimg01 .fade-text div {
	position: absolute;
	margin-top: 82.5vw;
}

.mainimg01 .fade-text div p {
	display: inline-block;
	padding: 0.01vw 0 0.01vw 5.5%;
	color: #2f353d;
	font-size: 6vw;
	font-weight: bold;
	background-color: #ffffff;
}

.mainimg01 .fade-text div p:nth-of-type(5) {
	display: table;
	margin-bottom: 1.5%;
	font-size: 4.5vw;
}

.mainimg01 img {
	width: 100%;
}

.mainimg01 img.pc {
	width: 100%;
}

/* 768px以上（タブレット） */
@media only screen and (min-width: 768px), print {
	.mainimg01 {
		overflow: hidden;
		min-height: 550px;
		max-height: 550px;
		margin-bottom: 0;
		margin-left: 100px;
	}
	.mainimg01 .fade-text {
		margin: 0 auto 0 0;
	}
	.mainimg01 .fade-text h1 {
		top: 0;
		left: 0;
		width: 15%;
		min-width: 210px;
		max-width: 210px;
		margin-top: 50px;
		padding: 1rem 0.85rem;
	}
	.mainimg01 .fade-text div {
		max-width: 50vw;
		margin-top: 220px;
	}
	.mainimg01 .fade-text div p {
		margin-bottom: 2%;
		padding: 0.01vw 15px;
		font-size: 2.5vw;
		line-height: 1.2;
	}
	.mainimg01 .fade-text div p:nth-of-type(5) {
		margin-bottom: 1.5%;
		font-size: 2vw;
		line-height: 1.6;
	}
	.mainimg01 .img-rellax {
		position: relative;
		z-index: 1;
	}
}

/* 1600px以上（大きいPC） */
@media only screen and (min-width: 1600px), print {
	.mainimg01 {
		max-height: 580px;
		margin-bottom: 0;
	}
	.mainimg01 .fade-text div {
		max-width: 50%;
	}
	.mainimg01 .fade-text div p {
		padding: 0 15px !important;
	}
	.mainimg01 .img-rellax img {
		margin-top: -100px;
	}
}

_:-ms-fullscreen .mainimg01 .fade-text div p,
:root .selector .mainimg01 .fade-text div p {
	line-height: 1.4;
}

/* ==========================================================
!Section Common
========================================================== */
.outer01 {
	max-width: 1200px;
	margin: 0 auto;
}

.outer02 {
	max-width: 1600px;
	margin: 0 auto;
}

.inner01 {
	padding: 0 5.5%;
}

/* 1400px以上（大きいPC） */
@media only screen and (min-width: 1400px), print {
	.inner01 {
		padding: 0;
	}
}

/* メンバー紹介section */
.member {
	background-color: #ffffff;
}

.member h2 {
	padding: 6% 0;
	font-family: "Noto Serif JP", serif;
	font-size: 6vw;
	font-weight: bold;
	text-align: center;
}

.member h2 img.sp {
	width: 25vw;
}

/* 768px以上（タブレット） */
@media only screen and (min-width: 768px), print {
	.member {
		padding-bottom: 75px;
	}
	.member h2 {
		padding: 50px 0 30px 0;
		font-size: 1.875rem;
	}
}

section:not(.ftr-section) h3.heading-level3 {
	padding: 8% 1rem 8% 0;
	padding-left: -1rem;
	font-size: 4.8vw;
	font-weight: bold;
	text-align: left;
}

/* 768px以上（タブレット） */
@media only screen and (min-width: 768px), print {
	section:not(.ftr-section) h3.heading-level3 {
		padding: 80px 0 35px 0;
		font-size: 1.875rem;
	}
}

/*section:not(.ftr-section) p {
	padding-bottom: 16%;
	font-size: 4vw;
	line-height: 2;
}

section:not(.ftr-section) p:last-of-type {
	padding-bottom: 0;
}*/

/* 768px以上（タブレット） */
/*@media only screen and (min-width: 768px), print {
	section:not(.ftr-section) p {
		padding-bottom: 4.5%;
		font-size: 1rem;
	}
}*/

.h2-section {
	margin-top: 25%;
}

/* 768px以上（タブレット） */
/*@media only screen and (min-width: 768px), print {
	.h2-section {
		margin-top: 220px;
	}
	.h2-section .pt-offset {
		padding-top: 70px;
	}
}*/

/* パララックス実装によるコンテンツ高さバグの解消 h2-sectionを追加するごとに追加の必要あり */
/* 768px以上（タブレット） */
@media only screen and (min-width: 768px), print {
	#anchor02,
	#anchor03,
	#anchor04 {
		margin-top: 350px;
	}
}

/* 共通 */
.box-inner01 {
	padding: 0 10% 16% 10%;
}

/* 768px以上（タブレット） */
@media only screen and (min-width: 768px), print {
	.box-inner01 p:last-of-type {
		padding-bottom: 15%;
	}
}

/* 1枚画像 */
.img {
	width: 100%;
	margin-top: 10%;
}

/* 768px以上（タブレット） */
@media only screen and (min-width: 768px), print {
	.img {
		width: 100%;
		margin-top: 5%;
	}
}

@media screen and (max-width: 767px) {
	/* アコーディオンメニュー（SPのみ） */
	#member .accordion-one h2 {
		position: relative;
		z-index: +1;
		padding: 7vw 11%;
		font-size: 6vw;
		text-align: center;
		background-color: #f1f1f1;
		cursor: pointer;
		-webkit-transition-duration: 0.2s;
		     -o-transition-duration: 0.2s;
		        transition-duration: 0.2s;
	}
	#member .accordion-one h2:hover {
		opacity: 0.8;
	}
	#member .accordion-one h2 .i-box {
		display: block;
		position: absolute;
		top: 0;
		right: 8%;
		bottom: 15%;
		width: 5.5vw;
		height: 5.5vw;
		margin: auto;
		border-top: #000000 2px solid;
		border-right: #000000 2px solid;
		content: "";
		        transform: rotate(135deg);
		-webkit-transition-duration: 0.2s;
		     -o-transition-duration: 0.2s;
		        transition-duration: 0.2s;

		-webkit-transform: rotate(135deg);
		    -ms-transform: rotate(135deg);
		-webkit-transform-origin: center center;
		    -ms-transform-origin: center center;
		        transform-origin: center center;
	}
	#member .accordion-one h2.open .i-box {
		bottom: 0;
		        -ms-transform: rotate(-45deg);
		            transform: rotate(-45deg);

		-webkit-transform: rotate(-45deg);
	}
	#member .accordion-inner {
		display: none;
		padding: 30px 0;
		-webkit-box-sizing: border-box;
		        box-sizing: border-box;
		background-color: #f1f1f1;
	}
}

/* メンバー紹介Box */
.box-member {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-flow: wrap;
	    flex-flow: wrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.box-member dl {
	width: 50%;
	margin-bottom: 3%;
}

.box-member dl:nth-of-type(odd) dd {
	padding: 0 5.5% 0 8%;
}

.box-member dl:nth-of-type(even) dd {
	padding: 0 8% 0 5.5%;
}

.box-member dl dt {
	margin-bottom: 6%;
	text-align: center;
}

.box-member dl dd {
	font-size: 3vw;
}

/* 768px以上（タブレット） */
@media only screen and (min-width: 768px), print {
	#member .accordion-one {
		position: relative;
		z-index: 1;
	}
	.box-member {
		-ms-flex-flow: nowrap;
		    flex-flow: nowrap;
	}
	.box-member dl {
		width: 15%;
		margin: 0 0.85%;
	}
	.box-member dl:nth-of-type(even) {
		margin-top: 100px;
	}
	.box-member dl:nth-of-type(odd) dd,
	.box-member dl:nth-of-type(even) dd {
		padding: 0 0 0 0;
	}
	.box-member dl dd {
		padding: 0 0 0 0;
		font-size: 80%;
	}
}

/* 960px以上（大きめタブレット 横位置とか） */
@media only screen and (min-width: 960px), print {
	.box-member {
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}
	.box-member dl:nth-of-type(odd) dd,
	.box-member dl:nth-of-type(even) dd {
		margin-left: 15px;
	}
}

/* 黒背景Boxモジュール / 白背景Boxモジュール (見出しレベル2共通) */
/* 黒 */
.numbers-module01 {
	right: 6vw;
}

.numbers-module01 img.sp {
	opacity: 0.4;
	width: 20vw;
}

.box-custom-module01 {
	text-align: left;
}

/* 白 */
.numbers-module02 {
	right: 10vw;
}

.numbers-module02 img.sp {
	opacity: 0.4;
	width: 20vw;
}

.box-custom-module02 {
	text-align: right;
}

.box-custom-module02 h2 {
	margin-left: 0;
	text-align: left;
}

/* 白・黒共通 */
/* box-custom-moduleの直下に来る場合は余白調整 */
.box-custom-module01 + .h3-section .box-gray-module01,
.box-custom-module02 + .h3-section .box-gray-module01 {
	margin-top: 65vw;
}

.numbers-module01,
.numbers-module02 {
	display: block;
	position: absolute;
	z-index: 3;
	margin-top: -10vw;
	color: rgba(220, 221, 223, 0.4);
	font-family: "Noto Serif JP", serif;
	font-size: 18vw;
	font-weight: bold;
	line-height: 1;
}

.box-custom-module01,
.box-custom-module02 {
	position: relative;
}

.box-custom-module01 .img-left,
.box-custom-module01 .img-right,
.box-custom-module02 .img-left,
.box-custom-module02 .img-right {
	width: 100%;
	max-width: 640px;
	height: auto;
	max-height: 600px;

	-o-object-fit: contain;

	   object-fit: contain;
}

.box-custom-module01 h2,
.box-custom-module02 h2 {
	position: absolute;
	top: 82.5%;
	left: 0;
}

.box-custom-module01 h2 span,
.box-custom-module02 h2 span {
	display: inline-block;
	padding: 0.01vw 15px 0.01vw 30px;
	font-size: 6.45vw;
	font-weight: bold;
	background-color: #ffffff;
}

.box-custom-module01 h2 span:nth-of-type(1),
.box-custom-module02 h2 span:nth-of-type(1) {
	margin-bottom: 1.5%;
}

/* 768px以上（タブレット） */
@media only screen and (min-width: 768px), print {
	/* 黒 */
	.numbers-module01 {
		right: auto;
		left: 72%;
	}
	.box-custom-module01 {
		text-align: left;
	}
	.box-custom-module01 h2 {
		margin-left: 32vw;
	}
	/* 白 */
	.numbers-module02 {
		right: auto;
		left: 5vw;
	}
	.box-custom-module02 {
		text-align: right;
	}
	.box-custom-module02 h2 {
		margin-left: 3vw;
	}
	.box-custom-module02 img {
		margin: 0 0 0 auto;
	}
	/* box-custom-moduleの直下に来る場合は余白調整 */
	.box-custom-module01,
	.box-custom-module02 {
		overflow: hidden;
	}
	.box-custom-module01 + .h3-section .box-gray-module01,
	.box-custom-module02 + .h3-section .box-gray-module01 {
		margin-top: 220px;
	}
	.numbers-module01,
	.numbers-module02 {
		margin-top: -8vw;
		font-size: 17vw;
	}
	.box-custom-module01,
	.box-custom-module02 {
		max-height: 898px;
		margin-bottom: 100px;
	}
	.box-custom-module01 .outer02,
	.box-custom-module02 .outer02 {
		positin: relative;
	}
	.box-custom-module01 .img-left,
	.box-custom-module02 .img-left {
		max-width: 100%;
		max-height: 100%;
	}
	.box-custom-module01 .img-right,
	.box-custom-module02 .img-right {
		width: auto;
		max-width: 100%;
		max-height: 1000px;
	}
	.box-custom-module01 .img-rellax,
	.box-custom-module02 .img-rellax {
		position: relative;
		z-index: 1;
	}
	.box-custom-module01 h2,
	.box-custom-module02 h2 {
		top: 32%;
		max-width: 50vw;
	}
	.box-custom-module01 h2 span,
	.box-custom-module02 h2 span {
		font-size: 3.2vw;
	}
	.box-custom-module01 h2 span:nth-of-type(1),
	.box-custom-module01 h2 span:nth-of-type(2),
	.box-custom-module01 h2 span:nth-of-type(3),
	.box-custom-module02 h2 span:nth-of-type(1),
	.box-custom-module02 h2 span:nth-of-type(2),
	.box-custom-module02 h2 span:nth-of-type(3) {
		margin-bottom: 2.5%;
	}
}

/* 1600px以上（大きいPC） */
@media only screen and (min-width: 1600px), print {
	.box-custom-module01 h2,
	.box-custom-module02 h2 {
		max-width: 700px;
	}
	.box-custom-module01 h2 span,
	.box-custom-module02 h2 span {
		font-size: 3.2rem;
	}
}

/* グレーBoxモジュール(見出しレベル3共通) */
.bg-gray {
	height: 85vw;
	background-color: #ffffff;
}

/* 左寄せVer */
.box-gray-module01.module-left .box-blue-parts01 {
	margin-left: 5.5%;
}

.box-gray-module01.module-left .box-blue-parts01 .triangle-parts01 {
	position: absolute;
	top: -20vw;
	left: 0;
	z-index: 4;
}

.box-gray-module01.module-left .box-blue-parts01 .triangle-parts01 span:nth-child(1) {
	position: relative;
	top: 5vw;
	left: -3vw;
	z-index: 2;
}

.box-gray-module01.module-left .box-blue-parts01 .triangle-parts01 span:nth-child(1) img {
	width: 20vw;
}

.box-gray-module01.module-left .box-blue-parts01 .triangle-parts01 span:nth-child(2) {
	position: relative;
	top: 8vw;
	left: 5vw;
	z-index: 2;
}

.box-gray-module01.module-left .box-blue-parts01 .triangle-parts01 span:nth-child(2) img {
	width: 12vw;
}

.box-gray-module01.module-left .box-blue-parts01 .triangle-parts01 span:nth-child(3) {
	position: relative;
	top: -3vw;
	left: -4.5vw;
	z-index: 3;
}

.box-gray-module01.module-left .box-blue-parts01 .triangle-parts01 span:nth-child(3) img {
	width: 8vw;
}

.box-gray-module01.module-left .box-blue-parts01 .triangle-parts02 {
	position: absolute;
	right: 0;
	bottom: -60vw;
	z-index: 4;
}

.box-gray-module01.module-left .box-blue-parts01 .triangle-parts02 span:nth-child(1) {
	position: relative;
	top: -2vw;
	right: 0;
	z-index: 3;
}

.box-gray-module01.module-left .box-blue-parts01 .triangle-parts02 span:nth-child(1) img {
	width: 20vw;
}

.box-gray-module01.module-left .box-blue-parts01 .triangle-parts02 span:nth-child(2) {
	position: relative;
	top: 8vw;
	left: -30vw;
	z-index: 2;
}

.box-gray-module01.module-left .box-blue-parts01 .triangle-parts02 span:nth-child(2) img {
	width: 10vw;
}

.box-gray-module01.module-left .box-blue-parts01 .img-col2 .img-left {
	float: left;
	margin-right: 5.5%;
	margin-left: -13%;
}

.box-gray-module01.module-left .box-blue-parts01 .img-col2 .img-rellax-left {
	position: relative;
	z-index: 3;
}

/* 右寄せVer */
.box-gray-module01.module-right .box-blue-parts01 .triangle-parts01 {
	position: absolute;
	top: -5%;
	right: 0;
	z-index: 4;
}

.box-gray-module01.module-right .box-blue-parts01 .triangle-parts01 span {
	display: inline-block;
	position: relative;
	height: 100%;
}

.box-gray-module01.module-right .box-blue-parts01 .triangle-parts01 span:nth-child(1) {
	top: -10px;
	right: -15vw;
	z-index: 2;
}

.box-gray-module01.module-right .box-blue-parts01 .triangle-parts01 span:nth-child(1) img {
	width: 20vw;
}

.box-gray-module01.module-right .box-blue-parts01 .triangle-parts01 span:nth-child(2) {
	top: -30px;
	right: 30vw;
	z-index: 2;
}

.box-gray-module01.module-right .box-blue-parts01 .triangle-parts01 span:nth-child(2) img {
	width: 8vw;
}

.box-gray-module01.module-right .box-blue-parts01 .triangle-parts01 span:nth-child(3) {
	top: 20px;
	right: 45vw;
	z-index: 3;
}

.box-gray-module01.module-right .box-blue-parts01 .triangle-parts01 span:nth-child(3) img {
	width: 12vw;
}

.box-gray-module01.module-right .box-blue-parts01 .triangle-parts02 {
	position: absolute;
	bottom: -220px;
	z-index: 4;
}

.box-gray-module01.module-right .box-blue-parts01 .triangle-parts02 span:nth-child(1) {
	position: relative;
	z-index: 3;
}

.box-gray-module01.module-right .box-blue-parts01 .triangle-parts02 span:nth-child(1) img {
	width: 20vw;
}

.box-gray-module01.module-right .box-blue-parts01 .triangle-parts02 span:nth-child(2) {
	position: relative;
	bottom: -11vw;
	left: 16vw;
	z-index: 2;
}

.box-gray-module01.module-right .box-blue-parts01 .triangle-parts02 span:nth-child(2) img {
	width: 10vw;
}

.box-gray-module01.module-right .box-blue-parts01 .img-col2 .img-right {
	float: right;
	margin-right: -13%;
	margin-left: 5.5%;
}

.box-gray-module01.module-right .box-blue-parts01 .img-col2 .img-rellax-right {
	position: relative;
	z-index: 3;
}

/* 共通 */
.box-gray-module01 {
	margin: 45vw auto 0 auto;
}

.box-gray-module01 .box-blue-parts01 {
	position: relative;
	top: -80px;
	right: 0;
	padding: 0 5.5% 8% 5.5%;
}

.box-gray-module01 .box-blue-parts01 .img-col2 img {
	width: 40vw;
	max-width: 240px;
}

/* 768px以上（タブレット） */
@media only screen and (min-width: 768px), print {
	.bg-gray {
		height: 730px;
	}
	/* 左寄せVer */
	.box-gray-module01.module-left .box-blue-parts01 {
		margin: 0 0 0 auto;
		padding: 0 8% 5% 15%;
	}
	.box-gray-module01.module-left .box-blue-parts01 .triangle-parts01 {
		top: 200px;
	}
	.box-gray-module01.module-left .box-blue-parts01 .triangle-parts01 span:nth-child(1) {
		top: 2vw;
		left: -20vw;
	}
	.box-gray-module01.module-left .box-blue-parts01 .triangle-parts01 span:nth-child(1) img {
		max-width: 200px;
	}
	.box-gray-module01.module-left .box-blue-parts01 .triangle-parts01 span:nth-child(2) {
		top: 0;
		left: -7vw;
	}
	.box-gray-module01.module-left .box-blue-parts01 .triangle-parts01 span:nth-child(2) img {
		max-width: 100px;
	}
	.box-gray-module01.module-left .box-blue-parts01 .triangle-parts01 span:nth-child(3) {
		top: 15vw;
		left: -37.5vw;
	}
	.box-gray-module01.module-left .box-blue-parts01 .triangle-parts01 span:nth-child(3) img {
		max-width: 65px;
	}
	.box-gray-module01.module-left .box-blue-parts01 .triangle-parts02 {
		bottom: -580px;
	}
	.box-gray-module01.module-left .box-blue-parts01 .triangle-parts02 span:nth-child(1) {
		top: 138px;
	}
	.box-gray-module01.module-left .box-blue-parts01 .triangle-parts02 span:nth-child(1) img {
		max-width: 135px;
	}
	.box-gray-module01.module-left .box-blue-parts01 .triangle-parts02 span:nth-child(2) {
		top: 230px;
		left: -20vw;
	}
	.box-gray-module01.module-left .box-blue-parts01 .triangle-parts02 span:nth-child(2) img {
		max-width: 70px;
	}
	.box-gray-module01.module-left .box-blue-parts01 .img-col2 .img-left {
		margin-left: -62%;
	}
	.box-gray-module01.module-left .box-blue-parts01 .img-col2 .img-rellax-left {
		position: absolute;
		top: 160px;
		left: -4%;
		z-index: 3;
	}
	/* 右寄せVer */
	.box-gray-module01.module-right .box-blue-parts01 {
		margin: 0 auto 0 0;
		padding: 0 15% 5% 8%;
	}
	.box-gray-module01.module-right .box-blue-parts01 .triangle-parts01 {
		top: auto;
		right: -20%;
	}
	.box-gray-module01.module-right .box-blue-parts01 .triangle-parts01 span:nth-child(1) img {
		max-width: 200px;
	}
	.box-gray-module01.module-right .box-blue-parts01 .triangle-parts01 span:nth-child(2) {
		top: 160px;
		right: -15%;
	}
	.box-gray-module01.module-right .box-blue-parts01 .triangle-parts01 span:nth-child(2) img {
		max-width: 60px;
	}
	.box-gray-module01.module-right .box-blue-parts01 .triangle-parts01 span:nth-child(3) {
		top: 0;
		right: 80%;
	}
	.box-gray-module01.module-right .box-blue-parts01 .triangle-parts01 span:nth-child(3) img {
		max-width: 100px;
	}
	.box-gray-module01.module-right .box-blue-parts01 .triangle-parts02 {
		bottom: -35%;
	}
	.box-gray-module01.module-right .box-blue-parts01 .triangle-parts02 span:nth-child(1) {
		bottom: -60px;
	}
	.box-gray-module01.module-right .box-blue-parts01 .triangle-parts02 span:nth-child(1) img {
		max-width: 135px;
	}
	.box-gray-module01.module-right .box-blue-parts01 .triangle-parts02 span:nth-child(2) {
		bottom: -6vw;
	}
	.box-gray-module01.module-right .box-blue-parts01 .triangle-parts02 span:nth-child(2) img {
		max-width: 70px;
	}
	.box-gray-module01.module-right .box-blue-parts01 .img-col2 .img-right {
		margin-right: -28%;
	}
	.box-gray-module01.module-right .box-blue-parts01 .img-col2 .img-rellax-right {
		position: absolute;
		top: 160px;
		right: -16%;
		z-index: 1;
	}
	/* 共通 */
	.box-gray-module01 {
		margin: 220px auto 0 auto;
	}
	.box-gray-module01 .box-blue-parts01 .img-col2 img {
		width: 30vw;
		max-width: 400px;
	}
}

/* 1200px以上（大きめPC） */
@media only screen and (min-width: 1200px), print {
	/* 白 */
	.numbers-module02 {
		right: 68vw;
		left: auto;
	}
	.box-custom-module02 h2 {
		right: 42vw;
		left: auto;
	}
	/* 左寄せVer */
	.box-gray-module01.module-left .box-blue-parts01 {
		padding: 0 6.5% 5% 15%;
	}
	/* 右寄せVer */
	.box-gray-module01.module-right .box-blue-parts01 {
		padding: 0 15% 5% 6.5%;
	}
}

/* 1400px以上（大きいPC） */
@media only screen and (min-width: 1400px), print {
	/* 黒 */
	.numbers-module01 {
		left: 65%;
	}
	.box-custom-module01 h2 {
		margin-left: 32vw;
	}
	/* 左寄せVer */
	.box-gray-module01.module-left .box-blue-parts01 {
		padding: 0 13% 5% 13%;
	}
	/* 右寄せVer */
	.box-gray-module01.module-right .box-blue-parts01 {
		padding: 0 13% 5% 13%;
	}
}

@media only screen and (min-width: 1600px), print {
	.box-custom-module02 h2 {
		right: 47vw;
		left: auto;
	}
}

/* テキストオンリーのセクションの下に来る場合は余白調整 */
.h3-section.only-text + .h3-section .outer02 .box-custom-mask {
	margin: 25vw auto 10vw auto;
}

/* 768px以上（タブレット） */
@media only screen and (min-width: 768px), print {
	.h3-section.only-text + .h3-section .outer02 .box-custom-mask {
		margin: 160px auto 160px auto;
	}
}

/* テキストオンリーのセクションの上に来る場合は余白調整 */
.h3-section.only-text {
	margin: 25vw auto 0 auto;
}

/* 768px以上（タブレット） */
@media only screen and (min-width: 768px), print {
	.h3-section.only-text {
		margin: 120px auto;
	}
	.h3-section.only-text .heading-level3 {
		padding-top: 0;
	}
	.h3-section.only-text + .h3-section.only-text {
		margin: 0 auto 120px auto;
	}
	.clear-margin + .h3-section.only-text {
		margin-top: 0;
	}
}

/* 768px以上（タブレット） */
@media only screen and (min-width: 768px), print {
	#anchor01 .box-custom-module01 {
		margin-bottom: 0 !important;
	}
}

/* ==========================================================
!SNS Parts
========================================================== */
.sns-area {
	padding: 18.5vw 10%;
	text-align: center;
}

.sns-area .sns-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-flow: nowrap;
	    flex-flow: nowrap;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.sns-area .sns-wrap .tw,
.sns-area .sns-wrap .fb {
	width: 33vw;
	font-size: 3.5vw;
}

.sns-area .sns-wrap .tw a,
.sns-area .sns-wrap .fb a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	height: 6vw;
	padding: 4% 0;
	color: #ffffff;
}

.sns-area .sns-wrap .tw a:hover,
.sns-area .sns-wrap .fb a:hover {
	opacity: 0.7;
	text-decoration: none;
	-webkit-transition-duration: 0.2s;
	     -o-transition-duration: 0.2s;
	        transition-duration: 0.2s;
}

.sns-area .sns-wrap .tw img,
.sns-area .sns-wrap .fb img {
	width: 1.5rem;
	margin-right: 0.5rem;
}

.sns-area .sns-wrap .tw {
	margin-left: 1%;
}

.sns-area .sns-wrap .tw a {
	background-color: #55acee;
}

.sns-area .sns-wrap .fb {
	margin-right: 1%;
}

.sns-area .sns-wrap .fb a {
	background-color: #465b99;
}

/* 768px以上（タブレット） */
@media only screen and (min-width: 768px), print {
	.sns-area {
		padding: 100px 0 140px 0;
	}
	.sns-area .sns-wrap .tw {
		margin-left: 5px;
	}
	.sns-area .sns-wrap .fb {
		margin-right: 5px;
	}
	.sns-area .sns-wrap .tw,
	.sns-area .sns-wrap .fb {
		width: 150px;
	}
	.sns-area .sns-wrap .tw a,
	.sns-area .sns-wrap .fb a {
		height: 28px;
		padding: 4.5% 0;
		font-size: 1rem;
	}
}

section .sns-area {
	margin: 20% 0;
	background-color: #f5f6f8;
}

section .sns-area p {
	margin-bottom: 4%;
	line-height: 1.6;
}

/* 768px以上（タブレット） */
@media only screen and (min-width: 768px), print {
	section .sns-area {
		margin: 8% 0 0 0;
	}
	section .sns-area.last {
		margin: 0;
	}
	section .sns-area p {
		margin-bottom: 2.5%;
	}
}

@media all and (-ms-high-contrast: none) {
	.sns-area a {
		line-height: 2;
	}
}

/* ==========================================================
!Text
========================================================== */
.txt-summary {
	padding: 0 5.5%;
	font-size: 4vw;
	line-height: 2;
}

/* 768px以上（タブレット） */
@media only screen and (min-width: 768px), print {
	.txt-summary {
		margin: 7.5% 5.5% 0 5.5%;
		padding: 0;
		font-size: 1rem;
	}
}

/* 1400px以上（大きいPC） */
@media only screen and (min-width: 1400px), print {
	.txt-summary {
		margin: 7.5% 0 0 0;
	}
}

.txt-annotation01 {
	padding: 15px 0 0 0;
	font-size: 3vw !important;
}

/* 768px以上（タブレット） */
@media only screen and (min-width: 768px), print {
	.txt-annotation01 {
		padding: 30px 0 0 0;
		font-size: 85% !important;
	}
}

.line:after {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 1px;
	content: "\00a0";
	background: #000000;
}

.line {
	position: relative;
	margin-right: 0.2em;
	padding-left: 1em;
	font-weight: 400;
}

.comment-name {
	padding-right: 0.4em;
	font-weight: 700;
}

.h3-section p {
	font-size: 4vw;
}

/* 768px以上（タブレット） */
@media only screen and (min-width: 768px), print {
	.h3-section p {
		font-size: 1rem;
		line-height: 2;
	}
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
	outline: 0;
}

ol,
ul {
	list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
	font-weight: 400;
}

body {
	min-width: 320px;
}

@font-face {
	font-family: YakuHanJP;

	src: url("../fonts/YakuHanJP-Regular.eot");
	src: url("../fonts/YakuHanJP-Regular.woff2") format("woff2"), url("../fonts/YakuHanJP-Regular.woff") format("woff");
}

@font-face {
	font-family: YakuHanJP;
	font-weight: 700;

	src: url("../fonts/YakuHanJP-Bold.eot");
	src: url("../fonts/YakuHanJP-Bold.woff2") format("woff2"), url("../fonts/YakuHanJP-Bold.woff") format("woff");
}

#feature {
	/*overflow: hidden;*/
	position: relative;
	min-width: 1039px;
	color: #2f353d;
	font-family: YakuHanJP,"ヒラギノ角ゴ Pro",Hiragino Kaku Gothic Pro,"メイリオ",Meiryo,sans-serif;
	font-size: 15px;
	font-size: 0.9375rem;
	        font-feature-settings: "pkna";
	line-height: 1.6;

	-webkit-font-feature-settings: "pkna";
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
	   -moz-text-size-adjust: 100%;
	    -ms-text-size-adjust: 100%;
}

#feature img {
	vertical-align: top;

	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
	-ms-interpolation-mode: bicubic;
	-webkit-touch-callout: none;
	   -moz-touch-callout: none;
	        touch-callout: none;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}

@font-face {
	font-family: Yu Gothic;

	src: local("Yu Gothic Medium");
}

.s-hide {
	display: none;
}

.s-bold {
	font-weight: 700;
}

.s-blue {
	color: #0068bf;
	font-weight: 700;
}

.sp,
.l-sp {
	display: none;
}

.ftr-section {
	*zoom: 1;
}

.ftr-section:before,
.ftr-section:after {
	display: table;
	content: "";
}

.ftr-section:after {
	clear: both;
}

.l-contents-f {
	*zoom: 1;
}

.l-contents-f:before,
.l-contents-f:after {
	display: table;
	content: "";
}

.l-contents-f:after {
	clear: both;
}

.l-contents {
	width: 94%;
	max-width: 1200px;
	margin-right: auto;
	margin-left: auto;
}

.l-contents {
	*zoom: 1;
}

.l-contents:before,
.l-contents:after {
	display: table;
	content: "";
}

.l-contents:after {
	clear: both;
}

.l-contents-full {
	position: relative;
	width: 94%;
	max-width: 1000px;
	margin-right: auto;
	margin-left: auto;
}

.l-contents-full {
	*zoom: 1;
}

.l-contents-full:before,
.l-contents-full:after {
	display: table;
	content: "";
}

.l-contents-full:after {
	clear: both;
}

.l-contents-sp-full {
	padding: 0;
}

.l-contents-inr {
	width: 100%;
	max-width: 1000px;
	margin-right: auto;
	margin-left: auto;
}

.l-contents-inr {
	*zoom: 1;
}

.l-contents-inr:before,
.l-contents-inr:after {
	display: table;
	content: "";
}

.l-contents-inr:after {
	clear: both;
}

.l-contents-block {
	*zoom: 1;
}

.l-contents-block:before,
.l-contents-block:after {
	display: table;
	content: "";
}

.l-contents-block:after {
	clear: both;
}

.contents-top {
	padding-top: 80px;
}

.contents-block__lead {
	padding: 10% 0;
}

.contents-block {
	padding-top: 9%;
}

.contents-block {
	*zoom: 1;
}

.contents-block:before,
.contents-block:after {
	display: table;
	content: "";
}

.contents-block:after {
	clear: both;
}

.contents-block.is-first {
	padding-top: 8%;
}

.right-block {
	float: right;
	width: 57%;
}

.l-ftr-title {
	position: relative;
	border-top: solid 1px #f9f8f6;
	border-bottom: solid 1px #f9f8f6;
	background: #ffffff;
}

.l-ftr-title {
	*zoom: 1;
}

.l-ftr-title:before,
.l-ftr-title:after {
	display: table;
	content: "";
}

.l-ftr-title:after {
	clear: both;
}

.l-title-title-text {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.ftr-title-text {
	position: relative;
	top: 50%;
	width: auto;
	margin-right: auto;
	margin-left: auto;
	padding: 2.60417%;
	font-family: YakuHanJP,"游ゴシック",YuGothic,Hiragino Kaku Gothic ProN,Hiragino Kaku Gothic Pro,"ＭＳ ゴシック",sans-serif;
	font-size: 225%;
	text-align: center;
	background-color: rgba(255, 255, 255, 0.8);
	    -webkit-transform: translateY(-50%);
	            transform: translateY(-50%);

	-ms-transform: translateY(-50%);
}

.ftr-title-text {
	*zoom: 1;
}

.ftr-title-text:before,
.ftr-title-text:after {
	display: table;
	content: "";
}

.ftr-title-text:after {
	clear: both;
}

.title-white {
	border-top: solid 1px #f1f1f1;
	border-bottom: solid 1px #f1f1f1;
	background: #ffffff;
}

.l-title-inr {
	position: relative;
	width: 94%;
	max-width: 1200px;
	height: 100%;
	margin-right: auto;
	margin-left: auto;
}

.ftr-title-text-left {
	max-width: 1200px;
	text-align: left;
}

.ftr-title-text-right {
	max-width: 1200px;
	text-align: left;
}

.ftr-title-text-right span {
	float: right;
}

.ftr-title-bg {
	display: block;
	max-width: 1920px;
	margin-right: auto;
	margin-left: auto;
	vertical-align: top;
}

.ftr-title {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}

.heading-level0 {
	padding: 8% 0;
	border-top: solid 1px #000000;
	font-size: 30px;
	font-size: 1.875rem;
	text-align: center;
}

.heading-level0.is-margin_top {
	margin-top: 15%;
}

.heading-level1 {
	padding-top: 10%;
	padding-bottom: 10%;
	font-size: 175%;
	font-weight: 700;
	text-align: center;
}

.heading-level2 {
	margin-bottom: 1em;
	padding-bottom: 6.5%;
	padding-bottom: 1em;
	border-bottom: solid 1px #cccccc;
	font-size: 175%;
}

.heading-level3 {
	padding-bottom: 1.6em;
	font-size: 125%;
	font-weight: 700;
	line-height: 1.8;
}

.heading-shoulder {
	display: block;
	padding-bottom: 0.3em;
	font-size: 64.28571%;
	font-weight: 400;
}

.l-btn-area {
	*zoom: 1;
}

.l-btn-area:before,
.l-btn-area:after {
	display: table;
	content: "";
}

.l-btn-area:after {
	clear: both;
}

.ftr-btn-blue {
	display: block;
	overflow: hidden;
	position: relative;
	z-index: 2;
	width: 50%;
	margin-right: auto;
	margin-left: auto;
	padding: 1.5em 0;
	border: solid 1px #369be2;
	color: #ffffff;
	font-size: 125%;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	text-align: center;
	background: #369be2;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.ftr-btn-blue:after {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	content: "";
	background: #ffffff;
	-webkit-transform: scale(0);
	    -ms-transform: scale(0);
	        transform: scale(0);
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;

	_opacity: 0;
	-ms-filter: "alpha(opacity=0)";
	    filter: alpha(opacity=0);
}

.ftr-btn-blue:hover {
	color: #369be2;
	text-decoration: none;
}

.ftr-btn-blue:hover:after {
	opacity: 1;
	-webkit-transform: scale(1);
	    -ms-transform: scale(1);
	        transform: scale(1);

	-ms-filter: "alpha(opacity=100)";
	    filter: alpha(opacity=100);
}

.ftr-btn-blue .s5-icon-window {
	position: absolute;
	top: 0.5em;
	right: 0.2em;
}

.btn-game-show {
	border: solid 1px #000000;
	background: #000000;
}

.zoom {
	display: block;
	overflow: hidden;
	position: relative;
	background: #000000;
}

.zoom:after {
	display: block;
	position: absolute;
	top: 50%;
	top: 70%;
	left: 50%;
	width: 60px;
	height: 60px;
	margin: -30px 0 0 -30px;
	content: "";
	background: url("../img/ico-zoom.png");
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;

	_opacity: 0;
	-ms-filter: "alpha(opacity=0)";
	    filter: alpha(opacity=0);
}

.zoom img {
	display: block;
	vertical-align: baseline;
	-webkit-transition: opacity 0.3s;
	-o-transition: opacity 0.3s;
	transition: opacity 0.3s;
}

.zoom:hover img {
	opacity: 0.5;

	-ms-filter: "alpha(opacity=50)";
	    filter: alpha(opacity=50);
}

.zoom:hover:after {
	opacity: 1;
	top: 50%;

	-ms-filter: "alpha(opacity=100)";
	    filter: alpha(opacity=100);
}

.ftr-btn-fade {
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.ftr-btn-fade:hover {
	opacity: 0.6;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;

	-ms-filter: "alpha(opacity=60)";
	    filter: alpha(opacity=60);
}

.ftr-par {
	margin-bottom: 2.2em;
}

.ftr-par02 {
	margin-bottom: 4.4em;
}

.ftr-p {
	line-height: 2;
}

.person {
	padding-top: 1em;
	font-size: 87.5%;
}

.person dd {
	line-height: 1.8;
}

.cf {
	*zoom: 1;
}

.cf:before,
.cf:after {
	display: table;
	content: "";
}

.cf:after {
	clear: both;
}

.person-right {
	float: right;
	width: 39%;
	margin-bottom: 5%;
	margin-left: 5%;
}

.person-right.w340 {
	width: 34%;
}

.person-right.w475 {
	width: 47.5%;
}

.person-right.w408 {
	width: 40.8%;
}

.person-left {
	float: left;
	width: 39%;
	margin-right: 5%;
	margin-bottom: 5%;
}

.person-left.w310 {
	width: 31%;
}

.person-left.w475 {
	width: 47.5%;
}

.person-left.mt10 {
	margin-bottom: 10%;
}

.person-profile {
	padding-top: 3.57143%;
	font-size: 87.5%;
	line-height: 1.8;
	text-align: left;
}

.right-box {
	float: right;
	width: 56%;
}

.right-box.w190 {
	width: 19%;
	margin-bottom: 5%;
	margin-left: 2.5%;
}

.left-box {
	float: left;
	width: 62%;
}

.left-box__end {
	margin-right: 0 !important;
}

.left-box.w320 {
	width: 32.32323%;
	margin-right: 1.5%;
	margin-bottom: 0;
}

.left-box.w480 {
	width: 47.5%;
	margin-right: 2.5%;
	margin-bottom: 0;
}

.left-box.w510 {
	width: 51%;
	margin-right: 1.5%;
	margin-bottom: 5%;
}

.left-box-486 {
	float: left;
	width: 48.6%;
	margin-right: 4.5%;
}

.thumb80 {
	width: 80%;
	margin-right: auto;
	margin-left: auto;
}

.fit-image {
	width: 100%;
}

.fit-image.mt20 {
	padding-top: 3.57143%;
}

.ftr-list2 {
	*zoom: 1;
}

.ftr-list2:before,
.ftr-list2:after {
	display: table;
	content: "";
}

.ftr-list2:after {
	clear: both;
}

.ftr-list2-list {
	float: left;
	width: 48.6%;
	text-align: left;
}

.ftr-list2-list.is-left {
	margin-right: 2.8%;
}

.ftr-list3 {
	*zoom: 1;
}

.ftr-list3:before,
.ftr-list3:after {
	display: table;
	content: "";
}

.ftr-list3:after {
	clear: both;
}

.ftr-list3-list {
	float: left;
	width: 31%;
	margin-right: 2.8%;
	text-align: left;
}

.ftr-list3-list.is-last {
	margin-right: 0;
}

.name {
	padding-top: 0.7em;
	font-size: 78%;
	line-height: 1.8;
	text-align: center;
}

.note {
	display: block;
	padding-top: 0.5em;
	font-size: 81.25%;
}

.note--list li {
	padding-left: 1.5em;
	font-size: 81.25%;
	text-indent: -1.5em;
}

.hr-glay {
	margin: 0;
	padding: 0;
	border: 0;
	border-top: solid 1px #efefef;
}

.ftr-hr {
	margin: 0;
	padding: 0;
	border: 0;
	border-top: solid 2px #efefef;
}

.ico {
	display: inline-block;
	font-family: icon;
	font-variant: normal;
	font-weight: 400;
	font-style: normal;
	line-height: 1;
	vertical-align: baseline;
	text-transform: none;

	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	speak: none;
}

.ico-right:before {
	margin: 0 0.2em 0 0;
	content: "\f0da";
}

.ico-down:before {
	content: "\f0d7";
}

.ico-close:before {
	content: "\f00d";
}

.ico-border {
	display: block;
	position: absolute;
	top: 0;
	top: 0.75em;
	left: 0;
	width: 1em;
	height: 1px;
	border-top: solid 1px #000000;
}

.strong {
	font-weight: 700;
}

.sup {
	font-size: 70%;
}

.afont {
	font-family: sans-serif;
}

.is-block {
	display: block;
}

.is-min {
	font-size: 80%;
}

.profile-text {
	margin-top: 0.5em;
}

.mora-link {
	color: #4472c4;
	font-weight: 700;
}

.mora-link:hover {
	color: #4472c4;
}

.youtube-title {
	font-weight: 700;
	text-align: center;
}

.youtube {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}

.youtube iframe,
.youtube video {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}

.img--title {
	margin-bottom: 3.33333%;
	font-size: 137.5%;
	font-weight: 700;
	text-align: center;
}

.img-center {
	text-align: center;
}

.img-note {
	padding-top: 1.66667%;
	font-size: 87.5%;
	line-height: 1.8;
	text-align: center;
}

.img-note.left {
	text-align: left;
}

.mt1 {
	margin-top: 1.8em;
}

.s-contents {
	margin-right: auto;
	margin-left: auto;
	padding: 5%;
	border: solid 1px #efefef;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

.l-fb {
	padding: 70px 0 100px;
	text-align: right;
}

.l-fb {
	*zoom: 1;
}

.l-fb:before,
.l-fb:after {
	display: table;
	content: "";
}

.l-fb:after {
	clear: both;
}

.l-fb h5 {
	padding-bottom: 0.3em;
	color: #4d63b8;
	font-size: 11px;
	font-size: 0.6875rem;
}

.ftr-fb {
	float: right;
	padding-right: 1em;
	text-align: left;
}

.ftr-fb-area {
	display: inline-block;
}

.l-sns {
	padding: 0.6em 0;
}

.ftr-sns {
	float: right;
	line-height: 1;
}

.ftr-sns {
	*zoom: 1;
}

.ftr-sns:before,
.ftr-sns:after {
	display: table;
	content: "";
}

.ftr-sns:after {
	clear: both;
}

.ftr-sns-list {
	float: left;
	height: 25px;
}

.ftr-sns-fb {
	margin-right: 10px;
}

.ftr-sns-tw {
	margin-right: 10px;
}

.l-ftr-title {
	position: relative;
	border-top: solid 1px #f9f8f6;
	border-bottom: solid 1px #f9f8f6;
	background: #ffffff;
}

.l-ftr-title {
	*zoom: 1;
}

.l-ftr-title:before,
.l-ftr-title:after {
	display: table;
	content: "";
}

.l-ftr-title:after {
	clear: both;
}

.l-title-title-text {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.ftr-title-text {
	position: relative;
	top: 50%;
	width: auto;
	margin-right: auto;
	margin-left: auto;
	padding: 2.60417%;
	font-family: YakuHanJP,"游ゴシック",YuGothic,Hiragino Kaku Gothic ProN,Hiragino Kaku Gothic Pro,"ＭＳ ゴシック",sans-serif;
	font-size: 225%;
	text-align: center;
	background-color: rgba(255, 255, 255, 0.8);
	    -webkit-transform: translateY(-50%);
	            transform: translateY(-50%);

	-ms-transform: translateY(-50%);
}

.ftr-title-text {
	*zoom: 1;
}

.ftr-title-text:before,
.ftr-title-text:after {
	display: table;
	content: "";
}

.ftr-title-text:after {
	clear: both;
}

.title-white {
	border-top: solid 1px #f1f1f1;
	border-bottom: solid 1px #f1f1f1;
	background: #ffffff;
}

.l-title-inr {
	position: relative;
	width: 94%;
	max-width: 1200px;
	height: 100%;
	margin-right: auto;
	margin-left: auto;
}

.ftr-title-text-left {
	max-width: 1200px;
	text-align: left;
}

.ftr-title-text-right {
	max-width: 1200px;
	text-align: left;
}

.ftr-title-text-right span {
	float: right;
}

.ftr-title-bg {
	display: block;
	max-width: 1920px;
	margin-right: auto;
	margin-left: auto;
	vertical-align: top;
}

.ftr-title {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}

.heading-level0 {
	padding: 8% 0;
	border-top: solid 1px #000000;
	font-size: 30px;
	font-size: 1.875rem;
	text-align: center;
}

.heading-level0.is-margin_top {
	margin-top: 15%;
}

.heading-level1 {
	padding-top: 10%;
	padding-bottom: 10%;
	font-size: 175%;
	font-weight: 700;
	text-align: center;
}

.heading-level2 {
	margin-bottom: 1em;
	padding-bottom: 6.5%;
	padding-bottom: 1em;
	border-bottom: solid 1px #cccccc;
	font-size: 175%;
}

.heading-level3 {
	padding-bottom: 1.6em;
	font-size: 125%;
	font-weight: 700;
	line-height: 1.8;
}

.heading-shoulder {
	display: block;
	padding-bottom: 0.3em;
	font-size: 64.28571%;
	font-weight: 400;
}

.l-btn-area {
	*zoom: 1;
}

.l-btn-area:before,
.l-btn-area:after {
	display: table;
	content: "";
}

.l-btn-area:after {
	clear: both;
}

.ftr-btn-blue {
	display: block;
	overflow: hidden;
	position: relative;
	z-index: 2;
	width: 50%;
	margin-right: auto;
	margin-left: auto;
	padding: 1.5em 0;
	border: solid 1px #369be2;
	color: #ffffff;
	font-size: 125%;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	text-align: center;
	background: #369be2;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.ftr-btn-blue:after {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	content: "";
	background: #ffffff;
	-webkit-transform: scale(0);
	    -ms-transform: scale(0);
	        transform: scale(0);
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;

	_opacity: 0;
	-ms-filter: "alpha(opacity=0)";
	    filter: alpha(opacity=0);
}

.ftr-btn-blue:hover {
	color: #369be2;
	text-decoration: none;
}

.ftr-btn-blue:hover:after {
	opacity: 1;
	-webkit-transform: scale(1);
	    -ms-transform: scale(1);
	        transform: scale(1);

	-ms-filter: "alpha(opacity=100)";
	    filter: alpha(opacity=100);
}

.ftr-btn-blue .s5-icon-window {
	position: absolute;
	top: 0.5em;
	right: 0.2em;
}

.btn-game-show {
	border: solid 1px #000000;
	background: #000000;
}

.zoom {
	display: block;
	overflow: hidden;
	position: relative;
	background: #000000;
}

.zoom:after {
	display: block;
	position: absolute;
	top: 50%;
	top: 70%;
	left: 50%;
	width: 60px;
	height: 60px;
	margin: -30px 0 0 -30px;
	content: "";
	background: url("../img/ico-zoom.png");
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;

	_opacity: 0;
	-ms-filter: "alpha(opacity=0)";
	    filter: alpha(opacity=0);
}

.zoom img {
	display: block;
	vertical-align: baseline;
	-webkit-transition: opacity 0.3s;
	-o-transition: opacity 0.3s;
	transition: opacity 0.3s;
}

.zoom:hover img {
	opacity: 0.5;

	-ms-filter: "alpha(opacity=50)";
	    filter: alpha(opacity=50);
}

.zoom:hover:after {
	opacity: 1;
	top: 50%;

	-ms-filter: "alpha(opacity=100)";
	    filter: alpha(opacity=100);
}

.ftr-btn-fade {
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.ftr-btn-fade:hover {
	opacity: 0.6;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;

	-ms-filter: "alpha(opacity=60)";
	    filter: alpha(opacity=60);
}

.ftr-par {
	margin-bottom: 2.2em;
}

.ftr-par02 {
	margin-bottom: 4.4em;
}

.ftr-p {
	line-height: 2;
}

.person {
	padding-top: 1em;
	font-size: 87.5%;
}

.person dd {
	line-height: 1.8;
}

.cf {
	*zoom: 1;
}

.cf:before,
.cf:after {
	display: table;
	content: "";
}

.cf:after {
	clear: both;
}

.person-right {
	float: right;
	width: 39%;
	margin-bottom: 5%;
	margin-left: 5%;
}

.person-right.w340 {
	width: 34%;
}

.person-right.w475 {
	width: 47.5%;
}

.person-right.w408 {
	width: 40.8%;
}

.person-left {
	float: left;
	width: 39%;
	margin-right: 5%;
	margin-bottom: 5%;
}

.person-left.w310 {
	width: 31%;
}

.person-left.w475 {
	width: 47.5%;
}

.person-left.mt10 {
	margin-bottom: 10%;
}

.person-profile {
	padding-top: 3.57143%;
	font-size: 87.5%;
	line-height: 1.8;
	text-align: left;
}

.right-box {
	float: right;
	width: 56%;
}

.right-box.w190 {
	width: 19%;
	margin-bottom: 5%;
	margin-left: 2.5%;
}

.left-box {
	float: left;
	width: 62%;
}

.left-box__end {
	margin-right: 0 !important;
}

.left-box.w320 {
	width: 32.32323%;
	margin-right: 1.5%;
	margin-bottom: 0;
}

.left-box.w480 {
	width: 47.5%;
	margin-right: 2.5%;
	margin-bottom: 0;
}

.left-box.w510 {
	width: 51%;
	margin-right: 1.5%;
	margin-bottom: 5%;
}

.left-box-486 {
	float: left;
	width: 48.6%;
	margin-right: 4.5%;
}

.thumb80 {
	width: 80%;
	margin-right: auto;
	margin-left: auto;
}

.fit-image {
	width: 100%;
}

.fit-image.mt20 {
	padding-top: 3.57143%;
}

.ftr-list2 {
	*zoom: 1;
}

.ftr-list2:before,
.ftr-list2:after {
	display: table;
	content: "";
}

.ftr-list2:after {
	clear: both;
}

.ftr-list2-list {
	float: left;
	width: 48.6%;
	text-align: left;
}

.ftr-list2-list.is-left {
	margin-right: 2.8%;
}

.ftr-list3 {
	*zoom: 1;
}

.ftr-list3:before,
.ftr-list3:after {
	display: table;
	content: "";
}

.ftr-list3:after {
	clear: both;
}

.ftr-list3-list {
	float: left;
	width: 31%;
	margin-right: 2.8%;
	text-align: left;
}

.ftr-list3-list.is-last {
	margin-right: 0;
}

.name {
	padding-top: 0.7em;
	font-size: 78%;
	line-height: 1.8;
	text-align: center;
}

.note {
	display: block;
	padding-top: 0.5em;
	font-size: 81.25%;
}

.note--list li {
	padding-left: 1.5em;
	font-size: 81.25%;
	text-indent: -1.5em;
}

.hr-glay {
	margin: 0;
	padding: 0;
	border: 0;
	border-top: solid 1px #efefef;
}

.ftr-hr {
	margin: 0;
	padding: 0;
	border: 0;
	border-top: solid 2px #efefef;
}

.ico {
	display: inline-block;
	font-family: icon;
	font-variant: normal;
	font-weight: 400;
	font-style: normal;
	line-height: 1;
	vertical-align: baseline;
	text-transform: none;

	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	speak: none;
}

.ico-right:before {
	margin: 0 0.2em 0 0;
	content: "\f0da";
}

.ico-down:before {
	content: "\f0d7";
}

.ico-close:before {
	content: "\f00d";
}

.ico-border {
	display: block;
	position: absolute;
	top: 0;
	top: 0.75em;
	left: 0;
	width: 1em;
	height: 1px;
	border-top: solid 1px #000000;
}

.strong {
	font-weight: 700;
}

.sup {
	font-size: 70%;
}

.afont {
	font-family: sans-serif;
}

.is-block {
	display: block;
}

.is-min {
	font-size: 80%;
}

.profile-text {
	margin-top: 0.5em;
}

.mora-link {
	color: #4472c4;
	font-weight: 700;
}

.mora-link:hover {
	color: #4472c4;
}

.youtube-title {
	font-weight: 700;
	text-align: center;
}

.youtube {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}

.youtube iframe,
.youtube video {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}

.img--title {
	margin-bottom: 3.33333%;
	font-size: 137.5%;
	font-weight: 700;
	text-align: center;
}

.img-center {
	text-align: center;
}

.img-note {
	padding-top: 1.66667%;
	font-size: 87.5%;
	line-height: 1.8;
	text-align: center;
}

.img-note.left {
	text-align: left;
}

.mt1 {
	margin-top: 1.8em;
}

.s-contents {
	margin-right: auto;
	margin-left: auto;
	padding: 5%;
	border: solid 1px #efefef;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

.l-fb {
	padding: 70px 0 100px;
	text-align: right;
}

.l-fb {
	*zoom: 1;
}

.l-fb:before,
.l-fb:after {
	display: table;
	content: "";
}

.l-fb:after {
	clear: both;
}

.l-fb h5 {
	padding-bottom: 0.3em;
	color: #4d63b8;
	font-size: 11px;
	font-size: 0.6875rem;
}

.ftr-fb {
	float: right;
	padding-right: 1em;
	text-align: left;
}

.ftr-fb-area {
	display: inline-block;
}

.l-sns {
	padding: 0.6em 0;
}

.ftr-sns {
	float: right;
	line-height: 1;
}

.ftr-sns {
	*zoom: 1;
}

.ftr-sns:before,
.ftr-sns:after {
	display: table;
	content: "";
}

.ftr-sns:after {
	clear: both;
}

.ftr-sns-list {
	float: left;
	height: 25px;
}

.ftr-sns-fb {
	margin-right: 10px;
}

.ftr-sns-tw {
	margin-right: 10px;
}

.c0 img {
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}

.c0 .l-ftr-title {
	border: 0;
	background: #ffffff;
}

.c0 .l-title-inr {
	max-width: 1400px;
	text-align: left;
}

.c0 .ftr-title-bg {
	float: right;
	max-width: auto;
	max-width: inherit;
	margin: 0;
}

.c0-main {
	padding-top: 7.5%;
	padding-bottom: 8.33333%;
}

.c0-main p {
	width: 83.16667%;
	margin: 0 auto;
}

.c0-main p.ftr-par {
	margin-bottom: 2.2em;
}

.c0-text {
	display: table;
	position: absolute;
	bottom: 0;
	left: 5.20833%;
	height: 100%;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	color: #ffffff;
	font-family: YuGothic,Yu Gothic,sans-serif;
	font-size: 40px;
	font-size: 2.08333vw;
	text-align: center;
}

.c0-text span {
	display: table-cell;
	vertical-align: middle;
}

.c0-text span span {
	display: block;
	font-size: 34px;
	font-size: 1.77083vw;
}

.l-ftr-topnavi {
	padding: 4.58333% 0 2.91667%;
	background: #f1f1f1;
}

.ftr-topnavi {
	letter-spacing: -0.4em;
	text-align: center;
}

.ftr-topnavi-list {
	display: inline-block;
	width: 49.16667%;
	margin-right: 1.66667%;
	margin-bottom: 1.66667%;
	letter-spacing: normal;
}

.ftr-topnavi-list-bottom {
	margin-bottom: 0;
}

.ftr-topnavi-list-end {
	margin-right: 0;
}

.ftr-topnavi-btn {
	display: table;
	position: relative;
	width: 100%;
	border-bottom: solid 2px #bdbdbd;
	line-height: 1.5;
	text-align: center;
	background: #ffffff;
	-webkit-transition-property: color,background;
	-o-transition-property: color,background;
	transition-property: color,background;
	-webkit-transition-duration: 0.5s,0.5s;
	     -o-transition-duration: 0.5s,0.5s;
	        transition-duration: 0.5s,0.5s;
}

.ftr-topnavi-btn .sp {
	display: none;
}

.ftr-topnavi-btn .inr {
	display: table-cell;
	height: 80px;
	padding: 0 0.5em;
	vertical-align: middle;
}

.ftr-topnavi-btn:hover {
	color: #ffffff;
	text-decoration: none;
	background: #5787f4;
	-webkit-transition-property: color,background;
	-o-transition-property: color,background;
	transition-property: color,background;
	-webkit-transition-duration: 0.5s,0.5s;
	     -o-transition-duration: 0.5s,0.5s;
	        transition-duration: 0.5s,0.5s;
}

.ftr-topnavi-btn .ico {
	position: absolute;
	bottom: 0;
	left: 50%;
	margin-left: -0.5em;
}

.c1 .ftr-title-text {
	position: absolute;
	left: 0;
	width: 66.25%;
	color: #ffffff;
	text-align: left;
	background: 0;
}

.c2 .ftr-title-text {
	position: absolute;
	left: 0;
	width: 66.25%;
	color: #2f353d;
	text-align: left;
	background: 0;
}

.c3 .ftr-title-text {
	display: table;
	width: auto;
	min-width: 600px;
	color: #2f353d;
	background: 0;
}

.c4 .ftr-title-text {
	position: absolute;
	left: 0;
	width: 54.16667%;
	color: #2f353d;
	text-align: left;
	background: 0;
}

.c5 .ftr-title-text {
	display: table;
	width: auto;
	min-width: 600px;
	color: #2f353d;
	background: 0;
}

.c5-movie-wrap {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}

.c5-movie-wrap iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}

.c6 .ftr-title-text {
	position: absolute;
	left: 0;
	width: 43.33333%;
	color: #2f353d;
	text-align: left;
	text-shadow: #f1d9c1 1px 0 10px;
	background: 0;
}

.c7 {
	padding-bottom: 40px;
}

.c7 .shop--list {
	letter-spacing: -0.4em;
}

.c7 .shop--list li {
	display: inline-block;
	width: 45%;
	margin-bottom: 0.5em;
	letter-spacing: normal;
}

.c7 .shop--list li:nth-child(2n) {
	margin-left: 10%;
}

.c7 .shop--list li dl {
	display: table;
	width: 100%;
}

.c7 .shop--list li dl dt,
.c7 .shop--list li dl dd {
	display: table-cell;
	vertical-align: middle;
}

.c7 .shop--list li dl dt {
	width: 12em;
}

.product-title {
	margin-bottom: 6.66667%;
	padding-bottom: 1em;
	font-size: 137.5%;
	font-weight: 700;
	text-align: center;
}

.c9-title__area {
	padding-top: 90px;
	padding-bottom: 60px;
}

.c9-title {
	padding-bottom: 1.3em;
	font-size: 28px;
	font-size: 1.75rem;
	font-weight: 700;
	text-align: center;
}

.c9-title2 {
	padding-bottom: 1.3em;
	font-size: 143.75%;
	font-weight: 700;
	text-align: left;
}

.c9-table {
	margin-bottom: 90px;
}

.c9-table dt {
	margin-bottom: 0.5em;
	font-size: 112.5%;
	font-weight: 700;
}

.c9-table dd {
	margin-bottom: 2.66667%;
}

.album {
	margin-bottom: 70px;
}

.album {
	*zoom: 1;
}

.album:before,
.album:after {
	display: table;
	content: "";
}

.album:after {
	clear: both;
}

.album-thumb {
	float: right;
	width: 33.33333%;
}

.album-main2 {
	float: left;
	width: 72.08333%;
}

.album-main2 dt {
	margin-bottom: 0.4em;
	font-weight: 700;
}

.album-main2 dd {
	margin-bottom: 1.2em;
}

.album-thumb2 {
	float: right;
	width: 24.5%;
}

.album-main {
	float: left;
	width: 62.5%;
}

.album-title {
	margin-bottom: 0.7em;
	font-size: 143.75%;
	font-weight: 700;
}

.album-list {
	position: relative;
	padding-left: 2.5em;
	line-height: 2;
}

.album-list.album-list2 {
	padding-left: 8em;
}

.album-list.album-list2 .number {
	font-weight: 700;
}

.album-list .number {
	position: absolute;
	left: 0;
}

#shop-list {
	margin-bottom: 3.33333%;
}

.mora .product-title {
	margin-bottom: 35px;
	padding-bottom: 0;
}

.mora .ftr-btn-black {
	padding: 2.3em 0;
	font-size: 131.25%;
}

.mora-lead {
	padding: 40px 0;
	font-weight: 700;
	line-height: 2;
	text-align: center;
}

.c5-list--carrier {
	margin: 0 auto;
	padding: 0;
	border: 0;
	font-size: 0;
}

.c5-list--carrier .c5-list__header--carrier {
	margin: 0 0 30px;
	padding-left: 20px;
	border-left: solid 4px #f5683a;
}

.c5-list--carrier .c5-listItem4__productNameGroup--carrier {
	margin-bottom: 16px;
	text-align: center;
}

.c5-list--carrier .c5-listItem4__buttonContainer--carrier {
	margin-top: 10px;
}

.c5-header2.c5-header2--listInner {
	margin-right: 15px;
	margin-left: 15px;
}

.c5-bgGray {
	padding: 10px;
	background: #f3f4f6;
}

.c5-emergencyInfo {
	display: table;
	width: 100%;
	margin: 20px 0;
	border: solid 1px #83838f;
	background: #ffffff;
}

.c5-emergencyInfo__header {
	display: table-cell;
	padding: 16px 30px 10px;
	text-align: center;
	vertical-align: middle;
}

.c5-emergencyInfo__heading {
	padding-bottom: 5px;
	font-size: 14px;
	font-size: 0.875rem;
	white-space: nowrap;
}

.c5-emergencyInfo__body {
	display: table-cell;
	width: 100%;
	padding: 16px 30px 10px 0;
	font-size: 14px;
	font-size: 0.875rem;
	vertical-align: middle;
}

.c5-emergencyInfo__body .c5-emergencyInfo__bodyInner {
	padding-left: 30px;
	border-left: solid 1px #83838f;
}

.c5-emergencyInfo__body .c5-emergencyInfo__bodyInner p {
	margin: 0 0 5px;
}

.c800 {
	margin-top: 0;
	padding-bottom: 40px;
}

.c800 .contents-block__block {
	margin-top: 5%;
}

.c800 .banner {
	text-align: center;
}

.c800 .banner .product-title {
	margin-bottom: 35px;
	padding-bottom: 0;
}

.c800 .banner img {
	max-width: 900px;
	margin: 0 auto;
}

.c5-banner {
	position: relative;
	margin-bottom: 10%;
}

.c5-banner {
	*zoom: 1;
}

.c5-banner:before,
.c5-banner:after {
	display: table;
	content: "";
}

.c5-banner:after {
	clear: both;
}

.c5-banner .banner-thumb {
	float: left;
	width: 45.33333%;
	text-align: center;
}

.c5-banner .banner-main {
	float: right;
	width: 54.66667%;
	padding: 0 2.5%;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	text-align: left;
}

.c5-banner .banner-main .banner-text {
	padding-top: 1em;
	padding-bottom: 1.5em;
	text-align: left;
}

.c5-banner .banner-main .banner-text p {
	padding: 1em 0;
}

.c5-banner .banner-main a {
	display: inline-block;
	width: auto;
	padding: 0.8em 2em;
	font-size: 100%;
}

.c5-banner .banner-main a .ico {
	margin-right: 0.4em;
}

.c5-banner .banner-main .s5-listItem4 {
	width: 33.333%;
}

.c5-banner .banner-main .banner-ico {
	display: inline-block;
	padding: 0.2em 0.7em;
	color: #ffffff;
	font-size: 11px;
	font-size: 0.6875rem;
	line-height: 1;
	background-color: #cb5442;
}

.c5-banner .banner-main .banner-ico.blue {
	background-color: #6a9bc2;
}

.c5-banner .banner-main .banner-ico.orange {
	background-color: #e47048;
}

.c5-banner .banner-main .banner-title {
	margin-top: 0.3em;
	padding: 0;
	border: 0;
	font-size: 17px;
	font-size: 1.0625rem;
	font-weight: 700;
	line-height: 1.6;
	text-align: left;
}

.c5-banner .banner-main .banner-title span {
	display: block;
	padding-top: 1em;
	font-size: 12px;
	font-size: 0.75rem;
	font-weight: 400;
}

.c5-banner .thumb {
	display: block;
	max-width: 1090px;
	margin-bottom: 1em;
}

.product-title {
	margin-bottom: 6.66667%;
	padding-bottom: 1em;
	font-size: 137.5%;
	font-weight: 700;
	text-align: center;
}

.banner-thumb {
	float: left;
	width: 52.5%;
}

.banner-thumb .banner-main {
	float: right;
	width: 35.83333%;
	text-align: center;
}

.c10 {
	color: #000000;
}

.c10 .ftr-title-text {
	position: relative;
	top: 50%;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	color: #ffffff;
	font-family: YakuHanJP,"游ゴシック",YuGothic,Hiragino Kaku Gothic ProN,Hiragino Kaku Gothic Pro,"ＭＳ ゴシック",sans-serif;
	font-size: 225%;
	text-align: center;
	background: 0;
	    -webkit-transform: translateY(-50%);
	            transform: translateY(-50%);

	-ms-transform: translateY(-50%);
}

.c10 .ftr-title-text {
	*zoom: 1;
}

.c10 .ftr-title-text:before,
.c10 .ftr-title-text:after {
	display: table;
	content: "";
}

.c10 .ftr-title-text:after {
	clear: both;
}

.c10 .l-ftr-title {
	background: #151515;
}

.c10 .ftr-title-text {
	color: #ffffff;
}

.ftr-section-impression {
	padding-bottom: 50px;
}

.ftr-section-impression .ftr-title {
	width: 61%;
	max-width: 736px;
}

.ftr-imp-question {
	font-size: 90%;
}

.ftr-imp-question .label {
	margin: 0 0.2em;
	color: #34aaf6;
}

.l-other-link {
	padding: 1em 0;
}

.l-other-link {
	*zoom: 1;
}

.l-other-link:before,
.l-other-link:after {
	display: table;
	content: "";
}

.l-other-link:after {
	clear: both;
}

.other-link-list {
	float: left;
	width: 23%;
	margin-right: 2.5%;
	margin-bottom: 0.4em;
}

.other-link-list a {
	display: block;
	font-size: 90%;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.other-link-list a:hover {
	opacity: 0.6;
	text-decoration: none;

	-ms-filter: "alpha(opacity=60)";
	    filter: alpha(opacity=60);
}

.other-link-list img {
	display: block;
	width: 100%;
	margin-bottom: 0.3em;
	border: solid 1px #cccccc;
}

.other-link-list-end {
	margin-right: 0;
}

.ftr-footer-note {
	margin: 30px 0;
	color: #999999;
	font-size: 11px;
	font-size: 0.6875rem;
}

.c10-twitter {
	margin-top: 4em;
	margin-bottom: 4em;
	padding-bottom: 1.5em;
	background: #efefef;
}

.c10-twitter {
	*zoom: 1;
}

.c10-twitter:before,
.c10-twitter:after {
	display: table;
	content: "";
}

.c10-twitter:after {
	clear: both;
}

.c10-twitter-inr {
	position: relative;
	width: 80%;
	margin-right: auto;
	margin-left: auto;
}

.c10-twitter-title {
	padding: 1.5em 0;
	text-align: center;
}

.twitter-timeline {
	width: 100% !important;
}

.c10-enquete {
	margin-bottom: 13.33333%;
}

.c100 {
	margin-bottom: 5%;
	color: #000000;
}

.c100 .l-ftr-title {
	border-top: solid 1px #f1f1f1;
	border-bottom: solid 1px #f1f1f1;
	background: #f6f6f6;
}

.c100 .l-title-inr {
	max-width: 1200px;
	text-align: left;
}

.c100 .ftr-title-text {
	width: auto;
	padding: 0;
	color: #2f353d;
	font-size: 225%;
	text-align: left;
	text-shadow: #ffffff 1px 1px 4px,#ffffff -1px 1px 4px,#ffffff 1px -1px 4px,#ffffff -1px -1px 4px,#ffffff 1px 1px 4px,#ffffff -1px 1px 4px,#ffffff 1px -1px 4px,#ffffff -1px -1px 4px;
	background: 0;
}

.c100 .ftr-title-text span {
	display: inline-block;
	text-align: center;
}

.c100-lead {
	padding-top: 7%;
	padding-bottom: 3%;
}

.l-navi {
	position: relative;
	z-index: 1000;
	width: 100%;
	max-width: 1260px;
}

#ftr-navi {
	position: absolute;
	right: 0;
	width: 15px;
}

.ftr-navi-list {
	position: relative;
	margin-bottom: 1px;
}

.ftr-navi-list {
	*zoom: 1;
}

.ftr-navi-list:before,
.ftr-navi-list:after {
	display: table;
	content: "";
}

.ftr-navi-list:after {
	clear: both;
}

.ftr-navi-list span {
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	margin-top: -0.75em;
	font-family: "游ゴシック",YuGothic,Hiragino Kaku Gothic ProN,Hiragino Kaku Gothic Pro,"ＭＳ ゴシック",sans-serif;
	letter-spacing: 0;
	text-align: center;
	vertical-align: middle;
}

.ftr-navi-list .ftr-navi-over {
	display: table;
	position: absolute;
	top: 0;
	right: -360px;
	width: 360px;
	height: 60px;
	font-size: 90%;
	font-size: 13px;
	font-size: 0.8125rem;
	text-align: left;
	background: #000000;
	background: #799ef7;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}

.ftr-navi-list .ftr-navi-over p {
	display: table-cell;
	position: relative;
	padding-left: 2em;
	vertical-align: middle;
}

.ftr-navi-list .ftr-navi-over .ico {
	display: block;
	position: absolute;
	top: 0;
	top: 50%;
	left: 0;
	left: 10px;
	margin-top: -0.5em;
}

.ftr-navi-btn {
	display: block;
	overflow: hidden;
	position: relative;
	float: right;
	width: 15px;
	height: 60px;
	padding: 0;
	color: #ffffff;
	text-align: center;
	background: #9c9ca6;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.ftr-navi-btn:hover,
.ftr-navi-btn.current {
	color: #ffffff;
	text-decoration: none;
	background: #799ef7;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.ftr-navi-btn.current {
	cursor: default;
}

.ftr-navi-btn.open {
	width: 360px;
}

.ftr-navi-btn.open span {
	display: none;
}

.ftr-navi-btn.open .ftr-navi-over {
	opacity: 1;
	right: 0;

	-ms-filter: "alpha(opacity=100)";
	    filter: alpha(opacity=100);
}

@media screen and (max-width: 1200px) {
	#feature {
		min-width: auto;
	}
}

@media screen and (max-width: 767px) {
	#feature {
		overflow-x: hidden;
		font-size: 13px;
		font-size: 0.8125rem;
	}
	.sp,
	.l-sp {
		display: block;
	}
	.pc,
	.l-pc {
		display: none;
	}
	.l-contents {
		width: auto;
		padding: 0 20px;
	}
	.l-contents-full {
		display: block;
		width: auto;
		padding: 0 20px;
	}
	.l-contents-inr {
		width: auto;
	}
	.contents-block {
		padding-top: 11.71875%;
	}
	.ftr-title-text {
		position: absolute;
		right: 0;
		left: 0;
		width: 100%;
		min-width: 0;
		padding: 0;
		text-align: center;
		background: 0;
		-webkit-transform: translateY(0);
		    -ms-transform: translateY(0);
		        transform: translateY(0);
	}
	.ftr-title-text span {
		display: block;
	}
	.l-title-inr {
		width: 90%;
	}
	.ftr-title-bg {
		width: 100%;
	}
	.heading-level0 {
		font-size: 16px;
		font-size: 1rem;
	}
	.heading-level1 {
		padding-top: 7.14286%;
		padding-bottom: 7.14286%;
		font-size: 123.07692%;
	}
	.heading-level2 {
		padding-bottom: 1.2em;
		font-size: 123.07692%;
		font-weight: 700;
		text-align: center;
	}
	.heading-level3 {
		padding-bottom: 1.1em;
		font-size: 100%;
		font-weight: 700;
	}
	.ftr-btn-blue {
		width: auto;
	}
	.zoom {
		overflow: visible;
	}
	.zoom:after {
		display: block;
		opacity: 1;
		position: absolute;
		top: 100%;
		top: auto;
		right: -10px;
		bottom: -10px;
		left: 100%;
		left: auto;
		width: 20px;
		height: 20px;
		margin: 0;
		content: "";
		background: url("../img/ico-zoom-sp.png");
		background-size: 20px 20px;

		-ms-filter: "alpha(opacity=100)";
		    filter: alpha(opacity=100);
	}
	.zoom:hover img {
		opacity: 0.5;

		-ms-filter: "alpha(opacity=50)";
		    filter: alpha(opacity=50);
	}
	.zoom:hover:after {
		top: auto;
	}
	.zoom-gp {
		padding-bottom: 22px;
		background: #ffffff;
	}
	.zoom-gp:after {
		display: block;
		position: absolute;
		top: 100%;
		top: auto;
		right: 7px;
		bottom: 0;
		left: 100%;
		left: auto;
		width: 43px;
		height: 18px;
		content: "";
		background: url("../img/ico-zoom-sp-gp.png");
		background-size: 43px 18px;
	}
	.ftr-par {
		margin-bottom: 1.3em;
	}
	.ftr-par02 {
		margin-bottom: 2.6em;
	}
	.person-right {
		width: 48.21429% !important;
		margin-bottom: 1em;
		margin-left: 3.57143%;
	}
	.person-left {
		width: 48.21429% !important;
		margin-right: 3.57143%;
		margin-bottom: 1em !important;
	}
	.right-box.w190 {
		float: right;
		width: 33.92857% !important;
	}
	.right-box {
		float: none;
		width: auto;
	}
	.left-box {
		float: none;
		width: auto;
	}
	.left-box.w320 {
		float: left;
		width: 50% !important;
	}
	.left-box.w320.sp100 {
		float: none;
		width: auto !important;
		margin-right: 0;
		padding-top: 1.66667%;
	}
	.left-box.w480 {
		float: left;
		width: 50% !important;
	}
	.left-box.w480.sp100 {
		float: none;
		width: auto !important;
		margin-right: 0;
	}
	.left-box.w510 {
		float: left;
		width: 50% !important;
	}
	.left-box.w510.sp100 {
		float: none;
		width: auto !important;
		margin-right: 0;
	}
	.ftr-list2-list {
		float: none;
		width: 100%;
	}
	.ftr-list2-list.is-left {
		margin-right: 0;
		margin-bottom: 1em;
	}
	.ftr-list3-list {
		float: none;
		width: 100%;
		margin-bottom: 0.8em;
	}
	.ftr-list3-list.is-left {
		margin-right: 0;
		margin-bottom: 1em;
	}
	.img--title {
		font-size: 112.5%;
	}
	.l-fb {
		padding-top: 30px;
		padding-bottom: 40px;
	}
	.ftr-fb {
		float: none;
		padding: 0;
		text-align: left;
	}
	.ftr-sns {
		float: none;
		padding: 1em 0;
	}
	.ftr-title-text {
		position: absolute;
		right: 0;
		left: 0;
		width: 100%;
		min-width: 0;
		padding: 0;
		text-align: center;
		background: 0;
		-webkit-transform: translateY(0);
		    -ms-transform: translateY(0);
		        transform: translateY(0);
	}
	.ftr-title-text span {
		display: block;
	}
	.l-title-inr {
		width: 90%;
	}
	.ftr-title-bg {
		width: 100%;
	}
	.heading-level0 {
		font-size: 16px;
		font-size: 1rem;
	}
	.heading-level1 {
		padding-top: 7.14286%;
		padding-bottom: 7.14286%;
		font-size: 123.07692%;
	}
	.heading-level2 {
		padding-bottom: 1.2em;
		font-size: 123.07692%;
		font-weight: 700;
		text-align: center;
	}
	.heading-level3 {
		padding-bottom: 1.1em;
		font-size: 100%;
		font-weight: 700;
	}
	.ftr-btn-blue {
		width: auto;
	}
	.zoom {
		overflow: visible;
	}
	.zoom:after {
		display: block;
		opacity: 1;
		position: absolute;
		top: 100%;
		top: auto;
		right: -10px;
		bottom: -10px;
		left: 100%;
		left: auto;
		width: 20px;
		height: 20px;
		margin: 0;
		content: "";
		background: url("../img/ico-zoom-sp.png");
		background-size: 20px 20px;

		-ms-filter: "alpha(opacity=100)";
		    filter: alpha(opacity=100);
	}
	.zoom:hover img {
		opacity: 0.5;

		-ms-filter: "alpha(opacity=50)";
		    filter: alpha(opacity=50);
	}
	.zoom:hover:after {
		top: auto;
	}
	.zoom-gp {
		padding-bottom: 22px;
		background: #ffffff;
	}
	.zoom-gp:after {
		display: block;
		position: absolute;
		top: 100%;
		top: auto;
		right: 7px;
		bottom: 0;
		left: 100%;
		left: auto;
		width: 43px;
		height: 18px;
		content: "";
		background: url("../img/ico-zoom-sp-gp.png");
		background-size: 43px 18px;
	}
	.ftr-par {
		margin-bottom: 1.3em;
	}
	.ftr-par02 {
		margin-bottom: 2.6em;
	}
	.person-right {
		width: 48.21429% !important;
		margin-bottom: 1em;
		margin-left: 3.57143%;
	}
	.person-left {
		width: 48.21429% !important;
		margin-right: 3.57143%;
		margin-bottom: 1em !important;
	}
	.right-box.w190 {
		float: right;
		width: 33.92857% !important;
	}
	.right-box {
		float: none;
		width: auto;
	}
	.left-box {
		float: none;
		width: auto;
	}
	.left-box.w320 {
		float: left;
		width: 50% !important;
	}
	.left-box.w320.sp100 {
		float: none;
		width: auto !important;
		margin-right: 0;
		padding-top: 1.66667%;
	}
	.left-box.w480 {
		float: left;
		width: 50% !important;
	}
	.left-box.w480.sp100 {
		float: none;
		width: auto !important;
		margin-right: 0;
	}
	.left-box.w510 {
		float: left;
		width: 50% !important;
	}
	.left-box.w510.sp100 {
		float: none;
		width: auto !important;
		margin-right: 0;
	}
	.ftr-list2-list {
		float: none;
		width: 100%;
	}
	.ftr-list2-list.is-left {
		margin-right: 0;
		margin-bottom: 1em;
	}
	.ftr-list3-list {
		float: none;
		width: 100%;
		margin-bottom: 0.8em;
	}
	.ftr-list3-list.is-left {
		margin-right: 0;
		margin-bottom: 1em;
	}
	.img--title {
		font-size: 112.5%;
	}
	.l-fb {
		padding-top: 30px;
		padding-bottom: 40px;
	}
	.ftr-fb {
		float: none;
		padding: 0;
		text-align: left;
	}
	.ftr-sns {
		float: none;
		padding: 1em 0;
	}
	.c0 .l-title-inr {
		padding-top: 8.92857%;
		padding-bottom: 3.57143%;
		text-align: center;
	}
	.c0-main {
		padding-top: 8.59375%;
		padding-bottom: 11.71875%;
	}
	.c0-main p {
		width: 100%;
	}
	.c0-text {
		left: auto;
		width: 100%;
		min-width: 0;
		height: 50%;
		color: #ffffff;
		line-height: auto;
		text-align: center;
	}
	.c0-text span {
		display: table-cell;
		padding: 7.8125% 0 0;
		vertical-align: middle;
	}
	.c1 .ftr-title-text {
		position: absolute;
		top: 66.66667%;
		left: 0;
		width: 100% !important;
		min-width: 0;
		height: 50%;
		text-align: center;
	}
	.c2 .ftr-title-text {
		position: absolute;
		top: 66.66667%;
		left: 0;
		width: 100% !important;
		min-width: 0;
		height: 50%;
		text-align: center;
	}
	.c3 .ftr-title-text {
		position: absolute;
		top: 66.66667%;
		left: 0;
		width: 100% !important;
		min-width: 0;
		height: 50%;
		text-align: center;
	}
	.c4 .ftr-title-text {
		position: absolute;
		top: 66.66667%;
		left: 0;
		width: 100% !important;
		min-width: 0;
		height: 50%;
	}
	.c5 .ftr-title-text {
		position: absolute;
		top: 43.33333%;
		left: 0;
		width: 100% !important;
		min-width: 0;
		height: 50%;
	}
	.c6 .ftr-title-text {
		position: absolute;
		top: 66.66667%;
		left: 0;
		width: 100% !important;
		min-width: 0;
		height: 50%;
		text-align: center;
	}
	.c7 .shop--list li {
		width: 100%;
		margin-left: 0 !important;
	}
	.c7 .shop--list li dl dt,
	.c7 .shop--list li dl dd {
		display: block;
	}
	.c7 .shop--list li dl dt {
		width: 100%;
	}
	.product-title {
		margin-bottom: 8.92857%;
	}
	.c9-title__area {
		padding-top: 15.17857%;
		padding-bottom: 7.14286%;
	}
	.c9-title {
		font-size: 16px;
		font-size: 1rem;
	}
	.c9-title2 {
		font-size: 16px;
		font-size: 1rem;
	}
	.c9-table {
		margin-bottom: 17.85714%;
	}
	.album {
		margin-bottom: 17.85714%;
	}
	.album2 {
		margin-bottom: 0;
	}
	.album-thumb {
		float: none;
		width: 100%;
		margin-bottom: 1.5em;
	}
	.album-main2 {
		width: 100%;
	}
	.album-thumb2 {
		display: block;
		float: none;
		width: 58.92857%;
		max-width: 230px;
		margin: 0 auto 1.5em;
	}
	.album-main {
		width: 100%;
	}
	.album-title {
		margin-bottom: 1em;
		font-size: 100%;
	}
	.mora .product-title {
		margin-bottom: 5.35714%;
	}
	.mora-lead {
		padding: 5.35714%;
	}
	.c5-list--carrier {
		width: auto;
	}
	.c800 {
		padding-bottom: 50px;
	}
	.c5-banner .banner-thumb {
		float: none;
		width: 92.85714%;
		margin-right: auto;
		margin-bottom: 1.5em;
		margin-left: auto;
	}
	.c5-banner .banner-main {
		position: relative;
		top: 0;
		float: none;
		width: 100%;
		padding-top: 0;
		-webkit-transform: translateY(0);
		    -ms-transform: translateY(0);
		        transform: translateY(0);
	}
	.c5-banner .banner-main .banner-text {
		padding-top: 1em;
		padding-bottom: 1em;
	}
	.c5-banner .banner-main a {
		width: 100%;
		padding-right: 0;
		padding-left: 1em;
	}
	.c5-banner .banner-main .banner-title {
		font-size: 115.38462%;
		text-align: center;
	}
	.c5-banner .ftr-p {
		margin-bottom: 1.2em;
	}
	.product-title {
		margin-bottom: 8.92857%;
	}
	.banner-thumb .banner-main {
		float: none;
		width: 100%;
	}
	.c10 .ftr-title-text .ftr-title-text {
		position: relative;
		top: 50%;
		width: auto;
		margin-right: auto;
		margin-left: auto;
		color: #ffffff;
		font-family: YakuHanJP,"游ゴシック",YuGothic,Hiragino Kaku Gothic ProN,Hiragino Kaku Gothic Pro,"ＭＳ ゴシック",sans-serif;
		font-size: 225%;
		text-align: center;
		background: 0;
		    -webkit-transform: translateY(-50%);
		            transform: translateY(-50%);

		-ms-transform: translateY(-50%);
	}
	.c10 .ftr-title-text .ftr-title-text {
		zoom: 1;
	}
	.c10 .ftr-title-text .ftr-title-text:before,
	.c10 .ftr-title-text .ftr-title-text:after {
		display: table;
		content: "";
	}
	.c10 .ftr-title-text .ftr-title-text:after {
		clear: both;
	}
	.ftr-section-impression {
		padding-bottom: 0;
	}
	.ftr-section-impression .ftr-title {
		width: 87.5%;
	}
	.l-other-link {
		max-width: 300px;
		margin-right: auto;
		margin-left: auto;
	}
	.other-link-list {
		width: 100%;
	}
	.ftr-footer-note {
		margin: 15px 0;
	}
	.c10-twitter-inr {
		width: 90%;
	}
	.c10-enquete {
		margin-bottom: 12.5%;
	}
	.c100 .l-title-inr {
		width: 90%;
		text-align: center;
	}
	.c100 .ftr-title-text {
		width: auto;
	}
	.c100 .ftr-title-text {
		position: absolute;
		top: auto;
		bottom: 1em;
		text-align: left;
		-webkit-transform: translateY(0);
		    -ms-transform: translateY(0);
		        transform: translateY(0);
	}
	.c100 .ftr-title-text span {
		text-align: left;
	}
}

@media screen and (max-width: 960px) {
	.ftr-title-text {
		font-size: 187.5%;
	}
	.ftr-title-text {
		font-size: 187.5%;
	}
	.l-ftr-topnavi {
		padding: 0;
	}
	.ftr-topnavi {
		width: 93%;
		margin-right: auto;
		margin-left: auto;
		padding: 1.2em 0;
	}
	.ftr-topnavi-list {
		width: 100%;
		margin-right: 0;
		margin-bottom: 0.3em;
	}
	.ftr-topnavi-btn {
		min-height: 4em;
		line-height: 1.5;
		text-align: left;
	}
	.ftr-topnavi-btn .pc {
		display: none;
	}
	.ftr-topnavi-btn .sp {
		display: block;
	}
	.ftr-topnavi-btn .inr {
		position: relative;
		width: 93%;
		height: auto;
		margin-right: auto;
		margin-left: auto;
		padding: 0.5em 0 0.5em 2em;
	}
	.ftr-topnavi-btn .inr.is-oneline {
		padding-top: 1.25em;
		padding-bottom: 1.25em;
	}
	.ftr-topnavi-btn .ico {
		top: 50%;
		bottom: auto;
		left: 0;
		margin-top: -0.5em;
		margin-left: 0.75em;
	}
	.c10 .ftr-title-text {
		font-size: 143.75%;
	}
	.c100 .ftr-title-text {
		font-size: 143.75%;
	}
}

@media screen and (max-width: 768px) {
	.ftr-title-text {
		font-size: 187.5%;
	}
	.ftr-title-text {
		font-size: 187.5%;
	}
	.c10 .ftr-title-text {
		font-size: 187.5%;
	}
	.c100 .ftr-title-text {
		font-size: 187.5%;
	}
}

@media screen and (max-width: 425px) {
	.ftr-title-text {
		font-size: 30px;
		font-size: 4.6875vw;
	}
	.ftr-title-text {
		font-size: 30px;
		font-size: 4.6875vw;
	}
	.c0-text {
		font-size: 112.5%;
	}
}

@media screen and (max-width: 639px) {
	.c5-list--carrier {
		padding: 10px;
	}
	.c5-list--carrier .c5-listItem4__productNameGroup--carrier {
		margin-bottom: 10px;
		text-align: left;
	}
	.c5-list--carrier .c5-listItem4__buttonContainer--carrier {
		display: block;
		clear: right;
		float: right;
		width: 50%;
		margin-top: 0;
		margin-bottom: 12px;
		padding: 0 6px 0 0;
		-webkit-box-sizing: border-box;
		        box-sizing: border-box;
	}
	.c5-emergencyInfo {
		display: block;
		width: auto;
		margin: 20px 0;
	}
	.c5-emergencyInfo__header {
		display: block;
		padding: 8px 0 0;
		font-size: 12px;
	}
	.c5-emergencyInfo__heading {
		padding-bottom: 0;
	}
	.c5-emergencyInfo__body {
		display: block;
		width: auto;
		padding: 10px;
		font-size: 10px;
		font-size: 0.71429rem;
	}
	.c5-emergencyInfo__body .c5-emergencyInfo__bodyInner {
		padding-left: 0;
		border-left: 0;
	}
	.c5-banner .banner-main .s5-listItem4 {
		display: block;
		width: auto;
		padding: 0 6px;
	}
}

@media screen and (max-width: 500px) {
	.c10 .ftr-title-text {
		font-size: 119.23077%;
	}
	.c100 .ftr-title-text {
		font-size: 119.23077%;
	}
}

.c5-bannerArea {
	padding: 50px 0 0;
}

.c5-bannerArea .c5-bannerArea_inner {
	max-width: 1000px;
	margin-right: auto;
	margin-left: auto;
	background: url("../img/module/banner_twitter_follow.jpg");
	background-repeat: no-repeat;
	background-position: 0 -60px;
	background-size: 50%;
}

.c5-bannerArea .c5-bannerArea_inner .c5-banner-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.65) 0, transparent 20%);
	background:         -webkit-gradient(linear, left top, right top, color-stop(0, rgba(0, 0, 0, 0.65)), color-stop(20%, rgba(0, 0, 0, 0)));
	background:         -webkit-linear-gradient(left, rgba(0, 0, 0, 0.65) 0, rgba(0, 0, 0, 0) 20%);
	background:         -o-linear-gradient(left, rgba(0, 0, 0, 0.65) 0, rgba(0, 0, 0, 0) 20%);
	background:         linear-gradient(to right, rgba(0, 0, 0, 0.65) 0, rgba(0, 0, 0, 0) 20%);

	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a6000000',endColorstr='#00000000',GradientType=1);
}

.c5-bannerArea .c5-bannerArea_inner .c5-banner-row .c5-banner-row_col {
	width: calc(100% / 2);
}

.c5-bannerArea .c5-bannerArea_inner .c5-banner-row .c5-banner-row_col:first-child {
	padding-left: 15px;
	color: #ffffff;
	font-size: 25px;
	font-weight: bold;
	text-align: left;
}

.c5-bannerArea .c5-bannerArea_inner .c5-banner-row .c5-banner-row_col:last-child {
	padding: 60px 10px;
	text-align: center;
	background: #4e4e4e;
}

.c5-bannerArea .c5-bannerArea_inner .c5-banner-row .c5-banner-row_col:last-child p {
	margin-bottom: 10px;
	color: #ffffff;
	line-height: 1.5;
	text-align: center;
}

.c5-bannerArea .c5-bannerArea_inner .c5-banner-row .c5-banner-row_col:last-child p a {
	color: #ffffff;
	text-decoration: underline;
}

.c5-bannerArea .c5-bannerArea_inner .c5-banner-row .c5-banner-row_col:last-child p a:hover {
	opacity: 0.5;
	        transition: opacity ease 0.5s;

	-webkit-transition: opacity ease 0.5s;
	   -moz-transition: opacity ease 0.5s;
	    -ms-transition: opacity ease 0.5s;
	     -o-transition: opacity ease 0.5s;
}

@media screen and (max-width: 840px) {
	.c5-bannerArea .c5-bannerArea_inner .c5-banner-row .c5-banner-row_col:first-child {
		font-size: 18px;
	}
	.c5-bannerArea .c5-bannerArea_inner .c5-banner-row .c5-banner-row_col:last-child {
		padding: 30px 10px;
	}
}

@media screen and (max-width: 767px) {
	.c5-bannerArea .c5-bannerArea_inner {
		max-width: 675px;
	}
}

@media screen and (max-width: 670px) {
	.c5-bannerArea .c5-bannerArea_inner {
		background-position: -140px -50px;
		background-size: 80%;
	}
	.c5-bannerArea .c5-bannerArea_inner .c5-banner-row {
		background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.65) 0, transparent 50%);
		background:         -webkit-gradient(linear, left top, right top, color-stop(0, rgba(0, 0, 0, 0.65)), color-stop(50%, rgba(0, 0, 0, 0)));
		background:         -webkit-linear-gradient(left, rgba(0, 0, 0, 0.65) 0, rgba(0, 0, 0, 0) 50%);
		background:         -o-linear-gradient(left, rgba(0, 0, 0, 0.65) 0, rgba(0, 0, 0, 0) 50%);
		background:         linear-gradient(to right, rgba(0, 0, 0, 0.65) 0, rgba(0, 0, 0, 0) 50%);

		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a6000000',endColorstr='#00000000',GradientType=1);
	}
}

@media screen and (max-width: 490px) {
	.c5-bannerArea .c5-bannerArea_inner {
		background-position: -140px 0;
		background-size: 100%;
	}
}

.c5-details-recommended .l-contents {
	max-width: 100%;
}

.c5-common-head {
	margin: 60px auto;
	color: #4e4e4e;
	font-size: 45px;
	text-align: center;
}

img {
	max-width: 100%;
}

@media screen and (max-width: 1400px) {
	.c5-common-head {
		margin-bottom: 4.28571vw;
		font-size: 3.21429vw;
	}
}

@media screen and (max-width: 767px) {
	.c5-common-head {
		margin-bottom: 30px;
	}
}

.c5-common-head img {
	height: 30px;
}

@media screen and (max-width: 1400px) {
	.c5-common-head img {
		height: 2.14286vw;
	}
}

@media screen and (max-width: 767px) {
	.c5-common-head img {
		height: 20px;
	}
}

.c5-container {
	position: relative;
}

.c5-common-inner {
	margin: 0 auto;
}

.c5-common-inner.c5-common-inner--xs {
	max-width: 800px;
}

.c5-common-inner.c5-common-inner--sm {
	max-width: 900px;
}

.c5-common-inner.c5-common-inner--md {
	max-width: 1000px;
}

.c5-common-inner.c5-common-inner--lg {
	max-width: 1280px;
}

.c5-common-inner.c5-common-inner--xl {
	max-width: 1400px;
}

.c5-common-bg--gray {
	background-color: #ebebeb;
}

.c5-common-bg--white {
	background-color: #ffffff;
}

.c5-common-btn {
	display: inline-block;
	width: 100%;
	max-width: 350px;
	padding: 30px 0;
	border: 1px solid #4e4e4e;
	text-align: center;
	        transition: opacity 0.4s;

	-webkit-transition: opacity 0.4s;
	   -moz-transition: opacity 0.4s;
	     -o-transition: opacity 0.4s;
}

@media screen and (max-width: 1400px) {
	.c5-common-btn {
		max-width: 25vw;
		padding: 2.14286vw 0;
		font-size: 1.14286vw;
	}
}

@media screen and (max-width: 767px) {
	.c5-common-btn {
		max-width: 300px;
		padding: 20px 0;
		font-size: 14px;
	}
}

.c5-common-btn:hover {
	opacity: 0.7;
}

.c5-common-btn img {
	width: 30px;
}

@media screen and (max-width: 1400px) {
	.c5-common-btn img {
		width: 2.14286vw;
	}
}

@media screen and (max-width: 979px) {
	.c5-common-btn img {
		width: 3.06122vw;
	}
}

@media screen and (max-width: 767px) {
	.c5-common-btn img {
		width: 35px;
	}
}

.c5-common-list--col1 .c5-new {
	width: 12.5%;
}

@media screen and (max-width: 767px) {
	.c5-common-list--col1 .c5-new {
		width: 17.33333%;
	}
}

.c5-cat-list .c5-cat {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin-right: 20px;
}

@media screen and (max-width: 767px) {
	.c5-cat-list .c5-cat {
		margin-right: 15px;
	}
}

.c5-cat-list .c5-cat:last-child {
	margin-right: 0;
}

.c5-cat-list .c5-cat-icon,
.c5-cat-list .c5-cat-text {
	line-height: 1;
	vertical-align: bottom;
}

.c5-cat-list .c5-cat-icon {
	display: inline-block;
	margin-right: 10px;
	font-size: 26px;
}

@media screen and (max-width: 1400px) {
	.c5-cat-list .c5-cat-icon {
		margin-right: 0.71429vw;
		font-size: 1.85714vw;
	}
}

@media screen and (max-width: 767px) {
	.c5-cat-list .c5-cat-icon {
		margin-right: 10px;
		font-size: 15px;
	}
}

.c5-cat-list .c5-cat-text {
	font-size: 18px;
}

@media screen and (max-width: 1400px) {
	.c5-cat-list .c5-cat-text {
		font-size: 1.28571vw;
	}
}

@media screen and (max-width: 767px) {
	.c5-cat-list .c5-cat-text {
		font-size: 12px;
	}
}

.c5-cat-list.c5-cat--white .c5-cat-icon,
.c5-cat-list.c5-cat--white .c5-cat-text {
	color: #ffffff;
}

.c5-cat-list.c5-cat--black .c5-cat-icon {
	color: #4e4e4e;
}

.c5-cat-list.c5-cat--black .c5-cat-text {
	color: #000000;
}

.c5-article-info {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.c5-article-info .c5-tags {
	margin-right: 30px;
}

@media screen and (max-width: 1400px) {
	.c5-article-info .c5-tags {
		margin-right: 2.14286vw;
	}
}

.c5-article-info .c5-tags .c5-tag {
	color: #6e737b;
	font-size: 12px;
	text-decoration: none;
}

@media screen and (max-width: 1400px) {
	.c5-article-info .c5-tags .c5-tag {
		font-size: 0.85714vw;
	}
}

@media screen and (max-width: 767px) {
	.c5-article-info .c5-tags .c5-tag {
		font-size: 12px;
	}
}

.c5-article-info .c5-tags .c5-tag + .c5-tag {
	margin-left: 8px;
}

@media screen and (max-width: 1400px) {
	.c5-article-info .c5-tags .c5-tag + .c5-tag {
		margin-left: 0.57143vw;
	}
}

@media screen and (max-width: 767px) {
	.c5-article-info .c5-tags .c5-tag + .c5-tag {
		margin-left: 8px;
	}
}

.c5-article-info .c5-date {
	color: #6e737b;
	font-size: 12px;
}

@media screen and (max-width: 1400px) {
	.c5-article-info .c5-date {
		font-size: 0.85714vw;
	}
}

@media screen and (max-width: 767px) {
	.c5-article-info .c5-date {
		font-size: 12px;
	}
}

.c5-common-list--col1 .c5-new {
	width: 12.5%;
}

@media screen and (max-width: 767px) {
	.c5-common-list--col1 .c5-new {
		width: 17.33333%;
	}
}

.c5-common-list--col1 .c5-common-list-item {
	display: table;
	table-layout: fixed;
	width: 100%;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	vertical-align: top;
	background-color: #ffffff;
}

.c5-common-list--col1 .c5-common-list-item {
	display: table;
	table-layout: fixed;
	width: 100%;
	        box-sizing: border-box;
	vertical-align: top;
	background-color: #ffffff;

	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
}

.c5-common-list--col1 .c5-common-list-col {
	display: table-cell;
	vertical-align: top;
}

@media screen and (max-width: 767px) {
	.c5-common-list--col1 .c5-common-list-col {
		display: block;
	}
}

.c5-common-list--col1 .c5-common-list-col.c5-common-list-col--left {
	width: 58%;
}

@media screen and (max-width: 767px) {
	.c5-common-list--col1 .c5-common-list-col.c5-common-list-col--left {
		width: auto;
	}
}

.c5-common-list--col1 .c5-common-list-col.c5-common-list-col--right {
	width: auto;
	padding: 45px;
	background-color: #ebebeb;
}

@media screen and (max-width: 1400px) {
	.c5-common-list--col1 .c5-common-list-col.c5-common-list-col--right {
		padding: 3.21429vw;
	}
}

@media screen and (max-width: 767px) {
	.c5-common-list--col1 .c5-common-list-col.c5-common-list-col--right {
		padding: 10px;
		background-color: #ffffff;
	}
}

.c5-common-list--col1 .c5-common-list-thumb {
	display: block;
	overflow: hidden;
	position: relative;
	line-height: 0;
}

.c5-common-list--col1 .c5-common-list-thumb:before,
.c5-common-list--col1 .c5-common-list-thumb:after {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: "";
	background-color: rgba(255, 255, 255, 0.1);
	        transition:         -webkit-transform 0.4s ease;
	        -o-transition:         transform 0.4s ease;
	        transition:         transform 0.4s ease;
	        transition:         transform 0.4s ease, -webkit-transform 0.4s ease;

	-webkit-transition: -webkit-transform 0.4s ease;
	   -moz-transition:    -moz-transform 0.4s ease;
	     -o-transition:      -o-transform 0.4s ease;
}

.c5-common-list--col1 .c5-common-list-thumb:before {
	        transform: translate(-100%, -100%);

	-webkit-transform: translate(-100%, -100%);
	   -moz-transform: translate(-100%, -100%);
	    -ms-transform: translate(-100%, -100%);
}

.c5-common-list--col1 .c5-common-list-thumb:after {
	        transform: translate(100%, 100%);

	-webkit-transform: translate(100%, 100%);
	   -moz-transform: translate(100%, 100%);
	    -ms-transform: translate(100%, 100%);
}

.c5-common-list--col1 .c5-common-list-thumb:hover {
	opacity: 1;
}

.c5-common-list--col1 .c5-common-list-thumb:hover:before,
.c5-common-list--col1 .c5-common-list-thumb:hover:after {
	        transform: translate(0);
	        transition:         -webkit-transform 0.4s ease;
	        -o-transition:         transform 0.4s ease;
	        transition:         transform 0.4s ease;
	        transition:         transform 0.4s ease, -webkit-transform 0.4s ease;

	-webkit-transform: translate(0);
	   -moz-transform: translate(0);
	    -ms-transform: translate(0);
	-webkit-transition: -webkit-transform 0.4s ease;
	   -moz-transition:    -moz-transform 0.4s ease;
	     -o-transition:      -o-transform 0.4s ease;
}

.c5-common-list--col1 .c5-common-list-title {
	display: block;
	margin-bottom: 30px;
	font-size: 25px;
	line-height: 1.5;
}

@media screen and (max-width: 1400px) {
	.c5-common-list--col1 .c5-common-list-title {
		margin-bottom: 2.14286vw;
		font-size: 1.14286vw;
	}
}

@media screen and (max-width: 767px) {
	.c5-common-list--col1 .c5-common-list-title {
		margin-bottom: 5px;
		font-size: 18px;
	}
}

.c5-common-list--col1 .c5-common-list-desc {
	font-size: 16px;
	line-height: 1.5;
}

@media screen and (max-width: 1400px) {
	.c5-common-list--col1 .c5-common-list-desc {
		font-size: 1.14286vw;
	}
}

@media screen and (max-width: 767px) {
	.c5-common-list--col1 .c5-common-list-desc {
		display: none;
		font-size: 13px;
	}
}

.c5-common-list--col1 .c5-cat-list {
	margin-bottom: 20px;
}

@media screen and (max-width: 1400px) {
	.c5-common-list--col1 .c5-cat-list {
		margin-bottom: 1.42857vw;
	}
}

@media screen and (max-width: 767px) {
	.c5-common-list--col1 .c5-cat-list {
		margin-bottom: 5px;
	}
}

.c5-common-list--col1 .c5-cat-list .c5-cat-icon,
.c5-common-list--col1 .c5-cat-list .c5-cat-text {
	display: inline-block;
}

.c5-common-list--col1 .c5-cat-list .c5-cat-icon {
	font-size: 24px;
}

@media screen and (max-width: 1400px) {
	.c5-common-list--col1 .c5-cat-list .c5-cat-icon {
		font-size: 1.71429vw;
	}
}

@media screen and (max-width: 767px) {
	.c5-common-list--col1 .c5-cat-list .c5-cat-icon {
		font-size: 15px;
	}
}

.c5-common-list--col1 .c5-cat-list .c5-cat-text {
	font-size: 18px;
}

@media screen and (max-width: 1400px) {
	.c5-common-list--col1 .c5-cat-list .c5-cat-text {
		font-size: 1.28571vw;
	}
}

@media screen and (max-width: 767px) {
	.c5-common-list--col1 .c5-cat-list .c5-cat-text {
		font-size: 12px;
		white-space: nowrap;
	}
}

.c5-common-list--col1 .c5-article-info {
	margin-bottom: 50px;
}

@media screen and (max-width: 1400px) {
	.c5-common-list--col1 .c5-article-info {
		margin-bottom: 3.57143vw;
	}
}

@media screen and (max-width: 767px) {
	.c5-common-list--col1 .c5-article-info {
		margin-bottom: 0;
	}
}

.c5-common-list--col3 {
	letter-spacing: -6px;
}

.c5-common-list--col3 .c5-new {
	width: 19.17808%;
}

@media screen and (max-width: 767px) {
	.c5-common-list--col3 .c5-new {
		width: 27.02703%;
	}
}

.c5-common-list--col3 .c5-common-list-item {
	display: inline-block;
	width: 32%;
	margin-right: 2%;
	padding: 20px;
	        box-sizing: border-box;
	letter-spacing: normal;
	vertical-align: top;
	background-color: #ffffff;

	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
}

@media screen and (max-width: 1400px) {
	.c5-common-list--col3 .c5-common-list-item {
		padding: 1.42857vw;
	}
}

@media screen and (max-width: 767px) {
	.c5-common-list--col3 .c5-common-list-item {
		width: 48%;
		padding: 0;
	}
}

@media screen and (max-width: 767px) {
	.c5-common-list--col3 .c5-common-list-item:nth-child(2n) {
		margin-right: 0;
	}
}

.c5-common-list--col3 .c5-common-list-item:nth-child(3n) {
	margin-right: 0;
}

@media screen and (max-width: 767px) {
	.c5-common-list--col3 .c5-common-list-item:nth-child(3n) {
		margin-right: 2%;
	}
}

.c5-common-list--col3 .c5-common-list-item + .c5-common-list-item {
	margin-top: 2%;
}

.c5-common-list--col3 .c5-common-list-item:nth-of-type(-n+3) {
	margin-top: 0;
}

@media screen and (max-width: 767px) {
	.c5-common-list--col3 .c5-common-list-item:nth-of-type(-n+3) {
		margin-top: 2%;
	}
}

.c5-common-list--col3 .c5-common-list-item:nth-of-type(-n+2) {
	margin-top: 0;
}

@media screen and (max-width: 767px) {
	.c5-common-list--col3 .c5-common-list-item:nth-of-type(-n+2) {
		margin-top: 0;
	}
}

@media screen and (max-width: 767px) {
	.c5-common-list--col3 .c5-common-list-text {
		padding: 10px;
	}
}

.c5-common-list--col3 .c5-common-list-thumb {
	display: block;
	overflow: hidden;
	position: relative;
	line-height: 0;
}

.c5-common-list--col3 .c5-common-list-thumb:before,
.c5-common-list--col3 .c5-common-list-thumb:after {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: "";
	background-color: rgba(255, 255, 255, 0.1);
	        transition:         -webkit-transform 0.4s ease;
	        -o-transition:         transform 0.4s ease;
	        transition:         transform 0.4s ease;
	        transition:         transform 0.4s ease, -webkit-transform 0.4s ease;

	-webkit-transition: -webkit-transform 0.4s ease;
	   -moz-transition:    -moz-transform 0.4s ease;
	     -o-transition:      -o-transform 0.4s ease;
}

.c5-common-list--col3 .c5-common-list-thumb:before {
	        transform: translate(-100%, -100%);

	-webkit-transform: translate(-100%, -100%);
	   -moz-transform: translate(-100%, -100%);
	    -ms-transform: translate(-100%, -100%);
}

.c5-common-list--col3 .c5-common-list-thumb:after {
	        transform: translate(100%, 100%);

	-webkit-transform: translate(100%, 100%);
	   -moz-transform: translate(100%, 100%);
	    -ms-transform: translate(100%, 100%);
}

.c5-common-list--col3 .c5-common-list-thumb:hover {
	opacity: 1;
}

.c5-common-list--col3 .c5-common-list-thumb:hover:before,
.c5-common-list--col3 .c5-common-list-thumb:hover:after {
	        transform: translate(0);
	        transition:         -webkit-transform 0.4s ease;
	        -o-transition:         transform 0.4s ease;
	        transition:         transform 0.4s ease;
	        transition:         transform 0.4s ease, -webkit-transform 0.4s ease;

	-webkit-transform: translate(0);
	   -moz-transform: translate(0);
	    -ms-transform: translate(0);
	-webkit-transition: -webkit-transform 0.4s ease;
	   -moz-transition:    -moz-transform 0.4s ease;
	     -o-transition:      -o-transform 0.4s ease;
}

.c5-common-list--col3 .c5-common-list-title {
	display: block;
	margin-top: 20px;
	font-size: 18px;
	line-height: 1.5;
}

@media screen and (max-width: 1400px) {
	.c5-common-list--col3 .c5-common-list-title {
		margin-top: 1.42857vw;
		font-size: 1.28571vw;
	}
}

@media screen and (max-width: 767px) {
	.c5-common-list--col3 .c5-common-list-title {
		margin-top: 10px;
		font-size: 13px;
	}
}

.c5-common-list--col3 .c5-common-list-desc {
	margin-top: 15px;
	font-size: 14px;
	line-height: 1.5;
}

@media screen and (max-width: 1400px) {
	.c5-common-list--col3 .c5-common-list-desc {
		margin-top: 1.07143vw;
		font-size: 1vw;
	}
}

@media screen and (max-width: 767px) {
	.c5-common-list--col3 .c5-common-list-desc {
		display: none;
		margin-top: 10px;
		font-size: 13px;
	}
}

.c5-common-list--col3 .c5-cat-list {
	margin-bottom: 15px;
}

@media screen and (max-width: 1400px) {
	.c5-common-list--col3 .c5-cat-list {
		margin-bottom: 1.07143vw;
	}
}

@media screen and (max-width: 767px) {
	.c5-common-list--col3 .c5-cat-list {
		margin-bottom: 10px;
	}
}

.c5-common-list--col3 .c5-cat-list .c5-cat-icon,
.c5-common-list--col3 .c5-cat-list .c5-cat-text {
	display: inline-block;
}

.c5-common-list--col3 .c5-cat-list .c5-cat-icon {
	font-size: 24px;
}

@media screen and (max-width: 1400px) {
	.c5-common-list--col3 .c5-cat-list .c5-cat-icon {
		font-size: 1.71429vw;
	}
}

@media screen and (max-width: 767px) {
	.c5-common-list--col3 .c5-cat-list .c5-cat-icon {
		font-size: 15px;
	}
}

.c5-common-list--col3 .c5-cat-list .c5-cat-text {
	font-size: 18px;
}

@media screen and (max-width: 1400px) {
	.c5-common-list--col3 .c5-cat-list .c5-cat-text {
		font-size: 1.28571vw;
	}
}

@media screen and (max-width: 767px) {
	.c5-common-list--col3 .c5-cat-list .c5-cat-text {
		font-size: 12px;
		white-space: nowrap;
	}
}

.c5-common-list--col3 .c5-article-info {
	margin-top: 10px;
}

@media screen and (max-width: 1400px) {
	.c5-common-list--col3 .c5-article-info {
		display: block;
		margin-top: 0.71429vw;
	}
}

@media screen and (max-width: 1400px) {
	.c5-common-list--col3 .c5-article-info .c5-tags {
		margin: 0;
	}
}

@media screen and (max-width: 767px) {
	.c5-common-list--col3 .c5-article-info .c5-date {
		margin-top: 5px;
	}
}

.c5-common-list--col4 {
	letter-spacing: -6px;
}

.c5-common-list--col4 .c5-new {
	width: 24.2915%;
}

@media screen and (max-width: 767px) {
	.c5-common-list--col4 .c5-new {
		width: 31.49606%;
	}
}

.c5-common-list--col4 .c5-common-list-item {
	display: inline-block;
	width: 23.5%;
	height: auto !important;
	margin-right: 2%;
	padding: 12px;
	        box-sizing: border-box;
	letter-spacing: normal;
	vertical-align: top;
	background-color: #ffffff;

	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
}

@media screen and (max-width: 1400px) {
	.c5-common-list--col4 .c5-common-list-item {
		padding: 1.42857vw;
	}
}

@media screen and (max-width: 767px) {
	.c5-common-list--col4 .c5-common-list-item {
		display: table;
		table-layout: fixed;
		width: 100%;
		margin-right: 0 !important;
		padding: 10px;
	}
}

.c5-common-list--col4 .c5-common-list-item:nth-child(4n) {
	margin-right: 0;
}

.c5-common-list--col4 .c5-common-list-item + .c5-common-list-item {
	margin-top: 2%;
}

.c5-common-list--col4 .c5-common-list-item:nth-of-type(-n+4) {
	margin-top: 0;
}

@media screen and (max-width: 767px) {
	.c5-common-list--col4 .c5-common-list-item:nth-of-type(-n+4) {
		margin-top: 2%;
	}
}

@media screen and (max-width: 767px) {
	.c5-common-list--col4 .c5-common-list-col {
		display: table-cell;
		vertical-align: middle;
	}
}

@media screen and (max-width: 767px) {
	.c5-common-list--col4 .c5-common-list-col.c5-common-list-col--left {
		width: 40%;
		padding-right: 12px;
	}
}

@media screen and (max-width: 767px) {
	.c5-common-list--col4 .c5-common-list-col.c5-common-list-col--right {
		width: auto;
	}
}

.c5-common-list--col4 .c5-common-list-thumb {
	display: block;
	overflow: hidden;
	position: relative;
	line-height: 0;
}

.c5-common-list--col4 .c5-common-list-thumb:before,
.c5-common-list--col4 .c5-common-list-thumb:after {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: "";
	background-color: rgba(255, 255, 255, 0.1);
	        transition:         -webkit-transform 0.4s ease;
	        -o-transition:         transform 0.4s ease;
	        transition:         transform 0.4s ease;
	        transition:         transform 0.4s ease, -webkit-transform 0.4s ease;

	-webkit-transition: -webkit-transform 0.4s ease;
	   -moz-transition:    -moz-transform 0.4s ease;
	     -o-transition:      -o-transform 0.4s ease;
}

.c5-common-list--col4 .c5-common-list-thumb:before {
	        transform: translate(-100%, -100%);

	-webkit-transform: translate(-100%, -100%);
	   -moz-transform: translate(-100%, -100%);
	    -ms-transform: translate(-100%, -100%);
}

.c5-common-list--col4 .c5-common-list-thumb:after {
	        transform: translate(100%, 100%);

	-webkit-transform: translate(100%, 100%);
	   -moz-transform: translate(100%, 100%);
	    -ms-transform: translate(100%, 100%);
}

.c5-common-list--col4 .c5-common-list-thumb:hover {
	opacity: 1;
}

.c5-common-list--col4 .c5-common-list-thumb:hover:before,
.c5-common-list--col4 .c5-common-list-thumb:hover:after {
	        transform: translate(0);
	        transition:         -webkit-transform 0.4s ease;
	        -o-transition:         transform 0.4s ease;
	        transition:         transform 0.4s ease;
	        transition:         transform 0.4s ease, -webkit-transform 0.4s ease;

	-webkit-transform: translate(0);
	   -moz-transform: translate(0);
	    -ms-transform: translate(0);
	-webkit-transition: -webkit-transform 0.4s ease;
	   -moz-transition:    -moz-transform 0.4s ease;
	     -o-transition:      -o-transform 0.4s ease;
}

.c5-common-list--col4 .c5-common-list-title {
	display: block;
	margin-top: 10px;
	font-size: 16px;
	line-height: 1.5;
}

@media screen and (max-width: 1400px) {
	.c5-common-list--col4 .c5-common-list-title {
		margin-top: 0.71429vw;
		font-size: 1.14286vw;
	}
}

@media screen and (max-width: 767px) {
	.c5-common-list--col4 .c5-common-list-title {
		margin-top: 10px;
		font-size: 13px;
	}
}

.c5-common-list--col4 .c5-cat-list {
	margin-bottom: 10px;
}

@media screen and (max-width: 1400px) {
	.c5-common-list--col4 .c5-cat-list {
		margin-bottom: 0.71429vw;
	}
}

@media screen and (max-width: 767px) {
	.c5-common-list--col4 .c5-cat-list {
		margin-bottom: 10px;
	}
}

.c5-common-list--col4 .c5-cat-list .c5-cat-icon,
.c5-common-list--col4 .c5-cat-list .c5-cat-text {
	display: inline-block;
}

.c5-common-list--col4 .c5-cat-list .c5-cat-icon {
	font-size: 24px;
}

@media screen and (max-width: 1400px) {
	.c5-common-list--col4 .c5-cat-list .c5-cat-icon {
		font-size: 1.71429vw;
	}
}

@media screen and (max-width: 767px) {
	.c5-common-list--col4 .c5-cat-list .c5-cat-icon {
		font-size: 15px;
	}
}

.c5-common-list--col4 .c5-cat-list .c5-cat-text {
	font-size: 14px;
}

@media screen and (max-width: 1400px) {
	.c5-common-list--col4 .c5-cat-list .c5-cat-text {
		font-size: 1vw;
	}
}

@media screen and (max-width: 767px) {
	.c5-common-list--col4 .c5-cat-list .c5-cat-text {
		font-size: 12px;
		white-space: nowrap;
	}
}

.c5-common-list--col4 .c5-article-info {
	display: block;
	margin-top: 10px;
}

@media screen and (max-width: 1400px) {
	.c5-common-list--col4 .c5-article-info {
		margin-top: 0.71429vw;
	}
}

.c5-common-list--col4 .c5-article-info .c5-tags {
	margin: 0;
}

.c5-common-list--col4 .c5-article-info .c5-date {
	margin-top: 10px;
}

@media screen and (max-width: 1400px) {
	.c5-common-list--col4 .c5-article-info .c5-date {
		margin-top: 0.71429vw;
	}
}

@media screen and (max-width: 767px) {
	.c5-common-list--col4 .c5-article-info .c5-date {
		margin-top: 5px;
	}
}



.c5-article-info {
	display:         -webkit-inline-box;
	display:         -ms-inline-flexbox;
	display:         inline-flex;
	        -webkit-box-align: center;
	            -ms-flex-align: center;
	                align-items: center;

	-webkit-align-items: center;
}

.c5-article-info .c5-tags {
	margin-right: 30px;
}

@media screen and (max-width: 1400px) {
	.c5-article-info .c5-tags {
		margin-right: 2.14286vw;
	}
}

.c5-article-info .c5-tags .c5-tag {
	color: #6e737b;
	font-size: 12px;
	text-decoration: none;
}

@media screen and (max-width: 1400px) {
	.c5-article-info .c5-tags .c5-tag {
		font-size: 0.85714vw;
	}
}

@media screen and (max-width: 767px) {
	.c5-article-info .c5-tags .c5-tag {
		font-size: 12px;
	}
}

.c5-article-info .c5-tags .c5-tag + .c5-tag {
	margin-left: 8px;
}

@media screen and (max-width: 1400px) {
	.c5-article-info .c5-tags .c5-tag + .c5-tag {
		margin-left: 0.57143vw;
	}
}

@media screen and (max-width: 767px) {
	.c5-article-info .c5-tags .c5-tag + .c5-tag {
		margin-left: 8px;
	}
}

.c5-article-info .c5-date {
	color: #6e737b;
	font-size: 12px;
}

@media screen and (max-width: 1400px) {
	.c5-article-info .c5-date {
		font-size: 0.85714vw;
	}
}

@media screen and (max-width: 767px) {
	.c5-article-info .c5-date {
		font-size: 12px;
	}
}

.c5-recommended {
	background-color: #0a0a0a;
}

.c5-recommended .c5-tag {
	color: #ffffff !important;
}

.c5-recommended .c5-date {
	color: #ffffff !important;
}

.c5-recommended .c5-recommended-row {
	display: table;
	table-layout: fixed;
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 30px 80px;
	        box-sizing: border-box;

	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
}

@media screen and (max-width: 1400px) {
	.c5-recommended .c5-recommended-row {
		padding: 2.14286vw 5.71429vw;
	}
}

@media screen and (max-width: 767px) {
	.c5-recommended .c5-recommended-row {
		display: block;
		width: auto;
		padding: 0;
	}
}

.c5-recommended .c5-recommended-col {
	display: table-cell;
	        box-sizing: border-box;
	vertical-align: top;

	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
}

@media screen and (max-width: 767px) {
	.c5-recommended .c5-recommended-col {
		display: block;
		width: auto;
	}
}

.c5-recommended .c5-recommended-img {
	width: auto;
}

.c5-recommended .c5-recommended-img .c5-new {
	width: 9.2915%;
}

@media screen and (max-width: 767px) {
	.c5-recommended .c5-recommended-img .c5-new {
		width: 15.49606%;
	}
}

@media screen and (max-width: 767px) {
	.c5-recommended .c5-recommended-img {
		margin-bottom: 10px;
	}
}

.c5-recommended .c5-recommended-img .c5-recommended-img-thumb {
	display: inline-block;
	position: relative;
	line-height: 0;
}

.c5-recommended .c5-recommended-img .c5-recommended-img-thumb a {
	display: block;
	overflow: hidden;
	position: relative;
	line-height: 0;
}

.c5-recommended .c5-recommended-img .c5-recommended-img-thumb a:before,
.c5-recommended .c5-recommended-img .c5-recommended-img-thumb a:after {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: "";
	background-color: rgba(255, 255, 255, 0.1);
	        transition:         -webkit-transform 0.4s ease;
	        -o-transition:         transform 0.4s ease;
	        transition:         transform 0.4s ease;
	        transition:         transform 0.4s ease, -webkit-transform 0.4s ease;

	-webkit-transition: -webkit-transform 0.4s ease;
	   -moz-transition:    -moz-transform 0.4s ease;
	     -o-transition:      -o-transform 0.4s ease;
}

.c5-recommended .c5-recommended-img .c5-recommended-img-thumb a:before {
	        transform: translate(-100%, -100%);

	-webkit-transform: translate(-100%, -100%);
	   -moz-transform: translate(-100%, -100%);
	    -ms-transform: translate(-100%, -100%);
}

.c5-recommended .c5-recommended-img .c5-recommended-img-thumb a:after {
	        transform: translate(100%, 100%);

	-webkit-transform: translate(100%, 100%);
	   -moz-transform: translate(100%, 100%);
	    -ms-transform: translate(100%, 100%);
}

.c5-recommended .c5-recommended-img .c5-recommended-img-thumb a:hover {
	opacity: 1;
}

.c5-recommended .c5-recommended-img .c5-recommended-img-thumb a:hover:before,
.c5-recommended .c5-recommended-img .c5-recommended-img-thumb a:hover:after {
	        transform: translate(0);
	        transition:         -webkit-transform 0.4s ease;
	        -o-transition:         transform 0.4s ease;
	        transition:         transform 0.4s ease;
	        transition:         transform 0.4s ease, -webkit-transform 0.4s ease;

	-webkit-transform: translate(0);
	   -moz-transform: translate(0);
	    -ms-transform: translate(0);
	-webkit-transition: -webkit-transform 0.4s ease;
	   -moz-transition:    -moz-transform 0.4s ease;
	     -o-transition:      -o-transform 0.4s ease;
}

.c5-recommended .c5-recommended-img .c5-recommended-img-thumb img {
	width: 100%;
}

.c5-recommended .c5-recommended-img .c5-recommended-img-desc {
	margin-top: 20px;
}

@media screen and (max-width: 1400px) {
	.c5-recommended .c5-recommended-img .c5-recommended-img-desc {
		margin-top: 1.42857vw;
	}
}

@media screen and (max-width: 767px) {
	.c5-recommended .c5-recommended-img .c5-recommended-img-desc {
		margin-top: 10px;
		padding: 0 10px;
	}
}

.c5-recommended .c5-recommended-img .c5-recommended-img-content {
	position: absolute;
	top: 20px;
	left: 50%;
	width: 100%;
	line-height: normal;
	text-align: center;
	        transform: translate(-50%, 0);

	-webkit-transform: translate(-50%, 0);
	   -moz-transform: translate(-50%, 0);
	    -ms-transform: translate(-50%, 0);
}

.c5-recommended .c5-recommended-img .c5-recommended-img-head {
	display:         -webkit-inline-box;
	display:         -ms-inline-flexbox;
	display:         inline-flex;
	        -webkit-box-pack: justify;
	            -ms-flex-pack: justify;
	                justify-content: space-between;
	        -webkit-box-align: center;
	            -ms-flex-align: center;
	                align-items: center;
	width: 400px;
	margin-bottom: 40px;
	padding: 0 60px;
	color: #ffffff;
	font-size: 40px;
	text-align: center;

	-webkit-align-items: center;
	-webkit-justify-content: space-between;
}

@media screen and (max-width: 1400px) {
	.c5-recommended .c5-recommended-img .c5-recommended-img-head {
		width: 28.57143vw;
		margin-bottom: 2.85714vw;
		padding: 0 4.28571vw;
		font-size: 2.85714vw;
	}
}

@media screen and (max-width: 767px) {
	.c5-recommended .c5-recommended-img .c5-recommended-img-head {
		width: 205px;
		margin-bottom: 30px;
		padding: 0 35px;
		font-size: 20px;
	}
}

.c5-recommended .c5-recommended-img .c5-recommended-img-head img {
	height: 30px;
}

@media screen and (max-width: 1400px) {
	.c5-recommended .c5-recommended-img .c5-recommended-img-head img {
		height: 2.14286vw;
	}
}

@media screen and (max-width: 767px) {
	.c5-recommended .c5-recommended-img .c5-recommended-img-head img {
		height: 20px;
	}
}

.c5-recommended .c5-recommended-img .c5-recommended-img-head:after,
.c5-recommended .c5-recommended-img .c5-recommended-img-head:before {
	display: block;
	width: 30px;
	height: 50px;
	content: "";
	background-image: url("../images/img_slash_white.svg");
	background-repeat: no-repeat;
	background-position: center;
}

@media screen and (max-width: 1400px) {
	.c5-recommended .c5-recommended-img .c5-recommended-img-head:after,
	.c5-recommended .c5-recommended-img .c5-recommended-img-head:before {
		width: 2.14286vw;
		height: 3.57143vw;
	}
}

@media screen and (max-width: 767px) {
	.c5-recommended .c5-recommended-img .c5-recommended-img-head:after,
	.c5-recommended .c5-recommended-img .c5-recommended-img-head:before {
		width: 20px;
		height: 35px;
	}
}

.c5-recommended .c5-recommended-img .c5-recommended-img-title {
	display: block;
	margin-top: 15px;
	color: #ffffff;
	font-size: 25px;
	letter-spacing: -0.05rem;
	line-height: 1.5;
}

@media screen and (max-width: 1400px) {
	.c5-recommended .c5-recommended-img .c5-recommended-img-title {
		margin-top: 1.07143vw;
		font-size: 1.78571vw;
	}
}

@media screen and (max-width: 1400px) {
	.c5-recommended .c5-recommended-img .c5-recommended-img-title {
		margin: 10px auto 0;
		font-size: 18px;
	}
}

.c5-recommended .c5-recommended-img .c5-article-info {
	margin-top: 10px;
}

@media screen and (max-width: 1400px) {
	.c5-recommended .c5-recommended-img .c5-article-info {
		margin-top: 0.71429vw;
	}
}

@media screen and (max-width: 1400px) {
	.c5-recommended .c5-recommended-img .c5-article-info {
		margin-top: 5px;
	}
}

.c5-recommended .c5-recommended-list {
	width: 36%;
	padding-left: 30px;
	        box-sizing: border-box;

	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
}

@media screen and (max-width: 1400px) {
	.c5-recommended .c5-recommended-list {
		padding-left: 2.14286vw;
	}
}

@media screen and (max-width: 979px) {
	.c5-recommended .c5-recommended-list {
		padding-left: 1.07143vw;
	}
}

@media screen and (max-width: 767px) {
	.c5-recommended .c5-recommended-list {
		width: auto;
		padding-left: 0;
		font-size: 0;
		letter-spacing: -0.6px;
	}
}

.c5-recommended .c5-recommended-list .c5-recommended-list-item {
	max-width: 510px;
	padding: 40px 0;
	        box-sizing: border-box;
	vertical-align: top;

	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
}

@media screen and (max-width: 1400px) {
	.c5-recommended .c5-recommended-list .c5-recommended-list-item {
		padding: 2.85714vw 0;
	}
}

.c5-recommended .c5-recommended-list .c5-recommended-list-item + .c5-recommended-list-item {
	border-top: 2px solid #ffffff;
}

@media screen and (max-width: 767px) {
	.c5-recommended .c5-recommended-list .c5-recommended-list-item + .c5-recommended-list-item {
		border-top: 0;
	}
}

.c5-recommended .c5-recommended-list .c5-recommended-list-item:first-child {
	padding-top: 0;
}

@media screen and (max-width: 767px) {
	.c5-recommended .c5-recommended-list .c5-recommended-list-item:first-child {
		padding: 5px;
	}
}

.c5-recommended .c5-recommended-list .c5-recommended-list-item:last-child {
	padding-bottom: 0;
}

@media screen and (max-width: 767px) {
	.c5-recommended .c5-recommended-list .c5-recommended-list-item:last-child {
		padding: 5px;
	}
}

@media screen and (max-width: 1400px) {
	.c5-recommended .c5-recommended-list .c5-recommended-list-item {
		max-width: auto;
		max-width: initial;
		padding: 1.42857vw 0;
	}
}

@media screen and (max-width: 767px) {
	.c5-recommended .c5-recommended-list .c5-recommended-list-item {
		display: inline-block;
		width: 50%;
		padding: 5px;
		letter-spacing: normal;
	}
}

.c5-recommended .c5-recommended-list .c5-recommended-list-item-row {
	display: table;
	table-layout: fixed;
	width: 100%;
}

@media screen and (max-width: 767px) {
	.c5-recommended .c5-recommended-list .c5-recommended-list-item-row {
		display: block;
		width: auto;
	}
}

.c5-recommended .c5-recommended-list .c5-recommended-list-item-col {
	display: table-cell;
	vertical-align: top;
}

@media screen and (max-width: 767px) {
	.c5-recommended .c5-recommended-list .c5-recommended-list-item-col {
		display: block;
		width: auto;
	}
}

.c5-recommended .c5-recommended-list .c5-recommended-list-item-thumb {
	width: 140px;
	line-height: 0;
}

@media screen and (max-width: 1400px) {
	.c5-recommended .c5-recommended-list .c5-recommended-list-item-thumb {
		width: 10vw;
	}
}

@media screen and (max-width: 767px) {
	.c5-recommended .c5-recommended-list .c5-recommended-list-item-thumb {
		display: block;
		width: auto;
	}
}

.c5-recommended .c5-recommended-list .c5-recommended-list-item-thumb a {
	display: block;
	overflow: hidden;
	position: relative;
	border: 1px solid #ffffff;
	line-height: 0;
}

.c5-recommended .c5-recommended-list .c5-recommended-list-item-thumb a:before,
.c5-recommended .c5-recommended-list .c5-recommended-list-item-thumb a:after {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: "";
	background-color: rgba(255, 255, 255, 0.1);
	        transition:         -webkit-transform 0.4s ease;
	        -o-transition:         transform 0.4s ease;
	        transition:         transform 0.4s ease;
	        transition:         transform 0.4s ease, -webkit-transform 0.4s ease;

	-webkit-transition: -webkit-transform 0.4s ease;
	   -moz-transition:    -moz-transform 0.4s ease;
	     -o-transition:      -o-transform 0.4s ease;
}

.c5-recommended .c5-recommended-list .c5-recommended-list-item-thumb a:before {
	        transform: translate(-100%, -100%);

	-webkit-transform: translate(-100%, -100%);
	   -moz-transform: translate(-100%, -100%);
	    -ms-transform: translate(-100%, -100%);
}

.c5-recommended .c5-recommended-list .c5-recommended-list-item-thumb a:after {
	        transform: translate(100%, 100%);

	-webkit-transform: translate(100%, 100%);
	   -moz-transform: translate(100%, 100%);
	    -ms-transform: translate(100%, 100%);
}

.c5-recommended .c5-recommended-list .c5-recommended-list-item-thumb a:hover {
	opacity: 1;
}

.c5-recommended .c5-recommended-list .c5-recommended-list-item-thumb a:hover:before,
.c5-recommended .c5-recommended-list .c5-recommended-list-item-thumb a:hover:after {
	        transform: translate(0);
	        transition:         -webkit-transform 0.4s ease;
	        -o-transition:         transform 0.4s ease;
	        transition:         transform 0.4s ease;
	        transition:         transform 0.4s ease, -webkit-transform 0.4s ease;

	-webkit-transform: translate(0);
	   -moz-transform: translate(0);
	    -ms-transform: translate(0);
	-webkit-transition: -webkit-transform 0.4s ease;
	   -moz-transition:    -moz-transform 0.4s ease;
	     -o-transition:      -o-transform 0.4s ease;
}

.c5-recommended .c5-recommended-list .c5-recommended-list-item-desc {
	width: auto;
	padding-left: 10px;
	        box-sizing: border-box;

	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
}

@media screen and (max-width: 1400px) {
	.c5-recommended .c5-recommended-list .c5-recommended-list-item-desc {
		padding-left: 1.07143vw;
	}
}

@media screen and (max-width: 767px) {
	.c5-recommended .c5-recommended-list .c5-recommended-list-item-desc {
		padding: 10px;
	}
}

.c5-recommended .c5-recommended-list .c5-recommended-list-item-title {
	display: block;
	margin-top: 10px;
	color: #ffffff;
	font-size: 14px;
	line-height: 1.5;
}

@media screen and (max-width: 1400px) {
	.c5-recommended .c5-recommended-list .c5-recommended-list-item-title {
		margin-top: 0.71429vw;
		font-size: 1vw;
	}
}

@media screen and (max-width: 767px) {
	.c5-recommended .c5-recommended-list .c5-recommended-list-item-title {
		margin-top: 10px;
		font-size: 14px;
	}
}

.c5-recommended .c5-recommended-list .c5-article-info {
	margin-top: 5px;
}

@media screen and (max-width: 1400px) {
	.c5-recommended .c5-recommended-list .c5-article-info {
		margin-top: 0.35714vw;
	}
}

@media screen and (max-width: 767px) {
	.c5-recommended .c5-recommended-list .c5-article-info {
		display: block;
		margin-top: 10px;
	}
}

@media screen and (max-width: 767px) {
	.c5-recommended .c5-recommended-list .c5-article-info .c5-date {
		margin-top: 5px;
	}
}

.c5-recommended .c5-cat-icon {
	font-size: 24px;
}

@media screen and (max-width: 1400px) {
	.c5-recommended .c5-cat-icon {
		font-size: 1.71429vw;
	}
}

@media screen and (max-width: 767px) {
	.c5-recommended .c5-cat-icon {
		font-size: 15px;
	}
}

.c5-recommended .c5-cat-text {
	font-size: 14px;
}

@media screen and (max-width: 1400px) {
	.c5-recommended .c5-cat-text {
		font-size: 1vw;
	}
}

@media screen and (max-width: 767px) {
	.c5-recommended .c5-cat-text {
		font-size: 12px;
	}
}

.c5-recommended .c5-new {
	width: 24.2915%;
}

@media screen and (max-width: 767px) {
	.c5-recommended .c5-new {
		width: 31.49606%;
	}
}

.c5-display-pc--block {
	display: block !important;
}

@media screen and (max-width: 767px) {
	.c5-display-pc--block {
		display: none !important;
	}
}

.c5-display-pc--inlineBlock {
	display: inline-block !important;
}

@media screen and (max-width: 767px) {
	.c5-display-pc--inlineBlock {
		display: none !important;
	}
}

.c5-display-pc--inline {
	display: inline !important;
}

@media screen and (max-width: 767px) {
	.c5-display-pc--inline {
		display: none !important;
	}
}

.c5-display-sp--block {
	display: none !important;
}

@media screen and (max-width: 767px) {
	.c5-display-sp--block {
		display: block !important;
	}
}

.c5-display-sp--inlineBlock {
	display: none !important;
}

@media screen and (max-width: 767px) {
	.c5-display-sp--inlineBlock {
		display: inline-block !important;
	}
}

.c5-display-sp--inline {
	display: none !important;
}

@media screen and (max-width: 767px) {
	.c5-display-sp--inline {
		display: inline !important;
	}
}

.c5-is-hidden {
	overflow: hidden !important;
}

.l-contents.btn {
	text-align: center;
}

.l-contents.btn a:hover {
	opacity: 0.7;
}

@media screen and (min-width: 767px) {
	.l-contents.btn a {
		display: block;
		max-width: 550px;
		margin: 0 auto;
	}
}

/*# sourceMappingURL=../../../map/cmn_layout.css.map */
