body {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
  font-style: normal;
  background-color: #000;
}

img {
	width: 100%;
	height: auto;
	display: block;
	vertical-align: bottom;
}

/* ロゴ画像 */
h1 img {
    width: 150px;
    position: absolute;
    top: 10%;
    right: 10%;
}


/* パララックス */
.parallax {
    width: 100%;
    height: 100vh;
}


/* .parallax::before {
    background-image: url("../image/bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
} */


.parallax::before {
    animation: image_anime 20s infinite;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

@keyframes image_anime {
    0% {
      background-image: url(../image/bg.jpg);
    }
    50% {
      background-image: url(../image/maguro2.jpg); 
    }
    100% {
      background-image: url(../image/maguro.jpg);
    }
  }


/* スクロールダウン */
.scroll {
    position: absolute;
    right: 50%;
    top: 85%;
}

.scroll::before {
    animation: scroll 2s infinite;
    background-color: #fff;
    content: "";
    height: 200px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 1px;
}

  /* スクロールアニメーション */
  @keyframes scroll {
    0% {
      transform: scale(1, 0);
      transform-origin: 0 0;
    }
    50% {
      transform: scale(1, 1);
      transform-origin: 0 0;
    }
    51% {
      transform: scale(1, 1);
      transform-origin: 0 100%;
    }
    100% {
      transform: scale(1, 0);
      transform-origin: 0 100%;
    }
  }

/* 店舗紹介 */
.introduction {
    background-color: #ede7d0;
    /*background-color: rgb(252,252,197, 0.9);*/
    height: auto;
}

.introduction-flex {
	display: flex;
    justify-content: center;
	flex-direction: row-reverse;
}

.introduction h2 {
	color: #333;
	font-size: 36px;
    font-weight: 600;
	writing-mode: vertical-rl;
    /* margin-top: 200px; */
	margin-left: 30px;
}

.introduction p {
	color: #333;
	font-size: 16px;
    font-weight: lighter;
	writing-mode: vertical-rl;
    /* margin-top: 200px; */
    line-height: 1.7;
}

.introduction-img1 {
    width: 25%;
    position: relative;
    top: 100px;
    left: 10%;
}

.introduction-img2 {
    width: 25%;
    position: relative;
    bottom: 100px;
    left: 65%;
}




@media screen and (max-width: 959px) {
	/* 959px以下に適用されるCSS（タブレット用） */
    .introduction-img1 {
        display: none;
    }
    
    .introduction-img2 {
        display: none;
    }
   
   .seat-img1 {
        display: none;
    }
    
    .seat-img2 {
        display: none;
    }

    .introduction-flex {
        display: flex;
        justify-content: center;
        flex-direction: row-reverse;
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .scroll {
        position: absolute;
        right: 50%;
        top: 90%;
    }

    .scroll::before {
        animation: scroll 2s infinite;
        background-color: #fff;
        content: "";
        height: 100px;
        left: 0;
        margin: auto;
        position: absolute;
        right: 0;
        width: 1px;
    }
}
@media screen and (max-width: 480px) {
	/* 480px以下に適用されるCSS（スマホ用） */
    .scroll {
        position: absolute;
        right: 50%;
        top: 90%;
    }

    .scroll::before {
        animation: scroll 2s infinite;
        background-color: #fff;
        content: "";
        height: 100px;
        left: 0;
        margin: auto;
        position: absolute;
        right: 0;
        width: 1px;
    }
}


/* 店主紹介 */

.owner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse;
    background-color: rgba(0, 0, 0, .7);
    height: auto;
    margin: 0 auto;
    width: 100%;
}

.owner-flex {
	display: flex;
    justify-content: center;
	flex-direction: row-reverse;
    margin-bottom: 100px;
    /* margin-right: 300px; */
    margin-left: -200px;
}

.owner h2 {
	color: #333;
	font-size: 36px;
    font-weight: 600;
	writing-mode: vertical-rl;
    /* margin-top: 200px; */
	/* margin-left: 30px; */
}

.owner p {
	color: #EEEEEE;
	font-size: 16px;
    font-weight: lighter;
	writing-mode: vertical-rl;
    /* margin-top: 200px; */
    line-height: 1.7;
}

h2 .shop-name {
    margin-right: 10px;
    margin-left: -6px;
}

h2 .owner-name {
    font-size: 36px;
    font-weight: 600;
    letter-spacing: 10px;
}

h2 span {
    color: #EEEEEE;
    font-size: 16px;
    font-weight: lighter;
    letter-spacing: 5px;
    margin-bottom: 20px;
}

.owner-img {
    margin-top: 30px;
    /* margin-left: 200px; */
}

.owner-img-flex {
    display: flex;
    justify-content: start;
    align-items: flex-end;
    margin-top: 100px;
    margin-bottom: 20px;
}

.owner-img1 {
    width: 60%;
    margin-left: 40px;
    margin-bottom: 100px;
}

.owner-img2 {
    width: 50%;
}

.owner-img3 {
    width: 20%;
    height: 30%;
    margin-left: 20px;
}

@media screen and (max-width: 1080px) {
	/* 959px以下に適用されるCSS（タブレット用） */
    .owner {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row-reverse;
        flex-wrap: wrap;
        background-color: rgba(0, 0, 0, .7);
        height: auto;
        margin: 0 auto;
    }

    /* テキスト部分 */
    .owner-flex {
        display: flex;
        justify-content: center;
        flex-direction: row-reverse;
        margin: 0 auto;
        margin-top: 100px;
    }

    /* 画像部分 */
    .owner-img {
        margin-top: -30px;
    }

    .owner-img-flex {
        display: flex;
        justify-content: center;
        align-items: flex-end;
        margin-top: 100px;
        margin-bottom: 20px;
    }

    .owner-img1 {
        width: 60%;
        margin: 0 auto;
        margin-bottom: 100px;
    }
}
@media screen and (max-width: 480px) {
	/* 480px以下に適用されるCSS（スマホ用） */
    /* テキスト部分 */
    .owner-flex {
        display: flex;
        justify-content: center;
        flex-direction: row-reverse;
        margin: 0 auto;
        margin-top: 100px;
    }

    body {
        min-width: 375px;
    }
}



/* 店舗イメージ */
.shop-image {
    background-color: #ede7d0;
    height: auto;
	margin-bottom: -30px
}

/* スライダーでラグ縦並びになるのを防ぐ */
.slider {
    visibility: hidden;
}
.slider.slick-initialized {
    visibility: visible;
}

.slider img {
    width: 60%;
    height: auto;
	margin: 0 auto;
	margin-top: 100px;
	margin-bottom: 100px;
}

.slick-dots {
	position: absolute;
    bottom: 60px!important;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}




/*店舗情報*/

.shop-data {
    background-color: rgba(0, 0, 0, .7);
    height: auto;
	padding-bottom: 50px;
}

.shop-data h2 {
	color: #EEEEEE;
	font-size: 28px;
    font-weight: 600;
	writing-mode: vertical-rl;
	margin: 0 auto;
	padding-top: 100px;
}


/*予約ボタン*/

.btn {
  display: block;
  width: 50%;
  max-width: 300px; /* ボタン幅 */
  height: auto;
  color: #EEEEEE; /* 文字色 */
  background-color: rgba(255, 255, 255, 0.15);
  padding: 1em 2em;
  font-weight: bold; /* 文字の太さ */
  text-decoration: none;
  text-align: center;
  transition: 0.3s;
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 50px;
}

/* マウスオーバー */
.btn:hover {
  color: #fff; /* 文字色 */
  background-color: rgba(255, 255, 255, 0.15);
  border: solid 1px #EEEEEE;
}

.shop-data p {
	color: #EEEEEE;
	font-size: 28px;
	text-align: center;
}

iframe {
	filter:sepia(40%);
	-webkit-filter:sepia(40%);
	margin-right: 20px;
}


.shop-address-flex {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 50px;
	padding-bottom: 50px;
}

.shop-address p {
	font-size: 16px;
	padding: 5px 0;
	text-align: left;
}

.address-title {
	margin: 15px 0;
}

.shop-address .address-link {
	font-size: 10px;
	color: #EEEEEE;
}

.shop-address dt {
    color: #EEEEEE;
    margin: 15px 0;
}

.shop-address dd {
    margin-bottom: 30px;
}

address {
    color: #EEEEEE;
}

.address-link a {
    font-size: 10px;
	color: #EEEEEE;
}

.shop-address dl {
    border-bottom: #404040 solid 1px;
}

@media screen and (max-width: 1080px) {
	/* 959px以下に適用されるCSS（タブレット用） */
    .shop-address-flex {
	display: flex;
	justify-content: center;
	align-items: center;
    flex-wrap: wrap;
	margin-top: 50px;
	padding-bottom: 50px;
	}
	
	.shop-address {
	font-size: 16px;
    margin-top: 20px;
	}
	
	.iframe {
		margin: 0 auto;
	}
}
@media screen and (max-width: 480px) {
	/* 480px以下に適用されるCSS（スマホ用） */
    iframe {
	filter:sepia(40%);
	-webkit-filter:sepia(40%);
	width: 300px;
	height: 300px;
	margin: 0 auto;
	}
	
	h1 img {
    width: 150px;
    position: absolute;
  	top: 0;
  	right: 0;
  	bottom: 0;
  	left: 0;
  	margin: auto;
	}
}




/* フェード */
/* フェードイン用のCSS */
.slide-bottom {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1.3s 0s ease-out;
  }
  




/* コースページ */

h1 .course-top-img {
    width: 350px;
    position: absolute;
    top: 10%;
    right: 10%;
}

.parallax-course {
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, .3);
}


.parallax-course::before {
    background-image: url("../image/course-bg.jpeg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

.course {
   /*  display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse; */
    background-color: rgba(0, 0, 0, .7);
    height: auto;
    margin: 0 auto;
    width: 100%;
}

/* ランチ */
.course .lunch h2 {
    color: #EEEEEE;
    font-size: 60px;
    font-weight: bold;
    padding-bottom: 10px;
    border-bottom: #EEEEEE solid 1px;
}
.course .lunch h3 {
    color: #EEEEEE;
    font-size: 36px;
    margin-top: 60px;
    margin-bottom: 20px;
}
.course .lunch p {
    color: #EEEEEE;
    font-size: 16px;
    font-weight: lighter;
    margin-top: 20px;
    margin-bottom: 20px;
}

.lunch {
    width: 70%;
    margin: 0 auto;
    padding-top: 200px;
}


/* ディナー */
.dinner {
    width: 70%;
    margin: 0 auto;
    padding-top: 60px;
}

.course .dinner h2 {
    color: #EEEEEE;
    font-size: 60px;
    font-weight: bold;
    padding-bottom: 10px;
    border-bottom: #EEEEEE solid 1px;
}
.course .dinner h3 {
    color: #EEEEEE;
    font-size: 36px;
    margin-top: 60px;
    margin-bottom: 20px;
}
.course .dinner p {
    color: #EEEEEE;
    font-size: 16px;
    font-weight: lighter;
    margin-top: 20px;
    margin-bottom: 20px;
}



.course-img  img {
    width: 30%;
}

.course-img {
    width: 50%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 0 auto;
    margin-top: 60px;
}

.course-img2  img {
    width: 30%;
}

.course-img2 {
    width: 50%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 20px auto;
}




/*予約ボタン*/

.course-btn {
    display: block;
    width: 100%;
    height: auto;
    writing-mode: vertical-rl;
    color: #EEEEEE; /* 文字色 */
    background-color: rgba(255, 255, 255, 0.15);
    font-weight: bold; /* 文字の太さ */
    text-decoration: none;
    text-align: center;
    transition: 0.3s;
    padding: 30px;
  }
  
  /* マウスオーバー */
  .course-btn:hover {
    color: #fff; /* 文字色 */
    background-color: rgba(255, 255, 255, 0.15);
    border: solid 1px #EEEEEE;
  }
  

.lunch-button {
    padding-top: 10px;
    padding-bottom: 20px;
}


@media screen and (max-width: 1080px) {
	/* 959px以下に適用されるCSS（タブレット用） */
    
}


@media screen and (max-width: 480px) {
	/* 480px以下に適用されるCSS（スマホ用） */

     /* ランチ */
     .lunch {
        width: 90%;
        margin: 0 auto;
        padding-top: 100px;
    }

    .course .lunch h2 {
        color: #EEEEEE;
        font-size: 40px;
        font-weight: bold;
        padding-bottom: 10px;
        border-bottom: #EEEEEE solid 1px;
    }
    .course .lunch h3 {
        color: #EEEEEE;
        font-size: 24px;
        margin-top: 40px;
        margin-bottom: 20px;
    }
    .course .lunch p {
        color: #EEEEEE;
        font-size: 16px;
        font-weight: lighter;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    /* ディナー */
    .dinner {
        width: 90%;
        margin: 0 auto;
        padding-top: 40px;
    }

    .course .dinner h2 {
        color: #EEEEEE;
        font-size: 40px;
        font-weight: bold;
        padding-bottom: 10px;
        border-bottom: #EEEEEE solid 1px;
    }
    .course .dinner h3 {
        color: #EEEEEE;
        font-size: 24px;
        margin-top: 40px;
        margin-bottom: 20px;
    }
    .course .dinner p {
        color: #EEEEEE;
        font-size: 16px;
        font-weight: lighter;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .scroll {
        position: absolute;
        right: 50%;
        top: 90%;
    }

    .scroll::before {
        animation: scroll 2s infinite;
        background-color: #fff;
        content: "";
        height: 100px;
        left: 0;
        margin: auto;
        position: absolute;
        right: 0;
        width: 1px;
    }

    .course-img {
        width: 90%;
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        margin: 0 auto;
        margin-top: 60px;
    }

    .course-img2 {
        width: 90%;
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        margin: 20px auto;
    }

    h1 .course-top-img {
        width: 200px;
        position: absolute;
        top: 0%;
        right: 0%;
    }
}

/*予約ページ*/

.form-top {
   padding-top: 100px;
}


form {
  width: 70%;
  margin: 0 auto;
}
.form-row {
  display: flex;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #f2f4f5;
}
.form-row:last-child {
  border-bottom: none;
}
.form-label {
  display: flex;
  align-items: center;
  width: 250px;
}
.form-label label {
  font-weight: bold;
   color: #EEEEEE;
}
.form-label span {
  margin-left: 10px;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  background-color: #166ab5;
}

/* フォームパーツのデザイン */
input, textarea {
  background-color: #f2f4f5;
  border: none;
  border-radius: 3px;
  padding: 15px 20px;
  font-size: 16px;
  color: #333;
  flex-grow: 1;
}
input::placeholder,
textarea::placeholder {
  color: #999;
  font-size: 14px;
}
select {
  background-color: #f2f4f5;
  border: none;
  border-radius: 3px;
  padding: 15px 20px;
  font-size: 16px;
  color: #333;
}
button {
  cursor: pointer;
  margin-top: 30px;
  padding: 15px 45px;
  border: none;
  border-radius: 3px;
  color: #fff;
  font-weight: bold;
  background-color: #166ab5;
  display: block;
   text-align: center;
}

.form-button button {
   width: 30%;
   margin: 20px auto;
   margin-top: 40px;
   text-align: center;
}

.form-button {
    padding-bottom: 20px;
}

@media screen and (max-width: 700px) {
	/* 959px以下に適用されるCSS（タブレット用） */
   .form-row {
  display: flex;
   flex-wrap: wrap;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #f2f4f5;
}

.form-label {
  display: flex;
    flex-wrap: wrap;
  align-items: center;
  width: 250px;
   margin-bottom: 20px;
}
   
   .form-button button {
   width: 60%;
   margin: 20px auto;
      margin-top: 40px;
   text-align: center;
}
   
   
}




.gNav-menu {
    color: #eeeeee;
 }
 


/* 
ヘッダー 
*/
header {
    z-index: 99;
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    background-color: rgba(0, 0, 0, 0);
}

ol,
ul {
    list-style: none;
    list-style-type: none;
}

a {
    text-decoration: none;
    color: #eeeeee;
    font-size: 20px;
	font-weight: 600;
    letter-spacing: 0.1em;
}

.hamburger {
    margin: 70px auto 30px;
    width: 100%;
    max-width: 90%;
    display: flex;
    justify-content: space-between;
	align-items: center;
}


.hamburger .btn-gNav {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 24px;
    z-index: 12;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-transition: all 400ms;
    transition: all 400ms;
}

.hamburger .btn-gNav span {
    position: absolute;
    width: 100%;
    height: 4px;
    background: #eeeeee;
    border-radius: 10px;
    -webkit-transition: all 400ms;
    transition: all 400ms;
}

.hamburger .btn-gNav span:nth-child(1) {
    top: 0;
}

.hamburger .btn-gNav span:nth-child(2) {
    top: 10px;
}

.hamburger .btn-gNav span:nth-child(3) {
    top: 20px;
}

.hamburger .btn-gNav.open span:nth-child(1) {
    background: #ffffff;
    top: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.hamburger .btn-gNav.open span:nth-child(2),
.hamburger .btn-gNav.open span:nth-child(3) {
    top: 6px;
    background: #333;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}



.btn-gNav {
    display: none;
}

.gNav .gNav-menu {
    display: flex;
    justify-content: space-between;
}

.gNav .gNav-menu li {
    margin: 0 auto;
    padding: 0 20px;
}

.gNav .gNav-menu li a:hover {
  color: #fff; /* 文字色 */
  background-color: rgba(255, 255, 255, 0.15);
  border-bottom: solid 1px #EEEEEE;
}

/* 本来の設定768 */
@media screen and (max-width: 945px) {
    .btn-gNav {
        display: block;
    }

    .gNav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 6);
        font-size: 16px;
        box-sizing: border-box;
        z-index: 1;
        padding-top: 50px;
        transition: .3s;
    }

    .gNav.open {
        right: 0;
    }

    .gNav .gNav-menu {
        padding: 0;
        width: 100%;
        height: 100%;
        display: block;
        flex-direction: column;
        text-align: center;
        /*justify-content: center;*/
    }

    .gNav .gNav-menu li {
        width: 86%;
        padding: 20px;
        border-bottom: #fff 1px solid;
        color: #fff;
    }

    a {
      text-decoration: none;
      color: #fff;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.1em;
    }

  }



/* 
フッター 
*/

.footer {
  color: #eeeeee;
  background: #333;
  text-align: center;
 }
 .footer a {
  color: #eeeeee;
  text-decoration: none;
 }
 .footer a:hover {
  text-decoration: underline;
 }
 .footer .menu {
  margin: 0px 0 50px 0;
  padding: 0;
  padding-top: 40px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
 }

 .footer p {
  margin: 10px 0;
 }
 .footer .menu li {
  margin: 0;
  padding: 0 20px;
  border-right: 1px #808080 solid;
 }
 .footer .menu li:last-child {
  border: none;
 }

 /* 
リンクホバー 
*/
.footer .menu li a {
  padding-bottom: 5px;
  text-decoration: none;
  background-image: linear-gradient( 90deg, #eeeeee, #eeeeee );
  background-size: 0 3px;
  background-position: left bottom;
  background-repeat: no-repeat;
  transition: all .3s;
}

.footer .menu li a:hover {
  background-size: 100% 3px;
}


 .footer .copyright {
  margin: 0;
  padding: 20px 0;
 }

 .copyright {
  width: 100%;
  background-color: #000;
 }

 .copyright small {
  font-size: 15px;
  font-weight: lighter;
  color: #fff;
 }


 .footer p {
  font-weight: lighter;
  color: #eeeeee;
 }

/*footer {
    background-color: #333;
    width: 100%;
    height: 50px;
	text-align: center;
}


small {
	font-size: 10px;
	color: #EEEEEE;
	line-height: 10px;
}*/

small p {
	font-size: 10px;
	color: #EEEEEE;
	margin-top: 10px;
}

 
 @media only screen and (max-width: 599px) {
 .footer .menu {
  justify-content: flex-start;
 }
 .footer .menu li {
  width: 50%;
  box-sizing: border-box;
  border: none;
  margin: 10px 0;
 }
 .footer .menu li:nth-child(odd) {
  border-right: 1px #808080 solid;
 }
 }




 /*お席*/

 
.btn-seat {
    display: block;
    width: 50%;
    max-width: 300px; /* ボタン幅 */
    height: auto;
    color: #EEEEEE; /* 文字色 */
    background-color: rgba(0, 0, 0, 0.7);
    padding: 1em 2em;
    font-weight: bold; /* 文字の太さ */
    text-decoration: none;
    text-align: center;
    transition: 0.3s;
    margin: 0 auto;
    margin-top: -30px;
    margin-bottom: 50px;
  }
  
  /* マウスオーバー */
  .btn-seat:hover {
    color: #fff; /* 文字色 */
    background-color: rgba(0, 0, 0, 0.5);
    border: solid 1px #EEEEEE;
  }
  
  .seat-button {
     padding-bottom: 30px;
  }
  


.seat-img1 {
    width: 25%;
    height: auto;
    position: relative;
    top: 100px;
    left: 65%;
}

.seat-img2 {
    width: 25%;
    height: auto;
    position: relative;
    bottom: 100px;
    left: 10%;
}

.seat-img-sp {
    width: 60%;
    margin: 0 auto;
    margin-top: -50px;
    margin-bottom: 95px;
}

 .seat-text {
    padding-top: 20px;
 }


 .parallax-seat {
    width: 100%;
    height: 100vh;
}


.parallax-seat::before {
    background-image: url("../image/seat-bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}



 .parallax-reservation {
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, .5);
}


.parallax-reservation::before {
    background-image: url("../image/original.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}



@media screen and (max-width: 945px) {
    .seat-img-sp {
        width: 80%;
        margin: 0 auto;
        margin-top: -50px;
        margin-bottom: 95px;
    }
  }

@media screen and (min-width: 945px) {
    .seat-img-sp {
        display: none;
    }
  }


/* 店主紹介 */

/* 店主紹介 */

.section-course {
    background-color: rgba(0, 0, 0, .7);
    height: auto;
    margin: 0 auto;
    width: 100%;
    margin-bottom: 40px;
}

.top-course {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse;
    
}

.top-course-flex {
	display: flex;
    justify-content: center;
	flex-direction: row-reverse;
    margin-bottom: 100px;
    /* margin-right: 300px; */
    margin-left: -200px;
}

.top-course h2 {
	color: #333;
	font-size: 36px;
    font-weight: 600;
	writing-mode: vertical-rl;
    /* margin-top: 200px; */
	/* margin-left: 30px; */
}

.top-course p {
	color: #EEEEEE;
	font-size: 16px;
    font-weight: lighter;
	writing-mode: vertical-rl;
    /* margin-top: 200px; */
    line-height: 1.7;
}

h2 .top-course-name {
    margin-right: 10px;
}

h2 .top-course-name {
    font-size: 36px;
    font-weight: 600;
    letter-spacing: 10px;
}

.top-course-img {
    margin-top: 30px;
    /* margin-left: 200px; */
}

.top-course-img-flex {
    display: flex;
    justify-content: start;
    align-items: flex-end;
    margin-top: 100px;
    margin-bottom: 20px;
}

.top-course-img1 {
    width: 60%;
    margin-left: 40px;
    margin-bottom: 100px;
}

.top-course-img2 {
    width: 50%;
}

.top-course-img3 {
    width: 20%;
    height: 30%;
    margin-left: 20px;
}

.aaa {
    margin-bottom: -40px;
}

@media screen and (max-width: 1080px) {
	/* 959px以下に適用されるCSS（タブレット用） */

   

    .section-course {
        height: auto;
        margin: 0 auto;
        width: 100%;
        margin-bottom: 40px;
    }

    .top-course {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row-reverse;
        flex-wrap: wrap;
        /* background-color: rgba(0, 0, 0, .7); */
        height: auto;
        margin: 0 auto;
    }

    /* テキスト部分 */
    .top-course-flex {
        display: flex;
        justify-content: center;
        flex-direction: row-reverse;
        margin: 0 auto;
        margin-top: 100px;
    }

    /* 画像部分 */
    .top-course-img {
        margin-top: -30px;
    }

    .top-course-img-flex {
        display: flex;
        justify-content: center;
        align-items: flex-end;
        margin-top: 100px;
        margin-bottom: 20px;
    }

    .top-course-img1 {
        width: 60%;
        margin: 0 auto;
        margin-bottom: 100px;
    }
}
@media screen and (max-width: 480px) {
	/* 480px以下に適用されるCSS（スマホ用） */
    /* テキスト部分 */
    .top-course-flex {
        display: flex;
        justify-content: center;
        flex-direction: row-reverse;
        margin: 0 auto;
        margin-top: 100px;
    }

    body {
        min-width: 375px;
    }
}
