@charset "UTF-8";

/* ------------------------------------------
	BASIC STYLES
--------------------------------------------- */
*,*::before,*::after{
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-o-box-sizing:border-box;
	-ms-box-sizing:border-box;
	box-sizing:border-box;
}

body,header,footer,nav,
article,section,address,aside,figure,div,
h1,h2,h3,h4,h5,h6,
p,blockquote,pre,dl,dt,dd,ol,ul,li,hr,img,
fieldset,legend,form,label,
th,td,
menu,details,summary{
	padding:0;
	border:0;
	margin:0;
}

html{
	font-size:12px;
}
	/* 文字の単位に「rem」を使うのであれば、html（ルート要素）に文字サイズを記載する */

@media(max-width:959px) and (min-width:600px){
	html{
		font-size:14px;
	}
}

@media(min-width:960px){
	html{
		font-size:16px;
	}
}

body{
	color:#444;
	background-color:#F9F9F9;
	background-image: url(../images/bg.jpg);
	background-attachment: fixed;
	background-size: cover;
	background-position: 50% 50%;
/*	font-family:"Noto Serif JP","ヒラギノ明朝 ProN W3",Hiragino Mincho ProN,Serif;*/
	font-family: "ヒラギノ角ゴ ProN W3",Hiragino Kaku Gothic ProN,"メイリオ",Meiryo,Sans-Serif;
	font-weight: normal;
	-webkit-text-size-adjust:100%;
	-ms-text-size-adjust:100%;
	text-align:left;
	line-height:1.6;	/* line-heightでは単位を記載しない（px指定は例外） */
	/*padding-top:80px;*/	/* ヘッダの高さ分空ける */
}

/*
#00a3ad
*/



/* ------------------------------------------
	WRAPPER
--------------------------------------------- */
#wrapper{
	position: relative;
	background-color: rgba(255,255,255,0.8);
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
	z-index: 12;
}



/* ------------------------------------------
	HEADER
--------------------------------------------- */
header{
	padding:0;
	margin: 0;
}

header .video{
	position: relative;
	width:100%;
	height:0;
	padding-top: 56.25%;
}

.video iframe{
	position: absolute;
	top:0;
	left: 0;
	width:100%;
	height:100%;
	border:none;
	margin:0;
}

@media(max-width:959px) and (min-width:600px){
}

@media(min-width:960px){
}

/* ------------------------------------------
	MAIN
--------------------------------------------- */
#top{
	padding-top:0px;
	margin-top:0px;
}

article,section{
	position:relative;
	width:100%;
	margin:0 auto;
}

article > div{
	position:relative;
	padding:0;	/*bottom注意*/
	margin:0 auto;
	width:100%;
	min-width:320px;
}

article > div > section,
article > div > div,
article > div > aside{
	position:relative;
	padding:0;
	margin:0 auto;
	z-index:160;
}

article > div > section,
article > div > div{
	padding: 0;
	margin-bottom:0;
}

@media(min-width:960px){
	article > div > section,
	article > div > div{
		padding-right:0px;
		padding-left:0px;
	}
}

h1{
	color:#2C438A;
	font-size:2.0rem;
	text-align:left;
	letter-spacing:0.2rem;
	line-height:1.2;
	padding:4px 0 4px;
	margin: 0 auto 4px;
	position: relative;
	z-index: 16;
}

h2{
	color:#2C438A;
	font-size:1.6rem;
	text-align:left;
	letter-spacing:0.2rem;
	line-height:1.4;
	padding:4px 0 4px;
	margin: 0 auto 4px;
	position: relative;
	z-index: 16;
}

h3{
	color:#000;
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1.6;
	padding:8px 0 8px 48px;
	border-bottom: #00a3ad solid 1px;
	margin:0 auto 12px;
	position: relative;
	z-index: 16;
}

h3::before,
h3::after{
	display: block;
	content: "";
	position: absolute;
}

h3::before{
	top: -4px;
	left: 0;
	background: radial-gradient(at top left,transparent,#00a3ad);
	width: 32px;
	height: 32px;
	border-radius: 50%;
	z-index: -8;
}

h3::after{
	top: 16px;
	left: 20px;
	background: radial-gradient(at top left,transparent,#00a3ad);
	width: 16px;
	height: 16px;
	border-radius: 50%;
	z-index: -4;
}

p{
	text-align:left;
	margin-bottom:8px;
}

small{
	font-size:0.8rem;
}

img{
	display:block;
	width:100%;
}

strong{
	font-style: normal;
	font-weight: 700;
	text-decoration:none;
}

.strongdeco{
	display: inline-block;
	position: relative;
}

.strongdeco::after{
	display: block;
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	background-color: #00a3ad;
	width: 100%;
	height: 2px;
	transition: all 1.6s ease 0.4s;
	transform: scaleX(0%);
	transform-origin: top left;
	z-index: 16;
}


em{
	font-style:italic;
	font-weight: 300;
	text-decoration:none;
}

/* link */
a:link,a:visited{
	color:#00a3ad;
	text-decoration:none;
}

a:hover,a:active{
	color:#00a3ad;
	text-decoration:underline;
}

/* list */
ol,ul,dl{
	line-height:1.6;
	margin:0 1.0rem;
}

li > ol,li > ul{
	margin:0;
}

ol,ul{
	margin-left:1.0rem;
}

ul > li{
	list-style-type:disc;
}

ol > li{
	list-style-type:decimal;
}

li,dt,dd{
	padding:0;
	margin:0;
}

li{
	margin-bottom:0;
	margin-left:1.0rem;
}

dt{
	font-weight: 700;
	margin:16px 0 4px;
}

dd:last-child{
	margin-bottom:12px;
}

dd{
	font-size:0.8rem;
	padding-left:1.0em;
	margin-bottom:8px;
}

ul > li > ul{
	margin-top: 0;
}

ul > li > ul > li{
	list-style-type:circle;
	margin-bottom: 0;
}

@media(min-width:600px){
	.sp{
		display:none;
	}
}

hr{
	margin: 1.0rem 0;
	border-bottom: solid 1px #888;
}

/* flex */
.flex,.flex_alt,.flex_re{
	display:flex;
	justify-content:space-between;
	margin-bottom:0;
}

.flex,.flex_alt{
	flex-direction:row;
}

.flex_re{
	flex-direction:row-reverse;
}

.flex,.flex_re{
	flex-wrap:wrap;
}

.flex_alt{
	flex-wrap:nowrap;
}

.box0,.box2,.box40,.box31,.box32,.box41,.box43,
.box16,.box14
{
	position:relative;
	padding:0;
}

.box0,.box2,
.box31,.box32,
.box41,.box43,
.box16,.box14
{
	width:100%;
	margin-bottom:0;
}

.box40{
	width:48%;
	margin-bottom:16px;
}

.flex > div img{
	margin-bottom:0;
}

.box40 p:last-child{
	margin-bottom: 0;
}

@media(max-width:959px) and (min-width:600px){
	.box0,.box2,.box31,.box32,.box16,.box14
	{
		margin-bottom:0;
	}

	.box2{
		width:100%;
	}

	.box40{
		width:48%;
	}

	.box31{
		width:32%;
	}

	.box32{
		width:66%;
	}

	.box41{
		width:24%;
	}

	.box43{
		width:72%;
	}

	.box16{
		width:56%;
	}

	.box14{
		width: 40%;
	}
}

@media(min-width:960px){
	.box0,.box2,.box31,.box32,.box16,.box14
	{
		margin-bottom:0;
	}

	.box2{
		width:48%;
	}

	.box40{
		width:24%;
	}

	.box31{
		width:32%;
	}

	.box32{
		width:66%;
	}

	.box41{
		width:24%;
	}

	.box43{
		width:72%;
	}

	.box16{
		width:56%;
	}

	.box14{
		width: 40%;
	}
}

/* special */
ul.note{
	font-size:0.8rem;
	text-align: left;
}

ul.note_L{
	font-size:1.0rem;
	text-align: left;
}

ul.note > li,
ul.note_L > li
{
	position:relative;
	list-style:none;
	padding:0 0 0 0.64em;
	margin:0;
}

ul.note > li::after,
ul.note_L > li::after
{
	display:block;
	content:"※";
	position:absolute;
	top:0;
	left:-0.64em;
}

.btn{
	display:block;
	text-align:center;
	margin:0 auto;
	width:100%;
}

.btn a{
	display:block;
	font-weight: 700;
	text-align:center;
	text-decoration:none;
	line-height: 48px;
	padding:0 24px;
	border-radius: 4px;
	margin:0;
}

.btn a:link,
.btn a:visited{
	color:#FFF;
	background-color: #00a3ad;
	border: 1px solid #00a3ad;
	/* background: linear-gradient(to right, #e60012 0%, #ff5c2a 51%, #fe9929 100%);
	background-size: 200% auto; */
	transition: 0.2s;
}

.btn a:hover,
.btn a:active{
	color:#00a3ad;
	background-color: #FFF;
	border: 1px solid #00a3ad;
	/* background-position: right center; */
}

.source,
.annotation{
	text-align: left;
	margin: 0;
}

.attention,
.source{
	font-size: 0.8rem;
}

.serif{
	font-family:"Noto Serif JP","ヒラギノ明朝 ProN W3",Hiragino Mincho ProN,Serif;
}

.next span
 {
	content: "";
	display: block;
	position:absolute;
	left:50%;
	width:24px;
	height:24px;
	margin-left:-12px;
	-webkit-transform:rotate(-45deg);
	transform:rotate(-45deg);
	-webkit-animation:arrow 2s infinite;
	animation:arrow 2s infinite;
	opacity:0;
	box-sizing:border-box;
	z-index: 120;
}

.next span
 {
	border-left:4px solid #00a3ad;
	border-bottom:4px solid #00a3ad;
}

.next span:nth-of-type(1)
 {
	bottom:64px;
	-webkit-animation-delay:0s;
	animation-delay:0s;
}

.next span:nth-of-type(2)
{
	bottom:48px;
	-webkit-animation-delay:.15s;
	animation-delay:.15s;
}

.next span:nth-of-type(3)
{
	bottom:32px;
	-webkit-animation-delay:.3s;
	animation-delay:.3s;
}

@-webkit-keyframes arrow {
	0% {
		opacity:0;
	}
	50% {
		opacity:1;
	}
	100% {
		opacity:0;
	}
}
@keyframes arrow {
	0% {
		opacity:0;
	}
	50% {
		opacity:1;
	}
	100% {
		opacity:0;
	}
}

sup{
	position: relative;
	top: -0.6em;
	font-size: 0.64em;
}



/* ------------------------------------------
	SEC
--------------------------------------------- */
section .box32,
section .box16
{
	padding-bottom:12px;
}

@media(max-width:959px) and (min-width:600px){
	section .box32,
	section .box16
	{
		padding-bottom: 36px;
	}
}

@media(min-width:960px){
	section .box32,
	section .box16
	{
		padding-bottom: 36px;
	}
}

.catch{
	font-weight: bold;
}

.v01,.v02,.v03,.v04,.v05,.v06,.v07,.v08{
	position: absolute;
	width: 4vw;
	max-width: 40px;
}

.v01{
	left: 8%;
	top:8%;
}

.v02{
	left: 40%;
	top:60%;
}

.v03{
	left: 56%;
	top: 32%;
}

.v04{
	left: 60%;
	top: 64%;
}

.v05{
	left: 76%;
	top:48%;
}

.v06{
	left: 94%;
	top: 40%;
}

.v07{
	left: 88%;
	top: 12%;
}

.v08{
	left: 20%;
	top: 72%;
}

#sec1{
	position: relative;
}

#sec1 > div:nth-child(1){
	position: relative;
	background-color: #fff8e5;
	padding-top: 24px;
}

@media(min-width:960px){
	#sec1 > div:nth-child(1){
		padding-top: 48px;
	}
}

#sec1 > div:nth-child(1) > .box0 > img{
	margin: 0 auto;
}

#sec1 > div:nth-child(1) > p{
	position: absolute;
	left: 48px;
	bottom: 0px;
	font-weight: bold;
	text-shadow: #FFF 0 0 2px;
}

#sec1 > div:nth-child(1) > p span{
	font-size: 1.4em;
}

#sec1 > div:nth-child(1) h1{
	position: absolute;
	top: 0px;
	left: 48px;
	font-size: 1.8rem;
}

@media(max-width:959px) and (min-width:600px){
	#sec1 > div:nth-child(1) > p{
		bottom: 8px;
	}

	#sec1 > div:nth-child(1) h1{
		top: 24px;
		font-size: 2.4rem;
	}
}

@media(min-width:960px){
	#sec1 > div:nth-child(1) h1{
		font-size: 2.8rem;
	}
}

#sec1 > div:nth-child(2) p{
	text-align: center;
	font-size: 1.6rem;
	font-weight: bold;
	padding: 12px;
	margin: 0;
}

@media(min-width:960px){
	#sec1 > div:nth-child(2) p{
		font-size: 2.0rem;
	}
}

#sec1 > div:nth-child(3){
	background-color: #eef7f2;
	padding:48px 48px 0;
}

#sec1 > div:nth-child(3) > .box16 > p{
	font-size: 1.2rem;
}

#sec1 > div.flex{
	align-items: flex-end;
}

@media(max-width:959px) and (min-width:600px){
	#sec1 > div:nth-child(3) > .box16{
		padding-bottom: 48px;
	}
}

@media(min-width:960px){
	#sec1 > div:nth-child(3) > .box16{
		padding-bottom: 48px;
	}
}

#sec2 > div{
	position: relative;
	background-color: #d6ecf9;
	padding:48px 48px 0;
}

#sec2 > div.flex_re{
	align-items: flex-end;
}

#sec3 > div{
	position: relative;
	background-color: #ffffd7;
	padding:48px 48px 0;
}

#sec3 > div.flex{
	align-items: flex-end;
}

#sec4 > div{
	position: relative;
	background-color: #eff7f2;
	padding:48px 48px 0;
}

#sec4 > div.flex_re{
	align-items: center;
}

#sec4 > div > .box16 > div{
	background-color: #fff2cc;
	padding:8px;
	border-radius: 12px;
	border: #444 solid 1px;
	margin-bottom: 12px;
}

/* #sec5 > div{
	position: relative;
	background-color: #f1f8ed;
	padding:48px 48px 0;
} */

#sec5 > div.flex{
	align-items: center;
}

#sec6 > div{
	position: relative;
	background-color: #e2f0d9;
	padding:48px 48px 0;
}

#sec6 > div.flex_re{
	align-items: flex-end;
	padding-top: 0;
}

#sec6 > div.flex:last-of-type{
	padding-top: 8;
}

#sec6 .box32{
	padding-bottom: 12px;
}

#sec7 > div{
	position: relative;
	background-color: #feffd7;
	padding:48px 48px 0;
}

#sec7 > div.flex{
	align-items: flex-end;
}

#sec8 > div{
	position: relative;
	background-color: #fdf0e7;
	padding:48px 48px 0;
}

#sec8 > div.flex_re{
	align-items: flex-end;
}

#sec8 > div.flex_re .box32{
	padding-bottom: 4px;
}

#sec8 > div > div > h2,
#sec8 > div > div > p{
	text-align: center;
}

#sec8 > div > div > p{
	background-color: #ffddcc;
	padding: 12px;
}

#sec8 > div:last-child .box0{
	margin-bottom: 48px;
}

@media(min-width:960px){
	#sec8 > div.flex_re .box31 img{
		position: relative;
		left: 32px;
	}
}

#sec3 > div,
#sec4 > div,
#sec5 > div{
	padding-bottom: 24px;
}

@media(min-width:960px){
	#sec4 > div,
	#sec5 > div{
		padding-bottom: 0;
	}
}

/* ------------------------------------------
	BACKTOTOP
--------------------------------------------- */
#backtotop{
	position:fixed;
	bottom:0;
	right:20px;
	font-size:0.8rem;
	z-index:1200;
}

#backtotop a{
	display:block;
	text-align:center;
	text-decoration:none;
	padding:16px 24px;
	border-radius:12px 12px 0 0;
}

#backtotop a:link,#backtotop a:visited{
	color:rgba(255,255,255,0.64);
	background-color:rgba(0,163,173,0.64);
	/* border:1px solid rgba(0,0,0,0.64); */
}

#backtotop a:hover,#backtotop a:active{
	color:rgba(255,255,255,1);
	background-color:rgba(0,163,173,1.00);
	/* border:1px solid rgba(68,68,68,1); */
}



/* ------------------------------------------
	SLICK
--------------------------------------------- */
.slider,.slider li{
	margin: 0;
}

.slide_arrow{
	color: #00a3ad;
	font-family: 'slick';
	font-size: 1.2rem;
	vertical-align: middle;
}



/* ------------------------------------------
	MODAL
--------------------------------------------- */
ul.my-gallery,
ul.my-gallery > li{
	list-style: none;
	margin-right: 0;
	margin-left: 0;
}

ul.my-gallery + .attention{
	text-align: right;
}


/* ------------------------------------------
	FOOTER
--------------------------------------------- */
footer{
	position:relative;
	background-color:#FFF;
	padding:24px 48px;
	width:100%;
}

footer p{
	font-size: 1.0rem;
	text-align: left;
}

footer .copyright{
	text-align: center;
	margin: 0 auto;
}

footer .copyright p{
	font-size: 0.8rem;
	text-align: center;
	display: inline-block;
	position: relative;
	margin: 0;
}

footer > .text dl,
footer > .text dt,
footer > .text dd{
	font-size: 0.8rem;
	font-weight: normal;
	position: relative;
	padding: 0;
	margin: 0;
}

footer > .text dl{
	margin-bottom: 24px;
}

footer > .text dd{
	padding-left: 1.6em;
	margin-left: 0.4em;
}

footer > .text dd::after{
	position: absolute;
	display: block;
	top: 0;
	left: 0;
}

footer > .text dd:nth-of-type(1):after{
	content: "1)";
}

footer > .text dd:nth-of-type(2):after{
	content: "2)";
}

footer > .text dd:nth-of-type(3):after{
	content: "3)";
}

footer > .text dd:nth-of-type(4):after{
	content: "4)";
}

footer > .text dd:nth-of-type(5):after{
	content: "5)";
}

footer > .text dd:nth-of-type(6):after{
	content: "6)";
}

footer > .text dd:nth-of-type(7):after{
	content: "7)";
}

footer > .text dd:nth-of-type(8):after{
	content: "8)";
}


@media(max-width:959px) and (min-width:600px){
}

@media(min-width:960px){
}



/* ------------------------------------------
	SCROLLEVENT
--------------------------------------------- */
.fadeIn {
	opacity: 0.0;
	transition-duration: 1200ms;
	transition-property: opacity, transform;
	transition-timing-function: ease;
}

.fadeD1 {
	transition-delay: 200ms;
	transition-duration: 1600ms;
}

.fadeD2 {
	transition-delay: 280ms;
	transition-duration: 2000ms;
}

.fadeD3 {
	transition-delay: 360ms;
	transition-duration: 2400ms;
}

.popup_t {
	transform: translate(0, -12px) scale(0.2);
}

.popup_r {
	transform: translate(12px, 0) scale(0.2);
}

.popup_b {
	transform: translate(0, 4px) scale(0.8);
}

.popup_l {
	transform: translate(-12px, 0) scale(0.2);
}

.popup_c {
	opacity: 0;
	transform: translate(0, 0) scale(0.8);
}

.scrollIn {
	opacity: 1.0;
	transform: translate(0, 0) scale(1.0,1.0);
}

section.scroll-on > h2::after,
div.scroll-on > p > strong.strongdeco::after
{
	transform: scaleX(100%);
}


/*  */
/* header::after{
	display: block;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../images/c005_t03.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-color: rgba(0,0,0,0.4);
	z-index: 8;
} */

.catch,
footer{
	position: relative;
	background-color: #FFF;
	z-index: 12;
}