@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@100;300;400;500;700;800;900&display=swap");

/*======================================
セッティング
======================================*/
.sp {
  display: none;
}

.tabOnly {
  display: none !important;
}

.pcNone {
  display: block !important;
}

@-webkit-keyframes zoom-fade {
  0% {
    /*transform: scale(1.05);*/
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    /*transform: scale(1);*/
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
}

@keyframes zoom-fade {
  0% {
    /*transform: scale(1.05);*/
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    /*transform: scale(1);*/
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
}

html {
  scroll-behavior: smooth;
  height: -webkit-fill-available;
  font-size: 62.5%;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

body {
  width: 100%;
  font-size: clamp(1.4rem, 1.1111111111vw, 1.6rem);
  font-weight: 400;
  font-family: 'M PLUS 1p"', YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  color: #000;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  background-image: url(../img/main_bg@2x.jpg);
  background-repeat: repeat;
  background-size: 100%;
}

body.fixed {
  position: fixed;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

a:hover {
  opacity: 0.5;
}

p {
  line-height: 1.875;
  letter-spacing: 0.1em;
}

.preparation {
  text-align: center;
  font-size: clamp(2.5rem, 5.2631578947vw, 6rem);
  font-weight: 900;
}

.l-inner {
  max-width: 114rem;
  width: 100%;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.l-wrapper {
  overflow: hidden;
}

/*======================================
　共通ボタン
======================================*/
.c-btn {
  width: 24rem;
}

.c-btn a {
  display: block;
}

/*======================================
　アニメーション : fade
======================================*/
@-webkit-keyframes fadeUp {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeUp {
  -webkit-animation: fadeUp 0.5s ease;
  animation: fadeUp 0.5s ease;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.fade {
  opacity: 0;
  -webkit-transform: translateY(2rem);
  transform: translateY(2rem);
}

.delay-1 {
  animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  -webkit-animation-delay: 0.2s;
  -o-animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.35s;
  -moz-animation-delay: 0.35s;
  -webkit-animation-delay: 0.35s;
  -o-animation-delay: 0.35s;
}

.delay-3 {
  animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
}

.delay-4 {
  animation-delay: 0.65s;
  -moz-animation-delay: 0.65s;
  -webkit-animation-delay: 0.65s;
  -o-animation-delay: 0.65s;
}

.delay-5 {
  animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  -webkit-animation-delay: 0.8s;
  -o-animation-delay: 0.8s;
}

/*======================================
　追従ボタン
======================================*/
.floatingBtn_pc {
  position: fixed;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8.5rem;
  z-index: 10;
}

.floatingBtn_pc a {
  display: block;
}

.floatingBtn_pc a:not(:last-child) {
  margin-bottom: 3rem;
}

.floatingBtn_sp {
  display: none;
}

/*======================================
フッター
======================================*/
footer {
  position: relative;
  z-index: 1;
}

footer .l-inner {
  padding-top: 5rem;
  padding-bottom: 2rem;
}

footer .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 8rem;
}

/* logo */
footer .logo {
  width: 11rem;
  margin: 0 auto;
}

/* nav */
footer nav {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: clamp(2rem, 2.6315789474vw, 3rem);
  margin-bottom: 8rem;
}

footer nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: clamp(2rem, 2.0833333333vw, 3rem);
}

footer nav ul a {
  font-size: clamp(1rem, 0.9722222222vw, 1.4rem);
  font-weight: bold;
  font-family: 'M PLUS 1p"', YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #000;
  white-space: nowrap;
  text-align: center;
}

footer nav ul li.current a {
  color: #f39800;
}

footer nav ul a span {
  display: block;
}

footer nav ul i {
  font-size: 1.8rem;
}

footer nav .contact {
  width: clamp(10rem, 10.4166666667vw, 15rem);
}

footer small {
  display: block;
  text-align: center;
  font-size: 1.3rem;
  font-family: 'M PLUS 1p"', YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-weight: bold;
  color: #000;
  line-height: 1;
  letter-spacing: 0.1em;
}

/*======================================
　ヘッダー
======================================*/
header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: clamp(1rem, 2.0833333333vw, 3rem);
  padding: 0 clamp(1rem, 1.3888888889vw, 2rem);
  width: 100%;
  height: 8rem;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

header h1 {
  width: 8.6rem;
  line-height: 1;
}

header .gnav {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: clamp(2rem, 2.0833333333vw, 3rem);
}

.pageSub header {
  position: inherit;
}

/*======================================
　nav
======================================*/
ul.gnav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: clamp(1rem, 2.0833333333vw, 3rem);
}

ul.gnav-menu>li {
  font-weight: bold;
  white-space: nowrap;
  text-align: center;
  line-height: 1;
  position: relative;
}

.pageHeader ul.gnav-menu>li {
  -webkit-writing-mode: initial;
  -ms-writing-mode: initial;
  writing-mode: initial;
}

ul.gnav-menu>li>a {
  display: block;
  position: relative;
  color: #f39800;
  font-size: clamp(1.2rem, 1.1111111111vw, 1.6rem);
  font-family: 'M PLUS 1p"', YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.08em;
}

header .gnav .contact {
  width: clamp(10rem, 10.4166666667vw, 15rem);
}

ul.gnav-menu li i {
  font-size: 2rem;
}

/*======================================
　hamburger
======================================*/
.gnav-sp {
  display: block;
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: -1;
  opacity: 0;
  background-color: #fff;
}

.gnav-sp .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.gnav-sp .wrap .icon {
  display: block;
  width: 3rem;
  margin: 0 auto;
}

.gnav-sp-menu {
  margin-bottom: 5rem;
}

.gnav-sp-menu li {
  font-size: 1.8rem;
  text-align: center;
  font-weight: bold;
  font-family: 'M PLUS 1p"', YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  line-height: 1.4;
}

.gnav-sp-menu li span {
  display: block;
  font-weight: normal;
  font-family: 'M PLUS 1p"', YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.2rem;
}

.gnav-sp-menu li a {
  display: block;
  padding: 1.2rem 0;
  white-space: nowrap;
  color: #f39800;
}

.gnav-sp-menu li .fa-brands {
  font-size: 3.5rem;
}

.gnav-sp .contact {
  width: 20rem;
}

/* toggle */
.toggle-btn {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 6rem;
  height: 6rem;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 100000;
  background-color: #f39800;
}

.toggle-btn span {
  display: block;
  position: absolute;
  left: 2rem;
  width: 2rem;
  height: 0.2rem;
  background-color: #fff;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.toggle-btn span:nth-child(1) {
  top: 1.9rem;
}

.toggle-btn span:nth-child(2) {
  top: 2.7rem;
}

.toggle-btn span:nth-child(3) {
  top: 3.5rem;
}

/* open */
.open .gnav-sp {
  top: 0;
  opacity: 1;
  z-index: 99999;
}

.open .toggle-btn span {
  background-color: #fff;
}

.open .toggle-btn span:nth-child(1) {
  -webkit-transform: translateY(0.8rem) rotate(-45deg);
  transform: translateY(0.8rem) rotate(-45deg);
}

.open .toggle-btn span:nth-child(2) {
  opacity: 0;
}

.open .toggle-btn span:nth-child(3) {
  -webkit-transform: translateY(-0.8rem) rotate(45deg);
  transform: translateY(-0.8rem) rotate(45deg);
}

/*======================================
　KV : 下層ページタイトル
======================================*/
.pageMv_inner {
  width: 100%;
  height: clamp(25rem, 34.7222222222vw, 50rem);
  background-image: url(../img/page_mv@2x.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.pageMv_inner::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.pageMv h1 {
  font-size: clamp(3rem, 3.6603221083vw, 5rem);
  font-family: 'M PLUS 1p"', YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  z-index: 3;
}

.parallax {
  height: clamp(20rem, 27.7777777778vw, 40rem);
  padding-bottom: 1.5rem;
  overflow: hidden;
}

.parallax::before {
  content: "";
  background-image: url(../img/parallax_photo@2x.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -10;
}

/*============================
	hero
============================*/
.top-kv {
  position: relative;
  height: 100vh;
}

.top-kv::before {
  content: "";
  width: 100%;
  height: 21rem;
  background: -webkit-gradient(linear, left top, left bottom, from(black), to(transparent));
  background: -webkit-linear-gradient(top, black, transparent);
  background: linear-gradient(to bottom, black, transparent);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.top-kv-slider>* {
  height: 100vh;
}

.top-kv-slider>*:nth-of-type(1) {
  background: url(../img/mv_photo01@2x.jpg) no-repeat center/cover;
}

.top-kv-slider>*:nth-of-type(2) {
  background: url(../img/mv_photo02@2x.jpg) no-repeat center/cover;
}

.top-kv-slider>*:nth-of-type(3) {
  background: url(../img/mv_photo03@2x.jpg) no-repeat center/cover;
}

.scroll {
  font-size: 1.2rem;
  font-family: 'M PLUS 1p"', YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-weight: bold;
  position: absolute;
  left: clamp(2rem, 4.5138888889vw, 6.5rem);
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  letter-spacing: 0;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
}

.scroll span {
  width: 0.1rem;
  height: 7.5rem;
  background: #fff;
  margin-top: 1rem;
  -webkit-animation: scroll infinite 1s;
  animation: scroll infinite 1s;
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }

  100% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }

  100% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
}

/*======================================
　こだわりページ
======================================*/
.pageSub .about_inner {
  padding-top: clamp(8rem, 10.5263157895vw, 12rem);
  padding-bottom: clamp(8rem, 10.5263157895vw, 12rem);
}

.pageSub .about_item:not(:last-child) {
  margin-bottom: 10rem;
}

.pageSub .about h2 {
  font-size: clamp(2rem, 2.6315789474vw, 3rem);
  font-weight: 900;
  color: #f39800;
  padding-bottom: 2rem;
  margin-bottom: clamp(3rem, 4.3859649123vw, 5rem);
  position: relative;
  line-height: 1.3;
}

.pageSub .about h2::before {
  content: "";
  width: clamp(10rem, 26.3157894737vw, 30rem);
  height: 0.3rem;
  background-color: #f39800;
  position: absolute;
  bottom: -0.15rem;
  left: 0;
  z-index: 2;
}

.pageSub .about h2::after {
  content: "";
  width: 100%;
  height: 0.1rem;
  background-color: #ccc;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.pageSub .about_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(2rem, 4.3859649123vw, 5rem);
}

.pageSub .about_content .photo {
  width: clamp(30rem, 35.0877192982vw, 40rem);
}

.pageSub .about_content .detail {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.pageSub .about_content .read {
  color: #000;
  line-height: 2;
}

/*======================================
店舗情報
======================================*/
.pageSub .information_inner {
  padding-top: clamp(8rem, 10.5263157895vw, 12rem);
  padding-bottom: clamp(8rem, 10.5263157895vw, 12rem);
}

.pageSub .information_table {
  margin-bottom: 5rem;
}

.pageSub .information_table dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 1.5rem;
}

.pageSub .information_table dl:not(:last-child) {
  border-bottom: solid 1px rgba(0, 0, 0, 0.2);
}

.pageSub .information_table dt,
.pageSub .information_table dd,
.pageSub .information_table a {
  line-height: 1.5;
  color: #000;
}

.pageSub .information_table dt {
  width: 30%;
  font-weight: bold;
}

.pageSub .information_table dd {
  width: 70%;
  font-weight: 400;
}

.pageSub .information_table a {
  text-decoration: underline;
}

.pageSub .information_table a[href^="tel:"] {
  text-decoration: none;
}

.pageSub .information_map {
  height: 50rem;
}

.pageSub .information_map iframe {
  width: 100%;
  height: 100%;
}

/*======================================
店舗情報
======================================*/
.pageSub .contact_inner {
  padding-top: clamp(8rem, 10.5263157895vw, 12rem);
  padding-bottom: clamp(8rem, 10.5263157895vw, 12rem);
}

.pageSub .contact .heading2 {
  text-align: center;
  font-size: clamp(2rem, 2.6315789474vw, 3rem);
  line-height: 1.5;
  margin-bottom: clamp(5rem, 7.0175438596vw, 8rem);
}

.pageSub .contact_form {
  margin-bottom: clamp(5rem, 6.9444444444vw, 10rem);
}

.pageSub .contact_form .CMS-FORM-GROUP>input,
.pageSub .contact_form .CMS-FORM-GROUP>textarea {
  width: 100%;
  border: solid 0.1rem #bbb;
  border-radius: 0.4rem;
}

.pageSub .contact_form .CMS-FORM-GROUP>input {
  height: 4rem;
}

.pageSub .contact_form .CMS-FORM-GROUP>input[type=submit] {
  width: 30rem;
  text-align: center;
  background-color: #f39800;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  height: 6rem;
}

.pageSub .contact_form .CMS-FORM-GROUP>textarea {
  height: 10rem;
}

.pageSub .contact_form .CMS-FORM-GROUP>label {
  display: block;
  font-weight: bold;
  margin-bottom: 1rem;
}

.pageSub .contact_form .CMS-FORM-GROUP:not(:last-child) {
  margin-bottom: 3rem;
}

.pageSub .contact_form .CMS-FORM-RADIO input {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 0.5rem 0.3rem 0;
}

.pageSub .contact_form .CMS-FORM-RADIO label {
  margin-right: 3rem;
}

.pageSub .contact_form .CMS-FORM-GROUP:has(input[type=submit]) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 6rem;
}

.pageSub .contact_form .CMS-FORM-GROUP:has(input[type=submit]) input {
  background-color: #2e5578;
}

.pageSub .contact_privacy .read {
  line-height: 1.7;
  margin-bottom: 3rem;
}

.pageSub .contact_privacy .privacyBox {
  height: clamp(30rem, 34.7222222222vw, 50rem);
  overflow: scroll;
  border: 0.2rem solid #000000;
  padding: 2rem;
}

.pageSub .contact_privacy .privacyBox p {
  line-height: 1.7;
}

/*======================================
ギャラリー
======================================*/
.pageSub .galleryBox_inner {
  padding-top: clamp(8rem, 10.5263157895vw, 12rem);
  padding-bottom: clamp(8rem, 10.5263157895vw, 12rem);
}

.pageSub .galleryBox_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: clamp(1rem, 1.3888888889vw, 2rem);
}

.pageSub .galleryBox_item {
  list-style-type: none;
}

.pageSub .galleryBox_item img {
  width: clamp(8rem, 12.1527777778vw, 17.5rem);
  height: clamp(8rem, 12.1527777778vw, 17.5rem);
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}

/*======================================
商品一覧
======================================*/
.pageSub .menu_inner {
  padding-top: clamp(8rem, 10.5263157895vw, 12rem);
  padding-bottom: clamp(8rem, 10.5263157895vw, 12rem);
}

.pageSub .menu_category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: clamp(1rem, 1.7543859649vw, 2rem);
  margin-bottom: clamp(5rem, 8.7719298246vw, 10rem);
}

.pageSub .menu_category li {
  width: calc((100% - clamp(1rem, 1.7543859649vw, 2rem)) / 2);
  list-style-type: none;
}

.pageSub .menu_category a {
  display: block;
  width: 100%;
  padding: clamp(2rem, 2.6315789474vw, 3rem);
  font-size: clamp(1.6rem, 1.7543859649vw, 2rem);
  font-family: 'M PLUS 1p"', YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-weight: bold;
  color: #000;
  text-align: center;
  background-color: #f0f0f0;
}

.pageSub .menu_category a.active {
  background-color: #f39800;
  color: #fff;
}

.pageSub .menu_list {
  max-width: 80rem;
  margin: 0 auto;
}

/*======================================
お知らせ
======================================*/
.pageSub .articleBox_inner {
  padding-top: clamp(8rem, 10.5263157895vw, 12rem);
  padding-bottom: clamp(15rem, 17.5438596491vw, 20rem);
}

.pageSub .articleBox_category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: clamp(1rem, 1.7543859649vw, 2rem);
  margin-bottom: clamp(4rem, 5.2631578947vw, 6rem);
}

.pageSub .articleBox_category li {
  width: clamp(14rem, 15.7894736842vw, 18rem);
  list-style-type: none;
}

.pageSub .articleBox_category button {
  display: block;
  width: 100%;
  font-size: clamp(1.3rem, 1.4035087719vw, 1.6rem);
  font-family: 'M PLUS 1p"', YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-weight: 500;
  color: #f39800;
  text-align: center;
  line-height: 1;
  background-color: transparent;
  border: solid 0.1rem #f39800;
  border-radius: 1rem;
  padding: 0.8rem;
  cursor: pointer;
}

.pageSub .articleBox_category button.active {
  background-color: #f39800;
  color: #fff;
}

.pageSub .articleBox_content {
  margin-bottom: clamp(5rem, 4.5138888889vw, 6.5rem);
}

.pageSub .articleBox_content .itemBox {
  display: none;
}

.pageSub .articleBox_content .itemBox.active {
  display: block;
}

.pageSub .articleBox .CMS-NEWS-INDEX,
.pageSub .articleBox .CMS-NEWS-CATEGORY-INDEX {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
  gap: 3.5rem;
  padding: 0;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.pageSub .articleBox .CMS-NEWS-ITEM {
  width: calc((100% - 3.5rem) / 3);
  margin: 0;
}

.pageSub .articleBox .CMS-NEWS-THUMBNAIL {
  height: 21rem;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  margin-bottom: 3rem;
  border-radius: 3rem;
  overflow: hidden;
}

.pageSub .articleBox .CMS-NEWS-ITEM a {
  padding: 0;
}

.pageSub .articleBox .catBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.pageSub .articleBox .CMS-NEWS-TIME {
  font-size: 1.6rem;
  font-family: 'M PLUS 1p"', YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-weight: bold;
  color: #000;
  letter-spacing: 0.1em;
  line-height: 1;
  margin: 0;
}

.pageSub .articleBox .CMS-NEWS-CATEGORY-NAME {
  border-radius: 0.5rem;
  background-color: #f39800;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  height: 1;
  letter-spacing: 0.04em;
  padding: 0.5rem;
}

.pageSub .articleBox .CMS-NEWS-LINK {
  font-size: 1.6rem;
  font-family: 'M PLUS 1p"', YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.1em;
  color: #000;
}

.pageSub .articleBox .CMS-NEWS-MORE-READ {
  display: none;
}

.pageSub .articleBox .c-btn {
  margin: 0 auto;
}

/*======================================
お知らせ詳細
======================================*/
.pageSub .newsDetail_inner {
  padding-top: clamp(8rem, 10.5263157895vw, 12rem);
  padding-bottom: clamp(8rem, 10.5263157895vw, 12rem);
}

.pageSub .newsDetail .CMS-NEWS-TITLE {
  border-bottom: solid 1px #333;
  color: #f39800;
}

.pageSub .newsDetail .CMS-NEWS-TITLE:after {
  border-bottom: solid 3px #f39800;
}

.pageSub .newsDetail .CMS-NEWS-CONTENT {
  line-height: 1.7;
  color: #000;
}

.pageSub .thanks_inner {
  padding: clamp(5rem, 10.5263157895vw, 12rem) 2rem;
  max-width: 102rem;
  margin: 0 auto;
}

.pageSub .thanks h2 {
  text-align: center;
  font-size: clamp(2rem, 2.6315789474vw, 3rem);
  margin-bottom: 3rem;
}

.pageSub .thanks .read {
  text-align: center;
  font-weight: 300;
  margin-bottom: 6rem;
  letter-spacing: 0;
}

.pageSub .thanks .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.pageSub .thanks .btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #000;
  color: #fff;
  width: clamp(25rem, 26.3157894737vw, 30rem);
  height: clamp(5rem, 5.2631578947vw, 6rem);
  font-size: clamp(1.8rem, 1.7543859649vw, 2rem);
}

/*======================================
TOPページ
======================================*/
.pageTop .topNews {
  background-image: url(../img/news_bg@2x.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}

.pageTop .topNews_inner {
  padding-top: clamp(8rem, 9.649122807vw, 11rem);
}

.pageTop .topNews .heading2 {
  width: 15rem;
  margin: 0 auto clamp(5rem, 5.701754386vw, 6.5rem);
}

.pageTop .topNews_category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: clamp(1rem, 1.7543859649vw, 2rem);
  margin-bottom: clamp(4rem, 5.2631578947vw, 6rem);
}

.pageTop .topNews_category li {
  width: clamp(14rem, 15.7894736842vw, 18rem);
  list-style-type: none;
}

.pageTop .topNews_category button {
  display: block;
  width: 100%;
  font-size: clamp(1.3rem, 1.4035087719vw, 1.6rem);
  font-family: 'M PLUS 1p"', YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-weight: 500;
  color: #f39800;
  text-align: center;
  line-height: 1;
  background-color: transparent;
  border: solid 0.1rem #f39800;
  border-radius: 1rem;
  padding: 0.8rem;
  cursor: pointer;
}

.pageTop .topNews_category button.active {
  background-color: #f39800;
  color: #fff;
}

.pageTop .topNews_content {
  margin-bottom: clamp(5rem, 4.5138888889vw, 6.5rem);
}

.pageTop .topNews_content .itemBox {
  display: none;
}

.pageTop .topNews_content .itemBox.active {
  display: block;
}

.pageTop .topNews .CMS-NEWS-INDEX,
.pageTop .topNews .CMS-NEWS-CATEGORY-INDEX {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
  gap: 3.5rem;
  padding: 0;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.pageTop .topNews .CMS-NEWS-ITEM {
  width: calc((100% - 3.5rem) / 3);
  margin: 0;
}

.pageTop .topNews .CMS-NEWS-THUMBNAIL {
  height: 21rem;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  margin-bottom: 3rem;
  border-radius: 3rem;
  overflow: hidden;
}

.pageTop .topNews .CMS-NEWS-ITEM a {
  padding: 0;
}

.pageTop .topNews .catBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.pageTop .topNews .CMS-NEWS-TIME {
  font-size: 1.6rem;
  font-family: 'M PLUS 1p"', YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-weight: bold;
  color: #000;
  letter-spacing: 0.1em;
  line-height: 1;
  margin: 0;
}

.pageTop .topNews .CMS-NEWS-CATEGORY-NAME {
  border-radius: 0.5rem;
  background-color: #f39800;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  height: 1;
  letter-spacing: 0.04em;
  padding: 0.5rem;
}

.pageTop .topNews .CMS-NEWS-LINK {
  font-size: 1.6rem;
  font-family: 'M PLUS 1p"', YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.1em;
  color: #000;
}

.pageTop .topNews .CMS-NEWS-MORE-READ {
  display: none;
}

.pageTop .topNews .c-btn {
  margin: 0 auto;
}

.pageTop .topPolicyReform {
  position: relative;
  z-index: 2;
}

.pageTop .topPolicyReform_inner {
  padding-top: clamp(8rem, 13.1578947368vw, 15rem);
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pageTop .topPolicyReform .photoBox {
  width: clamp(40rem, 44.4444444444vw, 64rem);
  margin-right: clamp(-6rem, -4.1666666667vw, 0rem);
  position: relative;
  z-index: 2;
}

.pageTop .topPolicyReform .photoBox::before {
  content: "";
  background-image: url(../img/heading_reform_decora@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: clamp(13rem, 15.9722222222vw, 23rem);
  height: auto;
  aspect-ratio: 230/120;
  position: absolute;
  top: -10rem;
  right: clamp(2rem, 5.5555555556vw, 8rem);
  z-index: 2;
}

.pageTop .topPolicyReform .detailBox {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-color: #f39800;
  padding-block: 9rem;
  padding-right: clamp(16rem, 25vw, 36rem);
  margin-right: clamp(-31rem, -21.5277777778vw, -11rem);
  border-radius: 0 clamp(4rem, 5.5555555556vw, 8rem) clamp(4rem, 5.5555555556vw, 8rem) 0;
  position: relative;
  z-index: 1;
}

.pageTop .topPolicyReform .detailBox::before {
  content: "";
  background-color: #f39800;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -100%;
  z-index: -1;
}

.pageTop .topPolicyReform .detailBox::after {
  content: "";
  background-image: url(../img/reform_decora01@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: clamp(12rem, 13.8888888889vw, 20rem);
  height: auto;
  aspect-ratio: 200/150;
  position: absolute;
  bottom: -5rem;
  right: clamp(10rem, 20.8333333333vw, 30rem);
  z-index: 2;
  pointer-events: none;
}

.pageTop .topPolicyReform .heading2 {
  width: clamp(26rem, 25vw, 36rem);
  margin-bottom: 4rem;
}

.pageTop .topPolicyReform h3 {
  font-size: clamp(1.6rem, 1.3888888889vw, 2rem);
  font-weight: bold;
  color: #fff;
  line-height: 1.75;
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
}

.pageTop .topPolicyReform .read {
  color: #fff;
  margin-bottom: 5rem;
}

.pageTop .topPolicyCafe_inner {
  padding-top: clamp(8rem, 15.7894736842vw, 18rem);
  padding-bottom: clamp(8rem, 17.5438596491vw, 20rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pageTop .topPolicyCafe .photoBox {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: calc(100% + clamp(11rem, 21.5277777778vw, 31rem));
  margin-right: clamp(-17rem, -11.8055555556vw, 0rem);
  margin-left: clamp(-31rem, -21.5277777778vw, -11rem);
  position: relative;
  z-index: 1;
}

.pageTop .topPolicyCafe .photoBox::before {
  content: "";
  background-image: url(../img/heading_cafe_decora@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: clamp(8rem, 9.7222222222vw, 14rem);
  height: auto;
  aspect-ratio: 140/120;
  position: absolute;
  top: -6rem;
  left: clamp(-12rem, -8.3333333333vw, -2rem);
  z-index: 2;
}

.pageTop .topPolicyCafe .detailBox {
  width: clamp(40rem, 44.4444444444vw, 64rem);
  background-color: #f39800;
  padding: 6rem clamp(2rem, 6.9444444444vw, 10rem) 5rem clamp(2rem, 4.8611111111vw, 7rem);
  border-radius: clamp(2rem, 2.7777777778vw, 4rem);
  position: relative;
  z-index: 2;
}

.pageTop .topPolicyCafe .detailBox::after {
  content: "";
  background-image: url(../img/cafe_decora01@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: clamp(18rem, 19.4444444444vw, 28rem);
  height: auto;
  aspect-ratio: 280/250;
  position: absolute;
  bottom: -10rem;
  right: clamp(2rem, 4.1666666667vw, 6rem);
  z-index: 2;
  pointer-events: none;
}

.pageTop .topPolicyCafe .heading2 {
  width: clamp(23rem, 29.8611111111vw, 43rem);
  margin-bottom: 2rem;
}

.pageTop .topPolicyCafe h3 {
  font-size: clamp(1.6rem, 1.3888888889vw, 2rem);
  font-weight: bold;
  color: #fff;
  line-height: 1.75;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.pageTop .topPolicyCafe .read {
  color: #fff;
  margin-bottom: 3rem;
}

.pageTop .topTakeout {
  background-color: #fef5e5;
  position: relative;
  z-index: 2;
}

.pageTop .topTakeout::after {
  content: "";
  background-image: url(../img/takeout_decora@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: clamp(11rem, 18.4210526316vw, 21rem);
  height: auto;
  aspect-ratio: 210/250;
  position: absolute;
  bottom: -18rem;
  right: 5rem;
  z-index: 2;
  pointer-events: none;
}

.pageTop .topTakeout_inner {
  padding-block: 7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: clamp(2rem, 7.8947368421vw, 9rem);
  position: relative;
  z-index: 1;
}

.pageTop .topTakeout_inner::before {
  content: "";
  background-image: url(../img/heading_takeout_decora@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: clamp(19rem, 25.4385964912vw, 29rem);
  height: auto;
  aspect-ratio: 290/100;
  position: absolute;
  top: -5rem;
  right: clamp(2rem, 12.2807017544vw, 14rem);
  z-index: 2;
}

.pageTop .topTakeout .photoBox {
  width: clamp(30rem, 45.6140350877vw, 52rem);
}

.pageTop .topTakeout .detailBox {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.pageTop .topTakeout .heading2 {
  width: 22rem;
  margin: 0 auto 3rem;
}

.pageTop .topTakeout h3 {
  font-size: clamp(1.6rem, 1.7543859649vw, 2rem);
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.12em;
  margin-bottom: 2rem;
  text-align: center;
}

.pageTop .topTakeout .read {
  margin-bottom: 5rem;
  text-align: center;
}

.pageTop .topTakeout .c-btn {
  margin: 0 auto;
}

.pageTop .topAccess {
  background-image: url(../img/main_bg@2x.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.pageTop .topAccess_inner {
  padding-top: clamp(8rem, 13.1578947368vw, 15rem);
  padding-bottom: clamp(8rem, 17.5438596491vw, 20rem);
}

.pageTop .topAccess_photo {
  width: 100%;
  margin-bottom: clamp(5rem, 13.1578947368vw, 15rem);
}

.pageTop .topAccess_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  gap: clamp(2rem, 4.3859649123vw, 5rem);
}

.pageTop .topAccess_content .map {
  width: clamp(30rem, 41.2280701754vw, 47rem);
  height: auto;
  border-radius: clamp(2rem, 3.5087719298vw, 4rem);
  overflow: hidden;
}

.pageTop .topAccess_content .map iframe {
  width: 100%;
  height: 100%;
}

.pageTop .topAccess_content .detail {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  z-index: 1;
}

.pageTop .topAccess_content .detail .heading2 {
  width: clamp(23rem, 46.4912280702vw, 53rem);
  margin-bottom: 4rem;
}

.pageTop .topAccess_content .detail .inner {
  margin-bottom: clamp(5rem, 7.0175438596vw, 8rem);
}

.pageTop .topAccess_content .detail dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2.5rem 0;
  border-bottom: dashed 0.2rem #f39800;
}

.pageTop .topAccess_content .detail dt,
.pageTop .topAccess_content .detail dd,
.pageTop .topAccess_content .detail a {
  font-family: 'M PLUS 1p"', YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  color: #000;
  letter-spacing: 0.05em;
  line-height: 1.25;
}

.pageTop .topAccess_content .detail dt {
  width: clamp(10rem, 11.8421052632vw, 13.5rem);
  font-weight: bold;
  padding-left: 1.5rem;
}

.pageTop .topAccess_content .detail dd {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: clamp(1.6rem, 1.5789473684vw, 1.8rem);
  font-weight: 400;
}

.pageTop .topContact {
  background-color: #f39800;
  position: relative;
  z-index: 2;
}

.pageTop .topContact_inner {
  padding-block: 7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: clamp(2rem, 7.8947368421vw, 9rem);
  position: relative;
  z-index: 1;
}

.pageTop .topContact_inner::before {
  content: "";
  background-image: url(../img/heading_contact_decora@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: clamp(15rem, 21.9298245614vw, 25rem);
  height: auto;
  aspect-ratio: 250/100;
  position: absolute;
  top: -4rem;
  right: clamp(2rem, 12.2807017544vw, 14rem);
  z-index: 2;
}

.pageTop .topContact .photoBox {
  width: clamp(30rem, 45.6140350877vw, 52rem);
}

.pageTop .topContact .detailBox {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.pageTop .topContact .heading2 {
  width: 22rem;
  margin: 0 auto 3rem;
}

.pageTop .topContact h3 {
  font-size: clamp(1.6rem, 1.7543859649vw, 2rem);
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.12em;
  margin-bottom: 2rem;
  color: #fff;
  text-align: center;
}

.pageTop .topContact .read {
  margin-bottom: 5rem;
  text-align: center;
  color: #fff;
}

.pageTop .topContact .c-btn {
  margin: 0 auto;
}

@media (min-width: 767px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

@media screen and (min-width: 768px) {
  .pcNone {
    display: none !important;
  }
}

@media (min-width: 821px) and (max-width: 1023px) {
  .tabOnly {
    display: block !important;
  }
}

@media (min-width: 981px) {
  #navArea {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  ul.gnav-menu {
    gap: 1.5rem;
  }

  ul.gnav-menu>li {
    font-size: 1.2rem;
  }

  .pageTop .topPolicyCafe .photoBox::before {
    left: 20rem;
  }
}

@media screen and (max-width: 980px) {
  header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
    height: 6rem;
  }

  header h1 {
    width: 8rem;
  }

  header::after {
    background-position: top center;
  }

  .pageHeader {
    padding: 0;
    height: 6rem;
  }

  .pageHeader h1 {
    margin-top: 0;
  }

  header .gnav {
    display: none;
  }
}

@media screen and (max-width: 820px) {
  .sp {
    display: block !important;
  }

  .pc {
    display: none !important;
  }

  .pageSub .articleBox_category {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .pageSub .articleBox_category li {
    width: calc((100% - 1rem) / 2);
  }

  .pageTop .topNews_category {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .pageTop .topNews_category li {
    width: calc((100% - 1rem) / 2);
  }
}

@media screen and (max-width: 767px) {
  .spNone {
    display: none !important;
  }

  body {
    font-size: 15px;
  }

  .c-btn {
    width: 20rem;
  }

  .floatingBtn_pc {
    display: none;
  }

  .floatingBtn_sp {
    width: 100%;
    height: 6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #f39800;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 10;
  }

  .floatingBtn_sp a {
    width: 50%;
    text-align: center;
  }

  .floatingBtn_sp a img {
    max-width: 39rem;
  }

  footer .l-inner {
    padding-top: 8rem;
    padding-bottom: 5rem;
  }

  footer .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  footer .logo {
    width: 10rem;
    padding-top: 0;
  }

  /* nav */
  footer nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 3rem;
  }

  footer nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 3rem;
  }

  footer nav ul li {
    text-align: center;
  }

  footer nav ul li:not(:last-child) {
    border: none;
    padding: 0;
    margin: 0;
  }

  footer nav ul li a {
    -webkit-writing-mode: initial;
    -ms-writing-mode: initial;
    writing-mode: initial;
    font-size: 1.4rem;
  }

  footer nav .contact {
    width: 15rem;
  }

  .top-kv {
    height: 40vh;
  }

  .top-kv-slider>* {
    height: 40vh;
  }

  .scroll span {
    height: 4rem;
  }

  .pageSub .about_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .pageSub .about_content .photo {
    width: 100%;
  }

  .pageSub .information_table dl {
    padding: 1.5rem 1rem;
    gap: 1rem;
  }

  .pageSub .information_table dt {
    width: 100%;
  }

  .pageSub .information_table dd {
    width: 100%;
  }

  .pageSub .information_table a[href^="tel:"] {
    text-decoration: underline;
  }

  .pageSub .information_map {
    height: 25rem;
  }

  .pageSub .galleryBox_item img {
    width: clamp(10rem, 19.556714472vw, 15rem);
    height: clamp(10rem, 19.556714472vw, 15rem);
  }

  .pageSub .menu_category li {
    width: calc((100% - clamp(1rem, 1.7543859649vw, 2rem)) / 2);
  }

  .pageSub .articleBox .CMS-NEWS-INDEX,
  .pageSub .articleBox .CMS-NEWS-CATEGORY-INDEX {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 3rem;
  }

  .pageSub .articleBox .CMS-NEWS-ITEM {
    width: 100%;
  }

  .pageSub .articleBox .CMS-NEWS-THUMBNAIL {
    margin-bottom: 1rem;
  }

  .pageSub .thanks .read {
    line-height: 1.7;
  }

  .pageTop .topNews .heading2 {
    width: 12rem;
  }

  .pageTop .topNews .CMS-NEWS-INDEX,
  .pageTop .topNews .CMS-NEWS-CATEGORY-INDEX {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 3rem;
  }

  .pageTop .topNews .CMS-NEWS-ITEM {
    width: 100%;
  }

  .pageTop .topNews .CMS-NEWS-THUMBNAIL {
    margin-bottom: 1rem;
  }

  .pageTop .topPolicyReform_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .pageTop .topPolicyReform .photoBox {
    width: 100%;
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .pageTop .topPolicyReform .photoBox::before {
    top: -4rem;
  }

  .pageTop .topPolicyReform .detailBox {
    margin-right: 0;
    padding-right: 2rem;
    padding: 4rem 2rem;
    border-radius: 2rem;
  }

  .pageTop .topPolicyReform .detailBox::before {
    display: none;
  }

  .pageTop .topPolicyReform .detailBox::after {
    bottom: -2rem;
    right: -2rem;
  }

  .pageTop .topPolicyReform .heading2 {
    width: 23rem;
    margin-bottom: 3rem;
  }

  .pageTop .topPolicyCafe_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .pageTop .topPolicyCafe .photoBox {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 1rem;
  }

  .pageTop .topPolicyCafe .photoBox img {
    border-radius: 2rem;
  }

  .pageTop .topPolicyCafe .photoBox::before {
    top: -3rem;
    left: 2rem;
  }

  .pageTop .topPolicyCafe .detailBox {
    width: 100%;
    padding: 4rem 2rem;
    border-radius: 2rem;
  }

  .pageTop .topPolicyCafe .detailBox::after {
    width: 13rem;
    bottom: -2rem;
    right: -2rem;
  }

  .pageTop .topPolicyCafe .heading2 {
    width: 28rem;
  }

  .pageTop .topTakeout::after {
    width: 9rem;
    bottom: -6rem;
    right: 2rem;
  }

  .pageTop .topTakeout_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .pageTop .topTakeout_inner::before {
    top: -2rem;
    right: 50%;
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
  }

  .pageTop .topTakeout .photoBox {
    width: 100%;
  }

  .pageTop .topTakeout .heading2 {
    width: 17rem;
  }

  .pageTop .topAccess_photo {
    margin-bottom: 2rem;
  }

  .pageTop .topAccess_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 5rem;
  }

  .pageTop .topAccess_content .map {
    width: 100%;
    height: 30rem;
  }

  .pageTop .topAccess_content .detail {
    width: 100%;
  }

  .pageTop .topAccess_content .detail .heading2 {
    width: 32rem;
    margin-bottom: 0;
  }

  .pageTop .topAccess_content .detail dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .pageTop .topAccess_content .detail dt,
  .pageTop .topAccess_content .detail dd,
  .pageTop .topAccess_content .detail a {
    line-height: 1.7;
  }

  .pageTop .topAccess_content .detail dt {
    width: 100%;
    padding-left: 0;
  }

  .pageTop .topAccess_content .detail a {
    text-decoration: underline;
  }

  .pageTop .topContact_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .pageTop .topContact .photoBox {
    width: 100%;
  }

  .pageTop .topContact .heading2 {
    width: 17rem;
  }
}

/* fixed-btn */

.fixed-btn {
  background: #f39800;
  border: 1px solid #fff;
  color: #fff;
  position: relative;
  list-style: none;
}

.fixed-btn a {

  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}

.fixed-btn i {
  font-size: 2.4rem;
  color: #fff;
}

.fixed-btn span {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  writing-mode: vertical-rl;
}


.fixed-btn__wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
}

@media only screen and (max-width: 767px) {
    .fixed-btn__wrapper {
    bottom: 0;
    left: 0;
    top: auto;
    width: 100%;
    transform: none;
  }
    .fixed-btn a {
    align-items: center;
   flex-direction: row;
    justify-content: center;
    writing-mode: horizontal-tb;
  }
  .fixed-btn a span{
        writing-mode: horizontal-tb;

  }
}

/*  ----------------------------------------------------------

page-top

----------------------------------------------------------  */
#page-top {
    position: fixed;
    z-index: 40;
    height: auto;
    bottom: 1.5rem;
    right: 1rem;
}

#page-top a {
    background: #f39800;
    color: #fff;
    width: 5rem;
    height: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    line-height: 1;
    font-size: 1.4rem;
    padding-left: 0.1rem;
    border: 1px solid #fff;
}

@media screen and (max-width: 767px) {
    #page-top {
        bottom: 5rem;
        right: 1rem;
    }

    #page-top a {
        width: 4rem;
        height: 4rem;
    }
}
