@charset "UTF-8";
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Shippori Mincho B1", serif;
  letter-spacing: 0.2vw;
}

@media screen and (max-width: 768px) {
  .br_pc {
    display: none;
  }
}

@media screen and (min-width: 1441px) {
  .br_sp {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .br_sp {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .br_sp {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 1441px) {
  .sp {
    display: none !important;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .sp {
    display: none !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .sp {
    display: none !important;
  }
}

.wide {
  width: 1200px;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .wide {
    width: 800px;
  }
}
@media screen and (max-width: 768px) {
  .wide {
    width: 350px;
  }
}

#lower .lower {
  padding-top: 100px;
  width: 66.6666666667%;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #lower .lower {
    padding-top: 12vw;
  }
}
@media screen and (max-width: 768px) {
  #lower .lower {
    width: 95%;
    padding-top: 19vw;
  }
}
#lower .lower img {
  width: 100%;
  margin-bottom: 2vw;
}
#lower .lower h2 {
  text-align: center;
  color: #DAB17E;
  margin-bottom: 1vw;
}
@media screen and (max-width: 768px) {
  #lower .lower h2 {
    margin-bottom: 2vw;
  }
}
#lower .lower h4 {
  text-align: center;
  border-bottom: 1px solid #000;
  padding-bottom: 2vw;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #lower .lower h4 {
    padding-bottom: 4vw;
    margin-bottom: 8vw;
  }
}

.fade-in {
  opacity: 0;
  transition-duration: 1s;
  transition-property: opacity, transform;
}

.fade-in-up {
  transform: translate(0, 50px);
}

.fade-in-down {
  transform: translate(0, -50px);
}

.fade-in-left {
  transform: translate(-50px, 0);
}

.fade-in-right {
  transform: translate(50px, 0);
}

.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

p {
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  p {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 768px) {
  p {
    font-size: 3.4vw;
  }
}

h1 {
  font-size: 3.3vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h1 {
    font-size: 4.3vw;
  }
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 8vw;
  }
}

h2 {
  font-size: 2.5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h2 {
    font-size: 3.3vw;
  }
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 6vw;
  }
}

h3 {
  font-size: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h3 {
    font-size: 3vw;
  }
}
@media screen and (max-width: 768px) {
  h3 {
    font-size: 5vw;
  }
}

h4 {
  font-size: 1.7vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h4 {
    font-size: 2.4vw;
  }
}
@media screen and (max-width: 768px) {
  h4 {
    font-size: 4vw;
  }
}

h5 {
  font-size: 1.3vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h5 {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  h5 {
    font-size: 3.5vw;
  }
}

header {
  z-index: 99999999;
  width: 100vw;
  position: fixed;
}
header #header_pc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5vw 2vw;
  overflow: hidden;
  background-color: #fff;
  height: 100px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  header #header_pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  header #header_pc {
    display: none;
  }
}
header #header_pc .header_logo {
  height: 95%;
  padding: 0.5vw;
}
header #header_pc .header_logo img {
  height: 100%;
}
header #header_pc .header_menu .main_menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 10px;
  margin: 0;
  padding: 0;
}
header #header_pc .header_menu .main_menu > li:first-child a {
  border: none;
}
header #header_pc .header_menu .main_menu > li:last-child a {
  border: none;
}
header #header_pc .header_menu .main_menu > li > a {
  display: block;
  padding: 5px 15px;
  text-decoration: none;
  color: #000;
  font-size: 1vw;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
header #header_pc .header_menu .main_menu > li > a i {
  font-size: 1vw;
  margin-right: 0.6vw;
}
header #header_pc .header_menu .main_menu > li > a button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1vw 2vw;
  background-color: #B32731;
  color: #fff;
  border: none;
  height: 3vw;
  font-family: "Shippori Mincho B1", serif;
}
header #header_pc .header_menu .main_menu > li > a button span {
  font-size: 1vw;
  margin-right: 1vw;
}
header #header_pc .header_menu .main_menu > li > a button span {
  display: block;
}
header #header_pc .header_menu .main_menu > li > a button span:first-child {
  font-size: 0.6vw;
}
header #header_pc .header_menu .main_menu > li > a button span:last-child {
  font-size: 1.2vw;
  font-weight: 600;
}
header #header_pc .header_menu .main_menu > li > a button span:last-child i {
  margin-right: 0.5vw;
}

#header_sp {
  height: 12vw;
  display: flex;
  align-items: top;
  background-color: #fff;
}
@media screen and (min-width: 1441px) {
  #header_sp {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #header_sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #header_sp {
    height: 19vw;
  }
}
#header_sp .header_logo {
  width: 50%;
  margin-left: 3vw;
  padding: 1vw;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #header_sp .header_logo {
    width: 35%;
  }
}
#header_sp .header_logo img {
  width: 100%;
}

/*　ハンバーガーボタン　*/
.hamburger {
  display: block;
  position: fixed;
  z-index: 10005;
  right: 13px;
  top: 12px;
  width: 60px;
  height: 60px;
  cursor: pointer;
  text-align: center;
  background-color: #B32731;
}
@media screen and (max-width: 768px) {
  .hamburger {
    width: 45px;
    height: 45px;
  }
}
@media screen and (min-width: 1441px) {
  .hamburger {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  display: block;
  position: absolute;
  width: 40px;
  height: 2px;
  left: 50%;
  transform: translate(-50%, 0);
  background: #fff;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .hamburger span {
    width: 30px;
  }
}

.hamburger span:nth-child(1) {
  top: 30%;
}

.hamburger span:nth-child(2) {
  top: 50%;
}

.hamburger span:nth-child(3) {
  top: 70%;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  left: 42%;
  top: 25%;
  background: #fff;
  transform: rotate(-45deg) translate(-50%, -50%);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  left: 40%;
  top: 72%;
  background: #fff;
  transform: rotate(45deg) translate(-50%, -50%);
}

nav.globalMenuSp {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  width: 100%;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}

nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: 0.4s all;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  nav.globalMenuSp ul li {
    margin-bottom: 20px;
  }
}

nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}

nav.globalMenuSp ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  color: #fff;
  padding: 1em 0;
  text-decoration: none;
  font-size: 2.4vw;
}
@media screen and (max-width: 768px) {
  nav.globalMenuSp ul li a {
    font-size: 3.2vw;
  }
}
nav.globalMenuSp ul li a span {
  font-size: 2vw;
}
@media screen and (max-width: 768px) {
  nav.globalMenuSp ul li a span {
    font-size: 2.8vw;
    margin-top: 1vw;
  }
}
nav.globalMenuSp ul li a button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2vw 4vw;
  background-color: #B32731;
  color: #fff;
  border: none;
  height: 8vw;
  font-family: "Shippori Mincho B1", serif;
  font-size: 2.4vw;
}
@media screen and (max-width: 768px) {
  nav.globalMenuSp ul li a button {
    font-size: 4vw;
    padding: 3¥4vw 8vw;
  }
}
nav.globalMenuSp ul li a button i {
  font-size: 2vw;
  margin-right: 1vw;
}
@media screen and (max-width: 768px) {
  nav.globalMenuSp ul li a button i {
    font-size: 3vw;
    margin-right: 3vw;
  }
}
nav.globalMenuSp ul li a button span {
  display: block;
}
nav.globalMenuSp ul li a button span:first-child {
  font-size: 0.6vw;
}
nav.globalMenuSp ul li a button span:last-child {
  font-size: 1.2vw;
  font-weight: 600;
}
nav.globalMenuSp ul li a button span:last-child i {
  margin-right: 0.5vw;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  opacity: 100;
  visibility: visible;
}

#mv {
  width: 100vw;
  padding-top: 100px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #mv {
    height: 60vh;
    padding-top: 12vw;
  }
}
@media screen and (max-width: 768px) {
  #mv {
    height: 100vh;
    padding-top: 19vw;
  }
}
#mv .mv {
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #mv .mv {
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  #mv .mv {
    height: 100%;
  }
}
#mv .mv .slide-images {
  width: 100vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #mv .mv .slide-images {
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  #mv .mv .slide-images {
    height: 100%;
  }
}
#mv .mv .slide-images .slick-list {
  height: 100%;
}
#mv .mv .slide-images .slick-list .slick-track {
  height: 100%;
}
#mv .mv .slide-images .slick-list .slick-track img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}
#mv .mv .mv_headline {
  position: absolute;
  top: -10%;
  right: 0%;
  z-index: 1000;
  width: 25%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #mv .mv .mv_headline {
    top: 55%;
    transform: translate(0, -50%);
    width: 40%;
  }
}
@media screen and (max-width: 768px) {
  #mv .mv .mv_headline {
    top: 50%;
    right: auto;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 94%;
  }
}
#mv .mv .mv_headline img {
  width: 100%;
}

#top_news .top_news {
  background-position: center;
  background-size: cover;
  padding: 4vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_news .top_news {
    padding: 6vw 0;
  }
}
@media screen and (max-width: 768px) {
  #top_news .top_news {
    padding: 8vw 0;
  }
}
#top_news .top_news .top_news_contents {
  background: rgba(255, 255, 255, 0.7);
  padding: 4vw;
  width: 80%;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_news .top_news .top_news_contents {
    padding: 6vw 4vw;
  }
}
@media screen and (max-width: 768px) {
  #top_news .top_news .top_news_contents {
    width: 95%;
    padding: 8vw 4vw;
  }
}
#top_news .top_news .top_news_contents .top_headline {
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #top_news .top_news .top_news_contents .top_headline {
    text-align: center;
    margin-bottom: 4vw;
  }
}
#top_news .top_news .top_news_contents .top_headline h2 {
  font-family: "Yuji Syuku", serif;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_news .top_news .top_news_contents .top_headline h2 {
    font-size: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #top_news .top_news .top_news_contents .top_headline h2 {
    font-size: 8vw;
  }
}
#top_news .top_news .top_news_contents .top_news_content {
  width: 80%;
  margin-left: auto;
  margin-right: 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_news .top_news .top_news_contents .top_news_content {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #top_news .top_news .top_news_contents .top_news_content {
    width: 100%;
  }
}
#top_news .top_news .top_news_contents .top_news_content ul {
  border-top: 1px solid #000;
  list-style: none;
}
#top_news .top_news .top_news_contents .top_news_content ul a {
  text-decoration: none;
  color: #000;
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_news .top_news .top_news_contents .top_news_content ul a {
    font-size: 2.4vw;
  }
}
@media screen and (max-width: 768px) {
  #top_news .top_news .top_news_contents .top_news_content ul a {
    font-size: 3.6vw;
  }
}
#top_news .top_news .top_news_contents .top_news_content ul a li {
  border-bottom: 1px solid #000;
  padding: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_news .top_news .top_news_contents .top_news_content ul a li {
    padding: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #top_news .top_news .top_news_contents .top_news_content ul a li {
    padding: 4vw 2vw;
  }
}
#top_news .top_news .top_news_contents .top_news_content ul a li .date {
  margin-bottom: 0.5vw;
}

#top_info .top_info {
  background-position: center;
  background-size: cover;
  padding: 8vw 4vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_info .top_info {
    padding: 14vw 0;
  }
}
@media screen and (max-width: 768px) {
  #top_info .top_info {
    padding: 18vw 0;
  }
}
#top_info .top_info .top_info_contents {
  background: rgba(255, 255, 255, 0.8);
  padding: 4vw;
  width: 80%;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_info .top_info .top_info_contents {
    padding: 6vw 4vw;
  }
}
@media screen and (max-width: 768px) {
  #top_info .top_info .top_info_contents {
    width: 85%;
    padding: 8vw;
  }
}
#top_info .top_info .top_info_contents .top_headline {
  margin-bottom: 2vw;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #top_info .top_info .top_info_contents .top_headline {
    text-align: center;
    margin-bottom: 4vw;
  }
}
#top_info .top_info .top_info_contents .top_headline h2 {
  font-family: "Yuji Syuku", serif;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_info .top_info .top_info_contents .top_headline h2 {
    font-size: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #top_info .top_info .top_info_contents .top_headline h2 {
    font-size: 8vw;
  }
}
#top_info .top_info .top_info_contents .top_info_text {
  text-align: center;
}
#top_info .top_info .top_info_contents .top_info_text h4 {
  width: 60%;
  margin: auto;
  border-bottom: 1px solid #000;
  padding-bottom: 0.5vw;
  margin-bottom: 1.5vw;
}
@media screen and (max-width: 768px) {
  #top_info .top_info .top_info_contents .top_info_text h4 {
    width: 100%;
    line-height: 8vw;
    font-size: 6vw;
    padding-bottom: 1.5vw;
    margin-bottom: 3vw;
  }
}
#top_info .top_info .top_info_contents .top_info_text p {
  line-height: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_info .top_info .top_info_contents .top_info_text p {
    line-height: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #top_info .top_info .top_info_contents .top_info_text p {
    line-height: 8vw;
    text-align: start;
  }
}

#top_menu {
  overflow: hidden;
}
#top_menu .top_menu {
  position: relative;
  padding: 6vw 0;
}
@media screen and (max-width: 768px) {
  #top_menu .top_menu {
    padding: 12vw 0;
  }
}
#top_menu .top_menu .top_headline {
  width: 50%;
  margin: auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #top_menu .top_menu .top_headline {
    width: 90%;
    margin: auto;
    text-align: start;
  }
}
#top_menu .top_menu .top_headline h2 {
  color: #DAB17E;
  padding-bottom: 0.5vw;
  margin-bottom: 1.5vw;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 768px) {
  #top_menu .top_menu .top_headline h2 {
    padding-bottom: 1.5vw;
    margin-bottom: 3vw;
  }
}
#top_menu .top_menu .top_menu_text {
  text-align: center;
}
@media screen and (max-width: 768px) {
  #top_menu .top_menu .top_menu_text {
    width: 90%;
    margin: auto;
  }
}
#top_menu .top_menu .top_menu_text p {
  line-height: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_menu .top_menu .top_menu_text p {
    line-height: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #top_menu .top_menu .top_menu_text p {
    line-height: 8vw;
    text-align: start;
  }
}
#top_menu .top_menu .top_menu_points img {
  position: absolute;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_menu .top_menu .top_menu_points img {
    width: 25%;
  }
}
@media screen and (max-width: 768px) {
  #top_menu .top_menu .top_menu_points img {
    width: 50%;
  }
}
#top_menu .top_menu .top_menu_points img:first-child {
  top: -30%;
  right: -5%;
}
#top_menu .top_menu .top_menu_points img:last-child {
  bottom: -30%;
  left: -5%;
}
#top_menu .top_menu_contents {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #top_menu .top_menu_contents {
    flex-flow: column;
  }
}
#top_menu .top_menu_contents a {
  display: block;
  width: 33.3333333333%;
  height: 20vw;
  position: relative;
  text-decoration: none;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 768px) {
  #top_menu .top_menu_contents a {
    width: 100%;
    height: 60vw;
  }
}
#top_menu .top_menu_contents a:hover h4 {
  bottom: 6%;
}
@media screen and (max-width: 768px) {
  #top_menu .top_menu_contents a:hover h4 {
    bottom: 12%;
  }
}
#top_menu .top_menu_contents a h4 {
  position: absolute;
  bottom: 4%;
  right: 2%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1vw;
  width: 50%;
  transition: all 0.4s;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_menu .top_menu_contents a h4 {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  #top_menu .top_menu_contents a h4 {
    width: 40%;
    bottom: 8%;
    gap: 2vw;
  }
}
#top_menu .top_menu_contents a h4 img {
  width: 20%;
}
@media screen and (max-width: 768px) {
  #top_menu .top_menu_flex {
    margin-top: 4vw;
  }
}
#top_menu .top_menu_flex .top_menu_flex_contents {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #top_menu .top_menu_flex .top_menu_flex_contents {
    flex-flow: column;
  }
  #top_menu .top_menu_flex .top_menu_flex_contents:last-child {
    flex-flow: column-reverse;
  }
}
#top_menu .top_menu_flex .top_menu_flex_contents .top_menu_flex_image {
  width: 50%;
  height: 30vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_menu .top_menu_flex .top_menu_flex_contents .top_menu_flex_image {
    height: 45vw;
  }
}
@media screen and (max-width: 768px) {
  #top_menu .top_menu_flex .top_menu_flex_contents .top_menu_flex_image {
    width: 100%;
    height: 60vw;
  }
}
#top_menu .top_menu_flex .top_menu_flex_contents .top_menu_flex_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#top_menu .top_menu_flex .top_menu_flex_contents .top_menu_flex_text {
  width: 50%;
  height: 30vw;
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_menu .top_menu_flex .top_menu_flex_contents .top_menu_flex_text {
    height: 45vw;
  }
}
@media screen and (max-width: 768px) {
  #top_menu .top_menu_flex .top_menu_flex_contents .top_menu_flex_text {
    width: 100%;
    height: 100vw;
  }
}
#top_menu .top_menu_flex .top_menu_flex_contents .top_menu_flex_text h3 {
  width: 95%;
  text-align: center;
  margin-bottom: 2vw;
  color: #fff;
  padding-bottom: 0.5vw;
  margin-bottom: 1.5vw;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  #top_menu .top_menu_flex .top_menu_flex_contents .top_menu_flex_text h3 {
    padding-bottom: 1.5vw;
    margin-bottom: 3vw;
    line-height: 8vw;
  }
}
#top_menu .top_menu_flex .top_menu_flex_contents .top_menu_flex_text p {
  width: 98%;
  color: #fff;
  margin: 0 auto;
  text-align: center;
  font-weight: 300;
  line-height: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_menu .top_menu_flex .top_menu_flex_contents .top_menu_flex_text p {
    line-height: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #top_menu .top_menu_flex .top_menu_flex_contents .top_menu_flex_text p {
    line-height: 8vw;
    width: 95%;
    text-align: start;
  }
}
#top_menu .top_menu_button {
  padding: 2vw 0;
  text-align: center;
  width: 30%;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_menu .top_menu_button {
    padding: 4vw 0;
  }
}
@media screen and (max-width: 768px) {
  #top_menu .top_menu_button {
    width: 80%;
    padding: 8vw 0;
  }
}
#top_menu .top_menu_button a {
  width: 100%;
  display: block;
  text-decoration: none;
}
#top_menu .top_menu_button a button {
  width: 100%;
  padding: 1.5vw 0;
  background-color: #B32731;
  border: none;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Shippori Mincho B1", serif;
}
@media screen and (max-width: 768px) {
  #top_menu .top_menu_button a button {
    padding: 4vw 0;
  }
}
#top_menu .top_menu_button a button img {
  margin-left: 1vw;
  width: 8%;
}
@media screen and (max-width: 768px) {
  #top_menu .top_menu_button a button img {
    margin-left: 2vw;
  }
}

#top_gallery {
  padding-bottom: 8vw;
}
#top_gallery .top_gallery {
  position: relative;
}
#top_gallery .top_gallery img {
  width: 30vw;
  height: 25vw;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  #top_gallery .top_gallery img {
    height: 45vw;
  }
}
#top_gallery .top_gallery .prev-arrow {
  width: 5%;
  height: auto;
  position: absolute;
  bottom: -10%;
  left: 25px;
}
@media screen and (max-width: 768px) {
  #top_gallery .top_gallery .prev-arrow {
    width: 8%;
  }
}
#top_gallery .top_gallery .next-arrow {
  width: 5%;
  height: auto;
  position: absolute;
  bottom: -10%;
  right: 25px;
}
@media screen and (max-width: 768px) {
  #top_gallery .top_gallery .next-arrow {
    width: 8%;
  }
}
#top_gallery .top_gallery .slick-dots {
  bottom: -12%;
}
@media screen and (max-width: 768px) {
  #top_gallery .top_gallery .slick-dots {
    bottom: -15%;
  }
}

#top_store .top_store {
  padding: 8vw 0;
  background-size: cover;
  background-position: center;
}
#top_store .top_store .top_store_contents {
  width: 80%;
  margin: auto;
  padding: 4vw;
  background-color: rgba(255, 255, 255, 0.9);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_store .top_store .top_store_contents {
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  #top_store .top_store .top_store_contents {
    width: 95%;
  }
}
#top_store .top_store .top_store_contents .top_store_flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #top_store .top_store .top_store_contents .top_store_flex {
    flex-flow: column-reverse;
  }
}
#top_store .top_store .top_store_contents .top_store_flex .top_store_left {
  width: 60%;
}
@media screen and (max-width: 768px) {
  #top_store .top_store .top_store_contents .top_store_flex .top_store_left {
    width: 90%;
    margin: auto;
    margin-bottom: 4vw;
  }
}
#top_store .top_store .top_store_contents .top_store_flex .top_store_left .top_headline {
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #top_store .top_store .top_store_contents .top_store_flex .top_store_left .top_headline {
    text-align: center;
    margin-bottom: 4vw;
  }
}
#top_store .top_store .top_store_contents .top_store_flex .top_store_left .top_headline h2 {
  font-family: "Yuji Syuku", serif;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_store .top_store .top_store_contents .top_store_flex .top_store_left .top_headline h2 {
    font-size: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #top_store .top_store .top_store_contents .top_store_flex .top_store_left .top_headline h2 {
    font-size: 8vw;
  }
}
#top_store .top_store .top_store_contents .top_store_flex .top_store_left .top_store_content table {
  width: 100%;
  border-collapse: collapse;
}
#top_store .top_store .top_store_contents .top_store_flex .top_store_left .top_store_content table tr td {
  border-bottom: 1px solid #000;
  padding: 1.5vw 0;
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_store .top_store .top_store_contents .top_store_flex .top_store_left .top_store_content table tr td {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #top_store .top_store .top_store_contents .top_store_flex .top_store_left .top_store_content table tr td {
    font-size: 3.4vw;
  }
}
#top_store .top_store .top_store_contents .top_store_flex .top_store_right {
  width: 35%;
}
@media screen and (max-width: 768px) {
  #top_store .top_store .top_store_contents .top_store_flex .top_store_right {
    width: 80%;
    margin: auto;
  }
}
#top_store .top_store .top_store_contents .top_store_flex .top_store_right img {
  width: 100%;
}
#top_store .top_store .top_store_contents .top_store_btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
  width: 70%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #top_store .top_store .top_store_contents .top_store_btns {
    width: 90%;
    flex-flow: column;
  }
}
#top_store .top_store .top_store_contents .top_store_btns a {
  width: 45%;
  display: block;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  #top_store .top_store .top_store_contents .top_store_btns a {
    width: 100%;
  }
}
#top_store .top_store .top_store_contents .top_store_btns a:last-child button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
}
#top_store .top_store .top_store_contents .top_store_btns a button {
  border: none;
  background-color: #B32731;
  color: #fff;
  width: 100%;
  padding: 1.5vw;
  font-size: 1.5vw;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 300;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_store .top_store .top_store_contents .top_store_btns a button {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #top_store .top_store .top_store_contents .top_store_btns a button {
    font-size: 4vw;
    padding: 4vw 0;
  }
}
#top_store .top_store .top_store_contents .top_store_btns a button i {
  margin-right: 1vw;
}

#top_map .top_map iframe {
  width: 100%;
}

#course .course {
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  #course .course {
    margin-bottom: 8vw;
  }
}

.course_contents {
  width: 66.6666666667%;
  margin: auto;
  border-bottom: 1px solid #000;
  padding: 0 1vw;
  padding-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  .course_contents {
    width: 95%;
    padding-bottom: 8vw;
  }
}
.course_contents:not(:first-child) {
  padding-top: 2vw;
}
@media screen and (max-width: 768px) {
  .course_contents:not(:first-child) {
    padding-top: 8vw;
  }
}
.course_contents .course_title {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}
.course_contents .course_title span {
  margin-left: auto;
  color: #B32731;
}
.course_contents .course_title .toggle_icon {
  font-size: 20px;
  margin-left: 2vw;
  transition: transform 0.3s;
}
.course_contents .course_table {
  display: none;
  border-collapse: collapse;
  width: 80%;
  margin: 2vw auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .course_contents .course_table {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .course_contents .course_table {
    width: 100%;
  }
}
.course_contents .course_table tr td {
  padding: 1vw;
  font-size: 1vw;
  border-bottom: 1px solid #B4B4B4;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .course_contents .course_table tr td {
    padding: 2vw;
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  .course_contents .course_table tr td {
    padding: 3vw;
    font-size: 3.4vw;
  }
}
.course_contents.active .course_table {
  display: table;
}
.course_contents.active .toggle_icon {
  content: "-";
}

#carte .carte .carte_text {
  text-align: center;
  width: 80%;
  margin: auto;
  margin-bottom: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #carte .carte .carte_text {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #carte .carte .carte_text {
    width: 90%;
    margin-bottom: 4vw;
    text-align: start;
  }
}
#carte .carte .carte_text p {
  line-height: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #carte .carte .carte_text p {
    line-height: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #carte .carte .carte_text p {
    line-height: 8vw;
  }
}
#carte .carte .carte_image {
  width: 66.6666666667%;
  margin: auto;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #carte .carte .carte_image {
    width: 90%;
    margin-bottom: 4vw;
  }
}
#carte .carte .carte_image img {
  width: 100%;
}
#carte .carte .carte_contents {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2vw;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  #carte .carte .carte_contents {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  #carte .carte .carte_contents:last-child .carte_content:first-child {
    width: 30%;
  }
}
#carte .carte .carte_contents:last-child .carte_content:nth-child(2) {
  width: 30%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #carte .carte .carte_contents:last-child .carte_content:nth-child(2) {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  #carte .carte .carte_contents:last-child .carte_content:nth-child(2) {
    width: 60%;
  }
}
#carte .carte .carte_contents .carte_content {
  width: 20%;
}
@media screen and (max-width: 768px) {
  #carte .carte .carte_contents .carte_content {
    width: 45%;
    margin-bottom: 4vw;
  }
}
#carte .carte .carte_contents .carte_content h4 {
  color: #B32731;
  text-align: center;
  margin-bottom: 1vw;
  padding-bottom: 1vw;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 768px) {
  #carte .carte .carte_contents .carte_content h4 {
    margin-bottom: 2vw;
    padding-bottom: 2vw;
  }
}
#carte .carte .carte_contents .carte_content p {
  margin-bottom: 0.8vw;
  text-align: center;
}
#carte .carte .carte_contents .carte_content .carte_flex {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6vw;
}
#carte .carte .carte_contents .carte_content .carte_flex p {
  width: 42%;
}
#carte .carte .carte_bottom {
  width: 80%;
  margin: auto;
  background-color: #BA9568;
  padding: 2vw 0;
  text-align: center;
  margin-bottom: 8vw;
}
@media screen and (max-width: 768px) {
  #carte .carte .carte_bottom {
    width: 95%;
    padding: 4vw 0;
    margin-bottom: 16vw;
  }
}
#carte .carte .carte_bottom h4 {
  width: 40%;
  margin: auto;
  padding-bottom: 1vw;
  margin-bottom: 1vw;
  color: #fff;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  #carte .carte .carte_bottom h4 {
    width: 80%;
    padding-bottom: 2vw;
    margin-bottom: 2vw;
  }
}
#carte .carte .carte_bottom p {
  color: #fff;
}

#drink .drink {
  width: 66.6666666667%;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #drink .drink {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #drink .drink {
    width: 95%;
  }
}
#drink .drink .drink_contents {
  width: 100%;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  #drink .drink .drink_contents {
    margin-bottom: 8vw;
  }
}
#drink .drink .drink_contents:nth-child(6) table tr:first-child td {
  border: none;
}
#drink .drink .drink_contents h4 {
  padding-bottom: 1vw;
  color: #B32731;
  border-bottom: 1px solid #000;
}
#drink .drink .drink_contents table {
  border-collapse: collapse;
  width: 100%;
}
#drink .drink .drink_contents table tr td {
  padding: 1vw;
  font-size: 1vw;
  border-bottom: 1px solid #000;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #drink .drink .drink_contents table tr td {
    padding: 2vw 1vw;
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #drink .drink .drink_contents table tr td {
    padding: 3vw 1vw;
    font-size: 3.4vw;
  }
}
#drink .drink .drink_contents table tr td:first-child {
  width: 50%;
}
#drink .drink .drink_contents table tr td:last-child {
  width: 30%;
  text-align: end;
}

#about .about .about_contents {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #about .about .about_contents {
    flex-flow: column;
  }
}
#about .about .about_contents:nth-child(even) {
  flex-flow: row-reverse;
}
@media screen and (max-width: 768px) {
  #about .about .about_contents:nth-child(even) {
    flex-flow: column;
  }
}
#about .about .about_contents:nth-child(even) .about_right {
  background-color: #BA9568;
}
#about .about .about_contents:last-child {
  margin-bottom: 8vw;
}
@media screen and (max-width: 768px) {
  #about .about .about_contents:last-child {
    margin-bottom: 16vw;
  }
}
#about .about .about_contents .about_left {
  width: 50%;
  height: 30vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #about .about .about_contents .about_left {
    height: 60vw;
  }
}
@media screen and (max-width: 768px) {
  #about .about .about_contents .about_left {
    width: 100%;
    height: 60vw;
  }
}
#about .about .about_contents .about_left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#about .about .about_contents .about_right {
  width: 50%;
  height: 30vw;
  background-color: #B32731;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  text-align: start;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #about .about .about_contents .about_right {
    height: 60vw;
  }
}
@media screen and (max-width: 768px) {
  #about .about .about_contents .about_right {
    width: 100%;
    height: 100vw;
  }
}
#about .about .about_contents .about_right .about_content {
  color: #fff;
  width: 90%;
  margin: auto;
}
#about .about .about_contents .about_right .about_content h3 {
  padding-bottom: 2vw;
  margin-bottom: 2vw;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  #about .about .about_contents .about_right .about_content h3 {
    padding-bottom: 4vw;
    margin-bottom: 4vw;
  }
}
#about .about .about_contents .about_right .about_content h5 {
  margin-bottom: 1vw;
}
@media screen and (max-width: 768px) {
  #about .about .about_contents .about_right .about_content h5 {
    margin-bottom: 2vw;
  }
}
#about .about .about_contents .about_right .about_content p {
  line-height: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #about .about .about_contents .about_right .about_content p {
    line-height: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #about .about .about_contents .about_right .about_content p {
    line-height: 8vw;
  }
}
#about .about .about_detail {
  width: 80%;
  margin: 8vw auto;
}
@media screen and (max-width: 768px) {
  #about .about .about_detail {
    width: 95%;
  }
}
#about .about .about_detail .about_headline {
  padding-left: 1.5vw;
  border-left: 2px solid #B32731;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #about .about .about_detail .about_headline {
    border-left: 4px solid #B32731;
    margin-bottom: 4vw;
  }
}
#about .about .about_detail table {
  width: 100%;
  border-collapse: collapse;
}
@media screen and (max-width: 768px) {
  #about .about .about_detail table tr {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-flow: column;
  }
}
#about .about .about_detail table tr td {
  border-bottom: 1px solid #000;
  font-size: 1vw;
  padding: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #about .about .about_detail table tr td {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #about .about .about_detail table tr td {
    padding: 2vw;
    font-size: 3.4vw;
    width: 100%;
  }
  #about .about .about_detail table tr td:first-child {
    border-bottom: none;
  }
}
#about .about .about_access {
  text-align: center;
  width: 80%;
  margin: 2vw auto;
}
@media screen and (max-width: 768px) {
  #about .about .about_access {
    width: 95%;
    text-align: start;
    margin-bottom: 4vw;
  }
}
#about .about .about_access span {
  color: #B32731;
  margin: 0 1vw;
}
@media screen and (max-width: 768px) {
  #about .about .about_access span {
    margin: 0 2vw;
  }
}
#about .about .map {
  width: 100%;
}
#about .about .map iframe {
  width: 100%;
}

#concept .concept .concept_top_text {
  text-align: center;
  width: 80%;
  margin: auto;
  margin-bottom: 4vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #concept .concept .concept_top_text {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #concept .concept .concept_top_text {
    width: 90%;
    margin-bottom: 8vw;
    text-align: start;
  }
}
#concept .concept .concept_top_text p {
  line-height: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #concept .concept .concept_top_text p {
    line-height: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #concept .concept .concept_top_text p {
    line-height: 8vw;
  }
}
#concept .concept .concept_contents .concept_content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 2vw;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #concept .concept .concept_contents .concept_content {
    width: 90%;
    margin: auto;
    margin-bottom: 4vw;
    flex-flow: column;
  }
}
#concept .concept .concept_contents .concept_content .concept_left {
  width: 50%;
  margin-left: 16vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #concept .concept .concept_contents .concept_content .concept_left {
    margin-left: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #concept .concept .concept_contents .concept_content .concept_left {
    width: 100%;
    margin-left: 0;
  }
}
#concept .concept .concept_contents .concept_content .concept_left .concept_headline {
  padding-left: 1vw;
  border-left: 3px solid #B32731;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #concept .concept .concept_contents .concept_content .concept_left .concept_headline {
    margin-bottom: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #concept .concept .concept_contents .concept_content .concept_left .concept_headline h4 {
    line-height: 8vw;
    font-size: 5vw;
  }
}
#concept .concept .concept_contents .concept_content .concept_left .concept_headline p span {
  font-size: 2.4vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #concept .concept .concept_contents .concept_content .concept_left .concept_headline p span {
    font-size: 3.6vw;
  }
}
@media screen and (max-width: 768px) {
  #concept .concept .concept_contents .concept_content .concept_left .concept_headline p span {
    font-size: 5vw;
  }
}
#concept .concept .concept_contents .concept_content .concept_left .concept_text p {
  line-height: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #concept .concept .concept_contents .concept_content .concept_left .concept_text p {
    line-height: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #concept .concept .concept_contents .concept_content .concept_left .concept_text p {
    line-height: 8vw;
  }
}
#concept .concept .concept_contents .concept_content .concept_right {
  width: 50%;
}
@media screen and (max-width: 768px) {
  #concept .concept .concept_contents .concept_content .concept_right {
    width: 100%;
  }
}
#concept .concept .concept_contents .concept_content .concept_right img {
  width: 100%;
}

footer .footer {
  padding: 4vw 0 2vw 0;
}
@media screen and (max-width: 768px) {
  footer .footer {
    padding: 8vw 0 4vw 0;
  }
}
footer .footer .footer_logo {
  width: 25%;
  margin: auto;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  footer .footer .footer_logo {
    width: 60%;
    margin-bottom: 8vw;
  }
}
footer .footer .footer_logo img {
  width: 100%;
}
footer .footer .footer_menu {
  width: 50%;
  margin: auto;
  margin-bottom: 4vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer .footer_menu {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  footer .footer .footer_menu {
    width: 90%;
  }
}
footer .footer .footer_menu .main_menu {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
}
@media screen and (max-width: 768px) {
  footer .footer .footer_menu .main_menu {
    flex-wrap: wrap;
  }
}
footer .footer .footer_menu .main_menu li {
  border-left: 1px solid #000;
}
@media screen and (max-width: 768px) {
  footer .footer .footer_menu .main_menu li {
    width: 30%;
    text-align: center;
    margin-bottom: 6vw;
  }
  footer .footer .footer_menu .main_menu li:nth-child(3) {
    border-right: 1px solid #000;
  }
}
footer .footer .footer_menu .main_menu li:last-child {
  border-right: 1px solid #000;
}
footer .footer .footer_menu .main_menu li a {
  text-decoration: none;
  color: #000;
  padding: 0 1.5vw;
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer .footer_menu .main_menu li a {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  footer .footer .footer_menu .main_menu li a {
    font-size: 3.4vw;
  }
}
footer .footer .copyright {
  text-align: center;
}/*# sourceMappingURL=style.css.map */