@charset "UTF-8";
:root {
  --header-height: 100px;
  --margin-between-header: 20px;
}

@media screen and (max-width: 1000px) {
  :root {
    --header-height: 40px;
    --margin-between-header: 15px;
  }
}
/* ========== ========== ==========
変数定義
========== ========== ========== */
/* ========== ========== ==========
共通部
========== ========== ========== */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 50px;
}

body {
  line-height: 1.7;
  font-family: YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
}

#html #body .sp-show,
#html #body .sp-show-flex {
  display: none;
}

@media screen and (max-width: 768px) {
  #html #body .sp-show {
    display: block;
  }
  #html #body .sp-show-flex {
    display: flex;
  }
  #html #body .sp-hide {
    display: none;
  }
}
#html #body .tb-show,
#html #body .tb-show-flex {
  display: none;
}

@media screen and (max-width: 1000px) {
  #html #body .tb-show {
    display: block;
  }
  #html #body .tb-show-flex {
    display: flex;
  }
  #html #body .tb-hide {
    display: none;
  }
}
a {
  color: black;
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  a.-hover:hover,
button.-hover:hover,
input.-hover:hover {
    opacity: 0.7;
    transition: all 0.3s;
    cursor: pointer;
  }
}
.sectionWrap {
  width: 80%;
  padding: 0 20px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .sectionWrap {
    width: 100%;
    padding: 0 clamp(20px, 6.5104166667vw, 50px);
  }
}

.sectionTitle {
  font-size: clamp(18px, 2.734375vw, 35px);
  display: flex;
  align-items: center;
  margin-bottom: -35px;
  position: relative;
  left: -30px;
}
.sectionTitle img {
  width: 150px;
  margin-right: 20px;
}

.section_subtitle {
  font-size: 12px;
  line-height: 1;
}

.section_title {
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 7px;
}

.section_text {
  font-size: 14px;
  line-height: 2.2142857143;
}

.sectionTitle span,
.section_subtitle span,
.section_title span,
.section_text span {
  display: inline-block;
}

a {
  text-decoration: none;
}

.header_fix {
  position: relative;
  position: fixed;
  z-index: 100;
  right: 0;
  left: 0;
  top: 0;
  height: 113px;
  display: flex;
  padding: 0 10.234375%;
  justify-content: space-between;
}

.header_fix::before {
  content: "";
  z-index: -1;
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(rgb(187, 187, 187), rgba(255, 255, 255, 0));
}

.header_logo {
  width: 272px;
  margin-top: 37px;
}

.header_btns {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.header .btn_language {
  position: relative;
  align-items: center;
  margin-right: 20px;
  width: 98px;
  font-family: serif;
}

.header_nav_item .btn_language {
  margin-right: 0;
  margin-left: 10px;
}

.btn_language.-white,
.btn_language.-white .button {
  color: white;
}

.header .btn_language_btn {
  display: flex;
}

.header.-active .btn_language_btn {
  color: white;
}

.header .btn_language_btn::after {
  content: "";
  display: block;
  margin-left: 7px;
  margin-top: 5px;
  background-color: black;
  height: calc(tan(60deg) * 10px / 2);
  width: 10px;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.header.-active .btn_language_btn::after {
  background-color: white;
}

.btn_language.-white .btn_language_btn::after {
  background-color: white;
}

.btn_language .accordion {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  display: none;
  padding: 10px 0;
  text-align: center;
  background-color: #eee;
  border-radius: 20px;
}

.header .btn_language.active .accordion {
  display: block;
}

#html #body .js-en {
  display: none;
}

.header .btn_reservation {
  margin-right: 33px;
  width: 101px;
}

.header .btn_reservation_btn {
  text-align: center;
  border: solid 1px black;
  display: inline-block;
  padding: 6px 20px;
}

.header .btn_reservation_btn.js-en {
  font-size: 14px;
  padding: 6px 5px;
}

.header.-active .btn_reservation_btn {
  color: white;
  border-color: white;
}

.header .btn_headerNav {
  display: flex;
  flex-direction: column;
  gap: 8px 0;
  width: 82px;
}
@media screen and (max-width: 768px) {
  .header .btn_headerNav {
    width: 40px;
  }
}

.header .btn_headerNav span {
  display: inline-block;
  height: 6px;
  width: 82px;
  background: black;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .header .btn_headerNav span {
    width: 40px;
    height: 3px;
  }
}

.header_nav {
  display: none;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(11, 26, 101, 0.9);
}

.header_nav_list {
  display: flex;
  flex-wrap: wrap;
  max-width: 600px;
  margin: clamp(140px, 14.6875%, 200px) auto 0;
}

.header_nav_item {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 44px;
}

.header_nav_item button {
  color: white;
}

.header_nav_item .js-en {
  width: 100%;
  text-align: center;
}

.header_nav_item_language {
  display: block;
  width: 100%;
  text-align: center;
}

.header_nav a {
  color: white;
  font-size: clamp(14.67px, 1.72vw, 22px);
  width: 100%;
  padding: 0 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
}

.header_nav a * {
  font-family: serif;
}

.header_nav_btn .btn_reservation_btn {
  max-width: 150px;
}

.header_nav_btn_eg {
  display: inline-block;
  width: 100px;
  font-size: clamp(10.67px, 1.25vw, 16px);
}

.header .active-hide {
  display: block;
}

.header .active-show {
  display: none;
}

.header.-active .header_fix::before {
  display: none;
}

.header.-active .header_nav {
  display: block;
}

.header.-active .active-show {
  display: block;
}

.header.-active .active-hide {
  display: none;
}

.header.-active .btn_headerNav span {
  width: 50px;
  background: white;
}

.header.-active .btn_headerNav span:first-child {
  transform: translate(25%, 6px) rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .header.-active .btn_headerNav span:first-child {
    transform: translate(-6%, 6px) rotate(-45deg);
  }
}

.header.-active .btn_headerNav span:last-child {
  transform: translate(25%, -7px) rotate(45deg);
}
@media screen and (max-width: 768px) {
  .header.-active .btn_headerNav span:last-child {
    transform: translate(-6%, -5px) rotate(45deg);
  }
}

@media screen and (max-width: 768px) {
  .header_fix {
    padding: 0 15px;
    height: 50px;
  }
  .header_logo {
    width: 167px;
    margin-top: 0px;
  }
  .header_btns {
    margin-top: 0;
  }
  .header_nav a {
    flex-direction: column;
    align-items: center;
  }
  .header_nav a span {
    width: auto;
  }
}
.header_nav_tokusho_btn {
  display: flex;
  justify-content: center;
  font-size: 16px;
  margin-top: 20px;
}

.header_nav_tokusho_btn .header_nav_btn_eg {
  width: 100%;
}

.footer {
  background: #0B1A65;
  padding: 56px 10px 81px;
  font-size: 16px;
  line-height: 1.4375;
}

.footer,
.footer a {
  color: white;
}

.footer_main {
  /* display: flex; */
  /* justify-content: center; */
  /* gap: 0 5.78125%; */
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .footer_main {
    flex-direction: column;
    margin: 0 5%;
    gap: 20px;
  }
}
.copyright {
  text-align: center;
  padding: 0 10px;
}

.aboutUs {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.aboutUs_texts {
  display: flex;
  justify-content: center;
  margin-bottom: 90px;
}

.aboutUs_address {
  border-right: solid 1px #ddd;
  padding-right: 3%;
}

.aboutUs_address_name {
  font-size: 18px;
  margin-bottom: 7px;
}

.aboutUs_address_address {
  font-size: 10px;
  margin-bottom: 8px;
}

.aboutUs_sns_list {
  display: flex;
}

.aboutUs_sns_item {
  width: 10px;
  margin-right: 10px;
}

.aboutUs_sns_item a {
  display: flex;
}

.aboutUs_businessHour {
  border-right: solid 1px #ddd;
  padding: 0 3%;
}

.aboutUs_businessHour_date {
  font-size: 10px;
  line-height: 2;
  margin-bottom: 5px;
}

.aboutUs_businessHour_tel {
  font-size: 26px;
  line-height: 1;
  font-weight: bold;
}

.aboutUs_businessHour_tel span {
  margin-top: 3px;
  display: block;
  font-size: 10px;
}

.aboutUs_reservation {
  padding-left: 3%;
  text-align: center;
}

.aboutUs_reservation_title {
  display: block;
  font-size: 10px;
  margin-bottom: 15px;
}

.aboutUs_reservation_btn a {
  display: block;
  color: white;
  background-color: #C55631;
  padding: 15px 0;
  width: 228px;
  font-size: 16px;
}

.aboutUs_reservation_btn a span {
  display: inline-block;
}

.aboutUs_reservation_btn a.-en {
  font-size: 14px;
  line-height: 1.2;
  padding: 10px 0;
}

.aboutUs_image {
  width: 100%;
  margin-bottom: 30px;
}

.aboutUs_innerMap {
  display: flex;
  /* justify-content: space-between; */
  margin-bottom: 43px;
}

.aboutUs_innerMap_image {
  /* width: 49.4117647059%; */
  width: 30%;
}

.aboutUs_innerMap_texts {
  margin-right: 10%;
  margin-bottom: 20px;
}

.aboutUs_boardMap {
  margin-bottom: 80px;
  width: 100%;
  text-align: center;
}

.aboutUs_boardMap .section_title {
  margin-bottom: 27px;
}

@media screen and (max-width: 768px) {
  .aboutUs_texts {
    flex-direction: column;
  }
  .aboutUs_address {
    border-right: none;
    padding-right: 0;
    border-bottom: solid 1px #ddd;
    padding-bottom: 20px;
    text-align: center;
  }
  .aboutUs_sns_list {
    justify-content: center;
  }
  .aboutUs_businessHour {
    border-right: none;
    padding-right: 0;
    border-bottom: solid 1px #ccc;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
  }
  .aboutUs_reservation {
    padding-top: 20px;
  }
  .aboutUs_reservation_btn {
    display: flex;
    justify-content: center;
  }
  .aboutUs_reservation_btn a {
    width: 60%;
  }
  .aboutUs_innerMap {
    flex-direction: column;
  }
  .aboutUs_innerMap_image {
    width: 100%;
  }
}
.main_body {
  width: 100%;
}

.mainVisual {
  position: relative;
}
.mainVisual_bg {
  width: 100%;
}
.mainVisual_text {
  position: absolute;
  width: 50%;
  top: calc(50% + 20px);
  left: 50%;
  transform: translate(-50%, -50%);
}

.btn_tel {
  display: block;
  margin-inline: auto;
  text-align: center;
  width: 80%;
  max-width: 800px;
  background-color: #C55631;
  color: white;
  padding: clamp(7px, 1.171875vw, 15px) 15px;
}
@media screen and (max-width: 768px) {
  .btn_tel {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.btn_tel p {
  font-size: clamp(10px, 1.875vw, 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
}
.btn_tel p .big {
  font-size: clamp(14px, 2.8125vw, 40px);
  margin-left: clamp(14px, 3.125vw, 40px);
}
.bannerWrap.top {
  margin-bottom: 30px;
}

.menu {
  max-width: 1200px;
  padding-inline: 50px;
  width: 100%;
  margin-inline: auto;
  margin-bottom: 50px;
}
.menu_title {
  text-align: center;
  color: red;
  font-weight: bold;
  font-size: clamp(20px, 2.34375vw, 30px);
  text-decoration: underline;
  text-underline-offset: 10px;
  margin-bottom: 30px;
}
.menu_ul {
  margin-bottom: 30px;
}
.menu_li:not(:last-of-type) {
  margin-bottom: 20px;
}
.menu_li_body {
  display: flex;
}
@media screen and (max-width: 768px) {
  .menu_li_body {
    flex-direction: column;
    align-items: center;
  }
}
.menu_li_body.type1 {
  gap: min(3.90625vw, 50px);
}
.menu_li_body.type1 img {
  flex: 1;
  width: calc(50% - min(3.90625vw, 50px));
}
@media screen and (max-width: 768px) {
  .menu_li_body.type1 img {
    width: 80%;
    margin-left: 9%;
  }
}
.menu_li_body.type2 {
  gap: min(3.90625vw, 50px);
}
@media screen and (max-width: 768px) {
  .menu_li_body.type2 .menu_li_image {
    width: 70%;
    max-width: 400px;
  }
  .menu_li_body.type2 .menu_li_texts {
    width: 100%;
  }
}
.menu_li_body.type3 {
  gap: min(3.90625vw, 50px) 0;
}
.menu_li_body.type3 img:nth-of-type(1) {
  width: 40%;
}
@media screen and (max-width: 768px) {
  .menu_li_body.type3 img:nth-of-type(1) {
    width: 80%;
  }
}
.menu_li_body.type3 img:nth-of-type(2) {
  width: 60%;
  -o-object-position: right;
     object-position: right;
}
@media screen and (max-width: 768px) {
  .menu_li_body.type3 img:nth-of-type(2) {
    width: 80%;
  }
}
.menu_li_texts {
  width: calc(60% - min(3.90625vw, 50px));
}
.menu_li_text {
  font-size: clamp(16px, 1.5625vw, 20px);
  line-height: 1.8;
  letter-spacing: 2px;
  margin-left: 10px;
}
.menu_li_text .large {
  display: inline-block;
  font-size: clamp(22px, 2.34375vw, 30px);
  margin-bottom: 10px;
}
.menu_li_image {
  width: 40%;
}
@media screen and (max-width: 768px) {
  .menu {
    padding-inline: 15px;
  }
  .menu .sectionTitle {
    margin-bottom: 20px;
    left: 0;
  }
  .menu .sectionTitle img {
    width: clamp(50px, 10.4166666667vw, 80px);
    margin-right: 10px;
  }
}

.maintenance {
  max-width: 1200px;
  width: 100%;
  margin-inline: auto;
  margin-bottom: 50px;
}
.maintenanceWrap {
  border: solid 1px #bbb;
  padding: 15px;
  margin-inline: 50px;
}
@media screen and (max-width: 768px) {
  .maintenanceWrap {
    margin-inline: 15px;
  }
}
.maintenance_title {
  font-size: clamp(20px, 2.1875vw, 28px);
  text-align: center;
  line-height: 1.2;
}
.maintenance_title span {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .maintenance_title {
    margin-bottom: 10px;
  }
}
.maintenance_text1 {
  text-align: center;
  font-size: clamp(16px, 1.40625vw, 18px);
  margin-bottom: 20px;
}
.maintenance_text2 {
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(16px, 1.40625vw, 18px);
}
.maintenance_text2 span {
  display: inline-block;
}
.maintenance_text3 {
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(16px, 1.40625vw, 18px);
  color: red;
}
.maintenance_text3 span {
  display: inline-block;
}

.banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding-bottom: 50px;
}
.banner .-hover:hover {
  opacity: 0.9;
}
.banner img {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .banner img {
    width: max(80%, 320px);
  }
}

.contents_imageWrap {
  position: relative;
}
.contents_imageWrap .btnWrap {
  position: absolute;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contents_imageWrap .btnWrap:has(.-up) {
  top: clamp(10px, 4.8611111111vw, 999px);
}
@media screen and (max-width: 768px) {
  .contents_imageWrap .btnWrap:has(.-up) {
    top: clamp(5px, 1.3020833333vw, 999px);
  }
}
.contents_imageWrap .btnWrap:has(.-bottom) {
  bottom: clamp(20px, 6.9444444444vw, 999px);
}
@media screen and (max-width: 768px) {
  .contents_imageWrap .btnWrap:has(.-bottom) {
    bottom: clamp(10px, 2.6041666667vw, 999px);
  }
}
/* 共通部ここまで
---------- ---------- */