@charset "UTF-8";
@import url("../css/setting.css");
/* 初期設定
////////////////////////////////////////////////////////////////////////////////////////////////// */
: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: 0.08em;
  /* 文章(p)の設定 */
  --def-p-lh: calc(30/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);
  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: 24px;
}
.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;
  }
}

/* 共通パーツの設定
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* タイトル
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
.ttl-center {
  width: fit-content;
  margin: 0 auto;
}

/* ボタン
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* 共通ボタン：フォルム */
.com--btn-01 {
  position: relative;
  --width: 300px;
  --height: 70px;
  --font-size: var(--font-size-18);
  --color: inherit;
  --background: inherit;
  font-family: var(--fot--Noto-Serif);
  font-weight: 600;
  width: var(--width);
  height: var(--height);
  background: var(--background);
  border-radius: 10px;
}
.com--btn-01 a {
  width: 100%;
  height: 100%;
}
.com--btn-01 span {
  position: relative;
  font-size: var(--font-size);
  color: var(--color);
}
@media screen and (max-width: 767px) {
  .com--btn-01 {
    --width: 95%;
    --height: 12.8vw;
    --font-size: 3.9vw;
    margin: 0 auto;
  }
}

/* 共通ボタン：カラーパック */
.btn-color-green {
  --color: #fff;
  --background: url(../img/common/pattern__design__a_01.png) var(--col--acc-01);
  background: var(--background);
  border: 1px solid var(--col--acc-01);
  transition: ease 0.2s;
}
.btn-color-green span {
  color: var(--color);
  transition: ease 0.2s;
}
.btn-color-green:hover {
  background: #fff;
}
.btn-color-green:hover span {
  color: var(--col--acc-01);
}

.btn-color-brown {
  --color: #fff;
  --background:
      url(../img/common/pattern__design__a_02.png) var(--col--main-02);
  background: var(--background);
  border: 1px solid var(--col--main-02);
  transition: ease 0.2s;
}
.btn-color-brown span {
  color: var(--color);
  transition: ease 0.2s;
}
.btn-color-brown:hover {
  opacity: 0.7;
}

/* 共通ボタン：装飾パック */
.btn-arrow-01::before {
  content: "";
  position: absolute;
  background: url(../img/common/icon__arrow__a_01.png) center center/contain no-repeat;
  width: 9px;
  height: 15px;
  top: 50%;
  right: 15px;
  translate: 0 -50%;
  transition: ease 0.2s;
}
.btn-arrow-01:hover::before {
  background: url(../img/common/icon__arrow__a_02.png) center center/contain no-repeat;
  right: 10px;
}

.btn-arrow-02::before {
  content: "";
  position: absolute;
  background: url(../img/common/icon__arrow__a_01.png) center center/contain no-repeat;
  width: 9px;
  height: 15px;
  top: 50%;
  right: 15px;
  translate: 0 -50%;
  transition: ease 0.2s;
}
.btn-arrow-02:hover::before {
  right: 10px;
}

.btn-facebook-01::after {
  content: "";
  position: absolute;
  background: url(../img/common/icon__facebook__01.png) center center/contain no-repeat;
  width: 23px;
  height: 23px;
  top: 50%;
  left: 15px;
  translate: 0 -50%;
  transition: ease 0.2s;
}

/* 電話番号
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
.com--tel {
  --font-size: var(--font-size-26);
  --color: #fff;
  --font-size-small: var(--font-size-20);
  --color-small: inherit;
  background: url(../img/common/pattern__design__a_01.png);
  padding: 20px 30px;
  border-radius: 10px;
  font-family: var(--fot--Noto-Serif);
  position: relative;
  width: fit-content;
}
.com--tel .ttl {
  color: #fff;
  text-align: center;
  font-family: var(--fot--Noto-Serif);
  font-weight: 600;
  font-size: var(--font-size-18);
  margin-bottom: var(--margin-10);
}
.com--tel .tel-num {
  margin: 0 auto;
  width: fit-content;
  display: block;
  font-size: var(--font-size);
  color: var(--color);
}
.com--tel .tel-num small {
  font-size: var(--font-size-small);
  color: var(--color-small);
  margin-right: var(--margin-10);
}
.com--tel .tel-attention {
  margin: 0 auto;
  width: fit-content;
  display: block;
}
@media screen and (max-width: 767px) {
  .com--tel {
    --font-size: 4vw;
  }
  .com--tel .tel-num {
    font-size: 6vw;
  }
  .com--tel .tel-attention {
    height: 3vw;
  }
}

.item-address {
  position: relative;
  color: var(--col--main-01);
  border-bottom: 1px solid var(--col--main-01);
  font-size: var(--font-size-15);
  font-weight: 600;
  letter-spacing: 0.08em;
  padding-left: var(--margin-15);
  padding-bottom: 5px;
  font-family: var(--fot--Noto-Serif);
}
.item-address::before {
  content: "";
  position: absolute;
  background: url(../img/common/icon__pin__a_01.png) center center/contain no-repeat;
  width: 12px;
  height: 17px;
  left: 0;
}

a.item-address {
  color: var(--col--main-01);
  transition: ease .2s;
}
a.item-address:hover{
  opacity: .7;
}

/* 営業時間 定休日
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
.com--times {
  --font-size: inherit;
  --color: var(--col--txt-01);
  --background: inherit;
  color: var(--color);
  font-size: var(--font-size);
  background: var(--background);
  font-family: var(--fot--Noto-Serif);
  width: fit-content;
  gap: 6px;
  --font-size-dt: inherit;
  --font-size-dd: inherit;
  --color-dt: #fff;
  --color-dd: inherit;
  --background-dt: var(--col--main-01);
  --background-dd: inherit;
}
.com--times-item {
  width: fit-content;
}
.com--times dt,
.com--times dd {
  padding: 5px 7px;
}
.com--times dt {
  width: fit-content;
  font-size: var(--font-size-dt);
  color: var(--color-dt);
  background: var(--background-dt);
}
.com--times dd {
  width: fit-content;
  font-size: var(--font-size-dd);
  color: var(--color-dd);
  background: var(--background-dd);
  font-weight: 600;
}

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

/* SNS
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
.com--sns-list {
  width: fit-content;
  gap: 20px;
}
.com--sns-list-item {
  width: fit-content;
}

.com--line {
  width: fit-content;
  display: block;
}
@media screen and (max-width: 767px) {
  .com--line {
    width: 8.2vw;
    min-width: 29px;
  }
}

.com--instagram {
  width: fit-content;
  display: block;
}
@media screen and (max-width: 767px) {
  .com--instagram {
    width: 8.2vw;
    min-width: 29px;
  }
}

.com--facebook {
  width: fit-content;
  display: block;
}
@media screen and (max-width: 767px) {
  .com--facebook {
    width: 8.2vw;
    min-width: 29px;
  }
}

/* 固定(fixed)要素
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#fixed_bnr {
  position: relative;
  z-index: 5;
  width: fit-content;
  display: block;
  position: fixed;
  right: 20px;
  bottom: 10px;
  padding: 22px 24px;
  background: url(../img/common/pattern__design__a_04.png);
  border-radius: 10px;
  transition: ease 0.2s;
}
#fixed_bnr::before {
  content: "";
  position: absolute;
  background: url(../img/common/illust__owner__a_01.png) center center/contain no-repeat;
  width: 75px;
  height: 112px;
  left: -60px;
  bottom: 0px;
}
#fixed_bnr > p {
  font-family: var(--fot--Noto-Serif);
  font-size: var(--font-size-16);
  color: var(--col--acc-03);
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: var(--margin-10);
  text-align: center;
  line-height: 1.5;
}
#fixed_bnr > p em {
  font-size: var(--font-size-20);
}
#fixed_bnr .com--tel {
  font-size: var(--font-size-22);
  background: unset;
  padding: 0;
  color: #fff;
}
#fixed_bnr .com--tel small {
  font-size: var(--font-size-14);
}
#fixed_bnr .btn-close {
  position: absolute;
  right: 0;
  top: 0;
}

#check_input.fixed_bnr {
  z-index: 6;
  position: fixed !important;
  right: 0;
  bottom: 130px;
  transition: ease 0.2s;
  visibility: visible;
}
#check_input.fixed_bnr::before {
  display: none !important;
}

#check_btn.fixed_bnr {
  z-index: 6;
  position: fixed !important;
  right: 0;
  bottom: 123px;
  transition: ease 0.2s;
  visibility: visible;
}
#check_btn.fixed_bnr::before {
  display: none !important;
}
#check_btn.fixed_bnr::after {
  display: none !important;
}

input[type=checkbox]:checked ~ #fixed_bnr,
input[type=checkbox]:checked ~ #check_btn {
  visibility: hidden;
}

.page_top {
  z-index: 5;
  width: fit-content;
  display: block;
  position: fixed;
  right: 0;
  bottom: 0;
  transition: ease 0.2s;
}
.page_top:hover {
  opacity: 0.7;
  bottom: 8px;
}

/* 共通メッセージ
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
.post_none {
  font-size: 22px;
  width: fit-content;
  margin: 0 auto;
  color: #666;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .post_none {
    font-size: 4.5vw;
    padding: 7vw 0;
  }
}

.swipe_mess {
  margin: 0 auto;
  width: fit-content;
  position: relative;
  font-size: 3.6vw;
  padding-left: 6vw;
}
.swipe_mess::before {
  content: "";
  position: absolute;
  background: url(../img/common/swipe_note.png) center center/contain no-repeat;
  width: 4.2vw;
  height: 4.2vw;
  top: 50%;
  left: 0;
  translate: 0 -50%;
}

/* header グローバルヘッダー
////////////////////////////////////////////////////////////////////////////////////////////////// */
#header .header-wrap {
  position: absolute;
  width: 480px;
  height: 950px;
  padding: 62px 90px;
  background: url(../img/common/pattern__texture__a_01.png);
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
}
#header .header-wrap .cont-left {
  width: fit-content;
}
#header .header-wrap .item-logo {
  transition: ease 0.2s;
  margin-bottom: 65px;
}
#header .header-wrap .item-logo:hover {
  opacity: 0.6;
}
#header .header-wrap #nav {
  margin-bottom: 70px;
  translate: -10px 0;
}
#header .header-wrap #nav .unit-nav-list {
  gap: 35px;
}
#header .header-wrap #nav .unit-nav-list-item {
  position: relative;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: var(--fot--Noto-Serif);
  font-size: var(--font-size-20);
}
#header .header-wrap #nav .unit-nav-list-item a {
  transition: 0.2s;
  position: relative;
}
#header .header-wrap #nav .unit-nav-list-item a::before {
  opacity: 0;
  content: "";
  position: absolute;
  left: -25px;
  border-radius: 50%;
  height: 15px;
  width: 15px;
  background: var(--col--main-01);
  top: 55%;
  translate: 0 -50%;
  transition: 0.2s;
}
#header .header-wrap #nav .unit-nav-list-item a:hover {
  color: var(--col--main-01);
}
#header .header-wrap #nav .unit-nav-list-item a:hover::before {
  opacity: 1;
  content: "";
  position: absolute;
  left: -25px;
  border-radius: 50%;
  height: 15px;
  width: 15px;
  background: var(--col--main-01);
  top: 55%;
  translate: 0 -50%;
  transition: 0.2s;
}
#header .header-wrap .item-address {
  margin-bottom: 20px;
}
#header .header-wrap .unit-contact {
  gap: 20px;
}
#header .header-wrap .cont-right {
  width: fit-content;
}
@media screen and (max-width: 767px) {
  #header .header-wrap .cont-right {
    display: none;
  }
}
#header .header-wrap.in_subpage {
  z-index: 3;
  position: absolute;
  width: 480px;
  height: 650px;
  padding: 62px 90px;
  background: url(../img/common/pattern__texture__a_01.png);
}
#header .header-wrap.in_subpage .item-address {
  margin-bottom: 30px;
}
#header .header-wrap.in_subpage .unit-contact {
  gap: 20px;
  position: absolute;
  right: 25px;
  top: 30px;
  width: fit-content;
}
#header .unit-contact.in_subpage {
  z-index: 6;
  width: fit-content;
  position: absolute;
  right: var(--margin-20);
  top: var(--margin-20);
  gap: var(--margin-20);
}

.swiper-container {
  margin: unset !important;
  margin-left: auto !important;
}

#mv {
  position: relative;
  width: calc(100% - 480px);
  margin-left: auto;
  background: #fff;
  height: 950px;
}
#mv .swiper-wrapper {
  width: max(100vw, 1440px) !important;
  margin-left: auto;
}
#mv .swiper-wrapper img {
  max-width: unset;
  min-width: 1440px;
  width: 100%;
}
#mv .mv-catch {
  z-index: 1;
  position: absolute;
  top: 60%;
  left: 95px;
  translate: 0 -50%;
}

#sv {
  position: relative;
  overflow: hidden;
  height: 650px;
}
#sv .sv-img {
  height: 100%;
  margin-left: auto;
  width: calc(100% - 480px);
}
#sv .sv-catch {
  font-size: var(--font-size-60);
  letter-spacing: 0.09em;
  font-weight: 500;
  font-family: var(--fot--Noto-Serif);
  color: #fff;
  background: url(../img/common/pattern__texture__a_04.png);
  padding: 10px 16px;
  margin-left: 110px;
  line-height: 1.2;
  margin-bottom: 110px;
}

.sv-about {
  background: url(../img/sv/sv--about.jpg) center center/cover no-repeat;
}

.sv-food {
  background: url(../img/sv/sv--food.jpg) center center/cover no-repeat;
}

.sv-look {
  background: url(../img/sv/sv--look.jpg) center center/cover no-repeat;
}

.sv-location {
  background: url(../img/sv/sv--location.jpg) center center/cover no-repeat;
}

.sv-shop {
  background: url(../img/sv/sv--shop.jpg) center center/cover no-repeat;
}

.sv-notfound {
  background: url(../img/sv/sv--notfound.jpg) center center/cover no-repeat;
}

.sv-contact {
  background: url(../img/sv/sv--contact.jpg) center center/cover no-repeat;
}

.sv-complete {
  background: url(../img/sv/sv--complete.jpg) center center/cover no-repeat;
}

.sv-news {
  background: url(../img/sv/sv--news.jpg) center center/cover no-repeat;
}

.sv-site {
  background: url(../img/sv/sv--site.jpg) center center/cover no-repeat;
}

.sv-privacy {
  background: url(../img/sv/sv--privacy.jpg) center center/cover no-repeat;
}

/* TOP トップページ
////////////////////////////////////////////////////////////////////////////////////////////////// */
.com--ttl03-01 {
  position: relative;
  margin-bottom: var(--margin-60);
  text-align: center;
  width: fit-content;
}
.com--ttl03-01::before {
  content: "";
  position: absolute;
  width: 25px;
  border-bottom: 1px solid var(--col--main-01);
  left: 50%;
  translate: -50% 0;
  bottom: -25px;
}
.com--ttl03-01 .ja {
  font-size: var(--font-size-40);
  font-weight: 500;
  letter-spacing: 0.1em;
  font-family: var(--fot--Noto-Serif);
}

/* TOP-
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━　*/
/* greeting
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#top--greeting {
  overflow: hidden;
  position: relative;
  background: url(../img/common/deco__circle__a_04.png) left -40px top 333px no-repeat, url(../img/common/bg_deco__img_01.png) right top no-repeat, url(../img/common/pattern__texture__a_01.png) center center/cover no-repeat;
}
#top--greeting .inbox {
  position: relative;
  padding: 100px 0 0;
}
#top--greeting .ttl03 {
  position: absolute;
  width: fit-content;
  margin-left: auto;
  right: 0;
  top: 100px;
}
#top--greeting .ttl03::before {
  content: "";
  position: absolute;
  background: url(../img/common/deco__wave__a_01.png) center center/contain no-repeat;
  width: 323px;
  height: 374px;
  right: -50px;
  bottom: -220px;
}
#top--greeting .ttl03::after {
  content: "";
  position: absolute;
  background: url(../img/common/illust__matsutake__a_01.png) center center/contain no-repeat;
  width: 190px;
  height: 160px;
  right: -45px;
  bottom: -85px;
}
#top--greeting .ttl03 .main {
  writing-mode: vertical-rl;
  font-family: var(--fot--Noto-Serif);
  font-size: var(--font-size-38);
  font-weight: 600;
  letter-spacing: 0.1em;
}
#top--greeting .ttl03 .main span {
  display: block;
}
#top--greeting .ttl03 .main span:nth-of-type(1) {
  margin-left: 50px;
}
#top--greeting .ttl03 .main span:nth-of-type(2) {
  position: relative;
  margin-top: 125px;
  margin-left: 33px;
}
#top--greeting .ttl03 .main span:nth-of-type(2)::before {
  content: "";
  position: absolute;
  background: url(../img/common/deco__border__a_01.png) center center/contain no-repeat;
  width: 9px;
  height: 377px;
  right: -15px;
  top: 0;
}
#top--greeting .ttl03 .main span:nth-of-type(3) {
  margin-top: 265px;
}
#top--greeting .ttl03 .main .str-size-01 {
  font-size: var(--font-size-45);
}
#top--greeting .ttl03 .main .str-size-02 {
  font-size: var(--font-size-44);
}
#top--greeting .ttl03 .main .str-orange {
  font-size: var(--font-size-45);
  color: var(--col--acc-02);
}
#top--greeting .ttl03 .main .str-green {
  font-size: var(--font-size-45);
  color: var(--col--acc-01);
}
#top--greeting .cont-intro .item-img {
  position: relative;
  left: -290px;
  top: 0;
  margin-bottom: 40px;
}
#top--greeting .cont-intro .item-img::before {
  content: "";
  position: absolute;
  background: url(../img/common/deco__leaf__a_03.png) center center/contain no-repeat;
  width: 164px;
  height: 124px;
  right: -110px;
  top: -65px;
}
#top--greeting .cont-intro .item-text {
  width: 795px;
}
#top--greeting .cont-intro .item-text p {
  font-weight: 500;
}

/* feature
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#top--feature {
  overflow: hidden;
  position: relative;
  z-index: 0;
  background: url(../img/common/deco__circle__a_01.png) left top 520px no-repeat, url(../img/common/deco__circle__a_02.png) right top 1000px no-repeat, url(../img/common/separate__a_01_top.png) center top/100% auto no-repeat, url(../img/common/bg_deco__img_02.png) right top no-repeat, url(../img/common/pattern__texture__a_02.png) center center/cover no-repeat;
}
#top--feature .inbox {
  padding: 150px 0 50px;
}
#top--feature .ttl03 {
  position: relative;
  font-family: var(--fot--Noto-Serif);
  margin-bottom: var(--margin-55);
}
#top--feature .ttl03::before {
  z-index: -1;
  content: "";
  position: absolute;
  background: url(../img/common/deco_ttl__cloud__a_01.png) center center/contain no-repeat;
  width: 319px;
  height: 101px;
  left: 190px;
  bottom: -10px;
}
#top--feature .ttl03::after {
  z-index: -1;
  content: "";
  position: absolute;
  background: url(../img/common/deco_ttl__cloud__a_02.png) center center/contain no-repeat;
  width: 158px;
  height: 72px;
  right: 280px;
  top: -15px;
}
#top--feature .ttl03 .sub {
  font-size: var(--font-size-46);
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: var(--margin-20);
}
#top--feature .ttl03 .sub small {
  font-size: var(--font-size-38);
}
#top--feature .ttl03 .main {
  font-size: var(--font-size-46);
  color: #fff;
  gap: 5px;
  letter-spacing: 0.1em;
}
#top--feature .ttl03 .main span {
  background: url(../img/common/pattern__texture__a_03.png);
  width: 70px;
  height: 70px;
}
#top--feature .cont-feature {
  margin-bottom: 130px;
}
#top--feature .cont-feature .unit-list-item {
  position: relative;
  min-height: 555px;
  height: fit-content;
  margin-bottom: var(--margin-70);
}
#top--feature .cont-feature .unit-list-item:last-child {
  margin-bottom: 0;
}
#top--feature .cont-feature .unit-list-item .ttl04 {
  position: relative;
  width: 520px;
  margin-bottom: 32px;
}
#top--feature .cont-feature .unit-list-item .ttl04 .main {
  display: block;
  width: fit-content;
  margin: 0 auto;
  color: #fff;
  font-size: var(--font-size-40);
  letter-spacing: 0.1em;
  font-family: var(--fot--Noto-Serif);
  padding: 10px 20px;
  background: url(../img/common/pattern__texture__a_04.png);
}
#top--feature .cont-feature .unit-list-item .item-text {
  width: 520px;
}
#top--feature .cont-feature .unit-list-item .item-text p {
  font-weight: 500;
  line-height: 1.9;
}
#top--feature .cont-feature .unit-list-item .item-text p strong {
  font-size: var(--font-size-20);
  color: var(--col--main-01);
  padding-bottom: 3px;
  border-bottom: 1px solid var(--col--main-01);
}
#top--feature .cont-feature .unit-list-item:nth-of-type(odd) .item-img {
  position: absolute;
  right: 0;
  margin-right: -400px;
}
#top--feature .cont-feature .unit-list-item:nth-of-type(even) .item-img {
  position: absolute;
  left: 0;
  margin-left: -400px;
}
#top--feature .cont-feature .unit-list-item:nth-of-type(even) .ttl04 {
  margin-left: auto;
}
#top--feature .cont-feature .unit-list-item:nth-of-type(even) .item-text {
  margin-left: auto;
}
#top--feature .cont-feature .unit-list-item:nth-of-type(1)::before {
  z-index: 1;
  content: "";
  position: absolute;
  background: url(../img/common/deco__leaf__a_01.png) center center/contain no-repeat;
  width: 204px;
  height: 116px;
  right: 300px;
  right: 468px;
  top: 10px;
}
#top--feature .cont-feature .unit-list-item:nth-of-type(1)::after {
  content: "";
  position: absolute;
  background: url(../img/common/deco__leaf__a_02.png) center center/contain no-repeat;
  width: 166px;
  height: 140px;
  left: -70px;
  bottom: -35px;
}
#top--feature .cont-feature .unit-list-item:nth-of-type(1) .ttl04 .sub {
  position: absolute;
  top: -85px;
  left: 65px;
}
#top--feature .cont-feature .unit-list-item:nth-of-type(2) {
  position: relative;
}
#top--feature .cont-feature .unit-list-item:nth-of-type(2) .item-text {
  position: relative;
}
#top--feature .cont-feature .unit-list-item:nth-of-type(2) .item-text::before {
  content: "";
  position: absolute;
  background: url(../img/common/deco__negi__a_01.png) center center/contain no-repeat;
  width: 463px;
  height: 206px;
  translate: 0 100%;
  right: -50px;
  bottom: -50px;
}
#top--feature .cont-feature .unit-list-item:nth-of-type(2) .ttl04 {
  margin-top: -90px;
}
#top--feature .cont-feature .unit-list-item:nth-of-type(2) .ttl04 .sub {
  position: absolute;
  top: -85px;
  left: 65px;
}
#top--feature .cont-charm {
  margin-bottom: var(--margin-50);
}
#top--feature .cont-charm .unit-list {
  gap: 30px;
}
#top--feature .cont-charm .unit-list-item {
  width: calc((100% - 60px) / 3);
}
#top--feature .cont-charm .unit-list-item .ttl04 {
  margin-top: -95px;
  order: 2;
  height: 115px;
  margin-left: -10px;
  margin-bottom: var(--margin-10);
}
#top--feature .cont-charm .unit-list-item .ttl04 .ja span {
  width: fit-content;
  display: block;
  color: #fff;
  font-size: var(--font-size-30);
  letter-spacing: 0.07em;
  font-family: var(--fot--Noto-Serif);
  padding: 2px 8px;
  background: url(../img/common/pattern__texture__a_04.png);
  line-height: 1.5;
  margin-bottom: 5px;
}
#top--feature .cont-charm .unit-list-item .ttl04 .ja span:last-child {
  margin-bottom: 0;
}
#top--feature .cont-charm .unit-list-item .item-img {
  order: 1;
}
#top--feature .cont-charm .unit-list-item .item-text {
  order: 3;
}
#top--feature .com--btn-01 {
  margin: 0 auto;
}

/* subpages
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#top--subpages {
  overflow: hidden;
  z-index: 0;
  position: relative;
  background: url(../img/common/separate__b_01_top.png) center top/100% auto no-repeat, url(../img/common/deco__circle__b_01.png) right bottom no-repeat, url(../img/common/pattern__texture__a_01.png) center center/cover no-repeat;
}
#top--subpages .inbox {
  padding: 150px 0 100px;
  gap: 50px;
}
#top--subpages .cont {
  width: 500px;
}
#top--subpages .cont .ttl03 {
  position: relative;
  margin-bottom: var(--margin-60);
  text-align: center;
}
#top--subpages .cont .ttl03::before {
  content: "";
  position: absolute;
  width: 25px;
  border-bottom: 1px solid var(--col--main-01);
  left: 50%;
  translate: -50% 0;
  bottom: -20px;
}
#top--subpages .cont .ttl03 .main {
  font-size: var(--font-size-40);
  font-weight: 500;
  letter-spacing: 0.1em;
  font-family: var(--fot--Noto-Serif);
}
#top--subpages .cont:first-of-type {
  position: relative;
}
#top--subpages .cont:first-of-type::before {
  z-index: -1;
  content: "";
  position: absolute;
  background: url(../img/common/deco_ttl__cloud__a_03.png) center center/contain no-repeat;
  width: 319px;
  height: 101px;
  left: -190px;
  top: 10px;
}
#top--subpages .cont:last-of-type {
  position: relative;
}
#top--subpages .cont:last-of-type::before {
  z-index: -1;
  content: "";
  position: absolute;
  background: url(../img/common/deco_ttl__cloud__a_04.png) center center/contain no-repeat;
  width: 219px;
  height: 100px;
  right: -190px;
  top: 230px;
}
#top--subpages .cont-info {
  background: rgba(255, 255, 255, 0.7);
  min-height: 480px;
}
#top--subpages .cont-latest {
  padding: 60px 30px;
}
#top--subpages .cont-latest .unit-latest {
  position: relative;
  padding-bottom: var(--margin-20);
  border-bottom: 1px solid #ccc;
  margin-bottom: var(--margin-20);
  transition: ease 0.2s;
}
#top--subpages .cont-latest .unit-latest a {
  width: 100%;
  height: 100%;
}
#top--subpages .cont-latest .unit-latest .unit-latest-text {
  width: 100%;
}
#top--subpages .cont-latest .unit-latest .unit-latest-text.on_thumb {
  width: 85%;
}
#top--subpages .cont-latest .unit-latest .item-ttl {
  order: 3;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: var(--font-size-16);
}
#top--subpages .cont-latest .unit-latest .item-time {
  order: 1;
  width: fit-content;
  font-size: var(--font-size-16);
  margin-right: var(--margin-20);
  margin-bottom: var(--margin-10);
}
#top--subpages .cont-latest .unit-latest .tag_list {
  order: 2;
  width: 70%;
  gap: 10px;
  margin-bottom: var(--margin-10);
}
#top--subpages .cont-latest .unit-latest .tag_list-item {
  width: fit-content;
  height: fit-content;
  padding: 0 10px;
  border-left: 1px solid var(--col--main-01);
  border-right: 1px solid var(--col--main-01);
  font-size: var(--font-size-16);
  color: var(--col--main-01);
}
#top--subpages .cont-latest .unit-latest .unit-latest-img {
  height: 130px;
  width: 130px;
  margin-right: 30px;
}
#top--subpages .cont-latest .unit-latest .item-thumb {
  height: 130px;
  width: 130px;
}
#top--subpages .cont-latest .unit-latest:hover {
  color: var(--col--main-01);
  opacity: 0.7;
}
#top--subpages .cont-sns {
  width: 500px;
}
#top--subpages .com--btn-01 {
  margin: 0 auto;
  margin-top: var(--margin-40);
}
/* map
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#top--map .inbox {
  width: 100%;
  height: 420px;
  padding: 0;
}
#top--map .inbox iframe {
  width: 100%;
  height: 100%;
}

/* footer フッター
////////////////////////////////////////////////////////////////////////////////////////////////// */
#footer {
  background: url(../img/common/deco__circle__a_04.png) right -336px bottom -410px/880px no-repeat, url(../img/common/deco__circle__a_03.png) center left -250px/contain no-repeat, url(../img/common/pattern__texture__a_05.png);
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
}
#footer .inbox {
  padding: 85px 0 70px;
}
#footer .item-logo {
  display: block;
  width: fit-content;
  margin-bottom: var(--margin-40);
  transition: ease 0.2s;
}
#footer .item-logo:hover {
  opacity: 0.7;
}
#footer .cont-left {
  width: fit-content;
}
@media screen and (max-width: 767px) {
  #footer .cont-left {
    width: 100%;
  }
}
#footer .item-address {
  display: block;
  margin-bottom: var(--margin-30);
}
#footer .cont-right {
  width: fit-content;
}
@media screen and (max-width: 767px) {
  #footer .cont-right {
    width: 100%;
  }
}
#footer .com--tel {
  margin-bottom: 15px;
}
#footer .com--times {
  margin-bottom: var(--margin-20);
}
#footer .item-address {
  margin-bottom: var(--margin-20);
}
#footer .ft-nav-list {
  width: fit-content;
  height: 260px;
  gap: 30px 45px;
}
#footer .ft-nav-list-item {
  width: fit-content;
}
#footer .ft-nav-list-item a {
  position: relative;
  font-size: var(--font-size-15);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: var(--fot--Noto-Serif);
  transition: 0.2s;
}
#footer .ft-nav-list-item a::before {
  opacity: 0;
  content: "";
  position: absolute;
  left: -25px;
  border-radius: 50%;
  height: 15px;
  width: 15px;
  background: var(--col--main-01);
  top: 55%;
  translate: 0 -50%;
  transition: 0.2s;
}
#footer .ft-nav-list-item a:hover {
  color: var(--col--main-01);
}
#footer .ft-nav-list-item a:hover::before {
  opacity: 1;
  content: "";
  position: absolute;
}
@media screen and (max-width: 767px) {
  #footer .ft-nav-list {
    display: none;
  }
}
#footer #copyright {
  font-size: var(--font-size-13);
  text-align: center;
  background: url(../img/common/pattern__texture__a_04.png);
  color: #fff;
  padding: 20px 0;
}
#footer #copyright a {
  margin: 0 2px;
  padding: 0 5px;
  transition: ease 0.12s;
}
#footer #copyright a:hover {
  background: #fff;
  color: var(--col--main-01);
}
@media screen and (max-width: 767px) {
  #footer #copyright a {
    margin: unset;
    padding: unset;
  }
  #footer #copyright a:hover {
    color: inherit;
    background: inherit;
  }
}

/* 下層 subpages
////////////////////////////////////////////////////////////////////////////////////////////////// */
.wrap-section {
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* about
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* greeting
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#about--greeting {
  overflow: hidden;
  position: relative;
  background: url(../img/common/deco__circle__a_04.png) left -20px top 300px no-repeat, url(../img/common/bg_deco__img_01.png) right top no-repeat, url(../img/common/pattern__texture__a_01.png);
}
#about--greeting .inbox {
  padding: 100px 0 30px;
}
#about--greeting .ttl03 {
  margin: 0 auto;
  margin-bottom: var(--margin-70);
}
#about--greeting .cont-post {
  position: relative;
  margin: 0 auto;
  padding: 60px 100px;
  background: #fff;
  width: 800px;
  min-height: 610px;
  height: fit-content;
  margin-bottom: var(--margin-50);
}
#about--greeting .cont-post::before {
  content: "";
  position: absolute;
  background: url(../img/about/about__greeting__img_01.png) center center/contain no-repeat;
  width: 337px;
  height: 404px;
  bottom: 30px;
  left: -300px;
}
#about--greeting .cont-post::after {
  content: "";
  position: absolute;
  background: url(../img/about/about__greeting__img_02.png) center center/contain no-repeat;
  width: 296px;
  height: 421px;
  right: -220px;
  top: 30px;
}
#about--greeting .cont-post .ttl04 {
  padding: 15px;
  border-top: 1px solid var(--col--main-01);
  border-bottom: 1px solid var(--col--main-01);
  margin-bottom: var(--margin-40);
  width: 100%;
  text-align: center;
}
#about--greeting .cont-post .ttl04 .ja {
  font-size: var(--font-size-26);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--col--main-01);
  font-family: var(--fot--Noto-Serif);
  line-height: 1.5;
}
#about--greeting .cont-post .item-text {
  text-align: center;
  margin-bottom: var(--margin-50);
  font-weight: 500;
}
#about--greeting .cont-post .item-name {
  width: fit-content;
  margin-left: auto;
}
#about--greeting .cont-bnr {
  position: relative;
  background: url(../img/common/deco__circle__b_02.png) right bottom no-repeat, url(../img/common/pattern__texture__a_04.png);
  margin: 0 auto;
  width: 630px;
  outline: 1px solid #fff;
  outline-offset: -10px;
  padding: 45px 60px;
}
#about--greeting .cont-bnr::before {
  content: "";
  position: absolute;
  background: url(../img/common/deco__leaf__a_02.png) center center/contain no-repeat;
  width: 166px;
  height: 140px;
  left: -200px;
  top: 0;
}
#about--greeting .cont-bnr::after {
  content: "";
  position: absolute;
  background: url(../img/common/deco__leaf__a_04.png) center center/contain no-repeat;
  width: 146px;
  height: 190px;
  right: -160px;
  bottom: 12px;
}
#about--greeting .cont-bnr .ttl04 {
  margin-bottom: 24px;
}
#about--greeting .cont-bnr .ttl04 .ja {
  color: var(--col--acc-03);
  font-size: var(--font-size-24);
  letter-spacing: 0.1em;
  font-weight: 600;
  line-height: 1.6;
  font-family: var(--fot--Noto-Serif);
}
#about--greeting .cont-bnr .ttl04 .ja em {
  font-size: var(--font-size-32);
}
#about--greeting .cont-bnr .item-img {
  position: absolute;
  right: 30px;
  top: 40px;
}
#about--greeting .cont-bnr .item-text p {
  font-family: var(--fot--Noto-Serif);
  color: #fff;
  line-height: 1.4;
  font-size: var(--font-size-15);
}
#about--greeting .cont-bnr .item-text p small {
  display: block;
  padding: 2px 0;
}

/* feature
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#about--feature {
  position: relative;
  z-index: 0;
  background: url(../img/common/deco__circle__a_04.png) right -150px bottom 220px/610px no-repeat, url(../img/common/deco__circle__a_04.png) left -60px top 500px/600px no-repeat, url(../img/common/separate__a_01_top.png) center top/100% auto no-repeat, url(../img/common/pattern__texture__a_02.png);
}
#about--feature::before {
  content: "";
  position: absolute;
  background: url(../img/common/deco__circle__a_04.png) center center/contain no-repeat;
  width: 560px;
  height: 560px;
  right: -150px;
  top: -300px;
}
#about--feature .inbox {
  padding: 180px 0 100px;
}
#about--feature .ttl03 {
  position: relative;
  margin: 0 auto;
  margin-bottom: var(--margin-75);
}
#about--feature .ttl03 .ja {
  position: relative;
  font-size: var(--font-size-46);
}
#about--feature .ttl03 .ja::before {
  z-index: -1;
  content: "";
  position: absolute;
  background: url(../img/common/deco_ttl__cloud__a_02.png) center center/contain no-repeat;
  width: 158px;
  height: 72px;
  left: -80px;
  bottom: -50px;
}
#about--feature .ttl03 .ja::after {
  z-index: -1;
  content: "";
  position: absolute;
  background: url(../img/common/deco_ttl__cloud__a_03.png) center center/contain no-repeat;
  width: 319px;
  height: 101px;
  right: -180px;
  top: -50px;
}
#about--feature .cont-feature .unit-list-item {
  min-height: 380px;
  height: fit-content;
  position: relative;
  margin-bottom: var(--margin-70);
}
#about--feature .cont-feature .unit-list-item:last-child {
  margin-bottom: 0;
}
#about--feature .cont-feature .unit-list-item .ttl04 {
  width: 540px;
  margin-bottom: var(--margin-20);
}
#about--feature .cont-feature .unit-list-item .ttl04 .ja span {
  display: block;
  padding: 14px 18px;
  width: fit-content;
  height: fit-content;
  color: #fff;
  font-weight: 500;
  font-size: var(--font-size-40);
  font-family: var(--fot--Noto-Serif);
  background: url(../img/common/pattern__texture__a_04.png);
  margin-bottom: 5px;
}
#about--feature .cont-feature .unit-list-item .ttl04 .ja span:last-child {
  margin-bottom: 0;
}
#about--feature .cont-feature .unit-list-item .item-img {
  position: absolute;
  right: 0;
  top: 0;
}
#about--feature .cont-feature .unit-list-item .item-text {
  width: 540px;
}
#about--feature .cont-feature .unit-list-item .item-text p {
  font-weight: 500;
}
#about--feature .cont-feature .unit-list-item:nth-of-type(odd) .item-img {
  right: -100px;
}
#about--feature .cont-feature .unit-list-item:nth-of-type(even) .ttl04 {
  margin-left: auto;
}
#about--feature .cont-feature .unit-list-item:nth-of-type(even) .item-text {
  margin-left: auto;
}
#about--feature .cont-feature .unit-list-item:nth-of-type(even) .item-img {
  left: -100px;
}
#about--feature .cont-feature .unit-list-item:nth-of-type(1)::before {
  content: "";
  position: absolute;
  background: url(../img/common/deco__leaf__a_03.png) center center/contain no-repeat;
  width: 164px;
  height: 124px;
  left: -100px;
  bottom: 10px;
}
#about--feature .cont-feature .unit-list-item:nth-of-type(2)::before {
  content: "";
  position: absolute;
  background: url(../img/common/illust__matsutake__a_02.png) center center/contain no-repeat;
  width: 163px;
  height: 137px;
  right: -100px;
  bottom: 0;
}
#about--feature .cont-feature .unit-list-item:nth-of-type(3)::before {
  content: "";
  position: absolute;
  background: url(../img/common/deco__leaf__a_05.png) center center/contain no-repeat;
  width: 151px;
  height: 147px;
  right: 550px;
  top: -20px;
}

/* food
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* course
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#food--course {
  position: relative;
  overflow: hidden;
  background: url(../img/common/deco__circle__a_04.png) left -20px top 200px no-repeat, url(../img/common/deco__circle__a_04.png) right -100px top 950px no-repeat, url(../img/common/deco__circle__a_04.png) left -100px bottom 450px no-repeat, url(../img/common/bg_deco__img_01.png) right top no-repeat, url(../img/common/pattern__texture__a_01.png);
}
#food--course .inbox {
  padding: 100px 0 0;
}
#food--course .ttl03 {
  margin: 0 auto;
  margin-bottom: 110px;
}
#food--course .cont-menu .unit-list-item {
  position: relative;
  min-height: 400px;
  height: fit-content;
  margin-bottom: var(--margin-60);
}
#food--course .cont-menu .unit-list-item:last-child {
  margin-bottom: 0;
}
#food--course .cont-menu .unit-list-item .ttl04 {
  position: relative;
  background: url(../img/common/pattern__texture__a_04.png);
  padding: 24px 20px;
  padding-top: 35px;
  width: 540px;
  margin-bottom: var(--margin-30);
}
#food--course .cont-menu .unit-list-item .ttl04 .ja {
  font-family: var(--fot--Noto-Serif);
  letter-spacing: 0.1em;
  color: #fff;
  font-weight: 500;
  font-size: var(--font-size-40);
}
#food--course .cont-menu .unit-list-item .ttl04 .ja ruby rt {
  font-size: var(--font-size-14);
  padding-bottom: 2px;
}
#food--course .cont-menu .unit-list-item .ttl04 .ja small {
  font-size: var(--font-size-32);
  color: var(--col--acc-03);
}
#food--course .cont-menu .unit-list-item .ttl04 .note {
  position: absolute;
  right: 10px;
  bottom: 20px;
  color: var(--col--acc-03);
  font-size: var(--font-size-20);
  font-family: var(--fot--Noto-Serif);
}
#food--course .cont-menu .unit-list-item .item-img {
  position: absolute;
  right: 0;
  top: -30px;
}
#food--course .cont-menu .unit-list-item .list {
  width: 540px;
  margin-left: 23px;
  gap: 16px 42px;
  margin-bottom: var(--margin-30);
}
#food--course .cont-menu .unit-list-item .list-item {
  position: relative;
  font-family: var(--fot--Noto-Serif);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: var(--font-size-20);
  width: fit-content;
}
#food--course .cont-menu .unit-list-item .list-item::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--col--main-01);
  left: -23px;
  top: 50%;
  translate: 0 -50%;
}
#food--course .cont-menu .unit-list-item .price {
  width: 540px;
  color: var(--col--main-01);
  font-weight: 500;
  font-family: var(--fot--Noto-Serif);
  font-size: var(--font-size-30);
  text-align: end;
}
#food--course .cont-menu .unit-list-item:nth-of-type(odd) .item-img {
  right: -100px;
}
#food--course .cont-menu .unit-list-item:nth-of-type(even) .ttl04 {
  margin-left: auto;
}
#food--course .cont-menu .unit-list-item:nth-of-type(even) .item-img {
  left: -100px;
}
#food--course .cont-menu .unit-list-item:nth-of-type(even) .list {
  margin-left: auto;
  margin-right: -20px;
}
#food--course .cont-menu .unit-list-item:nth-of-type(even) .price {
  margin-left: auto;
}
#food--course .cont-menu .unit-list-item:nth-of-type(1)::before {
  content: "";
  position: absolute;
  background: url(../img/common/deco__leaf__a_06.png) center center/contain no-repeat;
  width: 193px;
  height: 116px;
  left: -100px;
  bottom: 110px;
}
#food--course .cont-menu .unit-list-item:nth-of-type(2)::before {
  content: "";
  position: absolute;
  background: url(../img/common/deco__leaf__a_09.png) center center/contain no-repeat;
  width: 156px;
  height: 202px;
  right: -180px;
  bottom: 150px;
}
#food--course .cont-menu .unit-list-item:nth-of-type(3)::before {
  content: "";
  position: absolute;
  background: url(../img/common/deco__leaf__a_10.png) center center/contain no-repeat;
  width: 96px;
  height: 94px;
  left: -100px;
  bottom: 45px;
}
#food--course .cont-menu .unit-list-item:nth-of-type(4)::before {
  content: "";
  position: absolute;
  background: url(../img/common/deco__leaf__a_11.png) center center/contain no-repeat;
  width: 139px;
  height: 193px;
  right: -185px;
  bottom: -70px;
}
#food--course .cont-menu .unit-list-item:nth-of-type(5)::before {
  content: "";
  position: absolute;
  background: url(../img/common/deco__leaf__a_09.png) center center/contain no-repeat;
  width: 156px;
  height: 202px;
  left: -135px;
  bottom: 5px;
}
#food--course .cont-menu .unit-list-recommend .ttl04 {
  position: relative;
}
#food--course .cont-menu .unit-list-recommend .ttl04::before {
  content: "";
  position: absolute;
  background: url(../img/common/icon__reccomend__a_01.png);
  width: 96px;
  height: 97px;
  right: -30px;
  top: -45px;
}
#food--course .cont-menu .unit-list-favorite .ttl04 {
  position: relative;
}
#food--course .cont-menu .unit-list-favorite .ttl04::before {
  content: "";
  position: absolute;
  background: url(../img/common/icon__facorite__a_01.png);
  width: 96px;
  height: 97px;
  right: -30px;
  top: -45px;
}

/* other
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#food--other {
  z-index: 0;
  position: relative;
  background: url(../img/common/separate__a_02_top.png) center top/100% auto no-repeat, url(../img/common/deco__circle__a_04.png) left -20px top 520px no-repeat, url(../img/common/deco__circle__a_04.png) right -100px top 850px no-repeat, url(../img/common/deco__circle__a_04.png) left -100px bottom 260px no-repeat, url(../img/common/pattern__texture__a_02.png);
}
#food--other .inbox {
  padding: 180px 0 100px;
}
#food--other .ttl03 {
  margin: 0 auto;
  margin-bottom: var(--margin-80);
}
#food--other .ttl03 .ja {
  position: relative;
  font-size: var(--font-size-46);
}
#food--other .ttl03 .ja::before {
  z-index: -1;
  content: "";
  position: absolute;
  background: url(../img/common/deco_ttl__cloud__a_02.png) center center/contain no-repeat;
  width: 158px;
  height: 72px;
  right: -80px;
  bottom: -50px;
}
#food--other .ttl03 .ja::after {
  z-index: -1;
  content: "";
  position: absolute;
  background: url(../img/common/deco_ttl__cloud__a_03.png) center center/contain no-repeat;
  width: 319px;
  height: 101px;
  left: -230px;
  top: -70px;
}
#food--other .wrap-btn {
  margin-bottom: var(--margin-40);
  gap: 30px;
}
#food--other .wrap-btn .com--btn-01 {
  --width: calc((100% - 60px) / 3);
}
#food--other .cont-post .unit-post {
  margin-bottom: var(--margin-50);
  background: #fff;
}
#food--other .cont-post .unit-post .ttl04 {
  width: 100%;
  padding: 17px;
  text-align: center;
  background: url(../img/common/pattern__texture__a_04.png);
}
#food--other .cont-post .unit-post .ttl04 .ja {
  color: #fff;
  font-family: var(--fot--Noto-Serif);
  font-size: var(--font-size-30);
  letter-spacing: 0.1em;
  font-weight: 400;
}
#food--other .cont-post .unit-post .lead-text {
  text-align: end;
  color: #737373;
  width: 100%;
  background: #fff;
  padding: 10px 60px;
}
#food--other .cont-post .unit-post .wrap-post {
  gap: var(--margin-20);
  padding: 10px 60px 60px;
}
#food--other .cont-post .unit-post .wrap-post .unit-info {
  flex: 1;
  gap: var(--margin-20);
}
#food--other .cont-post .unit-post .wrap-post .unit-info .item-menu {
  gap: var(--margin-20);
  padding-bottom: var(--margin-30);
  border-bottom: 1px solid #b3b3b3;
  margin-bottom: var(--margin-30);
}
#food--other .cont-post .unit-post .wrap-post .unit-info .item-menu .info {
  position: relative;
  flex: 1;
}
#food--other .cont-post .unit-post .wrap-post .unit-info .item-menu .info .ttl05 {
  margin-bottom: var(--margin-10);
}
#food--other .cont-post .unit-post .wrap-post .unit-info .item-menu .info .ttl05 .ja {
  font-family: var(--fot--Noto-Serif);
  color: var(--col--main-01);
  font-weight: 500;
  font-size: var(--font-size-20);
  letter-spacing: 0.06em;
  font-weight: 700;
  line-height: 1.4;
}
#food--other .cont-post .unit-post .wrap-post .unit-info .item-menu .info .text {
  margin-bottom: var(--margin-30);
}
#food--other .cont-post .unit-post .wrap-post .unit-info .item-menu .info .text p {
  font-size: var(--font-size-16);
  line-height: 1.75;
}
#food--other .cont-post .unit-post .wrap-post .unit-info .item-menu .info .price {
  position: absolute;
  bottom: 10px;
  right: 10px;
  text-align: end;
  font-size: var(--font-size-20);
  letter-spacing: 0.06em;
  font-weight: 600;
  font-family: var(--fot--Noto-Serif);
}
#food--other .cont-post .unit-post .wrap-post .unit-info .item-menu .img {
  height: 160px;
  width: 160px;
}
#food--other .cont-post .unit-post .wrap-post .unit-images {
  width: fit-content;
  gap: var(--margin-20);
}
#food--other .cont-post .unit-post .wrap-post .unit-images-item {
  width: 280px;
  height: 280px;
}

/* location
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* feature
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#location--feature {
  z-index: 0;
  position: relative;
  background: url(../img/common/icon__arrow__b_01.png) center bottom no-repeat, url(../img/common/bg_deco__img_03.png) left bottom no-repeat, url(../img/common/pattern__texture__a_01.png);
}
#location--feature::before {
  content: "";
  position: absolute;
  background: url(../img/common/deco__leaf__b_01.png) center center/contain no-repeat;
  width: 516px;
  height: 353px;
  bottom: -40px;
  left: 0;
}
#location--feature .inbox {
  position: relative;
  padding: 100px 0 60px;
}
#location--feature .ttl03 {
  width: fit-content;
  letter-spacing: 0.1em;
  font-family: var(--fot--Noto-Serif);
  margin-bottom: var(--margin-40);
  margin-top: 40px;
}
#location--feature .ttl03 .sub {
  display: inline-block;
  font-size: var(--font-size-46);
  margin-bottom: var(--margin-10);
}
#location--feature .ttl03 .sub small {
  font-size: var(--font-size-38);
}
#location--feature .ttl03 .main {
  position: relative;
  gap: 6px;
}
#location--feature .ttl03 .main::before {
  z-index: -1;
  content: "";
  position: absolute;
  background: url(../img/common/deco_ttl__cloud__a_02.png) center center/contain no-repeat;
  width: 158px;
  height: 72px;
  left: -127px;
  bottom: -23px;
}
#location--feature .ttl03 .main::after {
  z-index: -1;
  content: "";
  position: absolute;
  background: url(../img/common/deco_ttl__cloud__a_01.png) center center/contain no-repeat;
  width: 319px;
  height: 101px;
  top: -30px;
  right: -220px;
}
#location--feature .ttl03 .main span {
  color: #fff;
  font-size: var(--font-size-46);
  display: inline-block;
  padding: 12px;
  background: url(../img/common/pattern__texture__a_03.png);
}
#location--feature .item-img {
  position: absolute;
  right: 0;
  top: 100px;
}
#location--feature .item-img::before {
  content: "";
  position: absolute;
  background: url(../img/common/deco__leaf__a_07.png) center center/contain no-repeat;
  width: 122px;
  height: 208px;
  right: -120px;
  bottom: 150px;
}
#location--feature .lead-text {
  position: relative;
  margin-bottom: 600px;
}
#location--feature .lead-text::before {
  content: "";
  position: absolute;
  background: url(../img/common/deco__leaf__a_06.png) center center/contain no-repeat;
  width: 193px;
  height: 116px;
  left: -20px;
  bottom: -180px;
}
#location--feature .lead-text p {
  font-weight: 600;
}

/* detail
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#location--detail {
  background: url(../img/common/deco__circle__a_04.png) left -40px top 775px no-repeat, url(../img/common/deco__circle__a_04.png) right -40px top 1125px no-repeat, url(../img/common/deco__circle__a_04.png) left -40px top 2070px no-repeat, url(../img/common/deco__circle__a_04.png) right -40px top 3340px no-repeat, url(../img/common/deco__circle__a_04.png) left -40px top 4387px no-repeat, url(../img/common/deco__circle__a_04.png) right -40px top 5118px no-repeat, url(../img/common/pattern__texture__a_02.png);
}
#location--detail .cont-post .unit-list-item {
  position: relative;
  width: 520px;
  min-height: 380px;
  height: fit-content;
  margin-bottom: var(--margin-60);
}
#location--detail .cont-post .unit-list-item .ttl04 {
  padding-bottom: var(--margin-15);
  border-bottom: 2px solid var(--col--main-01);
  margin-bottom: var(--margin-20);
  gap: 20px;
}
#location--detail .cont-post .unit-list-item .ttl04 .ja {
  font-size: var(--font-size-32);
  font-family: var(--fot--Noto-Serif);
  letter-spacing: 0.1em;
  font-weight: 500;
  line-height: 1.3;
  flex: 1;
}
#location--detail .cont-post .unit-list-item .ttl04 .num {
  width: 60px;
  height: 60px;
  background: var(--col--main-01);
  border-radius: 50%;
  font-family: var(--fot--Noto-Serif);
  color: #fff;
  font-size: var(--font-size-32);
  letter-spacing: 0.04em;
  font-weight: 500;
  padding-bottom: 4px;
}
#location--detail .cont-post .unit-list-item .item-img {
  position: absolute;
  width: 520px;
  height: 380px;
}
#location--detail .cont-post .unit-list-item .item-text {
  margin-bottom: var(--margin-30);
}
#location--detail .cont-post .unit-list-item .com--btn-01 {
  margin: 0 auto;
}
#location--detail .cont-post .unit-list-item .item-img {
  top: 0;
  right: -50px;
  translate: 100% 0;
}

/* look
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* about
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#look--about {
  z-index: 1;
  position: relative;
  background: url(../img/common/bg_deco__img_01.png) right top no-repeat, url(../img/common/pattern__texture__a_01.png);
}
#look--about::before {
  content: "";
  position: absolute;
  background: url(../img/common/deco__leaf__b_01.png) center center/contain no-repeat;
  width: 428px;
  height: 299px;
  bottom: -217px;
  left: 0;
}
#look--about .inbox {
  position: relative;
  padding: 140px 0 70px;
}
#look--about .ttl03 {
  position: absolute;
  right: 0;
  top: 140px;
  width: fit-content;
  margin-left: auto;
}
#look--about .ttl03::before {
  content: "";
  position: absolute;
  background: url(../img/common/deco__wave__a_01.png) center center/contain no-repeat;
  width: 323px;
  height: 374px;
  right: -125px;
  bottom: -157px;
}
#look--about .ttl03::after {
  content: "";
  position: absolute;
  background: url(../img/common/illust__matsutake__a_01.png) center center/contain no-repeat;
  width: 190px;
  height: 160px;
  right: -80px;
  bottom: -120px;
}
#look--about .ttl03 .ja {
  writing-mode: vertical-rl;
}
#look--about .ttl03 .ja span {
  display: block;
  font-size: var(--font-size-38);
  letter-spacing: 0.1em;
  font-family: var(--fot--Noto-Serif);
  font-weight: 500;
}
#look--about .ttl03 .ja span strong {
  font-size: var(--font-size-44);
  color: var(--col--acc-01);
}
#look--about .ttl03 .ja span em {
  font-size: var(--font-size-44);
  color: var(--col--main-01);
}
#look--about .ttl03 .ja span:nth-of-type(1) {
  margin-left: 20px;
}
#look--about .ttl03 .ja span:nth-of-type(2) {
  margin-top: 50px;
  margin-left: 20px;
}
#look--about .ttl03 .ja span:nth-of-type(3) {
  margin-top: 200px;
}
#look--about .item-img {
  position: absolute;
  left: -260px;
  top: 140px;
}
#look--about .item-text {
  position: relative;
  writing-mode: vertical-rl;
  margin-left: auto;
  margin-right: 200px;
}
#look--about .item-text::before {
  content: "";
  position: absolute;
  background: url(../img/common/deco__leaf__a_03.png) center center/contain no-repeat;
  width: 164px;
  height: 124px;
  right: -100px;
  top: -105px;
}
#look--about .item-text::after {
  content: "";
  position: absolute;
  background: url(../img/common/deco__leaf__a_08.png) center center/contain no-repeat;
  width: 190px;
  height: 129px;
  right: -100px;
  bottom: -140px;
}

/* view
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#look--view {
  z-index: 0;
  position: relative;
  background: url(../img/common/separate__a_02_top.png) center top/100% auto no-repeat, url(../img/common/deco__circle__a_04.png) left -50px bottom 100px no-repeat, url(../img/common/pattern__texture__a_02.png);
}
#look--view::before {
  content: "";
  position: absolute;
  background: url(../img/common/deco__circle__a_04.png) center center/contain no-repeat;
  width: 600px;
  height: 600px;
  right: -100px;
  top: -10px;
}
#look--view .inbox {
  padding: 220px 0 100px;
}
#look--view .cont-post {
  gap: 40px 30px;
}
#look--view .cont-post .unit-post {
  width: calc((100% - 60px) / 3);
  transition: ease 0.2s;
  top: 0;
  position: relative;
}
#look--view .cont-post .unit-post .item-img {
  width: 100%;
  height: 280px;
  margin-bottom: var(--margin-10);
}
#look--view .cont-post .unit-post .item-text {
  margin-bottom: var(--margin-10);
  overflow: hidden;
  height: 90px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
#look--view .cont-post .unit-post .item-btn {
  position: relative;
  width: 100%;
  text-align: end;
  border-bottom: 1px solid var(--col--main-01);
  padding-bottom: 10px;
  font-weight: 600;
  font-size: var(--font-size-13);
  color: var(--col--main-01);
  line-height: 1.2;
  padding-right: 15px;
}
#look--view .cont-post .unit-post .item-btn::after {
  content: "";
  position: absolute;
  background: url(../img/common/icon__arrow__a_04.png) center center/contain no-repeat;
  width: 7px;
  height: 11px;
  right: 0;
  top: 35%;
  translate: 0 -50%;
}
#look--view .cont-post .unit-post .item-btn::before {
  content: "";
  position: absolute;
  border-bottom: 1px solid var(--col--main-01);
  width: 100%;
  left: 0;
  bottom: -4px;
}
#look--view .cont-post .unit-post:hover {
  position: relative;
  opacity: 0.75;
  top: -4px;
}

/* in_post
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
.look--in_post {
  background: url(../img/common/deco__circle__a_04.png) left -150px top -50px no-repeat, url(../img/common/deco__circle__a_04.png) right -150px bottom -50px no-repeat, url(../img/common/pattern__texture__a_01.png);
}
.look--in_post .inbox .wrap-cont {
  padding: 40px;
  background: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--margin-30);
}
.look--in_post .inbox .wrap-cont .item-img {
  width: 100%;
  height: 540px;
  margin-bottom: var(--margin-30);
}
.look--in_post .inbox .wrap-cont .item-text {
  width: 100%;
}
.look--in_post .inbox .com--btn-01 {
  margin: 0 auto;
}

/* shop
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* access
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#shop--access {
  background: url(../img/common/deco__circle__a_04.png) left -100px bottom -300px/710px no-repeat, url(../img/common/pattern__texture__a_01.png);
}
#shop--access .inbox {
  padding: 100px 0 180px;
}
#shop--access .ttl03 {
  width: 495px;
  margin-left: auto;
  text-align: left;
  margin-bottom: 75px;
}
#shop--access .ttl03::before {
  content: "";
  position: absolute;
  left: 0;
  translate: 0;
}
#shop--access .cont-info {
  position: relative;
  width: 495px;
  margin-left: auto;
  font-weight: 500;
}
#shop--access .cont-info .item-img {
  position: absolute;
  left: -50px;
  top: -120px;
  translate: -100% 0;
}
#shop--access .cont-info .item-text p {
  letter-spacing: 0.08em;
  font-size: var(--font-size-16);
}
#shop--access .cont-info small {
  display: block;
  font-size: var(--font-size-16);
  letter-spacing: 0.08em;
  color: #765c47;
  padding: 3px 0;
}
#shop--access .cont-info .unit-list {
  margin-bottom: var(--margin-30);
}
#shop--access .cont-info .unit-list-item {
  position: relative;
  letter-spacing: 0.08em;
  font-size: var(--font-size-20);
  padding-left: 20px;
  margin-bottom: var(--margin-20);
}
#shop--access .cont-info .unit-list-item:last-child {
  margin-bottom: 0;
}
#shop--access .cont-info .unit-list-item::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  left: 0;
  top: 5px;
  background: var(--col--main-01);
}
#shop--access .cont-info .unit-list small {
  margin-left: -20px;
}
#shop--access .cont-info .unit-root {
  margin-bottom: var(--margin-20);
}
#shop--access .cont-info .unit-workterm {
  margin-bottom: var(--margin-20);
}
#shop--access .cont-info .unit-workterm .com--times {
  margin-bottom: 5px;
  font-family: var(--fot--Noto-Sans);
}
#shop--access .cont-info .unit-access small {
  margin-bottom: var(--margin-10);
}
#shop--access .cont-info p {
  line-height: 1.4;
}

.com--table-01 {
  width: 100%;
}
.com--table-01 tr {
  width: 100%;
}
.com--table-01 tr th,
.com--table-01 tr td {
  border-top: 1px solid var(--col--main-01);
  border-bottom: 1px solid var(--col--main-01);
  padding: 20px 10px;
  font-weight: 500;
}
.com--table-01 tr th {
  width: 25%;
}
.com--table-01 tr td {
  width: 75%;
  font-weight: 500;
}

/* info
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#shop--info {
  background: url(../img/common/deco__circle__a_04.png) left -100px bottom -300px no-repeat, url(../img/common/pattern__texture__a_02.png);
}
#shop--info .ttl03 {
  margin: 0 auto;
  margin-bottom: var(--margin-80);
}
#shop--info .unit-info {
  gap: 40px;
  margin-bottom: var(--margin-60);
}
#shop--info .unit-info .item-table {
  flex: 1;
}
#shop--info .cont-access {
  width: 100%;
}
#shop--info .cont-access .unit-access {
  gap: 40px;
  width: 100%;
}
#shop--info .cont-access .unit-access-item {
  width: calc((100% - 40px) / 2);
}
#shop--info .cont-access .unit-access-item dt {
  text-align: center;
  background: url(../img/common/pattern__texture__a_04.png);
  width: 100%;
  padding: 10px;
  font-family: var(--fot--Noto-Serif);
  color: #fff;
  font-size: var(--font-size-28);
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: var(--margin-10);
}
#shop--info .cont-access .unit-access-item dd {
  padding: 0 10px;
  line-height: 1.5;
  font-weight: 500;
}
#shop--info .cont-access .unit-access-item dd p {
  margin-bottom: var(--margin-10);
}
#shop--info .cont-access .unit-access-item dd .note {
  position: relative;
  padding-left: 25px;
  line-height: 1.8;
}
#shop--info .cont-access .unit-access-item dd .note em {
  font-size: var(--font-size-20);
  font-weight: 400;
  margin-left: 10px;
  color: var(--col--main-01);
}
#shop--info .cont-access .unit-access-item dd .note::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background: var(--col--main-01);
  left: 2px;
  top: 7px;
  border-radius: 50%;
}

/* map
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#shop--map .inbox {
  padding: 0;
  width: 100%;
  height: 430px;
}
#shop--map iframe {
  width: 100%;
  height: 100%;
}

/* 共通ページ
////////////////////////////////////////////////////////////////////////////////////////////////// */
/* 共通ページ 共通項目
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* 共通
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#contents-u,
#contact {
  background: url(../img/common/pattern__texture__a_01.png);
}
#contents-u .ttl01,
#contact .ttl01 {
  position: relative;
  margin-bottom: var(--margin-60);
  text-align: center;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 60px;
}
#contents-u .ttl01::before,
#contact .ttl01::before {
  content: "";
  position: absolute;
  width: 25px;
  border-bottom: 1px solid var(--col--main-01);
  left: 50%;
  translate: -50% 0;
  bottom: -20px;
}
#contents-u .ttl01 .ja,
#contact .ttl01 .ja {
  font-size: var(--font-size-40);
  font-weight: 500;
  letter-spacing: 0.1em;
  font-family: var(--fot--Noto-Serif);
}
#contents-u .ttl01 .en,
#contact .ttl01 .en {
  margin: 0 auto;
  display: block;
  width: fit-content;
  display: none;
}

/* お問い合わせ完了
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#contents-u.complete .complete-box {
  text-align: center;
  line-height: 1.7;
}
#contents-u.complete .complete-box a {
  color: var(--col--main-01);
}

/* ページが見つかりません
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#contents-u.notfound {
  text-align: center;
  line-height: 1.6;
}
#contents-u.notfound a {
  color: var(--col--main-01);
}

/* プライバシーポリシー
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#contents-u.privacy .ttl02 {
  position: relative;
  font-size: 24px;
  color: var(--col--main-01);
  padding-left: 20px;
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 1.6;
}
#contents-u.privacy .ttl02::before {
  content: "";
  position: absolute;
  border-left: 2px solid var(--col--main-01);
  width: fit-content;
  height: 100%;
  left: 0;
}
#contents-u.privacy p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}
#contents-u.privacy ul {
  margin-top: 10px;
  margin-bottom: 10px;
}
#contents-u.privacy ul li {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  #contents-u.privacy .ttl02 {
    position: relative;
    font-size: 4.6vw;
    color: var(--col--main-01);
    padding-left: 13px;
    margin-bottom: 10px;
    font-weight: 500;
    line-height: 1.6;
  }
  #contents-u.privacy .ttl02::before {
    content: "";
    position: absolute;
    border-left: 2px solid var(--col--main-01);
    width: fit-content;
    height: 100%;
    left: 0;
  }
  #contents-u.privacy p {
    font-size: 4vw;
    font-weight: 400;
    line-height: 2;
  }
  #contents-u.privacy ul {
    margin-top: 2vw;
    margin-bottom: 2vw;
  }
  #contents-u.privacy ul li {
    font-size: 4vw;
    font-weight: 400;
    line-height: 2;
    margin-bottom: 5px;
  }
}

/* お問い合わせ
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#contact table {
  width: 100%;
  margin-bottom: 16px;
  border-collapse: collapse;
}
#contact table tr td,
#contact table tr th {
  font-size: var(--font-size-15);
  padding: 10px;
  vertical-align: middle;
  text-align: left;
  font-weight: 400;
  border: 1px solid #dfdfdf;
}
#contact table tr th {
  width: 30%;
  color: #fff;
  background: var(--col--main-01);
}
#contact table tr td {
  width: 70%;
  background: #fff;
}
#contact table .required-mark {
  color: var(--col--main-01);
  font-size: 13px;
  border-radius: 0;
  background: #fff;
}
@media screen and (max-width: 768px) {
  #contact table {
    border-collapse: separate;
  }
  #contact table tr {
    margin-bottom: 5vw;
  }
  #contact table tr td,
  #contact table tr th {
    font-size: 4vw;
    padding: 4vw;
    text-align: left;
    font-weight: 400;
    border: 1px solid #dfdfdf;
  }
  #contact table tr th {
    width: 100%;
    color: #fff;
    background: var(--col--main-01);
  }
  #contact table tr td {
    width: 100%;
    background: #fff;
  }
  #contact table tr textarea,
  #contact table tr input {
    font-size: 4vw;
    padding: 4vw;
  }
  #contact table .required-mark {
    font-weight: 500;
    color: var(--col--main-01);
    font-size: 3.5vw;
    border-radius: 0;
    background: #fff;
  }
}
#contact label[for=agree] a {
  color: var(--col--main-01);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--col--main-01);
}
#contact .contact-btn.contact-submits-wrap button[type=button] {
  border: unset;
  background: var(--col--main-01);
  transition: ease 0.2s;
}
#contact .contact-btn.contact-submits-wrap button[type=button]:hover {
  opacity: 0.6;
}
#contact input[type=button],
#contact input[type=submit] {
  color: #fff;
  background: var(--col--main-01);
  font-size: 16px;
  transition: ease 0.2s;
}
@media screen and (max-width: 768px) {
  #contact input[type=button],
  #contact input[type=submit] {
    width: 95%;
    font-size: 4vw;
    margin-bottom: 2vw;
  }
}
#contact input[type=button]:hover,
#contact input[type=submit]:hover {
  opacity: 0.7;
}
#contact button[type=button] {
  color: #fff;
  background: var(--col--main-01);
  font-size: 16px;
  margin: 0 4px;
  padding: 1em 2em;
  cursor: pointer;
  border: unset;
  transition: ease 0.2s;
}
@media screen and (max-width: 768px) {
  #contact button[type=button] {
    width: 95%;
    font-size: 4vw;
    margin-bottom: 2vw;
  }
}
#contact button[type=button] :hover {
  opacity: 0.7;
}
#contact input[type=button][disabled],
#contact input[type=submit][disabled] {
  color: #777;
  opacity: 0.7;
  background: #ccc;
}

/* お知らせ一覧
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#contents-u.post .cont-latest .unit-latest {
  position: relative;
  padding-bottom: var(--margin-20);
  border-bottom: 1px solid #ccc;
  margin-bottom: var(--margin-20);
  transition: ease 0.2s;
  width: 100%;
}
#contents-u.post .cont-latest .unit-latest a {
  width: 100%;
  height: 100%;
}
#contents-u.post .cont-latest .unit-latest .unit-latest-text {
  width: 100%;
}
#contents-u.post .cont-latest .unit-latest .unit-latest-text.on_thumb {
  width: 85%;
}
#contents-u.post .cont-latest .unit-latest .item-ttl {
  order: 3;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: var(--font-size-16);
}
#contents-u.post .cont-latest .unit-latest .item-time {
  order: 1;
  width: fit-content;
  font-size: var(--font-size-16);
  margin-right: var(--margin-20);
  margin-bottom: var(--margin-10);
}
#contents-u.post .cont-latest .unit-latest .tag_list {
  order: 2;
  width: 70%;
  gap: 10px;
  margin-bottom: var(--margin-10);
}
#contents-u.post .cont-latest .unit-latest .tag_list-item {
  width: fit-content;
  height: fit-content;
  padding: 0 10px;
  border-left: 1px solid var(--col--main-01);
  border-right: 1px solid var(--col--main-01);
  font-size: var(--font-size-16);
  color: var(--col--main-01);
}
#contents-u.post .cont-latest .unit-latest .unit-latest-img {
  height: 130px;
  width: 130px;
  margin-right: 30px;
}
#contents-u.post .cont-latest .unit-latest .item-thumb {
  height: 130px;
  width: 130px;
}
#contents-u.post .cont-latest .unit-latest:hover {
  color: var(--col--main-01);
  opacity: 0.7;
}

.tag-select-box {
  border: unset;
}
.tag-select-box #tag-select {
  border-bottom: unset;
  background: #fff;
  font-size: 13px;
}

/* お知らせ個別記事
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#contents-u.s-post .inbox #s-post .s-post-taglist {
  gap: 10px 15px;
}
@media screen and (max-width: 767px) {
  #contents-u.s-post .inbox #s-post .s-post-taglist {
    gap: 1vw 3vw;
  }
}
#contents-u.s-post .inbox #s-post .s-post-taglist .tag-name {
  width: fit-content;
  height: fit-content;
  padding: 0 10px;
  border-left: 1px solid var(--col--main-01);
  border-right: 1px solid var(--col--main-01);
  font-size: var(--font-size-16);
  color: var(--col--main-01);
}
#contents-u.s-post .inbox #s-post .s-post-ttl {
  margin: unset;
  position: relative;
  font-size: 24px;
  color: var(--col--main-01);
  padding-left: 13px;
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 20px;
}
#contents-u.s-post .inbox #s-post .s-post-ttl::before {
  content: "";
  position: absolute;
  border-left: 2px solid var(--col--main-01);
  width: fit-content;
  height: 100%;
  left: 0;
}
#contents-u.s-post .inbox #s-post .post-txt .sb-post-body p {
  font-size: 16px;
  line-height: 1.9;
}
#contents-u.s-post .inbox #s-post .post-txt .s-time-tag {
  margin-top: 50px;
}
#contents-u.s-post .page-btn :is(.left, .text-c, .right) a {
  font-size: 14px;
  color: var(--col--main-01);
}
@media screen and (max-width: 768px) {
  #contents-u.s-post .page-btn :is(.left, .text-c, .right) a {
    font-size: 3.4vw;
  }
}
#contents-u.s-post .page-btn .text-c {
  text-align: center;
}/*# sourceMappingURL=style.css.map */