@charset "UTF-8";
@import url('reset.css');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;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: #f7f6f4;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.8;
    color: #626262;
    font-family: kinto-sans, sans-serif,'游ゴシック体', 'Yu Gothic', YuGothic, 'ヒラギノ角ゴ Pro','Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ ゴシック',’MS PGothic’, Arial, Helvetica, Geneva, Swiss, SunSans-Regular, sans-serif;
    font-style: normal;
    text-align: center;
    letter-spacing: 2px;
    -webkit-text-size-adjust: 100%;
	animation: fadeIn 5s ease 0s 1 normal;
	-webkit-animation: fadeIn 5s ease 0s 1 normal;
}

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

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

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

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

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

/* ----- text ----- */
p {
    margin: 1.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;}
.align--white { color: #fff;}

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

/* ----- color ----- */
.color--brown {color: #1E0C08 !important;}
.color--yellow {color: #AD9C17 !important;}
.color--green {color: #5A6C37 !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;
}

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


@media only screen and (max-width : 899px) {
    header {
        height: 80vh;
        background: #000 url(../img/header_bg_sp.jpg) center top;
        background-size: cover;
        background-repeat: no-repeat;
    }
}



.title__wrapper {
    position: absolute;
    display: block;
    float: left;
    top: 343px;
    left: 50%;
    width: 705px;
    height: 490px;
    padding: 0;
    transform: translate(-50%, -50%);
    z-index: 3;
}


@media only screen and (max-width : 899px) {
    .title__wrapper {
        top: 200px;
        width: 400px;
    }
}


.title__wrapper--logo {
    width: 705px;
    height: 490px;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    background: url(../img/title.png) no-repeat;
    background-size: 100%;
    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 : 899px) {
    .title__wrapper--logo {
        width: 320px;
        height: 235px;
        margin: 170px auto 0;
        background: url(../img/title_sp.png) no-repeat;
        background-size: cover;
    }
}

@keyframes fadeupAnime1{
    from {
      opacity: 0;
      transform: translateY(150px);
    }
  
    to {
      opacity: 1;
      transform: translateY(0);
    }
}
  
/* ----- navigator ----- */
.navigator_area {
    position: absolute;
    display: block;
    float: left;
    top: 850px;
    left: 50%;
    width: 200px;
    height: 300px;
    overflow:	hidden;
    transform: translate(-50%, -50%);
    animation-name: fadeupAnime2;
    animation-delay: 1.5s;
	animation-duration: 2s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
    opacity: 0;
}



@keyframes fadeupAnime2{
    from {
      opacity: 0;
      transform: translate(-50%, 0);
    }
  
    to {
      opacity: 1;
      transform: translate(-50%, -50%);
    }
}

.navigator_ttl {
    position: relative;
    display: inline-block;
    margin: 0 auto 30px auto;
    color: #fff;
    font-size: 1.6rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    text-align: center;
}

@media only screen and (max-width : 899px) {
    .navigator_ttl {
        margin: 0 auto 20px auto;
        color: #fff;
        font-size: 1.4rem;
    }
    
}

.navigator_ttl: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;
}

.navigator_name {
    display: inline-block;
    margin: 5px auto 0 auto;
    color: #fff;
    font-size: 1.8rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    text-align: center;
}

.navigator_area img {
    width: 200px;
    height: auto;
}

@media only screen and (max-width : 899px) {
    .navigator_area img {
        width: 150px;
        height: auto;
    }
}

/* =========================================================
	2. main structure
========================================================= */
main{
    width: 100%;
    margin: -139px auto 0;
    padding: 0;
    position: relative;
    z-index: 10;
}

@media only screen and (max-width : 899px) {
    main{
        width: 100%;
        margin: -140px auto 0;
    }
}

.content {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin: 0;
}





.content__inner {
    width: 900px;
    margin: 0 auto;
    padding: 0px 20px 0;
}

.content__inner-guest {
    padding: 50px 20px 0;
}

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

h2.text__item--title-guests:after {
    content: "";
    width: 100px;
    height: 2px;
    background-color: #789aa4;
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.text__item--title-guests {
    margin: 0 auto 40px;
		font-size: 3.2rem;
		font-weight: 900;
}

h4.text__item--title-guests{
		font-size: 1.5rem;
		font-weight:bold;
		margin-bottom: 55px;
}

.text__item--heading {
    margin: 15px auto 50px auto;
    color: #fff;
    font-size: 2.8rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    text-align: center;
    line-height: 1.8;
}


@media only screen and (max-width : 899px) {
	  .text__item--heading {
	  margin: 0 auto 25px;
	  font-size: 1.8rem;
	  text-align: left;
	  line-height: 1.6;
	  }

		.text__item--title-guests {
		    margin: 0 auto 40px;
				font-size: 2.5rem;
				font-weight: 900;
		}

		h4.text__item--title-guests{
				font-size: 1.2rem;
				font-weight:bold;
				margin-bottom: 55px;
		}
}



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

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

/* ----- headline----- */
.headline {
	overflow: hidden;
	margin: 0 auto 20px;
	text-align: center;
}

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


.headline__item-title {
    width: 275px;
    height: 50px;
    margin-bottom: 100px;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    margin: 0 auto;
    background: url(../img/title_navigator.svg);
    background-size: 100%;
}

.headline__item-heading {
    margin: 15px auto 50px auto;
    color: #fff;
    font-size: 2.8rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    text-align: center;
    line-height: 1.8;
}

@media only screen and (max-width : 899px) {
    .headline__item-heading {
        font-size: 2.2rem;
        text-align: left;
        line-height: 1.6;
    }
}



.headline__item-description {
    margin: 0 auto 25px auto;
    color: #626262;
    font-size: 1.9rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    line-height: 2.3;
    text-align: center;
		letter-spacing: 3.6px;
}

.headline__item-description:last-child {
    margin: 0 auto 50px auto;
}

@media only screen and (max-width : 899px) {
    .headline__item-description {
        margin: 15px auto;
				font-size: 1.2rem;
				text-align: center;
				letter-spacing: 2.0px;
    }
}


.text__item--photo {
    width: 70%;
    max-width: 800px;
    height: auto;
    margin: 0 auto 50px;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    border-radius: 15px; 
}

@media only screen and (max-width : 899px) {
    .text__item--photo {
        width: 100%;
        margin: 0 auto 20px;
    }
}


/* =========================================================
	3. cast
========================================================= */
/* ----- guest_list ----- */
.cast_area {
    margin: 40px auto 70px auto;
}

.cast_area figure{
    display: inline-block;
     margin: 0 69px 0 0;
}

.cast_area figure:last-child{
    display: inline-block;
		margin: 0;
		padding: 0 70px 0 0;
}

.cast_area__image {
    box-sizing: border-box;
    width: 194px;
    height: auto;
    margin: 0 0 10px;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    border-radius: 100%; 
}



@media only screen and (max-width : 899px) {
    .cast_area {
			position:relative;
			z-index:100;
		}
    .cast_area, .guest_area{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-content: flex-start;
        gap: 10px 10px;
        overflow: hidden;
        width: 100%;
        margin: 20px auto 20px auto;
    }

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


		.cast_area figure{
		    display: inline-block;
		     margin: 0 0 0 0;
				padding: 0 10px 0 0;
		}

		.cast_area figure:last-child{
		    display: inline-block;
				margin: 0;
				padding: 0 10px 0 0;
		}
}

.cast_area__item{
	overflow: hidden;
	flex-basis: 32.5%;
	text-align: center;
	margin: 0 0 20px 0;
}



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



/* ----- guest_list ----- */
.guest_area {
    margin: 40px auto 70px auto;
}

.guest_area figure{
    display: inline-block;
		margin: 0 107px 0 0;
		padding: 0 55px 0 0;
}

.guest_area figure:last-child{
    display: inline-block;
		margin: 0 0 0 45px;
		padding: 00;
}


.guest_area__item{
	overflow: hidden;
	flex-basis: 32.5%;
	text-align: center;
	margin: 0 0 20px 0;
}

.guest_area__image {
    box-sizing: border-box;
    width: 218px;
    height: auto;
    margin: 0 0 10px;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    border-radius: 100%; 
}

.bnr {
    width: 100%;
    margin: 45px auto 0;
    height: 300px;
}
.bnr a {
    margin: 0 auto;
    padding: 10px;
    display: inline-block;
    border: 1px solid #e4e4e4;
		background-color: #fff;
}

.bnr img {
	width:420px;
}









@media only screen and (max-width : 899px) {
    .cast_area__image {
        margin: 0 0 5px;
				padding: 0 0 0 10px;
    }
}

.cast_area__item--caption{
	margin: 0;
	padding: 0.1rem 0.8rem;
	line-height:1.6;
	letter-spacing: 3px;
	text-align:center;
	font-size: 1.8rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
}

@media only screen and (max-width : 899px) {
    .cast_area__item--caption {
        font-size: 1.4rem;
        letter-spacing: 0;
    }
}

.cast_area__item--caption span{
	display: block;
	padding: 0.4rem 1.0rem;
	font-size: 1.2rem;
	font-weight: 300;;
	letter-spacing: 1px;
	line-height: 1.4;
	-moz-border-radius:	10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}


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


		.guest_area figure{
		    display: inline-block;
				margin: 00;
				padding: 0;
		}

		.guest_area figure:last-child{
		    display: inline-block;
				margin: 30px 0 0 0;
				padding: 0;
		}


		.guest_area__item{
			overflow: hidden;
			flex-basis: 100%;
			text-align: center;
			margin: 0 0 20px 0;
		}

		.guest_area__image {
		    box-sizing: border-box;
		    width: 180px;
		    height: auto;
		    margin: 0 0 10px;
		    -moz-border-radius: 100%;
		    -webkit-border-radius: 100%;
		    border-radius: 100%; 
		}

	.bnr {
	    width: 90%;
	    margin: 45px auto 0;
	    height: 300px;
	}

	.bnr img {
		width:100%;
	}

}


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

