@charset "UTF-8";

/*-------------------
  Header
-------------------*/
#header {
  width: 100%;
  height: 85px;
  /*color: #fff;*/
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  transition: all 0.3s;
}

#header.top-head.on-scroll {
  color: #000000;
  transition: all 0.3s;
}

#header.top-head.on-scroll a {
  /*color: #000000;*/
  transition: all 0.3s;
}

#header.under-head.on-scroll {
  color: #000000;
  transition: all 0.3s;
}

#header.under-head.on-scroll a {
  color: #000000;
  transition: all 0.3s;
}


#header .header-flexWrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}

#header .header-reserve-btn a {
  color: #fff;
  line-height: normal;
}

#header.on-scroll .header-reserve-btn a {
  color: #fff;
}

#header .outsideNavi.is-transparent {
  opacity: 0.5;
  transition: all 0.3s;
}

#header.on-scroll .outsideNavi__list-item:last-of-type::after {
  border-bottom: 1px solid #000;
  border-left: 1px solid #000;
  transition: all 0.3s;
}

#header.on-scroll .outsideNavi__list-item:last-of-type::before {
  background: #000;
}

#header.on-scroll .outsideNavi__list-item a::after {
  background: #000;
}

#header::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #dddddd;
  opacity: 0.5;
  top: -100%;
  z-index: -1;
  transition: all 0.3s;
}

#header.on-scroll::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #dddddd;
  opacity: 0.5;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.3s;
}

#header.under-head.on-scroll .header-tel-btn a {
  color: #fff;
}

#header .outsideNavi {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 45px;
}

#header .outsideNavi__list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-weight: 500;
  overflow: unset;
}

#header .outsideNavi__list-item {
  margin-right: 35px;
}

#header .outsideNavi__list-item:last-of-type {
  margin-right: 0;
  /*padding-right: 20px;*/
  position: relative;
  cursor: pointer;
}

#header .outsideNavi__list-item a {
  font-size: clamp(15px, 0.93vw, 18px);
  position: relative;
  padding-bottom: 5px;
}

#header .outsideNavi__list-item a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  /*  background: #ffffff;*/
  bottom: -0.5px;
  /*アンダーラインがaタグの下端から現れる*/
  transform: scale(0, 1);
  /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
  transform-origin: left top;
  /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
  transition: transform 0.3s;
}

#header .outsideNavi__list-item a:hover::after {
  transform: scale(1, 1);
  /*ホバー後、x軸方向に1（相対値）伸長*/
}

/*------- 言語選択 -------*/

.change-language {
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
  position: fixed;
  background-color: #ffffff;
  right: 253px;
  top: 69px;
  width: auto;
  min-width: 107px;
  transition: max-height 1s, transform 1s;
  z-index: 99;
}

#header .language-ttl {
  font-size: clamp(15px, 0.93vw, 18px);
  padding-right: 20px;
}

.change-language a {
  color: #000000;
  font-size: 15px;
  line-height: 1;
  padding: 11px 15px;
  display: block;
}

.on-scroll .change-language a {
  color: #000;
  transition: all .3s;
}

.language-item a::after {
  display: none;
}

.change-language .language-item {
  border-bottom: 2px solid #bbbbbb;
}

@media screen and (min-width: 768px) {
   .language-item a:hover {
    transition: all .3s;
    opacity: .5;
  }

}

.change-language .language-item:last-of-type {
  border-bottom: unset;
}

.change-language.is-appear {
  max-height: 100vh;
  pointer-events: auto;
  transform: translateY(0);
  transition: max-height 1s;
}

#header .header-tel-btn {
  display: none;
}

#header .header-reserve-btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 85px;
  /*  background-color: #9d1a31;*/
  margin-right: 100px;
  position: relative;
  z-index: 9999;
  transition: all .3s;
}

#header .header-reserve-btn a {
  padding: 30px 32px;
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  font-weight: 500;
}
@media screen and (max-width: 1023px) {
.change-language {
  right: 5vw;
}
}

@media screen and (min-width: 768px) {

  #header .header-reserve-btn:hover {
    transition: all .3s;
    opacity: 0.75;
  }
}

/*------ ハンバーガーメニュー ------*/
#header #g-nav {
  position: fixed;
  z-index: -1;
  opacity: 0;
  top: 0;
  right: -700px;
  width: min(45vw, 700px);
  height: 100vh;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s;
}

#header #g-nav .hamburgerLogo {
  display: none;
}

#header #g-nav.panelactive {
  opacity: 1;
  z-index: 999;
  right: 0;
  transition: all 0.3s;
}

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

#header #g-nav ul {
  position: absolute;
  z-index: 999;
  top: 142px;
  left: min(5.2vw, 100px);
}

#header #g-nav.panelactive ul {
  display: block;
}

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

#header #g-nav li a {
  color: #000;
  text-decoration: none;
  padding: 10px;
  display: inline-block;
  /*text-transform: uppercase;*/
  font-weight: 500;
  position: relative;
  font-size: clamp(14px, 3.2vw, 22px);
}


#header #g-nav li a::before {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #000;
  bottom: 8px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}

@media screen and (min-width: 768px) {
  #header #g-nav li a:hover::before {
    transform: scale(1, 1);
  }
}

#header #g-nav li.inside-nav__reserve-check a {
  display: block;
  transition: all .3s;
}

@media screen and (min-width: 768px) {
  #header #g-nav li.inside-nav__reserve-check a:hover {
    transition: all .3s;
    opacity: 0.75;
  }
}

#header #g-nav li.inside-nav__reserve-check a::before {
  display: none;
}

#header .openbtn1 {
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  cursor: pointer;
  width: 100px;
  height: 85px;
  background-color: #fff;
}

#header .openbtn1 span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 35px;
  height: 2px;
  transform: scaleY(0.5) translateY(1px);
  /* background-color: #444444;*/
  width: 30px;
}

#header .openbtn1 span:nth-of-type(1) {
  top: 30px;
}

#header .openbtn1 span:nth-of-type(2) {
  top: 41px;
}

#header .openbtn1 span:nth-of-type(3) {
  top: 52px;
}

#header .openbtn1.active span:nth-of-type(1) {
  top: 42px;
  left: 36px;
  transform: rotate(-45deg);
  width: 30px;
  height: 1px;
}

#header .openbtn1.active span:nth-of-type(2) {
  opacity: 0;
  height: 1px;
}

#header .openbtn1.active span:nth-of-type(3) {
  top: 48px;
  left: 37px;
  transform: translateY(-6px) rotate(45deg);
  width: 30px;
  height: 1px;
}

#header .inside-nav__reserve-check {
  background-color: #dddddd;
  margin: 20px 0px;
  /*margin-top: 48px;
  margin-bottom: 80px;*/
  transition: all .3s;
}

@media screen and (min-width: 768px) {
  #header .inside-nav__reserve-check:hover {
    transition: all .3s;
    opacity: .75;
  }
}

#header .inside-nav__reserve-check a {
  font-size: clamp(15px, 0.93vw, 18px);
  padding: 15px 22px;
  display: block;
  text-align: center;
}

/*----- ハンバーガーメニュー内tel・sns -----*/
#header .address-inNav {
  position: absolute;
  top: 100px;
  right: 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  /*color: #000000;*/
  transition: all 0.3s;
  opacity: 0;
}

#header .address-inNav.is-appear {
  position: fixed;
  /*color: #000000;*/
  transition: all 1s;
  z-index: 9999;
  opacity: 1;
}

#header .address-inNav__tel {
  font-size: clamp(15px, 0.93vw, 18px);
}

#header #g-nav ul.address-inNav__icon {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 15px;
  position: relative;
  top: unset;
  left: unset;
}

#header .address-inNav__icon .address-inNav__icon_item {
  margin-right: 20px;
}

#header #g-nav li.address-inNav__icon_item a::before {
  display: none;
}

#header #g-nav .address-inNav__icon .address-inNav__icon_item a {
  padding: 0;
}

#header #g-nav .address-inNav__icon .address-inNav__icon_item:last-of-type {
  margin-right: 0;
}


#header button.is-disappear {
  opacity: 1;
  pointer-events: unset;
}

/*-------------------
  Header
-------------------*/
@media screen and (max-width: 1280px) {
  #header #g-nav .hamburgerLogo.tab {
    display: none;
  }
}

@media screen and (max-width: 1023.9px) {
  #header #g-nav .hamburgerLogo.tab {
    display: block;
  }

  #header {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    top: 5.333%;
    left: unset;
    right: 5.33%;
  }

  #header::after {
    display: none;
  }

  #header.on-scroll a {
    color: #fff;
  }

  #header.on-scroll::after {
    background-color: unset;
  }

  #header.on-scroll .header-tel-btn a {
    color: #fff;
  }

  #header .outsideNavi {
    margin-right: 0;
  }

  #header .outsideNavi__list-item:last-of-type::before {
    transform: scale(1, 1);
  }

  /*------- 言語選択 -------*/
  #header.language-ttl {
    font-size: clamp(14px, 3.2vw, 24px);
  }

  #header.change-language a {
    font-size: max(2.3vw, 13px);
    line-height: 1;
    padding: 10px 15px;
  }

  #header .header-reserve-btn {
    width: 40.67vw;
    height: min(14.66vw, 100px);
    margin-right: 0;
  }

  #header .header-reserve-btn a {
    padding: 0;
    line-height: min(14.66vw, 100px);
    text-align: center;
    font-size: max(3.733vw, 18px);
  }

  #header .sp-navButton {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: fixed;
    bottom: 0;
    left: 0;
    transition: all 0.3s;
  }

  #header .header-tel-btn {
    display: block;
    width: 40.67vw;
    height: min(14.66vw, 100px);
    background-color: #000000;
    position: relative;
    z-index: 9999;
  }

  #header .header-tel-btn a {
    font-size: max(3.733vw, 18px);
    display: block;
    text-align: center;
    color: #fff;
  }




  /*------ ハンバーガーメニュー ------*/
  #header #g-nav {
    width: 100%;
    right: -100%;
  }

  #header #g-nav.panelactive #g-nav-list {
    width: 100%;
  }

  #header #g-nav ul {
    top: 5.3333%;
    text-align: center;
    left: 50%;
    width: 100%;
    padding-bottom: 100px;
    /* height: 100vh;*/
    transform: translate(-50%, 0);
    padding-left: 13.333vw;
  }

  #header #g-nav li {
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }

  #header #g-nav li a {
    text-align: center;
    margin: 0 auto;
    font-size: clamp(18px, 4.26vw, 32px);
    padding: 10px;
  }

  #header .tel-no {
    font-size: clamp(20px, 5.333vw, 40px) !important;
  }

  #header #g-nav .inside-nav__reserve-check {
    width: fit-content;
    margin: 4vw 0 0;
  }


  /*========= ボタンのためのCSS ===============*/

  #header .openbtn1 {
    position: relative;
    right: unset;
    top: unset;
    width: 18.66vw;
    height: min(14.66vw, 100px);
  }

  #header .openbtn1 span {
    left: 5.966vw;
    width: 6vw;
  }

  #header .openbtn1 span:nth-of-type(1) {
    top: 39%;
  }

  #header .openbtn1 span:nth-of-type(2) {
    top: 53%;
  }

  #header .openbtn1 span:nth-of-type(3) {
    top: 67%;
  }

  #header .openbtn1.active span:nth-of-type(1) {
    top: 50%;
    left: 30%;
    transform: rotate(-45deg);
    width: 43%;

  }

  #header .openbtn1.active span:nth-of-type(3) {
    top: 50%;
    left: 30%;
    transform: rotate(45deg);
    width: 43%;
  }


  /*----- ハンバーガーメニュー内tel・sns -----*/


  #header .address-inNav {
    top: 30px;
    right: 30px;
  }


  #header button.is-disappear {
    opacity: 0;
    pointer-events: none;
    transition: all.3s;
  }

  #header #g-nav .hamburgerLogo {
    display: block;
    position: relative;
    font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", sans-serif;
    font-weight: 700;
    line-height: 1.26;
    z-index: 9;
    color: #000;
    font-size: max(5vw, 15px);
    top: 0;
    left: -8vw;
    font-weight: 700;
    margin-bottom: 13.3333vw;
  }

  #header #g-nav ul .address-inNav__icon {
    height: auto;
  }

  #header .address-inNav.is-appear {
    position: relative;
  }

  #header #g-nav li.address-inNav {
    width: 100%;
    text-align: center;
    margin-left: 0;
    padding-top: 9.33vw;
    border-top: 1px solid #000;
  }

  #header .address-inNav__tel {
    font-size: clamp(14px, 3.7333vw, 28px);
    text-align: center;
  }

  #header #g-nav ul.address-inNav__icon {
    justify-content: flex-start;
    margin-top: 15px;
    position: relative;
    top: unset;
    width: fit-content;
    left: 50%;
  }

  #header #g-nav li.address-inNav__icon_item {
    margin-left: 0;
    margin-right: min(8.66vw, 60px);
  }

  #header #g-nav .address-inNav__icon li.address-inNav__icon_item:last-child {
    margin-right: 0;
  }

  #header #g-nav ul.address-inNav__icon {
    justify-content: center;
    position: relative;
    width: fit-content;
    left: unset;
    display: flex;
    padding-bottom: 26vw;
    top: 0;
    transform: unset;
    margin: 10px auto 0;
    padding-left: 0;
  }


  #header #g-nav ul.address-inNav__icon a {
    padding: 0;
  }

  #header #g-nav li.address-inNav__icon_item a i {
    font-size: clamp(40px, 10.66vw, 80px) !important;
  }

  #header #g-nav .address-inNav__icon .address-inNav__icon_item:first-of-type i {
    font-size: clamp(31px, 8vw, 60px) !important;
  }

  #header .outsideNavi.is-transparent {
    opacity: 1;
    transition: all 0.3s;
    color: #000;
    position: relative;
    z-index: 9999;
  }

  #header .outsideNavi.is-transparent .outsideNavi__list-item:last-of-type::before {
    background: #000;
  }


  #header .outsideNavi.is-transparent .outsideNavi__list-item:last-of-type::after {
    border-bottom: 1px solid #000;
    border-left: 1px solid #000;
  }

  #header #g-nav .hamburger-language {
    width: fit-content;
    position: absolute;
    margin-right: 0;
    padding-right: 20px;
    position: absolute;
    cursor: pointer;
    color: #000;
    right: 5.333%;
    top: 0;
  }


  #header #g-nav .hamburger-language::after {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    border-bottom: 1px solid #000;
    border-left: 1px solid #000;
    transform: rotate(-45deg) translateY(-50%);
    top: 50%;
    right: 0;
    pointer-events: none;
    transition: all 0.3s;
  }

  #header #g-nav .hamburger-language::before {
    position: absolute;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: #000;
    bottom: -0.5px;
    transform-origin: left top;
    transition: transform 0.3s;
  }
}

.tel-no::before {
  content: none !important;
}