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

/* =========================================================
	basic style
========================================================= */
*,
*: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-color: #f9f6ef;
	background-image: url(../img/header.jpg);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
    background-attachment: fixed;
    background-attachment: -webkit-fixed;
	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: #343434;
}
	@media only screen and (max-width: 1024px){
		body {
			background-image: url(../img/header_tablet.jpg);
			background-size: 100% auto;
		}
	}
	@media only screen and (max-width: 959px){
		body {
			background-image: url(../img/header_tablet.jpg);
		}
	}
	@media only screen and (max-width: 499px){
		body {
			background-image: url(../img/header_sp.jpg);
		}
	}

body.page-message {
	background-size: 100%;
}

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


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

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

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

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

ul{
	margin: 0;
	padding: 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: #428b00;
	text-decoration: none;
}

a:visited {
	color: #428b00;
	text-decoration: none;
}

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

a:active {
	color: #e88b00f4;
	text-decoration: none;
}

img {
	width: 100%;
	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;
} */

.margin-right-1{
	margin: 0 0.5rem 0 0;
}

.margin-right-2{
	margin: 0 1.0rem 0 0;
}

.margin-right-3{
	margin: 0 2.0rem 0 0;
}

.margin-bottom-1{
	margin: 0 0 1.0rem 0;
}

.margin-bottom-2{
	margin: 0 0 2.0rem 0;
}

.margin-bottom-3{
	margin: 0 0 3.0rem 0;
}

.text12{
	font-size: 1.2rem;
}

.text14{
	font-size: 1.4rem;
}

.text16{
	font-size: 1.6rem;
}

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

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

.text-left__sp {
	text-align: center !important;
}
	@media only screen and (max-width : 959px) {
		.text-left__sp {
			text-align: center !important;
		}
	}
	@media only screen and (max-width : 499px) {
		.text-left__sp {
			text-align: left !important;
		}
	}



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

p	{
	margin: 1.4em 0 1.4em 0;
}

.text-contents{
	max-width: 700px;
	margin: 1.4em auto 1.4em;
	font-size: 1.8rem;
	text-align: justify;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: bold;
}
@media only screen and (max-width : 499px){
	.text-contents{
		width: 100%;
		font-size: 1.4rem;
	}
}

.relative {
	position: relative;
}

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

.fadein_title {
	animation: fadein_title 1.5s forwards ease-in-out;
  }
   
  @keyframes fadein_title {
	0% {
	transform: translateY(180px);
	opacity: 0;
	}
	100% {
	  opacity: 1;
	}
  }


/********** container **********/
.container {
	overflow: hidden;
	width:100%;
	margin: 0 auto;
	padding: 0;
	/* background-size: cover; */
}

/********** header **********/
header {
    position: relative;
    width: 100%;
    height: 930px;
    padding: 0;
    text-align: center;
}
	@media only screen and (max-width : 959px) {
		header {
			height: 930px;
		}
	}
	@media only screen and (max-width : 499px) {
		header {
			height: 90vh;
		}
	}

.page-message header {
    height: 300px;
}
	@media only screen and (max-width : 499px){
		.page-message header {
			height: 250px;
		}
	}

header::before {
    position: absolute;
	content: '';
	display: block;
	top: 0;
	right: 0;
	width: 100%;
    height: 930px;
    background-image: url(../img/title_background_dot.png);
    background-size: 4px 4px;
    background-attachment: fixed;
    z-index: 2;
}
	@media only screen and (max-width : 959px) {
		header::before {
			height: 930px;
		}
	}
	@media only screen and (max-width : 499px) {
		header::before {
			height: 90vh;
		}
	}

.page-message header::before {
    height: 300px;
}
	@media only screen and (max-width : 499px){
		.page-message header::before {
			height: 250px;
		}
	}

.header__bottom {
	overflow: hidden;
	position: absolute;
	content: "";
	bottom: 0;
	display: block;
	height: 4vw;
	width: 108%;
	background-image: url(../img/header_bottom.svg);
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
	z-index: 10;
}

h1 {
    position: absolute;
    display: inline-block;
    overflow: hidden; 
    top: 20px;
    bottom: 0;
    left: 0;
    right: 0;
	width: 750px;
	height: auto;
	aspect-ratio: 800 / 500;
    margin: 0 auto;
    background-image: url("../img/title.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    text-indent: 100%;
    mix-blend-mode: normal;
    white-space: nowrap;
    z-index: 200;
}
	@media only screen and (max-width : 959px) {
			h1 {
				width: 90%;
				height: auto;
			}
	}
	@media only screen and (max-width : 499px) {
		h1 {
			width: 95%;
		}
	}

.page-message h1  {
    position: absolute;
    display: inline-block;
    overflow: hidden; 
    top: 1vh;
    bottom: 0;
    left: 0;
    right: 0;
	width: 350px;
	height: auto;
}
	@media only screen and (max-width : 499px){
		.page-message h1  {
			width: 320px;
			height: auto;
		}
	}

/********** navigator **********/
.navigator-area {
    position: absolute;
    top: 540px;
    bottom: 0;
    left: 0;
    right: 0;
	width: 400px;
	margin: 0 auto;
	z-index: 50;
}
@media only screen and (max-width : 959px) {
	.navigator-area {
		position: absolute;
		bottom: 10px;
		top: 590px;
		left: 0;
		right: 0;
		width: 90%;
		max-width: 400px;
	}
}
@media only screen and (max-width : 499px) {
	.navigator-area {
		position: absolute;
		top: 330px;
		bottom: 0;
		left: 0;
		right: 0;
		width: 90%;
		max-width: 350px;
		margin: 0 auto;
		z-index: 50;
	}
}

h2.navigator-area__title {
	margin: 0 0 20px;
	padding: 5px 10px;
	color: #fff;
	border-top: 2px solid;
	border-bottom: 2px solid;
	font-size: 1.8rem;
	font-family: "Oswald", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	line-height: 1.0;;
	letter-spacing: 2px;
}
	@media only screen and (max-width : 959px) {
		h2.navigator-area__title-navigator {
			font-size: 4.5rem;
			margin: 0 auto 20px;
		}
	}
	@media only screen and (max-width : 499px) {
		h2.navigator-area__title-navigator {
			font-size: 4.0rem;
			margin: 0 auto 10px;
		}
	}

.navigator-area__list {
	display:	flex;
	flex-wrap:	wrap;
	justify-content: center;
	align-content:	flex-start;
	align-items: center;
	gap: 0 20px;
}
	@media only screen and (max-width : 959px) {
		.navigator-area__list {
			gap: 0 10px;
		}
	}
	@media only screen and (max-width : 499px) {
		.navigator-area__list {
			gap: 0 5px;
		}
	}

.navigator-area__list .cast__item {
	overflow:	hidden;
	flex-basis:	calc(50% - 10px);
	text-align:	center;
}
@media only screen and (max-width : 499px) {
	.navigator-area__list .cast__item {
		flex-basis:	calc(50% - 5px);
	}
}

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

/* .cast__image-shadow {
	overflow: hidden;
	box-shadow: 10px 10px 0px 0px rgba(0, 0, 0, 0.4);
} */

.navigator-area__name {
	padding: 0 !important;
	margin: 1.0rem 0 1.6rem;
	color: #fff;
	font-size: 1.8rem;
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	letter-spacing: 1px;
	line-height: 1.0;
}
@media only screen and (max-width : 959px) {
	.navigator-area__name {
		font-size: 2.0rem;
	}
}
@media only screen and (max-width : 499px) {
	.navigator-area__name {
		margin: 1.6rem 0;
		font-size: 1.6rem;
	}
}


/********** contents **********/
main {
	margin: 0 auto;
	background-color: #f9f6ef;
}

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

.area-contents__summary {
	position: relative;
	width: 100%;
	margin: 0 auto;
}

.area-contents__inner {
	width: calc(100% - 10px * 2);
	max-width: 900px;
	margin: 0 auto;
	padding: 20px 0 35px;
}
	@media only screen and (max-width : 499px) {
		.area-contents__inner {
			padding: 20px 0;
		}
	}

h2.area-contents__summary-title {
	position: relative;
	display: inline-block;
	margin: 0 auto 2.0rem;
	padding: 0;
	color: #428b00;
	font-size: 2.6rem;
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
}
@media only screen and (max-width : 959px) {
	h2.area-contents__summary-title {
		padding: 0 15vw;
		font-size: 2.2rem;
		text-align: left;
		line-height: 1.4;
	}
}
@media only screen and (max-width : 499px) {
	h2.area-contents__summary-title {
		padding: 0 20px;
		margin: 0 auto 2.0rem;
		font-size: 2.0rem;
	}
}

h2.area-contents__summary-title::before {
    content: "";
    position: absolute;
    top: -55px;
    left: -200px;
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
    width: 200px;
    height: 400px;
    background-image: url(../img/decoration_bird_01.png);
    z-index: 100;
}
@media only screen and (max-width : 959px) {
	h2.area-contents__summary-title::before {
		content: "";
		position: absolute;
		top: -80px;
		left: -5px;
		width: 100px;
		height: 200px;
	}
}
@media only screen and (max-width : 499px) {
	h2.area-contents__summary-title::before {
		content: "";
		position: absolute;
		top: -80px;
		left: 30px;
		width: 70px;
		height: 120px;
	}
}

h2.area-contents__summary-title::after {
    content: "";
    position: absolute;
    top: 140px;
    right: -185px;
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
    width: 200px;
    height: 400px;
    background-image: url(../img/decoration_bird_02.png);
    z-index: 100;
}
	@media only screen and (max-width : 959px) {
			h2.area-contents__summary-title::after {
				bottom: -20px;
				right: 0;
				width: 100px;
				height: 120px;
			}
	}
	@media only screen and (max-width : 499px) {
		h2.area-contents__summary-title::after {
			bottom: -20px;
			right: 0;
			width: 80px;
			height: 120px;
		}
	}

p.area-contents__summary-text {
	font-size: 1.8rem;
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	letter-spacing: 1px;
    z-index: 100;
}
	@media only screen and (max-width : 959px) {
		p.area-contents__summary-text {
			padding: 0 15vw 0;
			font-size: 1.6rem;
			text-align: left;
			letter-spacing: 0;
			line-height: 1.4;
		}
	}
	@media only screen and (max-width : 499px) {
		p.area-contents__summary-text {
			padding: 0 20px 0;
			font-size: 1.6rem;
			letter-spacing: 0;
		}
}

.decoration__summary-01 {
	position: absolute;
	left: -5px;
	top: 300px;
	z-index: 5;
}
	@media only screen and (max-width : 959px) {
		.decoration__summary-01 {
			position: absolute;
			left: -10px;
			top: 75px;
			z-index: 5;
		}
	}
	@media only screen and (max-width : 499px) {
		.decoration__summary-01 {
			position: absolute;
			left: -30px;
			top: -45px;
			z-index: 5;
		}
	}

.decoration__summary-01-image {
    width: 15vw;
    height: auto;
}
	@media only screen and (max-width : 959px) {
		.decoration__summary-01-image {
			width: 13vw;
		}
	}
	@media only screen and (max-width : 499px) {
		.decoration__summary-01-image {
			width: 20vw;
		}
	}

.decoration__summary-02 {
	position: absolute;
	right: -5px;
	top: 400px;
	z-index: 5;
}
	@media only screen and (max-width : 959px) {
		.decoration__summary-02 {
			right: -5px;
			top: 325px;
		}
	}
	@media only screen and (max-width : 499px) {
		.decoration__summary-02 {
			right: -5px;
			top: 340px;
		}
	}

.decoration__summary-02-image {
    width: 15vw;
    height: auto;
}
@media only screen and (max-width : 959px) {
	.decoration__summary-02-image {
		width: 20vw;
	}
}
@media only screen and (max-width : 499px) {
	.decoration__summary-02-image {
		width: 25vw;
	}
}


/********** common **********/
h2.area-contents__title {
	position: relative;
	display: inline-block;
	margin: 0 auto 30px;
	color: #428b00;
	font-size: 5.0rem;
	font-family: "Oswald", sans-serif;
	font-optical-sizing: auto;
	font-weight: 300;
	font-style: normal;
}
@media only screen and (max-width : 959px) {
	h2.area-contents__title {
		margin: 0 auto 20px;
		font-size: 4.5rem;
	}
}
@media only screen and (max-width : 499px) {
	h2.area-contents__title {
		margin: 0 auto 10px;
		font-size: 4.0rem;
	}
}


/********** cast__information **********/
.cast__information {
    margin: 8px auto;
}
    @media only screen and (max-width : 499px) {
        .cast__information {
            margin: 8px auto 0;
        }
    }

.cast__information--link {
	display: inline-block;
	margin: 0 4px 0;
	color: #343434 !important;
	text-align: center;
	font-size: 1.8rem !important;
	line-height: 1.0;
}
	@media only screen and (max-width : 499px) {
		.cast__information--link {
			margin: 0 2px 0;
			font-size: 2.0rem !important;
		}
	}

.navigator-area .cast__information .cast__information--link {
	color: #fff !important;
}


/********** report **********/
.area-report {
	clear: both;
	max-width: 600px;
	height: auto;
	margin: 0 auto;
}

h2.area-contents__title.report:before {
    content: "";
    position: absolute;
    top: -70px;
    right: -80px;
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
    width: 100px;
    height: 200px;
    background-image: url(../img/decoration_bird_03.png);
	transform: scale(-1, 1);
    z-index: 100;
}

.area-report__name {
	padding: 2.0rem 0 !important;
	color: #343434;
	font-size: 2.2rem;
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	letter-spacing: 1px;
	line-height: 1.0;
}

.area-report__affiliation {
	padding: 0 0 2.0rem !important;
	color: #6c6c6c;
	font-size: 1.4rem;
	line-height: 1.0;
}

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


/********** banner - tokyo tatemono **********/
.area-banner {
    margin: 100px auto 40px;
}
@media only screen and (max-width : 959px) {
    .area-banner {
        margin: 40px auto 0;
    }
}
@media only screen and (max-width : 599px) {
    .area-banner {
        margin: 20px auto 0;
    }
}

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


.area-banner-ai {
    margin: 80px auto 60px;
}
@media only screen and (max-width : 959px) {
    .area-banner-ai {
        margin: 40px auto 0;
    }
}
@media only screen and (max-width : 599px) {
    .area-banner-ai {
        margin: 20px auto 0;
    }
}

.area-banner-ai__image {
    width: 100%;
	max-width: 600px;
    height: auto;
}
@media only screen and (max-width : 599px) {
	.area-banner-ai__image {
		width: 80%;
        margin: 20px auto 40px;
    }
}


/********** Gigya **********/
.jme {
    margin: 20px auto 100px;
}
    @media only screen and (max-width : 499px) {
        .jme {
            margin: 30px auto 40px;
        }
    }

body.page-message .jme {
    margin: 20px auto 60px;
}

/********** message - top **********/
.area-contents.background-message {
	position: relative;
	margin: 300px auto 0;
	background-color: #428b00;
}
	@media only screen and (max-width : 959px) {
		.area-contents.background-message {
			margin: 250px auto 0;
		}
	}
	@media only screen and (max-width : 499px) {
		.area-contents.background-message {
			margin: 120px auto 0;
		}
	}

.area-contents.background-message::before {
	overflow: hidden;
	position: absolute;
	content: "";
	display: block;
	top:  -450px;
	height: 450px;
	width: 100%;
	background-image: url(../img/decoration_mountain_01.svg);
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: 960px auto;
	z-index: 10;
}
	@media only screen and (max-width : 499px) {
		.area-contents.background-message::before {
			background-size: 500px auto;
			z-index: 10;
		}
	}


h2.area-contents__title.message {
	margin: 0 auto 20px;
	color: #fff;
}

h3.area-contents__message-theme {
	margin: 0 auto 30px;
	color: #fff;
	font-size: 2.6rem;
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	letter-spacing: 1px;
	line-height: 1.4;
}
	@media only screen and (max-width : 959px) {
		h3.area-contents__message-theme {
			font-size: 2.2rem;
		}
	}
	@media only screen and (max-width : 499px) {
		h3.area-contents__message-theme {
			font-size: 2.0rem;
		}
	}

h3.area-contents__message-theme .area-contents__message-theme-text {
	font-size: 4.0rem;
}
	@media only screen and (max-width : 959px) {
		h3.area-contents__message-theme .area-contents__message-theme-text {
			font-size: 3.5rem;
		}
	}
	@media only screen and (max-width : 499px) {
		h3.area-contents__message-theme .area-contents__message-theme-text {
			font-size: 3.0rem;
		}
	}


.area-contents__message-text {
	width: 95%;
	margin: 0 auto 60px;
	max-width: 700px;
	color: #fff;
	text-align: left;
}
	@media only screen and (max-width : 499px) {
		.area-contents__message-text {
			margin: 0 auto 30px;
	}
}

.present-notes {
	display: inline-block;
    margin: 3.0rem auto;
	color: #fff;
}
	@media only screen and (max-width : 499px) {
		.present-notes {
			margin: 1.0rem auto;
		}
	}

.present-notes__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.present-notes__item {
    text-align: left;
}
	@media only screen and (max-width : 499px) {
		.present-notes__item {
			font-size: 1.4rem;
		}
	}

.present-notes__item:before {
    display:  inline-block;
    content:  "";
    width:  10px;
    height:  10px;
    margin: 0 0.6rem 0 0;
    background-color: #fff;
    text-align: left;
    border-radius:  50%;
}

.area-present__image {
	width: 70%;
	max-width: 400px;
	height: auto;
	border-radius: 50%;
}

.area-present__link {
	margin: 2.2rem auto;
}
	@media only screen and (max-width : 499px) {
		.area-present__link {
			margin: 1.8rem auto;
		}
	}

a.area-present__link-anchor {
	color: #fff !important;
}

/********** button-message **********/
.button__message {
    margin: 40px 0;
}
	@media only screen and (max-width : 499px) {
		.button__message {
			margin: 10px 0;
		}
	}

a.button__message-link {
    position: relative;
    display: inline-block;
    padding: 15px 70px 15px 90px;
    border-radius: 40px;
    background-color: #fff;
    color: #ea5514;
    font-size: 3.2rem;
	font-family: "Oswald", sans-serif;
	font-optical-sizing: auto;
	font-weight: 300;
	font-style: normal;
    text-decoration: none;
    text-align: center;
}
@media only screen and (max-width : 599px) {
    a.button__message-link {
        position: relative;
        display: inline-block;
        padding: 10px 50px 10px 70px;
        font-size: 2.2rem;
    }
}

a:hover.button__message-link {
    background-color: #fff;
    color: #efcb00;
}

a.button__message-link::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 35px;
    width: 0;
    height: 0;
    margin: auto;
    border-top: 8px solid transparent;
    border-right: 0 solid transparent;
    border-left: 16px solid #ea5514;
    border-bottom: 8px solid transparent;
    box-sizing: border-box;
}

a:hover.button__message-link::after {
    border-left: 16px solid #efcb00;
}


/********** live **********/
h2.area-contents__title.live {
	margin: 150px auto 20px;
	color: #ea5514;
	font-size: 8.0rem;
}
	@media only screen and (max-width : 959px) {
		h2.area-contents__title.live {
			margin: 120px auto 20px;
			font-size: 6.0rem;
		}
	}
	@media only screen and (max-width : 499px) {
		h2.area-contents__title.live {
			margin: 100px auto 20px;
			font-size: 4.0rem;
		}
	}

h2.area-contents__title.live:before {
    content: "";
    position: absolute;
	top: -100px;
	right: 0;
	left: 0;
	margin: 0 auto;
    background-size: 100% auto;
    background-repeat: no-repeat;
    width: 100px;
    height: 120px;
    background-image: url(../img/decoration_sound_01.svg);
    z-index: 100;
}

.area-live {
	clear: both;
	max-width: 1280px;
	height: auto;
	margin: 0 auto;
}

.area-live__time {
	display: inline-block;
	padding: 3.0rem 1.0rem 1.0rem!important;
	color: #6b6b6b;
	font-size: 1.4rem;
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	letter-spacing: 1px;
	line-height: 1.0;
	border-bottom: 1px solid #6b6b6b;
}


.area-live__name {
	padding: 2.0rem 0 !important;
	color: #343434;
	font-size: 4.0rem;
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	letter-spacing: 1px;
	line-height: 1.0;
}

.area-live__affiliation {
	padding: 0 0 2.0rem !important;
	color: #6c6c6c;
	font-size: 1.4rem;
	line-height: 1.0;
}

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


/********** guest **********/
.area-contents.background-guest {
	position: relative;
	margin: 0 auto;
	padding: 60px 0 40px;
	background-color: #8bbf1b;
}

h2.area-contents__title.guest-talk {
	margin: 0 auto 20px;
	color: #fff;
}

h2.area-contents__title.guest-comment {
	margin: 100px auto 20px;
	color: #fff;
}
@media only screen and (max-width : 959px) {
	h2.area-contents__title.guest-comment {
		margin: 80px auto 20px;
	}
}
@media only screen and (max-width : 499px) {
	h2.area-contents__title.guest-comment {
		margin: 30px auto 20px;
	}
}

h2.area-contents__title.guest-talk:before {
    content: "";
    position: absolute;
    top: -70px;
    right: -70px;
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
    width: 80px;
    height: 150px;
    background-image: url(../img/decoration_bird_04.svg);
    z-index: 100;
}

h2.area-contents__title.guest-comment:before {
    content: "";
    position: absolute;
    top: -70px;
    left: -70px;
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
    width: 80px;
    height: 150px;
    background-image: url(../img/decoration_bird_04.svg);
    z-index: 100;
	transform: scale(-1, 1);
}
@media only screen and (max-width : 499px) {
	h2.area-contents__title.guest-comment:before {
		content: "";
		position: absolute;
		top: -75px;
		left: -50px;
	}
}

.decoration__guest {
	position: absolute;
	left: -5px;
	top: 30px;
	z-index: 5;
}

.decoration__guest-image {
    width: 15vw;
    height: auto;
}

.area-guest__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: flex-start;
	gap: 20px 20px;
	/* overflow: hidden; */
    width: calc(100% - 10px * 2);
	max-width: 1280px;
	margin: 0 auto;
    padding: 0;
}
    @media only screen and (max-width : 899px) {
        .area-guest__list{
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-content: flex-start;
            gap: 0 10px;
            /* overflow: hidden; */
            margin: 0 auto 40px;
            padding: 0;
        }
    }
    @media only screen and (max-width : 499px) {
        .area-guest__list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-content: flex-start;
            gap: 0 10px;
            /* overflow: hidden; */
            width: 100%;
            margin: 0 auto;
        }
        .area-guest__list.stories {
            margin: 40px auto 0;
        }
    }

.area-guest__item {
	flex-basis: 48%;
	text-align: center;
	margin: 0 0 20px 0;
}
    @media only screen and (max-width : 499px) {
        .area-guest__item {
            flex-basis: 48%;
            margin: 0 0 25px;
        }
        .area-guest__item.area-guest__item-talk{
            flex-basis: 80%;
            margin: 0 0 25px;
        }
    }

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

.area-guest__list figcaption{
    margin: 10px 0 0 0;
    padding: 0.2rem 0;
    text-align:center;
    z-index: 300;
}
    @media only screen and (max-width : 499px) {
        .area-guest__list figcaption{
            margin: 5px 0 0 0;
            padding: 0;
        }
    }

.area-guest__information--time {
    display: inline-block;
    margin: 0 auto 1.0rem;
    padding: 0.25rem 1.0rem;
    font-size: 1.2rem;
    font-weight: 300;;
    letter-spacing: 2px;
    line-height: 1.4;
    border-bottom: 1px solid #5c5c5c;
}
    @media only screen and (max-width : 499px) {
        .area-guest__information--time {
            padding: 15px 0  5px;
            letter-spacing: 0;
        }
    }

.area-guest__information--name {
    margin: 0 0 1.0rem;
    padding: 0.4rem 0;
    font-size: 2.6rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.2;
}
    @media only screen and (max-width : 499px) {
        .area-guest__information--name {
            font-size: 1.6rem;
            margin: 0;
        }
        .area-guest__item-talk .area-guest__information--name {
            font-size: 2.6rem;
            margin: 0;
        }
    }

.area-guest__information--.text_m {
	font-size: 1.7rem;
}

.area-guest__information--member {
    display: block;
    margin: 1.0rem 0 2.0rem;
    padding: 0.2rem 0;
    text-align: center;
    font-size: 1.2rem;
    letter-spacing: 1px;
    line-height: 1.2;
}
    @media only screen and (max-width : 499px) {
        .area-guest__information--member {
            margin: 0.5rem 0 0;
            padding: 0.4rem 0;
            text-align: center;
            font-size: 1.2rem;
            letter-spacing: 0;
            line-height: 1.6;
        }
    }

.area-guest__information--outline {
	margin: 0 0 1.0rem;
	padding: 0.4rem 1.0rem;
	font-size: 1.4rem;
	text-align: justify;
	letter-spacing: 1px;
	line-height: 1.6;
}
	@media only screen and (max-width : 599px) {
		.area-guest__information--outline {
			padding: 0.4rem 0.6rem;
			text-align: left;
			letter-spacing: 0;
		}
	}

.area-guest__credit {
    display: block;
    margin: 1.2rem 0 0;
    font-size: 1.2rem;
    font-weight: normal;
    letter-spacing: 0;
}
    @media only screen and (max-width : 499px) {
        .area-guest__credit {
            margin: 1.0rem 0 0;
            font-size: 1.0rem;
        }
    }

.area-guest__information--website {
    margin: 8px auto;
}
    @media only screen and (max-width : 499px) {
        .area-guest__information--website {
            margin: 8px auto 0;
        }
    }

.area-guest__information--link {
    display: inline-block;
    margin: 0 4px 0;
	color: #343434 !important;
    font-size: 1.8rem !important;
    text-align: center;
    line-height: 1.0;
}
    @media only screen and (max-width : 499px) {
        .area-guest__information--link {
            margin: 0 2px 0;
            font-size: 2.0rem !important;
        }
    }


/********** sound trip **********/
.area-contents.background-soundtrip {
	position: relative;
	background-color: #428b00;
	margin: 200px 0 0;
}
	@media only screen and (max-width : 959px) {
		.area-contents.background-soundtrip {
			margin: 150px 0 0;
		}
	}
	@media only screen and (max-width : 499px) {
		.area-contents.background-soundtrip {
			margin: 140px 0 0;
		}
	}

.area-contents.background-soundtrip::before {
	overflow: hidden;
	position: absolute;
	content: "";
	display: block;
	top:  -200px;
	height: 200px;
	width: 102%;
	background-color: #8bbf1b;
	background-image: url(../img/decoration_grass_01.svg);
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: 960px auto;
	z-index: 10;
}
	@media only screen and (max-width : 959px) {
		.area-contents.background-soundtrip::before {
			background-size: 800px auto;
		}
	}
	@media only screen and (max-width : 499px) {
		.area-contents.background-soundtrip::before {
			background-size: 500px auto;
		}
	}

h2.area-contents__title.soundtrip {
	margin: 0 auto 20px;
	color: #faee00;
}

h2.area-contents__title.soundtrip:before {
    content: "";
    position: absolute;
    top: 0;
    left: -60px;
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
    width: 40px;
    height: 100px;
    background-image: url(../img/decoration_sound_02.svg);
    z-index: 100;
}
@media only screen and (max-width : 499px) {
	h2.area-contents__title.soundtrip:before {
		top: 0;
		left: -45px;
		width: 30px;
		height: 80px;
	}
}

h2.area-contents__title.soundtrip:after {
	content: "";
	position: absolute;
	top: 0;
	right: -60px;
	background-size: 100% auto;
	background-position: center top;
	background-repeat: no-repeat;
	width: 40px;
	height: 100px;
	background-image: url(../img/decoration_sound_02.svg);
	z-index: 100;
	transform: scale(-1, 1);
}
	@media only screen and (max-width : 499px) {
		h2.area-contents__title.soundtrip:after {
			top: 0;
			right: -45px;
			width: 30px;
			height: 80px;
		}
	}

h3.soundtrip-x {
	position: relative;
	width: 80%;
	padding: 2.4rem 1.0rem;
	margin: 0 auto 50px;
	color: #428b00;
	font-size: 2.2rem;
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	letter-spacing: 1px;
	background:  #fff;
	border-radius: 10px;
}
	@media only screen and (max-width : 499px) {
		h3.soundtrip-x {
			position: relative;
			width: 100%;
			padding: 1.0rem 1.0rem;
			margin: 0 auto 20px;
			font-size: 1.8rem;
			text-align: left;
			letter-spacing: 0;
			line-height: 1.2;
		}
	}

h3.soundtrip-x:after {
	position: absolute;
	content: '';
	top: 100%;
	left: 48%;
	border: 10px solid transparent;
	border-top: 10px solid #fff;
	width: 0;
	height: 0;
}


/********** youtube **********/
.area-youtube {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
    margin: 50px auto 50px;
    z-index: 300;
	gap: 10px 30px;
}
	@media only screen and (max-width : 499px) {
		.area-youtube__item {
			margin: 0 auto;
		}
	}

.area-youtube__item {
    width: 100%;
    aspect-ratio: 16 / 9;
	flex-basis: 48%;
}
	@media only screen and (max-width : 499px) {
		.area-youtube__item {
			flex-basis: 100%;
		}
	}

.area-youtube__iframe {
    width: 100%;
    height: 100%;
    margin: 0 0 30px;
    /* border-radius: 20px; */
}


/********** photo **********/
h2.area-contents__title.photo {
	margin: 100px auto 20px;
	color: #428b00;
}

h2.area-contents__title.photo:before {
    content: "";
    position: absolute;
    top: -70px;
    left: -70px;
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
    width: 80px;
    height: 150px;
    background-image: url(../img/decoration_bird_05.svg);
    z-index: 100;
}

/********** X **********/
.logo_x {
	width: 80px;
	height: auto;
	margin: 100px auto 0;
}
	@media only screen and (max-width : 599px) {
		.logo_x {
			width: 50px;
			height: auto;
			margin: 60px auto 0;
		}
	}

.button__x {
    margin: 40px 0;
}
	@media only screen and (max-width : 599px) {
		.button__x {
			margin: 20px 0;
		}
	}

a.button__x-link {
    position: relative;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 40px;
	border: 1px solid #343434;
    color: #343434;
    text-decoration: none;
    text-align: center;

}
@media only screen and (max-width : 599px) {
    a.button__x-link {
        position: relative;
        display: inline-block;
        padding: 10px 50px 10px 70px;
        font-size: 1.8rem;
    }
}

a:hover.button__x-link {
    color: #757575;
}



/********** archive **********/
h2.area-contents__title.archive {
	margin: 100px auto 20px;
	color: #428b00;
}

h2.area-contents__title.archive:before {
    content: "";
    position: absolute;
    top: -70px;
    right: -70px;
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
    width: 80px;
    height: 150px;
    background-image: url(../img/decoration_bird_05.svg);
    z-index: 100;
	transform: scale(-1, 1);
}

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

.archive__item{
	overflow: hidden;
	flex-basis: 47%;
	text-align: center;
}

.archive__image {
	margin: 0 0 10px
}

.archive__text {
	font-size: 1.6rem;
	font-family: "Oswald", sans-serif;
	font-optical-sizing: auto;
	font-weight: 300;
	font-style: normal;
	letter-spacing: 1px;
	line-height: 1.2;
}



/********** footer **********/
footer {
	overflow: hidden;
	width: 100%;
	margin: 0 auto;
	padding: 100px 0 0;
	background-color: #f9f6ef;
}

.footer_bottom {
	display: flex;
	width: calc(100% - 20px * 2);
	max-width: 1280px;
	margin: 0 auto 180px auto;
}
	@media only screen and (max-width: 1024px){
		.footer_bottom {
			width: 90%;
			margin: 0 auto 60px auto;
		}
	}

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

.footer_bottom .gotohome{
	width: 100px;
}
	@media only screen and (max-width : 499px){
		.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 : 499px){
		.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 : 499px){
		.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 : 499px){
		.footer_bottom .j-wave_credit img{
			width: 60%;
			max-width: 400px;
		}
	}

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

@media (min-width: 600px) {
	a[href*="tel:"] {
	pointer-events: none;
	cursor: default;
	text-decoration: none;
	}
}