@charset "utf-8";

/* common.css */

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-style: normal;
	font-weight: normal;
	vertical-align: baseline;
}

html {
	font-size: 62.5%;
}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box
}

body {
	color:#444444;
	font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Arial, Verdana, "ＭＳ Ｐゴシック", sans-serif;
	font-size: 1.6rem;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
	display: block;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
input, textarea {
	margin: 0;
	padding: 0;
	font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Arial, Verdana, "ＭＳ Ｐゴシック", sans-serif;
}

ol, ul {
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

caption, th {
	text-align: left;
}

a:focus {
	outline: none;
}

.clearfix:after {
	content:"";
	display:block;
	clear:both;
}

img {
	max-width:100%;
	height:auto;
	vertical-align: top;
	line-height: 0;
	font-size:0;
}

table {
	width:100%;
}

a {
	color:#006eaa;
	text-decoration: none;
}

a:hover {
	color: #ff5282;
	text-decoration: none;
}

a,a:hover {
	transition: 0.2s;
}

a img:hover {
	opacity:0.75;
}

/* ページ全体 */
body.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
}

#wrapper {
	position: relative;
	margin: 70px 0 0;
}

/* ヘッダー */
header {
	display: none;
	width: 100%;
	height: 70px;
}

header .headInr {
	display: flex;
	flex-flow: row nowrap;
	width: 100%;
	max-width: 1028px;
	margin: 0 auto;
}

header h1 {
	width: 15.3696%;
	margin-right: auto;
}

header h1 a svg {
	width: 100%;
	height: auto;
}

header h1 a svg .flBase {
	fill: #59c2e1;
}
header h1 a svg .flSpace {
	fill: #ffffff;
}

header h1 a:hover svg .flBase {
	fill: #a6daef;
}

header .navBtn {
	display: none;
}

/* ナビ */
#nav {
	position:fixed;
	top: 0;
	width: 100%;
	background-color:rgba(255,255,255,1);
	z-index: 100;

	-webkit-transition-delay: .3s;
	transition-delay: .3s;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;

	-webkit-transition: all;
	transition: all;
	-webkit-transition-duration: .5s;
	transition-duration: .5s;
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	-webkit-transform-origin: center top;
	-ms-transform-origin: center top;
	transform-origin: center top;

	box-shadow: 0 0 3px rgba(0,0,0,0.4);
}

#nav.close {
	opacity: 0;
	-webkit-transform: perspective(300px) rotateY(-90deg);
	transform: perspective(300px) rotateX(-90deg);
}

.navClose {
	display:none;
}

#gNav {
	position:relative;
	display: flex;
	flex-flow: row nowrap;
	width:100%;
	margin: 0 auto;
	max-width:1028px;
}
#gNav > li{
	position:relative;
	padding: 0 1.15%;
	text-align: center;
}

#gNav > li > a {
	display:block;
	height:70px;
	line-height: 70px;
	background-position:center bottom;
	text-align:left;
	font-size: 1.6rem;
	color: #006eaa;
	transition: all 0s ease 0s;
}

#gNav > li > a.current{
	color: #6cd2ef;
}

#gNav > li > a span {
	position: relative;
	font-weight: bold;
	font-size:1.5rem;
}
#gNav > li > a span::after {
	content: "";
	width: 0;
	height: 1px;
	position: absolute;
	left: 50%;
	bottom: -5px;
	background-color: #ff5282;
	transform: translateX(-50%);
	transition: all .3s;
}

#gNav > li > a:hover span {
	color: #ff5282;
}

#gNav > li > a:hover span::after {
	width: 100%;
}

/* ドロップダウン */
#gNav li ul {
	position:absolute;
	font-size: 0;
	margin: 0 auto;
	min-width: 100%;
	background:#006eaa;
}

#gNav li ul li {
	display:block;
	height: 0;
	color: #0163be;
	white-space:nowrap;
	background:none;
	overflow: hidden;
	
	-moz-transition: .2s;
	-webkit-transition: .2s;
	-o-transition: .2s;
	-ms-transition: .2s;
	transition: .2s;
}

#gNav li ul li a{
	display:block;
	padding:7px 15px 7px 15px;
	background:none;
	font-size: 1.6rem;
	line-height: 1;
	font-weight: bold;
	text-align: left;
	color:#ffffff;
}

#gNav li:hover > a{
	color: #ff5282;
}

#gNav li.touchOn ul,
#gNav li:hover ul{
	padding:10px 0;
}
#gNav li.touchOn ul li,
#gNav li:hover ul li{
	overflow: visible;
	height:30px;
}
#gNav li ul li:hover a{
	background:none;
	color: #ff5282;
}

/* ナビロゴ */
#gNav .navLogo {
	width: calc(15.3696% + 2.6%);
	margin-right: auto;
}

#gNav .navLogo a {
	display: flex;
	align-items: center;
}

#gNav .navLogo a svg {
	width: 100%;
	height: auto;
}

#gNav .navLogo a svg .flBase {
	fill: #59c2e1;
}
#gNav .navLogo a svg .flSpace {
	fill: #ffffff;
}

#gNav .navLogo a:hover svg .flBase {
	fill: #a6daef;
}

#gNav .navLogo a span {
	display: none;
}

/* 詳細ページヘッダーイメージ */
#pgHeadImg {
	display: flex;
	align-items: center;
	justify-content: center;
	height:260px;
}

#pgHeadImg > h1 {
	max-width: 100%;
}
#pgHeadImg > h1 img {
	animation: pagetitle 1.2s ease 0s 1 normal;
}

@keyframes pagetitle {
    0% {opacity: 0; margin-top: 30px;}
    100% {opacity: 1; margin-top: 0;}
}

@-webkit-keyframes pagetitle {
    0% {opacity: 0; margin-top: 30px;}
    100% {opacity: 1; margin-top: 0;}
}

/* パンくず */
.breadcrumbList {
	width: 100%;
	padding: 0 5%;
	background: #f5f5f5;
}

.breadcrumbList > ul {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 16px 0 15px;
	font-size: 0;
}

.breadcrumbList li {
	display: inline-block;
	color: #59c2e1;
	line-height: 1.5;
	font-size:1.4rem;
}
.breadcrumbList li::after {
	content: "＞";
	margin: 0 1.15em;
	color: #3c3c3c;
}
.breadcrumbList li:last-of-type::after {
	content: none;
}

.breadcrumbList li a {
	color: #3c3c3c;
}
.breadcrumbList li a:hover {
	color: #59c2e1;
	text-decoration: underline;
}

/* コンテンツ */
.container {
	padding: 40px 0 80px;
}

.container > h2,
.contents .secTtl {
	width: 100%;
	max-width: calc(1000px + 10%);
	margin: 0 auto 26px;
	padding: 0 5%;
	text-align: center;
	font-size: 3.2rem;
	font-weight: bold;
	color: #ff5282;
}

.contents {
	width: 100%;
	max-width: calc(1000px + 10%);
	margin: 0 auto;
	padding: 0 5%;
}

/* contents-1column */
.contents.wrap1clm main {
	width:100%;
}

.contents.wrap1clm aside {
	width:100%;
}

/* contents-2column */
.contents.wrap2clm {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
}

.contents.wrap2clm main {
	flex-basis:65.4%;
	max-width: 65.4%
}

.contents.wrap2clm aside {
	flex-basis:32.4%;
	max-width: 32.4%
}

/* サブバナー */
.subBnr {
	margin: 0 5% 20px 5%;
	padding:0;
	font-size:0;
	text-align:center;
}

.subBnr li {
	max-width: 310px;
	margin:0 0.65% 6px;
	line-height:0;
	display:inline-block;
}

/* Footer */
footer {
	width: 100%;
}

footer .footInr {
	position: relative;
	padding: 0 0 38px 0;
	background-color: rgba(0,0,0,0);
}

footer .footInr::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	background: #019fe8 url(../images/cmn_foot_bg_t.jpg) center bottom no-repeat;
	background-size: 100%;
	z-index: -1;
}

footer h2 {
	width: 334px;
	height: calc(158px + 100px); /* 画像高さ + padding上下の合計 */
	margin: 0 auto;
	padding: 70px 0 30px;
	text-align: center;
}

footer h2 img {
	width: 100%;
	height: auto;
}

footer .footPlace {
	margin: 0 auto 32px;
	text-align: center;
}

footer .footPlace ul {
	display: inline-block;
	text-align: left;
}

footer .footPlace ul li {
	display: flex;
	align-items: center;
	margin: 0;
	line-height: 1;
	font-weight: normal;
	font-size: 1.6rem;
	color: #ffffff;
}

footer .footPlace ul li + li {
	margin: 10px 0 0;
}

footer .footPlace ul li strong {
	display: inline-block;
	margin-right: 11px;
	padding: 4px .78em 2px;
	background: #ffffff;
	border-radius: 7px;
	font-weight: bold;
	color: #006eaa;
}

footer h3 {
	margin: 0 1ex 1ex 1ex;
	color: #ffaabe;
	font-weight: 900;
	font-size: 20px;
}

footer #footerLink {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	width: 90%;
	margin: 0 auto;
}

footer #footerLink ul {
	display: flex;
	flex-flow: row wrap;
	justify-content: left;
}

footer #footerLink ul li {
	color: #fff;
	font-weight: 900;
	margin: 0 1ex 1ex 1ex;
	font-size: 20px;
}

footer #footerLink ul li a {
	display: block;
	font-weight: 900;
	color: #fff;
}

footer #footerLink ul li a:hover {
	color: #ff5282;
}

footer p#footerCopy {
	height: calc(65px + 50px); /* コンテンツ高さ + padding上下の合計 */
	padding: 25px 0;
	background: #005081;
	text-align: center;
	font-weight: bold;
	font-size: 1.0rem;
	color: #fff;
}

footer p#footerCopy img {
	display: block;
	margin:0 auto 20px;
}

footer p#footerCopy .forSp {
	display: none;
}

/* -------------------------------------------------
   Parts
------------------------------------------------- */

/* SNS Link */
#snsLinks {
	position:fixed;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 100;
}

#snsLinks li {
	width: 54px;
	height: 54px;
}

#snsLinks li + li {
	margin-top: 4px;
}

#snsLinks li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background: #000000;
}

#snsLinks li a:hover {
	background: #006eaa;
}

#snsLinks svg {
	width: 28px;
	height: 28px;
}

#snsLinks svg .snsIcons {
	fill: #ffffff;
}

.viewBtn {
	position: relative;
	display: inline-block;
	width: 340px;
	max-width: 100%;
	height: 50px;
	text-decoration: none;
	outline: none;
	text-align: center;
	line-height: 50px;
	background: #006eaa;
	font-weight: bold;
	color: #fff;
	overflow: hidden;
	z-index: 2;
}

.viewBtn::before,
.viewBtn::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
	transition: all .3s;
}

.viewBtn::after {
	top: -100%;
	width: 100%;
	height: 100%;
}

.viewBtn:hover {
	color: #fff;
}

.viewBtn:hover::after {
	top: 0;
	background-color: #ff5282;
}

.vb_wrap {
	height: 50px;
	margin-top: 24px;
	text-align: center;
}

/* ページトップ */
#pageTop {
	position: fixed;
	width:48px;
	height: 48px;
	bottom: -50px;
	right: 20px;
	line-height:0;
	z-index: 10;
}

/* 画像遅延読み込み */
.lazyload, .lazyloading {
	opacity: 0;
}

.lazyloaded {
	opacity: 1;
	transition: opacity 500ms;
}

/* リマーケティングタグの iframe の隙間を解消 */
iframe[name="google_conversion_frame"] {
	position: absolute;
	top: 0;
}

.rankTag {
	position:fixed;
}

.spNone {
	display:inherit !important;
}

.pcNone {
	display:none !important;
}

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

/* ナビロゴ */
#gNav .navLogo {
	width: calc(15.3696% + 2%);
}

#gNav > li {
	padding: 0 1%;
}

#gNav > li > a span {
	font-size: 1.5vw;
}

}

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

html {
	font-size: 54.69%;
}

#wrapper {
	margin: 41px 0 0;
}

/* ヘッダー */
header {
	display: block;
	position:fixed;
	top: 0;
	width: 100%;
	height: 41px;
	background-color:rgba(255,255,255,1);
	z-index: 90;

	-webkit-transition-delay: .3s;
	transition-delay: .3s;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;

	-webkit-transition: all;
	transition: all;
	-webkit-transition-duration: .5s;
	transition-duration: .5s;
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	-webkit-transform-origin: center top;
	-ms-transform-origin: center top;
	transform-origin: center top;

	box-shadow: 0 0 3px rgba(0,0,0,0.4);
}

header.close {
	opacity: 0;

	-webkit-transform: perspective(300px) rotateY(-90deg);
	transform: perspective(300px) rotateX(-90deg);
}

header .headInr {
	align-items: center;
	height: 41px;
}

header h1 {
	width: 120px;
	margin-left: 3.9%;
	margin-right: auto;
}

header h1 a {
	display: flex;
	align-items: center;
}

header h1 a svg {
	width: 120px;
	height: auto;
}

header .navBtn {
	display: block;
	width: 41px;
	height: 100%;
	background-color: #006eaa;
	cursor: pointer;
}

header .navBtn img {
	background-image: url(../images/cmn_nav_btn_bg.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}

#nav {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 0;
	z-index: 100;
	background-color: rgba(127, 127, 127, 0);
	opacity: 0.5;
	transition: 0.2s;
}

#nav.open {
	height: 100%;
	opacity: 1;
}

#nav > ul {
	position: relative;
	display:block;
	width: 66%;
	height: 100%;
	overflow-y: scroll;
	-webkit-overflow-scrolling:touch;
	margin: 0 0 0 auto;
}

#gNav > li {
	display: block;
	width: 100%;
	padding: 7px 0;
	background-color:#006eaa;
	border-bottom: 1px solid #59c2e1;
	text-align: left;
}
#gNav > li:last-of-type {
	border-bottom: 0;
}

#gNav > li.navLogo {
	width: 100%;
	height: 42px;
	margin: 0;
	padding: 0;
	background: #006eaa;
	border-bottom: 1px solid #59c2e1;
}

#gNav > li.navLogo > a {
	display: flex;
	align-items: center;
	height: 41px;
	padding: 0 0 0 22px;
	line-height: 1;
}

#gNav .navLogo a span {
	display: block;
}

#gNav .navLogo a svg {
	display: none;
	width: 120px;
	height: auto;
}

#gNav .navLogo a svg .flBase {
	fill: #ffffff;
}
#gNav .navLogo a svg .flSpace {
	fill: #59c2e1;
}

#gNav .navLogo a:hover svg .flBase {
	fill: #ffffff;
}

#gNav > li.navClose {
	display: block;
	position:absolute;
	right: 0;
	top: 0;
	width: 41px;
	height: 41px;
	padding: 0;
	background: #ffffff;
	border-bottom: 0;
	text-align: center;
	line-height: 1;
	font-size: 42px;
	color: #006eaa;
	cursor:pointer;
}

#gNav > li > a {
	height: 26px;
	padding: 0 0 0 22px;
	line-height: 26px;
	font-size: 1.6rem;
	color: #ffffff;
}

#gNav > li > a span {
	font-size:1.6rem;
}

#gNav > li > a span::after {
	content: none;
}

#gNav li ul {
	position: static;
	background: transparent;
}

#gNav li ul li {
	height:auto;
}

#gNav li ul li a {
	padding: 8px 0 8px 24px;
	font-weight:normal;
	font-size: 1.49rem;
	color: #ffffff;
}

#gNav li:hover > a {
	color: #ffffff;
}

#gNav > li > a:hover span {
	color: #ffffff;
}

#gNav li ul li:hover a {
	color: #ffffff;
}

#gNav li.touchOn ul,
#gNav li:hover ul {
	padding: 0;
}

#gNav li.touchOn ul li,
#gNav li:hover ul li {
	height:auto;
}

/* 詳細ページヘッダーイメージ */
#pgHeadImg {
	height:150px;
}

#pgHeadImg > h1 {
	max-width: 90%;
}

/* パンくず */
.breadcrumbList ul {
	padding: 11px 0 10px;
}

/* コンテンツ */
.container {
	padding: 24px 0 45px;
}

.container > h2,
.contents .secTtl {
	width: 100%;
	margin: 0 auto 11px;
	font-size: 2.4rem;
}

.contents {
	width: 100%;
}

/* contents-2column */
.contents.wrap2clm {
	display: block;
}

.contents.wrap2clm main {
	width: 100%;
	max-width: 100%
}

.contents.wrap2clm aside {
	width: 100%;
	max-width: 100%
}

/* Footer */
footer .footInr {
	padding: 0 0 15px 0;
}

footer h2 {
	width: 218px;
	height: calc(105px + 48px); /* 画像高さ + padding上下の合計 */
	padding: 40px 0 8px;
}

footer .footPlace {
	margin: 0 auto 20px;
}

footer .footPlace ul li {
	font-size: 1.3rem;
}

footer .footPlace ul li + li {
	margin: 6px 0 0;
}

footer .footPlace ul li strong {
	padding: 2px .6em 1px;
	border-radius: 4px;
}

footer h3 {
	flex-basis: 100%;
	max-width: 100%;
	margin: 0 1ex 2px 1ex;
	text-align: center;
	font-size: 13px;
}

footer #footerLink {
	width: 100%;
}

footer #footerLink ul {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	width: 280px;
}

footer #footerLink ul li {
	margin-bottom: 2px;
	font-size: 13px;
}

footer p#footerCopy {
	height: auto;
	padding: 14px 0;
	font-size: 1.0rem;
}

footer p#footerCopy img {
	display: block;
	width: 110px;
	height: auto;
	margin:0 auto 10px;
}

footer p#footerCopy .forSp {
	display: none;
}

/* -------------------------------------------------
   Parts
------------------------------------------------- */

/* SNS Link */
#snsLinks {
	position:static;
	background: #f5f5f5;
	text-align: center;
	transform: none;
}

#snsLinks ul {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: calc(280px + 10%);
	max-width: 100%;
	margin: 0 auto;
	padding: 11px 5%;
}

#snsLinks li {
	width: 30px;
	height: 30px;
}

#snsLinks li:last-of-type {
	width: 40px;
	height: 40px;
}

#snsLinks li + li {
	margin-top: 0;
}

#snsLinks li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background: none;
}

#snsLinks li a:hover {
	background: none;
}

#snsLinks svg {
	width: 30px;
	height: 30px;
}

#snsLinks li:last-of-type svg {
	width: 40px;
	height: 40px;
}

#snsLinks svg .snsIcons {
	fill: #1e1e1e;
}

#snsLinks a:hover svg .snsIcon .snsIcons {
	fill: #ff5282;
}

/* Button */
.viewBtn {
	height: 38px;
	line-height: 38px;
}

/* ページトップ */
#pageTop {
	width:42px;
	height: 42px;
	right: 10px;
}

.spNone {
	display:none !important;
}

.pcNone {
	display:inherit !important;
}

}

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

#nav > ul {
	width: 70%;
}

footer .footPlace ul {
	padding: 0 3%;
}

footer .footPlace ul li {
	font-size: 2.78vw;
}

footer p#footerCopy .forSp {
	display: block;
}

}
