/*240326 oshima add*/
.byouki{
	font-size:1rem;
	color:#c50000;
}
.nav-toggle{
	scale:1.5;
}
@media screen and (max-width:768px){
	.nav-toggle{
		scale:1;
	}
}

body{
	margin:0;
	padding:0;
}
@media screen and (max-width: 450px){
	html{
  		height: -webkit-fill-available;
	}
	body{
 		min-height: 100vh;
  		min-height: -webkit-fill-available;
	}
}
body, td, th, input, textarea, dt, dd, ul, li, a, p {
    color: rgb(0, 0, 0);
    font-family: "jp-font", "Shippori", serif;
    font-size: 1rem;
    font-weight: 600;
}
body, td, th, input, textarea, dt, dd, ul, em, span, div, p {
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "palt";
    letter-spacing: .08rem;
}
img, div, p, blockquote, h1, h2, h3, h4, h5, h6, ul, ol, li, dl, dt, dd, form, fieldset, textarea, address, article, aside, dialog, figure, footer, header, hgroup, nav, section {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 1rem;
    text-decoration: none;
    list-style-type: none;
}
.header {
    width: 100%;
    height: 0;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transition: all .5s cubic-bezier(0.25, 1, 0.5, 1) 0s;
}
img {
    width: 100%;
    height: auto;
    vertical-align: middle;
}
div {
    display: block;
}
a {
    color: #000;
    text-decoration: none;
    background-color: rgba(0,0,0,0);
}
a, a:focus, a:hover, a:active {
    outline: none;
}
@font-face {
  /* ① ここにfont-familyで指定したい名前を書く*/
  font-family: "en-font";
  /* フォントが置かれているパスを書く */
  src: url("../fonts/caveat/Caveat-Regular.ttf") format("TrueType") }
}
@font-face {
  font-family: "jp-font";
  src: url("../fonts/shippori/ShipporiMinchoB1-OTF-Regular.otf") format("OpenType") }
}
/* ここからトップページ共通の設定 */
#top .s-tt {
    margin-bottom: 4rem;
}
#top .s-tt span {
    display: block;
    font-family: "jp-font", "Shippori", serif;
    line-height: 1;
	font-weight:lighter;
}
#top .s-tt span.en {
    font-size: 3.3rem;
    margin-bottom: 0.5rem;
    color: #211706;
	font-weight:bold;
}
#top .s-tt span.jp {
    font-size: 1.1rem;
    color: #c7a23f;
    line-height: 1;
	padding-bottom:0.5rem;
	font-weight:bold;
}
/* ここまでトップページ共通の設定 */
/* ここからローディング設定 */
.is-hide{
    display: none;
}
#loader-bg {
	background: #fff;
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 999;
	text-align:center;
}
.loading_logo {
	position:absolute;
	top:30%;
	left:13%;
	display:flex;
	flex-direction:column;
}
.maximg-loading {
	width:20%;
    display: inline-block;
	animation:rotate_anime 1s linear infinite;
	margin:0 auto;
}
.maxtitle-loading {
	width:20%;
	margin:0 auto;
}
@media screen and (max-width: 450px){
	#top #loader-bg {
		display:none;
	}
}
/*@keyframes rotate_anime {
	0% { transform:rotate(0deg); }
	100% { transform:rotate(360deg); }
}*/
/* ここまでローディング設定 */
/* ここからfixedのタイトル */
.header_sitett {
    position: fixed;
    top: 1.5rem;
    left: 2rem;
	width:15rem;
}
.header_sitett a{
    text-decoration: none;
    display: block;
    transition: all .3s;
}
.sitetitle1{
	background: url(../imgs/maxlogo-wt-lt.svg) 0 0 no-repeat;
	background-size:100% auto;
    width: 120%;
	height:7rem;
    transition: all .3s;
	display:none;
}
.sitetitle2{
	background: url(../imgs/maxlogo-br-lt.svg) 0 0 no-repeat;
	background-size:100% auto;
    width: 100%;
	height:9rem;
    display: block;
    transition: all .3s;
}
.changecolor1{
	display:none;
}
.changecolor2{
	display:block;
	animation: appear .7s ease;
}
@keyframes appear{
	0% { opacity: 0; }
	100% { opacity: 1; }
}
.header_sitett a:hover {
    text-decoration: none;
	opacity: 0.4;
}
@media screen and (max-width: 450px){
	.header_sitett a:hover {
    	text-decoration: none;
		opacity: 1;
	}
}
/* ここまでfixedのタイトル */
/* ここからfixedの予約ボタン */
.header_re{
    position: fixed;
    top: calc(50vh - 5rem);
    right: 0;
	width:3rem;
}
.header_re a{
	background:#4b340e;
    transition: .5s;
    width: 100%;
	height:11rem;
	color:#fff;
	line-height:0;
	text-align:center;
    text-decoration: none;
    display: flex;
	justify-content:center;
    font-family: "jp-font", "Shippori", serif;
	font-size:0.9rem;
	font-weight:bold;
}
.header_re a:hover{
	opacity:0.8;
}
@media screen and (max-width: 450px){
	.header_re a:hover{
		opacity: 1;
	}
}
.header_re span{
	display: block;
    writing-mode: vertical-rl;
   font-feature-settings: initial;
}
.header_re span::after{
	font-family: "icomoon";
	content: "\ea15";
    margin-top: 0.5rem;
}
/* ここまでfixedの予約ボタン */
/* ここからfixedのメニューボタン */
.nav-toggle {
    position: absolute;
    top: 0.9rem;
    right: 2%;
	width: 4%;
	cursor: pointer;
    transition: all .3s;
	z-index:100;

}
.nav-toggle:hover {
	opacity: 0.4;
}

.nav-lead-text {
    margin-top: 10px;
    color: white;
    font-weight: bold;
    text-align: center;
}
.nav-click {
    font-size: 10px;
}

@media screen and (max-width: 450px){
	.nav-toggle:hover {
		opacity: 1;
	}
}
.nav-button1{
	background: url(../imgs/saturn-white.svg) 0 0 no-repeat;
	background-size:100% auto;
    width: 100%;
	height:3.5rem;
	display:block;
}
.nav-button2{
	background: url(../imgs/saturn-brown.svg) 0 0 no-repeat;
	background-size:100% auto;
    width: 100%;
	height:3.5rem;
	display:none;
}
.changecolor1{
	display:none;
}
.changecolor2{
	display:block;
	animation: appear .7s ease;
}
@keyframes appear{
	0% { opacity: 0; }
	100% { opacity: 1; }
}
.nav-toggle-txt{
    font-family: "en-font","Caveat",sans-serif;
    color: #fff;
    letter-spacing: 0;
    font-size: 1.5rem;
    font-weight: normal;
    display: block;
    line-height: 0;
	text-align:center;
	transition:all .4s;
}
.changecolor3{
	color:#211706;
}
/* ナビボタンのオンオフ */
.nav-toggle .nav-button{
	opacity: 1;
	transition:all 1s;
}
.nav-toggle.nav-toggle-active .nav-button{
	opacity: 0;
}
.nav-toggle span{
	display: inline-block;
    transition: all .5s;
    position: absolute;
	opacity:0;
}
.nav-toggle span:nth-of-type(1),
.nav-toggle span:nth-of-type(2) {
	height: 1px;
	background: #fff;
    width: 70%;
    left: 15px;
}
.nav-toggle span:nth-of-type(1) {
	top:13px;
}
.nav-toggle span:nth-of-type(2) {
	top:36px;
}
/* activeクラスが付与されると線が回転して×になる */
.nav-toggle.nav-toggle-active span:nth-of-type(1) {
    top: 18px;
    left: 11px;
    transform: translateY(6px) rotate(-45deg);
    width: 70%;
	opacity:1;
}
.nav-toggle.nav-toggle-active span:nth-of-type(2){
    top: 30px;
    left: 11px;
    transform: translateY(-6px) rotate(45deg);
    width: 70%;
	opacity:1;
}
@media screen and (max-width: 450px){
	#top .nav-toggle.nav-toggle-active span:nth-of-type(1) {
		left: 18px;
		top: 10px;
	}
	#top .nav-toggle.nav-toggle-active span:nth-of-type(2){
		left: 18px;
		top: 22px;
	}
}
/* ここまでfixedのメニューボタン */
/* ここからfixedのスライドメニュー */
.header_menu{
	background:#4b340e;
	display:flex;
	fustify-content:center;
	align-items:center;
	width:100%;
	height:100%;
	box-sizing:border-box;
	overflow-y: scroll;
	position:fixed;
	top:0;
	left:-120%;
	z-index:10;
	transition:left .7s, opacity 1.3s;
	opacity:0;
}
.open-menu{
	left: 0;
	opacity: 1;
}
.header_menu nav{
	max-width:calc(98rem+12%);
	width: 100%;
	height:100%;
	margin:0 auto;
    padding: 0 6%;
    box-sizing: border-box;
	display:flex;
	justify-content:space-around;
	align-items:center;
	flex-wrap:wrap;
}
/* (スライドメニューの左側↓) */
.header_menu_logo {
    width: 25rem;
    max-width: 25rem;
    position: relative;
	top:0rem;
	left:4rem;
    text-align:center;
}
.header_menu_logo img{
	width:100%;
}
.header_menu_logo::after{
	width: 7rem;
	height: 7rem;
	background: url(../imgs/daikoku.png) no-repeat center center / 60px auto;
	background-size: auto 100%;
    transform: scale(-1, 1);
	display: block;
	content: "";
    position: absolute;
    bottom: -15rem;
    left: 10%;
	animation: daikokumove 5s ease-in-out infinite;
}
@keyframes daikokumove{
	0%, 70%, 75%, 80% { transform: scale(-1, 1.0); }
	72.5%, 77.5% { transform: scale(-1, 0.95); }
}
/* (スライドメニューの左側↑) */
/* (スライドメニューの右側↓) */
.header_menu_inr{
	padding: 7rem 7rem 7rem 15rem;
    box-sizing: border-box;
    min-width: 42rem;
    font-size: 0.5rem;
	text-align:left;
	overflow:auto;
}
.header_menu_inr ul{
	margin: 0;
    padding: 0;
    list-style-type: none;
	line-height:2.8;
}
.header_menu_inr ul li a,
.header_menu_inr .info .item .st,
.header_menu_inr .info .item a.phone{
    font-family: "jp-font", "Shippori", serif;
    color: #fff;
    display: block;
    text-decoration: none;
	font-weight: 900;
}
.header_menu_inr ul li a{
    font-size: 1.2rem;
	text-align:left;
}
.header_menu_inr ul li a.current {
	border-bottom: 2px dashed #fff;
}
/*
.header_menu_inr ul li a.current:before {
	border: .5px solid #fff;
	position: absolute;
	bottom: 2px;
	width: 100%;
	content: "";
}*/
.header_menu_inr ul li:not(.reservation) a{
    position: relative;
    display: inline-block;
    overflow: hidden;
    padding-bottom: 0rem;
	background:
    	linear-gradient(currentColor 0 0) bottom 0   left  0 /var(--d, 0) 1px no-repeat,
    	linear-gradient(currentColor 0 0) bottom 5px right 0 /var(--d, 0) 1px no-repeat;
	transition: 0.5s, background-position 0s 0.5s;
	border-color:#fff;
}
.header_menu_inr ul li:not(.reservation) a:hover{
	--d: 100%;
	border: none;
	background: none;
	/*background-position: bottom 0 right 0, bottom 5px left 0;*/
}/*
@media screen and (max-width: 450px){
	.header_menu_inr ul li:not(.reservation) a:hover{
		background-position: bottom 0 right 0, bottom 5px left 0;
	}
}*/
/* (スライドメニューの右側 リスト↑) */
/* (スライドメニューの右側 予約↓) */
.header_menu_inr ul li.reservation {
    margin-top: 1.5rem;
}
.header_menu_inr ul li.reservation a {
    width: 100%;
    font-size: 1.1rem;
    border: 1px solid #fff;
    padding: 0.5rem;
    box-sizing: border-box;
    text-align: center;
    transition: all .5s cubic-bezier(0.25, 1, 0.5, 1) 0s;
}
.header_menu_inr ul li.reservation a:hover {
	background: #fff;
	color: #000;
}
@media screen and (max-width: 450px){
	.header_menu_inr ul li.reservation a:hover {
		background: #4b340e;
		color: #fff;
	}
}
/* (スライドメニューの右側 予約↑) */
/* (スライドメニューの右側 電話＆住所↓) */
.header_menu_inr .info {
    margin-top: 4rem;
    color: #fff;
}
.item a.phone {
    color: #fff;
    font-size:1.3rem;
    line-height: 1;
	font-weight:bold;
}
.item a.phone em {
    font-size: 1rem;
    padding-right: 0.3rem;
}
em {
    font-style: normal;
}
.header_menu_inr .info .item+.item {
    margin-top: 4rem;
}
.header_menu_inr .info .item .st {
    font-size: 1rem;
}
.header_menu_inr .info .item p {
    font-size: 0.9rem;
	padding-top:0.3rem;
	color: #fff;
}
/* ここまでfixedのスライドメニュー */
/* ここからheaderのスライドショー */
.main_slide_wrap{
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
    z-index: 1;
    transition: opacity .2s ease-out 0s,filter .4s ease-in-out 0s;
}
.main_slide{
    position: relative;
    box-sizing: border-box;
}
.main_logo{
    position: absolute;
    top: 50%;
    left: 50%;
		transform: translateX(-50%) translateY(-55%);
    z-index: 10;
    width: 60%;
    margin-left: 0;
    opacity: 1;
    text-align:center;
}
.slick-slider{
    position: relative;
    display: block;
    box-sizing: border-box;
}
.slick-track{
	height:100vh;
	width:100%;
}
.main_slideshow{
	margin:0;
	padding:0;
    width: 100%;
    height: 100vh;
    position: relative;
    outline: none;
	display: block;
}
.main_slick_slide{
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
}
@media screen and (max-width: 450px){
	#top .main_slick_track .slick-list .slick-track{
		width:100%;
		height: 100vh;
	}
	#top .main_slideshow {
		height: 100vh;
	}
}
.main_slick_slide:nth-child(1){ background-image: url(../imgs/yakushima2.jpg);}
.slick-slider .slick-dots{
	padding:0;
	margin:0;
	width:100%;
	display:absolute;
	bottom:1rem;
	z-index:20;
}
.slick-slider .slick-dots li button:before{
	color:#f5f5f5;
}
.slick-slider .slick-dots li.slick-active button:before{
	color:#fff;
}
.main_copy{
	height:3%;
    font-size: 1.4rem;
    font-weight: normal;
    font-family: "en-font","Caveat",sans-serif;
    color: #fff;
    position: absolute;
    top: 70%;
    left: 2.3%;
    transform: rotate(-90deg);
    transform-origin: left;
}
.napoleon_logo{
    width: 80%;
    /*max-width:450px;*/
}
/* ここまでheaderのスライドショー */
/* ここからコンセプト部分 */
.concept {
    margin-top: 11.5rem;
}
.main_concept1 {
    position: relative;
    width: 84%;
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}
/* (コンセプトのタイトル↓) */
.main_concept1 h2{
    transform: rotate(90deg);
    transform-origin: bottom left;
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
	opacity: 0;
}
.main_concept1 h2.scrollin {
    top: -6.7rem;
	transition: all 1s;
	opacity: 1;
}
.main_concept_tt span+span {
    margin-left: 1.5rem;
}
/* (コンセプトのタイトル↑) */
/* (コンセプトの画像1-1↓) */
.main_concept1 .wrap {
    padding-left: 7rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.main_concept1 .wrap .img {
    position: relative;
	width:55%;
	height:auto;
}
.main_concept1 .wrap .img::after {
    position: absolute;
    bottom: -2rem;
    left: 0;
    content: "It is important that you believe in yourself!";
    display: block;
    font-size: 1rem;
    font-weight: normal;
    font-family: "en-font","Caveat",sans-serif;
    color: #1b2f5b;
    letter-spacing: 0.5;
    line-height: 1.5;
}
/* (コンセプト１の画像 左側 ↑) */
/* (コンセプト１の文章など右側 ↓) */
.main_concept1 .wrap .txt {
    width: 42%;
    padding-left: 8%;
    position: relative;
}
.main_concept1 .wrap .txt::before {
    position: absolute;
    top: -7rem;
    right: -2.5rem;
    content: "";
    background: url(../imgs/concept1icon.png) 0 0 no-repeat;
    background-size: 100% auto;
    width: 8rem;
    height: 8rem;
    display: block;
}
.c_tt_lv1 {
    line-height: 1;
    margin-bottom: 2.3rem;
	font-weight:normal;
}
.c_tt_lv1 span {
    font-size: 1.9rem;
    font-family: "jp-font", "Shippori", serif;
    display: block;
    line-height: 1.7;
	font-weight:900;
}
.main_concept1 .wrap .txt p{
	font-size:0.9rem;
    line-height: 1.9rem;
}
.conceptFadein1:not(h2) {
	opacity: 0;
	transition: all .8s;
	transform: translateY(0);
    will-change: transform,opacity;
}
.conceptFadein1.scrollin:not(h2) {
	opacity: 1;
	transform: translateY(-3rem);
}
/* (コンセプト１の文章など右側 ↑) */
/* (コンセプト２の文章 左側 ↓) */
.main_concept2 {
    margin: 13.5rem 0 0 0;
    width: 100%;
    box-sizing: border-box;
    text-align:center;
}
.main_concept2 .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main_concept2 .wrap .txt {
    max-width: 50rem;
    width: 100%;
	padding:12% 8% 0;
}
.main_concept2 .wrap .txt p{
	font-size:0.9rem;
    line-height: 1.9rem;
}
.main_concept2 .i1.conceptFadein2.flex{
    display: flex;
}
.main_concept2 .i1.conceptFadein2.flex img{
    width: 70%;
    height: auto;
}
@media screen and (max-width: 768px){
    .main_concept2 .i1.conceptFadein2.flex{
        flex-direction: column;
        align-items: center;
    }
    .main_concept2 .i1.conceptFadein2.flex img{
        width: 100%;
    }
}
/* (コンセプト２の文章 左側 ↑) */
/* (コンセプト２の画像など右側 ↓) */
.main_concept2 .wrap .img {
    position: relative;
}
.main_concept2 .wrap .img .i1 {
	position: relative;
	top:6.5rem;
	width:38.5rem;
    gap: 1.5rem;
}
.main_concept2 .wrap .img .i1::before {
    position: absolute;
    top: -3rem;
    left: 0rem;
    content: "";
    background: url(../imgs/concept2-1icon.png) 0 0 no-repeat;
    background-size: 100% auto;
    width: 9rem;
    height: 10rem;
    display: block;
}
.main_concept2 .wrap .img .i2 {
    width: 45%;
    position: absolute;
    top: 4rem;
    right: 30%;
    margin-top: 60%;
}
/* (コンセプト２の画像など右側 ↑) */
/* (コンセプト２のフェードイン ↓) */
.main_concept2 .wrap .txt,
.main_concept2 .wrap .img .i1,
.main_concept2 .wrap .img .i2,
.main_concept2 .img2 {
	opacity: 0;
	transform: translateY(0);
    will-change: transform,opacity;
	transition: all .9s;
    transition-delay: .2s;
}
.main_concept2 .wrap .txt.scrollin,
.main_concept2 .wrap .img .i1.scrollin ,
.main_concept2 .wrap .img .i2.scrollin,
.main_concept2 .img2.scrollin {
	opacity: 1;
	transform: translateY(-4rem);
	transition: all .9s;
}
.main_concept2 .wrap .img .i2::after {
	width:13rem;
    margin-top: 88%;
    content: "By examining your Saturn level, you can know your present and future fortune.";
    white-space: pre-wrap;
    display: block;
    font-size: 0.9rem;
    font-weight: normal;
    font-family: "en-font","Caveat",sans-serif;
    color: #1b2f5b;
    letter-spacing: 0;
    line-height: 1.3;
}
.main_concept2 .wrap .img .i2::after {
    position: absolute;
    top: 5rem;
    right: -4rem;
    transform: rotate(90deg);
    transform-origin: top right;
	opacity: 0;
}
.main_concept2 .wrap .img .i2.scrollin::after {
    top: 3rem;
	transition: all .9s;
	opacity: 1;
}

/* (コンセプト２のフェードイン ↑) */
/* (コンセプト２の画像３枚目 ↓) */
.main_concept2 .img2 {
    width: 45%;
    margin-left: 7%;
    margin-top: 20%;
    position: relative;
}
.main_concept2 .img2::before {
    position: absolute;
    top: -5rem;
    left: 0rem;
    content: "";
    background: url(../imgs/concept2-2icon.png) 0 0 no-repeat;
    background-size: 100% auto;
    transform: scale(-1, 1);
    width: 10rem;
    height: 15rem;
    display: block;
}
/* (コンセプト２の画像３枚目 ↑) */
/* (コンセプト３ ↓) */
.main_concept3{
    text-align: center;
    margin-top: 8rem;
    padding: 0 2.5rem;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(4rem);
    transition: all .9s;
}
.main_concept3.scrollin {
    opacity: 1;
    transform: translateY(0);
    transition: all .9s;
}
.c-tt_lv1 span {
    font-size: 2.5rem;
    font-family: "jp-font", "Shippori", serif;
    display: block;
    line-height: 1.6;
	font-weight:normal;
}
.main_concept3 .txt p{
	font-size: 0.9rem;
	margin-top:2rem;
    line-height: 2;
}
.main_concept3 .napoleon_logo{
    max-width:20%;
}
/* (コンセプト３の文章 ↑) */
/* (コンセプト３のリンク ↓) */
.main_concept3_link {
    margin-top: 2rem;
}
.main_concept3_link  {
    transition: all .5s cubic-bezier(0.25, 1, 0.5, 1) 0s;
    line-height: 1;
    display: inline-block;
    position: relative;
	text-decoration:none;
	font-size:0.9rem;
    color: #000;
    background-color: rgba(0,0,0,0);
	font-weight:normal;
}
.main_concept3_link span {
    display: block;
    line-height: 1.4;
    position: relative;
    z-index: 3;
    text-align: left;
    padding-right: 2rem;
    font-family: "jp-font", "Shippori", serif;
	font-weight:900;
}
.main_concept3_link span::after {
    font-family: "icomoon";
    content: "\ea15";
    position: absolute;
	top:0;
    right: 0rem;
    z-index: 2;
    font-weight: normal;
    display: block;
    font-size: 1rem;
}
br.sp{
	display:none;
}
/* (コンセプト３のhover色変更 ↓) */
.main_concept3_link {
  position: relative;
  display: inline-block;
  padding: 1em 2em;
  border: 2px solid #a9a9a9;
  color: #000;
  text-align: center;
  text-decoration: none;
  outline: none;
  transition: all .2s;
}
.main_concept3_link::before,
.main_concept3_link::after {
  position: absolute;
  top: -2px;
  left: -2px;
  z-index: 2;
  content: '';
  width: 0;
  height: 0;
  border: 2px solid transparent;
  box-sizing: content-box;
}
.main_concept3_link:hover {
	color: brown;
}
.main_concept3_link:hover::before,
.main_concept3_link:hover::after {
	width: 100%;
	height: 100%;
	opacity:0.5;
}
.main_concept3_link:hover::before {
  border-top-color: #211706;
  border-right-color: #211706;
  transition: width .3s, height .3s .3s;
}
.main_concept3_link:hover::after {
  border-bottom-color: #211706;
  border-left-color: #211706;
  transition: height .3s, width .3s .3s;
}
@media screen and (max-width: 450px){
	.main_concept3_link:hover {
  		color: #000;
	}
	.main_concept3_link:hover::before,
	.main_concept3_link:hover::after {
		width: 0;
		height: 0;
		opacity: 1;
	}
	.main_concept3_link:hover::before {
 		border-top-color: #a9a9a9;
 	 	border-right-color: #a9a9a9;
	}
	.main_concept3_link:hover::after {
		border-bottom-color: #a9a9a9;
		border-left-color: #a9a9a9;
	}
}
/* (コンセプトの4-1↓) */



/* (コンセプトの画像4-1↓) */
.main_concept4 .wrap {
    padding-left: 7rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.main_concept4 .wrap .img {
    position: relative;
	width:55%;
	height:auto;
}
.main_concept4 .wrap .img::after {
    position: absolute;
    bottom: -2rem;
    left: 0;
    content: "It is important that you believe in yourself!";
    display: block;
    font-size: 1rem;
    font-weight: normal;
    font-family: "en-font","Caveat",sans-serif;
    color: #1b2f5b;
    letter-spacing: 0.5;
    line-height: 1.5;
}
/* (コンセプト4の画像 左側 ↑) */
/* (コンセプト4の文章など右側 ↓) */
.main_concept4 .wrap .txt {
    width: 42%;
    padding-left: 8%;
    position: relative;
}
.main_concept4 .wrap .txt::before {
    position: absolute;
    top: -7rem;
    right: -2.5rem;
    content: "";
    background: url(../imgs/concept1icon.png) 0 0 no-repeat;
    background-size: 100% auto;
    width: 8rem;
    height: 8rem;
    display: block;
}
.c_tt_lv1 {
    line-height: 1;
    margin-bottom: 2.3rem;
	font-weight:normal;
}
.c_tt_lv1 span {
    font-size: 1.9rem;
    font-family: "jp-font", "Shippori", serif;
    display: block;
    line-height: 1.7;
	font-weight:900;
}
.main_concept4 .wrap .txt p{
	font-size:0.9rem;
    line-height: 1.9rem;
}
.conceptFadein1:not(h2) {
	opacity: 0;
	transition: all .8s;
	transform: translateY(0);
    will-change: transform,opacity;
}
.conceptFadein1.scrollin:not(h2) {
	opacity: 1;
	transform: translateY(-3rem);
}
/* (コンセプト１の文章など右側 ↑) */
/* ここまでコンセプト部分 */
/* ここから中央のイラスト部分 */
.center_illust {
    width: 100%;
    height: 100vh;
    margin-top: 5rem;
    position: relative;
    z-index: 1;
}
.center_illust img {
    width: 60%;
    height: auto;
	margin:0 auto;
	display:block;
}
.center_illust{
	opacity: 0;
	transform: translateY(4rem);
	transition: all .9s;
}
.center_illust.scrollin{
	opacity: 1;
	transform: translateY(0);
	transition: all 1.1s;
}
/* ここまで中央のイラスト部分 */
/* ここからメニュー部分 */
.main_menu {
    margin-top: 5rem;
}
.main_menu_nav {
    position: relative;
}
.main_menu_nav p {
    font-size:0.9rem;
}
.c-inr {
    width: 100%;
    max-width: calc(1000px + 6rem);
    margin: 0 auto;
    padding: 0 3rem;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}
.main_menu_nav_list {
    margin-top: 4rem;
    margin-left: -2.5%;
    margin-right: -2.5%;
    display: flex;
    justify-content: flex-start;
    position: relative;
}
.main_menu_nav_list li {
    max-width: 30rem;
    width: 33.3333333333%;
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 2.5rem;
    position: relative;
    margin: 0 2.5%;
}
.main_menu_nav_list li::after {
    width: 2rem;
    height: 1px;
    background: #211706;
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    display: block;
    transition: all .5s;
}
.main_menu_nav_list li:hover::after {
	width:100%;
}
@media screen and (max-width: 450px){
	.main_menu_nav_list li::after {
		width: 0;
	}
	.main_menu_nav_list li:hover::after {
		width: 0;
	}
}
.main_menu_nav_list li a .img{
	width:580;
	height:400;
	margin:0 auto;
	overflow:hidden;
	object-fit: cover;
	backface-visibility: hidden;
}
.main_menu_nav_list li a .img img{
	transition:all .5s;
}
.main_menu_nav_list li a .img img:hover {
	transform:scale(1.1, 1.1);
}
@media screen and (max-width: 450px){
	.main_menu_nav_list li a .img img:hover {
}
}
.main_menu_nav_list li a .txt .tt{
	margin-top:1.8rem;
	margin-bottom:1rem;
	font-size:16.5px;
	letter-spacing:0.1rem;
    font-family: "jp-font", "Shippori", serif;
    line-height: 1.7;
}
.main_menu_nav_list li a .txt p{
	line-height:1.8rem;
}
.main_menu{
	opacity: 0;
	transform: translateY(4rem);
	transition: all .9s;
}
.main_menu.scrollin{
	opacity: 1;
	transform: translateY(0);
	transition: all 1.1s;
}
/* ここまでメニュー部分 */
/* ここからslickのアクセス部分 */
.main_access_wrap {
    width: 100%;
    background: #ffffdb;
    box-sizing: border-box;
    position: relative;
    padding: 4rem 0 2rem;
    margin: 18rem 0 10rem;
}
.main_access_wrap::before {
    width: 100%;
    height: 10rem;
    position: absolute;
    top: -10rem;
    left: 0;
    content: "";
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1300 148.445" enable-background="new 0 0 1300 148.445" xml:space="preserve"><path fill="%23ffffdb" d="M1300,17.086c-174.159,78.575-427.616,117.86-666.689,46.224C453.186,9.329,196.327-51.448,0,73.346v75.1  h1300V17.086z"/></svg>');
    background-size: cover;
    z-index: 2;
    display: block;
}
.main_access_wrap::after {
    width: 100%;
    height: 10rem;
    position: absolute;
    bottom: -10rem;
    left: 0;
    content: "";
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1300 170" enable-background="new 0 0 1300 170" xml:space="preserve"><path fill="%23ffffdb" d="M1300,82.339c-0.994-0.03-1.979-0.052-2.949-0.069c-84.021-1.421-167.1-11.527-248.942-24.067  C923.829,39.162,801.024,14.085,674.231,3.859c-131.66-10.617-258.208,2.237-347.828,19.6  c-108.208,20.08-215.427,38.849-326.4,49.254v96.794l1300,0.5L1300,82.339z"/></svg>');
    background-size: cover;
    z-index: 2;
    display: block;
	transform: scale(1, -1);
}
/* (アクセスのタイトル ↓) */
#top .main_access_nav_tt {
    margin-bottom: 3.5rem;
    text-align: center;
}
#top .main_access_lead {
    text-align: center;
	font-size:0.9rem;
}
/* (アクセスのタイトル ↑) */
/* (アクセスのslick部分 ↓) */
.access_slick_list {
    margin: 4.5rem -0.5% 0;
    display: flex;
    justify-content: flex-start;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    padding: 0;
	margin-bottom:0;
}
.access_slick-slide {
    max-width: 30rem;
    width: 33.3333333333%;
	height: 100%;
    background: #fff;
    box-sizing: border-box;
    padding: .7rem;
    margin: 0 .35%;
}
.access_slick_list .slick-list .slick-track {
	height:24rem;
}
/* (アクセスのslick部分 ↑) */
/* (slickの画像 ↓) */
.access_slick-slide .img{
	overflow:hidden;
}
.access_slick-slide .img img{
	transition:all .5s;
}
.access_slick-slide .img img:hover {
	transform:scale(1.1, 1.1);
}
/* (slickの画像 ↑) */
/* (slickのテキスト ↓) */
#top .access_slick_list li .txt {
    padding: 1.5rem 1rem 0;
	height:10rem;
	font-weight:normal;
}
#top .access_slick_list li .txt .tt {
    font-size: 1rem;
    font-family: "jp-font", "Shippori", serif;
    line-height: 1.6;
    margin-bottom: 1rem;
	font-weight:bold;
    transition: all .5s;
}
#top .access_slick_list li .txt p {
	font-size:0.9rem;
    line-height: 1.8;
}
/* (slickのテキスト ↑) */
/* (slickのドット設定 ↓) */
.access_slick_list .slick-dots{
	padding:0;
	margin:0;
	width:100%;
	display:block;
	bottom:1rem;
	right:-33%;
	z-index:5;
}
.access_slick_list .slick-dots li button:before{
	color:brown;
}
.access_slick_list .slick-dots li.slick-active button:before{
	color:#000;
}
/* (slickのドット設定 ↑) */
/* (slickの矢印設定 ↓) */
.access_slick_list {
    position: relative;
}
.access_slick_list .slick-arrow{
	position:absolute;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	z-index:5;
}
.access_slick_list .slick-arrow::before {
    font-family: "icomoon";
    content: "\ea50";
    font-size: 3rem;
    color: #c7a23f;
}
.access_slick_list .slick-prev {
    left: 1.5rem;
    transform: translateY(-50%) scale(-1, 1);
}
.access_slick_list .slick-next {
    right: 1.5rem;
    transform: translateY(-50%);
}
/* (slickの矢印設定 ↑) */
/* (アクセスのフェードイン ↓) */
.main_access_wrap{
	opacity: 0;
	transform: translateY(4rem);
	transition: all .9s;
}
.main_access_wrap.scrollin{
	opacity: 1;
	transform: translateY(0);
	transition: all 1.1s;
}
/* ここまでslickのアクセス部分 */
/* ここからGoogleマップのアクセス部分 */
.main_map_wrap{
	margin-top: 25rem;
}
.c-inr {
    width: 100%;
    max-width: calc(1000px + 6rem);
    margin: 0 auto;
    padding: 0 3rem;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}
#top .main_map {
    width: 100%;
    height: 31rem;
    margin-bottom: 5rem;
}
#top .main_map iframe {
    width: 100%;
    height: 100%;
}
/* (Googleアクセス左側の文章 ↓) */
#top .main_map_info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#top .main_map_info .tt {
    padding-right: 1rem;
}
/* (Googleアクセス左側の文章(address＆TEL) ↓) */
#top .main_map_info .txt {
    max-width: 42.5rem;
}
#top .main_map_info .txt p{
	font-size: .9rem;
	line-height:1.9;
}
#top .main_map_info .txt .info {
    margin: 3rem 0;
    display: flex;
}
#top .main_map_info .txt .info .item {
    border-left: 1px solid #e6e6e6;
    padding-left: 1.1rem;
}
#top .main_map_info .txt .info .item .st {
    font-family: "jp-font", "Shippori", serif;
    font-size: 1rem;
    color: rgb(27, 47, 91);
    display: block;
    line-height: 1;
    margin-bottom: .9rem;
	font-weight:bold;
	letter-spacing:0;
}
#top .main_map_info .txt .info .item p{
	letter-spacing:0;
}
#top .main_map_info .txt .info .item+.item {
    margin-left: 8%;
}
/* (Googleアクセス左側の文章(●文章) ↓) */
.c-list_ans {
    font-size: .8rem;
    color: #5a5a5a;
    padding-left: 1em;
    text-indent: -1em;
    padding-bottom: 0.5rem;
    line-height: 1.4;
}
.c-list_ans li+li {
    margin-top: 0.5rem;
}
/* (Googleアクセスのフェードイン ↓) */
.main_map_wrap{
	opacity: 0;
	transform: translateY(4rem);
	transition: all .9s;
}
.main_map_wrap.scrollin{
	opacity: 1;
	transform: translateY(0);
	transition: all 1.1s;
}
/* ここまでGoogleマップのアクセス部分 */
/* ここからFooter部分 */
.footer {
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    margin-top: 10rem;
    contain-intrinsic-size: 1300px;
}
.footer .pagetop {
    opacity: 0;
    transition: all .5s cubic-bezier(0.25, 1, 0.5, 1) 0s;
    position: fixed;
    right: 0rem;
    bottom: 3rem;
    z-index: 99;
}
.footer .pagetop.is-show {
    opacity: 1;
}
.footer .pagetop.is-show a {
    cursor: pointer;
}
.footer .pagetop a {
    display: block;
    transform: rotate(90deg);
    transition: all .5s cubic-bezier(0.25, 1, 0.5, 1) 0s;
    padding: .6rem;
    cursor: default;
    color: #211706;
}
.footer .pagetop a span {
    font-family: "en-font","Caveat",sans-serif;
    font-size: .9rem;
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content;
    position: relative;
    display: block;
    line-height: 1.2rem;
	font-weight:bold;
    white-space: nowrap;
}
.footer .pagetop a span::before {
    position: absolute;
    top: 50%;
    right: 3.7rem;
    display: block;
    width: 1rem;
    height: .7px;
    transition: all .5s cubic-bezier(0.25, 1, 0.5, 1) 0s;
    background: #211706;
    content: "";
    transform: rotate(180deg);
}
.footer .pagetop a span:hover::before {
	width:2rem;
	transform: rotate(180deg);
}
.footer_movie video{
    width: 100%;
    height: 100vh;
    position: relative;
	bottom:5rem;
    z-index: 1;
}
@media screen and (max-width: 450px){
	#top .footer {
    	margin-top: 5rem;
	}
	#top .footer_movie video {
		display:none;
	}
	#top .footer_inr {
		margin:6rem auto 0;
	}
}
.footer_inr {
    background: #4b340e;
    color: #fff;
    position: relative;
    z-index: 2;
	margin:0 auto;
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.footer_inr::before {
    width: 102%;
    height: 7rem;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1301.127 171.417" enable-background="new 0 0 1301.127 171.417" xml:space="preserve"><path fill="%234b340e" d="M1300.5,170.917H0.5V35.278c42.733,1.079,88.236,2.836,135.246,5.221  c42.187,2.14,86.723,4.844,132.371,8.037c73.673,5.152,150.931,11.588,236.188,19.674c46.058,4.368,92.027,7.659,136.633,9.783  c41.954,2,83.728,3.009,124.157,3.009c36.267,0,72.328-0.814,107.184-2.418c32.477-1.5,64.676-3.712,95.699-6.589  c55.14-5.113,107.937-12.413,156.926-21.7c37.376-6.936,74.379-15.747,110.87-26.4c13.725-4.078,26.556-8.273,38.135-12.469  c10.126-3.669,19.07-7.252,26.587-10.65v170.14L1300.5,170.917z"/></svg>');
    background-size: cover;
    content: "";
    display: block;
    position: absolute;
    top: -6rem;
    left: -1%;
}
.footer_inr_logo {
	display:flex;
	flex-direction:column;
}
.footer_inr_logo .footer-img1{
    width: 10rem;
    margin: 0 auto;
}
.footer_inr_logo .footer-img2{
	width: 45%;
    height: 3.5rem;
    margin: 0 auto;
	padding-top:1rem;
}
.footer_inr_logo .napoleon_logo{
    width:30%;
    max-width:200px;
    margin:0 auto;
}
.footer_inr_logo p {
	  text-align: center;
    color: #fff;
    margin: 1rem 0 0;
    font-size: 1.2rem;
}
.footer_inr_menu {
    margin-top: 2rem;
    text-align: center;
}
.footer_inr_menu li {
    display: inline-block;
}
.footer_inr_menu li a {
	font-family: "FOT-筑紫Aオールド明朝 Pr6 D", TsukuAOldMinPr6-D, serif;
    color: #fff;
	font-weight:bold;
	font-size: .95rem;
	transition:all 0.5s;
}
.footer_inr_menu li:not(.reservation) a:hover{
	opacity:0.4;
}
@media screen and (max-width: 450px){
	.footer_inr_menu li:not(.reservation) a:hover{
		opacity: 1;
	}
}
.footer_inr_menu li+li {
    margin-left: 1.8rem;
    margin-top: 2rem;
}
.footer_inr_menu li.reservation {
    margin-top: 3.3rem;
    margin-left: 0;
    display: block;
}
.footer_inr_menu li.reservation a {
    width: 100%;
    border: 1px solid #fff;
    padding: .8rem 4rem;
    box-sizing: border-box;
    text-align: center;
    transition: all .5s cubic-bezier(0.25, 1, 0.5, 1) 0s;
}
.footer_inr_menu li.reservation a:hover {
	background: #fff;
	color: #000;
}
.footer_inr_logo p {
    font-size: 1.7rem;
}
@media screen and (max-width: 450px){
	.footer_inr_menu li.reservation a:hover {
		background: #4b340e;
		color: #fff;
	}
}
.footer_inr_tel {
    text-align: center;
    font-size: .8rem;
    margin-top: 2.8rem;
}
.footer_inr_tel a {
    color: #fff;
    font-size: 1.2rem;
}
.footer_inr_address {
    margin-top: 2rem;
    text-align: center;
	font-size:.9rem;
}
.footer_copyright {
    position: relative;
    left: 0;
    z-index: 3;
    background: #211706;
    text-align: center;
    padding: 2rem 0 1.8rem;
    color: #fff;
	font-family: "FOT-筑紫Aオールド明朝 Pr6 D", TsukuAOldMinPr6-D, serif;
    font-size: .7rem;
	letter-spacing:0;
}
.footer_copyright::before {
    width: 110%;
    height: 2rem;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1301.613 41.057" enable-background="new 0 0 1301.613 41.057" xml:space="preserve"><path fill="%23211706" d="M1.113,40.556h1300V8.668c-42.733,0.254-88.236,0.667-135.246,1.228c-42.188,0.5-86.724,1.139-132.371,1.889  c-73.673,1.211-150.931,2.724-236.189,4.625c-46.057,1.027-92.026,1.8-136.633,2.3c-41.954,0.47-83.727,0.707-124.157,0.707  c-36.266,0-72.327-0.19-107.183-0.568c-32.477-0.353-64.676-0.873-95.7-1.55c-55.139-1.199-107.936-2.918-156.925-5.1  c-40.339-1.8-77.641-3.886-110.87-6.207C52.114,5.032,39.283,4.046,27.704,3.06C17.578,2.197,8.633,1.36,1.117,0.56v39.996H1.113z"/></svg>');
    background-size: cover;
    content: "";
    display: block;
    position: absolute;
    top: -2rem;
    left: -2rem;
}
/* ここまでFooter部分 */
