@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.06em;
  /* 文章(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: 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;
  }
}

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

/* ボタン
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* 共通ボタン：フォルム */
.com--btn-01 {
  position: relative;
  --width: 280px;
  --height: 60px;
  --font-size: var(--font-size-15);
  --color: inherit;
  --background: inherit;
  border: 1px solid var(--col--txt-01);
  width: var(--width);
  height: var(--height);
  background: var(--background);
}
.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-white {
  --color: var(--col--txt-01);
  --background: #fff;
  background: none;
  border: 1px solid var(--col--txt-01);
}
.btn-color-white span {
  color: var(--color);
}

.btn-color-green {
  --color: #fff;
  --background: var(--col--main-01);
  background: var(--background);
  border: 1px solid var(--background);
  transition: ease 0.25s;
}
.btn-color-green span {
  color: var(--color);
  transition: ease 0.25s;
}

.btn-color-black {
  --color: #fff;
  --background: var(--col--txt-01);
  background: var(--background);
  border: 1px solid var(--background);
  transition: ease 0.25s;
}
.btn-color-black span {
  color: var(--color);
  transition: ease 0.25s;
}

/* 共通ボタン：装飾パック */
.btn-arrow-01 {
  position: relative;
}
.btn-arrow-01::before {
  pointer-events: none;
  z-index: -1;
  content: "";
  position: absolute;
  width: 5vw;
  height: 5vw;
  border-radius: 50%;
  background: var(--col--acc-01);
  right: -5vw;
}
.btn-arrow-01::after {
  pointer-events: none;
  content: "";
  position: absolute;
  background: url(../img/common/icon__arrow__a_01.png) center center/contain no-repeat;
  width: 41px;
  height: 9px;
  right: -34px;
  top: 47%;
  translate: 0 -50%;
}

.btn-color-white.btn-arrow-01 {
  position: relative;
  transition: ease 0.2s;
}
.btn-color-white.btn-arrow-01 span {
  transition: ease 0.2s;
}
.btn-color-white.btn-arrow-01::before {
  pointer-events: none;
  z-index: -1;
  content: "";
  position: absolute;
  width: 8vw;
  height: 8vw;
  border-radius: 50%;
  background: var(--col--acc-01);
  right: -3vw;
  transition: ease 0.2s;
}
.btn-color-white.btn-arrow-01::after {
  pointer-events: none;
  content: "";
  position: absolute;
  background: url(../img/common/icon__arrow__a_01.png) center center/contain no-repeat;
  width: 7vw;
  height: 5vw;
  right: -5vw;
  top: 47%;
  translate: 0 -50%;
  transition: ease 0.2s;
}

.btn-color-green.btn-arrow-02 {
  position: relative;
}
.btn-color-green.btn-arrow-02::before {
  position: absolute;
  content: "";
  background: url(../img/common/icon__arrow__a_02.png) center center/contain no-repeat;
  width: 5vw;
  height: 5vw;
  right: 5vw;
  top: 45%;
  translate: 0 -50%;
  transition: ease 0.2s;
}

.btn-color-black.btn-arrow-02 {
  position: relative;
}
.btn-color-black.btn-arrow-02::before {
  position: absolute;
  content: "";
  background: url(../img/common/icon__arrow__a_02.png) center center/contain no-repeat;
  width: 5vw;
  height: 5vw;
  right: 5vw;
  top: 45%;
  translate: 0 -50%;
  transition: ease 0.2s;
}

/* 電話番号
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
.com--tel {
  --font-size: var(--font-size-19);
  --color: inherit;
  --font-size-small: 3vw;
  --color-small: var(--col--main-01);
  position: relative;
  width: fit-content;
}
.com--tel .note {
  width: fit-content;
  font-size: 3vw;
  margin-bottom: 4px;
}
.com--tel .tel-num {
  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);
  font-weight: 600;
}
.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: 6.5vw;
  }
  .com--tel .tel-attention {
    height: 3vw;
  }
}

/* 営業時間 定休日
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
.com--times {
  --font-size: inherit;
  --color: var(--col--txt-01);
  --background: inherit;
  color: var(--color);
  font-size: var(--font-size);
  background: var(--background);
  width: fit-content;
  gap: 0;
  --font-size-dt: inherit;
  --font-size-dd: inherit;
  --color-dt: inherit;
  --color-dd: inherit;
  --background-dt: inherit;
  --background-dd: inherit;
}
.com--times-item {
  width: fit-content;
}
.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);
}

.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 {
  z-index: 5;
  width: fit-content;
  display: block;
  position: fixed;
  right: 0;
  bottom: 0;
}
.fixed_bnr:hover {
  opacity: 0.7;
  bottom: 8px;
}

.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 .hd--wrap {
  width: 100%;
  height: 70px;
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
}
#header .hd--wrap .cont-left {
  z-index: 5;
  position: fixed;
  left: 0;
  top: 0;
  width: fit-content;
}
#header .hd--wrap .cont-left .item-logo img {
  width: 37vw;
  padding-bottom: 1vw;
}
@media screen and (max-width: 767px) {
  #header .hd--wrap .cont-left {
    width: 100%;
  }
  #header .hd--wrap .cont-left .item-logo {
    margin-right: auto;
    padding-left: 3vw;
    padding-top: 3vw;
    width: fit-content;
  }
}
#header .hd--wrap .cont-right {
  width: fit-content;
}
@media screen and (max-width: 767px) {
  #header .hd--wrap .cont-right {
    display: none;
  }
}
#header .hd--wrap .unit-cont {
  height: 100px;
  width: fit-content;
}
#header .hd--wrap .unit-cont .unit-tel {
  background: #f5f5f5;
  width: fit-content;
  gap: 7px;
  padding: 10px;
  padding-right: 10px;
}
#header .hd--wrap .btn-contact {
  width: 135px;
  height: 100px;
  background: var(--col--main-01);
}
#header .hd--wrap .btn-contact span {
  position: relative;
  color: #fff;
  padding-top: 35px;
}
#header .hd--wrap .btn-contact span::before {
  content: "";
  position: absolute;
  background: url(../img/common/icon__mail__a_01.png) center center/contain no-repeat;
  width: 33px;
  height: 22px;
  left: 50%;
  translate: -50% 0;
  top: 0;
}
#header .hd--wrap #nav {
  margin-right: var(--margin-20);
}
#header .hd--wrap #nav .list-nav {
  gap: 30px;
}
#header .hd--wrap #nav .list-nav-item a .en {
  color: var(--col--main-01);
  font-size: var(--font-size-20);
  margin-bottom: 5px;
}
#header .hd--wrap #nav .list-nav-item a .ja {
  font-size: 12px;
}

#mv {
  position: relative;
  width: 100%;
  height: 130vw;
  margin-top: -10vw;
  margin-bottom: 10vw;
}
#mv .mv-img {
  position: absolute;
  background: url(../img/mv/mv__img_01_sp.png) center center/contain no-repeat;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
}
#mv .mv-catch {
  position: absolute;
  width: 90vw;
  bottom: 9vw;
  left: 0vw;
}

#sv {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 50vw;
}
#sv .sv-img {
  width: fit-content;
  margin: 0 auto;
  width: 160%;
  height: 50vw;
  margin-left: -35vw;
}
#sv .sv-catch {
  position: absolute;
  bottom: 0vw;
  left: 2vw;
  width: fit-content;
}
#sv .sv-catch .en {
  width: fit-content;
  display: block;
  color: #fff;
  font-size: 11vw;
  font-weight: 300;
  margin-bottom: 3vw;
}
#sv .sv-catch .ja {
  width: fit-content;
  display: block;
  background: #000;
  color: #fff;
  font-size: 5vw;
  font-weight: 400;
  letter-spacing: 0.06em;
  padding: 1vw 3vw;
}

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

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

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

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

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

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

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

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

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

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

/* TOP トップページ
////////////////////////////////////////////////////////////////////////////////////////////////// */
.com--ttl03-01 .en {
  margin-bottom: var(--margin-25);
}
.com--ttl03-01 .ja {
  font-size: var(--font-size-22);
  letter-spacing: 0.08em;
}

.wrap-section-allover {
  position: relative;
  overflow: hidden;
}

/* worries
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━　*/
#top--worries {
  position: relative;
  z-index: 0;
}
#top--worries .ttl03 {
  position: relative;
  margin-left: auto;
  margin-bottom: var(--margin-80);
  margin-left: 4vw;
}
#top--worries .ttl03::after {
  z-index: -1;
  content: "";
  position: absolute;
  background: url(../img/common/deco__flower__a_02.png) center center/contain no-repeat;
  width: 32vw;
  height: 34vw;
  left: -22vw;
  top: -3vw;
  scale: -1 1;
}
#top--worries .ttl03 .en img {
  height: 9vw;
}
#top--worries .ttl03 .ja {
  font-size: 5.2vw;
}
#top--worries .cont-worry {
  position: relative;
  margin-left: auto;
}
#top--worries .cont-worry .item-img {
  position: relative;
  width: 60%;
  margin-left: 48vw;
  margin-top: -47vw;
  z-index: -1;
}
#top--worries .cont-worry .item-img img {
  width: fit-content;
}
#top--worries .cont-worry .list-worry {
  position: relative;
  width: 100%;
  margin-top: -30vw;
}
#top--worries .cont-worry .list-worry::before {
  content: "";
  position: absolute;
  background: url(../img/common/deco__flower__a_01.png) center center/contain no-repeat;
  width: 56vw;
  height: 61vw;
  right: -31vw;
  bottom: -31vw;
  scale: -1 1;
}
#top--worries .cont-worry .list-worry-item {
  position: relative;
  letter-spacing: 0.06em;
  font-size: var(--font-size-20);
  padding-bottom: var(--margin-20);
  border-bottom: 1px solid #ccc;
  margin-bottom: var(--margin-35);
  padding-left: 6vw;
  line-height: 1.7;
}
#top--worries .cont-worry .list-worry-item::before {
  content: "";
  position: absolute;
  background: url(../img/common/icon__check__a_01.png) center center/contain no-repeat;
  width: 4.2vw;
  height: 4.2vw;
  left: 0;
  top: 2vw;
  translate: 0 0;
}
#top--worries .cont-worry .list-worry-item .str-01 {
  font-weight: 400;
  background: linear-gradient(180deg, rgba(255, 246, 128, 0) 70%, #fff680 70%);
}

/* cutting
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━　*/
#top--cutting {
  position: relative;
  z-index: 0;
}
#top--cutting .inbox {
  position: relative;
}
#top--cutting::before {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  translate: -50% 0;
  background: #f0f4ed;
}
#top--cutting .ttl03 {
  margin-bottom: var(--margin-55);
}
#top--cutting .ttl03 .en img {
  height: 8vw;
}
#top--cutting .ttl03 .ja {
  line-height: 1.7;
}
#top--cutting .cont-intro {
  position: relative;
}
#top--cutting .cont-intro .item-img {
  position: relative;
  margin-bottom: 10vw;
  width: 95%;
}
#top--cutting .cont-intro .item-img img {
  width: 100%;
}
#top--cutting .cont-intro .item-img::before {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid var(--col--main-01);
  right: -5vw;
  bottom: -5vw;
}
#top--cutting .cont-intro .item-img::after {
  z-index: 1;
  content: "";
  position: absolute;
  background: url(../img/common/deco__flower__a_03.png) center center/contain no-repeat;
  width: 31vw;
  height: 38vw;
  right: -18vw;
  bottom: -8vw;
}
#top--cutting .cont-intro .item-text br {
  display: none;
}

/* feature
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━　*/
#top--feature .ttl03 {
  width: fit-content;
  margin: 0 auto;
  text-align: center;
  margin-bottom: var(--margin-50);
}
#top--feature .ttl03 .en {
  margin-bottom: 4.5vw;
}
#top--feature .ttl03 .en img {
  height: 9vw;
}
#top--feature .cont-feature .list-feature {
  margin-bottom: var(--margin-50);
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5vw;
}
#top--feature .cont-feature .list-feature-item {
  width: calc((100% - 5vw) / 2);
  gap: 5vw;
}
#top--feature .cont-feature .list-feature-item .ttl04 {
  order: 2;
  text-align: center;
}
#top--feature .cont-feature .list-feature-item .ttl04 .ja {
  font-size: var(--font-size-20);
  line-height: 1.6;
}
#top--feature .cont-feature .list-feature-item .item-img {
  order: 1;
  width: 100%;
}
#top--feature .cont-feature .com--btn-01 {
  margin: 0 auto;
}

/* about
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━　*/
#top--about {
  position: relative;
  z-index: 0;
  background: url(../img/common/bg__img_01.jpg) center center/cover no-repeat;
}
#top--about .wrap-cont {
  z-index: 0;
  padding: 10vw 5vw;
  background: #fff;
}
#top--about .wrap-cont .ttl03 {
  margin-bottom: var(--margin-30);
}
#top--about .wrap-cont .ttl03 .ja {
  text-align: center;
  font-size: var(--font-size-24);
  line-height: 2;
  letter-spacing: 0.04em;
}
#top--about .wrap-cont .ttl03 .ja .str-01 {
  color: var(--col--main-01);
  font-size: var(--font-size-22);
}
#top--about .wrap-cont .ttl03 .ja .str-02 {
  font-weight: 400;
  background: linear-gradient(180deg, rgba(255, 246, 128, 0) 60%, #fff680 60%);
}
#top--about .wrap-cont .cont-about {
  position: relative;
  z-index: 0;
}
#top--about .wrap-cont .cont-about .item-text {
  text-align: left;
  margin-bottom: var(--margin-40);
}
#top--about .wrap-cont .cont-about .item-text br {
  display: none;
}
#top--about .wrap-cont .cont-about .list-point {
  margin-bottom: var(--margin-50);
  gap: 5vw;
  flex-wrap: wrap;
}
#top--about .wrap-cont .cont-about .list-point-item {
  position: relative;
  border-radius: 50%;
  border: 1px solid var(--col--main-01);
  width: calc((100% - 5vw) / 2);
  justify-content: center;
  aspect-ratio: 1;
}
#top--about .wrap-cont .cont-about .list-point-item::before {
  content: "";
  position: absolute;
  background: url(../img/common/deco__flower__b_01.png) center center/contain no-repeat;
  width: 13vw;
  height: 11vw;
  left: -1vw;
  top: 2vw;
}
#top--about .wrap-cont .cont-about .list-point-item .ttl04 {
  margin-top: var(--margin-20);
  margin-bottom: var(--margin-15);
}
#top--about .wrap-cont .cont-about .list-point-item .ttl04 .num {
  color: var(--col--main-01);
  font-size: var(--font-size-32);
}
#top--about .wrap-cont .cont-about .list-point-item .ttl04 .num small {
  font-size: 3vw;
  padding-bottom: 1.2vw;
}
#top--about .wrap-cont .cont-about .list-point-item .item-text {
  text-align: center;
  font-size: var(--font-size-15);
}
#top--about .wrap-cont .cont-about .com--btn-01 {
  margin: 0 auto;
}

/* subpages
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━　*/
#top--subpages {
  z-index: 0;
  position: relative;
}
#top--subpages .inbox {
  gap: 10vw;
  padding: 15vw 0 15vw;
  flex-direction: column;
}
#top--subpages .cont-subpage {
  position: relative;
  width: 100%;
  height: 30vw;
}
#top--subpages .cont-subpage a {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}
#top--subpages .cont-subpage a::before {
  content: "";
  position: absolute;
  width: calc(100% - 2vw);
  height: calc(100% - 2vw);
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  border: 1px solid #fff;
}
#top--subpages .cont-subpage .ttl03 {
  position: relative;
  text-align: center;
  margin-bottom: var(--margin-20);
}
#top--subpages .cont-subpage .ttl03::before {
  content: "";
  position: absolute;
  width: 7vw;
  aspect-ratio: 1;
  background: var(--col--acc-01);
  border-radius: 50%;
  bottom: 2vw;
  translate: 0 100%;
  transition: ease 0.3s;
}
#top--subpages .cont-subpage .ttl03::after {
  content: "";
  position: absolute;
  background: url(../img/common/icon__arrow__a_01.png) center center/contain no-repeat;
  width: 5vw;
  height: 5vw;
  bottom: 1vw;
  left: 54%;
  translate: -50% 100%;
  transition: ease 0.3s;
}
#top--subpages .cont-subpage .ttl03 .en {
  color: #fff;
  font-weight: 300;
  font-size: 7vw;
  letter-spacing: 0.06em;
  margin-bottom: var(--margin-10);
}
#top--subpages .cont-subpage .ttl03 .ja {
  color: #fff;
  font-size: var(--font-size-17);
  margin-bottom: var(--margin-25);
}
#top--subpages .cont-subpage:hover .ttl03::before {
  opacity: 0.2;
}
#top--subpages .cont-subpage:hover .ttl03::after {
  left: 56%;
}
#top--subpages .cont-menu::before {
  z-index: -1;
  content: "";
  position: absolute;
  background: url(../img/common/deco__flower__a_04.png) center center/contain no-repeat;
  width: 59vw;
  height: 52vw;
  left: -24vw;
  bottom: -23vw;
}
#top--subpages .cont-menu a::after {
  z-index: -1;
  content: "";
  position: absolute;
  background: url(../img/top/top__subpages__img_01.png) center center/cover no-repeat rgba(65, 109, 25, 0);
  background-blend-mode: screen;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  scale: 1;
  transition: ease 0.3s;
}
#top--subpages .cont-menu a:hover::after {
  background: url(../img/top/top__subpages__img_01.png) center center/cover no-repeat rgba(65, 109, 25, 0.45);
  scale: 1.07;
}
#top--subpages .cont-organic::before {
  z-index: -2;
  content: "";
  position: absolute;
  background: url(../img/common/deco__flower__a_05.png) center center/contain no-repeat;
  width: 87vw;
  height: 63vw;
  right: -36vw;
  top: -26vw;
}
#top--subpages .cont-organic a::after {
  z-index: -1;
  content: "";
  position: absolute;
  background: url(../img/top/top__subpages__img_02.png) center center/cover no-repeat rgba(65, 109, 25, 0);
  background-blend-mode: screen;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  scale: 1;
  transition: ease 0.3s;
}

/* contact
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━　*/
.common--contact .inbox {
  width: 100%;
  padding: 5vw;
}
.common--contact .wrap-cont {
  z-index: 0;
  position: relative;
  width: 95%;
  outline: 1px solid var(--col--txt-01);
  border: 3vw solid #fff;
  background: #f0f0f0;
  padding: 5vw;
}
.common--contact .wrap-cont::before {
  z-index: -1;
  content: "";
  position: absolute;
  background: url(../img/common/deco__flower__a_06.png) center center/contain no-repeat;
  width: 59vw;
  height: 71vw;
  left: -38vw;
  bottom: -28vw;
}
.common--contact .wrap-cont::after {
  z-index: -1;
  content: "";
  position: absolute;
  background: url(../img/common/deco__flower__a_07.png) center center/contain no-repeat;
  width: 38vw;
  height: 43vw;
  right: -21vw;
  top: -19vw;
}
.common--contact .wrap-cont .ttl03 {
  width: fit-content;
  margin: 0 auto;
  text-align: center;
  margin-bottom: var(--margin-40);
}
.common--contact .wrap-cont .ttl03 .en img {
  height: 9vw;
}
.common--contact .wrap-cont .unit-tel {
  padding: 4vw;
  margin: 0 auto;
  width: 100%;
  background: #fff;
  margin-bottom: var(--margin-30);
  gap: 5vw;
  flex-direction: column;
}
.common--contact .wrap-cont .unit-tel small {
  margin-right: 5px;
}
.common--contact .wrap-cont .unit-contact {
  gap: 4vw;
  flex-direction: column;
}

/* news
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━　*/
#top--news .inbox {
  position: relative;
}
#top--news .ttl03 {
  position: relative;
  text-align: center;
  margin-bottom: 5vw;
}
#top--news .ttl03 .en img {
  height: 10vw;
}
#top--news .cont-latest {
  position: relative;
  margin-bottom: 10vw;
}
#top--news .unit-latest {
  position: relative;
  right: 0;
}
#top--news .unit-latest a {
  position: relative;
  width: 100%;
  height: 100%;
  margin-bottom: var(--margin-25);
}
#top--news .unit-latest .unit-latest-text {
  width: 100%;
}
#top--news .unit-latest .unit-latest-text.on_thumb {
  width: 85%;
}
@media screen and (max-width: 767px) {
  #top--news .unit-latest .unit-latest-text.on_thumb {
    width: 70%;
  }
}
#top--news .unit-latest .item-ttl {
  order: 2;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 3vw;
}
#top--news .unit-latest .item-time {
  order: 1;
  width: fit-content;
  margin-bottom: 3vw;
}
#top--news .unit-latest .tag_list {
  order: 3;
  width: 100%;
  gap: 3vw;
  margin-bottom: 3vw;
  justify-content: end;
}
#top--news .unit-latest .tag_list-item {
  width: fit-content;
  height: fit-content;
  font-size: var(--font-size-14);
  color: var(--col--main-01);
}
#top--news .unit-latest .unit-latest-img {
  height: 130px;
  width: 130px;
  margin-right: 30px;
}
@media screen and (max-width: 767px) {
  #top--news .unit-latest .unit-latest-img {
    height: 20vw;
    width: 20vw;
    margin-right: 2vw;
  }
}
#top--news .unit-latest .item-thumb {
  height: 130px;
  width: 130px;
}
@media screen and (max-width: 767px) {
  #top--news .unit-latest .item-thumb {
    height: 20vw;
    width: 20vw;
    margin-right: 2vw;
  }
}
#top--news .unit-latest:hover {
  right: -10px;
}
#top--news .com--btn-01 {
  margin: 0 auto;
}

/* footer フッター
////////////////////////////////////////////////////////////////////////////////////////////////// */
#footer {
  background: #d9d9d9;
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
}
#footer .inbox {
  padding: 9vw 0;
}
@media screen and (max-width: 767px) {
  #footer .inbox {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  #footer .cont-left {
    width: 100%;
  }
}
#footer .item-logo {
  display: block;
  width: fit-content;
  margin-bottom: var(--margin-40);
}
#footer .item-logo img {
  width: 49vw;
}
#footer .unit-tel {
  padding: 5vw;
  background: #fff;
  margin-bottom: var(--margin-40);
  gap: 4vw;
  flex-direction: column;
}
#footer .btn-mail {
  width: 100%;
  margin-right: 7vw;
}
#footer .list-sns {
  width: fit-content;
  gap: 7vw;
}
#footer .list-sns-item {
  width: fit-content;
}
#footer .list-sns-item img {
  width: 15vw;
}
@media screen and (max-width: 767px) {
  #footer .cont-right {
    width: 100%;
  }
}
#footer .list-nav {
  width: fit-content;
  height: 240px;
}
#footer .list-nav-item {
  width: fit-content;
  margin-bottom: var(--margin-20);
  border-left: 1px solid #ccc;
  padding-left: 20px;
}
#footer .list-nav-item .en {
  color: var(--col--main-01);
  margin-right: var(--margin-10);
}
#footer .list-nav-item .ja {
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  #footer .list-nav {
    display: none;
  }
}
#footer #copyright {
  font-size: var(--font-size-13);
  text-align: center;
}
#footer #copyright a {
  margin: 0 2px;
  padding: 0 5px;
  transition: ease 0.12s;
}
#footer #copyright a:hover {
  color: #fff;
  background: 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
////////////////////////////////////////////////////////////////////////////////////////////////// */
.com--ttl03-02 {
  width: fit-content;
  margin: 0 auto;
  margin-bottom: var(--margin-60);
}
.com--ttl03-02 .en {
  display: block;
  width: fit-content;
  font-size: 8.5vw;
  font-weight: 300;
  color: var(--col--main-01);
  letter-spacing: 0.06em;
  margin-bottom: var(--margin-25);
}
.com--ttl03-02 .ja {
  display: block;
  width: fit-content;
  font-weight: 500;
  font-size: var(--font-size-20);
  letter-spacing: 0.06em;
}

/* about
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* worries
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#about--worries {
  position: relative;
  z-index: 0;
}
#about--worries .cont-feature .list-feature-item {
  position: relative;
  margin-bottom: 12vw;
  display: flex;
  flex-direction: column;
}
#about--worries .cont-feature .list-feature-item:last-child {
  margin-bottom: 0;
}
#about--worries .cont-feature .list-feature-item .ttl04 {
  order: 2;
  height: 12vw;
  width: 100%;
  background: #f0f4ed;
  margin-bottom: var(--margin-20);
}
#about--worries .cont-feature .list-feature-item .ttl04 .ja {
  font-size: var(--font-size-21);
  color: var(--col--main-01);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-align: center;
}
#about--worries .cont-feature .list-feature-item .item-img {
  order: 1;
  position: relative;
  width: 100%;
  margin-bottom: 7vw;
}
#about--worries .cont-feature .list-feature-item .item-img img {
  width: 100%;
}
#about--worries .cont-feature .list-feature-item .item-text {
  order: 3;
}
#about--worries .cont-feature .list-feature-item .item-text p {
  font-size: var(--font-size-16);
}
#about--worries .cont-feature .list-feature-item:nth-of-type(odd) .ttl04 {
  margin-left: auto;
}
#about--worries .cont-feature .list-feature-item:nth-of-type(odd) .item-img {
  left: 0;
  top: 0;
}
#about--worries .cont-feature .list-feature-item:nth-of-type(odd) .item-img::before {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid var(--col--main-01);
  left: -3vw;
  bottom: -3vw;
}
#about--worries .cont-feature .list-feature-item:nth-of-type(odd) .item-img::after {
  z-index: -1;
  content: "";
  position: absolute;
  background: url(../img/common/deco__flower__a_08.png) center center/contain no-repeat;
  width: 40vw;
  height: 50vw;
  left: -21vw;
  bottom: -13vw;
}
#about--worries .cont-feature .list-feature-item:nth-of-type(odd) .item-text {
  margin-left: auto;
}
#about--worries .cont-feature .list-feature-item:nth-of-type(even) .ttl04 {
  margin-right: auto;
}
#about--worries .cont-feature .list-feature-item:nth-of-type(even) .item-img {
  right: 0;
  top: 0;
}
#about--worries .cont-feature .list-feature-item:nth-of-type(even) .item-img::before {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid var(--col--main-01);
  right: -3vw;
  bottom: -3vw;
}
#about--worries .cont-feature .list-feature-item:nth-of-type(even) .item-img::after {
  z-index: -1;
  content: "";
  position: absolute;
  background: url(../img/common/deco__flower__a_09.png) center center/contain no-repeat;
  width: 40vw;
  height: 50vw;
  right: -21vw;
  bottom: -13vw;
}
#about--worries .cont-feature .list-feature-item:nth-of-type(even) .item-text {
  margin-right: auto;
}

/* info
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
.com--table-01 {
  width: 100%;
}
.com--table-01 tr {
  width: 100%;
}
.com--table-01 tr th,
.com--table-01 tr td {
  padding: 4vw 3vw;
  border-top: 1px solid #8c8c8c;
  border-bottom: 1px solid #8c8c8c;
  font-size: 3.6vw;
  line-height: 1.8;
}
.com--table-01 tr th {
  vertical-align: middle;
  color: var(--col--main-01);
  width: 30%;
}
.com--table-01 tr td {
  width: 70%;
}

#about--info {
  background: #f0f4ed;
}
#about--info .cont-info {
  margin-bottom: var(--margin-50);
}
#about--info .cont-map {
  width: 100%;
}
#about--info .cont-map .ttl04 {
  padding-left: 4vw;
  border-left: 1px solid var(--col--main-01);
  margin-bottom: var(--margin-40);
}
#about--info .cont-map .ttl04 .ja {
  font-size: var(--font-size-25);
  color: var(--col--main-01);
  letter-spacing: 0.06em;
}
#about--info .cont-map .item-map {
  width: 100%;
  height: 60vw;
  min-height: 200px;
}
#about--info .cont-map .item-map iframe {
  width: 100%;
  height: 100%;
}

/* menu
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* menu
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#menu .cont-post .unit-post {
  background: #f0f4ed;
  padding: 5vw;
  margin-bottom: var(--margin-60);
}
#menu .cont-post .unit-post:last-child {
  margin-bottom: 0;
}
#menu .cont-post .unit-post .ttl04 {
  padding-left: 20px;
  border-left: 2px solid var(--col--main-01);
  margin-bottom: var(--margin-30);
}
#menu .cont-post .unit-post .ttl04 .ja {
  color: var(--col--main-01);
  font-size: var(--font-size-27);
  letter-spacing: 0.08em;
  font-weight: 500;
  line-height: 1.9;
}
#menu .cont-post .unit-post .list-menu {
  margin-bottom: var(--margin-20);
  width: 100%;
}
#menu .cont-post .unit-post .list-menu-item {
  padding: 4vw 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  line-height: 1.8;
  align-items: end;
  flex-direction: column;
}
#menu .cont-post .unit-post .list-menu-item dt {
  width: 100%;
}
#menu .cont-post .unit-post .list-menu-item dd {
  width: 100%;
  font-size: var(--font-size-16);
  text-align: end;
  line-height: 1.8;
  display: flex;
  flex-direction: row;
}
#menu .cont-post .unit-post .list-menu-item dd .note {
  padding: 0px 1vw;
  color: #fff;
  font-size: 14px;
  background: var(--col--main-01);
  margin-right: var(--margin-10);
}
#menu .cont-post .unit-post .item-note {
  color: #595959;
  font-size: var(--font-size-14);
  line-height: 2;
}

/* cutting
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* about
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#cutting--about .inbox {
  padding: 15vw 0 7vw;
}
#cutting--about .cont-about {
  z-index: 0;
  position: relative;
  padding: 5vw;
  background: #f0f4ed;
}
#cutting--about .cont-about .ttl03 {
  margin: 0 auto;
  width: fit-content;
  text-align: center;
  margin-bottom: var(--margin-30);
}
#cutting--about .cont-about .ttl03 .ja {
  color: var(--col--main-01);
  font-size: var(--font-size-30);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
#cutting--about .cont-about .item-img {
  position: relative;
  margin: 0 auto;
  width: 61vw;
  margin-bottom: 7vw;
}
#cutting--about .cont-about .item-img img {
  width: 100%;
}
#cutting--about .cont-about .item-img::before {
  z-index: -1;
  content: "";
  position: absolute;
  width: calc(100% + 5vw);
  height: calc(100% + 5vw);
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  border: 1px solid var(--col--main-01);
}
#cutting--about .cont-about .item-img::after {
  z-index: -1;
  content: "";
  position: absolute;
  background: url(../img/common/deco__flower__a_10.png) center center/contain no-repeat;
  width: 52vw;
  height: 61vw;
  right: -31vw;
  bottom: -15vw;
}
#cutting--about .cont-about .item-text p {
  font-size: var(--font-size-16);
}
#cutting--about .cont-about .item-text p br {
  display: none;
}

/* merit
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#cutting--merit .inbox {
  padding: 7vw 0 15vw;
}
#cutting--merit .cont-merit .list-merit {
  gap: 7vw;
}
#cutting--merit .cont-merit .list-merit-item {
  position: relative;
  padding-left: 6vw;
  width: 100%;
  font-size: var(--font-size-20);
  letter-spacing: 0.04em;
  border-bottom: 1px solid #ccc;
  padding-bottom: 2.5vw;
}
#cutting--merit .cont-merit .list-merit-item::before {
  content: "";
  position: absolute;
  background: url(../img/common/icon__check__a_01.png) center center/contain no-repeat;
  width: 4vw;
  height: 4vw;
  left: 0;
  top: 0;
}

/* before
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#cutting--before {
  background: #f0f4ed;
}
#cutting--before .cont-post .unit-post-item {
  position: relative;
  margin-bottom: var(--margin-60);
}
#cutting--before .cont-post .unit-post-item:last-child {
  margin-bottom: 0;
}
#cutting--before .cont-post .unit-post-item::before {
  content: "";
  position: absolute;
  background: url(../img/common/icon__arrow__b_01.png) center center/contain no-repeat;
  width: 5vw;
  height: 5vw;
  left: 36vw;
  top: 68%;
  translate: -50% -50%;
}
#cutting--before .cont-post .unit-post-item dt .item-img {
  position: relative;
  width: 32vw;
  height: 32vw;
}
#cutting--before .cont-post .unit-post-item dt .item-img figcaption {
  display: none;
  z-index: 1;
  position: absolute;
  font-weight: 500;
  width: 145px;
  height: 33px;
  text-align: center;
  font-size: var(--font-size-22);
  left: 0;
  top: 0;
  color: #fff;
  background: var(--col--main-01);
}
#cutting--before .cont-post .unit-post-item dd .item-img {
  position: relative;
  width: 50vw;
  height: 50vw;
}
#cutting--before .cont-post .unit-post-item dd .item-img figcaption {
  display: none;
  z-index: 1;
  position: absolute;
  font-weight: 500;
  width: 145px;
  height: 33px;
  text-align: center;
  font-size: var(--font-size-22);
  left: 0;
  top: 0;
  color: var(--col--main-01);
  background: var(--col--acc-01);
}

/* organic
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* worries
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#organic--worries .ttl03 {
  position: relative;
  margin-left: auto;
  margin-bottom: var(--margin-60);
  margin-left: 4vw;
}
#organic--worries .ttl03::after {
  z-index: -1;
  content: "";
  position: absolute;
  background: url(../img/common/deco__flower__a_02.png) center center/contain no-repeat;
  width: 32vw;
  height: 34vw;
  left: -22vw;
  top: -3vw;
  scale: -1 1;
}
#organic--worries .ttl03 .en {
  margin: 0;
  margin-right: auto;
  margin-bottom: 5vw;
}
#organic--worries .ttl03 .en img {
  height: 9vw;
}
#organic--worries .ttl03 .ja {
  margin: 0;
  margin-right: auto;
  font-size: 5.2vw;
}
#organic--worries .cont-worries {
  position: relative;
  margin-left: auto;
}
#organic--worries .cont-worries .item-img {
  position: relative;
  width: 60%;
  margin-left: 48vw;
  margin-top: -47vw;
  z-index: -1;
}
#organic--worries .cont-worries .item-img img {
  width: fit-content;
}
#organic--worries .cont-worries .list-worries {
  position: relative;
  width: 100%;
  margin-top: -30vw;
}
#organic--worries .cont-worries .list-worries::before {
  content: "";
  position: absolute;
  background: url(../img/common/deco__flower__a_01.png) center center/contain no-repeat;
  width: 32vw;
  height: 41vw;
  right: -16vw;
  bottom: -19vw;
  scale: -1 1;
}
#organic--worries .cont-worries .list-worries-item {
  position: relative;
  letter-spacing: 0.06em;
  font-size: var(--font-size-20);
  padding-bottom: var(--margin-20);
  border-bottom: 1px solid #ccc;
  margin-bottom: var(--margin-35);
  padding-left: 6vw;
  line-height: 1.7;
}
#organic--worries .cont-worries .list-worries-item::before {
  content: "";
  position: absolute;
  background: url(../img/common/icon__check__a_01.png) center center/contain no-repeat;
  width: 4.2vw;
  height: 4.2vw;
  left: 0;
  top: 2vw;
  translate: 0 0;
}
#organic--worries .cont-worries .list-worries-item .str-01 {
  font-weight: 400;
  background: linear-gradient(180deg, rgba(255, 246, 128, 0) 70%, #fff680 70%);
}

/* about
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#organic--about {
  background: #f0f4ed;
  position: relative;
}
#organic--about .ttl03 {
  margin-bottom: var(--margin-35);
}
#organic--about .ttl03 .ja {
  font-size: var(--font-size-30);
  color: var(--col--main-01);
  font-weight: 500;
  line-height: 1.4;
}
#organic--about .cont-about {
  position: relative;
}
#organic--about .cont-about .item-img {
  position: relative;
  margin-bottom: 7vw;
}
#organic--about .cont-about .item-img::before {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid var(--col--main-01);
  right: -3vw;
  bottom: -3vw;
}
#organic--about .cont-about .item-img::after {
  z-index: -1;
  content: "";
  position: absolute;
  background: url(../img/common/deco__flower__a_03.png) center center/contain no-repeat;
  width: 65vw;
  height: 75vw;
  right: -33vw;
  bottom: -16vw;
}
#organic--about .cont-about .item-text br {
  display: none;
}

/* product
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#organic--product .cont-post {
  width: 100%;
  gap: 5vw;
}
#organic--product .cont-post .unit-post {
  width: 100%;
}
#organic--product .cont-post .unit-post .item-img {
  order: 1;
  height: 55vw;
  width: 100%;
  margin-bottom: var(--margin-15);
}
#organic--product .cont-post .unit-post .ttl04 {
  order: 2;
  border-left: 2px solid var(--col--main-01);
  padding-left: 5vw;
  margin-bottom: var(--margin-10);
}
#organic--product .cont-post .unit-post .ttl04 .ja {
  font-weight: 500;
  font-size: var(--font-size-24);
  color: var(--col--main-01);
  line-height: 1.4;
}
#organic--product .cont-post .unit-post .item-text {
  order: 3;
}
#organic--product .cont-post .unit-post .item-text p {
  margin-bottom: 5px;
}
#organic--product .cont-post .unit-post .item-text .price {
  text-align: end;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--col--main-01);
}

/* 共通ページ
////////////////////////////////////////////////////////////////////////////////////////////////// */
/* 共通ページ 共通項目
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* 共通
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#contents-u .ttl01,
#contact .ttl01 {
  flex-direction: column-reverse;
  align-items: center;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: var(--margin-40);
  width: fit-content;
  margin: 0 auto;
  margin-bottom: var(--margin-70);
}
#contents-u .ttl01 .en,
#contact .ttl01 .en {
  display: block;
  width: fit-content;
  font-size: 9.5vw;
  font-weight: 300;
  color: var(--col--main-01);
  letter-spacing: 0.06em;
  margin-bottom: var(--margin-25);
}
#contents-u .ttl01 .ja,
#contact .ttl01 .ja {
  display: block;
  width: fit-content;
  font-weight: 500;
  font-size: var(--font-size-22);
  letter-spacing: 0.06em;
}

/* お問い合わせ完了
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#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;
  right: 0;
  width: 100%;
}
#contents-u.post .cont-latest .unit-latest a {
  position: relative;
  width: 100%;
  height: 100%;
  margin-bottom: var(--margin-25);
}
#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%;
}
@media screen and (max-width: 767px) {
  #contents-u.post .cont-latest .unit-latest .unit-latest-text.on_thumb {
    width: 70%;
  }
}
#contents-u.post .cont-latest .unit-latest .item-ttl {
  order: 2;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 3vw;
}
#contents-u.post .cont-latest .unit-latest .item-time {
  order: 1;
  width: fit-content;
  margin-bottom: 3vw;
}
#contents-u.post .cont-latest .unit-latest .tag_list {
  order: 3;
  width: 100%;
  gap: 3vw;
  margin-bottom: 3vw;
  justify-content: end;
}
#contents-u.post .cont-latest .unit-latest .tag_list-item {
  width: fit-content;
  height: fit-content;
  font-size: var(--font-size-14);
  color: var(--col--main-01);
}
#contents-u.post .cont-latest .unit-latest .unit-latest-img {
  height: 130px;
  width: 130px;
  margin-right: 30px;
}
@media screen and (max-width: 767px) {
  #contents-u.post .cont-latest .unit-latest .unit-latest-img {
    height: 20vw;
    width: 20vw;
    margin-right: 2vw;
  }
}
#contents-u.post .cont-latest .unit-latest .item-thumb {
  height: 130px;
  width: 130px;
}
@media screen and (max-width: 767px) {
  #contents-u.post .cont-latest .unit-latest .item-thumb {
    height: 20vw;
    width: 20vw;
    margin-right: 2vw;
  }
}
#contents-u.post .cont-latest .unit-latest:hover {
  right: -10px;
}

.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;
  font-size: var(--font-size-14);
  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_sp.css.map */