@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@600&family=Noto+Sans+JP:wght@100..900&family=Shippori+Mincho&display=swap');





/*------------------------------------------------------

   common

-------------------------------------------------------*/
:root {
    --base-color:  #080103;
	--bg-cmn-color: #ffedcd;
	--font-mincho: "Shippori Mincho", serif;
}


body {
	position: relative;
    font-size: 20px;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	color: var(--base-color);
	min-width: 1240px;
	padding-top: 20px;
}
input,
select,
textarea,
radio,
checkbox,
button {
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

img {
    vertical-align: middle;
}
.sp { display: none !important; }

.inner {
    width: 100%;
    width: 1240px;
	padding: 0 20px;
	margin:auto;
	position: relative;
}
.inner-in {
	padding: 0 150px;
}

.link {
    color: var(--main-color);
	text-decoration: underline !important;
}

/* off */
.link-off a {
    cursor: default !important;
    color: #ccc !important;
}

.hover-opa a {
	text-decoration: none !important;
}

/* ----------------------------
   header
-------------------------------*/
.header-news {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    letter-spacing: 2px;
    line-height: 1;
    background: #f1f1f1;
    width: 100%;
    height: 20px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
}
#gb-header {
    width: 100%;
    position: absolute;
    top: 20px;
    left: 0;
    z-index: 10;
}
.site-title {
    position: absolute;
    left: 20px;
    top: 20px;
}
.site-title a {
    display: flex;
    align-items: center;
	text-decoration: none !important;
}
.pc-nav-wrap {
    display: flex;
    align-items: center;
    position: absolute;
    right: 20px;
    top: 20px;
}
.pc-nav__list {
    font-size: 18px;
    font-family: var(--font-mincho);
    display: flex;
    align-items: center;
}
.pc-nav__list >li:not(:first-child) {
    margin-left: 20px;
}
.pc-nav__list >li a {
    color: #fff;
    display: block;
    line-height: 1;
    padding: 5px 20px;
    border: solid 1px;
	text-decoration: none !important;
}
.pc-sns-nav__list {
    display: flex;
    align-items: center;
    margin-left: 20px;
}
.pc-sns-nav__list >li:not(:first-child) {
    margin-left: 10px;
}

#sp-nav {
	display: none;
}

/*--------------------------
fv
--------------------------*/
@keyframes zoom-in {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

#fv {
    position: relative;
    height: 100vh;
	min-height: 600px;
}
.fv-logo-wrap {
    width: 100%;
    text-align: center;
    position: absolute;
    top: 100px;
    left: 0;
    z-index: 10;
}
.fv-catch {
    text-align: center;
    margin-top: 30px;
}
.fv-catch p {
    color: #fff;
    font-size: 32px;
    font-family: var(--font-mincho);
    display: inline-block;
    writing-mode: vertical-rl;
    text-align: left;
}

.fv-slide .swiper-slide .slide-img {
    height: 100vh;
	min-height: 600px;
    background-position: center;
    background-size: cover;
}
.fv-slide .swiper-slide-active .slide-img,
.fv-slide .swiper-slide-duplicate-active .slide-img,
.fv-slide .swiper-slide-prev .slide-img{
	animation: zoom-in 20s linear 0s 1 normal both;  
}

.fv-pic {
	position: absolute;
	z-index: 10;
}
.fv-pic img {
	display: inline-block;
	position:relative;
}
.fv-pic.fv-pic01 {
    left: 80px;
    top: 60px;
}
.fv-pic.fv-pic02 {
    right: 50px;
    top: 90px;
}
.fv-pic:after {
    content: '';
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 10px;
    left: 10px;
	z-index: -1;
}
.fv-pic.fv-pic01:after {
	background-image: url("../img/fv_pic01_bg.png");
}
.fv-pic.fv-pic02:after {
	background-image: url("../img/fv_pic02_bg.png");
}



/*--------------------------
main-nav
--------------------------*/
.main-nav {
    background: #fff;
    padding: 10px 0;
    position: sticky;
    top: 20px;
    z-index: 100;
}
.main-nav:before {
    content: '';
	width: 100%;
	height: 125px;
	background: url("../img/nav_bg.png") center top repeat-x;
	position: absolute;
	top: -124px;
	left: 0;
}
.main-nav-in {
	display: flex;
    align-items: center;
    justify-content: space-between;
}
.main-nav-logo {
    width: 223px;
}
.main-nav__list {
    font-size: 18px;
    font-family: var(--font-mincho);
    width: calc(100% - 300px);
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: space-between;
}
.main-nav__list >li a {
    color: var(--base-color);
	text-decoration: none !important;
}
.main-nav__list >li a span {
    display: block;
}


/* ----------------------------
   contets
-------------------------------*/
#main-contents {
	overflow: hidden;
}

.contents {
    padding: 100px 0;
	position:relative;
}





/* cmn-title */
.cmn-title {
    margin-bottom: 50px;
    text-align: center;
}
.cmn-title h2 {
    font-size: 40px;
    letter-spacing: 1px;
}
.cmn-title h2 span {
    color: transparent;
    -webkit-text-stroke: 1px var(--base-color);
    font-weight: 500;
}
.cmn-title p {
    font-size: 35px;
}

.cmn-main h2 {
    font-size: 30px;
    margin-bottom: 20px;
}
.cmn-main p {
    font-size: 22px;
    line-height: 2.2;
}

.more {
    margin-top: 50px;
}
.more a {
    display: inline-block;
    color: var(--base-color);
    font-size: 30px;
    line-height: 1;
    border: solid 2px var(--base-color);
    border-radius: 1000px;
    padding: 15px 30px;
	text-decoration: none !important;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.more a:hover {
	color: #fff;
	background: var(--base-color);
}

/* ----------------------------
   footer style
-------------------------------*/

#gb-footer {
    padding: 40px 0;
	background: var(--bg-cmn-color);
}
.footer-in {
	display: flex;
}
.footer-logo {
	width: 284px;
}
.footer-nav {
	display: flex;
	justify-content: space-between;
    margin-left: 100px;
}
.footer-nav__list {
    margin: 0 50px;
}
.footer-nav__list >li {
	margin-bottom: 10px;
}
.footer-nav__list >li a {
	text-decoration: none !important;
	color: var(--base-color);
}



#gb-footer .copyright {
	font-size: 16px;
	font-weight: 100;
	margin-top: 100px;
	text-align: center;
}
#gb-footer .copyright a {
	color:var(--base-color);
	text-decoration: none !important;
}

/* backtotop */
#backtotop {
    color: var(--main-color);
	width: 40px;
    height: 40px;
    background: #fff;
    cursor:pointer;
	visibility: hidden;
	opacity: 0;
    border-radius: 100px;
    border: solid 2px;
	position:fixed;
	right: 10px;
	bottom: 30px;
	z-index: 10;
   -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
#backtotop.show {
	visibility: visible;
	opacity: 1;
	bottom: 50px;
}
#backtotop:hover {
    color: #fff;
    background: var(--main-color);
}
#backtotop:after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-top: solid 2px;
    border-right: solid 2px;
    transform: rotate(-45deg);
    position: absolute;
    top: 16px;
    left: calc(50% - 6px);
}


/* -----------------------------------

media query

------------------------------------- */
@media (max-width: 1240px) {

    .inner-in {
        padding: 0;
    }
}

@media (max-width: 815px) {

	body {
        font-size: 13px;
		min-width: 375px;
        padding-top: 60px;
        overflow-x: hidden;
	}
	body.menu-fix {
		overflow: hidden;
	}
	.pc {
		display: none !important;
	}
	.sp {
		display: block !important;
	}

	.inner {
		width: 100%;
	}
    .inner-in {
        padding: 0;
    }
	#gb-header {
		background: var(--base-color);
		position: fixed;
	    z-index: 10000;
	}
	#gb-header .inner {
		height: 60px;
	}

    #menu-btn {
        width: 40px;
        height: 15px;
        cursor: pointer;
        position: fixed;
        right: 20px;
        top: 42px;
        z-index: 99999999999999999999999;
       -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    #menu-btn span {
        width: 100%;
        height: 3px;
        background: #fff;
        position: absolute;
        left: 0;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    #menu-btn span.m {
        top: 0;    
    }
    #menu-btn span.b {
        bottom: 0;
    }
    #menu-btn.active span.t {
        transform: rotate(45deg);
        top: 7px;
    }
    #menu-btn.active span.b {
        transform: rotate(-45deg);
        bottom: 6px;
    }

    #sp-nav {
		display: block;
        width: 100%;
        height: 100%;
        background: #fff;
        padding: 70px 20px;
        overflow: auto;
        opacity: 0;
        visibility: hidden;
        position: fixed;
        left: 0;
        top:0;
        z-index: 9999;
       -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    #sp-nav.active {
        opacity: 1;
        visibility: visible;
		background: var(--base-color);
    }
    .sp-nav__list >li {
        border-bottom: dotted 1px #fff;
    }
    .sp-nav__list >li a {
        display: block;
        padding: 10px;
        color: #fff;
        font-size: 16px;
        font-weight: 500;
		text-decoration: none !important;
    }

/* fv */
	#fv,
	.fv-slide .swiper-slide .slide-img {
		height: 450px;
		min-height: 450px;
	}
	.fv-logo img {
		width: 200px;
	}
	.fv-catch p {
		font-size: 24px;
	}
	.fv-pic.fv-pic01 {
		max-width: 20%;
		left: 5%;
		top: 5%;
	}
	.fv-pic.fv-pic02 {
		max-width: 20%;
		right: 5%;
		top: 2%;
	}

/* main-nav */
	.main-nav:before {
		background-size: auto 60px;
		height: 60px;
		top: -59px;
	}


/* contents */
	.contents {
		padding: 50px 0;
	}
    .cmn-title {
        margin-bottom: 40px;
    }
    .cmn-title h2 {
        font-size: 16px;
    }
    .cmn-title p {
		font-size: 32px;
    }

	.cmn-main h2 {
		font-size: 20px;
	}
	.cmn-title h2 span {
		display: block;
	}
	.cmn-main p {
		font-size: 14px;
		line-height: 2;
	}

    .more {
        text-align: center;
    }
	.more a {
		font-size: 14px;
	}

/* footer */
	.footer-in {
		display: block;
	}
	.footer-logo {
		width: 284px;
		margin: 0 auto 30px;
		text-align: center;
	}
	.footer-logo img {
		width: 200px;
	}
	.footer-nav {
		margin-left: 0;
	}
	.footer-nav__list {
		margin: 0;
		width: 48%;
	}
	#gb-footer .copyright {
		font-size: 12px;
		margin-top: 30px;
	}
}



/* ----------------------------
   HOME
-------------------------------*/
/* loading */
@keyframes loadingImg {
  0% {
    transform: rotate(-5deg);
  }
  10% {
    transform: rotate(5deg);
  }
  20% {
    transform: rotate(-5deg);
  }
  30% {
    transform: rotate(5deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(5deg);
  }
  60% {
    transform: rotate(-5deg);
  }
  70% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  90% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(-5deg);
  }

}
#loading {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    width: 100%;
    height: 100%;
    position: fixed;
	top:0;
	left:0;
    z-index: 999999999999999999999999999;
}
#loading .loading-img {
    animation: loadingImg 5s 0s infinite normal;
}


/* about */
.about-slide-wrap {
	padding: 40px 0;
	margin-top: 180px;
	position: relative;
    background: #ffedcd;
}
.about-slide-wrap:before {
    content: '';
	width: 100%;
	height: 125px;
	background: url("../img/about_slide_bg.png") center top repeat-x;
	position: absolute;
	top: -124px;
	left: 0;
}
.about-slide-logo {
    width: 100%;
    text-align: center;
    position: absolute;
    top: -40px;
}
.about-slide .slick-slide {
    margin-left: 20px;
    width: 353px;
}
.about-slide .slick-slide img {
    border-radius: 10px;
}


@media (max-width: 815px) {

	#about {
		padding-top: 0;
	}
	.about-slide-logo img {
		width: 200px;
	}
    .about-slide .slick-slide {
        margin-left: 20px;
        width: 200px;
    }

}


/* story */
#story {
    padding-top: 0;
}
.staff-slide {
	padding: 50px 0;
	margin-top: 100px;
	background: url("../img/staff_slide_bg.jpg");
}
.staff-slide .swiper-container {
	overflow: visible;
}
.staff-slide a {
	display: block;
	color: var(--base-color);
	text-align: center;
	text-decoration: none !important;
}
.staff-slide .swiper-slide-in {
	display: flex;
	justify-content: space-between;
}
.staff-slide .swiper-slide .img{
	width: 552px;
}
.staff-slide .swiper-slide .info{
	width: calc(100% - 580px);
	text-align: left;
}
.staff-slide .swiper-slide .info h3 {
	font-size: 22px;
	margin-bottom: 10px;
}
.staff-slide .swiper-slide .info h4 {
	font-size: 33px;
	margin-bottom: 10px;
}
.staff-slide .swiper-slide .info p {
	line-height: 1.6;
}
.staff-slide .swiper-slide .more-staff {
    font-size: 30px;
    line-height: 1;
	background: #fff;
	width: 100%;
	max-width: 540px;
    border: solid 2px var(--base-color);
    border-radius: 1000px;
    padding: 15px 30px;
	margin: 20px auto 0;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.staff-slide a:hover .more-staff{
	color: #fff;
	background: var(--base-color);
}


@media (max-width: 815px) {

	.staff-slide .swiper-container {
		overflow: hidden;
	}
	.staff-slide .swiper-slide-in {
		display: block;
	}
	.staff-slide .swiper-slide .img {
		width: 100%;
		text-align: center;
		margin-bottom: 30px;
	}
	.staff-slide .swiper-slide .info {
		width: 100%;
	}
	.staff-slide .swiper-slide .info h3 {
		font-size: 14px;
	}
	.staff-slide .swiper-slide .info h4 {
		font-size: 20px;
	}
	.staff-slide .swiper-slide .more-staff {
		font-size: 16px;
	}

}


/* item */
.item__list >li {
	margin-bottom: 60px;
}
.item-in {
    display: flex;
	justify-content: space-between;
}
.item-in .img {
	width: 680px;
	position:relative;
}
.item-in .img .pkg {
    max-width: 36%;
    transform: translateY(-50%);
    position: absolute;
    right: 0;
    top: 50%;
}
.item-in .info {
	width: calc(100% - 730px);
	position:relative;
}
.item-in .info h3 {
    font-size: 24px;
}
.item-in .info p {
    line-height: 2;
    margin-top: 20px;
}
.item-in .info .more {
	margin-top: 20px;
}
.item-in .info .more a {
	font-size: 24px;
	text-decoration: none !important;
}
.item__list >li:nth-child(even) .item-in{
    flex-direction: row-reverse;
}
.item__list >li:nth-child(even) .item-in .img {
    text-align: right;
}
.item__list >li:nth-child(even) .item-in .img .pkg {
    left: 0;
    right: auto;
}


@media (max-width: 815px) {

	.item-in {
		display: block;
	}
	.item-in .img {
		width: 100%;
		text-align: center;
		margin-bottom: 20px;
	}
	.item-in .info {
		width: 100%;
	}
	.item-in .info h3 {
		font-size: 18px;
	}
	.item-in .info .more a {
		font-size: 14px;
	}

}


/* movie */
#movie {
	padding: 50px 0;
	background: #e8e8e8;
}
.movie__list {
    display: flex;
    flex-wrap: wrap;
}
.movie__list >li {
    width: 48%;
    margin: 0 0 4% 4%;
}
.movie__list >li:nth-child(2n+1) {
    margin-left: 0;
}


@media (max-width: 815px) {

	.movie__list {
		display: block;
	}
	.movie__list >li {
		width: 100%;
		margin: 0 auto 30px;
	}

}


/* background */
#background {
	background: url("../img/background_main.png") center top no-repeat;
}
#background:after {
    content: '';
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, #18a86b, #063d00);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.background-main h2 {
	color: #fff;
	font-size: 35px;
	text-align: center;
}
.background-main__list {
    display: flex;
    margin-top: 80px;
    justify-content: space-between;
}
.background-main__list >li {
    font-size: 120%;
    color: #fff;
    width: 32%;
    text-align: center;
}
.background-sub {
    color: #fff;
    margin-top: 100px;
}
.background-sub__list >li {
	margin-bottom: 60px;
}
.background-sub__list >li h3 {
	font-size: 35px;
	text-align: center;
	margin-bottom: 50px;
}
.background-sub-in {
    display: flex;
    justify-content: space-between;
}
.background-sub-in .img {
	width: 50%;
}
.background-sub-in .info {
	width: 50%;
	padding: 0 5%;
}
.background-sub-in .info p {
	line-height: 2;
}
.background-sub__list >li:nth-child(even) {
	flex-direction: row-reverse;
}


@media (max-width: 815px) {
	#background {
		background-size: 100%;
	}
	.background-main h2 {
		font-size: 20px;
	}
	.background-main__list >li {
		font-size: 100%;
		text-align: left;
	}
	.background-sub {
		margin-top: 50px;
	}
	.background-sub__list >li h3 {
		font-size: 18px;
		margin-bottom: 30px;
	}
	.background-sub-in {
		display: block;
	}
	.background-sub-in .img {
		width: 100%;
		text-align: center;
		margin-bottom: 20px;
	}
	.background-sub-in .info {
		width: 100%;
		padding: 0;
	}

}


/* future */
#future {
    padding-top: 0;
	background: url("../img/future_con_bg.jpg");
}
#future:before {
    content: '';
	width: 100%;
	height: 125px;
	background: url("../img/future_bg.png") center top repeat-x;
	position: absolute;
	top: -124px;
	left: 0;
}
.future-title {
	text-align: center;
	margin-bottom: 50px;
}
.future-title h2 {
	font-size: 35px;
}
.future-title p {
    color: transparent;
    -webkit-text-stroke: 1px var(--base-color);
	font-size: 40px;
}

.future-icon__list {
    display: flex;
    justify-content: center;
    align-items: center;
}
.future-icon__list >li {
    margin: 0 10px;
}
.future-desc {
    text-align: center;
    line-height: 2;
    margin-top: 50px;
}
.future-detail {
    margin-top: 50px;
}
.future-detail__list {
    display: flex;
	flex-wrap: wrap;
    justify-content: space-between;
}
.future-detail__list li {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 24%;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    border: solid 2px;
    text-align: center;
}
.future-detail__list li h4 {
	font-size: 125%;
	margin-bottom: 10px;
}
.future-detail__list li p {
	line-height: 1.6;
	text-align: left;
	margin-bottom: 20px;
}
.future-detail__list li img {
	margin-top: auto;
}
.future-catch {
    font-size: 150%;
    font-weight: 600;
    text-align: center;
    margin-top: 80px;
}


@media (max-width: 815px) {

	.future-title {
		margin-bottom: 30px;
	}
	.future-title h2 {
		font-size: 20px;
	}
	.future-title p {
		font-size: 24px;
	}
	.future-icon__list >li {
		margin: 0 2px;
	}
	.future-desc {
		text-align: left;
		margin-top: 30px;
	}
	.future-detail__list li {
		width: 49%;
		margin: 0 0 2% 2%;
	}
	.future-detail__list li:nth-child(2n+1) {
		margin-left: 0;
	}
	.future-catch {
		font-size: 120%;
		margin-top: 40px;
		line-height: 2;
	}

}


/* news */
.news__list >li {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: dotted 1px;
}
.news__list >li a {
	color: var(--base-color);
	text-decoration: none !important;
}
.news__list .news-date {
    margin-right: 10px;
}
.news__list .news-category {
    display: inline-block;
	background: #ccc;
	padding: 5px 10px;
    margin-right: 10px;
}
.news__list .news-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 20em;
}


@media (max-width: 815px) {



}


/* blog */
#blog {
	background: #ebebeb;
}
.blog-slide .swiper-container {
	overflow: visible;
}
.blog-slide a {
	color: var(--base-color);
	text-decoration: none !important;
}
.blog-thumb {
    height: 0;
    padding-top: 64%;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}
.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
.blog-date {
    font-size: 14px;
}
.blog-title {
    font-weight: 500;
}
.blog-desc {
    font-size: 14px;
	margin-top: 10px;
}

@media (max-width: 815px) {

	.blog-thumb {
		margin-bottom: 10px;
	}
	.blog-date,
	.blog-desc {
		font-size: 10px;
	}

}

