@charset "UTF-8";
@import url('reset.css');
@import url('message.css');
@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:wght@400;600;700&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200;400;700&family=Oswald:wght@200..700&display=swap');

/* =========================================================
    basic style
========================================================= */
*,
*:before,
*:after {
    box-sizing: inherit;
}

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

body {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #fff;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.8;
    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;
    color: #695217;
    letter-spacing: 1px;
    animation: fadeIn 0s ease 4s 1 normal;
    -webkit-animation: fadeIn_all 4s ease 0s 1 normal;
}

@media only screen and (max-width : 599px) {
    body {
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 1.6;
    }
}

body.page-message {
    animation: fadeIn 0s ease 0s 1 normal;
    -webkit-animation: fadeIn_all 0s ease 0s 1 normal;
}

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

.pc{
    display: block;
}
    @media only screen and (max-width: 743px){
        .pc {
            display: none;
        }
    }
    @media only screen and (max-width : 599px){
        .pc {
            display: none;
        }
    }


.pc_tablet{
    display: block;
}
    @media only screen and (max-width: 743px){
        .pc_tablet {
            display: block;
        }
    }
    @media only screen and (max-width : 599px){
        .pc_tablet {
            display: none;
        }
    }

.tablet_sp {
    display: none;
}
    @media only screen and (max-width: 743px){
        .tablet_sp {
            display: block;
        }
    }
    @media only screen and (max-width : 599px){
        .tablet_sp {
            display: block;
        }
    }

.tablet {
    display: none;
}
    @media only screen and (max-width: 1024px){
        .tablet {
            display: block;
        }
    }
    @media only screen and (max-width : 599px){
        .tablet {
            display: none;
        }
    }

.sp {
    display: none;
}
    @media only screen and (max-width: 1024px){
        .sp {
            display: none;
        }
    }
    @media only screen and (max-width : 599px){
        .sp {
            display: block;
        }
    }

ul{
    margin: 0;
    padding: 0;
}

p {
    margin: 1.4rem 0;
    text-align: justify;
    font-weight: 400;
}
    @media only screen and (max-width : 599px) {
        p {
            margin: 1.0rem 0;
        }
    }

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:  #c00;
    text-decoration: underline
}

a:visited {
    color:  #c00;
}

a:hover {
    color:  #d23c3c;
    text-decoration: none
}

a:active {
    color:  #cc4700;
}

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;
}

/********** img **********/
img {
    width: 100%;
    margin: 0;
    border: 0;
}

a img {
    margin: 0;
    border: 0;
}

/********** margin **********/
.space_0 {
    margin: 0 !important;
}

.space_1 {
    margin: 0 0.5rem 0 0;
}

.space_2 {
    margin: 0 1.0rem 0 0;
}

.space_3 {
    margin: 0 2.0rem 0 0;
}

.margin-top-60px {
    margin: 60px 0 0;
}

.margin-bottom-30px {
    margin: 0 0 30px;
}

.margin-bottom-50px {
    margin: 0 0 50px;
}

.margin-bottom-100px {
    margin: 0 0 100px;
}

/********** text **********/
.text-xs {
    font-size: 1.2rem !important;
}

.text-s {
    font-size: 1.4rem !important;
}

.text-m {
    font-size: 1.8rem !important;
}

.text-l {
    font-size: 2.2rem !important;
}

.text-xl {
    font-size: 3.2rem !important;
}

.text12{
    font-size: 1.2rem !important;
}

.text14 {
    font-size: 1.4rem !important;
}

.text16 {
    font-size: 1.6rem !important;
}

.text-center {
    text-align: center !important;
}

.text-left {
    text-align: left !important;
}

.text-white {
    color: #fff !important;
}

.text-green01 {
    color: #004913 !important;
}

.text-yellow__underline {
    background: linear-gradient(transparent 70%, #f9f92d 0%);
}

.position-relative {
    position: relative;
}

/********** structure **********/
.container {
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

main {
    padding: 0;
    background: #fff;
}

/********** header **********/
header {
    position: relative;
    width: 100%;
    height: calc(90vh - 80px);
    min-height: 750px;
    margin: 0 auto 50px;
    padding: 0;
    background-size: cover;
    background-image: url(../img/header_bg.jpg);
    background-repeat: no-repeat;
    background-color: #6DB8BA;
    background-position: center bottom;
}
    @media only screen and (max-width : 849px) {
        header {
            height: 80vh;
            min-height: 560px;
        }
    }
    @media only screen and (max-width : 599px) {
        header {
            height: 70vh;
            min-height: 600px;
            margin: 0 auto;
        }
    }

header.header-mini {
    height: 300px;
    min-height: 300px;
    margin: 0 auto;
}
    @media only screen and (max-width : 849px) {
        header.header-mini {
            height: 250px;
            min-height: 250px;
        }
    }
    @media only screen and (max-width : 599px) {
        header.header-mini {
            height: 200px;
            min-height: 200px;
        }
    }

.header-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit- transform: translateY(-50%) translateX(-50%);
    width: 90%;
    max-width: 1150px;
}
    @media only screen and (max-width : 849px) {
        .header-inner {
            width: 100%;
        }
    }

h1 {
    display: inline-block;
    overflow: hidden; 
    width: 100%;
    max-width: 1000px;
    height: auto;
    aspect-ratio: 800 / 297;
    margin: 0 auto;
    background-image: url("../img/title.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    text-indent: 100%;
    mix-blend-mode: normal;
    white-space: nowrap;
    z-index: 200;
}

header.header-mini h1 {
    width: 650px;
}
    @media only screen and (max-width : 849px) {
        header.header-mini h1 {
            width: 80%;
            min-width: 600px;
        }
    }
    @media only screen and (max-width : 599px) {
        header.header-mini h1 {
            width: 90%;
            min-width: 300px;
        }
    }


/* ----- navigator ----- */
.navigator-area {
    margin: 10px auto 0;
    width: 400px;
    height: 250px;
    overflow:	hidden;
}
@media only screen and (max-width : 849px) {
    .navigator-area {
        top: 70%;
        width: 400px;
        height: 270px;
    }
}
@media only screen and (max-width : 599px) {
    .navigator-area {
        top: 60%;
        width: 320px;
        height: 220px;
    }
}

.navigator-area__title {
    display: inline-block;
    margin: 0 auto 20px;
    padding: 0.4rem 1.2rem 0.4rem 1.8rem;
    color: #027d77;
    text-align: center;
    font-size: 1.4rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    letter-spacing: 5px;
    background: #fff;
    /* -moz-border-radius:	10px;
    -webkit-border-radius:	10px;
    border-radius:	10px; */
    opacity: 0.9;
}

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

.navigator-area__list .cast__item {
    overflow:	hidden;
    flex-basis:	40%;
    text-align:	center;
}

.navigator-area__list .cast__image {
    box-sizing:	border-box;
    width:	100%;
    height:	auto;
    margin:	0 0 5px 0;
}

.navigator-area__list .navigator-area__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;
    opacity: 0.8;
}

.navigator-area__list a {
        color: #fff;
        text-decoration: none;
}

.navigator-area__list a:hover img {
    opacity: 1.0;
    -moz-opacity: 1.0;
    filter: alpha(opacity=100);
}


/********** contents**********/
.area-contents {
    overflow: hidden;
    width: 100%;
    margin: 0 auto 50px;
    padding: 20px 0;
}
    @media only screen and (max-width : 599px) {
        .area-contents {
            margin: 0 auto;
            padding: 30px 0;
        }
    }

.area-contents__inner {
    overflow: hidden;
    width: 95%;
    max-width: 840px;
    margin: 0 auto;
    padding: 10px 0 20px;
    z-index: 400;
}
    @media only screen and (max-width : 599px) {
        .area-contents__inner {
            width: calc(100% - 12px * 2);
            margin: 0 auto;
            padding: 5px 0 10px;
        }
    }

.border-green {
    border-top: 18px solid #6DB8BA;
    border-bottom: 18px solid #6DB8BA;
}
    @media only screen and (max-width : 599px) {
        .border-green {
            border-top: 12px solid #6DB8BA;
            border-bottom: 12px solid #6DB8BA;
        }
    }


/********** headline **********/
h2.heading {
    margin: 0 auto 60px;
    text-align: center;
    width: 100%;
    max-width: 700px;
    height: auto;
}
    @media only screen and (max-width : 599px) {
        h2.heading {
            margin: 0 auto 30px;
        }
    }

h2.heading__line {
    display: inline-block;
    margin: 0 auto 50px;
    font-size: 3.2rem;
    font-family: "dnp-shuei-mgothic-std", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-feature-settings: "palt";
    letter-spacing: 2px;
    line-height: 1.6;
}
@media only screen and (max-width : 849px) {
    h2.heading__line {
        font-size: 2.4rem;
    }
}
    @media only screen and (max-width : 599px) {
        h2.heading__line {
            width: 95%;
            margin: 0 auto 20px;
            text-align: left;
            font-weight: 600;
            font-size: 2.0rem;
            line-height: 1.4;
        }
    }

.heading__line--yellow {
    padding: 0 1.2rem;
    background: linear-gradient(transparent 65%, #f9f92d 0%);
}

h3.sub-heading {
    margin: 0 auto 1.6rem;
    font-size: 1.8rem;
    font-family: "dnp-shuei-mgothic-std", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-feature-settings: "palt";
    letter-spacing: 4px;
    line-height: 2.0;
}
@media only screen and (max-width : 849px) {
    h3.sub-heading {
        text-align: left;
        letter-spacing: 2px;
    }
}
    @media only screen and (max-width : 599px) {
        h3.sub-heading {
            font-size: 1.6rem;
            text-align: left;
            letter-spacing: 2px;
        }
    }


/********** Gigya **********/
.jme {
    margin: 60px auto 0;
}
    @media only screen and (max-width : 599px) {
        .jme {
            margin: 20px auto;
        }
    }


/********** report **********/
.area-report {
    width: 100%;
    margin: 0 auto 50px;
    padding: 20px 0;
    background: #e5e5e0;
}
    @media only screen and (max-width : 599px) {
        .area-report {
            margin: 0 auto;
            padding: 10px 0;
        }
    }

.area_report__description {
    width: 100%;
}

.area_report__list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

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

.area_report__term-image {
	box-sizing:	border-box;
	width:	100%;
	height:	auto;
	-moz-border-radius:	100%;
	-webkit-border-radius:	100%;
	border-radius:	100%;
}
    @media only screen and (max-width : 599px) {
        .area_report__term-image {
            width:	65%;
        }
        }

.area_report__cast {
    margin: 15px 0 0;
}

.area_report__position {
    margin: 0 auto;
    font-size: 1.4rem;
    font-family: "dnp-shuei-mgothic-std", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-feature-settings: "palt";
}

.area_report__name {
    margin: 0 auto;
    font-size: 2.0rem;
    font-family: "dnp-shuei-mgothic-std", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-feature-settings: "palt";
    letter-spacing: 1px;
}

.area_report__text {
    width: calc(60% - 50px);
    padding: 0 0 0 50px;
}
    @media only screen and (max-width : 599px) {
        .area_report__text {
            width: 100%;
            padding: 0;
        }
    }

.area_report__text-border {
    margin: 3.0rem 0 0;
    padding: 15px 10px;
    border-top: 1px solid #695217;
    border-bottom: 1px solid #695217;
}
    @media only screen and (max-width : 599px) {
        .area_report__text-border {
            margin: 2.0rem 0 0;
            padding: 0;
            border-top: none;
            border-bottom: none;
        }
    }


/********** area-information **********/
.area-miles {

}

.area-miles__img-back {
    margin: 0;
    background: rgb(117,103,77);
    background: linear-gradient(0deg, rgba(117,103,77,1) 19%, rgba(149,132,100,1) 35%, rgba(175,161,134,1) 49%, rgba(198,179,142,1) 60%, rgba(207,198,174,1) 73%, rgba(254,255,247,1) 95%);
    text-align: center;
}
    @media only screen and (max-width : 599px) {
        .area-miles__img-back {
            margin: 0 0 0px;
        }
    }

.area-miles__img-jal {
    width: 100%;
    max-width: 840px;
    height: auto;
}
  
.area-miles__jmb {
    /* display: inline-block; */
    margin: 50px 0 0;
    padding: 2.0rem 3.0rem;
    background: #9D0808;
    color: #fff;
}
    @media only screen and (max-width : 599px) {
        .area-miles__jmb {
            margin: 20px 0 0;
            padding: 0.5rem 2.0rem;
        }
    }

.area-miles__jmb-text {
    text-align: center;
}
    @media only screen and (max-width : 849px) {
        .area-miles__jmb-text {
            text-align: left;
        }
    }

.area-miles__jmb-link {
    display: inline-block;
    color: #fff;
    line-height: 1.4;
}

.area-miles__notice {
	width: 100%;
	margin: 20px auto;
	padding: 2.0rem 1.0rem;
	font-size: 1.4rem;
	line-height: 1.6;
}
    @media only screen and (max-width : 599px) {
        .area-miles__notice {
            margin: 0 auto;
            padding: 1.0rem 2.0rem 1.0rem 1.4rem;
        }
    }

.area-miles__list {
    list-style-type: square;
}

.area-miles__item {
    margin: 1.2rem 1.0rem;
    padding: 0;
    text-align: left;
}

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

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


/********** live **********/
.area-live {
    overflow: hidden;
    padding: 40px 0 60px;
}
    @media only screen and (max-width : 599px) {
        .area-live {
            padding: 20px 0 0;
        }
    }

.area-live__list {
    width: 100%;
    max-width: 1280px;
    margin: 30px auto 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: flex-start;
	gap:	0 1%;
}
    @media only screen and (max-width : 599px) {
        .area-live__list {
            display: block;
            margin: 0 auto;
        }
    }

.area-live__item {
    position: relative;
	overflow:	hidden;
	flex-basis:	49.5%;
	text-align:	center;
}
@media only screen and (max-width : 599px) {
    .area-live__item {
        flex-basis:	100%;
    }
}

.area-live__image {
    width: 100%;
    height: auto;
    aspect-ratio: 1200 / 703;
}

.area-live__text {
    position: absolute;
    margin: 0 auto;
    bottom: -15px;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
}
@media only screen and (max-width : 849px) {
    .area-live__text {
        bottom: -20px;
    }
}

.area-live__text-time {
    display: inline-block;
    font-size: 1.8rem;
    padding: 0.4rem 1.0rem;
    background: rgba(0,0,0,0.7);
}
@media only screen and (max-width : 849px) {
    .area-live__text-time {
        font-size: 1.6rem;
        padding: 0.2rem 0.8rem;
    }
}

.area-live__text-time span {
    font-size: 1.4rem;
    margin: 0 0 0 4px
}
    @media only screen and (max-width : 849px) {
        .area-live__text-time span {
            font-size: 1.2rem;
            margin: 0 0 0 2px
        }
    }

.area-live__text-name {
    font-size: 2.8rem;
    padding: 0.4rem 2.0rem;
    background: rgba(0,0,0,0.7);
}
    @media only screen and (max-width : 849px) {
        .area-live__text-name {
            font-size: 2.0rem;
        }
    }
    @media only screen and (max-width : 599px) {
        .area-live__text-name {
            font-size: 1.8rem;
        }
    }


/********** button **********/
a.button__top {
    position: relative;
    display: inline-block;
    margin: 40px auto;
    padding: 20px 0 20px;
    width:  70%;
    background: #695F17;
    color: #fff;
    font-size: 2.2rem;
    text-align: center;
    text-decoration: none;
    outline: none;
    transition: ease .2s;
  }
    @media only screen and (max-width: 1279px){
        a.button__top {
            width:  100%;
            margin: 20px auto;
            font-size: 2.0rem;
        }
    }
    @media only screen and (max-width: 599px){
        a.button__top {
            font-size: 1.6rem;
        }
    }

    a.button__top:hover{
    color: #fff;
    background: #7e731b;
  }
  
  a.button__top::after{
    content: '';
    position: absolute;
    top: 42%;
    right: 10%;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    transition: all .3s;
  }
  
  a.button__top:hover::after{
    right: 9%;
  }


/********** button back **********/
a.button__back {
    position: relative;
    display: inline-block;
    margin: 70px auto;
    padding: 10px 0 10px;
    width:  30%;
    max-width: 200px;
    color: #695217;
    font-size: 1.4rem;
    text-align: center;
    text-decoration: none;
    border: 1px solid #695217;
    outline: none;
    transition: ease .2s;
  }
    @media only screen and (max-width: 1279px){
        a.button__back {
            width:  70%;
        }
    }
    @media only screen and (max-width: 599px){
        a.button__back {
            width:  80%;
            max-width: 250px;
        }
    }

a.button__back::after{
    content: '';
    position: absolute;
    top: 42%;
    right: 10%;
    width: 10px;
    height: 10px;
    border-top: 1px solid #695217;
    border-right: 1px solid #695217;
    transform: rotate(45deg);
    transition: all .3s;
  }
  
  a.button__back:hover::after{
    right: 7%;
  }


/********** sub contents **********/
.area-sub-title {
    width: 100%;
    margin: 0 auto 50px;
    padding: 20px 0;
    background: #e5e5e0;
    border-top: 15px solid #1e5554
}
    @media only screen and (max-width : 599px) {
        .area-sub-title {
            border-top: 10px solid #1e5554
        }
    }

.area-sub-title__headline {
    font-size: 2.8rem;
    font-family: "dnp-shuei-mgothic-std", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-feature-settings: "palt";
}
    @media only screen and (max-width : 599px) {
        .area-sub-title__headline {
            font-size: 1.8rem;
        }
    }
å
/********** top banner **********/
.area-banner__top {
    margin: 0 auto 100px;
}
    @media only screen and (max-width : 849px) {
        .area-banner__top {
            margin: 0 auto 100px;
        }
    }
    @media only screen and (max-width : 599px) {
        .area-banner__top {
            margin: 0 auto 50px;
        }
    }

.area-banner__item {
    margin: 0 0 80px;
}
    @media only screen and (max-width : 849px) {
        .area-banner__item {
            margin: 0 0 100px;
        }
    }
    @media only screen and (max-width : 599px) {
        .area-banner__item {
            margin: 0 0 40px;
        }
    }

.area-banner__item:last-child {
    margin: 0;
}

.area-banner__item-banner {
    width: 100%;
    max-width: 400px;
}

.area-banner__item-logo {
    width: 100%;
    max-width: 250px;
}

/********** info card **********/
.area-info {
    overflow: hidden;
    width: 860px;
    margin: 30px auto 0;
}
    @media only screen and (max-width: 1024px){
        .area-info {
            width: calc(100% - 20px * 2);
        }
    }
    @media only screen and (max-width: 599px){
        .area-info {
            width: calc(100% - 5px * 2);
            margin: 0 auto;
        }
    }

.area-info__list {
    display: flex;
    width:100%;
    flex-wrap: wrap;
    justify-content: center;
    align-content: flex-start;
    gap: 20px 20px;
}
    @media only screen and (max-width: 599px){
        .area-info__list {
            gap: 10px 0;
        }
    }

.area-info__item {
    overflow: hidden;
    flex-basis: calc(50% - 40px);
    text-align: center;
    margin: 5px;
    /* border: 1px solid #bababa; */
    -webkit-box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.25);
    border-radius: 6px;
}
    @media only screen and (max-width: 599px){
        .area-info__item {
            flex-basis: 100%;
        }
    }

.area-info__definition-img {
    padding: 10px;
}

.area-info__data {
    padding: 0 0 20px 0;
}
.area-info__data-headline {
    padding: 15px 10px 0;
    /* background: #e5e5e0; */
    font-size: 1.8rem;
    font-family: "dnp-shuei-mgothic-std", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-feature-settings: "palt";
    text-align: center;
    line-height: 1.6;;
}

.area-info__data-text {
    padding: 5px 15px;
    font-size: 1.2rem;
}

a.area-info__data-button {
    padding: 10px 20px;
    background: #ED1C24;
    color: #fff !important;
    font-size: 1.6rem;
    text-decoration: none !important;
    letter-spacing: 2px;
}


/********** guest **********/
.area-guest{
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: flex-start;
    /* gap: 0 10px; */
}

.area-guest__item {
	overflow: hidden;
	flex-basis: 25%;
	text-align: center;
}
    @media only screen and (max-width: 599px){
        .area-guest__item {
            flex-basis: 50%;
            margin: 0 0 20px 0;;
        }
    }

.area-guest__image {
    width: 100%;
    height: auto;
    margin: 0 0 20px 0;;
}
    @media only screen and (max-width: 599px){
        .area-guest__image {
            margin: 0 0 10px 0;;
        }
    }

.area-guest__text {
    font-family: "dnp-shuei-mgothic-std", sans-serif;
    font-weight: 500;
    font-style: normal;
    text-align: center;
    line-height: 1.4;
}
    @media only screen and (max-width : 849px) {
        .area-live__text {
            bottom: -20px;
        }
    }

.area-guest__text--time {
    display: inline-block;
    padding: 0.4rem 1.0rem;
    font-size: 1.2rem;
    font-weight: 500;
    /* background: rgba(0,0,0,0.7); */
}

.area-guest__text--name {
    display: block;
    padding: 0.4rem 1.0rem;
    font-size: 2.2rem;
    letter-spacing: 4px;
}
    @media only screen and (max-width: 849px){
        .area-guest__text--name {
            font-size: 2.0rem;
        }
    }
    @media only screen and (max-width: 599px){
        .area-guest__text--name {
            padding: 0.2rem 0.8rem;
            font-size: 1.8rem;
            letter-spacing: 2px;
        }
    }

.area-guest__text--position {
    display: inline-block;
    padding: 0.4rem 1.0rem;
    font-size: 1.2rem;
    font-weight: 500;
}


/********** mix **********/
.area-mix {
    width: 100%;
    margin: 0 auto 50px;
    padding: 0 0 30px;
    background: #e5e5e0;
}
    @media only screen and (max-width : 599px) {
        .area-mix {
            margin: 0 auto;
            padding: 0 0 20px;
        }
    }

.area-mix__item {
    margin: 0 0 30px;
    background: rgb(64,94,105);
    background: linear-gradient(0deg, rgba(64,94,105,1) 0%, rgba(93,129,149,1) 18%, rgba(75,151,177,1) 52%, rgba(62,155,157,1) 74%, rgba(99,121,135,1) 97%);
}
    @media only screen and (max-width: 599px){
        .area-mix__item {
            margin: 0 0 30px;
        }
    }

.area-mix__image {
    width: 100%;
    max-width: 960px;
    height: auto;
}


/********** footer **********/
footer {
	overflow: hidden;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
	padding: 50px 0 0;
}

.footer_bottom {
	display: flex;
	margin: 0 auto 200px auto;
}
    @media only screen and (max-width: 1279px){
        .footer_bottom {
            width: 95%;
        }
    }
	@media only screen and (max-width: 1024px){
		.footer_bottom {
			width: 90%;
		}
	}

	@media only screen and (max-width : 599px){
		.footer_bottom {
			display: block;
			margin: 0 auto 70px auto;
		}
		
	}

.footer_bottom .gotohome{
	width: 100px;
}
	@media only screen and (max-width : 599px){
		.footer_bottom .gotohome{
			width: 100%;
			margin: 0 0 35px 0;
			text-align: center;
		}
	}

.footer_bottom .gotohome img{
	width: 100%;
	height: auto;
}
	@media only screen and (max-width : 599px){
		.footer_bottom .gotohome img{
			width: 30%;
			max-width: 200px;
		}
	}

.footer_bottom .j-wave_credit{
	width: calc(100% - 100px);
	text-align: right;
}
	@media only screen and (max-width : 599px){
		.footer_bottom .j-wave_credit{
			width: 100%;
			text-align: center;
		}
		
	}


.footer_bottom .j-wave_credit img{
	width: 200px;
	height: auto;
	margin: 0 0 10px;
}
	@media only screen and (max-width : 599px){
		.footer_bottom .j-wave_credit img{
			width: 60%;
			max-width: 400px;
		}
	}

.footer_bottom .j-wave_credit span{
	display: block;
    color: #000;
	font-size: 8px;
}