
body {
    background: #f39800;
	font-family: "dnp-shuei-mgothic-std", sans-serif;
    font-weight: 400;
	position: relative;
    left: 0;
    overflow-x: hidden;
	-webkit-text-size-adjust: 100%; /* iphone横向き 文字拡大防止 */
    position: relative;
}
body::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: url("../img/bg_head.png") top center / contain no-repeat, url("../img/bg_left.gif") left top / 6.4% repeat-y, url("../img/bg_right.gif") right top / 6.4% repeat-y;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
img {
	display: block;
	width: 100%;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}
a {
	text-decoration: none;
	color: #000;
	transition: all .3s;
}
a:hover {
	filter: brightness(1.1);
}
p {
	font-size: 18px;
	line-height: 1.8;
}
/*最新のsafari用*/
::-webkit-full-page-media, :future, :root .AAA {
	
}
/*古いsafari用*/
@media screen and (-webkit-min-device-pixel-ratio:0) {
	::i-block-chrome, .AAA {
		
	}
}
:root {
    --bg_gray: #f0f0f0;
}
/*==================================================================================
共通
==================================================================================*/
/* レイアウト */
main {
    overflow: hidden;
    position: relative;
}
section {
    padding: 100px 0!important;
}
.container {
	width: calc(100% - 16%);
	max-width: 1200px;
	padding: 0 8%;
	margin: auto;
}
.max960 {
	max-width: 960px;
	margin: auto;
}
.row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.row.align_center {
	align-items: center;
}
.row.just_center {
	justify-content: center;
}
.row.just_start {
	justify-content: flex-start;
}

.mb_10 {
	margin-bottom: 10px;
}
.mb_20 {
	margin-bottom: 20px;
}
.mb_30 {
	margin-bottom: 30px;
}
.mb_60 {
	margin-bottom: 60px;
}
.mb_120 {
	margin-bottom: 120px;
}

.border {
    border-bottom: 1px #492000 solid;
}
.wrap {
    display: inline-block;
}

/* フォント */
h2.bg {
    padding: 5px 10px 15px;
    background: url("../img/h2_bg.png") center center / contain no-repeat;
}
.font_16 {
	font-size: 16px;
}
.font_20 {
	font-size: 20px;
}
.font_24 {
	font-size: 24px;
}
.font_30 {
	font-size: 30px;
}
.font_34 {
	font-size: 34px;
}
.font_46 {
	font-size: 46px;
}
.txt_center {
	text-align: center;
}
.bold {
	font-weight: 600;
}
.line1_8 {
    line-height: 1.8;
}
.line1_4 {
    line-height: 1.4;
}
.line1_2 {
    line-height: 1.2;
}
.wanpaku {
    font-family: "wanpaku-ruika", sans-serif;
    font-weight: 100;
}
.white {
    color: #fff;
}
.brown {
	color: #492000;
}
.red {
    color: #bb1b21;
}

/* アニメーション -----------*/
.animated.fadeinup {
	animation: fadeinup 1s;
}
@keyframes fadeinup {
	0% {opacity: 0; transform: translateY(30px);}
	100% {opacity: 1; transform: translateY(0);}
}
.animated.fadeindown {
	animation: fadeindown 1s;
}
@keyframes fadeindown {
	0% {opacity: 0; transform: translateY(-30px);}
	100% {opacity: 1; transform: translateY(0);}
}
.yay {
    opacity: 0;
    transform: translateY(2px);
    transition: all 1s;
}
.yay.fadeinup {
    transform: translateY(20px);
}
.yay.on {
    transform: translateY(0);
    opacity: 1;
}

/*==================================================================================
ヘッダー
==================================================================================*/
header {
    width: 100%!important;
    box-sizing: border-box;
    padding: 0 3%!important;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
header .lantern {
    display: block;
    width: 106%;
    height: 14vw;
    background: url("../img/lantern_l.png") left bottom / contain no-repeat, url("../img/lantern_r.png") right bottom / contain no-repeat;
    position: absolute;
    left: 50%;
    bottom: -2%;
    transform: translateX(-50%);
    z-index: 1;
}
header .lantern.animated {
    transform: translateX(-50%);
    animation: main_lantern 1.5s;
}
@keyframes main_lantern {
	0% {opacity: 0; width: 90%; transform: translateX(-50%);}
	33.33% {opacity: 0; width: 90%; transform: translateX(-50%);}
	100% {opacity: 1; width: 106%; transform: translateX(-50%);}
}
.head {
    max-width: calc(1080px - 240px);
    margin: auto;
    padding: 40px 120px 250px;
    background: url("../img/main_logo_bg.png") center top / contain no-repeat;
    position: relative;
    z-index: 2;
}
.head::before,
.head::after {
    content: "";
    display: block;
    width: 25%;
    height: 30%;
    background: url("../img/elephant01.png") center top / contain no-repeat;
    position: absolute;
    left: -5%;
    bottom: 15%;
}
.head::after {
    background-image: url("../img/elephant02.png");
    left: auto;
    right: -5%;
}

/*==================================================================================
メイン
==================================================================================*/
section#main {
    padding: 500px 0 80px!important;
    background: url("../img/main_bg.gif") center bottom / cover no-repeat;
    position: relative;
}
section#main::before {
    content: "";
    display: block;
    width: 88%;
    min-width: 1260px;
    height: 70%;
    background: url("../img/main_wave.png") center bottom / contain no-repeat;
    position: absolute;
    bottom: -1%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
	animation: main_wave 1s;
}
@keyframes main_wave {
	0% {opacity: 0; transform: translate(-50%, 40px);}
	100% {opacity: 1; transform: translate(-50%, 0);}
}
section#main .boats {
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 3;
}
section#main .main_boat {
    width: 80%;
    margin: 0 -3% 0 auto;
}
section#main .main_boat.animated {
	animation: main_boat 1.5s;
}
@keyframes main_boat {
	0% {opacity: 0; transform: translate(60px,30px) scale(0.95);}
	33.33% {opacity: 0; transform: translate(60px,30px) scale(0.95);}
	100% {opacity: 1; transform: translate(0) scale(1);}
}
section#main img[class^="boat0"] {
    width: 25%;
    position: absolute;
}
section#main img.boat01 {
    left: -2%;
    bottom: 20%;
}
section#main img.boat01.animated {
    animation: boat01 1.5s;
}
@keyframes boat01 {
	0% {opacity: 0; transform: translate(60px,30px) scale(0.95);}
	33.33% {opacity: 0; transform: translate(60px,30px) scale(0.95);}
	100% {opacity: 1; transform: translate(0) scale(1);}
}
section#main img.boat02 {
    left: 0;
    bottom: -4%;
}
section#main img.boat02.animated {
    animation: boat02 1.6s;
}
@keyframes boat02 {
	0% {opacity: 0; transform: translate(60px,30px) scale(0.95);}
	37.5% {opacity: 0; transform: translate(60px,30px) scale(0.95);}
	100% {opacity: 1; transform: translate(0) scale(1);}
}
section#main img.boat03 {
    left: 10%;
    bottom: -15%;
}
section#main img.boat03.animated {
    animation: boat03 1.7s;
}
@keyframes boat03 {
	0% {opacity: 0; transform: translate(60px,30px) scale(0.95);}
	41.17% {opacity: 0; transform: translate(60px,30px) scale(0.95);}
	100% {opacity: 1; transform: translate(0) scale(1);}
}
section#main img.boat04 {
    right: -1%;
    bottom: 4%;
}
section#main img.boat04.animated {
    animation: boat04 1.5s;
}
@keyframes boat04 {
	0% {opacity: 0; transform: translate(-60px,30px) scale(0.95);}
	33.33% {opacity: 0; transform: translate(-60px,30px) scale(0.95);}
	100% {opacity: 1; transform: translate(0) scale(1);}
}
section#main img.boat05 {
    right: 20%;
    bottom: -19%;
}
section#main img.boat05.animated {
    animation: boat05 1.6s;
}
@keyframes boat05 {
	0% {opacity: 0; transform: translate(-60px,30px) scale(0.95);}
	37.5% {opacity: 0; transform: translate(-60px,30px) scale(0.95);}
	100% {opacity: 1; transform: translate(0) scale(1);}
}
section#main img.boat06 {
    right: 5%;
    bottom: -21%;
}
section#main img.boat06.animated {
    animation: boat06 1.7s;
}
@keyframes boat06 {
	0% {opacity: 0; transform: translate(-60px,30px) scale(0.95);}
	41.17% {opacity: 0; transform: translate(-60px,30px) scale(0.95);}
	100% {opacity: 1; transform: translate(0) scale(1);}
}
section#main img.bg01 {
    width: 90%;
    position: absolute;
    bottom: -11%;
    left: 3%;
}
section#main img.bg02 {
    width: 100%;
    position: absolute;
    bottom: -25%;
    left: 0;
}
/* スケジュール */
section#schedule {
    padding-bottom: 0!important;
    position: relative;
    z-index: 3;
}
section#schedule .schedule {
    width: 220px;
    box-sizing: border-box;
	margin: 0 10px 50px;
    padding: 30px;
    border-radius: 70px;
    background: #fff;
	white-space: nowrap;
}
section#schedule .schedule:nth-child(even) {
    background: #fce2ba;
}
section#schedule .schedule .place {
    width: 75%;
    margin: -60px auto 10px;
}
/* ショップ */
section#shop {
    position: relative;
    z-index: 3;
}
.place_ttl {
    padding: 20px 0 10px 80px;
    position: relative;
}
.place_ttl img {
    width: 70px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.comming  {
    padding: 10px;
    border-radius: 10px;
    background: #f2a31f;
    color: #c97f00;
    text-align: center;
}
section#shop ul.shops li {
    min-width: calc(100% / 5 - 15px);
    box-sizing: border-box;
    margin: 0 10px 10px 0;
    padding: 15px;
    border-radius: 10px;
    background: #970400;
    color: #fff;
    text-align: center;
    white-space: nowrap;
}
section#shop ul.shops li:nth-of-type(2n) {
    background: #c22f00;
}
section#shop ul.shops li:nth-of-type(3n) {
    background: #b46400;
}
section#shop ul.shops li img {
    max-width: 195px;
    margin: auto;
}
/* システム */
section#system {
    position: relative;
    z-index: 3;
}
section#system .boad {
    padding: 40px 60px;
    border-radius: 80px;
    background: #eb6100;
    color: #fff;
}
section#system .boad .ttl {
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    position: relative;
}
section#system .boad .ttl span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 72px;
    background: #492000;
    color: #fff;
}
section#system .boad .ttl p {
    width: calc(100% - 72px);
    box-sizing: border-box;
    padding: 15px 20px;
    color: #eb6100;
    position: relative;
}
section#system .boad .inner {
    padding-left: 100px;
}
/* イベント */
section#event {
    position: relative;
    z-index: 3;
}
section#event ul.events li {
    width: calc(50% - 10px);
}
section#event ul.events li a {
    display: block;
    padding: 15px 10px;
    border-radius: 15px;
    border: 5px #492000 solid;
    background: url("../img/event_bg01.gif") center center / cover no-repeat;
    text-align: center;
    position: relative;
}
section#event ul.events li:nth-of-type(2n) a {
    background-image: url("../img/event_bg02.gif");
}
section#event ul.events li:nth-of-type(3n) a {
    background-image: url("../img/event_bg03.gif");
}
a span.icon_pdf {
    display: inline-block;
    padding: 6px 20px 6px 40px;
    border: 3px #492000 solid;
    border-radius: 50px;
    background: #fff;
    position: relative;
}
a span.icon_pdf::before {
    content: "";
    display: block;
    width: 25px;
    height: 25px;
    background: url("../img/icon_pdf.png") center center / contain no-repeat;
    position: absolute;
    top: 0;
    left: 10px;
}
section#event .place_ttl a {
    display: inline-block;
}

/*==================================================================================
フッター
==================================================================================*/
footer {
    padding: 60px 0 200px!important;
    position: relative;
}
footer::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: url("../img/bg_foot.png") center bottom / contain no-repeat;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 4;
}
footer .logo {
    display: block;
    width: 210px;
    margin: 0 10px 20px;
    z-index: 5;
}

/* ページトップへ戻るボタン */
.btn_pagetop {
	display: block;
	position: fixed;
	right: 1.4%;
	bottom: 40px;
	z-index: 100;
}
.btn_pagetop span {
	display: block;
    color: #fff;
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
}



.tb {display: none;}
.pc {display: inline;}
.sp {display: none;}

@media screen and (max-width : 960px) {
	.pc {display: none;}
	.tb {display: inline;}
	
	p {
        font-size: 16px;
        line-height: 1.6;
    }
	/*==================================================================================
	共通
	==================================================================================*/
	/* レイアウト */
    section {
        padding: 60px 0!important;
    }
	.container {
		max-width: 680px;
	}
	.mb_10 {
		margin-bottom: 5px;
	}
	.mb_20 {
		margin-bottom: 15px;
	}
	.mb_30 {
		margin-bottom: 20px;
	}
	.mb_60 {
		margin-bottom: 40px;
	}
	.mb_120 {
		margin-bottom: 80px;
	}
	/* フォント */
    h2.bg {
        padding: 3px 10px 10px;
    }
	.font_16 {
		font-size: 14px;
	}
	.font_20 {
		font-size: 16px;
	}
	.font_24 {
		font-size: 18px;
	}
    .font_30 {
    	font-size: 24px;
    }
    .font_34 {
    	font-size: 30px;
    }
    .font_46 {
    	font-size: 36px;
    }
    /*==================================================================================
    ヘッダー
    ==================================================================================*/
    header {
        padding: 0!important;
        overflow: hidden;
    }
    header .lantern {
        height: 22%;
        bottom: 0;
    }
    .head {
        max-width: calc(840px - 120px);
        padding: 30px 60px 160px;
    }
    .head::before,
    .head::after {
        width: 20%;
        height: 26%;
        left: 5%;
        bottom: 10%;
    }
    .head::after {
        left: auto;
        right: 5%;
    }
    .head img {
        width: 80%;
        margin: auto;
    }
    /*==================================================================================
    メイン
    ==================================================================================*/
    section#main {
        padding: 350px 0 0!important;
    }
    section#main::before {
        height: 36%;
    }
    section#main .boats {
        max-width: 840px;
    }
    /* スケジュール */
    section#schedule .row {
        justify-content: center;
    }
    section#schedule .schedule {
        width: calc(100% / 3 - 15px);
        padding: 20px;
        border-radius: 40px;
        margin: 0 7px 40px;
    }
	section#schedule .schedule .place {
		width: 60%;
	    margin: -40px auto 10px;
	}
    /* ショップ */
    .place_ttl {
        padding: 20px 0 10px 70px;
    }
    .place_ttl img {
        width: 60px;
    }
    .comming  {
        border-radius: 5px;
    }
    section#shop ul.shops li {
        min-width: calc(100% / 4 - 10px);
        padding: 8px 10px;
        border-radius: 5px;
    }
	/* システム */
	section#system .boad {
	    padding: 30px 40px;
	    border-radius: 40px;
	}
	section#system .boad .ttl {
	    border-radius: 10px;
	}
	section#system .boad .ttl span {
	    width: 60px;
	}
	section#system .boad .ttl p {
	    width: calc(100% - 60px);
	    padding: 10px 15px;
	}
	section#system .boad .inner {
	    padding-left: 0;
	}
    /* イベント */
    section#event ul.events li {
        width: 100%;
        margin-bottom: 15px;
    }
    section#event ul.events li a {
        display: block;
        padding: 15px;
        border-radius: 10px;
        border: 4px #492000 solid;
    }
    a span.icon_pdf {
        padding: 6px 20px 6px 35px;
        border: 2px #492000 solid;
        font-size: 14px;
    }
    a span.icon_pdf::before {
        width: 20px;
        height: 20px;
        top: 2px;
    }
	/*==================================================================================
	フッター
	==================================================================================*/
	footer {
	    padding: 30px 0 80px!important;
	}
	footer .logo {
	    width: 200px;
	    margin: 0 10px 15px;
	}
	/* ページトップへ戻るボタン */
	.btn_pagetop {
		right: 1%;
		bottom: 20px;
	}
	.btn_pagetop span {
		font-size: 14px;
	}
}


@media screen and (max-width : 680px) {
    /*==================================================================================
    メイン
    ==================================================================================*/
    /* スケジュール */
    section#schedule .row {
        justify-content: space-between;
        max-width: 460px;
        margin: auto;
    }
    section#schedule .schedule {
        width: calc(100% / 2 - 10px);
        border-radius: 30px;
        margin: 0 0 50px;
    }
    section#schedule .schedule:nth-child(even) {
        background: #fff;
    }
    /* ショップ */
    section#shop ul.shops li.font_20 {
        font-size: 14px;
    }
    section#shop ul.shops li img {
        max-width: 140px;
    }
	/* システム */
	section#system .boad {
	    padding: 30px 20px;
	    border-radius: 20px;
	}
	section#system .boad .ttl {
	    background: none;
		border-radius: 0;
	}
	section#system .boad .ttl span {
	    width: 60px;
		height: 40px;
		border-radius: 10px 10px 0 0;
		font-size: 20px;
	}
	section#system .boad .ttl p {
	    width: 100%;
	    padding: 10px 15px;
		background: #fff;
		border-radius: 0 10px 10px 10px;
	}
}


@media screen and (max-width : 460px) {
	.tb {display: none;}
	.sp {display: inline;}
	p {
        font-size: 14px;
    }
	/*==================================================================================
	共通
	==================================================================================*/
	/* フォント */
	.font_20 {
		font-size: 14px;
	}
	.font_24 {
		font-size: 16px;
	}
    .font_30 {
    	font-size: 20px;
    }
    .font_34 {
    	font-size: 24px;
    }
    .font_46 {
    	font-size: 30px;
    }
    /*==================================================================================
    ヘッダー
    ==================================================================================*/
    header .lantern {
        height: 26%;
    }
    .head {
        padding: 20px 50px 120px;
    }
    .head::before,
    .head::after {
        width: 24%;
        height: 26%;
        left: 3%;
        bottom: 12%;
    }
    .head::after {
        left: auto;
        right: 3%;
    }
    .head img {
        width: 100%;
    }
    /*==================================================================================
    メイン
    ==================================================================================*/
    section#main {
        padding: 230px 0 0!important;
		margin-bottom: 40px;
    }
    section#main::before {
        height: 28%;
    }
    section#main .boats {
        max-width: 840px;
    }
    /* スケジュール */
    section#schedule .schedule {
        width: calc(100% / 2 - 5px);
		margin: 0 0 30px;
        border-radius: 20px;
		padding: 20px 10px 15px;
    }
    section#schedule .schedule:last-child {
        margin-bottom: 0;
    }
    /* ショップ */
    .place_ttl {
        padding: 20px 0 10px 60px;
    }
    .place_ttl img {
        width: 50px;
    }
    section#shop ul.shops li img {
        max-width: 100px;
    }
	/* システム */
	section#system .boad {
	    padding: 30px 15px 20px;
	}
	section#system .boad .ttl span {
	    width: 50px;
		height: 35px;
		font-size: 18px;
	}
	section#system .boad .ttl p {
	    font-size: 18px;
	}
	section#system .boad .ttl + p.font_24:last-child {
	    font-size: 14px;
	}
    /* イベント */
    section#event .place_ttl a {
        margin-top: 10px;
    }
	/*==================================================================================
	フッター
	==================================================================================*/
	footer {
	    padding: 30px 0 40px!important;
	}
	footer .row.just_center {
		justify-content: space-between;
	}
	footer .logo {
	    width: calc(50% - 5px);
	    margin: 0 0 15px;
	}
	footer p:last-child {
		font-size: 12px;
		text-align: left;
	}
	/* ページトップへ戻るボタン */
	.btn_pagetop {
		display: none!important;
	}
}

