@charset "UTF-8";
/* <style>
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans&family=Noto+Sans+JP:wght@400;500;700;900&display=swap');
</style> */

* {
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

img {
  width: 100%;
}

body {
  font-size: 18px;
  font-family: 'Noto Serif JP', serif;
  color: #333;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  text-align: justify;
  /* これで文字の型付きを抑える */
}

.wrap {
  overflow: hidden;
}

/* pc版の時はクリックで電話がかからないように */
@media(min-width: 520px) {
  a[href^="tel:"] {
    pointer-events: none;
    color: #333;
  }
}

/*-- PC版表示CSS  --*/
.pc {
  display: block;
}

.sp {
  display: none;
}


/*-- スマホ版表示CSS  --*/
@media screen and (max-width: 1100px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}



/*-- 改行用PC版表示CSS  --*/
.pc-br {
  display: block;
}

.sp-br {
  display: none;
}

/*-- スマホ版表示CSS  --*/
@media screen and (max-width: 520px) {
  .pc-br {
    display: none;
  }

  .sp-br {
    display: block;
  }
}

/* マージン・パディング */

.mt-none {
  margin-top: 0 !important;
}

.mt-8 {
  margin-top: 8px !important;
}

.mt-16 {
  margin-top: 16px !important;
}

.mt-24 {
  margin-top: 24px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mt-80 {
  margin-top: 80px !important;
}




.text-right {
  text-align: right;
}


a .anchor{
  display: block;
  padding-top: 100px;
  margin-top: -100px;
}



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

.header-pc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  /* line-height: 90px; */
  background: #fff;
  vertical-align: middle;
  height: 70px;

}

.logo-pc {
  margin-left: 60px;
}

.logo-pc img {
  width: 165px;
  height: 50px;
}

.header-pc ul {
  margin-right: 60px;
  display: flex;
  justify-content: space-between;
  column-gap: 35px;
}

.header-pc li {
  /* display: inline-block; */

}

.header-pc li a {
  color: #333;
  letter-spacing: 0.1em;
}

.header-pc li a:hover {
  /* color: #F2EBCF; */
  opacity: 0.7;
}

/*----spヘッダー ハンバーガーボタン------------*/
.header-sp {
  display: flex;
  height: 70px;
  background-color: #fff;
  position: fixed;
  z-index: 10;
  width: 100%;
  /* max-width: 160px; */
}

.logo-sp {
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.logo-sp img {
  height: 40px;
  width: 130px;
}

@media (max-width: 959px) {

}



.hamburger {
  display: block;
  position: fixed;
  z-index: 3;
  right: 13px;
  top: 12px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 6px;
  background: #555;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 10px;
}

.hamburger span:nth-child(2) {
  top: 20px;
}

.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
  transition-delay: 0.6s;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  width: 0px;
}

.hamburger.active span:nth-child(1),
.hamburger.active span:nth-child(3) {
  background: #333;
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.hamburger.active span:nth-child(1) {
  -webkit-transform: translateY(4px);
  -ms-transform: translateY(4px);
  -o-transform: translateY(4px);
  transform: translateY(4px);
}

.hamburger.active span:nth-child(3) {
  -webkit-transform: translateY(-16px) rotate(90deg);
  -ms-transform: translateY(-16px) rotate(90deg);
  -o-transform: translateY(-16px) rotate(90deg);
  transform: translateY(-16px) rotate(90deg);
}


nav.global-menu-sp {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  color: #fff;
  /* background: #EDECFC; */
  background: #fff;
  text-align: center;
  width: 100%;
  opacity: 0;
  transition: opacity .6s ease, visibility .6s ease;
}

nav.global-menu-sp ul {
  margin: 0 auto;
  width: 100%;
}

nav.global-menu-sp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: .4s all;
}

nav.global-menu-sp ul li:last-child {
  padding-bottom: 0;
}

nav.global-menu-sp ul li:hover {
  /* background: #ddd; */
}

nav.global-menu-sp ul li a {
  display: block;
  color: #333;
  padding: 1.1em 0;
  text-decoration: none;
  text-align: left;
}

/* このクラスを、jQueryで付与・削除する */
nav.global-menu-sp.active {
  opacity: 100;

}

nav.global-menu-sp {
  visibility: hidden;
  /* max-width: 400px; */
  margin-left: auto;
  right: 0;
  /* padding: 0 40px; */
  /* margin-top: 70px; */
  background: #fff;
}

nav.global-menu-sp ul li a {
  padding: 20px 40px;
}

nav.global-menu-sp.active {
  opacity: 100;
  visibility: visible;
  /* max-width: 400px; */
  margin-left: auto;
  right: 0;
  /* padding: 0 40px; */
  /* margin-top: 70px; */
}

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





/* ================================slider */
.swiper-container {
  width: 100%;
  /* height: 80vh; */
  /* height: 100vh; */
  margin-top: 70px;
}

.swiper-slide {
  background-repeat: no-repeat;
  background-size: cover;
  /* background-size: contain; */
  background-position: center;
  overflow: hidden;
}

.swiper-slide img {
  /* height: 100%; */
  width: 100%;
  object-fit: cover;
  /* object-fit: contain; */
  object-position: center bottom;
}

.o-p-b {
  object-position: center bottom;
}

.o-p-t {
  object-position: center top;
}

@media (max-width: 959px) {
  .swiper-container {
    width: 100%;
    height: 80%;
    margin-top: 70px;
  }

  .toplogo img {
    width: 40vw;
  }
}

@media (max-width:519px) {
  .swiper-slide {
    width: 100% !important;
  }

  .toplogo img {
    width: 65vw;
  }
}



/* スライダーここまで */

/* 共通--------------------------------------- */
section {
  margin: 80px auto;
}

.flex-50 {
  display: flex;
}

.flex-50-item {
  width: 50%;
}

.vertical {
  writing-mode: vertical-rl;
}

.vertical-area {
  margin: 24px auto 0;
}

.vertical-title {
  font-size: 28px;
  letter-spacing: 0.4em;
  line-height: 2;
}

.vertical-text {
  font-size: 20px;
  letter-spacing: 0.24em;
  margin-right: 40px;
  line-height: 2;
}





.container {
  margin: 0 auto;
  max-width: 946px;
  width: 100%;
  position: relative;
}



.section-title {
  font-size: 24px;
  text-align: center;
  letter-spacing: 0.3em;
  margin: 0 auto 80px;
}

@media screen and (max-width: 1100px)  {
  .container {
    max-width: 700px;
  }
}

@media screen and (max-width: 789px) {
  .container {
    max-width: 450px;
  }
}

@media screen and (max-width: 520px) {
  .container {
    max-width: 355px;
  }
}

/* ボタン----------------------- */
.btn-center {
  text-align: center;
}

.btn {
  display: inline-block;
  line-height: 60px;
  border: #333 1px solid;
  width: 300px;
  height: 60px;
  /* padding-right: 24px; */
  margin: 0 auto;
  text-align: center;
  position: relative;
  /* ボタンアニメーション */
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.btn::before {
  content: "";
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background-color: #F2EBCF;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.btn:hover {
  /* color: #fff; */
}

.btn:hover:before {
  left: 0;
}

.btn span::before {
  content: "";
  /* display: inline-block; */
  width: 40px;
  height: 8px;
  margin: 0 0.5em 0 0;
  border-bottom: 1px solid #333;
  border-right: 2px solid #333;
  transform: skew(45deg);
  position: absolute;
  top: 24px;
  right: 50px;
  /* z-index: -2; */
}

.btn span:hover:before {
  content: "";
  /* display: inline-block; */
  width: 40px;
  height: 8px;
  margin: 0 0.5em 0 0;
  border-bottom: 1px solid #fff;
  border-right: 2px solid #fff;
  transform: skew(45deg);
  position: absolute;
  top: 24px;
  right: 50px;
  z-index: -2;
}



/* menu ------------------------------------- */
.menu {
  background-color: #F2EBCF;
  padding: 80px 0;
}

.menu-item-section {}

.menu-title {
  font-size: 22px;
  letter-spacing: 0.1em;
}

.menu-sub-title {
  font-size: 18px;
  margin-top: 24px;
  width: 100%;
  border-bottom: solid 1px #333;
  padding-bottom: 2px;
}

.menu-list {
  margin: 40px 0 80px;
  justify-content: space-between;
}

.menu-list-item {
  max-width: 450px;
  width: 100%;
}

/* 各メニューと料金 */
.menu-item-title-cost {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
}

.menu-item-title {}

.menu-item-title span {
  font-size: 14px;
}

.menu-item-cost {}

.menu-item-text {
  font-size: 14px;
  margin-top: 8px;
  margin-bottom: 40px;
}

.map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 110%;
}

.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

}

.tel {
  color: #333;
}

.copyright {
  font-size: 10px;
  color: #bababa;
  text-align: center;
  margin: 80px auto 40px;
}



/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop {
  position: fixed;
  bottom: 75px;
  right: 15px;
}
#pagetop a {
  display: block;
  background: #333;
  color: #fff;
  width: 50px;
  padding: 10px 5px;
  text-align: center;
  border-radius: 50%;
}
#pagetop a:hover {
  /* background: #666; */
  opacity: 0.7;
}

.instagram {
  position: fixed;
  z-index: 10;
  bottom: 15px;
  right: 15px;
  width: 50px;
}

.instagram a:hover {
  /* background: #666; */
  opacity: 0.7;
}

@media screen and (max-width: 1100px) {
  .flex-50 {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .flex-50-item {
    width: 90%;
    margin: 0 auto;
  }

  .vertical-area {
    margin: 40px auto 0;
  }

  .menu-list-item {
    max-width: 700px;
    width: 100%;
  }

  .map {
    margin-bottom: 40px;
    padding-top: 75%;
  }
}

@media screen and (max-width: 789px) {

}

@media screen and (max-width: 520px) {
  .flex-50-item {
    width: 100%;
    margin: 0 auto;
  }

  .vertical-title {
    font-size: 20px;
    letter-spacing: 0.3em;
    line-height: 1.6;
  }

  .vertical-text {
    font-size: 15px;
    letter-spacing: 0.2em;
    margin-right: 15px;
    line-height: 1.5;
  }

  .menu-list {
    margin: 40px 0 40px;
    justify-content: space-between;
  }

  .menu-item-title-cost {
    display: flex;
    /* flex-direction: column; */
    margin-top: 16px;
  }
  

}