@charset "UTF-8";

/* CSS Document */
html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  color: #262626;
  /* RGB */
  font-family: 'Noto Sans JP', YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 1.8em;
  line-height: 2.4rem;
  text-align: left;
}

main {
  background-color: #fff;
  overflow-x: hidden;
}

section h2 {
  font-size: 2.0rem;
  font-weight: 600;
  line-height: 3.6rem;
}

a {
  text-decoration: none;
  color: #262626;
}

a:hover {
  opacity: 1.2;
}

a:visited {
  color: none;
}

.none {
  display: none;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

img {
  width: 100%;
}

iframe {
  width: 100%;
}

p {
  line-height: 3.2rem;
  letter-spacing: 0.02em;
}

h1 {
  text-align: center;
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 3.0rem;
  line-height: 2.6rem;
  letter-spacing: 0.2em;
  padding-bottom: 1.5rem;
  position: relative;
}

h1::before {
  position: absolute;
  bottom: -10px;
  left: calc(50% - 50px);
  width: 90px;
  height: 3px;
  content: '';
  border-radius: 3px;
  background: #0bb9b7;
}


@media(min-width:768px) {
  h1 {
    font-size: 2.8rem;
    margin-bottom: 17px;
  }

  h1::before {
    width: 100px;
  }

  section h2 {
    font-size: 2.4rem;
    line-height: 4.0rem;
  }

}

@media(min-width:1140px) {
  p {
    line-height: 3.9rem;
    letter-spacing: 0.04em;
  }

  h1 {
    font-size: 4.0rem;
    margin-bottom: 24px;
  }
}

/* ヘッダー */

.header {
  background-color: #fff;
  width: 100%;
  height: 100px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.header__inner {
  padding: 0 20px;
  /*左右の余白確保*/
  display: flex;
  /*ロゴとハンバーガーメニューを横に並べる*/
  align-items: center;
  justify-content: flex-end;
  height: inherit;
  /*親要素の高さを継承*/
  position: relative;
}

/* ヘッダーのロゴ部分 */
.header__title {
  margin: 0;
}

.header__title img {
  display: block;
  width: 100%;
  height: 100%;
}

/* ヘッダーのナビ部分 */
.header__nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  background-image: url(../images/home/nav-bg.jpg);
  background-position: 30% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  transition: ease .4s;
  /*ハンバーガーメニュークリック時のナビゲーションメニュー出現を遅延*/
  z-index: 9000;
}

/* ハンバーガーメニュー */
.header__hamburger {
  width: 48px;
  height: 100%;
}

.hamburger {
  background-color: transparent;
  /*buttonタグデフォルトスタイルを打ち消し*/
  border-color: transparent;
  /*buttonタグデフォルトスタイルを打ち消し*/
  z-index: 9999;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background-color: #333333;
  position: relative;
  transition: ease .4s;
  /*ハンバーガーメニュークリック時の三本線の動きを遅延*/
  display: block;
}

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

.hamburger span:nth-child(2) {
  margin: 8px 0;
}

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

.header__nav.active {
  transform: translateX(0);
}

.hamburger.active span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
  top: -17px;
  transform: rotate(-45deg);
}

.nav-items {
  padding-top: 35vh;
  padding-bottom: 30vh;
  text-align: left;
  letter-spacing: 0.2rem;
  color: #fff;
  padding-left: 14vw;
}

.nav-items li {
  margin-bottom: 30px;
  font-size: 1.8rem;
  font-weight: 600;
  font-family: "hiragino-mincho-pron", sans-serif;
  font-style: normal;
}

/* ナビのリンク */
.nav-items__item a {
  color: black;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 20px;
  margin-bottom: 24px;

}

.nav-items a {
  color: #333;
}

.nav-items__item:last-child a {
  margin-bottom: 0;
}

.nav-items li span {
  display: block;
  font-family: "urw-din-condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 5.4rem;
  padding-bottom: 24px;
}

.header-button {
  margin-right: 10px;
}

.header-button a {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  padding: 0.8em 1.4em;
  max-width: 300px;
  color: #fff;
  background-color: #0bb9b7;
  text-decoration: none;
  transition: 0.3s;
  letter-spacing: 0.06rem;
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 1.8rem;
  border-radius: 33px;
}

.header-button__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.4rem;
  height: 4.4rem;
  background-color: #fff;
  border-radius: 50%;
}

.header-button__arrow-right {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  position: relative;
  width: 1em;
  height: 0.05em;
  background: currentColor;

}

.header-button__arrow-right::before {
  content: '';
  width: 0.55em;
  height: 0.55em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  position: absolute;
  top: 50%;
  right: -0.05em;
  box-sizing: border-box;
}

.header__button-hamburger {
  display: flex;
  align-items: center;
}

/* ホバーリンク */
.menu__link {
  display: block;
}



.drop-menu {
  transition: all .3s;
  margin-top: 1.2rem;
  padding-left: 2rem;
  border-left: 1px solid #0bb9b7;
}

.drop-menu__link {
  display: none;
  /* display: none; デフォルトの設定は消す */
  transition: all .3s;
}


.drop-menu__link.is-active {
  display: block;
}

.menu__item a.menu__link::after {
  position: absolute;
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 0.6rem;
  height: 0.6rem;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
  top: 38%;
  left: 190px;
}

a.menu__link {
  margin-bottom: 20px;
  display: block;
  position: relative;
}
.drop-menu li{
  margin-bottom: 20px;
}

@media(min-width:768px) {
  .header__title {
    width: 200px;
  }
  .nav-items li {
    margin-bottom: 40px;
    font-size: 2.4rem;
    font-weight: 600;
    font-family: "hiragino-mincho-pron", sans-serif;
    font-style: normal;
  }
  .menu__item a.menu__link::after{
    left: 235px;
  }
}

@media(min-width:1140px) {
  .header__nav {
    position: static;
    transform: initial;
    background-color: inherit;
    height: inherit;
    display: flex;
    justify-content: end;
    width: 50%;
    background-image: none;
  }

  .nav__items {
    width: 100%;
    display: flex;
    align-items: flex-start;
    height: initial;
    justify-content: space-evenly;
    padding-top: 35px;
    padding-bottom: inherit;
    padding-left: 0;
    text-align: center;
    
  }

  

  .nav-items__item a {
    margin-bottom: 0;
  }

  .hamburger {
    display: none;
  }

  .nav-items li {
    font-size: 1.8rem;
    font-weight: 600;
  }

  .nav-items li span {
    font-size: 2.4rem;
    font-family: "urw-din-condensed", sans-serif;
    font-weight: 600;
    font-style: normal;
    padding-bottom: 10px;
  }
  .drop-menu{
    text-align: left;

  }
  .drop-menu__link:hover {
    color: #0bb9b7;
  }
  .menu__item a.menu__link::after{
    left: 170px;
  }
 
  
}

.title-ja {
  text-align: left;
  margin-bottom: 50px;
  font-weight: 600;
}



@media(min-width:768px) {
  .title-ja {
    margin-bottom: 30px;

  }

  .title-ja p {
    font-size: 2.2rem;
  }


}

.header__title {
  font-size: 1.4rem;
  font-weight: 600;
}

.section-top {
  position: relative;
  padding-top: 100px;
}

.section-top__title {
  padding: 10px 30px 0;
  margin-bottom: 30px;
}

.section-top__title-icon {
  width: 30%;
  max-width: 130px;
}

.section-top__title-text {
  margin-top: 20px;
}

.section-top__title-text p {
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.section-top__title-text span {
  font-size: 2.4rem;
  margin-top: 10px;
  display: block;
}
@media(min-width:768px) {
  .section-top__title {
      padding: 10px 50px 0;
      margin-bottom: 50px;
      display: flex;
      justify-content: flex-start;
      gap: 30px;
      align-items: center;
  }

  .section-top__title-text {
      margin: 0;
  }

  
}

@media(min-width:1140px) {
  .section-top__title {
      gap: 120px;

  }
}
.section-shopinfo__bg {
    background: url(../images/home/shopinfo-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    margin: 100px 0 80px;
    border-radius: 50px;
}

.section-shopinfo__bg-shadow {
    position: relative;
    display: block;
    height: 100%;
    padding: 50px 30px;
}

.section-shopinfo__bg-shadow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
}

.section-shopinfo__contents-wrapper {
    position: relative;
    z-index: 100;
}

.section-shopinfo__title-sub {
    padding-bottom: 20px;
}

.section-shopinfo__title-sub p {
    font-family: "hiragino-mincho-pron", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 2.2rem;
}

.section-shopinfo__attention p {
    font-weight: 600;
}

.section-shopinfo__hot-button {
    margin-top: 50px;
}

.section-shopinfo__hot-button a {
    width: 100%;
    margin: 0 auto;
    padding: 1em;
    max-width: 276px;
    color: #fff;
    font-size: 1.8rem;
    background-color: #fe9199;
    text-decoration: none;
    transition: 0.3s;
    letter-spacing: 0.16rem;
    border-radius: 100vh;
    display: block;
    text-align: center;
    position: relative;
    font-weight: 600;
}

.cta_btn03-copy {
    font-size: 90%;
    font-weight: bold;
    color: initial;
    position: absolute;
    top: -2em;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 100%;
}

.cta_btn03-copy:before {
    margin-right: 1rem;
    content: '＼';
}

.cta_btn03-copy:after {
    margin-left: 1rem;
    content: '／';
}
.section-shopinfo {
  margin: 100px 0;
  padding: 0 30px;
}
.section-shopinfo__line-button {
    margin: 30px 0;
}

.section-shopinfo__line-button a {
    width: 100%;
    margin: 0 auto;
    padding: 1em;
    max-width: 276px;
    color: #fff;
    font-size: 1.8rem;
    background-color: #06c755;
    text-decoration: none;
    transition: 0.3s;
    letter-spacing: 0.16rem;
    border-radius: 100vh;
    display: block;
    text-align: center;
    position: relative;
    font-weight: 600;
}

.section-shopinfo__tel p {
    line-height: 3.5rem;
    font-weight: 600;
}

.section-shopinfo__tel span {
    font-size: 2.4rem;
}

.section-shopinfo__image-exterior {
    margin-bottom: 30px;
}

.section-shopinfo__image-parking {
    margin-bottom: 30px;
}

.section-shopinfo__list {
    margin-top: 50px;
}

.section-shopinfo__list span {
    font-weight: 600;
}

.section-shopinfo__list p {
    padding-bottom: 10px;
}

.section-shopinfo__list-ig img {
    width: 77px;
}

.section-shopinfo__list-ig {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.section-shopinfo__list-ig p {
    padding: 0 10px;
    font-family: "hiragino-mincho-pron", sans-serif;
    font-weight: 300;
    font-style: normal;
}
.iframe-wrapper iframe{
    height: 300px !important;
}
@media(min-width:768px) {
    .section-shopinfo {
        margin: 150px 0;
        padding: 0 50px;
    }

    .section-shopinfo__contents-wrapper {
        display: flex;
        justify-content: space-around;
        align-items: center;

    }

    .section-shopinfo__title-sub p {
        font-size: 2.4rem;
    }

    .section-shopinfo__attention p {
        font-size: 2.2rem;
    }

    .section-shopinfo__button {
        display: flex;
        gap: 10px;
    }

    .section-shopinfo__line-button {
        margin: 50px 0 0;
    }

    .section-shopinfo__tel {
        padding-top: 30px;
    }
    .section-shopinfo__image-wrapper{
        display: flex;
        gap: 50px;

    }
    .section-shopinfo__image-exterior{
        width: 50%;
        margin-bottom: 50px;
    }
    .section-shopinfo__image-parking{
        width: 50%;
        margin-bottom: 50px;
    }
    .section-shopinfo__list-wrapper{
        display: flex;
        gap: 50px;
        flex-direction: row-reverse;
    }
    .iframe-wrapper{
        width: 50%;
    }
    .section-shopinfo__list{
        width: 50%;
        margin-top: 0px;

    }
}

@media(min-width:1140px) {
    .section-shopinfo {
        margin-top: 200px;
        padding: 0;
    }

    .section-shopinfo__bg {
        max-width: 1140px;
        margin: 100px auto ;
    }

    .section-shopinfo__bg-shadow {
        padding: 100px 30px;
    }

    .section-shopinfo__title-sub p {
        font-size: 3.0rem;
    }

    .section-shopinfo__attention {
        padding-bottom: 30px;
    }

    .section-shopinfo__tel {
        padding-top: 50px;
    }
    .section-shopinfo__image-wrapper, .section-shopinfo__list-wrapper{
        max-width: 1140px;
        margin: 0 auto;
        gap: 100px;

    }
    .iframe-wrapper iframe{
        height: 430px !important;
    }
}

.footer {
  padding: 50px;
}

.footer__title {
  text-align: left;
  width: 100px;
  margin-bottom: 30px;
}

.footer-small {
  margin: 50px auto 0;
  text-align: center;
}

.footer__nav ul li {
  margin-bottom: 20px;
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.18rem;
  font-size: 1.8rem;
}

.footer-small small {
  font-size: 1.2rem;
}
.footer-drop-menu li{
  font-size: 1.4rem !important;
}
.footer-drop-menu{
  margin-top:20px;
}


@media(min-width:768px) {
  .footer__nav ul {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
  }

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

  .footer__nav .drop-menu {
    margin-left: 0px;
  }
  .footer-drop-menu{
    margin-left: 0 !important;
    display: block !important;
  }

}

@media(min-width:1140px) {
  .footer {
    padding: 50px 0;
  }

  .footer__nav ul {
    padding-top: 0;
    gap: 120px;
    text-align: left;
  }
  .footer__nav ul li{
    font-size: 2.0rem;
  }
  .footer__inner{
    max-width: 1140px;
    margin: 0 auto;
  }
}

.line-reservation{
  width: 80%;
  margin: 0 auto;
}