@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*----------------------------------------------------------------------
基本レイアウト
----------------------------------------------------------------------*/

html{
	font-size: 62.5%;
}

body {
	margin: 0;
	padding: 0;
	line-height: 1.8;
	color: #333;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
	font-weight: 500;
	font-size: 1.6rem;
	background: url("../images/bg.png");
}

.wrapper {
	width: 100%;
	text-align: center;
	margin: 0 auto;
}

a img {
  transition: .3s;
}

a img:hover {
  opacity: 0.7;
}

.sp{
	display: none;
}

.inner{
  width: 650px;
  margin: 0 auto;
}

.main_inner{
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}


/*----------------------------------------------------------------------
ヘッダー
----------------------------------------------------------------------*/

header{
	position: fixed;
	width: 60px;
	height: 100vh;
	right: 0;
	background:#E28E38;
	z-index: 100;
}

.g-nav{
    position:fixed;
    z-index: 999;
    top:0;
    right: 0;
    width:30%;
    height: 100vh;
    background:#E28E38;
	transform: translateX(100%);
    transition: 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.g-nav.panelactive{
	transform: translateX(0);
}

.g-nav.panelactive .g-nav-list{
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.g-nav-list ul {
   padding: 50px;
   opacity: 0;
   transition: all .6s;
}

.g-nav.panelactive .g-nav-list ul{
	opacity: 1;
}

.g-nav-list li{
  list-style: none;
    text-align: left;
}

.g-nav-list li a{
  color: #fff;
  text-decoration: none;
  padding:10px;
  display: block;
  letter-spacing: 0.1em;
  font-weight: bold;
}

.g-nav .sns_nav{
	z-index: 999;
	left: 0;
    right: auto;
	bottom: 30px;
    padding: 0 0 0 50px;
	opacity: 0;
	transition: all .6s;
}

.g-nav.panelactive .sns_nav{
	opacity: 1;
}

.sns_nav{
	position: absolute;
	bottom: 80px;
	left: 0;
	right: 0;
	margin: auto;
}

.sns_nav li{
	margin: 10px 0 0;
}

.sns_nav a{
	display: inline-block;
}

.backtotop{
	position: fixed;
	bottom: 0;
	right: 0;
	background: #333;
	width: 60px;
	height: 60px;
}

.backtotop a{
	width: 60px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	transition: .3s all;
}

.backtotop a:hover{
	background: #fff;
}

.ar_svg{
	fill:#fff;
	transition: .3s all;
}

.backtotop a:hover .ar_svg{
	fill: #333;
}

/*========= ボタンのためのCSS ===============*/
.toggle{
  position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
  top:15px;
  right: 15px;
  cursor: pointer;
    width: 30px;
    height:30px;
}

.toggle::after {
    position: absolute;
    content: 'MENU';
    bottom: -12px;
    left: 50%;
    transform: translate(-50%, 0);
    font-size: 10px;
    letter-spacing: 0;
	color: #fff;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
}

.toggle.active::after{
    content: 'CLOSE';
}

/*×に変化*/  
.toggle span{
    display: inline-block;
    transition: 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
    position: absolute;
    left: 0;
    height: 1px;
    background: #fff;
    width: 100%;
  }

.toggle span:nth-of-type(1) {
  top:0; 
}

.toggle span:nth-of-type(2) {
  top:10px;
}

.toggle span:nth-of-type(3) {
  top:20px;
}

.toggle .openbtn-area{
    transition: 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.toggle.active .openbtn-area{
  transform: rotateY(-360deg);
}

.toggle.active span:nth-of-type(1) {
    top: 3px;
    transform: translateY(6px) rotate(-135deg);
}

.toggle.active span:nth-of-type(2) {
  opacity: 0;
}

.toggle.active span:nth-of-type(3){
    top: 15px;
    transform: translateY(-6px) rotate(135deg);
}


/*----------------------------------------------------------------------
mv
----------------------------------------------------------------------*/

.container{
	margin-right: 60px;
}

main{
    float: right;
	width: 50%;
}

.mv{
    position: fixed;
    top: 0;
    height: 100vh;
    display: block;
    width: calc(50% - 30px);
}


h1{
	position: absolute;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	z-index:2;
}

/* スライダー */

.slider {
  position:relative;
  z-index: 1;
  height: 100vh;
  display: none;
}
.slider.slick-initialized{
  display: block;
}

.slider-item01 {
    background:url("../images/slide01.webp");
}

.slider-item02 {
    background:url("../images/slide02.webp");
}

.slider-item03 {
    background:url("../images/slide03.webp");
}

.slider-item04 {
    background:url("../images/slide04.webp");
}

.slider-item {
    width: 100%;
    height:100vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}




/*----------------------------------------------------------------------
新着情報
----------------------------------------------------------------------*/

#news_list{
	width: 100%;
}



/*----------------------------------------------------------------------
フッター
----------------------------------------------------------------------*/

footer{
	background: #DEAB76;
	margin-top: auto;
}

.foot_list a{
	color: #333;
	transition: .3s all;
}

.foot_list a:hover{
	color: #fff;
}

.foot_list{
	display: flex;
	justify-content: center;
	align-content: center;
	padding: 40px 0 30px;
}

.foot_list li:not(:last-of-type){
	margin-right: 20px;
	padding-right: 20px;
	position: relative;
}

.foot_list li:not(:last-of-type)::before{
	position: absolute;
	content: '';
	width: 1px;
	height: 1em;
	background: #333;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}

.con_btn a{
	display: inline-block;
	background: #333;
	color: #fff;
	padding: 5px 40px 2px;
	border-radius: 25px;
	transition: .3s all;
}

.con_btn a:hover{
	background: #fff;
	color: #333;
}

.copy{
	padding: 50px 0 10px;
	font-size: 1.3rem;
}



 @media screen and (max-width: 1680px) {

	
.inner{
  width: 600px;
  max-width: 85%;
  margin: 0 auto;
}

}


 @media screen and (max-width: 768px) {
	 
body {
	font-size: 1.4rem;
	font-weight: 400;
}
	 
.sp{
	display: block;
}

.container{
	margin-right: 0;
}

main{
    float:none;
	width: 100%;
}

.mv{
    position:relative;
    width: 100%;
}
	 
.inner {
	max-width: 90%;
}
	 
header{
	height: auto;
	background: none;
}
	 
.toggle_wrap{
	position: relative;
}	

.toggle_wrap::before{
	position: absolute;
	content: '';
	width: 60px;
	height: 60px;
	right: 0;
	top: 0;
    background: rgba(30,30,30,.5);
    z-index: 1000;
}

	 
.g-nav{
	width: 80%;
}

.g-nav-list ul {
	padding: 50px 20px;
}
	 
.g-nav .sns_nav {
	padding:0 0 30% 20px;
}
	 
.foot_list{
	max-width: 320px;
	margin: 0 auto;
    padding: 40px 0 20px;
	flex-wrap: wrap;
}

.foot_list li:nth-child(3) {
    margin-right: 0;
	padding-right: 0;
}
	 

.foot_list li:nth-child(3)::before {
	display: none;
}
	 
.backtotop{
	display: none;
}
	 
.copy {
	padding: 30px 0 10px;
}
	 
	 
}


 @media screen and (max-width: 480px) {




}