@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@300;400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@100;300;400;500;700;800;900&display=swap");
/* 色の指定
////////////////////////////////////////////////////////////////////////////////////////////////// */
:root {
  --col--main-01: #ff6d01;
  --col--main-02: #ff8711;
  --col--main-03: #ffdeae;
  --col--main-04: #fff2df;
  --col--acc-y-01: #ffe96c;
  --col--acc-y-02: #fff4c1;
  --col--acc-y-03: #fffbe7;
  --col--acc-g-01: #72c359;
  --col--acc-g-02: #dceca1;
  --col--acc-g-03: #f7ffd9;
  --col--acc-r-01: #ff7878;
  --col--acc-r-02: #ffdbdb;
  --col--acc-v-01: #a274ff;
  --col--acc-v-02: #e8dbff;
  --col--acc-b-01: #4cacff;
  --col--acc-b-02: #c7f0ff;
  --col--base-01: #fff;
  --col--txt-01: #4c4237;
  --col--line: #06c755;
  --col--fil-white: brightness(0) saturate(100%) invert(96%) sepia(100%) saturate(12%) hue-rotate(237deg) brightness(103%) contrast(103%);
  --col--fil-black: brightness(0) saturate(100%) invert(0%) sepia(2%) saturate(26%) hue-rotate(301deg) brightness(93%) contrast(100%);
}

/* フォントの指定
////////////////////////////////////////////////////////////////////////////////////////////////// */
:root {
  /*　基礎フォント
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  --fot--Noto-Serif: "Noto Serif JP", serif;
  --fot--Noto-Sans: "Noto Sans JP", sans-serif;
  --fot--Meiryo: "メイリオ", "Meiryo", "Noto Sans JP", sans-serif;
  --fot--Yu-Go: "游ゴシック体", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
  --fot--Yu-Go-UI: "Yu Gothic UI", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
  --fot--Yu-Min: "游明朝体", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
  --fot--Shirokuma: "Shirokuma", ;
  --fot--M_PLUS: "M PLUS 1p", "Noto Sans JP", sans-serif;
  --fot--M_PLUS_R_1c: "M PLUS Rounded 1c", "M PLUS 1p", "Noto Sans JP", sans-serif;
  --Kiwi-Maru: "Kiwi Maru", "Noto Serif JP", serif;
  /*　Google fonts
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  /*　フリーフォント
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
}

/* 初期設定
////////////////////////////////////////////////////////////////////////////////////////////////// */
:root {
  /* デフォルトフォント設定
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  --def-font-size: var(--font-size-16);
  --def-font-family: var(--fot--Noto-Sans);
  --def-font-color: var(--col--txt-01);
  --def-font-weight: 400;
  --def-font-lh: 1;
  --def-font-ls: unset;
  /* 文章(p)の設定
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  --def-p-lh: calc(30/16);
  --def-p-margin: var(--margin-20);
  /* 各セクションinboxのデフォルトpadding
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  --def-inbox: 100px 0;
}

body {
  font-size: var(--def-font-size);
  font-family: var(--def-font-family);
  color: var(--def-font-color);
  font-weight: var(--def-font-weight);
  line-height: var(--def-font-lh);
  letter-spacing: var(--def-font-ls);
}

.inner {
  width: 1080px;
  margin: 0 auto;
  padding: var(--def-inbox);
}
@media screen and (max-width: 767px) {
  .inner {
    width: 90%;
    padding: 15vw 0;
  }
}

.com--text-01 p {
  line-height: var(--def-p-lh);
  margin-bottom: var(--def-p-margin);
}
.com--text-01 p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .com--text-01 p {
    line-height: 2;
    margin-bottom: 3.6vw;
  }
}

/* 共通パーツの設計
////////////////////////////////////////////////////////////////////////////////////////////////// */
/* tel 電話番号 */
/*　- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
.com--tel {
  --font-size: var(--font-size-40);
  --color: inherit;
  --font-weight: 700;
  --font-size-small: inherit;
  --color-small: inherit;
  --font-weight-small: inherit;
  --gap: 0px;
  font-family: var(--fot--M_PLUS_R_1c);
  /* --------------------------------- */
  position: relative;
  width: fit-content;
  font-size: var(--font-size);
  color: var(--color);
  font-weight: var(--font-weight);
  gap: var(--gap);
}
.com--tel dt {
  font-size: var(--font-size-17);
  background: var(--col--acc-y-01);
  font-weight: 800;
  width: fit-content;
  border-radius: 10px;
  margin: 0 auto;
  margin-bottom: var(--margin-10);
  height: fit-content;
  padding: 10px 12px;
  position: relative;
}
.com--tel dt::before {
  --width: 11px;
  --height: 9px;
  --color: var(--col--acc-y-01);
  left: 50%;
  translate: -50% 100%;
  bottom: 0;
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: var(--color) transparent transparent transparent;
  border-width: var(--height) calc((var(--width)) / 2) 0px calc((var(--width)) / 2);
}
.com--tel dt .str-01 {
  font-size: var(--font-size-22);
  color: var(--col--main-02);
}
.com--tel .tel-num {
  position: relative;
  width: fit-content;
  letter-spacing: 0;
  padding-left: 30px;
}
.com--tel .tel-num::before {
  content: "";
  position: absolute;
  background: url(../img/common/icon__tel__a_01.png) center center/contain no-repeat;
  width: 23px;
  height: 30px;
  top: 55%;
  left: 0;
  translate: 0 -50%;
}
.com--tel small {
  font-size: var(--font-size-small);
  color: var(--color-small);
  font-weight: var(--font-weight-small);
}
.com--tel .tel-attention {
  display: block;
  position: relative;
  width: fit-content;
  height: var(--font-size-14);
}
@media screen and (max-width: 767px) {
  .com--tel {
    --font-size: 7vw;
  }
  .com--tel .tel-num {
    padding-left: 7.2vw;
  }
  .com--tel .tel-num::before {
    width: 6vw;
    height: 6vw;
  }
  .com--tel .tel-attention {
    height: 3vw;
  }
}

.com--tel.white {
  --color: #fff;
  --color-small: #fff;
}

/* times 営業時間・定休日 */
/*　- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
.com--times {
  --font-size: var(--font-size-16);
  --color: var(--col--txt-01);
  --background: inherit;
  --gap: 20px;
  --gap-item: 10px;
  /* --------------------------------- */
  --font-size-dt: inherit;
  --font-size-dd: inherit;
  --width-dt: fit-content;
  --width-dd: fit-content;
  --color-dt: inherit;
  --color-dd: inherit;
  --background-dt: inherit;
  --background-dd: inherit;
  /* --------------------------------- */
  position: relative;
  width: fit-content;
  font-size: var(--font-size);
  color: var(--color);
  gap: var(--gap);
}
.com--times-item {
  position: relative;
  width: fit-content;
  gap: var(--gap-item);
}
.com--times dt {
  position: relative;
  width: var(--width-dt);
  font-size: var(--font-size-dt);
  color: var(--color-dt);
  background: var(--background-dt);
  border-radius: 12px;
  padding: 3px 8px;
  font-size: var(--font-size-15);
  font-weight: 700;
}
.com--times dd {
  position: relative;
  width: var(--width-dd);
  font-size: var(--font-size-dd);
  color: var(--color-dd);
  background: var(--background-dd);
  font-size: var(--font-size-15);
  font-weight: 700;
}
.com--times-morning dt {
  background: var(--col--acc-b-02);
  color: var(--col--acc-b-01);
}
.com--times-afternoon dt {
  color: var(--col--acc-r-01);
  background: var(--col--acc-r-02);
}
@media screen and (max-width: 767px) {
  .com--times {
    --font-size: 3.6vw;
    --font-size-dt: 3.6vw;
    --color-dt: 3.6vw;
    --gap: 3vw;
    --gap-item: 2vw;
  }
}

.com--times.white {
  --color: #fff;
  --color-dt: #fff;
  --color-dd: #fff;
}

/* btn ボタンの設計 */
/*　- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
.com--btn-01 {
  --width: 200px;
  --height: 60px;
  --font-size: var(--font-size-16);
  font-weight: 800;
  position: relative;
  width: var(--width);
  height: var(--height);
  font-size: var(--font-size);
  transition: ease 0.2s;
  border-radius: 10px;
}
.com--btn-01 span {
  position: relative;
}
@media screen and (max-width: 767px) {
  .com--btn-01 {
    --width: 95%;
    --height: 12.8vw;
    --font-size: 3.9vw;
    margin: 0 auto;
  }
}
.com--btn-01[class*=btn-color] {
  --background: var(--col--main-02);
  --color: #fff;
  background: linear-gradient(180deg, #ff8711 50%, #ff6d01 50%);
  border: 1px solid var(--background);
}
.com--btn-01[class*=btn-color] span {
  color: var(--color);
}
.com--btn-01[class*=btn-color]:is(a):hover {
  opacity: 0.7;
}
.com--btn-01.btn-color-xxx {
  --background: #000;
  --color: #fff;
}

.btn-arrow-01::before {
  content: "";
  position: absolute;
  background: url(../img/common/icon__arrow__a_01.png) center center/contain no-repeat;
  width: 8px;
  height: 14px;
  right: 15px;
  top: 50%;
  translate: 0 -50%;
  transition: ease 0.2s;
}
@media screen and (max-width: 767px) {
  .btn-arrow-01::before {
    right: 2vw;
    width: 4vw;
    height: 4vw;
  }
}
.btn-arrow-01:is(a):hover::before {
  background: url(../img/common/icon__arrow__a_01.png) center center/contain no-repeat;
  right: 5px;
}

.btn-mail-01::after {
  content: "";
  position: absolute;
  background: url(../img/common/icon__mail__a_01.png) center center/contain no-repeat;
  left: 10px;
  top: 50%;
  translate: 0 -50%;
  transition: ease 0.2s;
}
@media screen and (max-width: 767px) {
  .btn-mail-01::after {
    left: 2vw;
    width: 4vw;
    height: 4vw;
  }
}
.btn-mail-01:hover::after {
  background: url(../img/common/icon__mail__a_02.png) center center/contain no-repeat;
}

/*　パンくずの構成 */
/*　- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#bread-clumb {
  z-index: 3;
  width: 100%;
  position: absolute;
  min-width: 1280px;
  margin: 0 auto;
  padding: 20px 0 20px;
}
#bread-clumb .inner {
  padding: 0;
}
#bread-clumb li {
  position: relative;
  color: var(--col--txt-01);
  font-size: 14px;
  float: left;
  font-weight: 400;
  margin-right: 30px;
}
#bread-clumb li:after {
  content: ">";
  position: absolute;
  display: block;
  right: -20px;
  top: 0;
}
#bread-clumb li:last-child {
  margin-right: 0;
}
#bread-clumb li:last-child:after {
  display: none;
}
#bread-clumb li a {
  color: var(--col--main-01);
}
@media screen and (max-width: 767px) {
  #bread-clumb {
    display: none;
  }
}/*# sourceMappingURL=setting.css.map */