@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+Antique:wght@300;400;500;700;900&display=swap");
/* 色の指定
////////////////////////////////////////////////////////////////////////////////////////////////// */
:root {
  --col--main-01: #0c244b;
  --col--main-02: #0f3777;
  --col--acc-01: #d4b862;
  --col--base-01: #fff;
  --col--base-02: #fff;
  --col--txt-01: #111;
  --col--txt-w: #fff;
  --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; */
  /*　Google fonts
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  --fot--Zen-Kaku-Goth: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  --fot-Zen-Kaku-Gothic-Antique:"Zen Kaku Gothic Antique", "Noto Sans JP", sans-serif;
  /*　フリーフォント
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
}

/* 初期設定
////////////////////////////////////////////////////////////////////////////////////////////////// */
:root {
  /* デフォルトフォント設定
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  --def-font-size: var(--font-size-16);
  --def-font-family: var(--fot--Zen-Kaku-Goth)
  --def-font-color: var(--col--txt-01);
  --def-font-weight: 500;
  --def-font-lh: 1;
  --def-font-ls: 0.06em;
  /* 文章(p)の設定
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  --def-p-lh: calc(31/16);
  --def-p-margin: var(--margin-25);
  /* 各セクションinboxのデフォルトpadding
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  --def-inbox: 100px 0;
}

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

.inbox {
  width: 1080px;
  margin: 0 auto;
  padding: var(--def-inbox);
}
@media screen and (max-width: 767px) {
  .inbox {
    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-30);
  --color: inherit;
  --font-weight: 700;
  --font-size-small:inherit;
  --color-small:inherit;
  --font-weight-small: inherit;
  --gap:0px;
  /* --------------------------------- */
  position: relative;
  width: fit-content;
  font-size: var(--font-size);
  color: var(--color);
  font-weight: var(--font-weight);
  gap: var(--gap);
}
.com--tel .tel-num {
  position: relative;
  width: fit-content;
  padding-left: 27px;
}
.com--tel .tel-num::before {
  content: "";
  position: absolute;
  background: url(../img/common/icon__tel__a_01.png) center center/contain no-repeat;
  width: 16px;
  height: 27px;
  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);
  margin-top: 8px;
}
@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: 30px;
  --gap-item: 10px;
  /* --------------------------------- */
  --font-size-dt: var(--font-size-14);
  --font-size-dd: var(--font-size-14);
  --width-dt: 75px;
  --width-dd: fit-content;
  --color-dt: #fff;
  --color-dd: inherit;
  --background-dt: var(--col--main-02);
  --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);
  padding: 2px;
}
.com--times dd {
  position: relative;
  width: var(--width-dd);
  font-size: var(--font-size-dd);
  color: var(--color-dd);
  background: var(--background-dd);
}
@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: 280px;
  --height: 60px;
  --font-size: var(--font-size-16);
  /* --------------------------------- */
  position: relative;
  width: var(--width);
  height: var(--height);
  font-size: var(--font-size);
  transition: ease 0.2s;
  border: 1px solid var(--col--txt-01);
}
.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-02 {
  --width: 250px;
  --height: 40px;
  --font-size: var(--font-size-16);
  /* --------------------------------- */
  position: relative;
  width: var(--width);
  height: var(--height);
  font-size: var(--font-size);
  transition: ease 0.2s;
  border: 1px solid var(--col--txt-01);
}
.com--btn-02 span {
  position: relative;
}
@media screen and (max-width: 767px) {
  .com--btn-02 {
    --width: 95%;
    --height: 12.8vw;
    --font-size: 3.9vw;
    margin: 0 auto;
  }
}
.com--btn-02[class*=btn-color-] {
  transition: ease 0.2s;
  background: var(--background);
  border: 1px solid var(--background);
}
.com--btn-02[class*=btn-color-] span {
  color: var(--color);
  transition: ease 0.2s;
}
.com--btn-02[class*=btn-color-]:is(a):hover {
  background: #fff;
}
.com--btn-02[class*=btn-color-]:is(a):hover span {
  color: var(--background);
}
.com--btn-02.btn-color-blue {
  --background: var(--col--main-02);
  --color: #fff;
}
.com--btn-02.btn-color-gold {
  --background: var(--col--acc-01);
  --color: #fff;
}
.com--btn-02.btn-mail-01 span {
  padding-left: 25px;
}
.com--btn-02.btn-mail-01 span::after {
  content: "";
  position: absolute;
  background: url(../img/common/icon__mail__a_01.png) center center/contain no-repeat;
  width: 21px;
  height: 18px;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  transition: ease 0.2s;
}
@media screen and (max-width: 767px) {
  .com--btn-02.btn-mail-01 span::after {
    left: 2vw;
    width: 4vw;
    height: 4vw;
  }
}
.com--btn-02.btn-mail-01:hover span::after {
  background: url(../img/common/icon__mail__a_02.png) center center/contain no-repeat;
}
.com--btn-02.btn-link-01 span {
  padding-right: 25px;
}
.com--btn-02.btn-link-01 span::after {
  content: "";
  position: absolute;
  background: url(../img/common/icon__link__a_01.png) center center/contain no-repeat;
  width: 16px;
  height: 16px;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  transition: ease 0.2s;
}
@media screen and (max-width: 767px) {
  .com--btn-02.btn-link-01 span::after {
    right: 2vw;
    width: 4vw;
    height: 4vw;
  }
}
.com--btn-02.btn-link-01:hover span::after {
  background: url(../img/common/icon__link__a_02.png) center center/contain no-repeat;
}

.com--btn-01.btn-color-clear {
  --background: #000;
  --color: #000;
  /* --------------------------------- */
  border: 1px solid var(--background);
  transition: ease 0.2s;
}
.com--btn-01.btn-color-clear span {
  color: var(--color);
  transition: ease 0.2s;
}
.com--btn-01.btn-color-clear:is(a):hover {
  --background:var(--col--main-02);
}
.com--btn-01.btn-color-clear:is(a):hover span {
  color: var(--background);
}

.com--btn-01.btn-color-gold {
  --background: var(--col--acc-01);
  --color: var(--col--acc-01);
  /* --------------------------------- */
  border: 1px solid var(--background);
  transition: ease 0.2s;
}
.com--btn-01.btn-color-gold span {
  color: var(--color);
  transition: ease 0.2s;
}
.com--btn-01.btn-color-gold:is(a):hover {
  --background: var(--col--txt-w);
}
.com--btn-01.btn-color-gold:is(a):hover span {
  color: var(--background);
}

.btn-arrow-01::before {
  content: "";
  position: absolute;
  width: 20px;
  border-bottom: 1px solid var(--background);
  right: 0;
  top: 50%;
  translate: 50% -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 {
  right: -5px;
  border-bottom: 1px solid var(--background);
}

.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 .inbox {
  padding: 0;
}
#bread-clumb li {
  position: relative;
  color: var(--col--txt-01);
  font-size: 14px;
  float: left;
  font-weight: 400;
  margin-right: 30px;
  color: #fff;
}
#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);
  color: var(--col--acc-01);
}
@media screen and (max-width: 767px) {
  #bread-clumb {
    display: none;
  }
}/*# sourceMappingURL=setting.css.map */