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

/* =========================================================
	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: #000;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.8;
    color: #fff;
    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 {display: none;}
.tablet_sp {display: none;}
.sp {display: none;}
@media only screen and (max-width : 899px) {
    .pc {display: none;}
    .pc_tablet {display: block;}
    .tablet {display: block;}
    .tablet_sp {display: block;}
    .sp {display: none;}
}
@media only screen and (max-width : 589px) {
    .pc {display: none;}
    .pc_tablet {display: none;}
    .tablet {display: none;}
    .tablet_sp {display: block;}
    .sp {display: block;}
}

/* ----- anchor ----- */
a {
	overflow: hidden;
	outline: none;
	border: none;
	-webkit-transition: 0.5s ease-in-out;
	-moz-transition: 0.5s ease-in-out;
	-o-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
}
a:focus {outline: none;}
a:link {color: #ffee04;text-decoration: none;}
a:visited {color: #ffee04;text-decoration: none;}
a:hover {color: #dde867;text-decoration: none;}
a:active {color: #e98401;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.5s ease-in-out;
	-moz-transition: 0.5s ease-in-out;
	-o-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
}

@media only screen and (max-width : 589px) {
    a:hover img{
        opacity: 1.0;
        -moz-opacity: 1.0;
        filter: alpha(opacity=100);
    }
}


/* ----- text ----- */
p {
    margin: 1.8rem auto;
    font-size: 1.4rem;
    text-align: left;
}
.text-12 {font-size: 1.2rem;}
.text-14 {font-size: 1.4rem;}
.text-16 {font-size: 1.6rem;}
.text-18 {font-size: 1.8rem;}
.text-22 {
    font-size: 2.2rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
}
.align-right{ text-align: right !important;}
.align-center {text-align: center !important;}
.align-left {text-align: left !important;}

/* ----- margin top ----- */
.margin-top15 {margin: 15px 0 0 0;}
.margin-top25 {margin: 25px 0 0 0;}
.margin-top50 {margin: 50px 0 0 0;}
.margin-top100 {margin: 100px 0 0 0;}
.margin-top150 {margin: 150px 0 0 0;}

/* ----- margin bottom ----- */
.margin-bottom15 {margin: 0 0 15px 0;}
.margin-bottom25 {margin: 0 0 25px 0;}
.margin-bottom50 {margin: 0 0 50px 0;}
.margin-bottom100 {margin: 0 0 100px 0;}
.margin-bottom150 {margin: 0 0 150px 0;}


/* ----- 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;
    width: 100%;
    max-width: 1920px;
    height: 600px;
    margin: 0 auto 50px;
    padding: 0 0 70px 0;
    background: url(../img/header__img--main.jpg) no-repeat;
    background-size: cover;
    background-position: right center;
}

@media only screen and (max-width : 589px) {
    .header {
        height: 70vh;
        margin: 0 0 50px;
        background: url(../img/header__img--sp.jpg) no-repeat;
        background-size: cover;
        background-position: left center;
    }
}

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

@media only screen and (max-width : 589px) {
    .header:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 70px;
        background: url(../img/header__img--bottom.svg) bottom center no-repeat;
        background-size: auto 100%;
        background-repeat: repeat-x;
        z-index: 2;
    }
    
}

.header__wrapper-title {
    position: absolute;
    display: block;
    top: 30%;
    left: 50%;
    width: 600px;
    height: 102px;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    background: url(../img/header__logo.png) no-repeat;
    background-size: 100%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

@media only screen and (max-width : 899px) {
    .header__wrapper-title {
        top: 30%;
        left: 50%;
        width: 500px;
        height: 85px;
    }    
}

@media only screen and (max-width : 589px) {
    .header__wrapper-title {
        top: 30%;
        width: 350px;
        height: 60px;
    }    
}

.header__time {
    position: absolute;
    top: 45%;
    left: 50%;
    width: 90%;
    text-align: center;
    transform: translate(-50%, -50%);
}

@media only screen and (max-width : 589px) {
    .header__time {
        top: 40%;
        left: 50%;
    }
}

.header__time--inner{
    font-size: 3.8rem;
    font-family: 'Crimson Text', serif;
    font-feature-settings: "palt";
    line-height: 1.2;
    text-shadow: 0px 0px 6px #000;
}

@media only screen and (max-width : 899px) {
    .header__time--inner{
        font-size: 2.8rem;
    }
}

@media only screen and (max-width : 589px) {
    .header__time--inner{
        font-size: 2.2rem;
    }
}

.header__button {
    position: absolute;
    top: 68%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media only screen and (max-width : 589px) {
    .header__button {
        top: 65%;
    }
}

a.header__button-link {
    position: relative;
    display: block;
    padding: 10px 30px 10px 50px;
    color: #fff;
    font-size: 2.0rem;
    font-family: 'Crimson Text', serif;
    font-feature-settings: "palt";
    line-height: 1.2;
    transition: 0.5s ease-in-out;
}

@media only screen and (max-width : 589px) {
    a.header__button-link {
        position: relative;
        display: block;
        padding: 10px 30px 5px 50px;
        font-size: 1.8rem;

    }
}

a.header__button-link:before {
    content:"";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    left: 0;
    transition: 0.5s;
    background: linear-gradient(180deg, rgba(106,13,13,1) 0%, rgba(164,13,13,1) 100%);
}

a.header__button-link:after {
    content:"";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -2;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(157,9,9,1) 0%, rgba(210,27,27,1) 100%);
}

a:hover.header__button-link:before {
    opacity:0;
}

a.header__button-link span:before {
    position:absolute;
    display:inline-block;
    content:"";
    width: 15px;
    height: 20px;
    background: #fff;
    height: calc(tan(60deg) * 10px / 2);
    width: 10px;
    top: calc(50% - 5px);
    left: 25px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}



/* =========================================================
	2. Header - common
========================================================= */
.header-common {
    position: relative;
    width: 100%;
    max-width: 1920px;
    height: 400px;
    margin: 0 auto 50px;
    padding: 0 0 70px 0;
    background: url(../img/header__img--main.jpg) no-repeat;
    background-size: cover;
    background-position: right center;
}

@media only screen and (max-width : 589px) {
    .header-common{
        height: 40vh;
        margin: 0 0 20px;
        background: url(../img/header__img--sp.jpg) no-repeat;
        background-size: cover;
        background-position: left center;
    }
}

.header-common:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: url(../img/header__img--bottom.svg) bottom center no-repeat;
    background-size: auto 100%;
    background-repeat: repeat-x;
    z-index: 2;
}

.header-common .header__wrapper-title {
    position: absolute;
    display: block;
    top: 25%;
    left: 50%;
}

@media only screen and (max-width : 899px) {
    .header-common .header__wrapper-title {
        top: 25%;
        left: 50%;
    }    
}

@media only screen and (max-width : 589px) {
    .header-common .header__wrapper-title {
        top: 25%;
    }    
}

.header-common .header__time {
    position: absolute;
    top: 45%;
    left: 50%;
    width: 90%;
}

@media only screen and (max-width : 589px) {
    .header-common .header__time {
        top: 42%;
        left: 50%;
    }
}

.header-common .header__time--inner{
    font-size: 3.8rem;
}

@media only screen and (max-width : 899px) {
    .header-common .header__time--inner{
        font-size: 3.0rem;
    }
}

@media only screen and (max-width : 589px) {
    .header-common .header__time--inner{
        font-size: 2.2rem;
    }
}

.header-common .header__button {
    top: 66%;
}

@media only screen and (max-width : 589px) {
    .header-common .header__button {
        top: 62%;
    }
}


/* =========================================================
	3. Contents - common
========================================================= */

/* ----- Gigya ----- */
#jme {
    display: inline-block;
    margin: 0 auto 70px;
    padding: 15px 20px;
    background: #fff;
    -moz-border-radius: 40px;
    -webkit-border-radius: 40px;
    border-radius: 40px;
}

@media only screen and (max-width : 599px) {
        #jme {
            width: 90%;
            margin: 0 auto 50px;
            padding: 15px 20px;
        }
}


/* ----- contents ----- */

.area-inner {
    overflow: hidden;
    width: 95%;
    max-width: 900px;
    margin: 0 auto 150px;
}

@media only screen and (max-width : 589px) {
    .area-inner {
        margin: 0 auto 50px;
    }
}


/* ----- button-back  ----- */

.area-page__button-back {
    display: block;
    width: 300px;
    margin: 0 auto 150px;
    color: #fff;
    border: 1px solid  #fff;
}

@media only screen and (max-width : 589px) {
    .area-page__button-back {
        width: 200px;
        margin: 0 auto 10px;
    }
}

.area-page__button-back a {
    color: #fff;
}

.area-page__button-back a:hover {
    opacity: 0.7;
}

@media only screen and (max-width : 589px) {
    .area-page__button-back a:hover {
        opacity: 1.0;
    }
}

.area-page__button-back-link {
    position: relative;
    display: block;
    padding: 10px 30px 10px 50px;
    color: #fff;
    font-size: 1.8rem;
    font-family: 'Noto Serif JP', serif;
    font-weight: 400;
    font-feature-settings: "palt";
    transition: 0.5s ease-in-out;
}

@media only screen and (max-width : 589px) {
    .area-page__button-back-link {
        font-size: 1.6rem;
    }
    
}

a.area-page__button-back-link span:before {
    position:absolute;
    display:inline-block;
    content:"";
    width: 15px;
    height: 20px;
    background: #fff;
    height: calc(tan(60deg) * 10px / 2);
    width: 10px;
    top: calc(50% - 5px);
    left: 25px;
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
}



/* =========================================================
	3. Top Page
========================================================= */

/* -----  top - on air infomation ----- */

.area-onair__heading {
    display: flex;
    margin: 0 0 50px;
    align-items: center;
    justify-content: center;
    font-size: 3.0rem;
    font-family: 'Crimson Text', serif;
}

@media only screen and (max-width : 589px) {
    .area-onair__heading {
        margin: 0 0 30px;
        font-size: 1.8rem;
    }
}

.area-onair__heading:before, .area-onair__heading:after {
    border-top: 1px solid;
    content: "";
    width: 50px;
}

@media only screen and (max-width : 589px) {
    .area-onair__heading:before, .area-onair__heading:after {
        width: 30px;
    }
}

.area-onair__heading:before {
    margin-right: 2rem;
}

@media only screen and (max-width : 589px) {
    .area-onair__heading:before {
        margin-right: 1rem;
    }
}

.area-onair__heading:after {
    margin-left: 2rem;
}

@media only screen and (max-width : 589px) {
    .area-onair__heading:after {
        margin-left: 1rem;
    }
}


/* ----- top - on air archive ----- */

.area-archive__heading {
    margin: 0 0 30px;
    font-size: 5.0rem;
    font-family: 'Crimson Text', serif;
}

@media only screen and (max-width : 589px) {
    .area-archive__heading {
        margin: 0 0 20px;
        font-size: 3.0rem;
    }
}

.area-archive__button {
    display: inline-block;
    margin: 0 auto 20px;
    color: #fff;
}

@media only screen and (max-width : 589px) {
    .area-archive__button {
        margin: 0 auto 10px;
    }
}

.area-archive__button a {
    color: #fff;
}

.area-archive__button-link {
    position: relative;
    display: block;
    padding: 10px 30px 10px 50px;
    color: #fff;
    font-size: 2.0rem;
    font-family: 'Noto Serif JP', serif;
    font-weight: 400;
    font-feature-settings: "palt";
    transition: 0.5s ease-in-out;
}

@media only screen and (max-width : 589px) {
    .area-archive__button-link {
        font-size: 1.6rem;
    }
    
}

a.area-archive__button-link:before {
    content:"";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    left: 0;
    transition: 0.5s;
    background: linear-gradient(180deg, rgba(106,13,13,1) 0%, rgba(164,13,13,1) 100%);
}

a.area-archive__button-link:after {
    content:"";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -2;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(157,9,9,1) 0%, rgba(210,27,27,1) 100%);
}

a:hover.area-archive__button-link:before {
    opacity:0;
}

a.area-archive__button-link span:before {
    position:absolute;
    display:inline-block;
    content:"";
    width: 15px;
    height: 20px;
    background: #fff;
    height: calc(tan(60deg) * 10px / 2);
    width: 10px;
    top: calc(50% - 7px);
    left: 25px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

/* ----- top - banner ----- */

.area-banner {
    width: 100%;
    margin: 0;
    padding: 50px 0;
    background: #fff;
}

@media only screen and (max-width : 589px) {
    .area-banner {
        padding: 30px 0;
    }
}

.area-banner__image {
    width: 200px;
    height: auto;
    margin: 0 auto;
}

@media only screen and (max-width : 589px) {
    .area-banner__image {
        width: 150px;
    }
}


/* ----- top - sns ----- */

.area-sns {
    background: url(../img/sns__img-bg.jpg) no-repeat center center;
    background-size: 100% auto;
}

@media only screen and (max-width : 589px) {
    .area-sns {
        background-size: cover;
    }
}

.area-sns-inner {
    overflow: hidden;
    width: 95%;
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 0 0;
}

@media only screen and (max-width : 589px) {
    .area-sns-inner {
        padding: 50px 0 0;
    }
}

.area-sns__heading {
    margin: 0 0 30px;
    font-size: 5.0rem;
    font-family: 'Crimson Text', serif;
}

@media only screen and (max-width : 589px) {
    .area-sns__heading {
        margin: 0 0 20px;
        font-size: 3.0rem;
    }
}

.area-sns__timeline {
    overflow: scroll;
    width: 90%;
    max-width: 700px;
    height: 600px;
    margin: 0 auto 100px;
}

@media only screen and (max-width : 589px) {
    .area-sns__timeline {
        height: 700px;
        margin: 0 auto 50px;
    }
}


/* ----- top - about program ----- */

.area-about {
    position: relative;
    background: #A40D0D;
    color: #fff;
    margin: 0 0 100px;
    padding: 100px 0;
}

@media only screen and (max-width : 589px) {
    .area-about {
        margin: 0 0 60px;
        padding: 60px 0;
    }
}

.area-about:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: #000 url(../img/about-area__img-bg.svg) top center no-repeat;
    background-size: auto 100%;
    background-repeat: repeat-x;
    z-index: 2;
}

.area-about:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: #000 url(../img/about-area__img-bg.svg) bottom center no-repeat;
    background-size: auto 100%;
    background-repeat: repeat-x;
    z-index: 2;
    transform: rotate(180deg);
}

.area-about-inner {
    overflow: hidden;
    width: 95%;
    max-width: 760px;
    margin: 0 auto;
}

.area-about__heading {
    display: flex;
    margin: 0 0 50px;
    align-items: center;
    justify-content: center;
    font-size: 3.0rem;
    font-family: 'Crimson Text', serif;
}

@media only screen and (max-width : 589px) {
    .area-about__heading {
        margin: 0 0 30px;
        font-size: 2.4rem;
    }
}

.area-about__heading:before, .area-about__heading:after {
    border-top: 1px solid;
    content: "";
    width: 50px;
}

@media only screen and (max-width : 589px) {
    .area-about__heading:before,
    .area-about__heading:after {
        width: 30px;
    }
}

.area-about__heading:before {
    margin-right: 2rem;
}

@media only screen and (max-width : 589px) {
    .area-about__heading:before {
        margin-right: 1rem;
    }
}

.area-about__heading:after {
    margin-left: 2rem;
}

@media only screen and (max-width : 589px) {
    .area-about__heading:after {
        margin-left: 1rem;
    }
}

.area-inner__explain-text {
    text-align: left;
}

.area-inner__explain {
    width: 100%;
    margin: 0 auto;
}

@media only screen and (max-width : 589px) {
    .area-inner__explain {
        width: 95%;
    }
}

@media only screen and (max-width : 589px) {
    .area-inner__explain-text {
        font-size: 1.4rem;
        text-align: justify;
    }
}

.area-about__photo {
    width: 300px;
    height: 300px;
    margin: 0 auto 50px;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}


/* =========================================================
	4. Page - ON AIR ARCHIVE
========================================================= */

.area-page-archive__heading {
    display: flex;
    margin: 0 0 50px;
    align-items: center;
    justify-content: center;
    font-size: 3.0rem;
    font-family: 'Crimson Text', serif;
}

@media only screen and (max-width : 589px) {
    .area-page-archive__heading {
        margin: 0 0 30px;
        font-size: 1.8rem;
    }
}

.area-page-archive__heading:before,
.area-page-archive__heading:after {
    border-top: 1px solid;
    content: "";
    width: 50px;
}

@media only screen and (max-width : 589px) {
    .area-page-archive__heading:before,
    .area-page-archive__heading:after {
        width: 30px;
    }
}

.area-page-archive__heading:before {
    margin-right: 2rem;
}

@media only screen and (max-width : 589px) {
    .area-page-archive__heading:before {
        margin-right: 1rem;
    }
}

.area-page-archive__heading:after {
    margin-left: 2rem;
}

@media only screen and (max-width : 589px) {
    .area-page-archive__heading:after {
        margin-left: 1rem;
    }
}

.area-page-archive__date {
    display: block;
    margin: 0 0 10px;
    font-size: 1.6rem;
    font-family: 'Noto Serif JP', serif;
    font-weight: 400;
    text-align: left;
}

@media only screen and (max-width : 589px) {
    .area-page-archive__date {
        font-size: 1.4rem;
        font-family: 'Noto Serif JP', serif;
    }
    
}

.area-page-archive__title {
    margin: 0 0 30px;
    font-size: 1.8rem;
    font-family: 'Noto Serif JP', serif;
    font-weight: 400;
    text-align: left;
    line-height: 1.4;
}

.area-page-archive__image img {
    width: 100%;
    max-width: 900px;
    margin: 2.0rem auto 2.0rem;
}

.area-page-archive__button {
    display: inline-block;
    width: 300px;
    margin: 0 auto 50px;
}

@media only screen and (max-width : 589px) {
    .area-page-archive__button {
        margin: 0 auto 50px;
    }
}

.area-page-archive__button a {
    color: #fff;
}

.area-page-archive__button-link {
    position: relative;
    display: block;
    padding: 10px 30px 10px 50px;
    color: #fff;
    font-size: 2.0rem;
    font-family: 'Noto Serif JP', serif;
    font-weight: 400;
    font-feature-settings: "palt";
    transition: 0.5s ease-in-out;
}

@media only screen and (max-width : 589px) {
    .area-page-archive__button-link {
        font-size: 1.6rem;
    }
    
}

a.area-page-archive__button-link:before {
    content:"";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    left: 0;
    transition: 0.5s;
    background: linear-gradient(180deg, rgba(106,13,13,1) 0%, rgba(164,13,13,1) 100%);
}

a.area-page-archive__button-link:after {
    content:"";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -2;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(157,9,9,1) 0%, rgba(210,27,27,1) 100%);
}

a:hover.area-page-archive__button-link:before {
    opacity:0;
}

a.area-page-archive__button-link span:before {
    position:absolute;
    display:inline-block;
    content:"";
    width: 15px;
    height: 20px;
    background: #fff;
    height: calc(tan(60deg) * 10px / 2);
    width: 10px;
    top: calc(50% - 5px);
    left: 25px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}


/* =========================================================
	5. Page - ON AIR ARCHIVE LIST
========================================================= */

.area-page-archive-list__heading {
    display: flex;
    margin: 0 0 50px;
    align-items: center;
    justify-content: center;
    font-size: 3.0rem;
    font-family: 'Crimson Text', serif;
}

@media only screen and (max-width : 589px) {
    .area-page-archive-list__heading {
        margin: 0 0 30px;
        font-size: 1.8rem;
    }
}

.area-page-archive-list__heading:before,
.area-page-archive-list__heading:after {
    border-top: 1px solid;
    content: "";
    width: 50px;
}

@media only screen and (max-width : 589px) {
    .area-page-archive-list__heading:before,
    .area-page-archive-list__heading:after {
        width: 30px;
    }
}

.area-page-archive-list__heading:before {
    margin-right: 2rem;
}

@media only screen and (max-width : 589px) {
    .area-page-archive-list__heading:before {
        margin-right: 1rem;
    }
}

.area-page-archive-list__heading:after {
    margin-left: 2rem;
}

@media only screen and (max-width : 589px) {
    .area-page-archive-list__heading:after {
        margin-left: 1rem;
    }
}


/* ----- list ----- */

.area-page-archive-card {
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    margin: 0 0 40px;
    padding: 0 0 40px;
    border-bottom: 1px solid #fff;
}

.area-page-archive-card:first-child {
    padding: 40px 0;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.area-page-archive-card__image {
    width: 200px;
    margin: 0 0 10px 0;
}

@media only screen and (max-width : 899px) {
    .area-page-archive-card__image {
        width: 100%;
    }
}

.area-page-archive-card__image img{
    width: 100%;
    height: auto;
}

@media only screen and (max-width : 899px) {
    .area-page-archive-card__image img{
        width: 70%;
        text-align: center;
    }
}

@media only screen and (max-width : 589px) {
    .area-page-archive-card__image img{
        width: 100%;
    }
}

.area-page-archive-card__text {
    width: 700px;
    padding: 0 0 0 30px;
}

@media only screen and (max-width : 899px) {
    .area-page-archive-card__text {
        width: 100%;
        padding: 20px 0 0;
    }
}

.area-page-archive-card__text-date {
    display: block;
    font-family: 'Noto Serif JP', serif;
    font-weight: 400;
    font-size: 1.4rem;
    margin: 0 0 0.6rem;
    text-align: left;
}

@media only screen and (max-width : 589px) {
    .area-page-archive-card__text-date {
        font-size: 1.2rem;
    }
}

.area-page-archive-card__text-heading {
    font-family: 'Noto Serif JP', serif;
    font-weight: 400;
    font-size: 2.0rem;
    margin: 0 0 2.0rem;
    text-align: left;
}

@media only screen and (max-width : 589px) {
    .area-page-archive-card__text-heading {
        font-size: 1.6rem;
    }
}

.area-page-archive-card__text-caption {
    font-size: 1.4rem;
    text-align: left;
}

.area-page-archive-card__button {
    display: inline-block;
    float: left;
    margin: 2.0rem 0 0 0;
}

@media only screen and (max-width : 589px) {
    .area-page-archive-card__button {
        float: none;
    }
    
}

.area-page-archive-card__button a {
    color: #fff;
}

.area-page-archive-card__button-link {
    position: relative;
    display: block;
    padding: 5px 30px;
    color: #fff;
    font-size: 1.4rem;
    font-feature-settings: "palt";
    transition: 0.5s ease-in-out;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    border-radius: 20px;
}

a.area-page-archive-card__button-link:before {
    content:"";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    left: 0;
    transition: 0.5s;
    background: linear-gradient(180deg, rgba(106,13,13,1) 0%, rgba(164,13,13,1) 100%);
}

a.area-page-archive-card__button-link:after {
    content:"";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -2;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(157,9,9,1) 0%, rgba(210,27,27,1) 100%);
}

a:hover.area-page-archive-card__button-link:before {
    opacity:0;
}



/* =========================================================
	6. Message
========================================================= */

.area-page-message__heading {
    display: flex;
    margin: 0 0 50px;
    align-items: center;
    justify-content: center;
    font-size: 3.0rem;
    font-family: 'Crimson Text', serif;
}

@media only screen and (max-width : 589px) {
    .area-page-message__heading {
        margin: 0 0 30px;
        font-size: 1.8rem;
    }
}

.area-page-message__heading:before,
.area-page-message__heading:after {
    border-top: 1px solid;
    content: "";
    width: 50px;
}

@media only screen and (max-width : 589px) {
    .area-page-message__heading:before,
    .area-page-message__heading:after {
        width: 30px;
    }
}

.area-page-message__heading:before {
    margin-right: 2rem;
}

@media only screen and (max-width : 589px) {
    .area-page-message__heading:before {
        margin-right: 1rem;
    }
}

.area-page-message__heading:after {
    margin-left: 2rem;
}

@media only screen and (max-width : 589px) {
    .area-page-message__heading:after {
        margin-left: 1rem;
    }
}


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

@media only screen and (max-width : 599px) {
    footer {
        padding: 40px 0 0;
    }
}

.footer_bottom {
	display: flex;
    overflow: hidden;
	width: 1000px;
	max-width: calc(100% - 100px*2);
	margin: 0 auto 200px 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 only screen and (max-width : 589px) {
    .footer_bottom {
        margin: 0 auto 50px auto;
    }
    .footer_bottom .gotohome img{
        width: 30%;
        max-width: 100px;
        margin: 0 auto;
    }
    li.j-wave_logo img {
        clear: both;
        width: 50%;
    }
}
