@charset "UTF-8";

/*------------------------------------------------------------------------------------
                                    共通事項
------------------------------------------------------------------------------------*/

html { font-size: 62.5%; /*10px*/ }

body {
	width: 100%;
	height: auto;
	font-size: 1.4rem;
	margin: 0;
	padding: 0;
	color: #303030;
	background: #fff;
	font-family: 'Noto Sans JP', sans-serif, YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: antialiased;
}

* { box-sizing: border-box; }

h1,h2,h3,h4,h5,h6,p,ul,ol,li,dl,dt,dd,blockquote,form,input,fieldset,legend { margin: 0; padding: 0; line-height: 1.54; }

p { line-height: 2; }
a, a:focus, a:active { text-decoration: none; color: inherit; }
li { list-style: none; }

img { max-width: 100%; -webkit-backface-visibility: hidden; }
figure img { display: block; }
picture { display: block; line-height: 0; }
img.fit { object-fit: cover; font-family: 'object-fit: cover;'; }

/* micro clearfix http://nicolasgallagher.com/micro-clearfix-hack/ = */
.cf::before,.cf::after{content: "";display: table}
.cf::after{clear: both}
.cf{zoom:1}

.font-josefin { font-family: 'Josefin Sans', sans-serif; font-weight: 700; letter-spacing: .12em; }
.bold { font-weight: 700; }
.hide-txt { text-indent: 100%; white-space: nowrap; overflow: hidden; display: block; }
.nowrap { display: inline-block; white-space: nowrap; }
.underline { text-decoration: underline; font-weight: 700; }
.justify { text-align: justify; }
.center { text-align: center; }
.longer { line-height: 2.25 !important; }
.sp-none { display: none; }
.txt-link { text-decoration: underline; color: #00afd7; }
.txt-link.hover { text-decoration: none; color: #00afd7; }

#container {
	width: 100%;
	overflow: hidden;
    opacity: 0;
    animation: fadeIn 350ms ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0;}
    to { opacity: 1;}
}

#main {
	display: block;
}

.wrap {
	width: 100%;
	padding: 0 16px;
}

#main article > section:not(.no-padding):last-child,
#main article > div:not(.no-padding):last-child {
	padding-bottom: 100px;
}

#main article > section.no-padding,
#main article > div.no-padding {
	margin-bottom: 0;
}

.bk-gradient { background: linear-gradient(125deg, #0d3973, #002e5b); }
.bk-linkbtn { background: #002E5B; }

.transparent { visibility: hidden; opacity: 0; }

.out {
    opacity: 0;
    transform: scale(.95);
    transform-origin: center bottom;
    transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
}

.out.in {
    opacity: 1;
    transform: scale(1);
}

/*---------------------------------------------- HEADER */

#header {
	width: 100%;
	height: 60px;
	background: #0071D8;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	transform: translate(0,0);
	transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
}

#header.fixed.hidden {
	transform: translate(0,-100%);
}

#header .headerInner {
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 10;
}

#header .header-logo {
	width: 100%;
    line-height: 0;
    text-align:  center;
	position: absolute;
    top: 14px;
    left: 0;
    z-index: 10;
}

#header .header-logo a {
    display: inline-block;
	position: relative;
    margin: auto;
}

#header .header-logo a img {
    display:  block;
	width: 120px;
	height: auto;
    margin: auto;
}

#header .header-logo a img {
	transition: opacity 500ms cubic-bezier(0.77, 0, 0.175, 1);
}

#header .header-logo span {
	display: block;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: .5rem;
    text-indent: .5rem;
    text-align: center;
	font-weight: 700;
    color: #fff;
    padding-top: 3px;
    transform-origin: center bottom;
    transform: scale(.75);
	transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
}

#header #header-toggle {
	width: 60px;
	height: 60px;
	position: absolute;
	top: 0;
	left: 0;
    z-index: 20;
}

#header #header-toggle span {
	width: 24px;
	height: 2px;
	background: #fff;
    border-radius: 1px;
	position: absolute;
	left: 18px;
	margin: auto;
	transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
}

#header #header-toggle span:nth-child(1) { top: 22px; }
#header #header-toggle span:nth-child(2) { width: 16px; top: 29px; transform-origin: left center; }
#header #header-toggle span:nth-child(3) { top: 36px; }

#header #header-toggle.active span:nth-child(1) { transform: translate(0,7px) rotate(45deg); }
#header #header-toggle.active span:nth-child(2) { transform: scaleX(0); }
#header #header-toggle.active span:nth-child(3) { transform: translate(0,-7px) rotate(-45deg);}

#header #header-toggle + .nav-close {
	width: 60px;
	height: 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 25;
}

#header #header-toggle.active + .nav-close {
	height: 60px;
}

#header-nav {
	visibility: hidden;
	width: 100%;
	height: 100vh;
	background: #0071D8;
	position: fixed;
	top: 0;
	left: 0;
	padding-top: 60px;
	z-index: 5;
	transform: translate(-100%,0);
	transition: all 600ms cubic-bezier(0.77, 0, 0.175, 1);
}

#header-nav.active {
	visibility: visible;
	transform: translate(0,0);
}

#header-nav ul {
	padding: 0 30px;
	border-top: 1px solid rgba(255,255,255,.25);
	opacity: 0;
	transform: translate(-25%,0);
	transform-origin: left center;
	transition: all 1000ms cubic-bezier(0.77, 0, 0.175, 1);
}

#header-nav.active ul {
	opacity: 1;
	transform: translate(0,0);
}

#header-nav ul li {
	border-bottom: 1px solid rgba(255,255,255,.25);
}

#header-nav ul li a {
	display: block;
	width: 100%;
	height: 60px;
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 60px;
    text-align: center;
	color: #fff;
	position: relative;
}

#header-nav #nav-toggle:before {
	content: none;
}

#nav-toggle span {
	display: block;
	width: 15px;
	height: 1px;
	background: #fff;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
}

#nav-toggle span:last-child {
	transform: rotate(90deg);
}

#nav-toggle.hover span {
	background: #00AFEB;
	transform: rotate(90deg);
}

#nav-toggle.hover span:last-child {
	transform: rotate(360deg);
}

#affiliate {
	visibility: hidden;
	width: 100%;
    height: 100vh;
    background: #002e5b;
    position: fixed;
    top: -1px;
    left: 0;
    z-index: 5;
	transform: translate(-100%,0);
    transition: all 600ms cubic-bezier(0.77, 0, 0.175, 1);
}

#affiliate.active {
	visibility: visible;
	transform: translate(0,0);
}


/*---------------------------------------------- FOOTER */

#footer {
	position: relative;
	margin: 0 auto;
	z-index: 10;
}

#footer .footerInner {
	color: #fff;
	background: #303030;
	position: relative;
	padding: 25px 50px;
}

#footer .pageTop {
	text-align: center;
    margin: auto;
}

#footer .pageTop a {
	display: inline-block;
	width: 60px;
	height: 60px;
	position: relative;
	opacity: .5;
	transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
}

#footer .pageTop a.hover {
	opacity: 1;
}

#footer .pageTop a:before {
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	background: #fff;
	margin-bottom: 2px;
	transform: scale(.25,1);
	transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
}

#footer .pageTop a.hover:before {
	transform: scale(1,1);
}

#footer .pageTop a:after {
	content: "";
    display: block;
    width: 2px;
    height: 20px;
    background: #fff;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    margin: auto;
}

#footer .pageTop a img {
	display: block;
	width: 11px;
	height: 16px;
	position: absolute;
    top: 12px;
    left: 0;
    right: 0;
	margin: auto;
	transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
}

#footer .pageTop a.hover img {
	top: 6px;
}

#footer .pageTop p {
	font-size: 1rem;
	line-height: 1;
	text-align: center;
	position: absolute;
	left: 0;
	bottom: 0;
}

#footer .footer-logo {
	margin: 60px auto;
}

#footer .footer-logo a {
    opacity: .5;
	display: block;
}

#footer .footer-logo img {
    display: block;
    width: 160px;
    margin: 0 auto 8px;
}

#footer .footer-logo span {
	display: block;
    font-size: 1rem;
	font-weight: 700;
    line-height: 1;
    letter-spacing: .5rem;
    text-indent: .5rem;
    text-align: center;
	padding-top: 1.5%;
}

#footer .copyrights {
    width: 100%;
	font-size: 1rem;
    line-height: 1;
    opacity: .5;
    transform: scale(.65);
}


/*---------------------------------------------- PAGE-TITLE */

.page-header {
	width: 100%;
    height: calc(85vw + 60px);
	position: relative;
    background: #0171d7;
}

.page-header .page-header-inner {
	width: 100%;
	height: 100%;
	padding: 52px 16px 0;
	position: relative;
	z-index: 5;
}

.page-title {
	width: 100%;
    padding: 0 32px;
	color: #fff;
    font-size: 3.6rem;
	text-align: center;
	position: absolute;
	top: calc(50% + 26px);
	left: 0;
	transform: translate(0,-50%);
}

.page-title .font-josefin {
    display: block;
    font-size: 1.5rem;
    line-height: 1.24;
    letter-spacing: .5em;
    text-indent: .5em;
}

.page-title .page-title-small {
    display: block;
    font-size: 1.5rem;
    margin-top: 16px;
}


/*---------------------------------------------- SECTNION */

.width100 {
    border-radius: 16px;
    overflow: hidden;
}

.section {
	padding: 25% 0;
}


/*---------------------------------------------- SECTION-TITLE */

.section-title {
    color: #0071D8;
    font-size: 3rem;
	text-align: center;
	line-height: 1.26;
    letter-spacing: .15em;
	padding: 0 16px 50px;
}

.section-title .font-josefin {
	display: block;
	font-size: 1.2rem;
    letter-spacing: .5em;
}

.section-title + .section-txt {
    margin-top: -25px;
}

.section-title.w-ver {
    color: #fff;
}

.section-title.w-ver + .section-txt {
    color: #fff;
}


/*---------------------------------------------- READ-MORE */

.read-more {
	width: auto;
	height: 48px;
	text-align: center;
	margin: 48px auto 0;
}

.read-more .read-more-inner {
	display: inline-block;
    width: auto;
    height: 40px;
    font-size: 1rem;
    line-height: 40px;
    text-indent: 20px;
    color: #fff;
    border-radius: 20px;
    padding: 0 20px;
    background: #0071D8;
    overflow: hidden;
    position: relative;
    z-index: 1;
	transition: all 350ms cubic-bezier(0.77, 0, 0.175, 1);
}

.read-more .read-more-inner svg {
	width: 10px;
	height: 10px;
	fill: #fff;
	position: absolute;
	top: 50%;
	left: 21px;
	margin: auto;
	transform: translate(0,-50%);
	transition: all 350ms cubic-bezier(0.77, 0, 0.175, 1);
}

.read-more .read-more-inner.hover svg {
	transform: translate(0,-50%) rotate(180deg);
}

.read-more.w-ver .read-more-inner {
    color: #0071D8;
    background: #fff;
}

.read-more.w-ver .read-more-inner svg {
    fill: #0071D8;
}


/*---------------------------------------------- ADD CONTENTS */

.add-contents {
	margin-top: 60px;
}

.add-contents .add-contents-txt {
	line-height: 1.8;
	text-align: center;
}

.add-contents .read-more {
	margin-top: 16px;
}


/*---------------------------------------------- SLIDE SHOW */

.slide .slick-dots {
	height: 10px;
	line-height: 0;
	position: static;
	margin-top: 30px;
}

.slide .slick-dots li {
	width: 8px;
	height: 8px;
	margin: 0 6px;
}

.slide .slick-dots li button {
	width: inherit;
	height: inherit;
	background: #D3DDEA;
	padding: 0;
	border-radius: 5px;
	overflow: hidden;
	transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
}

.slide .slick-dots li.slick-active button {
	background: #00afeb;
}

.arrow,
.arrow-prev,
.arrow-next {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #fff;
	cursor: pointer;
	position: absolute;
	transition: all 350ms cubic-bezier(0.77, 0, 0.175, 1);
}

.arrow.hover,
.arrow-prev:hover,
.arrow-next:hover {
	background: #00afeb !important;
}

.arrow-prev { left: 0; }
.arrow-next { right: 0; }

.arrow svg,
.arrow-prev svg,
.arrow-next svg {
	width: 100%;
	height: 100%;
	fill: #00afeb;
	transition: all 350ms cubic-bezier(0.77, 0, 0.175, 1);
}

.arrow.hover svg,
.arrow-prev:hover svg,
.arrow-next:hover svg {
	fill: #fff;
}

.arrow-prev.slick-disabled,
.arrow-next.slick-disabled {
	opacity: 0;
	visibility: hidden;
}


/*---------------------------------------------- DOTs */

.dots-1px,
.dots-2px,
.dots-3px,
.dots-4px {
	position: relative;
	line-height: 0;
}

.dots-1px:before {
	content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: url(../images/common/bots-1px-1px-sp.gif) center center / 2px 2px repeat;
    position: absolute;
    top: 0;
    left: 0;
	z-index: 1;
}

.dots-2px:before {
	content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: url(../images/common/bots-2px-2px-sp.gif) center center / 2px 2px repeat;
    position: absolute;
    top: 0;
    left: 0;
	z-index: 1;
}

.dots-3px:before {
	content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: url(../images/common/bots-3px-3px-sp.gif) center center / 3px 3px repeat;
    position: absolute;
    top: 0;
    left: 0;
	z-index: 1;
}

.dots-4px:before {
	content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: url(../images/common/bots-4px-4px-sp.gif) center center / 4px 4px repeat;
    position: absolute;
    top: 0;
    left: 0;
	z-index: 1;
}


/*---------------------------------------------- SWIPE */

.swipe {
	position: relative;
	margin-top: 25px;
}

.swipeInner {
	width: 100vw;
    margin-left: -16px;
    overflow: scroll;
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

.swipeList {
	padding: 0 16px;
}

ol.swipeList {
	display: flex;
	justify-content: space-between;
	height: 112px;
	position: relative;
}

ol.swipeList:before {
	content: "";
    display: block;
    width: calc(100% - 32px - 200px);
    height: 6px;
    border-radius: 5px;
    background: #0d3973;
    position: absolute;
    top: 0;
    left: 116px;
	bottom: 0;
    margin: auto;
}

ol.swipeList li {
	display: flex;
	align-self: center;
	width: 112px;
	height: 112px;
	color: #0071D8;
	border-radius: 50%;
	position: relative;
	z-index: 1;
}

ol.swipeList li p {
	width: 100%;
	font-size: 1.8rem;
	line-height: 1.24;
	text-align: center;
	align-self: center;
}


/*------------------------------------------------------------------------------------
                                    以下 PC 用
------------------------------------------------------------------------------------*/

@media print, screen and (min-width: 481px) {
	
body { font-size: 1.5rem; min-width: 1080px; }

.sp-none { display: block; }
.pc-none { display: none !important; }

#container {
}

.wrap {
	width: 980px;
	padding: 0;
	margin-left: auto;
	margin-right: auto;
}

#main article > section:not(.no-padding):last-child,
#main article > div:not(.no-padding):last-child {
    padding-bottom: 150px;
}


/*---------------------------------------------- HEADER */

#header {
	height: 100px;
}
    
#header .headerInner {
	width: 980px;
	height: 100px;
	margin: 0 auto;
}

#header .header-logo {
    width: 180px;
    top: 0;
    margin: 24px 0;
    z-index: 20;
}

#header .header-logo a,
#header .header-logo a img {
	width: 180px;
}

#header.active .header-logo a img {
	opacity: 1;
}

#header .header-logo a:after {
	content: none;
}

#header .header-logo span {
    font-size: 1.2rem;
    letter-spacing: .75rem;
    text-align: left;
    transform: none;
    text-indent: 0;
    padding-top: 10px;
}

#header.active .header-logo span {
	color: #fff;
}

#header #header-toggle {
	display: none;
}

#header-nav {
	visibility: visible;
	width: 980px;
	height: 100px;
	position: absolute;
	top: auto;
	right: 0;
    left: 0;
	bottom: 0;
	margin: auto;
	transform: none;
	z-index: 15;
	transition: none;
	background: none;
	padding-top: 0;
}

#header-nav ul {
	display: flex;
	align-items: center;
    justify-content: flex-end;
	border: none;
	padding: 0;
	opacity: 1;
	transform: none;
	transition: none;
}

#header-nav ul li {
	border: none;
}

#header-nav ul li a {
	justify-content: center;
	width: calc(980px / 8);
	height: 100px;
	text-align: center;
	line-height: 100px;
	padding: 0;
	position: relative;
	z-index: 1;
}

#header-nav ul li a:before {
    content: "";
	width: 100%;
	height: 4px;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	transform: scale(0,1);
	margin: 0;
    background: #fff;
    transition: all 350ms cubic-bezier(0.77, 0, 0.175, 1);
}

#header-nav ul li a.hover:before {
	width: 100%;
	transform: scale(1,1);
}

#header-nav ul li:not(.header-message) a br {
	display: inline;
}

#header-nav ul li.header-message {
	position: absolute;
	top: -39px;
	right: 0;
}

#header-nav ul li.header-message a {
	display: block;
	width: auto;
	height: 32px;
	font-size: 1.2rem;
	line-height: 32px;
	color: #fff;
	border-radius: 16px;
	background: url(../images/common/header-message-icon.png), #0d3973;
	background-size: 16px 12px;
	background-position: 16px center;
	background-repeat: no-repeat;
	padding: 0 16px 0 40px;
	transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
}

#header-nav ul li.header-message a.hover {
	background: url(../images/common/header-message-icon.png), #00afd7;
	background-size: 16px 12px;
	background-position: 16px center;
	background-repeat: no-repeat;
}

#header-nav ul li.header-message a:before {
	content: none;
}

#header-nav #nav-toggle:before {
	content: "";
}

#nav-toggle span {
	display: none;
}

#header-nav #nav-toggle:before {
	content: "";
}

#nav-toggle span {
	display: none;
}

#affiliate,
#affiliate.active {
	opacity: 0;
	width: auto;
	height: auto;
	background: none;
	padding-top: 10px;
	top: 144px;
	left: 50%;
	z-index: -1;
	transform: translate(338px,-25px);
}

#nav-toggle:hover + #affiliate,
#affiliate:hover {
	visibility: visible;
	opacity: 1;
	transform: translate(338px,0);
}

#affiliate ul {
	display: block;
	width: calc(1024px / 9 * 2);
	background: #fff;
    border-radius: 16px;
	padding: 20px;
	margin: 0 auto;
	box-shadow: 0 10px 20px rgba(0,0,0,.2);
}

#affiliate ul li {
	text-align: center;
	padding: 8px 0;
}

#affiliate ul li a {
	width: 100%;
	height: auto;
	background: none;
    transition: all 300ms ease;
}

#affiliate ul li a:before {
	content: none;
}



/*---------------------------------------------- FOOTER */

#footer:before {
    height: 40px;
    background: url(../images/common/wave-blue-top.png) top center / 160px 40px repeat-x;
	animation: waving 2400ms cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

#footer .pageTop {
    top: -90px;
}

#footer .footer-logo {
    margin: 48px auto 64px;
}
    
#footer .footer-logo img {
    display: block;
    width: 180px;
}

#footer .footer-logo span {
    font-size: 1.2rem;
    padding-top: 2px;
}

#footer ul {
	display: flex;
	justify-content: center;
}

#footer ul li {
	margin: 0;
	border-right: 1px solid #7F96AC;
	transition: all 500ms ease;
}

#footer ul li:not(:hover).passive {
	color: #7F96AC;
}

#footer ul li:last-child {
	border: none;
}

#footer ul li a {
	line-height: 1;
	padding: 0 36px;
}

#footer .copyrights {
	display: block;
	text-align: center;
	transform: none;
}
    

/*---------------------------------------------- SECTNION */
    
.width100 {
    width: calc(100% - 32px);
    position: relative;
    z-index: 1;
    margin: auto;
}

.section {
	padding: 120px 0;
}


/*---------------------------------------------- PAGE-TITLE */

.page-header {
	height: 50vh;
	min-height: 360px;
}

.page-header .page-header-inner {
	padding: 100px 0 0;
}

.page-title {
    font-size: 4.5rem;
    top: calc(50% + 50px);
}
    
.page-title .font-josefin {
    font-size: 1.8rem;
}
    
.page-header + section {
    padding-top: 100px;
}


/*---------------------------------------------- SECTION-TITLE */

.section-title {
    font-size: 3.6rem;
	padding-bottom: 60px;
}

.section-title .font-josefin {
    font-size: 1.5rem;
}

    
/*---------------------------------------------- READ-MORE */

.read-more .read-more-inner {
    font-size: 1.3rem;
	height: 44px;
    line-height: 44px;
    border-radius: 22px;
}

.read-more .read-more-inner.font-josefin {
    font-size: 1.2rem;
}
    

/*---------------------------------------------- SWIPE */

.swipe {
	margin-top: 40px;
}

.swipeInner {
	width: 100%;
	margin-left: 0;
	overflow: visible;
}

.swipeList {
	padding: 0;
	margin: 0 auto;
}

ol.swipeList {
	padding: 0 16px;
}


}