@charset "UTF-8";
@import url('reset.css');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;500;700&display=swap');
@import url('message.css');
@import url('photo.css');

/* =========================================================
	0. General
========================================================= */
*,
*:before,
*:after {
    box-sizing: inherit;
}

html{
    height: 100%;
    font-size: 62.5%;
    overflow-x: hidden;
    box-sizing: border-box;
}

body{
    margin: 0;
    padding: 0;
    height: 100%;
    background: #fff;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.8;
    color: #5D5D5D;
    font-family: kinto-sans, sans-serif,'游ゴシック体', 'Yu Gothic', YuGothic, 'ヒラギノ角ゴ Pro','Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ ゴシック',’MS PGothic’, Arial, Helvetica, Geneva, Swiss, SunSans-Regular, sans-serif;
    font-style: normal;
    text-align: center;
    letter-spacing: 2px;
    -webkit-text-size-adjust: 100%;
	animation: fadeIn 5s ease 0s 1 normal;
	-webkit-animation: fadeIn 5s ease 0s 1 normal;
}

@keyframes fadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}

/* ----- display ----- */
.pc {display: block;}
.pc_tablet {display: block;}
.tablet_sp {display: none;}
.tablet {display: none;}
.sp {display: none;}

/* ----- anchor----- */
a {
	overflow: hidden;
	outline: none;
	border: none;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
a:focus {outline: none;}
a:link {color: #008838;text-decoration: none;}
a:visited {color: #008812;text-decoration: none;}
a:hover {color: #94ae2d;text-decoration: none;}
a:active {color: #d1dd44;text-decoration: none;}

/* ----- image----- */
img {
	margin: 0;
	border: 0;
}
a img {
	margin: 0;
	border: 0;
}
a:hover img{
	opacity: 0.7;
	-moz-opacity: 0.7;
	filter: alpha(opacity=70);
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

/* ----- text----- */
p {margin: 1.4rem 0;}
.txt12 {font-size: 1.2rem;}
.txt14 {font-size: 1.4rem;}
.txt16 {font-size: 1.6rem;}
.txt18 {font-size: 1.8rem;}
.txt22 {
    font-size: 2.2rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
}
.txt_s {font-size: 1.2rem;}
.txt_m {font-size: 1.8rem;}
.txt_l {font-size: 2.6rem;}
.txt_right{ text-align: right !important;}
.txt_center {text-align: center !important;}
.txt_left {text-align: left !important;}
.txt_white { color: #fff;}

/* ----- margin top----- */
.mgn_t15 {margin: 15px 0 0 0;}
.mgn_t25 {margin: 25px 0 0 0;}
.mgn_t50 {margin: 50px 0 0 0;}
.mgn_t100 {margin: 100px 0 0 0;}
.mgn_t150 {margin: 150px 0 0 0;}

/* ----- margin bottom----- */
.mgn_b15 {margin: 0 0 15px 0;}
.mgn_b25 {margin: 0 0 25px 0;}
.mgn_b50 {margin: 0 0 50px 0;}
.mgn_b100 {margin: 0 0 100px 0;}
.mgn_b150 {margin: 0 0 150px 0;}

.dotted{
    background-image : linear-gradient(to right, #fff 2px, transparent 2px),linear-gradient(to bottom, #fff 2px, transparent 2px),linear-gradient(to left, #fff 2px, transparent 2px),linear-gradient(to top, #fff 2px, transparent 2px);
    background-size: 8px 2px,2px 8px,8px 2px,2px 8px;
    background-repeat: repeat-x,repeat-y,repeat-x,repeat-y;
    background-position: left top,right 0px,3px bottom,left 7px;
}

/* ----- animation----- */
.fadein {
    opacity: 0;
    transform: translate(0,0);
    transition: all 1.5s;
}
.fadein-up{
        transform: translate(0,60px);
}
.scrollin{
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

/* =========================================================
	1. Header
========================================================= */
header {
    position: relative;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    max-width: 2560px;
    height: 1100px;
    margin: 0 auto;
    background: url(../img/header_bg_1.jpg) center top;
    background-size: cover;
    background-repeat: no-repeat;
    transform-origin: top left;
    z-index: 1;
}

@media only screen and (max-width : 599px) {
    header {
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        height: 95vh;
        margin: 0 auto;
        background: url(../img/header_bg_sp_1.jpg) center top;
        background-size: cover;
        transform-origin: top center;
    }
}

.pg_msg header {
    height: 400px;
    margin: 0 auto;
    background: url(../img/header_bg_1.jpg) center top;
}

@media only screen and (max-width : 599px) {
    .pg_msg header {
        height: 200px;
    }
}

header::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/header_bg_2.png) center bottom;
    background-size: 100%;
    background-repeat: no-repeat;
    z-index: 2;
}

@media only screen and (max-width : 599px) {
    header::after{
        background: url(../img/header_bg_sp_2.png) center bottom;
        background-size: 100%;
        background-repeat: no-repeat;
    }
}


header .title_wrapper {
    position: absolute;
    display: block;
    float: left;
    top: 150px;
    left: 50%;
    width: 800px;
    height: auto;
    padding: 145px 0 0 0;
    transform: translate(-50%, -50%);
}

@media only screen and (max-width : 599px){
    header .title_wrapper {
        top: 70px;
        left: 50%;
        width: 100%;
        transform: translate(-50%, -50%);
        text-align: center;
    }
}

.pg_msg header .title_wrapper {
    position: absolute;
    display: block;
    float: left;
    top: 100px;
    left: 50%;
    width: 600px;
    height: auto;
    padding: 145px 0 0 0;
    transform: translate(-50%, -50%);
    z-index: 10;
}

@media only screen and (max-width : 599px){
    .pg_msg header .title_wrapper {
        top: 70px;
        left: 50%;
        width: 100%;
        transform: translate(-50%, -50%);
        text-align: center;
    }
}

header h1 {
    width: 800px;
    height: 220px;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    background: url(../img/title_pc.svg) no-repeat;
    background-size: 100%;
	animation-name: fadeupAnime;
    animation-delay: 1s;
	animation-duration: 3s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
    opacity: 0;
}

@media only screen and (max-width : 599px) {
    header h1 {
        width: 370px;
        height: 209px;
        margin: 0 auto;
        overflow: hidden;
        text-indent: 100%;
        white-space: nowrap;
        background: url(../img/title_sp.svg) no-repeat;
        background-size: 100%;
    }
}

.pg_msg header h1 {
    width: 600px;
    height: 220px;
}

@media only screen and (max-width : 599px) {
    .pg_msg header h1 {
        width: 370px;
        height: 209px;
        margin: 0 auto;
        overflow: hidden;
        text-indent: 100%;
        white-space: nowrap;
        background: url(../img/title_pc.svg) no-repeat;
        background-size: 100%;
    }
}

@keyframes fadeupAnime{
    from {
      opacity: 0;
      transform: translateY(150px);
    }
  
    to {
      opacity: 1;
      transform: translateY(0);
    }
}
  
/* ----- navigator ----- */
.navigator_area {
    position: absolute;
    display: block;
    float: left;
    top: 500px;
    left: 50%;
    width: 320px;
    height: 250px;
    overflow:	hidden;
    transform: translate(-50%, -50%);
    z-index: 3;
    animation-name: fadein_navigator;
    animation-delay: 2s;
    animation-duration: 2s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
    opacity: 0;
}

@media only screen and (max-width : 599px) {
    .navigator_area {
        top: 400px;
        left: 50%;
        width: 300px;
        height: 234px;
        overflow:	hidden;
        transform: translate(-50%, -50%);
    }
}

@keyframes fadein_navigator {
    0% {
       opacity: 0;
       transform: translate(-50%, 20%);
    }
    100% {
       opacity: 1;
       transform: translate(-50%, -50%);
    }
  }

p.navigator_ttl {
    display: inline-block;
    width:	50%;
    margin: 0 auto 20px auto;
    text-align: center;
    font-size: 1.4rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    color: #cc0000;
    background: rgba(255,255,255,0.55);
    border: 1px solid #cc0000;
    -moz-border-radius:	4px;
    -webkit-border-radius:	4px;
    border-radius:	4px;
}

.navigator_list {
    display:	flex;
    flex-wrap:	wrap;
    justify-content: center;
    align-content:	flex-start;
    gap:	20px 20px;
}

.navigator_list figure.cast_item {
    overflow:	hidden;
    flex-basis:	45%;
    text-align:	center;
}

.navigator_list figure.cast_item img {
    box-sizing:	border-box;
    width:	100%;
    height:	auto;
    margin:	0 0 10px 0;
    -moz-border-radius:	100%;
    -webkit-border-radius:	100%;
    border-radius:	100%;
}

.navigator_list figcaption p.navigator_name {
    margin: 0;
    padding: 0.2rem 0.4rem;
    color: #fff;
    font-size: 1.4rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    text-align: center;
    line-height: 1.6;
    letter-spacing: 3px;
    background: #cc0000;
    -moz-border-radius:	4px;
    -webkit-border-radius:	4px;
    border-radius:	4px;
}

/* =========================================================
	2. main structure
========================================================= */
main{
    width: 100%;
    margin: 0 auto 150px auto;
    padding: 0 0 20px;
}

@media only screen and (max-width : 599px) {
    main{
        width: 100%;
        padding: 0 0 20px;
    }
}

.pg_msg main{
    margin: 0 auto 20px auto;
}

.area_contents {
    overflow: hidden;
    width: 100%;
    padding: 40px 0 0;
}

@media only screen and (max-width : 599px) {
    .area_contents {
        padding: 20px 0;
    }    
}

.area_contents_inner {
    width: 800px;
    margin: 0 auto;
}

@media only screen and (max-width : 899px) {
    .area_contents_inner {
        width: 95%;
        margin: 0 auto;
    }
}

/* ----- Gigya ----- */
#jme {
	padding: 30px 0;
}

/* ----- headline----- */
.headline_area {
	overflow: hidden;
	width: 900px;
	margin: 0 auto 70px auto;
	text-align: center;
}

@media only screen and (max-width : 899px) {
    .headline_area {
        width: 95%;
        margin: 20px auto 30px auto;
    }
}

.headline_area h2 img{
	width: 80%;
	margin: 0 auto 30px auto;
	text-align: center;
}

@media only screen and (max-width : 599px) {
    .headline_area h2 img{
        width: 100%;
        margin: 10px auto;
    }
}

.headline_area h3 {
	margin: 0 0 30px 0;
	font-size: 1.6rem;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	text-align: center;
	line-height: 2.2;
	letter-spacing: 2px;
}

@media only screen and (max-width : 899px) {
    .headline_area h3 {
        margin: 0 0 20px 0;
        font-size: 1.6rem;
        text-align: left;
        line-height: 1.8;
        letter-spacing: 1px;
    }
}

/* ----- wave ----- */
.area_contents_inner.wave {
    color: #fff;
}

.area_contents_inner.wave h2{
	position: relative;
    margin: 0 0 80px 0;
    color: #fff;
    text-align: center;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
}

@media only screen and (max-width : 599px) {
    .area_contents_inner.wave h2{
        margin: 0 0 50px 0;
        font-size: 2.2rem;
        letter-spacing: 0;
    }
}

.area_contents_inner.wave h2:after {
	position: absolute;
	content: "";
	display: block;
    width: 800px;
    height: 20px;
	top: 55px;
    bottom: 0;
    left: 0;
    background: url(../img/line_wave.svg) no-repeat 100% 100%;
}

@media only screen and (max-width : 899px) {
    .area_contents_inner.wave h2:after {
        width: 100%;
        height: 20px;
        top: 55px;
    }
}

@media only screen and (max-width : 599px) {
    .area_contents_inner.wave h2:after {
        width: 100%;
        height: 20px;
        top: 35px;
    }
}

.area_contents_inner h3{
    margin: 0 0 40px 0;
    color: #fff;
    text-align: center;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 2.4rem;
}

@media only screen and (max-width : 899px) {
    .area_contents_inner h3{
        margin: 0 0 20px 0;
        text-align: left;
        line-height: 1.6;
    }
}

@media only screen and (max-width : 599px) {
    .area_contents_inner h3{
        margin: 0 0 20px 0;
        font-size: 1.8rem;
        text-align: left;
        line-height: 1.6;
    }
}

.area_contents_inner p{
    text-align: left;
}

.bg_turquoise {
    background: rgb(40,178,167);
    background: linear-gradient(180deg, rgba(40,178,167,1) 0%, rgba(19,147,136,1) 100%);
}

/* =========================================================
	3. top message
========================================================= */
.top_message_area img{
    width: 70%;
    height: auto;
    margin: 20px auto;
}

.notice {
	width: 100%;
	margin: 50px auto 0;
	padding: 2.0rem 2.6rem;
	font-size:1.4rem;
    border: 2px dotted #fff;
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
	border-radius: 15px;
	line-height: 1.6;
}

@media only screen and (max-width : 599px) {
    .notice {
        margin: 30px auto 0;
        padding: 1.0rem 1.4rem;
    }
}

.notice ul {
    list-style-type: square;
}

.notice li {
    margin: 1.2rem 1.0rem;
    padding: 0;
    text-align: left;
}

@media only screen and (max-width : 599px) {
    .notice li {
        margin: 1.2rem 1.0rem 1.2rem 2.0rem;
        padding: 0;
        text-align: left;
    }
}

@media only screen and (max-width : 599px) {
    .notice li:before {
        position: absolute;
        content: '';
        top: 0.6em;
        left: 0.6em;
        width: 12px;
        height: 12px;
        background: #fff;
    }
}

/* ----- button ----- */
.btn_msg a{
	display: block;
	overflow: hidden;
	position: relative;
	width: 80%;
	min-width: 400px;
	margin:  60px auto 80px auto;
	padding: 20px 20px 20px 50px;
	background: #fff;
	-moz-border-radius: 50px;
	-webkit-border-radius: 50px;
	border-radius: 50px;
	color: #28B2A7;
	font-size: 2.2rem;
	font-weight: 700;
}

@media only screen and (max-width : 899px) {
    .btn_msg a{
        display: block;
        overflow: hidden;
        position: relative;
        width: 80%;
        min-width: 340px;
        margin:  40px auto 50px auto;
        padding: 10px 10px 10px 30px;
        background: #fff;
        -moz-border-radius: 50px;
        -webkit-border-radius: 50px;
        border-radius: 50px;
        color: #28B2A7;
        font-size: 1.8rem;
        letter-spacing: 0;
        font-weight: 700;
    }
}

@media only screen and (max-width : 599px) {
    .btn_msg a{
        display: block;
        overflow: hidden;
        position: relative;
        width: 65%;
        min-width: 340px;
        margin:  40px auto 50px auto;
        padding: 10px 10px 10px 30px;
        background: #fff;
        -moz-border-radius: 50px;
        -webkit-border-radius: 50px;
        border-radius: 50px;
        color: #28B2A7;
        font-size: 1.8rem;
        letter-spacing: 0;
        font-weight: 700;
    }
}

.btn_msg a:after{
	position: absolute;
	display: inline-block;
	width: 20px;
	height: 20px;
	top: 50%;
	left: 120px;
	content: '';
	border: 0;
	border-top: solid 4px #28B2A7;
	border-right: solid 4px #28B2A7;
	transform: translateY(-50%) rotate(45deg);
	z-index: 5;
}

@media only screen and (max-width : 899px) {
    .btn_msg a:after{
        width: 20px;
        height: 20px;
        top: 50%;
        left: 70px;
    }
}

@media only screen and (max-width : 599px) {
    .btn_msg a:after{
        width: 20px;
        height: 20px;
        top: 50%;
        left: 20px;
    }
}

.btn_msg a:hover {
    color: #fff;
    background: #d4be07;
}

@media only screen and (max-width : 899px) {
    .btn_msg a:hover {
        color: #28B2A7;
        background: #fff
    }
}

.btn_msg a:hover:after {
    position: absolute;
    display: inline-block;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 120px;
    content: '';
    border: 0;
    border-top: solid 4px #fff;
    border-right: solid 4px #fff;
    transform: translateY(-50%) rotate(45deg);
    z-index: 5;
}

@media only screen and (max-width : 899px) {
    .btn_msg a:hover:after {
        width: 20px;
        height: 20px;
        top: 50%;
        left: 20px;
        border-top: solid 4px #28B2A7;
        border-right: solid 4px #28B2A7;
    }
}

/* =========================================================
	4. banner
========================================================= */
.bnr_area{
	width: 400px;
	height: auto;
	margin: 50px auto 100px auto;
}

@media only screen and (max-width : 899px) {
    .bnr_area{
        width: 400px;
        height: auto;
        margin: 20px auto 60px auto;
    }
}

@media only screen and (max-width : 599px) {
    .bnr_area{
        width: 350px;
        height: auto;
        margin: 20px auto 40px auto;
    }
}

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

/* =========================================================
	5. live
========================================================= */
.live_area  {
    margin: 0 auto 80px auto;
}

@media only screen and (max-width : 599px) {
    .live_area  {
        margin: 0 auto 80px auto;
    }
}

.live_area h2{
	position: relative;
    margin: 0 0 80px 0;
    color: #cc0000;
    text-align: center;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 5.2rem;
}

@media only screen and (max-width : 899px) {
    .live_area h2{
        position: relative;
        margin: 0 0 70px 0;
        font-size: 4.0rem;
    }
}

@media only screen and (max-width : 599px) {
    .live_area h2{
        position: relative;
        margin: 0 0 60px 0;
        font-size: 2.6rem;
    }
}

.live_area h2:before, .live_area h2:after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background-image: url(../img/flower.jpg);
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: 1;
}

@media only screen and (max-width : 899px) {
    .live_area h2:before, .live_area h2:after {
        width: 120px;
        height: 120px;
    }
}

@media only screen and (max-width : 599px) {
    .live_area h2:before, .live_area h2:after {
        width: 100px;
        height: 100px;
    }
}

.live_area h2:before {
    top: -40px;
    left: 10px;
}

@media only screen and (max-width : 899px) {
    .live_area h2:before {
        top: -10px;
        left: 40px;
    }
}

@media only screen and (max-width : 599px) {
    .live_area h2:before {
        top: -20px;
        left: 0;
    }
}

.live_area h2:after {
    top: -40px;
    right: 10px;
    transform: scale(-1, 1);
}

@media only screen and (max-width : 899px) {
    .live_area h2:after {
        top: -10px;
        right: 40px;
    }
}

@media only screen and (max-width : 599px) {
    .live_area h2:after {
        top: -20px;
        right: 0;
    }
}

.live_area h3{
    margin: 0 0 40px 0;
    color: #cc0000;
    text-align: center;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size:2.2rem;
}

@media only screen and (max-width : 599px) {
    .live_area h3{
        margin: 0 0 20px 0;
        font-size:1.8rem;
        text-align: left;
    }
}


/* =========================================================
	6. guest
========================================================= */
.guest_area  {
    margin: 80px auto 0;
}

@media only screen and (max-width : 599px) {
    .guest_area  {
        margin: 30px auto 40px;
    }
}

.guest_area h2{
	position: relative;
    margin: 0 0 80px 0;
    color: #cc0000;
    text-align: center;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 5.2rem;
}

@media only screen and (max-width : 899px) {
    .guest_area h2 {
        position: relative;
        margin: 0 0 70px 0;
        font-size: 4.0rem;
    }
}

@media only screen and (max-width : 599px) {
    .guest_area h2 {
        position: relative;
        margin: 0 0 40px 0;
        font-size: 4.0rem;
    }
}

.guest_area h2:before, .guest_area h2:after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background-image: url(../img/flower.jpg);
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: 1;
}

@media only screen and (max-width : 899px) {
    .guest_area h2:before, .guest_area h2:after {
        width: 120px;
        height: 120px;
    }
}

@media only screen and (max-width : 599px) {
    .guest_area h2:before, .guest_area h2:after {
        width: 100px;
        height: 100px;
        background-image: url(../img/flower.jpg);
    }
}

.guest_area h2:before {
    top: -40px;
    left: 70px;
}

@media only screen and (max-width : 899px) {
    .guest_area h2:before {
        top: -10px;
        left: 80px;
    }
}

@media only screen and (max-width : 599px) {
    .guest_area h2:before {
        top: -15px;
        left: 0;
    }
}

.guest_area h2:after {
    top: -40px;
    right: 70px;
    transform: scale(-1, 1);
}

@media only screen and (max-width : 899px) {
    .guest_area h2:after {
        top: -10px;
        right: 80px;
    }
}

@media only screen and (max-width : 599px) {
    .guest_area h2:after {
        top: -15px;
        right: 0;
    }
}


/* ----- dj ----- */
.guest_area.dj_area  {
    margin: 20px auto 100px;
}

@media only screen and (max-width : 599px) {
    .guest_area.dj_area  {
        margin: 30px auto 40px;
    }
}

.guest_area.dj_area h2{
	position: relative;
    margin: 0 0 40px 0;
    color: #ca2660;
    text-align: center;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 3.2rem;
}

@media only screen and (max-width : 899px) {
    .guest_area.dj_area h2 {
        position: relative;
        margin: 0 0 70px 0;
        font-size: 2.8rem;
    }
}

@media only screen and (max-width : 599px) {
    .guest_area.dj_area h2 {
        position: relative;
        margin: 0 0 40px 0;
        font-size: 2.8rem;
        line-height: 1.2;
    }
}

.guest_area.dj_area h2:before, .guest_area.dj_area h2:after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    background-image: url(../img/flower_2.jpg);
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: 1;
}

@media only screen and (max-width : 899px) {
    .guest_area.dj_area h2:before, .guest_area.dj_area h2:after {
        width: 70px;
        height: 70px;
    }
}

.guest_area.dj_area h2:before {
    top: -20px;
    left: 30px;
}

@media only screen and (max-width : 899px) {
    .guest_area.dj_area h2:before {
        top: 0;
        left: 30px;
    }
}

@media only screen and (max-width : 599px) {
    .guest_area.dj_area h2:before {
        top: 20px;
        left: 20px;
    }
}

.guest_area.dj_area h2:after {
    top: -20px;
    right: 30px;
    transform: scale(-1, 1);
}

@media only screen and (max-width : 899px) {
    .guest_area.dj_area h2:after {
        top: 0;
        right: 10px;
    }
}

@media only screen and (max-width : 599px) {
    .guest_area.dj_area h2:after {
        top: 20px;
        right: 20px;
    }
}




.guest_area h3{
    margin: 0 0 40px 0;
    color: #cc0000;
    text-align: center;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size:2.2rem;
}

@media only screen and (max-width : 599px) {
    .guest_area h3{
        margin: 0 0 20px 0;
        font-size:1.8rem;
        text-align: left;
    }
}

/* ----- guest_list ----- */
.guest_area_list{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: flex-start;
	gap: 30px 30px;
	overflow: hidden;
	width: 800px;
	margin: 50px auto 20px auto;
}

@media only screen and (max-width : 899px) {
    .guest_area_list{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-content: flex-start;
        gap: 10px 10px;
        overflow: hidden;
        width: 100%;
        margin: 20px auto 40px auto;
    }
}

@media only screen and (max-width : 599px) {
    .guest_area_list{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-content: flex-start;
        gap: 10px 10px;
        overflow: hidden;
        width: 100%;
        margin: 20px auto 20px auto;
    }
}

.guest_area_list figure.guest_item{
	overflow: hidden;
	flex-basis: 30%;
	text-align: center;
	margin: 0 0 20px 0;
}

@media only screen and (max-width : 599px) {
    .guest_area_list figure.guest_item{
        overflow: hidden;
        flex-basis: 45%;
        text-align: center;
        margin: 0 0 25px;
    }
}

.guest_area_list figure.guest_item img {
	box-sizing: border-box;
	width: 100%;
	height: auto;
	margin: 0;
	-moz-border-radius:	100%;
	-webkit-border-radius: 100%;
	border-radius: 100%;
}

.guest_area_list figcaption{
	margin: 10px 0 0 0;
	padding: 0.2rem 0.8rem;
	line-height:1.6;
	letter-spacing: 3px;
	text-align:center;
	font-size: 1.6rem;
	font-weight: 500;
}

.guest_area_list figcaption span{
	display: block;
	margin: 0;
	padding: 0.4rem 1.0rem;
    color: #7e7d7d;
	font-size: 1.2rem;
	font-weight: 300;;
	letter-spacing: 1px;
	line-height: 1.4;
	-moz-border-radius:	10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}

/* ----- event ----- */
.info_event{
    padding: 20px;
    border: dotted 2px #cc0000;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

.info_event h2{
    margin: 1.0rem auto 2.0rem auto;
    color: #cc0000;
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.8;
    border-bottom: dotted 2px #cc0000;
}

@media only screen and (max-width : 599px) {
    .info_event h2{
        margin: 0 auto 2.0rem auto;
        color: #cc0000;
        font-size: 1.8rem;
        font-weight: 700;
        text-align: center;
        line-height: 1.8;
        border-bottom: dotted 2px #cc0000;
    }
}

.info_event h2::before, .info_event h2::after{
	display: none;
}

.info_event p{
	width: 80%;
	margin: 0 auto 40px auto;
	text-align: center;
}

@media only screen and (max-width : 599px) {
    .info_event p{
        width: 100%;
        margin: 0 auto 20px auto;
        text-align: left;
    }
}

/* ----- button_event ----- */
.btn_event a{
    display: block;
    overflow: hidden;
    position: relative;
    width: 400px;
    margin:  20px auto;
    padding: 20px;
    background: #cc0000;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    border-radius: 50px;
    color: #fff;
    font-size: 2.0rem;
    font-weight: 500;
    transition: ease .2s;
    text-align: center;
}

@media only screen and (max-width : 599px) {
    .btn_event a{
        display: block;
        overflow: hidden;
        position: relative;
        width: 100%;
        margin:  0 auto;
        padding: 5px;
        color: #fff;
        font-size: 1.8rem;
    }
}

.btn_event a:hover{
    background: #f39800;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    border-radius: 50px;
}

.btn_event a span{
    position: relative;
    padding: 0 0 0 50px;
    z-index: 10;
    color: #fff;
}

.btn_event a:hover span{
	color: #fff;
}

.btn_event a:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	background: #f3d900;
	width: 100%;
	height: 100%;
	transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
	transform: scale(0, 1);
	transform-origin: right top;
	-moz-border-radius: 50px;
	-webkit-border-radius: 50px;
	border-radius: 50px;
}

.btn_event a:after{
	position: absolute;
	display: inline-block;
	width: 15px;
	height: 15px;
	top: 50%;
	left: 70px;
	content: '';
	border: 0;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	transform: translateY(-50%) rotate(45deg);
	z-index: 5;
}

@media only screen and (max-width : 599px) {
    .btn_event a:after{
        width: 12px;
        height: 12px;
        left: 25px;
    }
}

/* =========================================================
	7. hawaii
========================================================= */
.area_hawaii {
	position: relative;
    width: 700px;
    margin: 0 auto 60px auto;;
    padding: 20px;
    text-align: center;
    background: #FDF5E3;
	-moz-border-radius:	5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

@media only screen and (max-width : 899px) {
    .area_hawaii {
        width: 100%;
        margin: 0 auto 60px auto;;
        padding: 10px;
    }
}

.area_hawaii.decoration_01::after,.area_hawaii.decoration_02::after,.area_hawaii.decoration_03::after  {
    content: "";
    position: absolute;
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: 5;
}

.area_hawaii.decoration_01::after {
    width: 290px;
    height: 290px;
    top: -80px;
    left: -75px;
    background-image: url(../img/decorations_01.png);
}

@media only screen and (max-width : 599px) {
    .area_hawaii.decoration_01::after {
        width: 180px;
        height: 180px;
        top: -60px;
        left: -45px;
    }
}

.area_hawaii.decoration_02::after {
    width: 270px;
    height: 270px;
    top: -120px;
    right: -45px;
    background-image: url(../img/decorations_02.png);
}

@media only screen and (max-width : 599px) {
    .area_hawaii.decoration_02::after {
        width: 180px;
        height: 2180px;
        top: -75px;
        right: -55px;
    }
    
}

.area_hawaii_inner{
    padding: 35px 20px;
    border: 2px solid #22A699;
    -moz-border-radius:	5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

@media only screen and (max-width : 599px) {
    .area_hawaii_inner{
        padding: 25px 10px;
    }
}

dl.txt_hawaii {
    width: 90%;
    margin: 0 auto;
}

@media only screen and (max-width : 599px) {
    dl.txt_hawaii {
        width: 100%;
        margin: 0 auto;
    }
}

dl.txt_hawaii dt {
	text-align: center;
}

dl.txt_hawaii dt figure.guest_fromhawaii {
	overflow: hidden;
	width: 300px;
    height: auto;
	margin: 0 auto;
}

dl.txt_hawaii dt figure.guest_fromhawaii figcaption {
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
}

dl.txt_hawaii dt img{
    width: 80%;
    -moz-border-radius:	100%;
    -webkit-border-radius: 100%;
    border-radius: 100%;
}

dl.txt_hawaii dd {
    text-align: justify;
    color: #5D5D5D;
}

dl.txt_hawaii dd p{
    width: 100%;
    padding: 0;
}

/* =========================================================
	8. footer
========================================================= */
footer {
	overflow: hidden;
	padding: 0;
}

.footer_bottom {
	display: flex;
    overflow: hidden;
	width: 1000px;
	max-width: calc(100% - 100px*2);
	margin: 0 auto 150px auto;
}

.footer_bottom .gotohome{
	width: 100px;
}

.footer_bottom .gotohome img {
	width: 100%;
	height: auto;
}

.j-wave_credit_area {
	width: calc(100% - 100px);
}

li.j-wave_logo {
    text-align: right;
}

li.j-wave_logo img {
    width: 250px;
    height: auto;
    margin: 0 0 5px 0;
}

li.j-wave_credit {
	width: 100%;
	font-size: 10px;
    text-align: right;
}

@media only screen and (max-width : 899px) {
    .footer_bottom {
        display: block;
        width: 100%;
    	max-width: 100%;
        margin: 0 auto 100px auto;
    }
    
    .footer_bottom .gotohome{
        width: 100%;
        margin: 0 0 35px 0;
        text-align: center;
    }
    
    .footer_bottom .gotohome img{
        width: 40%;
        max-width: 150px;
        margin: 0 auto;
    }

    .j-wave_credit_area {
        width: 100%;
    }
    
    li.j-wave_logo {
        text-align: center;
    }
    
    li.j-wave_logo img {
        clear: both;
        width: 250px;
    }
    
    li.j-wave_credit {
        clear: both;
        width: 100%;
        padding: 10px 0 0 0;
        font-size: 10px;
        text-align: center;
    }

}


/* =========================================================
	media queries for tablet
========================================================= */
@media only screen and (max-width: 1024px){
.pc {display: none;}
.pc_tablet {display: block;}
.tablet_sp {display: block;}
.tablet {display: block;}
.sp {display: none;}
a:hover img{
    opacity: 1.0;
    -moz-opacity: 1.0;
    filter: alpha(opacity=100);
}
}

/* =========================================================
	media queries for smartphone
========================================================= */
@media only screen and (max-width : 599px){
.pc {display: none;}
.pc_tablet {display: none;}
.tablet_sp {display: block;}
.tablet {display: none;}
.sp {display: block;}
}