@charset "UTF-8";
/* 共通 */
html {
  font-size: 100%;
}
body {
  position: relative;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  color: #333;
  font-size: clamp(1rem, 0.925rem + 0.2667vw, 1.125rem);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.1em;
  line-height: 1.9;
  overflow: auto;
}
.hamopen {
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}
a {
  text-decoration: none;
  transition: .4s;
}
a:focus-visible {
  outline: 3px solid blue !important;
  outline-offset: -1px;
  box-shadow: 0 0 0 3px white;
}
button:focus-visible {
  outline: 3px solid blue !important;
  outline-offset: -1px;
  box-shadow: 0 0 0 3px white;
}
ul, ol {
  list-style: none;
  padding: 0;
}
/*main section*/
main {
  display: block;
  position: relative;
  overflow: hidden;
}
main section {
  padding: 70px 0 100px;
  position: relative;
}
main section.stb {
  padding: 95px 0;
}
@media (max-width: 550px) {
  main section {
    padding: 45px 0 55px;
  }
  main section.stb {
    padding: 50px 0;
  }
  main section.SP_displayContents {
    padding: 45px 0 55px;
  }
}
.pdb {
  padding-bottom: 55px !important;
}
.pdb0 {
  padding-bottom: 1px !important;
}
@media (max-width: 550px) {
  .pdb {
    padding-bottom: 20px !important;
  }
}
/*img*/
img {
  line-height: 1;
  vertical-align: top;
  max-width: 100%;
  transition: .4s;
}
/*text*/
p {
  margin-bottom: 10px;
}
.marker {
  text-decoration: underline;
  text-decoration-thickness: 0.45em;
  text-decoration-color: rgba(255, 239, 135, 0.55);
  text-underline-offset: -0.05em;
  text-decoration-skip-ink: none;
}
/*中央寄せ*/
.center {
  text-align: center;
}
@media (max-width:750px) {
  .spcenter {
    text-align: center !important;
  }
}
.fitc {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
/* 見出し */
/*01*/
.maintitle {
  margin-bottom: 55px;
  display: block;
  text-align: center;
  line-height: 1.3;
  position: relative;
  font-size: clamp(1.6rem, 1.12rem + 1.7067vw, 2.4rem);
}
.maintitle .mf {
  font-size: 48%;
  text-transform: capitalize;
  margin-bottom: 5px;
  display: inline-block;
  color: #91a641;
}
.maintitle.mtleft {
  text-align: left;
}
.txtmgb {
  margin-bottom: 33px !important;
}
@media (max-width: 550px) {
  .maintitle {
    margin-bottom: 37px;
  }
  .txtmgb {
    margin-bottom: 27px !important;
  }
}
/*02*/
.mtitle {
  font-weight: 600;
  position: relative;
  background: #91a641;
  color: #fff;
  font-size: clamp(1.3rem, 1.09rem + 0.7467vw, 1.65rem);
  width: 100%;
  display: block;
  margin-bottom: 13px;
  padding: 3px 10px 5px;
  line-height: 1.55;
}
.mtitle::after {
  content: '';
  width: 20px;
  height: 1px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: #fff;
  pointer-events: none;
}
/*03*/
.stitle {
  font-weight: 600;
  position: relative;
  font-size: clamp(1.3rem, 1.09rem + 0.7467vw, 1.65rem);
  padding-left: 2px;
  line-height: 1.65;
  padding-bottom: 12px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.17);
}
.stitle::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 95px;
  height: 1px;
  background: #91a641;
}
/* ボタン */
/*01*/
.mainbtn01 {
  width: fit-content !important;
}
.mainbtn01 a {
  position: relative;
  vertical-align: middle;
  margin: 0 auto;
  padding: 18px;
  padding-left: 90px !important;
  display: inline-block;
  overflow: hidden;
  line-height: 1.6;
  color: #cc4333;
  font-size: 107%;
}
.mainbtn01 a:hover {
  color: #91a641;
}
/* 菱形 */
.mainbtn01 a::after {
  content: '';
  padding: 25px 40px;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background: #cc4333;
  transition: 0.35s all;
}
.mainbtn01 a:hover::after {
  background: #91a641;
}
/* 矢印 */
.mainbtn01 a::before {
  position: absolute;
  top: 50%;
  left: 40px;
  font-family: "Font Awesome 6 Free";
  content: "\f061";
  font-weight: bold;
  line-height: 1;
  transform: translate(-50%, -50%) scale(1.1, 0.8);
  color: #fff;
  font-size: 1.05rem;
  z-index: 1;
}
.mainbtn01 a:hover::before {
  animation: arrow 0.35s linear;
}
@keyframes arrow {
  39% {
    transform: translate(-100%, -50%) scale(1.1, 0.8);
  }
  42% {
    opacity: 0;
    transform: translate(-150%, -50%) scale(1.1, 0.8);
  }
  39% {
    opacity: 0;
    transform: translate(100%, -50%) scale(1.1, 0.8);
  }
  42% {
    transform: translate(150%, -50%) scale(1.1, 0.8);
  }
  47% {
    transform: translate(-100%, -50%) scale(1.1, 0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1, 0.8);
  }
}
.btnright {
  margin-left: auto;
}
@media (max-width:750px) {
  .spfitc {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}
/*02*/
.mainbtn02 a {
  overflow: hidden;
  display: inline-block;
  position: relative;
  text-align: center;
  padding: 24px 0;
  width: 260px;
  border: 1px solid #cc4333;
  color: #fff;
  background: #cc4333;
}
.mainbtn02 a:hover {
  color: #cc4333;
  background: #fff;
}
/**/
.tbtn {
  margin-top: 30px;
}
/**/
.btnflex {
  margin-left: auto;
  margin-right: auto;
}
.btnflex a {
  margin: 1px 6px;
  display: inline-block;
}
@media (max-width: 750px) {
  .mainbtn02 a {
    width: 220px;
    padding: 20px 0;
  }
  .tbtn {
    margin-top: 25px;
  }
}
/* flex要素 */
.flexbox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.aic {
  align-items: center;
}
.reverse {
  flex-direction: row-reverse;
}
@media (max-width: 750px) {
  .flexbox {
    display: block;
  }
  .flexbox img {
    width: 100%;
  }
  .flexbox div {
    width: 100%;
  }
  .spmgb {
    margin-bottom: 35px;
  }
}
/* 幅 */
.inner {
  width: 88%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 2000px) {
  .inner02 {
    max-width: 1500px;
    width: 92%;
    margin: 0 auto;
  }
}
@media (max-width: 1999px) {
  .inner02 {
    max-width: 100%;
    width: 100%;
  }
  .mauto {
    margin-left: auto;
    margin-right: auto;
  }
  .mauto.w48 {
    width: 42%;
  }
  .mauto.w43 {
    width: 37%;
  }
}
@media (max-width: 750px) {
  .inner02 {
    width: 88%;
    margin: 0 auto;
  }
  .mauto.w48, .mauto.w43 {
    width: 100%;
  }
}
.w62 {
  width: 62%;
}
.w52 {
  width: 52%;
}
.w48 {
  width: 48%;
}
.w43 {
  width: 43%;
}
.w32 {
  width: 32%;
}
/* background ===================*/
.bg {
  overflow: hidden;
  position: relative;
}
.bg::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-image: url(../img/_bg/bg.jpg);
  background-size: 1550px;
  background-repeat: repeat;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.4;
  z-index: -98;
}
/**/
.bg_cream {
  position: relative;
}
.bg_cream::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #fffaf0;
  pointer-events: none;
  z-index: -100;
}
/**/
.shippo {
  position: relative;
}
.shippo::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #91a641;
  z-index: -2;
  pointer-events: none;
}
.shippo::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url(../img/_bg/shippo.svg);
  background-size: 750px;
  background-repeat: repeat;
  opacity: 0.07;
  filter: invert(97%) sepia(78%) saturate(1057%) hue-rotate(320deg) brightness(102%) contrast(110%);
  pointer-events: none;
}
/* illust ===================*/
.bg01::after {
  pointer-events: none;
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../img/_bg/01a.svg), url(../img/_bg/01b.svg);
  background-repeat: no-repeat;
  background-position: top -30px right -30px, bottom -30px left -30px;
  background-size: 27%, 32%;
  z-index: -1;
  opacity: 0.5;
}
@media (max-width: 750px) {
  .bg01::after {
    background-size: 220px, 300px;
  }
}
.bg02::after {
  pointer-events: none;
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../img/_bg/02.svg);
  background-repeat: no-repeat;
  background-position: top -30px right -30px;
  background-size: 500px;
  z-index: -1;
  opacity: 0.5;
}
@media (max-width: 1000px) {
  .bg02::after {
    background-size: 40%;
  }
}
@media (max-width: 750px) {
  .bg02::after {
    background-size: 200px;
  }
}
.bg03::after {
  pointer-events: none;
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../img/_bg/03a.svg), url(../img/_bg/03b.svg);
  background-repeat: no-repeat;
  background-position: bottom -5px left -5px, top -5px right -5px;
  background-size: 27%, 500px;
  z-index: -1;
  opacity: 0.45;
}
.bg_cream.bg03 .maintitle, .bg_cream .bg03 .maintitle {
  text-shadow: 1px 1px 0 #fffaf0, -1px -1px 0 #fffaf0, -1px 1px 0 #fffaf0, 1px -1px 0 #fffaf0, 0px 1px 0 #fffaf0, 0 -1px 0 #fffaf0, -1px 0 0 #fffaf0, 1px 0 0 #fffaf0;
}
@media (max-width: 750px) {
  .bg03::after {
    background-size: 210px, 240px;
  }
}
.bg04::after {
  pointer-events: none;
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../img/_bg/04.svg);
  background-repeat: no-repeat;
  background-position: bottom -5px right -30px;
  background-size: 430px;
  z-index: -1;
  opacity: 0.3;
}
@media (max-width: 550px) {
  .bg04::after {
    background-size: 45%;
  }
}
.bg05::after {
  pointer-events: none;
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../img/_bg/05a.svg), url(../img/_bg/05b.svg);
  background-repeat: no-repeat;
  background-position: bottom -30px right -30px, top -30px left -30px;
  background-size: 350px;
  z-index: -1;
  opacity: 0.5;
}
@media (max-width: 550px) {
  .bg05::after {
    background-size: 200px;
    background-position: bottom -20px right -70px, top -70px left -70px;
  }
}
.bg06::after {
  pointer-events: none;
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../img/_bg/06.svg);
  background-repeat: no-repeat;
  background-position: top -5px left -5px;
  background-size: 430px;
  z-index: -1;
  opacity: 0.4;
}
@media (max-width: 550px) {
  .bg06::after {
    background-size: 50%;
  }
}
.bg07::after {
  pointer-events: none;
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../img/_bg/07.svg);
  background-repeat: no-repeat;
  background-position: top -5px left -5px;
  background-size: 430px;
  z-index: -1;
  opacity: 0.4;
}
@media (max-width: 550px) {
  .bg07::after {
    background-size: 45%;
  }
}
.bg08::after {
  pointer-events: none;
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../img/_bg/08.svg);
  background-repeat: no-repeat;
  background-position: bottom -5px left -5px;
  background-size: 430px;
  z-index: -1;
  opacity: 0.4;
}
@media (max-width: 750px) {
  .bg08::after {
    background-size: 42%;
  }
}
/*反転*/
.bgx::before, .bgx::after {
  transform: scaleX(-1);
}
.bgy::before, .bgy::after {
  transform: scaleY(-1);
}
.bgxy::before, .bgxy::after {
  transform: scaleX(-1) scaleY(-1);
}
/* アニメーション ============*/
/* flowup */
.flowup {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 1.3s, transform 1.3s;
  transition-delay: 0.35s;
}
.flowup.inview {
  opacity: 1;
  transform: translateY(0);
}
/*delay*/
.delay01 {
  transition-delay: 0.45s;
}
.delay02 {
  transition-delay: 0.6s;
}
@media (max-width: 750px) {
  .delay01, .delay02 {
    transition-delay: 0.3s !important;
  }
}
/*=== 共通部分ここまで ===*/
/* header ================================================*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-bottom: 17px;
  transition: .5s all;
  border-bottom: 1px solid transparent;
}
.header.change {
  background: #fff;
  box-shadow: 0px 4px 4px -5px rgba(0, 0, 0, 0.12);
}
/* 営業時間 =============*/
.hours {
  padding: 12px 5px 5px;
  overflow: hidden;
  display: flex;
  width: 96%;
  margin: auto;
  font-size: clamp(1.3rem, 1.18rem + 0.4267vw, 1.5rem);
  color: #fff;
}
.change .hours {
  color: #333;
}
/*flex*/
.ho_flex {
  display: flex;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
/*title*/
.ho_title p {
  width: fit-content;
  margin-right: 15px;
  margin-bottom: 0;
  white-space: nowrap;
  padding: 0 15px 2px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.change .ho_title p {
  border: 1px solid #91a641;
  color: #91a641;
}
/*流れるテキスト*/
.js-ticker {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  width: 100%;
}
.js-ticker p {
  white-space: nowrap;
  display: inline-block;
  animation-name: tickerAnimation;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  margin-right: 15px;
  background: transparent;
  transition: .6s all;
}
.change .js-ticker p {
  background: #fff;
}
@keyframes tickerAnimation {
  0% {
    transform: translateX(0%);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: translateX(-100%);
    opacity: 1;
  }
}
/**/
.header_inner {
  max-width: 1160px;
  position: relative;
  width: 96%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* logo =============*/
.header h1 {
  line-height: 1;
}
.header_title a:hover {
  opacity: 0.6;
}
.header_title {
  width: 290px;
}
.header_title img {
  filter: brightness(0) invert(1);
}
.change .header_title img {
  filter: none;
}
/* links =============*/
.header_item {
  display: flex;
  align-items: center;
  margin-left: auto;
  width: fit-content;
  margin-bottom: 10px;
  line-height: 1;
}
.header_item .mainbtn02 {
  margin-left: 13px;
}
.header_item .mainbtn02 a {
  min-width: auto;
  width: 155px;
  line-height: 1;
  padding: 9px 0 11px;
  font-size: 0.95rem;
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.change .header_item .mainbtn02 a {
  background: #91a641;
  color: #fff;
  border: 1px solid #91a641;
}
.header_item .mainbtn02 a:hover {
  opacity: 0.6;
}
/*tel*/
.tel {
  display: flex;
  align-items: center;
}
.tel p {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-right: 10px;
}
.tel p, .tel p span {
  color: #fff;
}
.tel p span {
  font-size: 105%;
}
.tel a {
  font-size: 1.35rem;
  display: block;
  color: #fff;
  padding-bottom: 3px;
}
.tel a:hover {
  opacity: 0.6;
}
.change .tel a, .change .tel p {
  color: #333;
}
.change .tel a i, .change .tel p span {
  color: #cc4333;
}
/* menu ===================*/
.header_nav {
  width: fit-content;
  margin-left: auto;
}
.header_nav ul {
  display: flex;
  text-align: center;
}
.header_nav ul li {
  padding: 2px 13px;
  position: relative;
  line-height: 1.6;
}
.header_nav ul li:last-child {
  margin-right: 0 !important;
  padding-right: 0 !important;
}
.header_nav ul li a {
  display: block;
  width: 100%;
  position: relative;
  top: 0;
  line-height: 1.5;
  font-size: 1.15rem;
  color: #fff;
  white-space: nowrap;
}
.header_nav ul li a span {
  display: block;
  font-size: 90%;
  text-transform: capitalize;
}
.change .header_nav ul li a {
  color: #333;
}
.header_nav ul li a:hover {
  opacity: 0.6;
}
/* ドロップダウンメニュー =====*/
.menu-item-has-children {
  position: relative;
}
.sub-menu {
  position: absolute;
  top: 40px; /*位置調整*/
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  opacity: 0;
  visibility: hidden;
  transition: .1s;
  z-index: 4;
  flex-direction: column;
}
.sub-menu::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  padding-top: 15px;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
}
.sub-menu li {
  padding: 0 !important;
  border: none !important;
  margin: 0 !important;
  margin-bottom: 5px !important;
  width: 100% !important;
  position: relative;
  transition: .3s all;
}
.sub-menu li:last-child {
  border-bottom: none;
}
.sub-menu li::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.65);
  z-index: -100;
  transition: .3s all;
}
.change .sub-menu li::after {
  background: #91a641;
}
.sub-menu li:hover {
  opacity: 0.6;
}
.sub-menu a {
  display: block;
  opacity: 1 !important;
  color: #fff !important;
  font-size: 0.95rem !important;
  padding: 14px 0 !important;
}
/* ホバー＆フォーカスで子メニュー表示 */
/* Display sub menu by hover & focus */
.menu-item-has-children ul {
  transition: .4s all;
  transform: scale(1, 0) translateX(-50%);
  transform-origin: top;
}
.menu-item-has-children:hover ul, .menu-item-has-children ul.focused {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateX(-50%);
}
/* hamburger ================================= */
.header__inner {
  position: relative;
  height: fit-content;
  display: none;
}
.hamburger {
  display: block;
  height: 37px;
  position: relative;
  z-index: 9997;
  width: 55px;
  border: none;
  background-color: transparent;
}
.hamburger.-active {
  margin-right: 20px;
}
.hamburger.-active .hamburger__line {
  background-color: transparent;
}
.hamburger.-active .hamburger__line::before {
  top: 0;
  transform: rotate(45deg);
  background-color: #cc4333 !important;
}
.hamburger.-active .hamburger__line::after {
  top: 0;
  transform: rotate(-45deg);
  background-color: #cc4333 !important;
}
.hamburger__line {
  display: block;
  height: 1px;
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  transition: 0.4s;
}
.hamburger__line:before, .hamburger__line:after {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
  transition: inherit;
}
.hamburger__line, .hamburger__line:before, .hamburger__line:after {
  background-color: #fff;
}
.change .hamburger__line, .change .hamburger__line:before, .change .hamburger__line:after {
  background-color: #cc4333;
}
.hamburger__line:before {
  top: -9.5px;
}
.hamburger__line:after {
  top: 9.5px;
}
/*
.hamburger__text {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  line-height: 1.4;
}
.hamburger__text::before {
  content: "menu";
  text-align: center;
  font-size: 0.9rem;
  text-transform: capitalize;
  margin-left: 3px;
  color: #fff;
}
.hamburger.-active .hamburger__text::before {
  content: 'close';
  position: relative;
  bottom: -9px;
  margin-left: 0;
  color: #fff !important;
}
*/
/**/
.header__nav-area {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  height: 100vh; /* fallback */
  height: calc(var(--vh, 1vh) * 100);
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
  overflow-y: scroll;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.header__nav-area::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-image: url(../img/_bg/bg.jpg);
  background-size: 1550px;
  background-repeat: repeat;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.4;
}
.header__nav-area::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-image: url(../img/_bg/shippo.svg);
  background-size: 550px;
  background-repeat: repeat;
  filter: invert(65%) sepia(9%) saturate(2261%) hue-rotate(32deg) brightness(93%) contrast(90%);
  opacity: 0.06;
}
/* ハンバーガーメニュー 開いた状態 */
.header__nav-area.-active {
  opacity: 1;
  visibility: visible;
  clip-path: polygon(4% 4%, 96% 4%, 96% 96%, 4% 96%);
}
.hamopen .header {
  background: transparent;
}
.hamopen .header_title, .hamopen .hours {
  opacity: 0;
  pointer-events: none;
}
.ham_back::after {
  content: '';
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #111;
  opacity: 0;
  z-index: 99;
  pointer-events: none;
}
.hamopen .ham_back::after {
  opacity: 0.6;
  pointer-events: auto;
}
/**/
.wr {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  width: 90%;
  z-index: 5;
  scrollbar-width: none;
}
.wr::-webkit-scrollbar {
  display: none;
}
@media (max-height: 895px) {
  .wr {
    height: 100%;
    overflow-y: scroll;
    padding: 55px 10px 100px;
  }
}
@media (max-width: 550px) {
  .wr {
    height: 100%;
    overflow-y: scroll;
    padding: 55px 10px 100px;
  }
}
/* menu */
.global-navigation {
  margin: auto;
  height: fit-content;
  position: relative;
  z-index: 1;
}
.global-navigation__list {
  margin-bottom: 30px;
  text-align: center;
}
.global-navigation__list > li {
  font-size: 1.27rem;
  line-height: 1.65;
  display: block;
  margin-bottom: 10px;
}
.global-navigation__list li a {
  padding: 13px 0 8px;
  display: inline-block;
  color: #333;
}
.global-navigation__list li a span {
  display: block;
  font-size: 70%;
  text-transform: capitalize;
  color: #91a641;
}
.global-navigation__list li a:not(:first-of-type) {
  font-size: 85%;
  display: block;
  padding: 0 0 2px !important;
  width: 100px;
  text-align: left !important;
  margin: auto;
}
.global-navigation__list li a:not(:first-of-type)::before {
  font-family: "Font Awesome 6 Free";
  content: "\f0da";
  display: inline-block;
  font-weight: bold;
  margin-right: 5px;
  font-size: 0.7rem;
  transform: translateY(-2px);
  color: #91a641;
}
.global-navigation__list a:hover {
  opacity: 0.6;
}
/* btn */
.header__nav-area .mainbtn02 {
  margin-top: 5px;
}
.header__nav-area .mainbtn02 p {
  font-size: 0.93rem;
}
.red {
  color: #cc4333;
}
/* animation */
.header__nav-area {
  overflow-x: hidden;
}
.header__nav-area ul li {
  transform: translateX(200px);
  opacity: 0;
}
.header__nav-area .mainbtn02 {
  transform: translateX(200px);
  opacity: 0;
}
.header__nav-area.-active ul li {
  transform: translateX(0);
  transition: 1.6s ease, opacity 2.6s ease;
  opacity: 1;
}
.header__nav-area.-active .mainbtn02 {
  transform: translateX(0);
  transition: 1.6s ease, opacity 2.6s ease;
  opacity: 1;
}
.header__nav-area.-active ul li:nth-child(2) {
  transition-delay: 0.15s;
}
.header__nav-area.-active ul li:nth-child(3) {
  transition-delay: 0.3s;
}
.header__nav-area.-active ul li:nth-child(4) {
  transition-delay: 0.45s;
}
.header__nav-area.-active ul li:nth-child(5) {
  transition-delay: 0.6s;
}
.header__nav-area.-active ul li:nth-child(6) {
  transition-delay: 0.75s;
}
.header__nav-area.-active .mainbtn02 {
  transition-delay: 0.45s;
}
@media (max-width: 1300px) {
  .hours {
    margin-bottom: 17px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  }
  .change .hours {
    border-bottom: 1px solid #ddd;
  }
  .header_inner {
    max-width: 100%;
  }
}
@media (max-width:1050px) {
  .header_title {
    width: 265px;
  }
  .header_nav, .header_item {
    display: none;
  }
  .header__inner {
    display: block;
  }
}
@media (max-width: 550px) {
  .hours {
    margin-bottom: 12px;
    padding-top: 10px;
  }
  .header_title {
    width: 195px;
  }
  .header {
    padding-bottom: 8px;
  }
  .global-navigation__list > li {
    font-size: 1.13rem;
    margin-bottom: 7px;
  }
  .header__nav-area.-active .mainbtn02 {
    font-size: 0.95rem;
  }
}
/* footer ================================================*/
.footer_contact {
  position: relative;
  padding: 60px 0;
}
.footer_contact .fitc {
  text-align: center;
}
@media (max-width: 640px) {
  .footer_contact .fitc {
    text-align: left;
  }
}
/*box*/
.fcbox {
  position: relative;
  background: #fff;
  padding: 30px 20px 50px;
}
.wf::before, .wf::after, .wf_in::before, .wf_in::after {
  content: '';
  position: absolute;
  background: #ddd;
  z-index: 1;
  opacity: 0.6;
  pointer-events: none;
}
.wf::before, .wf::after {
  width: 7px;
  height: calc(100% + 20px);
  top: 50%;
  transform: translateY(-50%);
}
.wf::before {
  left: 0;
}
.wf::after {
  right: 0;
}
.wf_in::before, .wf_in::after {
  width: calc(100% + 20px);
  height: 7px;
  left: 50%;
  transform: translateX(-50%);
}
.wf_in::before {
  top: 0;
}
.wf_in::after {
  bottom: 0;
}
/**/
.fcbox .maintitle {
  margin-bottom: 20px;
}
.fcbox .fitc {
  margin-bottom: 45px;
}
/*links*/
.fc_flex {
  display: flex;
  justify-content: space-between;
  max-width: 700px;
  margin: auto;
}
.fc_flex div {
  width: 48%;
}
/*tel*/
.fctel {
  line-height: 1.6;
  font-size: 1.9rem;
  text-align: center;
}
.fctel p {
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 8px;
}
.fctel p span {
  font-size: 105%;
}
.fctel a {
  color: #333;
}
.fctel a i {
  color: #cc4333;
}
.fctel a span {
  font-size: 55%;
  display: block;
}
.fctel a:hover {
  opacity: 0.6;
}
/*btn*/
.fc_flex .mainbtn02 a {
  width: 100%;
  font-size: 1.13rem;
}
@media (max-width: 750px) {
  .fcbox .fitc {
    margin-bottom: 35px;
  }
  .fc_flex {
    display: block;
    max-width: 300px;
  }
  .fc_flex div {
    width: 100%;
    margin-bottom: 20px;
  }
  .fc_flex div:last-of-type {
    margin-bottom: 0 !important;
  }
}
@media (max-width: 550px) {
  .footer_contact {
    padding: 43px 0;
  }
  .fcbox {
    padding: 20px 20px 30px;
  }
  .fcbox .fitc {
    margin-bottom: 20px;
  }
  .fctel {
    font-size: 1.5rem;
  }
  .fctel p {
    font-size: 0.83rem;
  }
  .fc_flex .mainbtn02 a {
    font-size: 1rem;
  }
}
/* logo address ==========================*/
.footer_address {
  padding: 60px 0;
}
/**/
.fa_flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
/*logo*/
.flogo {
  width: 100%;
  max-width: 240px;
  margin: 0 auto 10px 0;
}
.f_add {
  font-size: 95%;
}
.f_add p:last-of-type {
  margin-bottom: 0;
}
.ib {
  display: inline-block;
}
/**/
.footer_address a {
  color: #cc4333;
}
.footer_address a:hover {
  opacity: 0.6;
}
.sns {
  display: flex;
  justify-content: space-between;
  width: fit-content !important;
  margin-left: auto;
  font-size: 90%;
}
.sns p {
  margin-bottom: 0;
  margin-right: 10px;
  text-transform: capitalize;
}
.sns p::after {
  content: "／";
  margin-left: 7px;
}
.sns a {
  font-size: 110%;
}
@media (max-width: 750px) {
  .flogo {
    margin: 0 auto 10px;
  }
  .f_add, .copyright {
    text-align: center;
  }
  .sns {
    margin: auto;
    margin-top: 10px;
  }
  .copyright {
    margin-top: 10px;
  }
}
@media (max-width: 550px) {
  .footer_address {
    padding: 40px 0;
  }
  .flogo {
    max-width: 210px;
    margin-bottom: 7px;
  }
  .sns {
    font-size: 0.83rem;
  }
  .copyright {
    margin-top: 15px;
    font-size: 0.75rem;
  }
}
/*ページ上に戻るボタン*/
.go_top {
  display: block;
  width: 60px;
  height: 60px;
  background: #cc4333;
  position: fixed;
  bottom: 20px;
  right: 25px;
  z-index: 79;
  border-radius: 50px;
}
.go_top::before {
  font-family: "Font Awesome 6 Free";
  content: "\f124";
  font-weight: bold;
  color: #fff;
  font-size: 0.85rem;
  position: absolute;
  top: 51%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.go_top:hover {
  opacity: 0.6;
}
.tfade {
  position: relative;
  z-index: 79;
}
@media(max-width:550px) {
  .go_top {
    width: 53px;
    height: 53px;
    right: 15px;
    bottom: 10px;
  }
  .go_top::before {
    font-size: 0.7rem;
  }
}
/* スライド　========================================*/
.topslideWrap {
  position: relative;
}
.topslide {
  position: relative;
  overflow: hidden;
}
/*img*/
.topslide img {
  object-fit: cover;
  width: 100%;
  height: 100vh;
  min-height: 650px;
}
/*スライドアニメーション*/
.slick-animation .zoom_anim {
  animation: fadezoom 16s linear 0s normal both;
}
@keyframes fadezoom {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
/*catchcopy*/
.catchcopy {
  z-index: 3;
  text-align: center;
  font-family: "hot-gyoshokk", "New Tegomin", sans-serif;
  font-weight: 400;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 2.35rem;
  line-height: 1.35;
  letter-spacing: 0;
  white-space: nowrap;
  text-shadow: 0px 2.5px 3px rgb(0 0 0 / 13%), 0px -2.5px 3px rgb(0 0 0 / 7%);
}
.catchcopy .bi {
  display: block;
  line-height: 1;
  font-size: 350%;
}
.catchcopy::before, .catchcopy::after {
  pointer-events: none;
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../img/slide.svg);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 13%;
  z-index: -1;
  opacity: 0.5;
}
.catchcopy::after {
  transform: scaleX(-1) scaleY(-1);
}
.catchcopy br {
  display: none;
}
.slide_items div:nth-child(3) .catchcopy {
  color: #91a641;
  text-shadow: none;
  text-shadow: 2px 2px 0 #fff, -2px -2px 0 #fff, -2px 2px 0 #fff, 2px -2px 0 #fff, 0px 2px 0 #fff, 0 -2px 0 #fff, -2px 0 0 #fff, 2px 0 0 #fff;
}
@media(max-width:1250px) {
  .catchcopy {
    font-size: 2.85vw;
  }
}
@media (max-width: 1190px) {
  .topslide img {
    height: calc(100vh - 30px);
  }
  .slide_items div:nth-child(3) .catchcopy {
    text-shadow: 1.5px 1.5px 0 #fff, -1.5px -1.5px 0 #fff, -1.5px 1.5px 0 #fff, 1.5px -1.5px 0 #fff, 0px 1.5px 0 #fff, 0 -1.5px 0 #fff, -1.5px 0 0 #fff, 1.5px 0 0 #fff;
  }
}
@media (max-width: 550px) {
  .catchcopy {
    font-size: 4.8vw;
  }
  .catchcopy br {
    display: block;
  }
  .catchcopy .bi {
    font-size: 245%;
  }
  .slide_items div:nth-child(3) .catchcopy {
    text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, 0px 1px 0 #fff, 0 -1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff;
  }
  .topslide img {
    min-height: auto;
    height: calc(100vh - 60px);
  }
}
/* news =============================*/
.phplink {
  position: absolute;
  z-index: 5;
  bottom: -7px;
  right: 13px;
}
.phplink a {
  color: #fff !important;
}
.newstitle {
  text-align: center;
  padding: 0 15px 2px;
  margin-right: 13px;
  white-space: nowrap;
  font-size: clamp(0.85rem, 0.76rem + 0.32vw, 1rem);
  font-weight: 600;
  background: #91a641;
  color: #fff;
  width: fit-content;
}
.news {
  overflow: hidden;
  position: absolute;
  bottom: 33px;
  right: 13px;
  background: #fff;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 95%;
  max-width: 565px;
  padding: 12px;
}
/**/
.catName {
  display: none;
}
#newsWrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}
#newsWrap ul#newsList {
  width: 100% !important;
}
#newsWrap ul#newsList li {
  font-size: 90%;
  display: flex;
  width: fit-content;
  max-width: 100%;
}
#newsWrap ul#newsList li .up_ymd {
  margin-right: 10px;
  font-size: 96%;
}
#newsWrap ul#newsList li .title {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#newsWrap ul#newsList li a {
  color: #333;
}
#newsWrap ul#newsList li a:hover {
  opacity: 0.6;
}
@media (max-width:750px) {
  .phplink {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  .news {
    display: block;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  .newstitle {
    margin-bottom: 3px;
  }
}
@media (max-width: 550px) {
  .news {
    padding: 7px;
  }
  .newstitle {
    padding: 0 10px 2px;
  }
  #newsWrap ul#newsList li {
    padding-left: 2px;
  }
}


/*一覧*/
.news-detail-list #newsWrap {
  display: block;
}
.news-detail-list #newsWrap ul#newsList li {
  display: block;
  width: 100%;
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}
.news-detail-list #newsWrap ul#newsList li .title{
  display: inline;
}
@media (max-width: 550px){
  .news-detail-list #newsWrap ul#newsList li .title{
    display: block;
  }
}


/* よろず屋について　========================================*/
.aboutus {
  padding-top: 0 !important;
}
/*text*/
.aboutus .mauto {
  margin-top: 100px;
}
/*img*/
.auimgs {
  padding-top: 95px;
  position: relative;
}
.auimgs::before {
  content: '';
  width: 74%;
  height: 67%;
  position: absolute;
  bottom: 14%;
  right: 5%;
  background: #91a641;
  pointer-events: none;
  z-index: -2;
}
.auimgs div:nth-child(1) {
  width: 85% !important;
  margin-right: auto;
  margin-top: 205px;
}
.auimgs div:nth-child(2) {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 48% !important;
}
.auimgs div:nth-child(3), .auimgs div:nth-child(4) {
  position: absolute;
  z-index: 1;
}
.auimgs div:nth-child(3) {
  top: 3%;
  left: 0;
  width: 52% !important;
  opacity: 0.5;
}
.auimgs div:nth-child(4) {
  bottom: -5%;
  right: -0.5%;
  width: 70% !important;
  opacity: 0.75;
}
@media (max-width:1110px) {
  .aboutus {
    padding: 60px 0 100px !important;
  }
  .aboutus .inner02 {
    width: 100% !important;
    margin: auto;
  }
  .aboutus .flexbox {
    display: block;
  }
  .aboutus .flexbox div {
    width: 100%;
  }
  .aboutus .mauto {
    width: 88% !important;
    margin: 0 auto 50px;
  }
  .auimgs::before {
    content: '';
    width: calc(100% - 15%);
    height: calc(100% - 15%);
    bottom: auto;
    right: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .auimgs {
    padding-top: 20vw;
    transform: scaleX(-1);
  }
  .auimgs div:nth-child(1), .auimgs div:nth-child(2) {
    transform: scaleX(-1);
  }
  .auimgs div:nth-child(1) {
    margin-top: 20vw;
  }
  .auimgs div:nth-child(3) {
    left: 1%;
  }
}
@media (max-width:750px) {
  .SP_displayContents .inner, .SP_displayContents .inner02 {
    display: flex;
    flex-direction: column;
  }
  .SP_displayContents .flexbox, .SP_dc {
    display: contents;
  }
  .SP_displayContents .SP_dc_title {
    order: -1;
  }
  .SP_dc_title.maintitle {
    margin-bottom: 35px !important;
  }
}
@media (max-width:550px) {
  .aboutus {
    padding: 45px 0 !important;
  }
  .aboutus .mauto {
    margin-bottom: 40px;
  }
}
/* おしながき　========================================*/
.osh_bg_white::after {
  content: '';
  width: calc(100% - 6%);
  height: calc(100% - 280px);
  max-width: 1400px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  pointer-events: none;
  z-index: -99;
}
/*flex*/
.osh_flex {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 10% 0;
}
.osh_flex .maintitle {
  order: 1;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  height: fit-content;
  margin: auto;
}
/*link*/
.osh_dc {
  display: contents;
}
.osh_link {
  width: 35%;
}
.osh_link:nth-child(1) {
  margin-top: -10%;
}
.osh_link:nth-child(2) {
  order: 2;
  margin-bottom: -10%;
}
.osh_link a {
  display: block;
  position: relative;
  padding-top: 37px;
}
.osh_link a::before {
  content: '';
  width: calc(100% + 35px);
  height: 100%;
  position: absolute;
  bottom: -17px;
  left: 50%;
  transform: translateX(-50%);
  border: 4px double #cc4333;
  border-top: none;
  z-index: -1;
}
/*title*/
.osh_link a h2 {
  z-index: 1;
  position: absolute;
  top: 0;
  left: -30px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: clamp(1.4rem, 1.04rem + 1.28vw, 2rem);
  color: #fff;
  padding: 17px 2px;
}
.osh_link a h2::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #cc4333;
  z-index: -2;
  transition: .4s all;
}
.osh_link a h2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url(../img/_bg/shippo.svg);
  background-size: 490px;
  background-repeat: repeat;
  background-position: center;
  opacity: 0.1;
  transition: .4s all;
  filter: invert(97%) sepia(78%) saturate(1057%) hue-rotate(320deg) brightness(102%) contrast(110%);
}
.osh_link a:hover h2 {
  color: #cc4333;
}
.osh_link a:hover h2::after {
  background: #fff;
}
.osh_link a:hover h2::before {
  filter: invert(37%) sepia(69%) saturate(1217%) hue-rotate(332deg) brightness(82%) contrast(96%);
  opacity: 0.07;
}
/**/
.osh_link a p {
  width: calc(100% + 21px);
  margin-bottom: 0;
  position: absolute;
  top: 0;
  right: -5px;
  color: #cc4333;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.osh_link a p::before {
  border-bottom: 4px double #cc4333;
  content: '';
  display: block;
  flex: 1;
  width: 3px;
  height: 100%;
  margin-right: 10px;
}
/*img*/
.osh_link a div {
  overflow: hidden;
}
.osh_link a img {
  object-fit: cover;
  width: 100%;
  height: 600px;
  transition: .6s;
}
.osh_link a:hover img {
  transform: scale(1.05);
}
@media (max-width: 1200px) {
  .osh_link a img {
    height: 50vw;
  }
}
@media (max-width: 750px) {
  .osh_bg_white::after {
    content: '';
    width: calc(100% - 11%);
    height: 500px;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
  }
  .osh_link a img {
    height: 85vw;
  }
  .oshinagaki .inner {
    width: 80%;
  }
  .osh_flex {
    display: block;
    padding: 0;
  }
  .osh_flex .maintitle {
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    margin-bottom: 30px;
  }
  .osh_link {
    width: 87%;
    margin: 0 0 45px !important;
  }
  .osh_link:last-of-type {
    margin-left: auto !important;
    margin-bottom: 0 !important;
  }
}
@media (max-width: 550px) {
  .osh_link:first-of-type {
    margin-left: 5px !important;
  }
  .osh_link:last-of-type {
    margin-right: -5px !important;
  }
  .osh_link a {
    padding-top: 28px;
  }
  .osh_link a::before {
    width: calc(100% + 20px);
    bottom: -11px;
  }
  .osh_link a h2 {
    left: -22px;
    padding: 10px 2px;
  }
  .osh_link a p {
    right: 0;
    font-size: 0.9rem;
  }
}
/* よろず屋 素泊まり　========================================*/
.roomonly {
  position: relative;
  z-index: 1;
  background: url(../img/stay.webp);
  background-size: cover;
  background-position: 70% 50%;
  background-attachment: fixed;
}
.roomonly, .roomonly span, .roomonly .mainbtn01 a {
  color: #fff !important;
}
/*Safari*/
_::-webkit-full-page-media, _:future, :root .roomonly {
  background-attachment: scroll;
}
.roomonly::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #111;
  opacity: 0.55;
  z-index: -1;
}
.roomonly::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url(../img/_bg/shippo.svg);
  background-size: 750px;
  background-repeat: repeat;
  opacity: 0.15;
  filter: brightness(0) invert(1);
}
/*text*/
/*
.roomonly .fitc {
  text-align: center;
}
@media (max-width: 1035px) {
  .roomonly .fitc {
    text-align: left;
  }
}
*/
@media (max-width: 750px) {
  .roomonly {
    background-attachment: scroll;
  }
}
/* よくある質問　========================================*/
.faq .accordion-title {
  line-height: 1.7;
}
.faq .accordion {
  margin-bottom: 15px;
}
/**/
.faq .accordion-title span {
  position: relative;
  padding-left: 35px;
  display: inline-block;
}
/*Q*/
.faq .accordion-title span::before {
  content: "Q";
  position: absolute;
  top: -0.15em;
  left: 0;
  color: #91a641;
}
.faq .accordion-title span::before, .faq .accordion-text::before {
  font-size: 1.5rem;
}
/*A*/
.faq .accordion-text {
  font-size: 100%;
  position: relative;
}
.faq .accordion-text p {
  padding-left: 30px;
}
.faq .accordion-text::before {
  content: "A";
  position: absolute;
  top: -7px;
  left: 0;
  color: #cc4333;
}
@media (max-width: 1280px) {
  .faq.flexbox {
    display: block;
  }
  .faq.flexbox div {
    width: 100%;
  }
}
@media (max-width: 550px) {
  .faq .accordion-title span::before, .faq .accordion-text::before {
    font-size: 1.2rem;
  }
  .faq .accordion-title span::before {
    top: -4px;
  }
  .faq .accordion-text::before {
    top: -5px;
  }
  .faq .accordion-title span, .faq .accordion-text p {
    padding-left: 26px;
  }
}
/*アコーディオン全体*/
.accordion {
  border-bottom: 1px solid rgba(0, 0, 0, 0.17);
}
/*アコーディオンタイトル*/
.accordion-title {
  position: relative;
  cursor: pointer;
  font-size: 1.3rem;
  transition: all .5s ease;
  line-height: 1.5;
  font-weight: 600;
  padding-bottom: 15px;
  padding-right: 23px;
}
/*アイコンの＋と×*/
.accordion-title::before {
  font-family: "Font Awesome 6 Free";
  content: "\2b";
  font-weight: bold;
  position: absolute;
  top: 12%;
  right: 0;
  line-height: 1;
  color: #9c9c9c;
  font-size: 90%;
}
/*　closeというクラスがついたら形状変化　*/
.accordion-title.close::before {
  content: "\f00d";
  font-size: 100%;
}
/*アコーディオンで現れるエリア*/
.accordion-text {
  display: none;
  background: transparent;
  padding-bottom: 13px;
  padding-right: 23px;
}
@media (max-width: 550px) {
  .accordion-title {
    font-size: 1rem;
  }
  .accordion-title::before, .accordion-title::after {
    width: 11px;
  }
  .privacy .accordion-title span {
    padding-left: 20px;
  }
}
/* 下層ページトップ ===========================================================================================================*/
.fv {
  padding: 220px 0 70px;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
.fv .inner {
  width: 97%;
}
.fv::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/fv.webp);
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: 35% 55%;
  z-index: -1;
}
/*おしながき／料理ページ*/
.fvfood.fv::after {
  background: url(../img/fvfood.webp);
  background-position: 50% 37% !important;
}
/*おしながき／ドリンクページ*/
.fvdrink.fv::after {
  background: url(../img/fvdrink.webp);
  background-position: 40% 55% !important;
}
/*店舗概要ページ*/
.fvabout.fv::after {
  background: url(../img/fvabout.webp);
  background-position: 40% 55% !important;
}
/*よろず屋素泊まり宿ページ*/
.fvstay.fv::after {
  background: url(../img/fvstay.webp);
  background-position: 50% 65% !important;
}
.fv::before {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #111;
  opacity: 0.5;
  z-index: 1;
}
.fv h2 {
  text-align: center;
  margin-bottom: 17px !important;
  font-size: clamp(2.3rem, 1.88rem + 1.4933vw, 3rem);
  line-height: 1.5;
  z-index: 1;
  position: relative;
  color: #fff;
  font-weight: 600;
}
@media(max-width:1050px) {
  .fv {
    padding: 160px 0 65px;
  }
}
@media(max-width:550px) {
  .fv {
    padding: 140px 0 30px;
  }
}
/* breadcrumb */
.binner {
  line-height: 1.4;
  width: 97%;
  font-size: clamp(1rem, 0.94rem + 0.2133vw, 1.1rem);
  position: relative;
  color: #fff;
}
.breadcrumb {
  z-index: 1;
  background: transparent;
  position: relative;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
}
.breadcrumb li {
  display: inline;
  list-style: none;
}
.breadcrumb li:after {
  content: '>';
  position: relative;
  top: -0.1em;
}
.breadcrumb li:last-child:after {
  content: none;
}
.breadcrumb li a {
  text-decoration: none;
  color: #fff;
}
.breadcrumb li:first-child a::before {
  font-family: "Font Awesome 6 Free";
  content: '\f015';
  font-weight: bold;
  font-size: 90%;
  position: relative;
  top: -0.05em;
}
/* お料理ページ =========================================================================================*/
/* 店長おすすめ料理 */
.recommendation::after {
  z-index: 1;
  pointer-events: none;
}
@media(max-width:1390px) {
  .recommendation::after {
    background-size: 26%;
  }
}
@media(max-width:750px) {
  .recommendation::after {
    background-size: 200px;
    z-index: -1;
  }
}
.img_greenbg {
  position: relative;
  text-align: right;
}
.img_greenbg img {
  width: 93%;
}
.img_greenbg::after, .img_greenbg::before {
  position: absolute;
  bottom: -45px;
  left: 0;
  width: 70%;
  height: 90%;
}
.img_greenbg::after {
  content: '';
  background: #91a641;
  pointer-events: none;
  z-index: -2;
}
.img_greenbg::before {
  content: "";
  position: absolute;
  background-image: url(../img/_bg/shippo.svg);
  background-size: 750px;
  background-repeat: repeat;
  opacity: 0.07;
  filter: invert(97%) sepia(78%) saturate(1057%) hue-rotate(320deg) brightness(102%) contrast(110%);
  pointer-events: none;
  z-index: -1;
}
@media(max-width:750px) {
  .img_greenbg img {
    width: 100%;
  }
  .img_greenbg::after, .img_greenbg::before {
    position: absolute;
    bottom: auto;
    top: -10px;
    left: -50px;
  }
  .recommendation .spmgb {
    margin-bottom: 10px;
  }
}
/**/
@media(max-width:420px) {
  .lunch {
    white-space: nowrap;
    font-size: 3.8vw;
    display: block;
  }
}
/* ドリンクページ =======================================================================================*/
/**/
.drinkimg {
  display: flex;
  flex-wrap: wrap;
  border: 2px solid #fff;
}
.drinkimg img {
  filter: brightness(110%);
  object-fit: cover;
  width: 50%;
  height: 300px;
  border: 1px solid #fff;
}
@media (max-width: 1340px) {
  .drinkimg img {
    height: 22.5vw;
  }
}
@media (max-width: 750px) {
  .drinkimg img {
    width: calc(100%/3);
    height: 40vw;
  }
}
/**/
.menuimg {
  max-width: 705px;
  margin: auto;
  margin-bottom: 95px;
  position: relative;
}
.menuimg:last-of-type {
  margin-bottom: 0 !important;
}
.yoko.menuimg {
  max-width: 970px;
}
.menuimg p {
  margin-bottom: 5px;
}
.menuimg p:last-of-type {
  margin-bottom: 40px;
}
@media(max-width:550px) {
  .menuimg::after {
    content: "※クリックすると拡大されます。";
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-top: 5px;
  }
  .menuimg .center {
    text-align: left;
  }
  .menuimg {
    margin-bottom: 65px;
  }
  .menuimg .maintitle {
    margin-bottom: 20px !important;
  }
  .menuimg p:last-of-type {
    margin-bottom: 25px;
  }
}
/* Instagram更新中 */
.insta_banner a {
  position: relative;
  max-width: 1000px;
  width: 95%;
  margin: auto;
  color: #333;
  background-image: url(../img/instagram.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center left;
  height: 360px;
  display: flex;
  align-items: center;
}
.insta_banner a::before {
  content: '';
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 4px double #91a641;
  pointer-events: none;
  z-index: -1;
}
.insta_banner a div {
  position: absolute;
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
  width: 350px;
  height: 90%;
  background: #91a641;
  display: flex;
  justify-content: center;
  align-self: center;
  flex-direction: column;
  padding: 20px;
  overflow: hidden;
}
.insta_banner a div::before, .insta_banner a div::after {
  pointer-events: none;
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../img/slide.svg);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 24%;
  z-index: -1;
  opacity: 0.5;
}
.insta_banner a div::after {
  transform: scaleX(-1) scaleY(-1);
}
.insta_banner a div h2::after, .insta_banner a div h2::before {
  content: '';
  width: calc(100% - 15px);
  height: calc(100% - 15px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -2;
}
.insta_banner a div h2::before {
  background: #fff;
}
.insta_banner a div h2::after {
  background-image: url(../img/_bg/bg.jpg);
  background-size: 1550px;
  background-repeat: repeat;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.4;
}
.insta_banner a div h2, .insta_banner a div p {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.insta_banner a div h2 {
  margin-bottom: 7px;
  font-size: clamp(1.3rem, 1.09rem + 0.7467vw, 1.65rem);
  font-weight: 600;
  color: #91a641;
}
.insta_banner a div i {
  position: absolute;
  bottom: 3px;
  font-size: 9rem;
  right: 10px;
  z-index: -1;
  pointer-events: none;
  color: #91a641;
  opacity: 0.15;
}
.insta_banner a img {
  width: 55%;
  margin: auto;
  display: block;
  margin-left: 3%;
  object-fit: contain;
  transition: .6s;
}
.insta_banner a:hover img {
  transform: scale(1.04);
}
/* red */
.red_banner.insta_banner a::before {
  border: 4px double #cc4333;
}
.red_banner.insta_banner a div {
  background: #cc4333;
}
.red_banner.insta_banner a div i, .red_banner.insta_banner a div h2 {
  color: #cc4333;
}
.red_banner.insta_banner a div i {
  opacity: 0.1;
}
@media(max-width:1100px) {
  .insta_banner a div {
    width: 41%;
  }
  .insta_banner a div p {
    text-align: left;
  }
  .insta_banner a img {
    width: 50%;
  }
}
@media(max-width:670px) {
  .insta_banner a div::before, .insta_banner a div::after {
    opacity: 0.2;
  }
  .insta_banner a {
    display: block;
    height: fit-content;
    padding: 20px 0 0;
  }
  .insta_banner a img {
    width: 93%;
    margin: auto;
  }
  .insta_banner a div {
    width: 100%;
    margin: auto;
    margin-top: 20px;
    position: initial;
    transform: translate(0, 0);
  }
  .insta_banner a div i {
    font-size: 6rem;
  }
}
/* 店舗概要ページ =======================================================================================*/
.about .inner {
  max-width: 1310px;
}
.abo_item {
  margin-bottom: 45px;
}
.abo_item:last-of-type {
  margin-bottom: 0 !important;
}
.abo_item div.abbg, .terrace {
  position: relative;
  padding: 24px;
}
.abo_item div.abbg::before, .terrace::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #fffaf0;
  pointer-events: none;
  z-index: -2;
}
.abo_item div.abbg::after, .terrace::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-image: url(../img/_bg/bg.jpg);
  background-size: 1550px;
  background-repeat: repeat;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.3;
  z-index: -1;
}
/**/
.abo_item div.abbg p {
  margin-bottom: 23px;
}
.abo_item div.abbg img {
  margin-top: auto;
}
/*テラス席*/
.terrace {
  padding-left: 0;
  padding-right: 0;
}
.terrace .mtitle {
  width: 96%;
  margin-left: auto;
  margin-right: auto;
}
.terrace .facility {
  margin-top: 0 !important;
}
.terrace .facility > div {
  width: 46%;
  margin: 0 2% 35px;
}
.terrace .facility > div:nth-last-child(2), .terrace .facility > div:last-of-type {
  margin-bottom: 0;
}
/**/
.terrace .facility > div p {
  border: 1px solid #91a641;
  background: #fff;
  color: #91a641;
}
@media(max-width:850px) {
  .abo_item {
    display: block;
  }
  .abo_item .w48 {
    width: 100%;
    margin-bottom: 45px;
  }
  .abo_item:last-of-type .w48:last-of-type {
    margin-bottom: 0 !important;
  }
}
@media(max-width:750px) {
  .abo_item {
    margin-bottom: 0;
  }
  .terrace .facility > div {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .terrace .mtitle {
    width: 100%;
  }
  .abo_item div.abbg, .terrace {
    padding: 20px;
  }
}
@media(max-width:550px) {
  .abo_item .w48, .terrace {
    margin-bottom: 20px;
  }
  .abo_item div.abbg, .terrace {
    padding: 13px;
  }
  .terrace .facility > div {
    margin-bottom: 25px !important;
  }
  .terrace .facility > div:last-of-type {
    margin-bottom: 10px !important;
  }
  .terrace .facility > div p {
    font-size: 1rem;
  }
}
/* 店舗概要 */
.ovebox {
  padding: 40px 40px 50px;
  position: relative;
}
@media(max-width: 550px) {
  .ovebox {
    padding: 15px 12px 25px;
  }
}
.ovebox::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  pointer-events: none;
  z-index: -2;
}
.ovebox::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-image: url(../img/_bg/bg.jpg);
  background-size: 1550px;
  background-repeat: repeat;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.3;
  z-index: -1;
}
/**/
.overview .inner {
  max-width: 1250px;
}
/*img*/
.twflex {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 30px;
}
.twflex div {
  width: 48.5%;
  position: relative;
}
.twflex div:last-child {
  top: 20px;
}
@media(max-width: 750px) {
  .twflex {
    margin-bottom: 20px;
  }
}
@media(max-width: 550px) {
  .twflex {
    margin-bottom: 10px;
  }
  .twflex div {
    width: 48%;
  }
  .twflex div:first-child {
    top: -7px;
  }
  .twflex div:last-child {
    top: 7px;
  }
}
/*table*/
.info_table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.info_table tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.info_table th {
  background: transparent;
  width: 35%;
}
.info_table th, .info_table td {
  font-weight: 700;
  padding: 23px 0;
}
.info_table td {
  padding-left: 10px;
  padding-right: 10px;
  width: 65%;
  background: transparent;
}
@media(max-width: 750px) {
  .info_table tr {
    border-bottom: none;
  }
  .info_table td {
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    margin-bottom: 0;
  }
  .info_table td, .info_table th {
    width: 100%;
    padding: 8px 0 18px;
    display: block;
  }
  .info_table th {
    text-align: left;
    padding-bottom: 0;
    padding-top: 13px;
  }
}
/* アクセス */
.map iframe {
  width: 100%;
  height: 450px;
}
@media(max-width: 550px) {
  .map iframe {
    height: 280px;
  }
}
/* お問い合わせページ ====================================================================================*/
.contact_sec section .inner {
  max-width: 1050px;
}
/*予約についての注意事項*/
.contop.fcbox {
  padding: 40px 25px 50px;
}
.contop.fcbox .fitc {
  margin-bottom: 0 !important;
}
.contop.fcbox.wf::before, .contop.fcbox.wf::after, .contop.fcbox .wf_in::before, .contop.fcbox .wf_in::after {
  background: #db9a30;
  opacity: 0.45;
}
.contop.fcbox p, .contop.fcbox h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 120%;
  font-weight: 600;
}
.contop.fcbox .red {
  margin-bottom: 12px;
}
/*list*/
.acheck li {
  padding-left: 21px;
  position: relative;
}
.acheck li::before {
  font-family: "Font Awesome 6 Free";
  content: "\f058";
  font-weight: bold;
  display: inline-block;
  color: #91a641;
  font-size: .9em;
  position: absolute;
  top: 0.15em;
  left: 0;
}
/*dots*/
.dots.acheck li {
  padding-left: 13px;
}
.dots.acheck li::before {
  content: "\f111";
  font-size: .3em;
  top: 2.25em;
}
/**/
.contop.fcbox .acheck li {
  border-bottom: 1px dotted #c4c4c4;
  padding-bottom: 5px;
  margin-bottom: 5px;
}
@media(max-width:550px) {
  .contop.fcbox p, .contop.fcbox h2 {
    text-align: left;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    font-size: 105%;
    margin-bottom: 12px;
  }
  .contop.fcbox .red {
    margin-bottom: 10px;
  }
  .contop.fcbox {
    padding: 28px 20px;
  }
}
@media(max-width:480px) {
  .contop.fcbox h2 {
    white-space: nowrap;
    font-size: 3.7vw;
  }
}
/* 電話・FAX */
/*box*/
.telbox {
  position: relative;
  padding: 30px;
}
.telbox::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #fffaf0;
  pointer-events: none;
  z-index: -2;
}
.telbox::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-image: url(../img/_bg/bg.jpg);
  background-size: 1550px;
  background-repeat: repeat;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.3;
  z-index: -1;
}
@media (max-width:750px) {
  .telbox {
    margin-bottom: 10px;
  }
  .telbox:last-child {
    margin-bottom: 0;
  }
}
@media (max-width:550px) {
  .telbox {
    padding: 17px;
  }
}
/* 番号 */
.telbox a {
  font-size: clamp(1.6rem, 1.48rem + 0.4267vw, 1.8rem);
  color: #333;
  font-weight: 600;
}
.telbox a i {
  color: #cc4333;
}
.telbox a:hover {
  opacity: 0.6;
}
.telwrap {
  margin-top: 0 !important;
}
.telwrap p {
  margin-top: 5px;
  margin-bottom: 0;
}
.telwrap p .red {
  margin-right: 10px;
}
/*fax*/
.telboxwrap {
  margin-top: 50px;
}
.telboxwrap .telbox a {
  margin-right: 40px;
}
.telboxwrap .telbox p {
  margin-bottom: 4px;
}
.telboxwrap .telbox p i {
  color: #cc4333;
}
.telboxwrap .telbox {
  display: flex;
  align-items: center;
}
.fcheck {
  display: flex;
}
.fcheck li {
  padding-left: 18px;
  margin-right: 20px;
  position: relative;
}
.fcheck li:last-child {
  margin-right: 0;
}
.fcheck li::before {
  font-family: "Font Awesome 6 Free";
  content: "\f14a";
  font-weight: bold;
  display: inline-block;
  color: #cc4333;
  font-size: .9em;
  position: absolute;
  top: 0.15em;
  left: 0;
}
@media (max-width: 965px) {
  .telboxwrap .telbox {
    display: block;
  }
  .telboxwrap .telbox a {
    margin-right: 0;
  }
  .telboxwrap .telbox p {
    margin-top: 7px;
  }
}
@media (max-width:550px) {
  .telboxwrap .telbox p, .fcheck li {
    font-size: 90%;
  }
}
@media (max-width: 500px) {
  .telboxwrap .telbox {
    display: block;
  }
  .telboxwrap .telbox p {
    margin-bottom: 7px;
  }
  .fcheck {
    display: block;
  }
  .fcheck li {
    margin-right: 0;
  }
}
/* メール */
#email {
  position: relative;
  top: -170px;
}
@media(max-width:1050px) {
  #email {
    top: -120px;
  }
}
.mails_items {
  margin-top: 65px;
}
/**/
.mnote {
  text-align: center;
  width: fit-content;
  margin: auto;
  margin-top: 50px;
}
@media(max-width:1050px) {
  .mnote {
    text-align: left;
  }
  .mnote br {
    display: none;
  }
}
@media(max-width:550px) {
  .mnote {
    margin-top: 40px;
  }
}
.mailform .row {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
}
.mailform .row:not(.last) {
  border-bottom: 0.9px dotted #333;
}
.mailform .row div {
  text-align: left;
}
.mailform .row div:nth-child(1) {
  width: 28%;
}
.mailform .row div:nth-child(2) {
  width: 70%;
  line-height: 1.5;
}
.mailform .row span {
  color: #fff;
  background: #91a641;
  padding: 6px 5px 5px;
  margin-right: 5px;
  font-size: 12px;
}
.mailsp {
  background: #fff !important;
  border: 1px solid #91a641;
  color: #91a641 !important;
}
.mailform .row small {
  display: block;
  margin-top: 3px;
}
.mailform .box, .mailform textarea {
  border: 1px solid #ddd;
  padding: 5px;
  width: 100% !important;
  border-radius: 0;
  -webkit-appearance: none;
  margin-bottom: 5px;
  background: #fff;
}
.mailform button {
  display: block;
  text-align: center;
  margin: 0 auto;
  white-space: nowrap;
  color: #fff;
  background: #91a641;
  border: 1px solid #91a641;
  width: 260px;
  padding: 24px 0;
  transition: .4s;
  margin-top: 20px;
}
.mailform button:hover {
  background: #fff;
  color: #91a641;
}
.mailform button::before {
  font-family: "Font Awesome 6 Free";
  content: "\f0e0";
  font-weight: bold;
  margin-right: 10px;
}
.mails {
  padding-bottom: 50px;
}
/*チェックボックス*/
.mailform input[type=checkbox] {
  display: none;
}
.mailform input[type=checkbox] + label {
  display: inline-block;
  padding-left: 20px;
  position: relative;
  margin-right: 20px;
  margin-bottom: 10px;
  cursor: pointer;
}
.mailform input[type=checkbox] + label::before {
  background: #fff;
  border: 1px solid #b5b5b5;
  content: '';
  display: block;
  position: absolute;
  top: 55%;
  transform: translate(0, -50%);
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 3px;
}
.mailform input[type=checkbox] + label::after {
  border-right: 3px solid #91a641;
  border-bottom: 3px solid #91a641;
  content: '';
  display: block;
  height: 13px;
  width: 7px;
  opacity: 0;
  position: absolute;
  top: 25%;
  left: 4px;
  transform: rotate(45deg);
  transition: .1s;
}
.mailform input[type=checkbox]:checked + label::after {
  opacity: 1;
}
@media (max-width: 550px) {
  .mailform input[type=checkbox] + label {
    display: block;
  }
}
@media (max-width: 830px) {
  .mailform .row {
    padding: 20px 0;
    flex-direction: column;
  }
  .mailform .row div:nth-child(1) {
    width: 100%;
    margin-bottom: 20px;
  }
  .mailform .row div:nth-child(2) {
    width: 100%;
  }
}
@media (max-width: 550px) {
  .mails {
    padding-bottom: 35px;
  }
  .mails_items {
    margin-top: 40px;
  }
  .mailform button {
    width: 220px;
    padding: 17px 0;
  }
  .selection small {
    font-size: 0.8rem;
  }
}
/* 個人情報の取り扱いについて */
.privacy {
  padding-top: 0;
}
/*アコーディオンタイトル*/
.privacy .accordion-title {
  font-size: clamp(1.05rem, 0.78rem + 0.96vw, 1.5rem);
}
.privacy .accordion-title span {
  position: relative;
  padding-left: 27px;
  display: inline-block;
}
.privacy .accordion-title span::before {
  font-family: "Font Awesome 6 Free";
  content: "\f023";
  font-weight: bold;
  margin-right: 10px;
  font-size: 80%;
  position: absolute;
  top: 0.15em;
  left: 0;
  color: #cc4333;
}
.accordion-text span::before {
  content: "■";
  display: inline-block;
  font-size: 0.7rem;
  margin-right: 0.35em;
  transform: translateY(-3px);
  color: #cc4333;
}
@media (max-width: 550px) {
  .privacy .accordion-title::before, .privacy .accordion-title::after {
    width: 11px;
  }
  .privacy .accordion-title span {
    padding-left: 20px;
  }
  .privacy .accordion-text {
    font-size: 93%;
  }
}
/* よろず屋素泊まり宿ページ =================================================================================*/
.guide .inner {
  max-width: 1500px;
}
@media (max-width: 550px) {
  .guide .spmgb {
    margin-bottom: 25px;
  }
}
.guide .inner.faci {
  width: 95%;
}
.guide .fitc {
  text-align: center;
}
.fee {
  margin-top: 17px;
  text-align: center;
  font-size: clamp(1.15rem, 1rem + 0.5333vw, 1.4rem);
  white-space: nowrap;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.17);
}
.fee span {
  font-size: 130%;
  color: #cc4333;
}
/*各画像*/
.facility {
  margin-top: 65px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.facility > div {
  width: 30.3%;
  margin: 0 1.5% 0;
}
.facility > div img {
  width: 100%;
}
.facility > div p {
  padding: 3px 15px 7px;
  font-size: clamp(1.25rem, 1.1rem + 0.5333vw, 1.5rem);
  width: 90%;
  max-width: fit-content;
  margin-top: -35px;
  margin-left: -7px;
  position: relative;
  z-index: 1;
  background: #91a641;
  color: #fff;
  margin-bottom: 0;
}
@media(max-width:750px) {
  .guide .inner {
    width: 88%;
  }
  .facility {
    display: block;
  }
  .facility > div {
    width: 100%;
    margin: 0 0 27px;
  }
  .facility > div:last-of-type {
    margin-bottom: 0 !important;
  }
}
@media(max-width:550px) {
  .fee {
    margin-top: 10px;
  }
  .facility {
    margin-top: 50px;
  }
}
/* 各室内設備 */
.equipments {
  display: flex;
}
.equipments .maintitle {
  white-space: nowrap;
  margin-right: 80px;
}
/*list*/
.equipments ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.equipments ul li {
  padding: 10px;
  background: #fff;
  width: 49%;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
.equipments ul li span {
  position: relative;
  display: inline-block;
  padding-left: 21px;
}
.equipments ul li span::before {
  font-family: "Font Awesome 6 Free";
  content: "\f058";
  font-weight: bold;
  display: inline-block;
  color: #91a641;
  font-size: .9em;
  position: absolute;
  top: 0.15em;
  left: 0;
}
@media(max-width:750px) {
  .equipments {
    display: block;
  }
  .equipments .maintitle {
    white-space: normal;
    margin-right: 0;
  }
  .equipments ul {
    display: block;
  }
  .equipments ul li {
    width: 100%;
    margin-bottom: 10px;
  }
  .equipments ul li:last-of-type {
    margin-bottom: 0 !important;
  }
}
/* フィルター */
.disabled_wrap {
  position: relative;
}
.disabled_wrap::before {
  content: '';
  width: 100.5%;
  height: 102%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  background: rgba(255, 255, 255, 0.65);
}
.disabled_wrap div {
  overflow: hidden;
  filter: blur(3px);
}
.disabled_wrap .disabled_text {
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  padding: 0 8px;
  z-index: 2;
  font-weight: 600;
  font-size: clamp(1.8rem, 1.08rem + 2.56vw, 3rem);
  line-height: 1.6;
  color: #91a641;
}
@media (max-width: 750px) {
  .disabled_wrap .disabled_text {
    top: 40px;
  }
}







/* 250528 更新分 ==========================================================================*/
/* 店舗概要ページ */
/*slider*/
.newmember {
  width: 92%;
  margin: auto;
}
.newmember li {
  margin: 0 10px;
}
/*arrow*/
.newmember .slick-prev, .newmember .slick-next {
  width: 40px;
  height: 40px;
}
.newmember .slick-prev::before, .newmember .slick-next::before {
  font-size: clamp(1.85rem, 1.46rem + 1.3867vw, 2.5rem);
  color: #91a641;
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, 0px 1px 0 #fff, 0 -1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff;
  opacity: 1 !important;
}
.newmember .slick-prev {
  z-index: 1;
  left: -3.5%;
}
.newmember .slick-next {
  right: -3.5%;
}
@media (max-width:1030px) {
  .newmember {
    width: 100%;
  }
  .newmember .slick-prev {
    left: 15px;
  }
  .newmember .slick-next {
    right: 15px;
  }
}
@media (max-width:550px) {
  .newmember .slick-prev, .newmember .slick-next {
    width: 22px;
    height: 22px;
  }
}
/* よろず屋素泊まり宿ページ */
.facility > div {
  margin-bottom: 30px;
}
@media (max-width: 750px) {
  .facility > div:last-of-type {
    margin-bottom: 0 !important;
  }
  .guide .inner.faci {
    width: 88%;
  }
}
/*slider*/
.contents_slider li {
  display: block;
  position: relative;
  overflow: hidden;
  min-height: 0%;
  width: 100%;
  transition: .6s all;
}
.contents_slider li::before {
  content: '';
  display: block;
  padding-top: 80%;
}
.contents_slider li img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/**/
.contents_slider .slick-prev:before, .contents_slider .slick-next:before {
  color: #91a641;
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, 0px 1px 0 #fff, 0 -1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff;
  opacity: 1;
  font-size: clamp(1.65rem, 1.59rem + 0.2133vw, 1.75rem);
}
.contents_slider button.slick-prev {
  left: 7px !important;
  z-index: 3 !important;
}
.contents_slider button.slick-next {
  right: 14px !important;
  z-index: 3 !important;
}
@media (max-width: 550px) {
  .contents_slider button.slick-prev {
    left: 5px !important;
  }
  .contents_slider button.slick-next {
    right: 11px !important;
  }
}