@charset "UTF-8";
/* 変数定義
----------------------------------------- */
/* 共通部分
----------------------------------------- */
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-weight: 400;
  font-family: "Montserrat", "Helvetica", "Arial", "Zen Kaku Gothic New", "ヒラギノ角ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", YuGothic, "Yu Gothic", "ＭＳ ゴシック", sans-serif;
  color: #452C17;
  line-height: 1.5;
  letter-spacing: -0.02em;
  background: #F4EAD7;
}
body.open {
  height: 100%;
  overflow: hidden;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  background: none;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* 画面下部固定リンク
----------------------------------------- */
.fixed_link_wrapper {
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  bottom: 0;
  padding: 0 16px;
  transform: translateY(100%);
  transition: all 0.4s;
  z-index: 3;
}

.fixed_link_wrapper.fixed {
  bottom: 79px;
  transition: all 0.4s;
}

.fixed_link_price,
.fixed_link_access {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 48%;
  padding: 13px;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  background-color: #FFE350;
  border-radius: 50px;
  box-shadow: 0 0 5px rgba(74, 74, 74, 0.1);
}
.fixed_link_price img,
.fixed_link_access img {
  width: 25px;
  vertical-align: middle;
}

.fixed_link_price img {
  margin-right: 8px;
}

.fixed_link_access {
  font-size: 1.2rem;
}
.fixed_link_access img {
  margin-right: 4px;
}

/* ヘッダー
----------------------------------------- */
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 3;
}

.header_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 12px 30px 18px;
}

.header_logo {
  width: 35px;
  z-index: 10;
}

.header_nav_container {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  right: -100%;
  padding: 90px 0 100px;
  background: #F4EAD7;
  transition: all 0.5s cubic-bezier(0, 1, 0.8, 1);
  overflow: scroll;
  z-index: 7;
}

.header_nav_container.open {
  right: 0;
  transition: all 0.5s cubic-bezier(0, 1, 0.8, 1);
}

.header_upper_illust {
  width: 176px;
  margin: 0 auto 28px;
}

.header_nav_menu {
  width: 100%;
  height: 100%;
  margin-bottom: 30px;
  padding: 0 30px;
}
.header_nav_menu li {
  width: 100%;
  height: auto;
  padding: 14px 0;
  border-bottom: 1px solid #452C17;
}
.header_nav_menu li:first-child {
  border-top: 1px solid #452C17;
}

.header_nav_menu li a {
  position: relative;
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: 0.3s;
}
.header_nav_menu li a span {
  position: absolute;
  display: inline-block;
  width: 10px;
  height: 10px;
  right: 14px;
  top: 46%;
  margin-left: 5px;
  font-weight: 500;
  line-height: 1;
  color: #452C17;
  border: 1px solid #452C17;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: rotate(45deg) translateY(-46%);
}

.header_nav_menu li a:hover,
.header_nav_menu li a:focus {
  opacity: 0.5;
  transition: 0.3s;
}

.header_nav_title {
  margin-bottom: 16px;
  padding: 0 30px;
}

.header_nav_logo {
  display: block;
}
.header_nav_logo img {
  display: inline-block;
  width: 32px;
  margin-right: 10px;
  vertical-align: middle;
}

.header_nav_name {
  display: inline-block;
  font-weight: 700;
  vertical-align: middle;
}

.header_nav_address {
  padding: 0 30px;
  font-size: 1.4rem;
  font-weight: 500;
}

.header_lower_illust {
  position: relative;
  width: 100%;
}
.header_lower_illust img {
  position: absolute;
  width: 110px;
  top: -20px;
  right: 22px;
}

/* ハンバーガーメニュー */
.hamburger_btn {
  display: block;
  width: 52px;
  height: 52px;
  text-align: center;
  cursor: pointer;
  background: #B2D3C7;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(74, 74, 74, 0.1);
  z-index: 10;
}

.hamburger_line {
  position: relative;
  width: 20px;
  height: 1px;
  top: 1px;
  left: 50%;
  background: #452C17;
  border-radius: 10px;
  transform: translateX(-50%);
  transition: all 0.3s;
}
.hamburger_line::before, .hamburger_line::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  left: 0;
  background: #452C17;
  border-radius: 10px;
  transition: transform 0.3s;
}
.hamburger_line::before {
  bottom: 8px;
}
.hamburger_line::after {
  top: 8px;
}

.hamburger_line.open {
  background: transparent;
  transition: all 0.3s;
}

.hamburger_line.open:before {
  bottom: -1px;
  transform: rotate(45deg);
  transition: transform 0.3s;
}

.hamburger_line.open:after {
  top: 1px;
  transform: rotate(-45deg);
  transition: transform 0.3s;
}

.hamburger_cap {
  display: inline-block;
  margin-top: 26px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}

/* ボタン
----------------------------------------- */
.button_yellow {
  display: block;
  width: 90%;
  max-width: 312px;
  margin: 0 auto 10px;
  padding: 14px 20px;
  font-weight: 500;
  background-color: #FFE350;
  border-radius: 30px;
  box-shadow: 0 0 4px rgba(128, 128, 128, 0.1);
}
.button_yellow img {
  display: inline-block;
  width: 25px;
  margin-right: 5px;
  text-align: center;
}

.button_more {
  position: relative;
  display: block;
  width: 90%;
  max-width: 312px;
  margin: 0 auto 10px;
  padding: 14px 20px;
  font-weight: 500;
  text-align: center;
  color: #F4EAD7;
  background-color: #452C17;
  border-radius: 30px;
  box-shadow: 0 0 4px rgba(128, 128, 128, 0.1);
}
.button_more span {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 5px;
  line-height: 1;
  color: #F4EAD7;
  border: 1.5px solid #F4EAD7;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: rotate(45deg);
}

.button_sennennoki {
  position: relative;
  display: block;
  width: 90%;
  max-width: 312px;
  margin: 0 auto 10px;
  padding: 14px 20px;
  font-weight: 500;
  text-align: center;
  color: #452C17;
  background-color: transparent;
  border-radius: 30px;
  border: 2px solid #452C17;
  box-shadow: 0 0 4px rgba(128, 128, 128, 0.1);
}
.button_sennennoki span {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 5px;
  line-height: 1;
  color: #452C17;
  border: 1.5px solid #452C17;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: rotate(45deg);
}

.button_line {
  display: block;
  width: 90%;
  max-width: 312px;
  margin: 0 auto 10px;
  padding: 10px 20px;
  line-height: 2;
  font-weight: 500;
  color: #FEFDFD;
  background-color: #06c755;
  border-radius: 30px;
  box-shadow: 0 0 4px rgba(128, 128, 128, 0.1);
}
.button_line img {
  display: inline-block;
  width: 32px;
  margin-right: 5px;
  text-align: center;
}

/* 下部SNSエリア
----------------------------------------- */
.sns_bg {
  width: 100%;
  background-image: url(../images/bg_sns.jpg);
  background-repeat: repeat;
}

.sns_upper {
  position: relative;
}
.sns_upper .wave_white {
  width: 100%;
  vertical-align: top;
}

.sns_upper_illust {
  position: absolute;
  width: 87px;
  top: -26px;
  left: 20px;
  transform: rotate(-3deg);
}

.sns_wrapper {
  padding: 60px 20px 54px;
  text-align: center;
}

.sns_text {
  margin-bottom: 30px;
  font-weight: 500;
  text-align: center;
}

.sns_container {
  display: flex;
  justify-content: center;
}

.sns_item {
  width: 84px;
  height: 84px;
  margin: 0 15px;
  background-color: #FEFDFD;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(74, 74, 74, 0.1);
}
.sns_item a {
  display: block;
  width: 100%;
  padding: 20px 0;
  text-align: center;
}
.sns_item img {
  display: inline-block;
  width: 44px;
}

.sns_lower {
  position: relative;
}
.sns_lower .wave_green {
  width: 100%;
}

.sns_lower_illust {
  position: absolute;
  width: 70px;
  top: -34px;
  right: 22px;
  transform: rotate(5deg);
}

/* フッター
----------------------------------------- */
footer {
  width: 100%;
  padding: 20px 20px 100px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #252525;
  background-color: #B2D3C7;
}

.footer_title {
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: 700;
}

.footer_logo {
  width: 38px;
  margin-right: 11px;
  vertical-align: middle;
}

.footer_address {
  margin-bottom: 14px;
}

.footer_openhour {
  margin-bottom: 14px;
}

.footer_dayoff {
  margin-bottom: 30px;
}

.footer_openhour dt,
.footer_dayoff dt {
  position: relative;
  padding-left: 15px;
  font-weight: 500;
}
.footer_openhour dt::before,
.footer_dayoff dt::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  top: 50%;
  left: 0;
  border-radius: 50%;
  background-color: #FFE350;
  transform: translateY(-50%);
}

small {
  display: block;
  font-size: 1rem;
  text-align: center;
}

/* PC版3分割レイアウト
----------------------------------------- */
.left_column {
  display: none;
}

@media screen and (min-width: 1025px) {
  .fixed_link_wrapper {
    display: none;
  }
  .column_wrapper {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
  }
  /* 右 メニューエリア
  ---------------------------------- */
  .right_column {
    position: sticky;
    width: calc((100% - 425px) * 0.3);
    min-width: 300px;
    height: 100vh;
    top: 0;
  }
  header {
    position: relative;
    z-index: 1;
  }
  .header_container {
    display: none;
  }
  .header_nav_container {
    position: relative;
    max-width: 450px;
    margin: 0 auto;
    right: 0;
    transition: none;
    overflow: auto;
    z-index: 1;
  }
  /* 中央 メインコンテンツエリア
  ---------------------------------- */
  .center_column {
    width: 425px;
    min-width: 425px;
    box-shadow: 0 0 25px rgba(128, 128, 128, 0.2);
    z-index: 3;
  }
  /* 左 ビジュアルエリア
  ---------------------------------- */
  .left_column {
    position: sticky;
    display: block;
    width: calc((100% - 425px) * 0.7);
    height: 100vh;
    top: 0;
  }
  .left_column_logo {
    position: fixed;
    display: block;
    width: 60px;
    top: 35px;
    left: 35px;
    z-index: 1;
  }
  .slider_left {
    position: relative;
    width: 100%;
  }
  .slider_left .slider-item {
    width: 100%;
  }
  .slider_left .slider-item img {
    width: 100%;
    height: 100vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
/* 下層ページメインビジュアル
----------------------------------------- */
.page_main_visual {
  position: relative;
  width: 100%;
  height: 40vh;
  max-height: 330px;
}

.page_main_visual_image {
  width: 100%;
}
.page_main_visual_image img {
  width: 100%;
  height: 40vh;
  max-height: 330px;
  -o-object-fit: cover;
     object-fit: cover;
}

.page_curve {
  position: absolute;
  width: 100%;
  bottom: -2px;
  left: 0;
}

/* 下層ページタイトル
----------------------------------------- */
.page_title {
  margin: 40px auto;
  padding: 0 20px;
  font-size: 2.8rem;
  font-weight: 500;
  text-align: center;
}

.page_title_jp {
  margin-bottom: 34px;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0em;
}/*# sourceMappingURL=common.css.map */