/* CSS Document */
/* =========================================================
     index.php
========================================================= */
/* common
--------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@400;500;700;800;900&display=swap');
body {
    position: relative;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
    font-size: 16px;
    line-height: 1.5;
    color: #111;
}
#body_box {
    overflow: hidden;
    width: 100%;
    position: relative;
    z-index: 10;
}
.scrollify_inner {
}
.scrollify {
}
.m-plus-1p-regular {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.inner {
    max-width: 1400px;
    margin: auto;
    padding-right: 100px;
    padding-left: 100px;
    box-sizing: border-box;
	position: relative;
}
.inner_1000 {
    max-width: 1000px;
    margin: auto;
}
.padding_box {
    padding: 80px;
}
.padding_tb {
    padding-bottom: 70px;
    padding-top: 30px;
    box-sizing: border-box;
}
img {
    width: auto;
    max-width: 100%;
}
.inline_B {
    display: inline-block;
}
:root { --border_color_b: #111; }
:root { --border_color_w: #fff; }

.pc_only {
    display: block;
}
.sp_only {
    display: none;
}
.sp_br {
    display: none;
}
/* bg
--------------------------------------------------------- */
#bg_body {
    background: #E60012 url(../img/index/bg_main.png) no-repeat top center / cover;
    width: 100%;
    height: 100vh; /* 旧ブラウザ用 */
    
    height: 100lvh; /* 新しいブラウザ用 */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    overflow: hidden;
}
#bg_nami_1 {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: url(../img/index/bg_nami.png) repeat-x  0 bottom  / 200% ;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6vw;
    margin: auto;
    z-index: -90;
    animation-name: mv_bg_nami_1;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-duration: 30s;
}
@keyframes mv_bg_nami_1 {
    0% {
		background-position: 0 bottom ;
    }
    100% {
		background-position:-200% bottom ;
    }
}
#bg_nami_2 {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: url(../img/index/bg_nami.png) repeat-x  0 bottom  / 200% ;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0vw;
    margin: auto;
    z-index: -93;
    animation-name: mv_bg_nami_2;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-duration: 60s;
	transform: scaleX(-1);
}


@keyframes mv_bg_nami_2 {
    0% {
		background-position: 0% bottom ;
    }
    100% {
		background-position:-200% bottom ;
    }
}
#bg_fune {
    width: 57vw;
    margin: auto;
    position: absolute;
    left: 0;
    right: -9vw;
    bottom: -2.5vw;
    z-index: -92;
    animation: bg_fune 4s infinite;
    transform: rotate(4deg) translateX(-4%);
	transform-origin: bottom center;
}
@keyframes bg_fune {
    50% {
    transform: rotate(-2deg) translateX(2%);
	}

	100% {
		transform: rotate(4deg) translateX(-4%);
	}
}
#bg_upDown {
    animation-name: bg_upDown;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-duration: 3s;
    width: 100%;
    height: 100%;
}
@keyframes bg_upDown {
	0% {
		transform: translate(0, 4%);
	}

	100% {
		transform: translate(0, -4%);
	}
}

#bg_nami_3 {
    display: block;
    width: 25%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -91;
    animation: mv_bg_nami_3 6s infinite ease-in-out;
}
@keyframes mv_bg_nami_3 {
    0% {
		transform: translate(0, 2%);
    }
    50% {
		transform: translate(-30% , -2% );
    }
    100% {
		transform: translate(0,2%);
    }
}

#bg_nami_4 {
    display: block;
    width: 26%;
    position: absolute;
    left: 0;
    bottom: 4vw;
    z-index: -91;
    animation-delay: 1s;
    animation: mv_bg_nami_4 6s infinite ease-in-out;
}
@keyframes mv_bg_nami_4 {
    0% {
		transform: translate(15%, -1%);
    }
    50% {
		transform: translate(-30% , 0 );
    }
    100% {
		transform: translate(15%, -1%);
    }
}

#jumping_fish_1 {
	position: absolute;
	left: 15%;
	bottom: -8vw;
	width: 8%;
    animation-name: jumping_fish_1;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-duration: 7s;
	transform-origin: center bottom;
    z-index: -91;
}
@keyframes jumping_fish_1 {
    0% {
        transform: scale(1) rotate(0deg);
    }
    100% {
        transform: scale(1) rotate(360deg);
    }
}

#jumping_fish_2 {
	position: absolute;
	left: 22%;
	bottom: -5vw;
	width: 5%;
    animation-name: jumping_fish_1;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-duration: 6s;
	transform-origin: center bottom;
    z-index: -91;
}

/* mv_aria
--------------------------------------------------------- */
header {
    position: relative;
    overflow: hidden;
}
#mv_aria {
    height: 100vh; /* 旧ブラウザ用 */
    
    height: 100lvh; /* 新しいブラウザ用 */
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 45vw;
}
#mv_box {
    position: absolute;
    right: 0;
}

#mv_logo_kira_1 {
    width: 9%;
    position: absolute;
    top: 5.0%;
    right: 27.0%;
    animation-name: mv_logo_kira_1;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-duration: 8s;
}
@keyframes mv_logo_kira_1 {
    0% {
        transform: scale(1.2) rotate(0deg);
    }
    25% {
        transform: scale(0.5) rotate(90deg);
    }
    50% {
        transform: scale(1.2) rotate(180deg);
    }
    75% {
        transform: scale(0.5) rotate(270deg);
    }
    100% {
        transform: scale(1.2) rotate(360deg);
    }
}
#mv_logo_kira_2 {
    width: 7%;
    position: absolute;
    top: 34.3%;
    right: 39%;
    animation-name: mv_logo_kira_2;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-duration: 4s;
}
@keyframes mv_logo_kira_2 {
    0% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(0.5) rotate(90deg);
    }
    50% {
        transform: scale(1) rotate(180deg);
    }
    75% {
        transform: scale(0.5) rotate(270deg);
    }
    100% {
        transform: scale(1) rotate(360deg);
    }
}


#mv_aria .mv_logo_mask{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-mask-image: url('../img/index/mv_main_text_1.png'); mask-image: url('../img/index/mv_main_text_1.png');
  -webkit-mask-size: 100% auto; mask-size: 100% auto;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: left top; mask-position: left top;
}
#mv_aria .mv_logo_hikari{
  position: absolute;
  top: 0%;
  left: -100%;
  width: 60%;
  padding: 60% 0 0;
  background-image: radial-gradient(circle, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 75%);
  transform: skewX(30deg);
  animation-name: mv_logo_hikari;
  animation-duration: 6s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@keyframes mv_logo_hikari{
  0%{
    left: -100%;
  }
  50%{
    left: -100%;
  }
  70%{
    left: 100%;
  }
  100%{
    left: 100%;
  }
}


#mv_aria #mv_logo {
}
#mv_main_text_1 {
    position: absolute;
    left: 4vw;
    top: 2vw;
    width: 35%;
    margin: 0 0 0.5%;
    
    animation: mv_main_text_2;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-fill-mode: none;
    animation-delay: 1s;
    animation-duration: 4s;
    opacity: 1;
}

@keyframes mv_main_text_2 {
    0% {
        transform: translate(0, 0px);
    }
    20% {
        transform: translate(0, 0px);
    }
    25% {
        transform: translate(0px, -10%);
    }
    30% {
        transform: translate(0, 5px);
    }
    35% {
        transform: translate(0px, -10%);
    }
    40% {
        transform: translate(0px, 0px);
    }
    50% {
        transform: translate(0px, 0px);
    }
    100% {
        transform: translate(0px, 0px);
    }
}


#mv_text_left {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 95%;
    right: 7%;
    max-height: 70vw;
}


.line_wrap {
    position: relative;
}
#ttl_line_top-left, 
#ttl_line_top-right, 
#ttl_line_top, 
#ttl_line_right, 
#ttl_line_left {
    top: -20px;
}
#ttl_line_bottom-left, 
#ttl_line_bottom-right, 
#ttl_line_bottom, 
#ttl_line_right, 
#ttl_line_left{
    bottom: -20px;
}
#ttl_line_top-left, 
#ttl_line_bottom-left, 
#ttl_line_top, 
#ttl_line_bottom, 
#ttl_line_left {
    left: -20px;
}
#ttl_line_top-right, 
#ttl_line_bottom-right, 
#ttl_line_top, 
#ttl_line_bottom, 
#ttl_line_right {
    right: -20px;
}
#ttl_line_left, 
#ttl_line_right {
    height: calc(100% - 160px);
}
#ttl_line_top, #ttl_line_bottom, #ttl_line_top_gray, #ttl_line_bottom_gray {
    width: calc(100% - 160px);
}
#ttl_line_right, 
#ttl_line_left, 
#ttl_line_bottom-right, 
#ttl_line_top-right, 
#ttl_line_bottom-left, 
#ttl_line_top-left {
    width: 100px;
    z-index: 9999;
    pointer-events: none;
}
#ttl_line_top, 
#ttl_line_bottom, 
#ttl_line_bottom-right, 
#ttl_line_top-right, 
#ttl_line_bottom-left, 
#ttl_line_top-left {
    height: 100px;
    z-index: 9999;
    pointer-events: none;
}
 #ttl_line_left {
    position: absolute;
    background: repeat-y url(../img/index/line_left.png) top center / 100% auto;
    margin: auto;
}
#ttl_line_right {
    position: absolute;
    background: repeat-y url(../img/index/line_right.png) bottom center / 100% auto;
    margin: auto;
}
#ttl_line_bottom {
    position: absolute;
    background: repeat-x url(../img/index/line_bottom.png) right center / auto 100%;
    margin: auto;
}
#ttl_line_top {
    position: absolute;
    background: repeat-x url(../img/index/line_top.png) left center / auto 100%;
    margin: auto;
}
#ttl_line_bottom-right {
    position: absolute;
    background: no-repeat url(../img/index/line_bottom-right.png) center center / cover;
}
#ttl_line_top-right {
    position: absolute;
    background: no-repeat url(../img/index/line_top-right.png) center center / cover;
}
#ttl_line_bottom-left_gray, #ttl_line_bottom-left {
    position: absolute;
    background: no-repeat url(../img/index/line_bottom-left.png) center center / cover;
}
#ttl_line_top-left {
    position: absolute;
    background: no-repeat url(../img/index/line_top-left.png) center center / cover;
}



#cam_1_line_parts_1 {
    position: absolute;
    top: 40px;
    right: 50px;
    width: 110px;
    z-index: 100000;
    transform: rotate(-9deg);
}
#cam_1_line_parts_2 {
    position: absolute;
    bottom: 110px;
    left: 20px;
    width: 170px;
    z-index: 100000;
    transform: rotate(-20deg);
}

#cam_1_line_parts_3 {
    position: absolute;
    top: -6px;
    right: 121px;
    width: 80px;
    z-index: 10000;
    transform: rotate(-9deg);
}
#cam_1_line_parts_4 {
    position: absolute;
    bottom: 26px;
    left: 138px;
    width: 80px;
    z-index: 10000;
    transform: rotate(100deg);
}


#cam_2_line_parts_1 {
    position: absolute;
    top: 90px;
    right: 50px;
    width: 130px;
    z-index: 100000;
}

#cam_2_line_parts_2 {
    position: absolute;
    bottom: 110px;
    left: 10px;
    width: 170px;
    z-index: 100000;
    transform: rotate(-20deg);
}

#cam_2_line_parts_3 {
    position: absolute;
    bottom: 34px;
    left: 140px;
    width: 80px;
    z-index: 100000;
    transform: rotate(10deg) scale(-1, 1);
}


#cam_2_line_parts_4 {
    position: absolute;
    top: -10px;
    right: 160px;
    width: 60px;
    z-index: 100000;
}

#cam_3_line_parts_1 {
    position: absolute;
    top: 4px;
    right: 30px;
    width: 200px;
    z-index: 100000;
    transform: rotate(35deg);
}
#cam_3_line_parts_2 {
    position: absolute;
    bottom: 60px;
    left: 20px;
    width: 170px;
    z-index: 100000;
    transform: rotate(-20deg);
}
#cam_3_line_parts_4 {
    position: absolute;
    bottom: 31px;
    left: 156px;
    width: 55px;
    z-index: 100000;
}
#cam_4_line_parts_1 {
    position: absolute;
    top: 66px;
    right: 24px;
    width: 170px;
    z-index: 100000;
    transform: scale(-1, 1) rotate(-15deg);
}
#cam_4_line_parts_2 {
    position: absolute;
    bottom: 80px;
    left: 30px;
    width: 110px;
    z-index: 100000;
    transform: rotate(10deg) scale(-1, 1);
}
#cam_4_line_parts_3 {
    position: absolute;
    top: -12px;
    right: 135px;
    width: 80px;
    z-index: 100000;
    transform: scale(1, -1) rotate(-15deg);
}
#cam_4_line_parts_4 {
    position: absolute;
    bottom: 34px;
    left: 140px;
    width: 80px;
    z-index: 100000;
    transform: rotate(10deg) scale(-1, 1);
}
#cam_5_line_parts_1 {
    position: absolute;
    top: 66px;
    right: 24px;
    width: 210px;
    z-index: 100000;
    transform:rotate(-15deg);
}
#cam_5_line_parts_3 {
    position: absolute;
    top: -6px;
    right: 140px;
    width: 70px;
    z-index: 100000;
}
#cam_5_line_parts_2 {
    position: absolute;
    bottom: 34px;
    left: 150px;
    width: 60px;
    z-index: 100000;
    transform:rotate(30deg) scale(-1,1);
}
#cam_5_line_parts_4 {
    position: absolute;
    bottom: 90px;
    left: 45px;
    width: 100px;
    z-index: 100000;
    transform: rotate(-25deg);
}
/* スクロールダウン
--------------------------------------------------------- */
.scroll_down {
    height: 130px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.scrollbar-text {
    display: inline-block;
    position: absolute;
    bottom: 0;
    padding: 10px 10px 50px;
    color: #e8380d;
    font-size: 10px;
    font-family: serif;
    line-height: 1;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    writing-mode: vertical-lr;
    left: 50%;
    transform: translateX(-50%);
}

.scrollbar {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0px;
}

.scrollbar::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 1px;
    height: 40px;
    background: #e8380d;
}

.scrollbar::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -3px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #e8380d;
    animation: circlemove 3s ease-in-out infinite,
    cirlemovehide 3s ease-out infinite;
}

@keyframes circlemove {
    0% {
        bottom: 40px;
    }
    100% {
        bottom: -5px;
    }
}

@keyframes cirlemovehide {
    0% {
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}



/* about_Aria
--------------------------------------------------------- */

#about_Aria {
    min-height: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#about_box  {
    width: 100%;
    margin-top: 30px;
}
#about_box img {
     overflow: visible;
}

#about_Aria .img_box {
    width: 300px;
    margin: auto;
    margin-top: 20px;
    margin-bottom: -100px;
    margin-bottom: 0!important;
    position: relative;
    padding-right: 40px;
    
}
#about_Aria .img_box_inner.active .img_box {
    animation: about_img;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-fill-mode: forwards;
    animation-delay: 0;
    animation-duration: 5.0s;
    opacity: 1;
    transform: translateX(0%);
    transform-origin: center bottom;
}
@keyframes about_img {
    0% {
    transform: rotate(0deg);
    }
    45% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(12deg);
    }
    60% {
        transform: rotate(-12deg);
    }
    70% {
        transform: rotate(12deg);
    }
    80% {
        transform: rotate(-12deg);
    }
    85% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(0deg);
    }
}


#about_Aria #about_img_kira {
    width: 20%;
    position: absolute;
    top: 10%;
    left: 2%;
    animation-name: about_img_kira;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-duration: 5s;
}
@keyframes about_img_kira {
    0% {
        transform: scale(1) rotate(0deg);
    }
    35% {
        transform: scale(1.3) rotate(90deg);
    }
    50% {
        transform: scale(0.5) rotate(180deg);
    }
    65% {
        transform: scale(1.5) rotate(270deg);
    }
    100% {
        transform: scale(1) rotate(360deg);
    }
}



/* under_box_common
--------------------------------------------------------- */
.under_box_common {
    background: #fff;
    border-radius: 15px;
    border: 2px solid #111;
    padding: 10px;
}
.under_box_inner {
    border-radius: 10px;
	background-image: url(../img/index/bg_pattern_1.png);
	background-repeat: repeat;
	background-size: 90px;
	background-color: #00a0e9;
    color: #fff;
}
/* cam_box
--------------------------------------------------------- */
#cam_box {
}
#cam_box .under_box_inner {
    /*background: #fff;*/
}
#cam_box h2 {
    width: 50%;
    margin: 0 auto 40px;
}


#cam_box .cam_h2_mask{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-mask-image: url('../img/index/mv_main_text_1.png'); mask-image: url('../img/index/mv_main_text_1.png');
  -webkit-mask-size: 100% auto; mask-size: 100% auto;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: left top; mask-position: left top;
}
#cam_box .cam_h2_hikari{
  position: absolute;
  top: -2%;
  left: -100%;
  width: 60%;
  padding: 60% 0 0;
  background-image: radial-gradient(circle, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 75%);
  transform: skewX(30deg);
  animation-name: cam_h2_hikari;
  animation-duration: 6s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@keyframes cam_h2_hikari{
  0%{
    left: -100%;
  }
  50%{
    left: -100%;
  }
  70%{
    left: 100%;
  }
  100%{
    left: 100%;
  }
}
#cam_h2_fish_1 {
    position: absolute;
    left: -31%;
    /* top: 0; */
    bottom: 1%;
    margin: auto;
    width: 22%;
    transform: rotate(-109deg);
}
#cam_h2_fish_2 {
    position: absolute;
    left: -50%;
    top: 5%;
    /* bottom: 0; */
    margin: auto;
    width: 35%;
    transform: rotate(-7deg);
}
#cam_h2_dojo {
    position: absolute;
    right: -58%;
    top: 0;
    bottom: -5%;
    margin: auto;
    width: 55%;
}
#cam_h2_kira_1 {
	width: 10%;
    position: absolute;
    top: 4.5%;
    right: 26%;
    animation-name: mv_logo_kira_1;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-duration: 8s;
}
#cam_h2_kira_2 {
    width: 8%;
    position: absolute;
    top: 33.5%;
    right: 38.5%;
    animation-name: mv_logo_kira_2;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-duration: 4s;
}
#cam_box .text-shadow_w {
    text-shadow: var(--border_color_w) 2px 0px 0px,
    var(--border_color_w) -2px 0px 0px,
    var(--border_color_w) 0px -2px 0px,
    var(--border_color_w) 0px 2px 0px,
    var(--border_color_w) 2px 2px 0px,
    var(--border_color_w) -2px 2px 0px,
    var(--border_color_w) 2px -2px 0px,
    var(--border_color_w) -2px -2px 0px,
    var(--border_color_w) 1px 2px 0px,
    var(--border_color_w) -1px 2px 0px,
    var(--border_color_w) 1px -2px 0px,
    var(--border_color_w) -1px -2px 0px,
    var(--border_color_w) 2px 1px 0px,
    var(--border_color_w) -2px 1px 0px,
    var(--border_color_w) 2px -1px 0px,
    var(--border_color_w) -2px -1px 0px,
    var(--border_color_w) 1px 1px 0px,
    var(--border_color_w) -1px 1px 0px,
    var(--border_color_w) 1px -1px 0px,
    var(--border_color_w) -1px -1px 0px;
}

ul.cam_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}
ul.cam_list li {
    width: 100%;
    text-align: center;
    font-weight: bold;
    box-sizing: border-box;
    border: 5px solid #000;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
    overflow: hidden;
	background: #fff;

}
ul.cam_list li .cam_day_box {
	display: block;
	/*background-color: rgb(230 0 18);*/
	background-color: #fabe00;
    background-image: url(../img/index/bg_pattern_1.png);
    background-size: 60px;
	padding: 40px 30px;
}
ul.cam_list li.color_1 {
}
ul.cam_list li.color_2 {
}
ul.cam_list li .cam_list_box span {
    display: block;
}
ul.cam_list li .cam_list_box span.cam_list_ttl {
    font-size:0px;
    border-radius: 0;
    background: #ffffff;
    /* width: 180px; */
    color: #111;
    padding: 20px;
    line-height: 1;
    font-weight: bold;
    /* text-shadow: var(--border_color_b) 2px 0px 0px, var(--border_color_b) -2px 0px 0px, var(--border_color_b) 0px -2px 0px, var(--border_color_b) 0px 2px 0px, var(--border_color_b) 2px 2px 0px, var(--border_color_b) -2px 2px 0px, var(--border_color_b) 2px -2px 0px, var(--border_color_b) -2px -2px 0px, var(--border_color_b) 1px 2px 0px, var(--border_color_b) -1px 2px 0px, var(--border_color_b) 1px -2px 0px, var(--border_color_b) -1px -2px 0px, var(--border_color_b) 2px 1px 0px, var(--border_color_b) -2px 1px 0px, var(--border_color_b) 2px -1px 0px, var(--border_color_b) -2px -1px 0px, var(--border_color_b) 1px 1px 0px, var(--border_color_b) -1px 1px 0px, var(--border_color_b) 1px -1px 0px, var(--border_color_b) -1px -1px 0px; */
}
ul.cam_list li .cam_list_box span.cam_list_ttl img {
	width: 60%;
}
ul.cam_list li .cam_list_box span.cam_list_day {
    font-size: 52px;
    vertical-align: baseline;
    letter-spacing: -0.06em;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    line-height: 1;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 700;
}
ul.cam_list li .cam_list_box span.day_num.day_num2 {
	margin:0 0 0.2em 0.4em;
	font-size: 70%;
}
ul.cam_list li .cam_list_box span.day_num {
    color: #fff;
    text-shadow: 
        var(--border_color_b) 2px 0px 0px,
        var(--border_color_b) -2px 0px 0px,
        var(--border_color_b) 0px -2px 0px,
        var(--border_color_b) 0px 2px 0px,
        var(--border_color_b) 2px 2px 0px,
        var(--border_color_b) -2px 2px 0px,
        var(--border_color_b) 2px -2px 0px,
        var(--border_color_b) -2px -2px 0px,
        var(--border_color_b) 1px 2px 0px,
        var(--border_color_b) -1px 2px 0px,
        var(--border_color_b) 1px -2px 0px,
        var(--border_color_b) -1px -2px 0px,
        var(--border_color_b) 2px 1px 0px,
        var(--border_color_b) -2px 1px 0px,
        var(--border_color_b) 2px -1px 0px,
        var(--border_color_b) -2px -1px 0px,
        var(--border_color_b) 1px 1px 0px,
        var(--border_color_b) -1px 1px 0px,
        var(--border_color_b) 1px -1px 0px,
        var(--border_color_b) -1px -1px 0px;
    position: relative;
    z-index: 2;
}
ul.cam_list li .cam_list_box span.day_of_week {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    width: 28px;
    height: 28px;
    line-height: 1;
    background: #000;
    color: #fff;
    border-radius: 30px;
    vertical-align: baseline;
    font-weight: bold;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
    margin: 0 0 5px -1px;
    letter-spacing: normal;
}
ul.cam_list li .cam_list_box span.day_next_arrow {
    height: 3px;
    background: #000;
    width: 30px;
    margin: 0 15px 10px  12px;
    position: relative;
}
ul.cam_list li .cam_list_box span.day_next_arrow::after {
    content: "";
    display: block;
    width: 15px;
    height: 3px;
    transform: rotate(45deg);
    background: #000;
    position: absolute;
    right: -2px;
    bottom: 5px;
}


#cam_box .text_box {
    text-align: center;
    font-size: 24px;
    color: #fff;
    font-weight: bold;
    line-height: 1.5;
    text-shadow: 
        var(--border_color_b) 2px 0px 0px,
        var(--border_color_b) -2px 0px 0px,
        var(--border_color_b) 0px -2px 0px,
        var(--border_color_b) 0px 2px 0px,
        var(--border_color_b) 2px 2px 0px,
        var(--border_color_b) -2px 2px 0px,
        var(--border_color_b) 2px -2px 0px,
        var(--border_color_b) -2px -2px 0px,
        var(--border_color_b) 1px 2px 0px,
        var(--border_color_b) -1px 2px 0px,
        var(--border_color_b) 1px -2px 0px,
        var(--border_color_b) -1px -2px 0px,
        var(--border_color_b) 2px 1px 0px,
        var(--border_color_b) -2px 1px 0px,
        var(--border_color_b) 2px -1px 0px,
        var(--border_color_b) -2px -1px 0px,
        var(--border_color_b) 1px 1px 0px,
        var(--border_color_b) -1px 1px 0px,
        var(--border_color_b) 1px -1px 0px,
        var(--border_color_b) -1px -1px 0px;
}
#cam_box p.asterisk {
    text-align: center;
    color: #fff;
}
#cam_box .text_box p {
    margin-bottom: 1em;
    color: #fff;
}
#cam_box .text_box .big {
    font-size: 150%;
}
#cam_box .text_box .big_r {
    font-size: 130%;
    color: #fff100;
}
.item_c_box {
	margin-bottom: 60px;
}

/*  cam_1 cam_2 共通
--------------------------------------------------------- */

/* 見出し系 */
#cam_1 h2,
#cam_2 h2 {
    width: 40%;
    margin: 0 auto 40px;
    position: relative;
}

#cam_2 ,
#cam_3 {
	text-align: center;
}
#cam_4 h2 {
	width: 70%;
    margin: 0 auto 30px;
    position: relative;
}
#cam_3 h2 {
	width: 56%;
    margin: 0 auto 40px;
    position: relative;
}
h3.h3_white {
    background: rgb(0 0 0);
    padding: 25px 20px 23px;
    text-align: center;
    border-radius: 5px;
    font-size: 24px;
    margin-bottom: 40px;
    color: #fff;
    line-height: 1;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}
h3.h3_white .h3_white_small {
    display: block;
    font-size: 80%;
    margin-bottom: 13px;
}
h4 {
    text-align: center;
    font-size: 32px;
    color: #feea27;
    margin-bottom: 35px;
    line-height: 1;
    font-weight: bold;
    text-shadow: var(--border_color_b) 2px 0px 0px, var(--border_color_b) -2px 0px 0px, var(--border_color_b) 0px -2px 0px, var(--border_color_b) 0px 2px 0px, var(--border_color_b) 2px 2px 0px, var(--border_color_b) -2px 2px 0px, var(--border_color_b) 2px -2px 0px, var(--border_color_b) -2px -2px 0px, var(--border_color_b) 1px 2px 0px, var(--border_color_b) -1px 2px 0px, var(--border_color_b) 1px -2px 0px, var(--border_color_b) -1px -2px 0px, var(--border_color_b) 2px 1px 0px, var(--border_color_b) -2px 1px 0px, var(--border_color_b) 2px -1px 0px, var(--border_color_b) -2px -1px 0px, var(--border_color_b) 1px 1px 0px, var(--border_color_b) -1px 1px 0px, var(--border_color_b) 1px -1px 0px, var(--border_color_b) -1px -1px 0px;
}
/* 商品一覧 */
.item_list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -20px;
    margin-right: -20px;
}
.item_list li {
   /* width: calc( ( 100% - 90px ) / 3 );*/
    width: calc( ( 100% - 40px ) / 2 );
    margin-bottom: 20px;
    margin-right: 20px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    background: #fff;
    color: #111;
}
.item_list li .item_list_c {
    padding: 10px;
    position: relative;
}
.item_list li .item_list_c .description_box {
    padding: 20px 20px 10px;
}

.item_list li .item_list_c .item_badge {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    padding: 0 25px;
    height: 45px;
    position: absolute;
    left: -20px;
    top: -16px;
    background: #e8418d;
    /* right: 0; */
    color: #fff;
    /* box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3); */
    z-index: 11;
    border-radius: 100px;
    font-size: 16px;
    /* transform: rotate(-15deg); */
    font-family: "M PLUS 1p", sans-serif;
    font-weight: bold;
    border: 2px solid #FFF;
    box-sizing: border-box;
    /* margin: auto; */
}
.item_list li .item_list_c .item_badge.item_badge2 {
    background: #4ab997;
}
.item_list li .item_list_c .item_badge.item_badge3 {
    background: #000;
}
.item_list li .item_list_c .item_name {
	font-size:20px;
	margin-bottom: 10px;
}
.item_list li .item_list_c .small_price {
	display: block;
}
.item_list li .item_list_c .big_price {
    font-size: 28px;
    font-weight: bold;
    display: block;
    color: #e70014;
}
.item_list li .item_list_c .plus_text {
    font-size: 125%;
    color: #111;
    font-weight: bold;
    display: block;
    line-height: 1.2;
}
.item_list li .item_list_c .point_box {
    display: flex;
    flex-wrap: wrap;
    border: 2px solid #e8418d;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
    text-align: center;
    justify-content: center;
    font-weight: bold;
    align-items: flex-end;
    line-height: 1.4;
    font-size: 130%;
}
.item_list li .item_list_c .nomal_p {
    color: #444;
}
.item_list li .item_list_c .cam_p {
    color: #e8418d;
}
.item_list li .item_list_c .item_jan {
    color: #999;
    font-size: 14px;
    margin-top: 10px;
    display: none;
}
.item_list li.w_2 .item_list_c .img_box {
    padding-top: 65%;
}

.item_list li .item_list_c .item_badge .item_kara {
    font-size: 10px;
    padding-left: 0.25em;
    padding-right: 0.25em;
}
.item_list li .item_list_c .img_box {
    width: 100%;
    height: 0;
    padding-top: 100%;
    position: relative;
    border-radius: 3px;
    background: #fff;
    border: 1px solid #e1e1e1;
}
.item_list li .item_list_c .img_box img {
    width: auto;
    height: auto;
    max-width: 80%;
    max-height: 80%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: -3%;
    margin: auto;
}
.price-reduction_text {
    text-align: center;
    font-size: 22px;
    color: #fff;
    line-height: 1.5;
    font-weight: bold;
    text-shadow: var(--border_color_b) 2px 0px 0px, var(--border_color_b) -2px 0px 0px, var(--border_color_b) 0px -2px 0px, var(--border_color_b) 0px 2px 0px, var(--border_color_b) 2px 2px 0px, var(--border_color_b) -2px 2px 0px, var(--border_color_b) 2px -2px 0px, var(--border_color_b) -2px -2px 0px, var(--border_color_b) 1px 2px 0px, var(--border_color_b) -1px 2px 0px, var(--border_color_b) 1px -2px 0px, var(--border_color_b) -1px -2px 0px, var(--border_color_b) 2px 1px 0px, var(--border_color_b) -2px 1px 0px, var(--border_color_b) 2px -1px 0px, var(--border_color_b) -2px -1px 0px, var(--border_color_b) 1px 1px 0px, var(--border_color_b) -1px 1px 0px, var(--border_color_b) 1px -1px 0px, var(--border_color_b) -1px -1px 0px;
    margin-bottom: 20px;
}
.price-reduction_text .big_r {
    font-size: 130%;
    color: #feea27;
}
.item_c_box .asterisk {
    text-align: center;
}
/* wチャンス */
.w_cam_box {
    margin-top: 60px;
}
.w_cam_box .img_box {
    margin: 0 auto 30px;
    text-align: center;
}

/* wチャンス */
ul.Summary_list {
    background: rgb(255 255 255 / 50%);
    padding: 50px;
    border-radius: 5px;
}
ul.Summary_list li:not(:last-of-type) {
    margin-bottom: 30px
}
ul.Summary_list li p.ttl {
    font-weight: bold;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #111;
    line-height: 1;
    font-size: 18px;
}
ul.Summary_list p:not(:last-of-type) {
    margin-bottom: 0.5em;
}
ul.Summary_list a {
    color: #111;
    text-decoration: underline;
}
ul.Summary_list li.note_li p {
    text-indent: -1em;
    padding-left: 1em;
}
/* cam_1 cam_2の差分部分
--------------------------------------------------------- */
/* cam1 */
#cam_1 {
}
#cam_1 .under_box_inner {
   /* background: #00a0e9;*/ */
    background-color: #fabe00;
}


#cam_1 .cam1_mask{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-mask-image: url('../img/index/cam1_ttl.svg'); mask-image: url('../img/index/cam1_ttl.svg');
  -webkit-mask-size: 100% auto; mask-size: 100% auto;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: left top; mask-position: left top;
}
#cam_1 .cam1_hikari{
  position: absolute;
  top: -2%;
  left: -100%;
  width: 60%;
  padding: 60% 0 0;
  background-image: radial-gradient(circle, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 75%);
  transform: skewX(30deg);
  animation-name: cam1_hikari;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@keyframes cam1_hikari{
  0%{
    left: -100%;
  }
  50%{
    left: -100%;
  }
  70%{
    left: 100%;
  }
  100%{
    left: 100%;
  }
}


#cam1_kira_1 {
    width: 17%;
    position: absolute;
    top: -3.5%;
    left: -7%;
    animation-name: mv_logo_kira_1;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-duration: 8s;
}
#cam1_kira_2 {
    width: 9%;
    position: absolute;
    bottom: 29%;
    right: -4%;
    animation-name: mv_logo_kira_2;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-duration: 4s;
}

/* cam2 */
#cam_2 {
}
#cam_2 .under_box_inner {
    /*background: #ea5414;*/ */
    background-color: #fabe00;
}
#cam_2 .cam2_mask{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-mask-image: url('../img/index/cam2_ttl.svg'); mask-image: url('../img/index/cam2_ttl.svg');
  -webkit-mask-size: 100% auto; mask-size: 100% auto;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: left top; mask-position: left top;
}
#cam_2 .cam2_hikari{
  position: absolute;
  top: -2%;
  left: -100%;
  width: 60%;
  padding: 60% 0 0;
  background-image: radial-gradient(circle, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 75%);
  transform: skewX(30deg);
  animation-name: cam2_hikari;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@keyframes cam2_hikari{
  0%{
    left: -100%;
  }
  50%{
    left: -100%;
  }
  70%{
    left: 100%;
  }
  100%{
    left: 100%;
  }
}

#cam2_kira_1 {
    width: 10%;
    position: absolute;
    top: 11%;
    right: -4%;
    animation-name: mv_logo_kira_1;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-duration: 8s;
}
#cam2_kira_2 {
    width: 16%;
    position: absolute;
    bottom: 25%;
    left: -6%;
    animation-name: mv_logo_kira_2;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-duration: 4s;
}

#cam_3 .cam3_mask{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-mask-image: url('../img/index/cam3_ttl.svg'); mask-image: url('../img/index/cam3_ttl.svg');
  -webkit-mask-size: 100% auto; mask-size: 100% auto;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: left top; mask-position: left top;
}
#cam_3 .cam3_hikari{
  position: absolute;
  top: -2%;
  left: -100%;
  width: 60%;
  padding: 60% 0 0;
  background-image: radial-gradient(circle, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 75%);
  transform: skewX(30deg);
  animation-name: cam3_hikari;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@keyframes cam3_hikari{
  0%{
    left: -100%;
  }
  50%{
    left: -100%;
  }
  70%{
    left: 100%;
  }
  100%{
    left: 100%;
  }
}


#cam3_kira_1 {
    width: 17%;
    position: absolute;
    top: -3.5%;
    left: -7%;
    animation-name: mv_logo_kira_1;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-duration: 8s;
}
#cam3_kira_2 {
    width: 9%;
    position: absolute;
    bottom: 29%;
    right: -4%;
    animation-name: mv_logo_kira_2;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-duration: 4s;
}



#cam_4 .cam4_mask{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-mask-image: url('../img/index/cam4_ttl.svg'); mask-image: url('../img/index/cam4_ttl.svg');
  -webkit-mask-size: 100% auto; mask-size: 100% auto;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: left top; mask-position: left top;
}
#cam_4 .cam4_hikari{
  position: absolute;
  top: -2%;
  left: -100%;
  width: 60%;
  padding: 60% 0 0;
  background-image: radial-gradient(circle, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 75%);
  transform: skewX(30deg);
  animation-name: cam4_hikari;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@keyframes cam4_hikari{
  0%{
    left: -100%;
  }
  50%{
    left: -100%;
  }
  70%{
    left: 100%;
  }
  100%{
    left: 100%;
  }
}

#cam4_kira_1 {
    width: 12%;
    position: absolute;
    top: -12.5%;
    left: 10%;
    animation-name: mv_logo_kira_1;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-duration: 8s;
}
#cam4_kira_2 {
    width: 8%;
    position: absolute;
    bottom: 69%;
    right: 13.5%;
    animation-name: mv_logo_kira_2;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-duration: 4s;
}


/* com_soon */
.com_soon .big_text {
    text-align: center;
    font-size: 0;
    color: #feea27;
    margin-bottom: 20px;
    line-height: 1;
    font-weight: bold;
    text-shadow: var(--border_color_b) 2px 0px 0px, var(--border_color_b) -2px 0px 0px, var(--border_color_b) 0px -2px 0px, var(--border_color_b) 0px 2px 0px, var(--border_color_b) 2px 2px 0px, var(--border_color_b) -2px 2px 0px, var(--border_color_b) 2px -2px 0px, var(--border_color_b) -2px -2px 0px, var(--border_color_b) 1px 2px 0px, var(--border_color_b) -1px 2px 0px, var(--border_color_b) 1px -2px 0px, var(--border_color_b) -1px -2px 0px, var(--border_color_b) 2px 1px 0px, var(--border_color_b) -2px 1px 0px, var(--border_color_b) 2px -1px 0px, var(--border_color_b) -2px -1px 0px, var(--border_color_b) 1px 1px 0px, var(--border_color_b) -1px 1px 0px, var(--border_color_b) 1px -1px 0px, var(--border_color_b) -1px -1px 0px;
}
.com_soon_text {
	width: 50%;
}
.com_soon .nomal_text {
    text-align: center;
    font-size: 22px;
    color: #fff;
    line-height: 1.3;
    font-weight: bold;
    text-shadow: var(--border_color_b) 2px 0px 0px, var(--border_color_b) -2px 0px 0px, var(--border_color_b) 0px -2px 0px, var(--border_color_b) 0px 2px 0px, var(--border_color_b) 2px 2px 0px, var(--border_color_b) -2px 2px 0px, var(--border_color_b) 2px -2px 0px, var(--border_color_b) -2px -2px 0px, var(--border_color_b) 1px 2px 0px, var(--border_color_b) -1px 2px 0px, var(--border_color_b) 1px -2px 0px, var(--border_color_b) -1px -2px 0px, var(--border_color_b) 2px 1px 0px, var(--border_color_b) -2px 1px 0px, var(--border_color_b) 2px -1px 0px, var(--border_color_b) -2px -1px 0px, var(--border_color_b) 1px 1px 0px, var(--border_color_b) -1px 1px 0px, var(--border_color_b) 1px -1px 0px, var(--border_color_b) -1px -1px 0px;
}
.no-season {
    line-height: 1.5;
}
.no-season h4{
    line-height: 1.3;
}
/* cam_box
--------------------------------------------------------- */
#note_Aria {
}
#note_Aria .under_box_inner {
    /*background: #4ab997;*/
}


footer {
    background: #000;
    padding: 20px;
    text-align: center;
    margin-top: 80px;
    color: #666;
    font-size: 12px;
}



/* =========================================================
     アニメーション
========================================================= */
/* コンテンツの出方
--------------------------------------------------------- */

.item_anim.under_box_common  {
    opacity: 0;
    transition: 1.5s;
}
.item_anim.under_box_common.active {
  	animation : under_box_common 1.0s;
	opacity: 1;
    box-shadow: 0 0 60px rgb(145 38 42);
}

@keyframes under_box_common {
    0% { transform:translateY(200px); opacity: 0;}
    100% { transform:translateY(0px); opacity: 1;}
}



.item_anim.under_box_common .opacity {
    opacity: 0;
}
.item_anim.under_box_common.active .opacity {
  	animation : under_box_inner 0.7s;
    animation-delay: 0.8s;
	opacity: 0;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
}

@keyframes under_box_inner {
    0% { transform:translateY(100px); opacity: 0;}
    100% { transform:translateY(0px); opacity: 1;}
}


/* about 部分
--------------------------------------------------------- */

#about_Aria.item_anim h1 {
    opacity: 0;
}
#about_Aria.item_anim.active h1 {
    animation : about_h1 0.6s;
    animation-delay: 0s;
    opacity: 0;
    transform: scale(0);
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
}

@keyframes about_h1 {
    0% { transform:scale(0); opacity: 0;}
    83% { transform:scale(1.2); opacity: 1;}
    100% { transform:scale(1); opacity: 1;}
}


#about_Aria .img_box_inner.item_anim {
    opacity: 0;
}
#about_Aria .img_box_inner.item_anim.active {
    animation : about_dozyou 0.6s;
    animation-delay: 0.2s;
    opacity: 0;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
}

@keyframes about_dozyou {
    0% { transform:translatey(-100px); opacity: 0;}
    100% { transform:translatey(0px); opacity: 1;}
}
    
@media screen and (min-width:769px){
}
@media screen and (max-width:768px){
}



/* =========================================================
     ローディング
========================================================= */
#loader-bg{
    background-image: url(../img/index/bg_pattern_1.png);
    background-repeat: repeat;
    background-size: 90px;
    background-color: #00a0e9;
    height:150vh;
    height:150lvh;
    width: 120vw;
    position:fixed;
    top: -10vh;
    bottom: -10vh;
    left: -10vw;
    right: -10vw;
    margin: auto;
    z-index: 9999999999999999;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#fadce5+2,ee84a9+99
    background: radial-gradient(ellipse at center,  #fadce5 2%,#ee84a9 99%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */


}
.pace {
   display: none;
}

@media all and (-ms-high-contrast: none){
   .pace {
       display: none;
    }

}

.loader-bg_pattern {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    height: 100vh; /* 旧ブラウザ用 */
    
    height: 100lvh; /* 新しいブラウザ用 */
    width: 100vw;
    text-align: center;
}
.loader-content {
}
#load_dojo {
    animation: jump .7s alternate infinite ease-in-out;
    width: 200px;
    margin-bottom: 30px;
    margin-top: -50px;
}
/* HTML: <div class="loader"></div> */
.load_dot {
    display: flex;
    clip-path: inset(0 100% 0 0);
    animation: l1 2.5s steps(6) infinite;
    width: 100vw;
    height: auto;
}
.load_dot li {
    width: calc((100% - 10% ) / 5 );
    margin: 0 1%;
}
@keyframes l1 {to{clip-path: inset(0 -20% 0 0)}}



#side_anim_1 {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	
    width: 35%;
    max-width: 250px;
    margin: auto;
}
#side_anim_2 {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
    margin: auto;
	
    animation:6s linear infinite rotation1;
    width: 65%;
    max-width: 500px;
}
@keyframes rotation1{
  0%{ transform:rotate(0);}
  100%{ transform:rotate(360deg); }
}
/* ==============================
     1200px
============================== */
@media screen and (max-width:1200px){
    .load_dot {
        width: 90vw;

    }
}


/* =========================================================
     第二弾
========================================================= */
ul.cam_list li.end_cam,
#cam_1-box .under_box_inner,
#cam_2-box .under_box_inner {
	position: relative;
	overflow: hidden;
}
.item_list li.end_item {
	position: relative;
}
.item_list li.end_item::before,
ul.cam_list li.end_cam::before,
#cam_1-box.end_cam .under_box_inner::before,
#cam_2-box.end_cam .under_box_inner::before {
    content: "";
    display: block;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    z-index: 999;
}
.item_list li.end_item::before {
    z-index: 1;
    border-radius: 5px;
}

ul.cam_list li.end_cam::after,
#cam_2-box.end_cam .under_box_inner::after,
#cam_1-box.end_cam .under_box_inner::after {
    content: "終了しました";
    display: block;
    background: rgba(0, 0, 0, 0.5);
	/*background: #000;*/
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    margin: auto;
    width: 200px;
    height: 80px;
    z-index: 1000;
	border: 2px solid #fff;
}
ul.cam_list li.end_cam::after {
    bottom: 0;
    top: 0;
    width: 200px;
    height: 60px;
    transform: rotate(-15deg);
}
#cam_2-box.end_cam .under_box_inner::after,
#cam_1-box.end_cam .under_box_inner::after {
    transform: rotate(-15deg);
    font-size: 25px;
    width: 300px;
    height: 80px;
    font-weight: bold;
    border: 3px solid #fff
    top: 110px;
}

.w_cam_img_box {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -20px 0 0;
}
.w_cam_img_box img {
	display: block;
	width: calc( 50% - 20px );
	margin-bottom: 20px;
	margin-right: 20px;
}
.w_cam_img_box img.c_1 {
	width: 60%;
}
#cam_2 ul.Summary_list {
    background: rgb(255 255 255 / 100%);
}
#cam_2 .item_list li .item_list_c .item_badge.item_badge2 {
    background: #52c3f1;
}


#cam_2 ul.cam_list {
    justify-content: center !important;
    margin-top: -40px;
    margin-bottom: 40px;
}

.item_list li.w_2 {
    width: calc((100% - 60px) / 2);
}

.item_list li .item_list_c .point_box_2 {
    font-weight: bold;
    border: 2px solid #e8418d;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
}

#cam_2 ul.cam_list li {
	width: 100%;
    background: no-repeat;
    padding: 0;
    margin: 0;
    border: none;
    box-shadow: none;
}
#cam_2 ul.cam_list li .cam_list_box span.cam_list_ttl {
	display: none;
}

ul.cam_list li .cam_list_box span.day_text {
    color: #fff;
    text-shadow: var(--border_color_b) 2px 0px 0px, var(--border_color_b) -2px 0px 0px, var(--border_color_b) 0px -2px 0px, var(--border_color_b) 0px 2px 0px, var(--border_color_b) 2px 2px 0px, var(--border_color_b) -2px 2px 0px, var(--border_color_b) 2px -2px 0px, var(--border_color_b) -2px -2px 0px, var(--border_color_b) 1px 2px 0px, var(--border_color_b) -1px 2px 0px, var(--border_color_b) 1px -2px 0px, var(--border_color_b) -1px -2px 0px, var(--border_color_b) 2px 1px 0px, var(--border_color_b) -2px 1px 0px, var(--border_color_b) 2px -1px 0px, var(--border_color_b) -2px -1px 0px, var(--border_color_b) 1px 1px 0px, var(--border_color_b) -1px 1px 0px, var(--border_color_b) 1px -1px 0px, var(--border_color_b) -1px -1px 0px;
    position: relative;
    z-index: 2;
    font-size: 86%;
    margin-right: 30px;
    margin-bottom: 3px;
}

.item_list li.badge_2item .item_list_c .item_badge {
	height: 40px;
}
.item_list li.badge_2item .item_list_c .item_badge1 {
    top: 24px;
}
@media screen and (max-width: 1400px) {
	.item_list li .item_list_c .item_name {
		font-size: 18px;
		margin-bottom: 5px;
	}
	.item_list li .item_list_c .big_price {
    	font-size: 24px;
	}
	
}
@media screen and (max-width: 1200px) {
	.item_list li.badge_2item .item_list_c .item_badge1 {
		top: 30px;
	}
	.w_cam_img_box img {
		width: calc(50% - 10px);
		margin-bottom: 10px;
		margin-right: 10px;
	}
	.w_cam_img_box {
		margin: 0 -10px 0px 0;
	}
	.w_cam_img_box img.c_1 {
		width: 70%;
	}
	.w_cam_img_box {
		justify-content: center;
	}
	#cam_2 ul.cam_list {
		margin-top: -10px;
		margin-bottom: 30px;
	}
	.inner {
		padding-left: 50px;
		padding-right: 50px;
	}
	.padding_box {
		padding: 60px;
	}
	#ttl_line_top-left, 
	#ttl_line_top-right, 
	#ttl_line_top, 
	#ttl_line_right, 
	#ttl_line_left {
		top: -10px;
	}
	#ttl_line_bottom-left, 
	#ttl_line_bottom-right, 
	#ttl_line_bottom, 
	#ttl_line_right, 
	#ttl_line_left{
		bottom: -10px;
	}
	#ttl_line_top-left, 
	#ttl_line_bottom-left, 
	#ttl_line_top, 
	#ttl_line_bottom, 
	#ttl_line_left {
		left: -10px;
	}
	#ttl_line_top-right, 
	#ttl_line_bottom-right, 
	#ttl_line_top, 
	#ttl_line_bottom, 
	#ttl_line_right {
		right: -10px;
	}
	#ttl_line_left, 
	#ttl_line_right {
		height: calc(100% - 120px);
	}
	#ttl_line_top, #ttl_line_bottom, #ttl_line_top_gray, #ttl_line_bottom_gray {
		width: calc(100% - 120px);
	}
	#ttl_line_right, 
	#ttl_line_left, 
	#ttl_line_bottom-right, 
	#ttl_line_top-right, 
	#ttl_line_bottom-left, 
	#ttl_line_top-left {
		width: 70px;
	}
	#ttl_line_top, 
	#ttl_line_bottom, 
	#ttl_line_bottom-right, 
	#ttl_line_top-right, 
	#ttl_line_bottom-left, 
	#ttl_line_top-left {
		height: 70px;
	}
	ul.cam_list {
		margin-bottom: 20px;
	}
	ul.cam_list li .cam_list_box span.cam_list_ttl img {
		width: 75%;
	}
	ul.cam_list li {
		border-width: 3px;
		margin-bottom: 10px;
	}
	ul.cam_list li .cam_list_box span.cam_list_day {
		font-size: 42px;
		letter-spacing: -0.04em;
	}
	ul.cam_list li .cam_day_box {
		padding: 30px;
	}
	#cam_1 h2 ,
	#cam_2 h2 ,
	#cam_3 h2,
	#cam_4 h2 , {
		margin-bottom: 30px;
	}
	

	#cam_1_line_parts_1 {
		top: 60px;
		right: 20px;
		width: 80px;
	}
	#cam_1_line_parts_2 {
		bottom: 120px;
		left: 0px;
		width: 120px;

	}

	#cam_1_line_parts_3 {
		top: 0px;
		right: 74px;
		width: 70px;
	}
	#cam_1_line_parts_4 {
		bottom: 38px;
		left: 66px;
		width: 70px;
	}


	#cam_2_line_parts_1 {
		top: 65px;
		right: 10px;
		width: 110px;
	}

	#cam_2_line_parts_2 {
		bottom: 90px;
		left: -10px;
		width: 130px;
	}

	#cam_2_line_parts_3 {
		bottom: 44px;
		left: 87px;
		width: 60px;
	}


	#cam_2_line_parts_4 {
		top: 0px;
		right: 92px;
		width: 50px;

	}

	#cam_3_line_parts_1 {
        top: 4px;
        right: 1px;
        width: 160px;
	}
	#cam_3_line_parts_2 {
        bottom: 65px;
        left: 10px;
        width: 110px;
	}
	#cam_3_line_parts_4 {
        bottom: 45px;
        left: 90px;
        width: 42px;
	}
	#cam_4_line_parts_1 {
        top: 60px;
        right: 10px;
        width: 120px;
	}
	#cam_4_line_parts_2 {
        bottom: 73px;
        left: 10px;
        width: 80px;
	}
	#cam_4_line_parts_3 {
        top: 0px;
        right: 85px;
        width: 65px;
	}
	#cam_4_line_parts_4 {
        bottom: 44px;
        left: 80px;
        width: 60px;
	}
	#cam_5_line_parts_1 {
        top: 50px;
        right: -5px;
        width: 160px;
	}
	#cam_5_line_parts_3 {
        top: 10px;
        right: 98px;
        width: 40px;
	}
	#cam_5_line_parts_2 {
        bottom: 51px;
        left: 95px;
        width: 40px;
	}
	#cam_5_line_parts_4 {
        bottom: 90px;
        left: 18px;
        width: 80px;
	}
	
	
}
@media screen and (max-width: 1000px) {
    .item_list li.w_2 .item_list_c .img_box {
        padding-top: 100%;
    }
    .item_list li.w_2 {
        width: calc((100% - 40px) / 2);
    }
	.inner {
        padding-left: 30px;
        padding-right: 30px;
    }
	#mv_main_text_1 {
		width: 50%;
	}
	ul.cam_list li .cam_list_box span.cam_list_ttl img {
        width: 85%;
    }
	#bg_fune {
    	width: 68vw;
	}
	ul.cam_list li {
		border-radius: 15px;
        margin-bottom: 15px;
	}
	ul.cam_list li .cam_day_box {
        padding: 30px 15px;
    }
	ul.cam_list li .cam_list_box span.cam_list_ttl {
		padding: 15px;
	}
	#mv_text_left {
		height: 80%;
		right: 3%;
	}
	#cam_box .text_box {
		text-align: center;
		font-size: 20px;
	}
	ul.cam_list li .cam_list_box span.cam_list_day {
        font-size: 36px;
	}
	#cam_1 h2,
	#cam_2 h2 {
    	width: 55%;
	}
	#cam_4 h2 ,
	#cam_3 h2 {
    	width: 70%;
	}
	#cam_box h2 {
		width: 70%;
		margin: 0 auto 30px;
	}
	#cam_4 h2 ,
	#cam_1 h2,
	#cam_2 h2,
	#cam_3 h2 {
        margin-bottom: 20px;
    }
	h3.h3_white {
		font-size: 22px;
		margin-bottom: 20px;
	}
	.item_list {
		
	}
	.item_c_box {
		margin-bottom: 40px;
	}
	.item_list {
		margin-bottom: -10px;
		margin-right: -10px;
	}
	.item_list li {
		width: calc((100% - 20px) / 2);
		margin-bottom: 10px;
		margin-right: 10px;
	}
	.com_soon_text {
		width: 60%;
	}
	#cam_h2_fish_2 {
        left: -25%;
        top: 12%;
        width: 25%;
	}
	#cam_h2_fish_1 {
        left: -30%;
        bottom: 13%;
        width: 16%;
	}
	#cam_h2_dojo {
		right: -33%;
		top: 0;
		bottom: -10%;
		margin: auto;
		width: 33%;
	}
	
	
	#ttl_line_top-left, 
	#ttl_line_top-right, 
	#ttl_line_top, 
	#ttl_line_right, 
	#ttl_line_left {
		top: -15px;
	}
	#ttl_line_bottom-left, 
	#ttl_line_bottom-right, 
	#ttl_line_bottom, 
	#ttl_line_right, 
	#ttl_line_left{
		bottom: -15px;
	}
	#ttl_line_top-left, 
	#ttl_line_bottom-left, 
	#ttl_line_top, 
	#ttl_line_bottom, 
	#ttl_line_left {
		left: -15px;
	}
	#ttl_line_top-right, 
	#ttl_line_bottom-right, 
	#ttl_line_top, 
	#ttl_line_bottom, 
	#ttl_line_right {
		right: -15px;
	}
	#ttl_line_left, 
	#ttl_line_right {
		height: calc(100% - 70px);
	}
	#ttl_line_top, #ttl_line_bottom, #ttl_line_top_gray, #ttl_line_bottom_gray {
		width: calc(100% - 70px);
	}
	.under_box_common {
		border-radius: 15px;
		padding: 0;
	}
	#ttl_line_right, 
	#ttl_line_left, 
	#ttl_line_bottom-right, 
	#ttl_line_top-right, 
	#ttl_line_bottom-left, 
	#ttl_line_top-left {
		width: 50px;
	}
	#ttl_line_top, 
	#ttl_line_bottom, 
	#ttl_line_bottom-right, 
	#ttl_line_top-right, 
	#ttl_line_bottom-left, 
	#ttl_line_top-left {
		height: 50px;
	}
	ul.cam_list li .cam_list_box span.day_of_week {
		margin-bottom: 2px;
	}
}
@media screen and (max-width: 768px) {

    #bg_nami_1 ,
    #bg_nami_2 {
        background-image: url(../img/index/bg_nami_sp.png) ;
    }
    #bg_body {
        background-image: url(../img/index/bg_main_sp.png);
    }
	#about_box {
		padding-left: 0;
		padding-right: 0;
	}
	body {
    font-size: 14px;
	}
	.under_box_inner { 
		background-size: 60px;
	}
	ul.cam_list li .cam_day_box { 
		background-size: 40px;
	}
	.sp_br {
		display: block;
		width: 100%;
	}
	ul.cam_list li .cam_list_box span.cam_list_ttl {
        padding: 15px 10px;
    }
	ul.cam_list li .cam_list_box span.day_num {
		margin-top: 5px!important;
	}
	.cam_list_day {
		flex-wrap: wrap;
	}
	ul.cam_list li .cam_day_box {
        padding: 18px 10px 25px;
    }
	ul.cam_list li .cam_list_box span.cam_list_day {
        font-size: 32px;
    }
	.pc_only {
		display: none;
	}
	.sp_only {
		display: block;
	}
	.padding_box {
        padding: 10vw 5vw;
    }
	.item_list li.w_2 {
        width: 100%;
    }
	.w_cam_img_box img.c_1 {
		width:80%;
	}
	ul.cam_list li.end_cam::after {
		width: 170px;
		height: 50px;
		transform: rotate(-10deg);
		font-size: 18px;
	}
	#mv_aria {
		min-height: 150vw;
	}
	
	#mv_main_text_1 {
		left: 0;
		right: 0;
        top: 10vw;
        margin: auto;
        width: 90%;
	}
	#mv_text_left {
        left: 0;
        right: 0;
        width: 85vw;
        top: 70vw;
        bottom: auto;
        height: auto;
        margin: auto;
    }
	#bg_nami_4 {
        width: 47vw;
        bottom: 14vw;
        left: -12vw;
	}
	#bg_nami_3 {
		width: 40vw;
   		bottom: 5vw;
   		z-index: -92;
    }
	#bg_nami_2,
	#bg_nami_1 {
		background-size: 400%;
	}
	#bg_nami_1 {
    	bottom: -8vw;
	}
	#bg_fune {
		width: 120vw;
		left: 0;
		right: -9vw;
		bottom: 2.5vw;
		z-index: -91;
	}
	#jumping_fish_1 {
    	width: 20%;
	}
	#jumping_fish_2 {
    	width: 13%;
	}
	.inner {
        padding-left: 20px;
        padding-right: 20px;
    }
	footer {
		margin-top: 90vw;
        font-size: 10px;
	}
	
	
	
	#ttl_line_top-left, 
	#ttl_line_top-right, 
	#ttl_line_top, 
	#ttl_line_right, 
	#ttl_line_left {
		top: -2vw;
	}
	#ttl_line_bottom-left, 
	#ttl_line_bottom-right, 
	#ttl_line_bottom, 
	#ttl_line_right, 
	#ttl_line_left{
		bottom: -2vw;
	}
	#ttl_line_top-left, 
	#ttl_line_bottom-left, 
	#ttl_line_top, 
	#ttl_line_bottom, 
	#ttl_line_left {
		left: -2vw;
	}
	#ttl_line_top-right, 
	#ttl_line_bottom-right, 
	#ttl_line_top, 
	#ttl_line_bottom, 
	#ttl_line_right {
		right: -2vw;
	}
	#ttl_line_left, 
	#ttl_line_right {
		height: calc(100% - 12vw);
	}
	#ttl_line_top, #ttl_line_bottom, #ttl_line_top_gray, #ttl_line_bottom_gray {
		width: calc(100% - 12vw);
	}
	.under_box_common {
		border-radius: 15px;
		padding: 0;
	}
	#ttl_line_right, 
	#ttl_line_left, 
	#ttl_line_bottom-right, 
	#ttl_line_top-right, 
	#ttl_line_bottom-left, 
	#ttl_line_top-left {
		width: 8vw;
	}
	#ttl_line_top, 
	#ttl_line_bottom, 
	#ttl_line_bottom-right, 
	#ttl_line_top-right, 
	#ttl_line_bottom-left, 
	#ttl_line_top-left {
		height: 8vw;
	}
	.item_list li {
        width: 100%;
	}
	.item_list li .item_list_c .img_box img {
		max-width: 90%;
		max-height: 90%;
	}
	.item_list li .item_list_c .description_box {
		padding: 15px 10px 10px;
	}
	.item_list li .item_list_c .item_name {
        font-size: 16px;
        margin-bottom: 5px;
    }
	.item_list li .item_list_c .big_price {
        font-size: 20px;
    }
	#cam_1 h2,
	#cam_2 h2 {
        width: 70%;
    }
	#cam_4 h2 ,
	#cam_3 h2 {
        width: 90%;
    }
	#cam_box h2 {
        width: 90%;
        margin: 0px auto 20px;
    }
	#cam_h2_fish_2,
	#cam_h2_fish_1,
	#cam_h2_dojo {
		display: none;
	}
	.com_soon_text {
        width: 80%;
    }
	.padding_tb {
    	padding-bottom: 30px;
	}
	.price-reduction_text {
		font-size: 18px;
	}
	h3.h3_white {
        font-size: 20px;
        margin-bottom: 20px;
        padding: 20px 20px 22px;
    }
	.item_c_box {
        margin-bottom: 30px;
    }
	#about_Aria .img_box {
    	width: 60%;
	}
	
	#cam_1_line_parts_1 {
        top: 1vw;
        right: -1vw;
        width: 18vw;
    }
	
	#cam_1_line_parts_4,
	#cam_1_line_parts_3,
	#cam_2_line_parts_4,
	#cam_2_line_parts_3,
	#cam_3_line_parts_4,
	#cam_3_line_parts_3,
	#cam_4_line_parts_4,
	#cam_4_line_parts_3,
	#cam_5_line_parts_4,
	#cam_5_line_parts_3 {
		display: none;
	}
	#cam_1_line_parts_2 {
        bottom: 2vw;
        left: 0px;
        width: 21vw;
    }
	#cam_2_line_parts_1 {
        top: 1vw;
        right: 2vw;
        width: 20vw;
    }
	#cam_2_line_parts_2 {
        bottom: 0;
        left: -1vw;
        width: 20vw;
    }
	#cam_3_line_parts_1 {
        top: 3vw;
        right: -1vw;
        width: 23vw;
    }
	#cam_3_line_parts_2 {
        bottom: -3vw;
        left: 1vw;
        width: 21vw;
    }
	#cam_4_line_parts_1 {
        top: 3vw;
        right: 0vw;
        width: 20vw;
    }
	#cam_4_line_parts_2 {
        bottom: -5vw;
        left: 2vw;
        width: 19vw;
    }
	#cam_5_line_parts_1 {
        top: -5vw;
        right: -1vw;
        width: 30vw;
    }
	#cam_5_line_parts_2 {
        bottom: -2vw;
        left: 2vw;
        width: 20vw;
        transform: rotate(-20deg) scale(1, 1);
    }
}
@media screen and (max-width: 481px) {
	
	#mv_main_text_1 {
        top: 15vw;
	}
	#mv_text_left {
        top: 75vw;
    }
	.item_list li.badge_2item .item_list_c .item_badge {
		height: 30px;
	}
	.item_list li.badge_2item .item_list_c .item_badge1 {
		top: 19px;
	}
	.item_list li .item_list_c .item_badge {
        padding: 0 15px;
	}
	.w_cam_img_box {
		margin: 0;
	}
	.w_cam_img_box img {
		display: block;
		width: 100%;
		margin-bottom: 10px;
		margin-right: 0;
	}
	.item_list li .item_list_c .item_name {
        font-size: 15px;
    }
	.w_cam_img_box img.c_1 {
        width: 85%;
    }
	#cam_2 ul.cam_list li .cam_list_box span.cam_list_day {
		flex-wrap: wrap;
	}
	#cam_2 ul.cam_list li .cam_list_box span.day_text {
		width: 100%;
		text-align: center;
		font-size: 20px;
		margin: 0 0 9px;
		border-top: 2px #000 dotted;
		padding: 10px;
		border-bottom: 2px #000 dotted;
	}
	#cam_2 ul.cam_list {
		justify-content: center !important;
		margin-top: 0px;
		margin-bottom: 15px;
	}
	#cam_2-box.end_cam .under_box_inner::after,
	#cam_1-box.end_cam .under_box_inner::after {
		width: 250px;
		height: 100px;
	}
	#cam_box .text_box,
	.price-reduction_text {
		font-size: 16px;
	}
	#bg_nami_1 {
        bottom: -9vw;
    }
	ul.cam_list li .cam_list_box span.cam_list_ttl img {
        width: 100%;
    }
}





/* cherry-blossoms_box
--------------------------------------------------------- */
#cherry-blossoms_box {
	position: fixed;
	left: -5vw;
	right: -5vw;
	top: -2vh;
	bottom: -2vh;
	margin: auto;
	z-index: -100;
	/*opacity: 0.5;*/
}
#cherry-blossoms_box_inner {
	position: relative;
	overflow: hidden;
	width: 110vw;
	height: 102vh;
}

/* ===== 桜のスタイル ===== */

/* 桜の共通スタイル */
.leaf {
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	animation: animate-leaf 10s linear forwards;
	z-index: -1;
    filter: saturate(150%);
}
.leaf.anim_speed_1 {
	animation: animate-leaf 15s linear forwards;
}
.leaf.anim_speed_2 {
	animation: animate-leaf 20s linear forwards;
}
.leaf.anim_speed_3 {
	animation: animate-leaf 13s linear forwards;
}
.leaf.anim_speed_4 {
	animation: animate-leaf 17s linear forwards;
}
/* 桜 */
.cherry-blossoms_1 {
  background-image: url('../img/index/cherry-blossoms_01.svg'); 
}
.cherry-blossoms_2 {
  background-image: url('../img/index/cherry-blossoms_02.svg'); 
}
.cherry-blossoms_3 {
  background-image: url('../img/index/cherry-blossoms_03.svg'); 
}
.cherry-blossoms_4 {
  background-image: url('../img/index/cherry-blossoms_04.png'); 
}
.cherry-blossoms_5 {
  background-image: url('../img/index/cherry-blossoms_05.png'); 
}
.cherry-blossoms_6 {
  background-image: url('../img/index/cherry-blossoms_06.png'); 
}

/* ===== 落ち葉が降るアニメーション ===== */
@keyframes animate-leaf {
  0% {
    opacity: 0;
    top: 0;
    transform: rotate(0);
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    top: 100vh;
    transform: rotate(1080deg);
  }
}



/* ===== app_dl ===== */
.app_dl {
	color: #fff;
	margin-top: 40px;
}
.app_dl ul.app_dl_list {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    margin-top: 15px;
}
.app_dl .app_ttl{
	font-size: 20px;
    text-shadow: 1px 1px 2px rgb(0 61 89);
}
.app_dl ul.app_dl_list li {
    margin: 0 3px;
}
.app_dl ul.app_dl_list li img {
    height: 80px;
}

.dl_asterisk {
	margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgb(0 61 89);
}
#cam_1 .dl_asterisk {
	margin: 15px 0 0;
}
@media screen and (max-width: 1000px) {
}
@media screen and (max-width: 768px) {
	.app_dl ul.app_dl_list li img {
		height:55px;
	}
}
@media screen and (max-width: 481px) {
	.app_dl .app_ttl {
		font-size: 14px;
	}
	.app_dl ul.app_dl_list {
		margin-bottom: 10px;
		margin-top: 10px;
	}
	.app_dl ul.app_dl_list li img {
		height: 40px;
	}
	
	
	.dl_asterisk {
		font-size: 12px;
		text-align: left;
	    margin-bottom: 10px;
	}
	
	
	
	
}