@charset "utf-8";
/*************
共通設定
/*----SPのみflex上下入れ替え-----*/
@media (max-width: 460px) {
  .f_reverse div:nth-child(1) {
    order: 2;
  }
}

/*----SPハンバーガーMENU調整-----*/
@media (max-width: 460px) {
  .p-spMenu__inner {
    width: 58vw;
  }
}
/*----横幅100％-----*/
.full-no-padding {
  width: 100vw !important;
  left: calc(-50vw + 50%) !important;
}
/*----共通デザイン-----*/
/*ヘッダオレンジライン*/
.l-header {
  border-top: solid 10px var(--color_main);
}
/*トップメイン画像サイド余白*/
@media (min-width: 600px) {
  .p-mainVisual.-margin-on {
    padding: 16px 50px;
  }
}
/*フッター*/
.l-footer__foot {
  background-color: #e5734b;
}
.footer-nav-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  padding: 20px 0;
}

.footer-logo img {
  height: 86px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav a {
  text-decoration: none;
  color: #e5734b;
  font-size: 14px;
  border-left: solid 1px #e5734b;
  border-right: solid 1px #e5734b;
  padding: 0 20px 0;
}

@media screen and (max-width: 768px) {
  .footer-nav-wrap {
    flex-direction: column;
    gap: 12px;
  }
}

/*************
TOP
**********************/
.p-postList .p-postList__title,
.c-postTitle__ttl {
  font-weight: normal;
}

#main_content {
  padding: 0;
}
/* ループスライド　同じ画像を上下で2個入れる */
.loop-slider {
  display: flex;
  overflow: hidden;
  gap: 1.5rem;
}
.loop-slider .wp-block-group__inner-container,
.loop-slider .swell-block-columns {
  display: contents;
}
.loop-slider .swell-block-columns__inner {
  flex-wrap: nowrap;
  animation: infinity-scroll-left 40s infinite linear; /* アニメーションのスピード */
}
.loop-slider .swell-block-column figure {
  width: 300px; /* 画像の横幅を指定（パソコン） */
  position: relative;
}
.loop-slider .swell-block-column figure::before {
  padding-top: 100%; /* 画像の縦横比を指定 */
  display: block;
  content: "";
}
.loop-slider .swell-block-column figure img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width: 959px) {
  .loop-slider .swell-block-column figure {
    width: 200px; /* 画像の横幅を指定（スマホ） */
  }
}
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/* ----トップの模様------*/
.home::before,
.home::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 101;
  pointer-events: none;
  opacity: 1;
}
/* 左下のドット模様 */
.home::before {
  top: 10px;
  right: 0;
  background-image: url("../img/bg_circle01w.png");
  background-position: 60px -30px;
}
/* 右上のストライプ模様 */
.home::after {
  top: 200px;
  left: -20px;
  background-image: url("../img/bg_circle02.png");
}
.hed_txt_line {
  background: url(../img/hed_line_img.svg) no-repeat bottom;
  height: 250px;
  background-size: 100%;
  line-height: 2.5;
}

/* サービス */
.sv_wrap {
}
.service-title span {
  display: block;
  font-size: 14px;
  color: #888;
  margin-top: 4px;
}

.service-cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 0 50px;
}

.service-card {
  background: #fff;
  border: 1px solid #ddd;
  width: 300px;
  /* border-radius: 8px; */
  overflow: hidden;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5px;
}

.service-card:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.service-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.card-content {
  padding: 16px;
  text-align: center;
  position: relative;
  width: 100%;
}

.card-icon {
  width: 20px;
  margin: 0 auto;
}

.card-title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px 0;
  position: relative;
}
.card-title span {
  position: absolute;
  right: 0;
  top: 0;
  width: 28px;
}
.card-arrow {
  font-size: 20px;
  color: #f26522;
}
.top_staff_wrap {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
.circle_rt {
  position: absolute;
  top: -14vw;
  right: -20vw;
  z-index: -1;
}
.circle_lb {
  position: absolute;
  bottom: -22vw;
  left: -20vw;
  z-index: -1;
}
.top_newsbox {
  width: 50%;
  margin: 50px auto;
}
h2.wp-block-heading {
  font-family: "Poiret One", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #333;
  font-size: 24px !important;
  letter-spacing: 0.4ex;
  line-height: 1;
}
.post_content small {
  font-size: 1rem;
}
.access_box {
  max-width: 1000px;
  margin: 0 auto;
}
#shopmap {
  margin-left: calc(-50vw + 50%);
}
#shopmap iframe {
  width: 100%;
  height: 500px;
}
@media (max-width: 960px) {
  .home::before,
  .home::after {
    z-index: 99;
  }
}
@media (max-width: 460px) {
  .lum-lightbox-inner img {
    width: 100%;
  }
  .p-mainVisual__inner {
    height: 30vh;
  }
  .p-mainVisual.-margin-on {
    padding: 5%;
  }
  /* トップの模様*/
  .home::before,
  .home::after {
    width: 120px;
    height: 120px;
  }
  /* 左下のドット模様 */
  .home::before {
    top: 70px;
  }
  /* 右上のストライプ模様 */
  .home::after {
    top: 240px;
    left: -50px;
  }
  .hed_txt_line {
    line-height: 1.4;
    background-size: 180%;
    background-position-x: 70%;
    height: 270px;
  }
  .hed_txt_line p {
    text-align: justify;
  }
  .p-mainVisual__slideTitle {
    font-size: 1.2rem;
  }
  .top_maintxt {
    margin: 0 20px;
    padding: 0 0 10px;
    font-size: 0.8rem;
  }
  .loop-slider {
    margin: 0;
  }
  .l-header {
    z-index: 102;
  }
  .top_newsbox {
    width: 80%;
  }
  .top_staff_wrap {
    margin: 0 5%;
  }
  .p-spMenu {
    z-index: 999;
  }
  #shopmap iframe {
    height: 300px;
  }
}
/*---------------------------------
予約ボタン
------------------------------*/
.btn_contact {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.btn_contact a {
  background-color: #e5734b;
  color: #fff;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
/* 表示時 */
.btn_contact.show {
  opacity: 1;
  pointer-events: auto;
}
.p-fixBtnWrap {
  bottom: 60px;
}
@media (min-width: 959px) {
  .btn_contact {
    position: fixed;
    top: 40%;
    right: 0;
    width: 90px !important;
    z-index: 99999;
    white-space: nowrap;
    opacity: 1;
    transform: initial;
    bottom: initial;
    left: initial;
  }
  .btn_contact a {
    background-color: #e5734b;
    color: #fff;
    flex-direction: column;
    padding: 20px 10px;
    border-radius: 5px 0 0 5px;
    font-size: 12px;
    box-shadow: 0 0 5px 0 #00000040;
    width: initial;
    margin: initial;
  }
  .btn_contact a:hover {
    opacity: 0.8;
    transition: all 0.2s ease-out 0s;
  }
  .is-style-more_btn a:after {
    display: none;
  }
  .btn_contact a span {
  }
}
/*************
MENU
**********************/
.menubox {
  max-width: 800px;
  margin: 0 auto;
}
.menubox th {
  font-weight: normal;
  padding-left: 30px;
}
.menubox thead th {
  text-align: center;
}
.menubox th .menubox.triming {
}
@media (max-width: 460px) {
  .menubox th {
    padding-left: 10px;
  }
  .no-wrap {
    white-space: nowrap;
  }
}
/*************
RESERVE
**********************/
.rv_step {
  max-width: 800px;
  margin: 0 auto;
}
.rv_step img {
  width: 300px;
}
