@charset 'UTF-8'; /* 文字コードの指定 */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP&display=swap');

/* Base
------------------------------------------------------------*/

html {
    font-size: 62.5%;
}

body {
    font-family: 游明朝体;
    font-style: normal;
    font-weight: 300;
    font-size: 1.4rem;
    line-height: 1.6;
    letter-spacing: .1em;
    color: #000;
    background-position: 0 100px;
 }

 a {
   color:#fff;
   text-decoration:none;
 }

header{
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  z-index: 100;
  background-color: #B22222;
}


.logo{
  display: inherit;
  mix-blend-mode: multiply;
}

.logo img{
  width: 37px;
  height: auto;
  padding: 0px 10px;
}


.nav-button {
  position: relative;/*ボタン内側の基点となるためrelativeを指定*/
  cursor: pointer;
  width: 13%;
  height:50px;
  border-radius: 5px;
}

.nav-button span{
  display: inline-block;
  transition: all .4s;/*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  width: 45%;
  }

.nav-button span:nth-of-type(1) {
  top:15px;
}

.nav-button span:nth-of-type(2) {
  top:23px;
}

.nav-button span:nth-of-type(3) {
  top:31px;
}

/*activeクラスが付与されると線が回転して×に*/

.nav-button.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.nav-button.active span:nth-of-type(2) {
  opacity: 0;/*真ん中の線は透過*/
}

.nav-button.active span:nth-of-type(3){
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

.sp-nav {
  position: absolute;
  top: 5rem;
  left: 0;
  display: none;
  z-index: 1000;
  width: 100%;
  height: 55rem;
  background: linear-gradient(-135deg, #CF6565, #B22222);
  background-size: cover;
  background-position: center;


}
#sp-nav-list {
  width: 80%;
  padding: 40px 10% 16px 10%;
  margin: 0 auto;
  font-size: 20px;
  text-align: center;
  list-style: none;
  text-decoration: none;
}
#sp-nav-list li {
  padding-bottom: 25px;
}

#sp-nav-list li a{
    /*線の基点とするためrelativeを指定*/
  position: relative;
}

#sp-nav-list li,
#sp-nav-list li a:hover{
  color:#000;
}

#sp-nav-list li a::after {
  content: '';
    /*絶対配置で線の位置を決める*/
  position: absolute;
  bottom: -5px;
  left: 0%;
    /*線の形状*/
  width: 100%;
  height: 2px;
  background:#000;
    /*アニメーションの指定*/
  transition: all .3s;
  transform: scale(0, 1);/*X方向0、Y方向1*/
  transform-origin: center top;/*上部中央基点*/
}

/*現在地とhoverの設定*/
#sp-nav-list li,
#sp-nav-list li a:hover::after {
    transform: scale(1, 1);/*X方向にスケール拡大*/
}



.pc-nav {
  display: none;
  color: black;
}

.rsv,.tel {
 text-align: center;
 color: #fff;
 font-size: 16px;
}

.rsv {
  margin-bottom: 3px;
}

.tel {
  margin-top: 0;
}

.rsv-btn {
  text-align: center;
  margin: 0 auto;
}

.rsv-btn:hover {
    opacity: .7;
}

.rsv-btn img {
  width: 30%;
}

.insta-btn {
  text-align: center;
  margin: 0 auto;
  padding-top: 16px;
}

.insta-btn:hover {
    opacity: .7;
}

.insta-btn img {
  width: 9%;
}


.top {
  position: relative;
  background-image: url(top.jpeg);
  background-size: cover;
  height: 48rem;
}

.top img {
  width: 100px;
  padding: 113px 0 0 77px;
}

.menu {
  display: none;
}

.rsv-tel2 {
  display: none;
}

.btn {
  display: none;
}
.right {
  display: none;
}

.course {
  background-image: url(course.jpg);
  text-align: center;
  padding-bottom: 40px;
}
h1 {
  font-size: 26.67px;
  font-weight: normal;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 60px;
  margin: 0;
}

.slider {
  position:relative;
  z-index: 1;/*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
  margin-bottom: 10rem;
}
/*　背景画像設定　*/

.slider-item01 {
  background:url(menu1.jpeg);
}

.slider-item02 {
  background:url(menu2.jpeg);
}

.slider-item03 {
  background:url(menu3.jpeg);
}

.slider-item04 {
  background:url(menu4.jpeg);
}

.slider-item05 {
  background:url(menu5.jpeg);
}



.slider-item {
  width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
  height:75vw;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  background-repeat: no-repeat;/*背景画像をリピートしない*/
  background-position: center;/*背景画像の位置を中央に*/
  background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
}

/
/*ドットナビゲーションの設定*/

.slick-dots {
	position: relative;
	z-index: 3;
    text-align:center;
	margin:-50px 0 0 0;
}

.slick-dots li {
    display:inline-block;
	margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:8px;/*ドットボタンのサイズ*/
    height:8px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#ccc;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
    background:#333;/*ドットボタンの現在地表示の色*/
}


/*========= レイアウトのためのCSS ===============*/
ul{
	margin:0;
	padding: 0;
}

.course-type1 {
  padding-top: 80px ;

}

.photo1 {
  display: none;
}

.photo2 {
  display: none;
}

.photo3 {
  display: none;
}

.photo4 {
  display: none;
}

.photo5 {
  display: none;
}

.photo6 {
  display: none;
}

.photo7 {
  display: none;
}

.photo8 {
  display: none;
}


.course-title {
  padding: 0 35px;
}

h2 {
  font-size: 22.67px;
  font-weight: normal;
  margin: 0 auto;
  border-top: solid 1px #74753B;
}

.price {
  font-size: 18.67px;
  border-width: 2px;
  border-bottom: solid 1px #74753B;
  margin: 0;
}

.content {
  font-size: 17.34px;
  writing-mode: vertical-rl;
  text-align: left;
  margin: 0 auto;
  margin-top: 48px;
}

.text-combine {
  -webkit-text-combine: horizontal;
  text-combine-upright: all;
}

.course-menu {
  padding-right: 11px;
  padding-left: 11px;
}

.comment {
  font-size: 10.67px;
  padding: 40px 0 56px 0;
  margin: 0 86px;
}

.intro {
  background-image: url(introduction.jpg);
  height: 530px;
}

.seet-type {
  display: flex;
  align-items: center;
  margin: 0 48px;
  padding-bottom: 24px;
}

.seet-type img {
  width: 140px;
}

.sp-counter {
  padding-right: 15px;
}

.seet-coment p {
  margin: 0 80px;
  padding-top: 24px;
  font-size: 15px;
}

.pc-item1 {
  display: none;
}

.pc-item2 {
  display: none;
}

#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	background:#661313;
	border-radius: 5px;
	width: 60px;
	height: 60px;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	font-size:0.6rem;
	transition:all 0.3s;
}

#page-top a:hover{
	background: #777;
}

/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 10px;
	bottom:10px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}

/*　上に上がる動き　*/

#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}

.information {
  background-image: url(main.jpg);
}

.store-information {
  padding: 20px 20px 80px 20px;
}

.store {
  padding-bottom: 56px;
}

.store th,
.store td {
border-bottom: 1px solid #B22222;
padding: 12px 7px;
}

.store th {
font-weight: bold;
}


.map {
  position: relative; /* 子要素の基準とする */
  padding-bottom: 75%; /* 表示するパディング領域の縦横比（4：3） */
  height: 0;
  overflow: hidden;
}
.map iframe {
  position: absolute; /* 親要素のパディング領域に配置するために絶対配置を指定 */
  top: 0; /* 垂直方向トップに配置 */
  left: 33px; /*  水平方向左に配置 */
  width: 80%; /* 親コンテナの幅いっぱいに表示 */
  height: 100%; /* 親コンテナの高さいっぱいに表示 */
}

footer {
  width: 100%;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  background-color: #B22222;
  height: 64px;
}

.copylight {
  color: #fff;
  padding-top: 20px;
  padding-left: 32px;
}


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

  header{
    height: 7vw;
  }


  .logo {
    display: none;
}
  .nav-button {
    display: none;
  }

  .pc-nav {
    display: flex;
    margin: 0 auto;
    align-items: center;
  }

  #pc-nav-list {
    display: flex;
    align-items: center;
    height: 100%;
    list-style: none;
    color: #ffffff;
  }

  #pc-nav-list li a{
    display: block;
    padding: 1vw 1vw;
    text-decoration: none;
    color: #ffffff;
    position: relative;
    }


  #pc-nav-list a{
    color: #ffffff;
    font-size: 1.1vw;
  }

  #pc-nav-list li a:hover {
    color: #000;
  }


  #pc-nav-list li a::after {
    content: '';
    position: absolute;
    bottom: 1vw;
    left: 10%;
    width: 80%;
    height: 2px;
    background: #000;
    transition: all 0.5s;
    transform: scale(0,1);
    transform-origin: center top;
  }

  #pc-nav-list li a:hover::after {
    transform: scale(1,1);
  }

  .rsv-btn {
    margin: 0 2vw;
  }

  .rsv-btn img {
    width: 11vw;
  }

  .rsv-tel {
    padding-top: 0.4vw;
  }

  .rsv {
    font-size: .9vw;
  }

  .tel {
    font-size: 1.4vw;
  }

  main {
    background-image: url(main.jpg);
  }

  .top {
    background-image: none;
    padding-top: 6vw;
    height: 58vw;
  }

  .mark img {
    width: 15vw;
    padding: 4vw 0 0 12vw;
  }

  .left {
    float: left;
    text-align: center;
  }


  .menu {
    display: flex;
    margin: 0 auto;
    align-items: center;
    color: #000;
    list-style: none;
    padding: 2vw 0 0 14vw;
   }

  .menu a {
    color: #000;
    display: block;
    padding: 1vw 1vw;
    text-decoration: none;
    position: relative;
    font-size: 1.1vw;

  }

  .menu li {
    writing-mode: vertical-rl;
  }

  .menu li a{
    display: block;
    padding: 1vw 1vw;
    text-decoration: none;
    color: #000;
    position: relative;
    font-size: 2vw;
    }


  .menu li a:hover {
    opacity: .6;
  }


  .menu li a:hover::after {
    transform: scale(1,1);
  }

  .rsv-tel2 {
    display: revert;
    padding-left: 11vw;
  }


  .rsv2 {
    margin-bottom: 0.1vw;
    padding-top: 1vw;
    font-size: 2vw;
  }

  .tel2 {
    margin-top: 0;
    font-size: 3vw;
  }


  .btn {
    display: flex;
    list-style: none;
    align-items: center;
  }

  .btn .Reserved img {
    width: 16vw;
    padding: 0 0 0 14vw;

  }



  .Reserved {
    float: left;
  }

.btn .insta img {
    width: 3vw;
    float: right;
    padding: 0 0 0 2vw;
}



.right {
    display: revert;
}



.right img {
  width: 50vw;
  float: right;
  padding: 0;
}

.course {
  padding-bottom: 20vw;
}

h1 {
  font-size: 3.2vw;
  padding-top: 10vw;
}

.slider-item01,.slider-item02,.slider-item03,.slider-item04,.slider-item05 {
  background:none;
}
.slick-initialized .slick-slide {
  display: none;
}

.course-type1 {
  padding-top: 8vw ;

}

.content-item1 {
  display: flex;
  align-items: center;
  margin: 0 auto;
  width: 80%;
  padding-top: 16vw;
}

.animation {
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
  transition: all 1s;
}
.animation.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
	}

.photo1 {
  display: flex;
  width: 65%;
  padding-right: 11vw;
}

.photo1 img {
  width: 100%;
}

.content-item2 {
  display: flex;
  align-items: center;
  margin: 0 auto;
  width: 80%;
  padding-top: 16vw;
}

.photo2 {
  display: flex;
  width: 31vw;
  padding-left: 20vw;
}

.photo2 img {
  width: 100%;
}

.content-item3 {
  display: flex;
  align-items: center;
  margin: 0 auto;
  width: 80%;
  padding-top: 16vw;
}

.photo3 {
  display: flex;
  width: 37%;
  padding-right: 25vw;
  padding-left: 8vw;
}

.photo3 img {
  width: 100%;
}

.content-item4 {
  display: flex;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  padding-top: 16vw;
}

.photo4 {
  display: flex;
  width:35vw;
  padding-left: 11vw;
}

.photo4 img {
  width: 100%;
}


.content-item5 {
  display: flex;
  align-items: center;
  margin: 0 auto;
  width: 80%;
  padding-top: 16vw;
}

.photo5 {
  display: flex;
  width: 65%;
  padding-right: 29vw;
}

.photo5 img {
  width: 100%;
}

.content-item6 {
  display: flex;
  align-items: center;
  margin: 0 auto;
  width: 80%;
  padding-top: 16vw;
}

.photo6 {
  display: flex;
  width: 27vw;
  padding-left: 20vw;
}

.photo6 img {
  width: 100%;
}

.content-item7 {
  display: flex;
  align-items: center;
  margin: 0 auto;
  width: 80%;
  padding-top: 16vw;
}

.photo7 {
  display: flex;
  width: 30%;
  padding-right: 25vw;
  padding-left: 14vw;
}

.photo7 img {
  width: 100%;
}

.content-item8 {
  display: flex;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  padding-top: 16vw;
}

.photo8 {
  display: flex;
  width: 37vw;
  padding-left: 10vw;
}

.photo8 img {
  width: 100%;
}
.course-title {
  padding: 0 5vw 0 0 ;
}

h2 {
  font-size: 2vw;
  border-top: none;
  writing-mode: vertical-rl;
}

.price {
  font-size: 2vw;
  border-bottom: none;

}

.content {
  font-size: 1.7vw;
}

.text-combine {
  -webkit-text-combine: horizontal;
  -ms-text-combine-horizontal: all;
  text-combine-upright: all;
}

.memu {
  padding-left: 7vw;
}

.memu2 {
  padding-left: 8.2vw;
}

.course-menu {
  padding-right: 11px;
  padding-left: 11px;
}

.comment {
  font-size: 1vw;
  padding: 40px 0 48px 0;
  margin: 0 auto;
}

.intro {
  height: 130vw;
}


.sp-item {
  display: none;
}

.pc-item1 {
  display: flex;
  margin: 0 10vw;
  padding: 8vw 0 16vw 0;
  align-items: center;
  font-size: 1.7vw;
}

.pc-counter1 img {
  width: 40vw;
}

.pc-coment1 {
  margin: 0 auto;
}

.pc-item2 {
  display: flex;
  margin: 0 10vw;
  align-items: center;
  font-size: 1.7vw;
}

.pc-coment2 {
  margin: 0 6vw;
}

.pc-counter2 img {
  width: 40vw;
}

.information {
  padding-bottom: 8vw;
}

.store-information {
  display: flex;
  padding: 2vw 2vw 8vw 2vw;

}

.store {
  padding-bottom: 5.6vw;
  margin: 0 auto;
  font-size: 1.2vw;
}

.store th,
.store td {
border-bottom: 1px solid #B22222;
padding: 1.2vw 0.7vw;
}

.store th {
font-weight: bold;
}

.left-store {
  width: 50vw;
}

.right-map {
  width: 50vw;
}

footer {
  height: 64px;
}

.copylight {
  padding-left: 37vw;
}


}
