@charset "UTF-8";
@import url('reset.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;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #fff;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.4;
    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: #4d4d4d;
    background-image: url("../img/bg_pc.jpg");
    background-position:  top center;
    background-repeat: repeat-y;
    background-size: cover;
    background-attachment: fixed;
    -webkit-text-size-adjust: 100%;
    animation: fadeIn 3s ease 0s 1 normal;
    -webkit-animation: fadeIn 3s ease 0s 1 normal;
}
@media only screen and (max-width : 599px){
    body {
        background-image: url("../img/bg_sp.jpg");
        background-position:  top center;
        background-repeat: repeat-y;
        background-size: contain;
        background-attachment: fixed;
    }
}

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

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



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


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

.tablet_sp {
    display: none;
}
    @media only screen and (max-width: 1024px){
        .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.4em 0 1.4em 0;
    text-align: justify;
    font-weight: 400;
}

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: #fe3615;
    text-decoration: none;
}

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

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

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

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 {
    margin: 0;
    border: 0;
}

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

.area-art__photo {
    width: 100%;
    height: auto;
}


/********** margin **********/
.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-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;
}
@media only screen and (max-width : 599px) {
    .text-center{
        text-align: left !important;
    }
}

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

.text-green{
    color: #4a6d43 !important;
}

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


/********** structure **********/
.container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.area-contents {
    width: 95%;
    max-width: 940px;
    margin: 0 auto 80px;
}
    @media only screen and (max-width : 599px) {
        .area-contents {
            margin: 0 auto 30px;
        }
    }

.area-contents__full {
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.area-contents__full--yellow {
    background-color: #d7ad00;
}



/********** header **********/
header {
    position: relative;
    width: 100%;
    height: 820px;
    margin: 0;
    padding: 10px 0 0;
    text-align: center;
    background-image: url("../img/header_bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
    @media only screen and (max-width : 599px) {
        header {
            height: 90vh;
        }
    }

.header-background {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    background-image: radial-gradient(#444 20%, transparent 0), radial-gradient(#444 20%, transparent 0);
    background-position: 0 0, 10px 10px;
    background-size: 4px 4px;
    z-index: 2;
}


.header-inner {
    background-color: rgba(255,255,255,0.3);
    width: 100%;
    margin: 80px 0 0;
    padding: 20px 0;
}

h1 {
    display: block;
    overflow: hidden;
    width: 95%;
    max-width: 900px;
    height: 300px;
    margin: 0 auto;
    background-image: url("../img/title_pc.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    text-indent: 100%;
    white-space: nowrap;
    opacity: 1.0;
    z-index: 10;
    animation-name: fadeupAnime1;
    animation-delay: 1s;
	animation-duration: 2s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
    opacity: 0;
}
    @media only screen and (max-width : 846px) {
        h1 {
            width: 100%;
            max-width: 900px;
            height: 250px;
        }
    }

    @media only screen and (max-width : 599px) {
        h1 {
            width: 100%;
            max-width: 375px;
            height: 230px;
            margin: 0 auto;
            background-image: url("../img/title_sp.svg");
        }
    }



/* ----- navigator ----- */
.header-navigator {
    width: 200px;
    height: 300px;
    margin: 50px auto 0;
    animation-name: fadeupAnime1;
    animation-delay: 2s;
	animation-duration: 2s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
    opacity: 0;
}

@media only screen and (max-width : 599px) {
    .header-navigator {
        top: 500px;
        width: 150px;
        height: 270px;
    }
}

@media only screen and (max-width : 375px) {
    .header-navigator {
        top: 420px;
    }
}

@keyframes fadeupAnime1{
    from {
      opacity: 0;
      transform: translateY(150px);
    }
  
    to {
      opacity: 1;
      transform: translateY(0);
    }
}


.header-navigator__image {
    width: 200px;
    height: auto;
    border-radius: 100%;
}

@media only screen and (max-width : 599px) {
    .header-navigator__image {
        width: 150px;
        height: auto;
    }
}

.header-navigator__title {
    position: relative;
    display: inline-block;
    margin: 10px auto 0;
    color: #fff;
    font-size: 1.4rem;
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    letter-spacing: 1px;
}

@media only screen and (max-width : 599px) {
    .header-navigator__title {
        margin: 20px auto 5px auto;
        color: #fff;
        font-size: 1.4rem;
    }
    
}

.header-navigator__title:before {
    content: '';
    position: absolute;
    bottom: -5px;
    display: inline-block;
    width: 40px;
    height: 1px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #fff;
}

.header-navigator__name {
    margin: 10px auto 0;
    color: #fff;
    font-size: 2.4rem;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    text-align: center;
    letter-spacing: 2px;
}
@media only screen and (max-width : 599px) {
    .header-navigator__name {
        font-size: 1.6rem;
    }
}

/********** main **********/
main {
    overflow: hidden;
    margin: 30px auto 100px;
}
    @media only screen and (max-width : 599px) {
        main {
            margin: 0 auto 20px;
        }
    }

h2.headline__main {
    position:relative;
    margin: 40px auto 80px;
    color: #45693E;
    font-size: 3.2rem;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    text-align: center;
    letter-spacing: 2px;
}
    @media only screen and (max-width : 599px) {
        h2.headline__main {
            margin: 20px auto 60px;
            font-size: 1.8rem;
            text-align: left;
        }
    }

h2.headline__main::after  {
    content: "";
    position: absolute;
    width: 100px;
    height: 50px;
    top: 70px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-image: url(../img/ruffledborder_1.svg);
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: 1;
}
    @media only screen and (max-width : 599px) {
        h2.headline__main::after  {
            width: 100px;
            height: 50px;
            top: 60px;
        }
    }

h3.headline__sub {
    margin: 10px auto 0;
    font-size: 1.8rem;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    text-align: center;
    letter-spacing: 1px;
    line-height: 2.6;
}
    @media only screen and (max-width : 599px) {
        h3.headline__sub {
            margin: 10px auto 0;
            font-size: 1.6rem;
            text-align: justify;
            letter-spacing: 1px;
            line-height: 2.0;
        }
    }

/********** banner **********/
.banner-area {
    margin: 60px auto 0;
}
    @media only screen and (max-width : 599px) {
        .banner-area {
            margin: 30px auto 0;
        }
    }

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

.banner-area__item {
    display: inline-block;
    width: 100%;
    max-width: 400px;
}

.banner-area__image {
    width: 100%;
    border: 1px solid #ccc;
}

/********** Gigya **********/
#jme {
    display: inline-block;
    margin: 50px auto 0;
    padding: 15px 20px;
    background: #fff;
}

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


/********** studio live **********/
.title-contents {
    width: 100%;
    margin: 40px auto;
    padding: 20px 0;
    background-color: #fff;
    text-align: center;
}

.title-contents__image {
    width: 90%;
    max-width: 500px;
    height: auto;
}

h3.title-contents__sub {
    position:relative;
    margin: 80px auto;
    color: #fff;
    font-size: 2.6rem;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    text-align: center;
    letter-spacing: 2px;
}
    @media only screen and (max-width : 599px) {
        h3.title-contents__sub {
            margin: 60px auto;
            font-size: 1.8rem;
            text-align:left;
            letter-spacing: 1px;
        }
    }

h3.title-contents__sub::after  {
    content: "";
    position: absolute;
    width: 100px;
    height: 50px;
    top: 60px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-image: url(../img/ruffledborder_2.svg);
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: 1;
}
    @media only screen and (max-width : 599px) {
        h3.title-contents__sub::after  {
            width: 80px;
            height: 30px;
            top: 60px;
        }
    }

h3.title-contents__sub--upper {
    margin: 80px auto -80px;
    color: #fff;
    font-size: 2.6rem;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    text-align: center;
    letter-spacing: 2px;
    line-height: 1.4;
}
    @media only screen and (max-width : 599px) {
        h3.title-contents__sub--upper {
            margin: 40px auto -60px;
            color: #fff;
            font-size: 1.8rem;
            text-align: left;
            letter-spacing: 1px;
        }
    }

.live-photo {
    margin: 40px auto;
}

.live-photo__list {
    width: 95%;
    max-width: 800px;
    margin: 0 auto;
}

.live-photo__item {
    margin: 0 0 20px;
    text-align: center;
}

.live-photo__image {
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.live-photo__text {
    text-align: center;
}

.guest-area__list {
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: flex-start;
	gap: 30px 30px;
    width: 100%;
	max-width: 800px;
	margin: 50px auto 20px auto;
}

.guest-area__item {
	overflow: hidden;
	flex-basis: 30%;
	text-align: center;
	margin: 0 0 20px 0;
}
@media only screen and (max-width : 599px) {
    .guest-area__item {
        overflow: hidden;
        flex-basis: 45%;
        text-align: center;
        margin: 0 0 10px 0;
    }
}


.guest-area__image {
	box-sizing: border-box;
	width: 100%;
	height: auto;
	margin: 0 0 15px;
}


/********** footer **********/
footer {
	overflow: hidden;
	width: 100%;
	padding: 50px 0 0;
	background-color: #fff;
}

.footer_bottom {
	display: flex;
	width: 1000px;
	margin: 0 auto 150px auto;
}

	@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;
	font-size: 10px;
}

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