@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap");
/* ====================================================
	breakpoint
==================================================== */
:root {
  --black: #333333;
  --white: #fff;
  --orange: #F08106;
  --orange_fa: #fa5d00;
  --orange_ff: #ff6600;
}

.color-orange {
  color: var(--orange);
}

.color-orange_fa {
  color: var(--orange_fa);
}

.noto-serif-jp-extralight {
  font-family: "Noto Serif JP", serif;
  font-weight: 200;
  font-style: normal;
}

.noto-serif-jp-light {
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  font-style: normal;
}

.noto-serif-jp-regular {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
}

.noto-serif-jp-medium {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-style: normal;
}

.noto-serif-jp-semibold {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-style: normal;
}

.noto-serif-jp-bold {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-style: normal;
}

.noto-serif-jp-black {
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  font-style: normal;
}

html {
  overflow-y: scroll;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 62.5%;
  font-weight: 400;
  background-color: var(--white);
  color: var(--black);
}

body {
  font-size: 1.6rem;
  line-height: 1.6;
  overflow: hidden;
  background-color: #FAF8F4;
}
@media screen and (max-width: 767px) {
  body {
    min-width: initial;
  }
}

a {
  color: var(--black);
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  img {
    width: 100%;
  }
}

a,
a img,
.is-hover06,
.is-hover08 {
  transition: all 0.3s ease-out;
  cursor: pointer;
}

a:hover,
a:hover > span {
  text-decoration: underline;
}

.clear_box::after {
  content: "";
  display: block;
  clear: both;
}

.is-hover06,
.is-hover08 {
  text-decoration: none !important;
}
.is-hover06 *,
.is-hover08 * {
  text-decoration: none !important;
}
.is-hover06 img,
.is-hover08 img {
  opacity: 1 !important;
}

@media (hover: hover) and (pointer: fine) {
  a img:hover,
  .is-hover06:hover,
  .is-hover08:hover {
    opacity: 0.65 !important;
  }
}
.is-hover06 img,
.is-hover08 img {
  opacity: 1 !important;
}

.is-pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}

.is-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .is-sp {
    display: block;
  }
}

.alignleftFixed {
  float: left;
  margin-right: 16px;
}

.is-relative {
  position: relative;
}

.weight_500 {
  font-weight: 500;
}

.mt-1em {
  margin-top: 1em;
}

.mt-2em {
  margin-top: 2em;
}

.mt-3em {
  margin-top: 3em;
}

.mt-4em {
  margin-top: 4em;
}

.cmn__wrap {
  position: relative;
}

.cmn__inner {
  position: relative;
  max-width: 640px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .cmn__inner {
    padding: 0 2vw;
  }
}

/* ====================================================
	header
==================================================== */
header {
  background-color: var(--white);
  border-top-width: 4px;
  border-color: var(--orange);
  border-style: solid;
  box-shadow: 0 3px 3px 0 rgba(118, 118, 118, 0.1);
}
@media screen and (max-width: 767px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.8);
    border: 0;
  }
}

.hd__inner {
  position: relative;
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .hd__inner {
    padding: 0 0 0 0.7vw;
  }
}
.hd__inner .is-w1200 {
  display: block;
}
@media screen and (max-width: 1199px) {
  .hd__inner .is-w1200 {
    display: none;
  }
}
.hd__inner .is-w1200 .hd__txt {
  font-size: 14px;
}
.hd__inner .is-w1200 .hd__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hd__inner .is-w1200 .hd__detail {
  display: flex;
  align-items: center;
}
.hd__inner .is-w1200 .hd__tel {
  margin-left: 20px;
}
.hd__inner .is-w1999 {
  display: none;
}
@media screen and (max-width: 1199px) {
  .hd__inner .is-w1999 {
    display: block;
  }
}
.hd__inner .is-w1999 .hd__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .hd__inner .is-w1999 .hd__logo {
    width: 48vw;
  }
}
.hd__inner .is-w1999 .hd__tel {
  width: 165px;
}
@media screen and (max-width: 767px) {
  .hd__inner .is-w1999 .hd__tel {
    width: 26vw;
  }
}
.hd__inner .is-w1999 .hd__tel img {
  width: 100%;
}

/* ====================================================
	footer
==================================================== */
footer {
  background-color: var(--white);
}

.ft__inner {
  position: relative;
  max-width: 1300px;
  margin: auto;
  padding: 30px 20px 40px;
}

.ft__logo {
  width: 60vw;
  display: inline-block;
}

.copyright {
  background-color: var(--orange);
  color: var(--white);
  text-align: center;
  font-size: 12px;
  padding: 10px 0;
  line-height: 1;
}

#pageTop {
  display: none;
  position: fixed;
  bottom: 10px;
  right: 10px;
}
@media screen and (max-width: 767px) {
  #pageTop {
    width: 70px;
  }
}

/* ====================================================
	content
==================================================== */
#content {
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  #content {
    padding-top: 16.7vw;
  }
}

.fv__inner {
  position: relative;
  max-width: 1340px;
  margin: auto;
}

.cmn__txt {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 28px;
  text-align: center;
}

#trouble {
  text-align: center;
}

#feature .troubleList li {
  margin-top: 3em;
}

#effect .effectList li {
  background-color: var(--white);
  padding: 30px 40px;
  border-style: solid;
  border-color: #f0e7d9;
  border-width: 2px;
  text-align: center;
}
#effect .effectList li + li {
  margin-top: 1em;
}
#effect .effectItem-txt {
  margin-top: 1em;
}
#effect .effectItem-note {
  color: #a2a2a2;
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  #aboutUs .aboutUs__img {
    width: 146px;
  }
}
#aboutUs .aboutUs__txt {
  line-height: 1.64;
}
#aboutUs .aboutUs__txt p + p {
  margin-top: 1em;
}

/* ----------------------------------------------------
	店舗一覧
---------------------------------------------------- */
#accessList {
  padding-top: 2em;
}
@media screen and (max-width: 767px) {
  #accessList .cmn__txt {
    font-size: 20px;
  }
}
#accessList .access__none {
  text-align: center;
  margin-top: 1em;
}
#accessList .access__none .is-attention {
  font-weight: 500;
  background-color: #fce138;
}
#accessList .access__tabTtl {
  position: relative;
  font-weight: 600;
  color: var(--orange_ff);
  font-size: 18px;
  text-align: center;
  margin-top: 24px;
}
#accessList .access__tabTtl > span {
  position: relative;
  padding: 0 2rem;
}
#accessList .access__tabTtl > span::before, #accessList .access__tabTtl > span::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background-color: var(--orange_ff);
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
#accessList .access__tabTtl > span::before {
  left: 0;
  transform: translateY(-50%) rotate(-30deg);
}
#accessList .access__tabTtl > span::after {
  right: 0;
  transform: translateY(-50%) rotate(30deg);
}
#accessList .access__tabHeader {
  display: flex;
  flex-wrap: wrap;
  /* background: rebeccapurple; */
  gap: 0.5rem;
  margin-top: 24px;
}
#accessList .access__tabHeader li {
  cursor: pointer;
  border-style: solid;
  border-width: 0.2rem;
  border-color: #F3A81C;
  background-color: #f8cd2f;
  background-image: linear-gradient(360deg, #f8cd2f, #f4ae1f);
  font-weight: 600;
  font-size: 1.6rem;
  padding: 0.2rem 1rem;
  width: calc(33.3333333333% - 2rem - 0.4rem - 0.3333333333rem);
  /* width: calc((100% / 3) - (1rem * 2) - (1rem / 3)); */
  text-align: center;
}
#accessList .access__tabHeader li.is-active {
  border-color: #f08106;
  background-color: #ffad18;
  background-image: linear-gradient(360deg, #ffad18, #f08106);
}
#accessList .access__tabBody-smallArea--header {
  margin: 18px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
}
#accessList .access__tabBody-smallArea--header > a {
  position: relative;
  text-decoration: underline;
}
#accessList .access__tabBody-smallArea--header > a > img {
  margin-bottom: initial;
  width: 24px;
}
#accessList .access__tabBody-smallArea--body .access__tabBody-smallArea--label {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  background-color: #f4f4f4;
  padding: 0.7rem 1rem 0.6rem;
  border: solid 1px #ddd;
}
#accessList .access__tabBody-smallArea--body .access__tabBody-smallArea--label .is-txt {
  font-weight: 600;
}
#accessList .access__tabBody-smallArea--body .access__tabBody-smallArea--label > a {
  font-size: 14px;
}
#accessList .access__tabBody-smallArea--body .access__tabBody-smallArea--label > a > img {
  margin-bottom: initial;
  width: 24px;
  transform: rotate(180deg);
}
#accessList .access__tabBody-smallArea--body .accessInfo {
  margin: 2rem 0;
}
#accessList .access__tabBody-smallArea--body h3 {
  padding: 6px 15px;
  background-color: #f29f05;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
}
#accessList .access__tabBody-smallArea--body dl {
  display: flex;
  background-color: #fff;
  font-size: 14px;
}
#accessList .access__tabBody-smallArea--body dl + dl {
  border-top: solid 1px #ddd;
}
#accessList .access__tabBody-smallArea--body dl:first-of-type {
  margin-top: 10px;
}
#accessList .access__tabBody-smallArea--body dl dt {
  padding: 12px 10px 12px 15px;
  max-width: 14%;
  width: 100%;
  background-color: #f4f4f4;
}
@media screen and (max-width: 767px) {
  #accessList .access__tabBody-smallArea--body dl dt {
    max-width: 25%;
    padding: 12px 10px;
  }
}
#accessList .access__tabBody-smallArea--body dl dd {
  padding: 12px 15px 12px 10px;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  #accessList .access__tabBody-smallArea--body .accessInfo .accessInfo__reservation {
    justify-content: center;
  }
  #accessList .access__tabBody-smallArea--body .accessInfo .accessInfo__reservation dt {
    display: none;
  }
  #accessList .access__tabBody-smallArea--body .accessInfo .accessInfo__reservation dd {
    padding: 12px 0;
  }
}
#accessList .access__tabBody-smallArea--body .accessInfo .btnBox {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.7rem;
}
@media screen and (max-width: 767px) {
  #accessList .access__tabBody-smallArea--body .accessInfo .btnBox {
    flex-direction: column;
    gap: 1.4rem;
    align-items: center;
    width: -moz-fit-content;
    width: fit-content;
    margin: 1.7rem auto;
  }
}
#accessList .access__tabBody-smallArea--body .accessInfo .btnBox a {
  position: relative;
  color: #000;
  font-weight: 500;
  text-decoration: none;
  border-radius: 2em;
  padding: 1.2rem 3.7rem 1.2rem 1.6rem;
  display: inline-block;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  #accessList .access__tabBody-smallArea--body .accessInfo .btnBox a {
    text-align: center;
    width: calc(100% - 5.3rem);
  }
}
#accessList .access__tabBody-smallArea--body .accessInfo .btnBox a::after {
  content: "";
  width: 17px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  right: 1.2rem;
  transform: translateY(-50%);
  background-image: url(/img/icon_extLink.png?version=251020_03);
  background-size: contain;
  margin-top: 1px;
}
#accessList .access__tabBody-smallArea--body .accessInfo .btnBox a.is-hp {
  border: solid 3px #44B531;
}
#accessList .access__tabBody-smallArea--body .accessInfo .btnBox a.is-hp::after {
  background-image: url(/img/icon_open_in_new_wght700_green.png);
}
#accessList .access__tabBody-smallArea--body .accessInfo .btnBox a.is-reserve {
  border: solid 3px #EA4335;
}
#accessList .access__tabBody-smallArea--body .accessInfo .btnBox a.is-reserve::after {
  background-image: url(/img/icon_open_in_new_wght700_red.png);
}
#accessList .access__tabBody-smallArea--labelBottom {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background-color: #f4f4f4;
  padding: 0.7rem 1rem 0.6rem;
  border: solid 1px #ddd;
}
#accessList .access__tabBody-smallArea--labelBottom > img {
  margin-bottom: initial;
  width: 24px;
  transform: rotate(180deg);
}/*# sourceMappingURL=style.css.map */