@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  color: #333; /* RGB */
  font-family: 'Lora', serif;
  font-family: 'Noto Serif JP', serif;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 1.6em;
  line-height: 2;
  text-align: left;
}
.header,.footer{
  font-family:'Noto Serif JP';
  font-weight: 500;
}
.hero-image_description{
  font-family: 'Noto Serif JP';
}
main h2,main h3,main h4{
  font-family: 'Noto Serif JP';
  font-weight: 600;

}
.time-info{
  font-family: 'Noto Sans JP';
  font-weight: 400;
}
.footer-close{
  font-family: 'Lora';
  font-weight: 500;
  letter-spacing: 0.07em;
}
a:hover {
  opacity: 0.5;
}
* {
  box-sizing: border-box;
}
ul{
  list-style: none;
}
button{
  border:none;
}
a{
  text-decoration: none;
}

/*ヘッダーPC*/
.header {
  position: fixed;
  z-index: 2;
  width: 100%;
}

.header-wrap {
  max-width: 1270px;
  margin-left: auto;
  display: flex;
  justify-content: space-between;
}

.logo {
  max-width: 118px;
  height: 111px;
}

.header_inner {
  height: 70px;
  display: flex;
  gap: 50px;
}
.header ul li:nth-of-type(4){
  display: none;
}

.nav-navigation {
  display: flex;
  gap: 50px;
  text-align: center;
  height: 70px;
  line-height: 1.6;
  align-items: center;
}

.nav-navigation a {
  font-size: 1.2rem;
  line-height: 1.1;
  letter-spacing: 0.08em;
}

.nav-navigation .navigation_english {
  font-size: 2.2rem;
  font-family: 'Lora';
  margin-bottom: -5px;
}

.nav-navigation span {
  font-size: 1.4rem;
  font-family: 'Lora';
  letter-spacing: 0.08em;
}

.header_inner a {
  color: #3D3D3D;
  vertical-align: middle;
}

.header_cv a {
  width: 185px;
  height: 70px;
  background: rgba(83, 152, 174);
  color: #fff;
  text-align: center;
  align-items: center;
  vertical-align: middle;
}

.header_cv {
  font-size: 2.4rem;
  width: 185px;
  height: 70px;
  background: rgba(83, 152, 174);
  color: #fff;
  display: flex;
  align-items: center;
  padding: 20px;
  line-height: 0.9;
  letter-spacing: 0.08em;
}

.header_cv span {
  font-size: 1.2rem;
  padding-left: 13px;
}

.header_cv span:first-child {
  font-size: 2.4rem;
  display: inline-block;
  padding-top: 12px;
  font-weight: 600;
}

@media(max-width: 1200px) {
  .header_cv span {
      font-size: 1rem;
      padding-left: 8px;
  }

  .header_cv span:first-child {
      font-size: 1.6rem;
      padding-top: 13px;
  }

  .header_cv a {
      background: rgba(83, 152, 174);
      color: #fff;
      line-height: 0.7;
      height: 60px;
  }

  .header_cv img {
      width: 22px;
  }
}

@media(min-width:960px) {
  .header {
      padding: 0 0 0 24px;
  }
  .nav-navigation {
      display: flex;
  }

  .logo {
      height: 80px;
      margin-left: 24px;
      margin-top: 10px;
  }
  .header_cv {
    font-size: 2.4rem;
    width: 185px;
    height: 70px;
    background: rgba(83, 152, 174);
    color: #fff;
    display: flex;
    align-items: center;
    padding: 20px;
    line-height: 0.9;
    letter-spacing: 0.08em;
    margin-right: 0;
}

.header_cv span {
    font-size: 1.2rem;
    padding-left: 13px;
}

.header_cv span:first-child {
    font-size: 2.4rem;
    display: inline-block;
    padding-top: 12px;
    font-weight: 600;
}
}

@media(max-width:959px){
  .header {
      padding: 0 24px;
  }

  .logo {
      height: 56px;
      display: inline-block;
      margin-top: 5px;
      margin-left: 0;
  }
 .header a{
    position: relative;
    z-index: 10000;
    display: inline-block;
  }
  .nav-navigation{
      display: none;
  }
  .open-button {
      display: block;
      position: fixed;
      right: 24px;
      top: 17px;
      width: 45px;
      height: 30px;
      cursor: pointer;
      z-index: 9999;
  }

  .open-button span,
  .open-button span::before,
  .open-button span::after {
      position: absolute;
      height: 3px;
      width: 45px;
      border-radius: 3px;
      background: #3D3D3D;
      display: block;
      content: "";
  }

  .open-button span:before {
      bottom: -12px;
  }

  .open-button span:after {
      bottom: -24px;
  }


  .open-button is-active.open-button opn{
      right:0%;
    }
    .open-button.opn span{
      background:transparent; 
    }
    .open-button.opn span::before{
      transform: rotate(45deg);
      bottom:-10px;
      transition:0.3s ease-in-out;
    }
    .open-button.opn span::after{
      transform: rotate(-45deg);
      bottom:-10px;
      transition:0.3s ease-in-out;
    }
    .nav-navigation {
      padding: 20px;
      background-color: #fff;
      z-index: 9998;
      width: 100%;
      height: 100vh;
      position: fixed;
      top: 0px;
      right: -100%;
      transition:0.3s ease-in-out; 
      display: block;
      padding-top:170px;
      text-align: left;
    }
    .nav-navigation.is_active{
      right:0%;
    }
    .nav-navigation li{
      margin-bottom:40px;
    }
    .nav-navigation .navigation_english{
      font-size: 2.4rem;
    }
    .header_cv{
      z-index: 9999;
    }
    .logo{
      position:relative;
      z-index: 9999;
      margin-top:10px;
    }
    .header ul li:nth-of-type(4){
      display: block;
      margin-top:160px;
  }

  .header_cv {
      margin-right: 70px;
      width: 110px;
      height: 60px;
      padding-left: 5px;
      letter-spacing: 0.06em;
  }

  .header_cv span {
      font-size: 1rem;
      padding-left: 8px;
  }

  .header_cv span:first-child {
      font-size: 1.6rem;
      padding-top: 13px;
  }

  .header_cv a {
      background: rgba(83, 152, 174);
      color: #fff;
      line-height: 0.7;
      height: 60px;
  }

  .header_cv img {
      width: 22px;
  }
}

@media(max-width:600px) {
  .header {
      padding: 0 24px;
  }

  .logo {
      height: 56px;
      display: inline-block;
      margin-top: 5px;
      margin-left: 0;
  }
  
  .open-button {
      display: block;
      position: fixed;
      right: 24px;
      top: 17px;
      width: 45px;
      height: 30px;
      cursor: pointer;
      z-index: 9999;
  }

  .open-button span,
  .open-button span::before,
  .open-button span::after {
      position: absolute;
      height: 3px;
      width: 45px;
      border-radius: 3px;
      background: #3D3D3D;
      display: block;
      content: "";
  }

  .open-button span:before {
      bottom: -12px;
  }

  .open-button span:after {
      bottom: -24px;
  }


  .open-button is-active.open-button opn{
      right:0%;
    }
    .open-button.opn span{
      background:transparent; 
    }
    .open-button.opn span::before{
      transform: rotate(45deg);
      bottom:-10px;
      transition:0.3s ease-in-out;
    }
    .open-button.opn span::after{
      transform: rotate(-45deg);
      bottom:-10px;
      transition:0.3s ease-in-out;
    }
    .nav-navigation {
      padding: 20px;
      background-color: #fff;
      z-index: 9998;
      width: 100%;
      height: 100vh;
      position: fixed;
      top: 0px;
      right: -100%;
      transition:0.3s ease-in-out; 
      display: block;
      padding-top:170px;
      text-align: left;
    }
    .nav-navigation.is_active{
      right:0%;
    }
    .nav-navigation li{
      margin-bottom:40px;
    }
    .nav-navigation .navigation_english{
      font-size: 2.4rem;
    }
    .header_cv{
      z-index: 9999;
    }
    .logo{
      position:relative;
      z-index: 9999;
      margin-top:10px;
    }
    .header ul li:nth-of-type(4){
      display: block;
      margin-top:160px;
  }

  .header_cv {
      margin-right: 70px;
      width: 110px;
      height: 60px;
      padding-left: 5px;
      letter-spacing: 0.06em;
  }

  .header_cv span {
      font-size: 1rem;
      padding-left: 8px;
  }

  .header_cv span:first-child {
      font-size: 1.6rem;
      padding-top: 13px;
  }

  .header_cv a {
      background: rgba(83, 152, 174);
      color: #fff;
      line-height: 0.7;
      height: 60px;
  }

  .header_cv img {
      width: 22px;
  }
}


/*フッター*/
.footer {
  padding-top: 100px;
  border-top: solid 1px #3D3D3D;
}

.footer-logo {
  max-width: 110px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer ul li a {
  color: #3D3D3D;
}

.footer-content .navigation-english {
  font-size: 2.4rem;
  font-family: 'Lora';
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: -14px;
}

.footer-content {
  display: flex;
}

.footer-content li span {
  font-size: 1.4rem;
  font-family: 'Lora';
  letter-spacing: 0.08em;
}

.footer-content ul {
  padding-left: 60px;
}

.footer-content li a {
  font-size: 1.2rem;
  font-family: 'Noto Serif JP';
  letter-spacing: 0.08em;
}

.footer-content li {
  margin-bottom: 30px;
}

/*フッター情報*/
.footer-info {
  display: inline-block;
}

.footer-box {
  display: flex;
  justify-content: space-between;
}

.footer_cv {
  font-size: 2.4rem;
  width: 310px;
  height: 70px;
  color: #fff;
  display: inline-block;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-align: center;
  position: relative;
  background: #5398AE;
  margin-right: 60px;
}

.footer_cv_line {
  font-size: 2.4rem;
  width: 310px;
  height: 70px;
  color: #fff;
  display: inline-block;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-align: center;
  position: relative;
  background: rgba(152, 205, 222, 0.8);
}

.footer_cv img {
  position: absolute;
  top: 14px;
  right: 8px
}

.footer_cv_line img {
  position: absolute;
  top: 14px;
  right: 8px
}

.footer_cv .reserve-text {
  color: #fff;
  vertical-align: middle;
}

.footer_cv_line .reserve-text {
  color: #3D3D3D;
  vertical-align: middle;
}

.footer_cv .cv-japanese {
  color: #fff;
  display: block;
  font-size: 1.2rem;
}

.footer_cv_line .cv-japanese {
  color: #3D3D3D;
  display: block;
  font-size: 1.2rem;
}

.time-info {
  display: flex;
  gap: 70px;
}

.time-info p span {
  font-weight: 600;
  display: inline-block;
  margin-right: 20px;
}

.btn-wrap {
  text-align: right;
  margin-bottom: 50px;
}

.final-time {
  font-size: 1.4rem;
}

.last-line {
  text-align: right;
  font-size: 1.4rem;
}

.footer_time-info {
  margin-top: 25px;
}

.regular-holiday {
  margin-top: 25px;
}

.small-box {
  text-align: center;
  height: 75px;
  margin-top: 80px;
  background-color: #CEC1B5;
  font-size: 1.2rem;
  line-height: 75px;
}


@media(max-width:1000px) {
  .footer_cv {
      margin-right: 20px;
  }
  .footer-logo{
      width: 95px;
  }
}

@media(max-width:960px) {
  .footer-inner {
      max-width: 512px;
      margin: 0 auto;
  }

  .btn-wrap {
      text-align: center;
  }

  .footer_cv {
      margin: 0 0 20px;
  }

  .footer-box {
      display: block;
  }

  .footer-content {
      justify-content: space-between;
  }

  .footer-content li:last-child {
      margin-bottom: 50px;
  }

  .footer-logo_box {
      display: inline-block;
  }

  .time-info {
      gap: 35px;
      flex-wrap: wrap;
  }

  .footer_time-info {
      margin: 0 0 10px;
  }

  .footer-close {
      margin-bottom: 30px;
  }

  .regular-holiday {
      margin-bottom: 30px;
  }
}

@media(max-width:600px) {
  .footer {
      padding-top: 75px;
  }

  .footer-inner {
      max-width: 327px;
      margin: 0 auto;
  }

  .footer-box {
      display: block;
  }

  .footer-logo {
      width: 91px;
      height: 85px;

  }

  .footer-content {
      justify-content: space-between;
  }

  .footer-content ul {
      padding-left: 0;
  }

  .footer-content li span {
      font-size: 1.2rem;
  }

  .footer-content li a {
      font-size: 1rem;
  }

  .footer-content li {
      margin-bottom: 25px;
      text-align: left;
  }

  .footer-content li:nth-child(3) {
      margin-bottom: 50px;
  }

  .footer_cv {
      margin-right: 0;
      margin-bottom: 20px;
      color: #fff;
  }

  .footer_cv,
  .footer_cv_line {
      font-size: 1.8rem;
      width: 270px;
      height: 50px;
      text-align: center;
      vertical-align: middle;
      color: #fff;
      line-height: 1.3;
      letter-spacing: 0.08em;
      position: relative;
  }

  .btn-wrap {
      text-align: center;
      margin-bottom: 50px;
  }

  .footer_cv .cv-japanese,
  .footer_cv_line .cv-japanese {
      font-size: 1rem;
  }

  .footer_cv a,
  .footer_cv_line a {
      vertical-align: middle;
  }

  .footer_cv img,
  .footer_cv_line img {
      width: 23px;
      height: 25px;
  }

  .footer_time-info {
      font-size: 1.4rem;
      margin: 0 0 10px;
  }

  .final-time {
      font-size: 1.2rem;
      margin-bottom: -7px;
  }
  .regular-holiday{
    font-size: 1.4rem;
  }
  .regular-holiday span{
    display: inline-block;
    margin-right:20px;
  }

  .last-line {
      display: inline-block;
      padding-right: 10px;
      font-size: 1.2rem;
      padding-left: 102px;
  }

  .footer_insta {
      width: 30px;
      height: 30px;
  }

  .small-box {
      text-align: center;
      height: 54px;
      margin-top: 70px;
      font-size: 1rem;
      line-height: 54px;
  }
}