@charset "utf-8";

/* ---------------------------------------------------------------
	Reset
--------------------------------------------------------------- */
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

body {
    line-height:1;
}

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

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

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

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000; 
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

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

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}


/* add to
---------------------------------------------------------- */
html{
	-webkit-text-size-adjust: 100%;
	box-sizing: border-box;
}
*, *:before, *:after{
	box-sizing: inherit;
}

main{
	display: block;
}

img {
	border-style: none;
}

button, input, select, textarea {
	font-family: inherit;
	font-weight: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

ul li,
ol li{
	vertical-align: top;
}



/* ---------------------------------------------------------------
	Base
--------------------------------------------------------------- */
body {
	color: #000;
	font-size: 18px;
	font-weight: normal;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height: 1.7;
	word-break: normal;
	overflow-wrap: break-word;
	word-wrap: break-word;
	background-color: #fff;
	-webkit-font-smoothing: antialiased;
	text-align: center;
}

a {
	color: #333;
	text-decoration: underline;
}

strong{
	font-weight: bold;
}
em{
	font-style: italic;
}
del{
	font-style: line-through;
}

sup, sub {
	line-height: 1.35;
	font-size: 10px;
}
sup {
	vertical-align: super;
}
sub {
	vertical-align: sub;
}

img{
	max-width: 100%;
	height: auto !important;
	display: block;
	margin: auto;
}

table{
	max-width: 100%;
}

/* PCのみ */
@media all and (min-width: 751px) {
	body{
		min-width: 400px;
/*		background: url("img/bg_pc.jpg") no-repeat;
*/		background-size: cover;
		background-attachment: fixed;
	}
	#all{
		width: 400px;
		margin: auto;
		background: #fff;
		box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 15%);
	}
	
	a,
	a img{
		-webkit-transition: 0.3s;
		-moz-transition: 0.3s;
		-o-transition: 0.3s;
		-ms-transition: 0.3s;
		transition: 0.3s;
		-webkit-transition-property: opacity;
		-ms-transition-property: opacity;
		transition-property: opacity;
	}
	a:hover{
		text-decoration: none;
	}
/*	a:hover img{
		opacity: 0.7;
		filter: alpha(opacity=70);
		-ms-filter: "alpha( opacity=70 )";
	}
*/}
/* SPのみ */
@media all and (max-width: 750px) {
	body{
		width: 100%;
		min-width: 320px;
	}
	#all{
		width: 100%;
	}
}



/* ---------------------------------------------------------------
	Animation
--------------------------------------------------------------- */
.anim-box{
	opacity: 0;
	position: absolute;
}

.anim-box.slidein-left.is-animated {
	animation: slideInLeft 1s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}
@keyframes slideInLeft {
	0% {
		transform: translateX(-180px);
		opacity: 0;
	}
	100% {
		transform: translateX(0);
	}
	40%,100% {
		opacity: 1;
	}
}

.anim-box.slidein-right.is-animated {
	animation: slideInRight 1s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}
@keyframes slideInRight {
	0% {
		transform: translateX(180px);
		opacity: 0;
	}
	100% {
		transform: translateX(0);
	}
	40%,100% {
		opacity: 1;
	}
}

.anim-box.fadeup.is-animated {
	animation: fadeup 0.5s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}
@keyframes fadeup {
	0% {
		transform: translateY(50px);
		opacity: 0;
	}
	70% {
		opacity: 1;
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.anim-box.zoomin.is-animated {
	animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}
@keyframes zoomIn {
	0% {
		transform: scale(0.8);
		opacity: 0;
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}

/* 遅れて開始 */
.anim-delay02{
	animation-delay: .2s !important;
}
.anim-delay04{
	animation-delay: .4s !important;
}
.anim-delay06{
	animation-delay: .6s !important;
}
.anim-delay08{
	animation-delay: .8s !important;
}
.anim-delay10{
	animation-delay: 1s !important;
}
.anim-delay12{
	animation-delay: 1.2s !important;
}


/* ---------------------------------------------------------------
	Content
--------------------------------------------------------------- */
.cf:after {
	content:" ";
	display:block;
	clear:both;
}
/* PCのみ */
@media all and (min-width: 751px) {
	.inner{
		margin: auto;
	}
}

article > div{
	position: relative;
}

.elm01_01{
	right: 4%;
	top: 12.3%;
	width: calc(189 / 750 * 400px);
}
.elm01_02{
	left: 4%;
	bottom: 4%;
	width: calc(205 / 750 * 400px);
}
.elm01_03{
	left: 0;
	right: 0;
	top: 52%;
	margin: auto;
	width: calc(716 / 750 * 400px);
}

.elm02_01{
	right: 0;
	left: 0;
	top: 6%;
	margin: auto;
	width: calc(575 / 750 * 400px);
}
.elm02_02{
	left: 10%;
	top: 29.8%;
	width: calc(267 / 750 * 400px);
}
.elm02_03{
	right: 6%;
	top: 43%;
	width: calc(276 / 750 * 400px);
}
.elm02_04{
	left: 30%;
	top: 66.5%;
	width: calc(197 / 750 * 400px);
}

.elm03_01{
	top: 2%;
	right: 0;
	left: 0;
	margin: auto;
	width: calc(700 / 750 * 400px);
}
.elm03_02{
	top: 68%;
	right: 0;
	left: 0;
	margin: auto;
	width: calc(701 / 750 * 400px);
}

.elm04_01{
	top: 7%;
	right: 0;
	left: 0;
	margin: auto;
	width: calc(635 / 750 * 400px);
}

.elm05_01{
	top: 5%;
	left: 0;
	right: 0;
	margin: auto;
	width: calc(731 / 750 * 400px);
}
.elm05_02{
	top: 19%;
	left: 0;
	right: 0;
	margin: auto;
	width: calc(417 / 750 * 400px);
}
.elm05_03{
	top: 71.5%;
	left: 0;
	right: 0;
	margin: auto;
	width: calc(559 / 750 * 400px);
}

.elm06_01{
	top: 2%;
	left: 0;
	right: 0;
	margin: auto;
	width: calc(495 / 750 * 400px);
}
.elm06_02{
	top: 65.5%;
	left: 0;
	right: 0;
	margin: auto;
	width: calc(507 / 750 * 400px);
}

.elm07_01{
	top: 28%;
	left: 0;
	right: 0;
	margin: auto;
	width: calc(457 / 750 * 400px);
}
.elm07_02{
	position: absolute;
	top: 23%;
	left: 0;
	width: calc(176 / 750 * 400px);
}

.elm08_01{
	top: 7%;
	left: 0;
	right: 0;
	margin: auto;
	width: calc(457 / 750 * 400px);
}

.elm09_01{
	top: 17%;
	left: 0;
	right: 0;
	margin: auto;
	width: calc(711 / 750 * 400px);
}
/* SP */
@media all and (max-width: 750px) {
	.elm01_01{
		width: calc(189vw / 750 * 100);
	}
	.elm01_02{
		width: calc(205vw / 750 * 100);
	}
	.elm01_03{
		width: calc(716vw / 750 * 100);
	}
	
	.elm02_01{
		width: calc(575vw / 750 * 100);
	}
	.elm02_02{
		width: calc(267vw / 750 * 100);
	}
	.elm02_03{
		width: calc(276vw / 750 * 100);
	}
	.elm02_04{
		width: calc(197vw / 750 * 100);
	}
	
	.elm03_01{
		width: calc(700vw / 750 * 100);
	}
	.elm03_02{
		width: calc(701vw / 750 * 100);
	}
	
	.elm04_01{
		width: calc(635vw / 750 * 100);
	}
	
	.elm05_01{
		width: calc(731vw / 750 * 100);
	}
	.elm05_02{
		width: calc(417vw / 750 * 100);
	}
	.elm05_03{
		width: calc(559vw / 750 * 100);
	}
	
	.elm06_01{
		width: calc(495vw / 750 * 100);
	}
	.elm06_02{
		width: calc(507vw / 750 * 100);
	}
	
	.elm07_01{
		width: calc(457vw / 750 * 100);
	}
	.elm07_02{
		width: calc(176vw / 750 * 100);
	}
	
	.elm08_01{
		width: calc(457vw / 750 * 100);
	}
	
	.elm09_01{
		width: calc(711vw / 750 * 100);
	}
}


/* リンクボタン
---------------------------------------------------------- */
.wrap_btn{
	position: absolute;
	bottom: 8%;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 2;
}
.wrap_btn2{
	bottom: 4%;
}
.wrap_btn3{
	bottom: 3%;
}
.wrap_btn4{
	bottom: 4.5%;
}
.wrap_btn5{
	bottom: 37.5%;
}
.wrap_btn6{
	bottom: 12%;
	right: 3%;
}
.wrap_btn6 a{
	margin: 0 0 0 auto !important;
}
.wrap_btn7{
	bottom: 11%;
}

.wrap_btn a{
	text-indent: -9999px;
	background: url("img/btn_link_down.png") no-repeat;
	background-position: center;
	background-size: contain;
	display: block;
	width: calc(476 / 750 * 400px);
	height: calc(92 / 750 * 400px);
	text-align: center;
	margin: auto;
	cursor: pointer;
	transition: .2s;
}
.wrap_btn a:hover{
	background-image:url("img/btn_link_down_hover.png");
}
/* SP */
@media all and (max-width: 750px) {
	.wrap_btn a{
		width: calc(476vw / 750 * 100);
		height: calc(92vw / 750 * 100);
	}
}

.wrap_btn_s a{
	background: url("img/btn02_link_down.png") no-repeat;
	background-size: contain;
	width: calc(332 / 750 * 400px);
	height: calc(86 / 750 * 400px);
}
.wrap_btn_s a:hover{
	background-image:url("img/btn02_link_down_hover.png");
}
.wrap_btn ul{
	list-style: none;
	display: flex;
	justify-content: space-between;
	width: 93.5%;
	margin: auto;
}
/* SP */
@media all and (max-width: 750px) {
	.wrap_btn_s a{
		width: calc(332vw / 750 * 100);
		height: calc(86vw / 750 * 100);
	}
}



/* ---------------------------------------------------------------
	Footer
--------------------------------------------------------------- */
footer{
	background: #ffdbd0;
	padding: 6% 0;
	font-size: calc(19.5 / 750 * 400px);
	color: #000;
}
.logo{
	display: inline-block;
	width: calc(468 / 750 * 400px);
}
footer ul{
	margin-top: 4%;
	list-style: none;
	display: flex;
	justify-content: center;
}
footer ul li{
	padding: 0 1em;
	line-height: 1;
}
footer ul li:first-child{
	border-right: 1px solid #000;
}
footer ul li a{
	color: #000;
	text-decoration: none;
}
address{
	font-style: normal;
	line-height: 2;
}
/* SP */
@media all and (max-width: 750px) {
	footer{
		font-size: calc(19.5vw / 750 * 100);
	}
	.logo{
		width: calc(468vw / 750 * 100);
	}
}

