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

    STYLE SHEET

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

    RESET

==============================================*/
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 {
	border: 0;
	font-size: 100%;
	font-style: normal;
	font-weight: normal;
	font: inherit;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}

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

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}

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

th, td {
	text-align: left;
	vertical-align: top;
}

img {
	border: none;
	vertical-align: top;
}

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

    SETTING MIXIN

==============================================*/
/*==============================================
    2-1. mixins
==============================================*/
/* font family */
/*==============================================

    BASE

==============================================*/
html {
	font-size: 14px;
}

@media screen and (min-width: 769px) {
	html {
		font-size: 15px;
	}
}

body {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: .06em;
	background-color: #ffffff;
	color: #000000;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-overflow-scrolling: touch;
	-webkit-text-size-adjust: 100%;
}

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

a {
	text-decoration: none;
	-webkit-transition: opacity .4s ease;
	transition: opacity .4s ease;
}

a:link, a:visited {
	color: #2b92f8;
}

a:hover {
	opacity: .7;
}

a[data-rel="external"]:after {
	content: '';
	width: 1em;
	height: 1em;
	display: inline-block;
	vertical-align: middle;
	margin-left: .5em;
	background: transparent url("../image/icon-external.png") no-repeat scroll center center;
	background-size: contain;
	margin-right: .5em;
}

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

    LAYOUT

==============================================*/
/*==============================================
    LAYOUT LIMIT
==============================================*/
.l-limit {
	margin: 0 auto;
}

@media screen and (min-width: 769px) {
	.l-limit {
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		min-width: 1000px;
		max-width: 1600px;
	}
}

/*==============================================
    LAYOUT FRAME
==============================================*/
.l-frame {
	width: 85.33333333%;
	margin: 0 auto;
}

@media screen and (min-width: 769px) {
	.l-frame {
		width: 83.33333333%;
	}
}

.l-frame--full {
	width: 100%;
}

/*==============================================
    LAYOUT COLUMNS
==============================================*/
@media screen and (min-width: 769px) {
	.l-column {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}

.l-column-both {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.l-column--wrap {
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.l-column--reverse {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-webkit-flex-direction: row-reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.l-col__item {
	width: 100%;
	margin: 0 auto;
}

@media screen and (min-width: 769px) {
	.l-col__item {
		width: 50%;
	}
}

@media screen and (min-width: 769px) {
	.l-col__item--2 {
		width: 50%;
	}
}

@media screen and (min-width: 769px) {
	.l-col__item--3 {
		width: 33.33333%;
	}
}

@media screen and (min-width: 769px) {
	.l-col__item--4 {
		width: 25%;
	}
}

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

    HEADER

==============================================*/
/*==============================================
    l-header
==============================================*/
/*==============================================

    FOOTER

==============================================*/
/*==============================================
    l-footer
==============================================*/
.l-footer {
	padding: 6em 0 2em 0;
}

@media screen and (min-width: 769px) {
	.l-footer {
		padding: 8em 0 2em 0;
	}
}

.l-footer_copyright {
	text-align: center;
}

.l-footer_copyright small {
	font-size: 0.78571rem;
	line-height: 1.5;
}

@media screen and (min-width: 769px) {
	.l-footer_copyright small {
		font-size: 0.8rem;
		line-height: 1.5;
	}
}

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

    COMPONENT

==============================================*/
/*==============================================
    COMPONENT TEXT
==============================================*/
.c-h1 {
	font-size: 1rem;
	line-height: 1.5;
}

@media screen and (min-width: 769px) {
	.c-h1 {
		font-size: 1rem;
		line-height: 1.5;
	}
}

.c-h2 {
	font-size: 1rem;
	line-height: 1.5;
}

@media screen and (min-width: 769px) {
	.c-h2 {
		font-size: 1rem;
		line-height: 1.5;
	}
}

.c-h3 {
	text-align: center;
	margin-bottom: 1em;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	font-size: 1.71429rem;
	line-height: 1.5;
}

@media screen and (min-width: 769px) {
	.c-h3 {
		text-align: left;
		font-size: 1.6rem;
		line-height: 1.5;
	}
}

.c-p {
	margin: 1em 0;
	font-size: 1rem;
	line-height: 1.5;
}

@media screen and (min-width: 769px) {
	.c-p {
		font-size: 1rem;
		line-height: 1.5;
	}
}

.c-note {
	color: #999999;
	font-size: 1rem;
	line-height: 1.5;
}

@media screen and (min-width: 769px) {
	.c-note {
		font-size: 1rem;
		line-height: 1.5;
	}
}

/*==============================================
    COMPONENT BUTTON
==============================================*/
/*==============================================

    UTILITY

==============================================*/
.u-hidden {
	display: none;
}

@media (max-width: 786px) {
	.u-hidden-sp {
		display: none;
	}
}

@media (min-width: 789px) {
	.u-hidden-pc {
		display: none;
	}
}

.u-left {
	text-align: left;
}

.u-center {
	text-align: center;
}

.u-right {
	text-align: right;
}

.u-red {
	color: red;
}

.u-bg-red {
	background-color: red;
}

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

    THEME HOME

==============================================*/
/*==============================================
    HOME MAIN
==============================================*/
.homeHero {
	position: relative;
	padding-top: 36px;
}

@media screen and (min-width: 769px) {
	.homeHero {
		padding-top: 0;
		margin-bottom: 112px;
	}
}

.homeHero__title {
	position: absolute;
	padding-top: 30px;
}

@media screen and (min-width: 769px) {
	.homeHero__title {
		padding-top: 84px;
	}
}

.homeHero__front {
	z-index: 2;
	position: absolute;
	top: 66px;
	left: calc((24/375)*100%);
	width: 76.26667%;
}

@media screen and (min-width: 769px) {
	.homeHero__front {
		top: 84px;
		left: calc((46/1200)*100%);
		width: 79.5%;
	}
}

.homeHero__back {
	z-index: -2;
	position: absolute;
	top: 66px;
	left: calc((24/375)*100%);
	width: 76.26667%;
}

@media screen and (min-width: 769px) {
	.homeHero__back {
		top: 84px;
		left: calc((46/1200)*100%);
		width: 79.5%;
	}
}

.homeHero .swiper-main {
	position: relative;
	width: 74.66667%;
	margin: 0 0 0 auto;
}

@media screen and (min-width: 769px) {
	.homeHero .swiper-main {
		width: 70%;
	}
}

.swiper-main .swiper-slide {
	position: relative;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

@-webkit-keyframes zoomBackground {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	100% {
		-webkit-transform: scale(1.15);
		transform: scale(1.15);
	}
}

@keyframes zoomBackground {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	100% {
		-webkit-transform: scale(1.15);
		transform: scale(1.15);
	}
}

.swiper-slide-next .swiper-main__thumb {
	-webkit-transform: scale(1);
	transform: scale(1);
}

.swiper-slide-active .swiper-main__thumb,
.swiper-slide-duplicate-active .swiper-main__thumb,
.swiper-slide-prev .swiper-main__thumb {
	-webkit-animation: zoomBackground 12s linear 0s both;
	animation: zoomBackground 12s linear 0s both;
}

.homeHero .swiper-pagination {
	display: inline-block;
	width: auto;
	left: -1.5em;
	bottom: 0;
}

.swiper-pagination-bullet {
	display: block;
	margin: 1em 0 .25em !important;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background-color: #1980ED;
	opacity: .4;
	-webkit-transition: opacity .4s ease 0s;
	transition: opacity .4s ease 0s;
}

.swiper-pagination-bullet-active {
	position: relative;
	opacity: 1;
}

.swiper-pagination-bullet-active::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 10px;
	height: 10px;
	border: 1px solid blue;
	border-radius: 200px;
}

.homeHero__nav {
	padding-top: 2em;
	padding-bottom: 4em;
	padding-left: calc((24/375)*100%);
}

@media screen and (min-width: 769px) {
	.homeHero__nav {
		position: absolute;
		bottom: 0;
		left: calc((46/1200)*100%);
		padding: 0;
	}
}

.homeHero__nav li {
	font-size: 0.78571rem;
	line-height: 1.5;
}

@media screen and (min-width: 769px) {
	.homeHero__nav li {
		font-size: 0.73333rem;
		line-height: 1.5;
	}
}

.homeHero__nav li + * {
	margin-top: 1em;
}

.homeHero__nav a {
	color: #000000;
	text-decoration: underline;
}

.blueWrap {
	margin: -1px 0;
	padding: 3em 0;
	background-color: #1988f6;
}

.blueWrap h2 {
	text-align: center;
	margin-bottom: 3em;
	color: #ffffff;
	font-size: 1.42857rem;
	line-height: 1.2;
}

@media screen and (min-width: 769px) {
	.blueWrap h2 {
		font-size: 1.33333rem;
		line-height: 1.2;
	}
}

.blueWrap h2 span {
	font-size: 0.85714rem;
	line-height: 1.5;
}

@media screen and (min-width: 769px) {
	.blueWrap h2 span {
		font-size: 0.8rem;
		line-height: 1.5;
	}
}

.blueWrap h3 {
	color: #ffffff;
}

.blueWrap_table {
	display: table;
	table-layout: fixed;
	width: 100%;
}

.blueWrap_table tr {
	display: block;
	width: 100%;
	padding: 1.5em 0;
	border-bottom: 1px solid #80c3fa;
	vertical-align: middle;
}

.blueWrap_table tr:first-of-type {
	border-top: 1px solid #80c3fa;
}

@media screen and (min-width: 769px) {
	.blueWrap_table tr {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
	}
}

.blueWrap_table tr th {
	display: block;
	padding-bottom: .5em;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	word-wrap: break-word;
	color: #ffffff;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	font-size: 1.07143rem;
	line-height: 1.5;
}

@media screen and (min-width: 769px) {
	.blueWrap_table tr th {
		width: 120px;
		font-size: 1rem;
		line-height: 1.5;
		-webkit-transform: translate(0, 2px);
		transform: translate(0, 2px);
	}
}

.blueWrap_table tr td {
	display: block;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	word-wrap: break-word;
	color: #ffffff;
	font-size: 1rem;
	line-height: 1.5;
}

@media screen and (min-width: 769px) {
	.blueWrap_table tr td {
		width: calc(100% - 120px);
		font-size: 0.93333rem;
		line-height: 1.5;
		-webkit-transform: translate(0, 4px);
		transform: translate(0, 4px);
	}
}

.newsWrap {
	margin: 4em 0;
}

@media screen and (min-width: 769px) {
	.newsWrap {
		margin: 8em 0;
	}
}

.newsWrap dl {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding-bottom: 1.5em;
}

.newsWrap dl dt {
	width: 100px;
	font-size: 0.92857rem;
	line-height: 1.8;
}

@media screen and (min-width: 769px) {
	.newsWrap dl dt {
		width: 120px;
		font-size: 1rem;
		line-height: 1.75;
	}
}

.newsWrap dl dd {
	width: calc(100% - 100px);
	font-size: 0.92857rem;
	line-height: 1.8;
}

@media screen and (min-width: 769px) {
	.newsWrap dl dd {
		width: calc(100% - 120px);
		font-size: 1rem;
		line-height: 1.75;
	}
}

.newsWrap dl dd a {
	text-decoration: underline;
}

.newsWrap dl h3 {
	border-bottom: 1px solid #000000;
	display: inline-block;
	margin-bottom: 1em;
	font-weight: bold;
	font-size: 1.07143rem;
	line-height: 1.56;
}

@media screen and (min-width: 769px) {
	.newsWrap dl h3 {
		font-size: 1.2rem;
		line-height: 1.45833;
	}
}

.newsWrap dl em {
	color: red;
}

.newsWrap dl:last-of-type {
	padding-bottom: 1em;
	border-bottom: 1px solid #c9c9c9;
}

.newsWrap dl ul {
	margin-top: calc((20/375)*100vw);
}

@media screen and (min-width: 769px) {
	.newsWrap dl ul {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin-top: 30px;
	}
}

@media screen and (min-width: 769px) {
	.newsWrap dl ul li {
		margin-right: 10px;
		margin-bottom: 10px;
		height: calc((240/1200)*100vw);
	}
}

.newsWrap dl ul li + * {
	margin-top: calc((10/375)*100vw);
}

@media screen and (min-width: 769px) {
	.newsWrap dl ul li + * {
		margin-top: 0;
	}
}

@media screen and (min-width: 769px) {
	.newsWrap dl ul li img {
		width: auto;
		height: 100%;
		border-radius: 4px;
	}
}

.newsWrap__more {
	width: 100%;
	text-align: center;
	margin-top: 2em;
}

.newsWrap__more p {
	z-index: 1;
	position: relative;
	display: block;
	padding: 1.5em 0;
	color: #000000;
	border: 1px solid #000000;
	background-color: #ffffff;
	font-size: 1.07143rem;
	line-height: 1.5;
}

@media screen and (min-width: 769px) {
	.newsWrap__more p {
		cursor: pointer;
		font-size: 1.06667rem;
		line-height: 1.5;
	}
}

.photoWrap {
	margin: 4em 0;
}

@media screen and (min-width: 769px) {
	.photoWrap {
		margin: 8em 0;
	}
}

.photoWrap_gallery ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

@media screen and (min-width: 769px) {
	.photoWrap_gallery ul::after {
		content: '';
		display: block;
		width: calc(33.3% - 1px);
	}
}

.photoWrap_gallery ul li {
	width: calc(50% - 1px);
	padding-bottom: 2px;
}

@media screen and (min-width: 769px) {
	.photoWrap_gallery ul li {
		width: calc(33.3% - 1px);
	}
}

@media screen and (min-width: 769px) {
	.photoWrap_item {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}

.photoWrap_item:nth-child(2n-1) {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-webkit-flex-direction: row-reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.photoWrap_item i {
	display: block;
	width: 71.6%;
	margin: 0 auto;
}

@media screen and (min-width: 769px) {
	.photoWrap_item i {
		width: 28%;
		margin: 0;
	}
}

@media screen and (min-width: 769px) {
	.photoWrap_item_textarea {
		width: 65%;
		margin: 0;
	}
}

.photoWrap_item_textarea h4 {
	text-align: center;
	padding: 1em 0;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	font-size: 1.28571rem;
	line-height: 1.5;
}

@media screen and (min-width: 769px) {
	.photoWrap_item_textarea h4 {
		text-align: left;
		padding: 0 0 1em 0;
		font-size: 1.33333rem;
		line-height: 1.5;
	}
}

.photoWrap_item_textarea p {
	font-size: 1rem;
	line-height: 2;
}

@media screen and (min-width: 769px) {
	.photoWrap_item_textarea p {
		font-size: 1rem;
		line-height: 2;
	}
}

.photoWrap_item + * {
	margin-top: 3em;
}

@media screen and (min-width: 769px) {
	.photoWrap_item + * {
		margin-top: 4em;
	}
}
