@charset "UTF-8";
@import url("../css/setting.css");
/* 初期設定
////////////////////////////////////////////////////////////////////////////////////////////////// */
:root {
  /* デフォルトフォント設定 */
  --def-font-size: var(--font-size-18);
  --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;
  /* 文章(p)の設定 */
  --def-p-lh: calc(30/18);
  --def-p-margin: var(--margin-30);
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  /* 各セクションinboxのデフォルトpadding */
  --def-inbox: 100px 0;
}

html {
  scroll-padding-top: 130px;
}

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: 430px;
  --height: 76px;
  --font-size: var(--font-size-18);
  --color: inherit;
  --background: inherit;
  font-weight: 700;
  border-radius: 38px;
  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;
  }
}

.com--btn-02 {
  position: relative;
  --width: 296px;
  --height: 60px;
  --font-size: var(--font-size-18);
  --color: inherit;
  --background: inherit;
  font-weight: 500;
  border-radius: 12px;
  width: var(--width);
  height: var(--height);
  background: var(--background);
  transition: ease 0.2s;
}
.com--btn-02 a {
  width: 100%;
  height: 100%;
}
.com--btn-02 span {
  position: relative;
  font-size: var(--font-size);
  color: var(--color);
}
@media screen and (max-width: 767px) {
  .com--btn-02 {
    --width: 95%;
    --height: 12.8vw;
    --font-size: 3.9vw;
    margin: 0 auto;
  }
}

/* 共通ボタン：カラーパック */
.com--btn-01.btn-color-orange {
  --color: #fff;
  --background: var(--col--acc-01);
  background: var(--background);
  box-shadow: 6px 6px 0px rgba(255, 121, 96, 0.4);
  transition: ease 0.25s;
  border: 1px solid var(--col--acc-01);
}
.com--btn-01.btn-color-orange span {
  color: var(--color);
}
.com--btn-01.btn-color-orange:hover {
  translate: 6px 6px;
  box-shadow: 0 0 0 rgba(255, 121, 96, 0.4);
  background: #fff;
}
.com--btn-01.btn-color-orange:hover span {
  color: var(--col--acc-01);
}

.com--btn-02.btn-color-green {
  --color: var(--col--txt-01);
  --background: #fff;
  background: var(--background);
  border: 1px solid #ade454;
  transition: ease 0.2s;
}
.com--btn-02.btn-color-green span {
  color: var(--color);
  transition: ease 0.2s;
}
.com--btn-02.btn-color-green:hover span {
  color: var(--col--txt-02);
}

.com--btn-02.btn-color-orange {
  --color: #fff;
  --background: #ff7960;
  background: var(--background);
  border: 1px solid #ff7960;
  transition: ease 0.2s;
}
.com--btn-02.btn-color-orange span {
  color: var(--color);
  transition: ease 0.2s;
}
.com--btn-02.btn-color-orange:hover {
  background: #fff;
}
.com--btn-02.btn-color-orange:hover span {
  color: var(--col--acc-01);
}

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

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

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

.btn-arrow-04::before {
  content: "";
  position: absolute;
  background: url(../img/common/icon__arrow__b_03.png) center center/contain no-repeat;
  width: 6px;
  height: 10px;
  rotate: 90deg;
  top: 50%;
  left: 30px;
  translate: 0 -50%;
  transition: ease 0.2s;
}
.btn-arrow-04:hover::before {
  opacity: 1;
  background: url(../img/common/icon__arrow__b_04.png) center center/contain no-repeat;
}

.btn-line-01 span {
  padding-left: 40px;
}
.btn-line-01 span::before {
  content: "";
  position: absolute;
  background: url(../img/common/icon__line_01.png) center center/contain no-repeat;
  width: 30px;
  height: 30px;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  transition: ease 0.2s;
}

.btn-mail-01 span {
  padding-left: 40px;
}
.btn-mail-01 span::before {
  content: "";
  position: absolute;
  background: url(../img/common/icon__mail__a_01.png) center center/contain no-repeat;
  width: 26px;
  height: 18px;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  transition: ease 0.2s;
}
.btn-mail-01:hover span::before {
  background: url(../img/common/icon__mail__a_02.png) center center/contain no-repeat;
}

/* 電話番号
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
.com--tel {
  --font-size: var(--font-size-34);
  --color: #7cc800;
  --font-size-small: inherit;
  --color-small: inherit;
  font-weight: 700;
  position: relative;
  width: fit-content;
}
.com--tel .tel-num {
  margin: 0 auto;
  width: fit-content;
  display: block;
  font-size: var(--font-size);
  color: var(--color);
  position: relative;
  padding-left: 30px;
}
.com--tel .tel-num small {
  font-size: var(--font-size-small);
  color: var(--color-small);
}
.com--tel .tel-num::before {
  content: "";
  position: absolute;
  background: url(../img/common/icon__tel__a_01.png) center center/contain no-repeat;
  width: 26px;
  height: 26px;
  top: 50%;
  left: 0;
  translate: 0 -50%;
}
.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: 7.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: var(--font-size-14);
  --font-size-dd: var(--font-size-16);
  --color-dt: #fff;
  --color-dd: inherit;
  --background-dt: #7cc800;
  --background-dd: inherit;
}
.com--times-item {
  width: fit-content;
  background: #e5f7c7;
  border-radius: 15px;
}
.com--times dt {
  width: fit-content;
  font-size: var(--font-size-dt);
  color: var(--color-dt);
  background: var(--background-dt);
  border-radius: 15px;
  padding: 6px 10px;
}
.com--times dd {
  width: fit-content;
  font-size: var(--font-size-dd);
  color: var(--color-dd);
  background: var(--background-dd);
  padding: 6px 10px;
}

.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: 10px;
  bottom: 10px;
  transition: ease 0.2s;
  width: 54px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid var(--col--acc-01);
  background: var(--col--acc-01);
  box-shadow: 3px 3px 0 0 #ffcec5;
}
.page_top::before {
  content: "";
  position: absolute;
  background: url(../img/common/icon__arrow__e_01.png) center center/contain no-repeat;
  width: 18px;
  height: 10px;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
}
.page_top:hover {
  background: #fff;
  opacity: 0.7;
  bottom: 14px;
}
.page_top:hover::before {
  background: url(../img/common/icon__arrow__e_02.png) center center/contain no-repeat;
}

/* 共通メッセージ
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
.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 {
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  height: 130px;
  min-width: 1280px;
  background: #fff;
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
}
#header .hd--wrap .cont-left {
  width: fit-content;
  padding-left: 30px;
}
#header .hd--wrap .cont-left .item-logo {
  transition: ease 0.2s;
}
#header .hd--wrap .cont-left .item-logo:hover {
  opacity: 0.4;
}
@media screen and (max-width: 767px) {
  #header .hd--wrap .cont-left {
    width: 100%;
  }
  #header .hd--wrap .cont-left .item-logo {
    margin: 0 auto;
    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 {
  margin-bottom: 15px;
}
#header .hd--wrap .com--tel {
  position: relative;
  margin-right: 40px;
}
#header .hd--wrap .com--tel::before {
  z-index: -1;
  content: "";
  position: absolute;
  background: url(../img/common/deco_ttl__brush__a_05.png) center center/contain no-repeat;
  width: 298px;
  height: 60px;
  top: -10px;
}
#header .hd--wrap .wrap-times {
  width: fit-content;
  margin-right: 20px;
}
#header .hd--wrap .btn-line {
  margin-right: 20px;
  width: 220px;
}
#header .hd--wrap .btn-contact {
  position: relative;
  margin-right: 20px;
  width: 60px;
  height: 60px;
  background: var(--col--acc-01);
  border-radius: 12px;
  border: 1px solid var(--col--acc-01);
  transition: ease 0.2s;
}
#header .hd--wrap .btn-contact::before {
  content: "";
  position: absolute;
  background: url(../img/common/icon__mail__a_01.png) center center/contain no-repeat;
  width: 26px;
  height: 18px;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  transition: ease 0.2s;
}
#header .hd--wrap .btn-contact:hover {
  background: #fff;
}
#header .hd--wrap .btn-contact:hover::before {
  background: url(../img/common/icon__mail__a_02.png) center center/contain no-repeat;
}
#header .hd--wrap #nav {
  margin-right: 20px;
}
#header .hd--wrap #nav .unit-nav-list {
  gap: 40px;
}


#header .hd--wrap #nav .unit-nav-list-item {
  position: relative;
  font-size: var(--font-size-16);
  transition: ease 0.2s;


}

#header .hd--wrap #nav .unit-nav-list-over{
  transition: ease .2s;
  ul {
    opacity: 0;
    visibility:hidden;
    left: 0;
    top: 20px;
    position: absolute;
    width: 100%;
    background: var(--col--txt-02);
    border-radius: 6px;
    padding: 15px;
    transition: ease .2s;

    li {
      text-align: center;
      padding-bottom: 10px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.4);
      margin-bottom: 10px;

      a {
        font-size: 14px;
        font-weight: 500;
        color: #fff;
      }
      a:hover{
        color: #fff;
        opacity: .6;
      }
    }

    li:last-of-type{
      margin-bottom: 0;
      border-bottom: 0;
      padding-bottom: 0;
    }
  }
}
#header .hd--wrap #nav .unit-nav-list-over:hover{
  ul{
    visibility: visible;
    opacity: 1;
  }
}

#header .hd--wrap #nav .unit-nav-list-item a {
  transition: ease 0.2s;
}
#header .hd--wrap #nav .unit-nav-list-item a:hover {
  color: var(--col--acc-01);
}

#mv {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  margin-top: 130px;
  width: clamp(1280px, 100%, 2000px);
  height: 700px;
  background:
    url(../img/mv/mv__img_01_01.png) left center/contain no-repeat,
    url(../img/mv/mv__img_01_02.png) right center/contain no-repeat;
}


#sv {
  overflow: hidden;
  position: relative;
  height: 420px;
  width: 100%;
  margin-top: 130px;
}
#sv .sv-img {
  position: absolute;
  width: 1080px;
  height: 420px;
  right: clamp(50px, 50vw - 690px, 120px);
  border-radius: 24px;
}
#sv .sv-img img {
  border-radius: 24px;
}
#sv .sv-catch {
  position: absolute;
  z-index: 0;
  position: relative;
  width: fit-content;
  top: 50%;
  translate: 0 -50%;
  left: clamp(-400px, -50vw + 600px, -50px);
}
#sv .sv-catch span {
  font-size: 54px;
  font-weight: 900;
  letter-spacing: 0;
  background-size: auto auto;
  background-color: rgb(255, 121, 96);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 6px, rgba(234, 77, 77, 0.66) 6px, rgba(234, 77, 77, 0.66) 8px);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(1px 1px 2px #fff) drop-shadow(-1px -1px 2px #fff) drop-shadow(1px -1px 2px #fff) drop-shadow(-1px 1px 2px #fff);
}
#sv .sv-catch::before {
  z-index: -1;
  content: "";
  position: absolute;
  background: url(../img/sv/sv__marker.png) center center/contain no-repeat;
  width: 660px;
  height: 138px;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
}

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

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

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

.sv-merit {
  background: url(../img/sv/sv--merit.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 {
  width: fit-content;
  display: block;
}
.com--ttl03-01 .ja {
  text-align: center;
  width: fit-content;
  display: block;
  font-size: 54px;
  letter-spacing: 0;
  font-weight: 700;
  line-height: 1.4;
}
.com--ttl03-01 .ja .str-01 {
  position: relative;
  color: #767971;
  font-weight: 800;
}
.com--ttl03-01 .ja .str-01::before {
  pointer-events: none;
  content: "";
  position: absolute;
  background: url(../img/common/deco_ttl__brush__a_01.png) center center/contain no-repeat;
  width: 156px;
  height: 35px;
  left: 50%;
  translate: -50% 0;
  bottom: 0;
}
.com--ttl03-01 .ja .str-02 {
  position: relative;
  background: url(../img/common/deco_ttl__frame__a_01.png) left top no-repeat, url(../img/common/deco_ttl__frame__a_02.png) right bottom no-repeat;
  padding: 8px 25px;
}
.com--ttl03-01 .ja .str-02::before {
  z-index: -1;
  content: "";
  position: absolute;
  background: url(../img/common/deco_ttl__brush__a_02.png) center center/contain no-repeat;
  width: 518px;
  height: 61px;
  left: 50%;
  translate: -50% 0;
  bottom: -10px;
}

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

/* worries
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━　*/
#top--worries {
  background: #ededed;
}
#top--worries .inbox {
  width: clamp(1080px, 100%, 1500px);
  padding: 100px 0 60px;
}
#top--worries .ttl03 {
  margin: 0 auto;
  margin-bottom: var(--margin-65);
}
#top--worries .cont-worry {
  margin: 0 auto;
  width: fit-content;
  gap: 55px;
}
#top--worries .cont-worry .list-worry {
  width: fit-content;
  font-size: clamp(16px, 1vw, 20px);
  line-height: 1.9;
}
#top--worries .cont-worry .list-worry dt {
  position: relative;
  width: clamp(540px, 50vw - 100px, 720px);
  background: #fff;
  border-radius: 24px;
  padding: 25px;
  text-align: center;
  margin-bottom: var(--margin-30);
  min-height: 110px;
}
#top--worries .cont-worry .list-worry dt::after {
  content: "";
  position: absolute;
  background: url(../img/common/icon__arrow__c_01.png) center center/contain no-repeat;
  width: 40px;
  height: 40px;
  left: 50%;
  translate: -50% 0;
  bottom: -20px;
}
#top--worries .cont-worry .list-worry dd {
  position: relative;
  width: clamp(570px, 50vw - 100px, 720px);
  background: url(../img/common/pattern__stripe__a_01.png);
  border-radius: 24px;
  padding: 25px;
  min-height: 180px;
  text-align: center;
}
#top--worries .cont-worry .list-worry dd::before {
  content: "";
  position: absolute;
  background: url(../img/common/illust__human__a_01.png) center center/contain no-repeat;
  width: 96px;
  height: 128px;
  right: -20px;
  bottom: 0;
}
#top--worries .cont-worry .list-worry:nth-of-type(1) dt {
  position: relative;
}
#top--worries .cont-worry .list-worry:nth-of-type(1) dt::before {
  content: "";
  position: absolute;
  background: url(../img/common/illust__human__b_01.png) center center/contain no-repeat;
  width: 83px;
  height: 100px;
  left: 10px;
  bottom: 0;
}
#top--worries .cont-worry .list-worry:nth-of-type(2) dt {
  position: relative;
}
#top--worries .cont-worry .list-worry:nth-of-type(2) dt::before {
  content: "";
  position: absolute;
  background: url(../img/common/illust__human__b_02.png) center center/contain no-repeat;
  width: 89px;
  height: 100px;
  left: 10px;
  bottom: 0;
}
#top--worries .cont-worry .list-worry:nth-of-type(3) dt {
  position: relative;
}
#top--worries .cont-worry .list-worry:nth-of-type(3) dt::before {
  content: "";
  position: absolute;
  background: url(../img/common/illust__human__b_03.png) center center/contain no-repeat;
  width: 104px;
  height: 100px;
  left: 10px;
  bottom: 0;
}
#top--worries .cont-worry .list-worry:nth-of-type(4) dt {
  position: relative;
}
#top--worries .cont-worry .list-worry:nth-of-type(4) dt::before {
  content: "";
  position: absolute;
  background: url(../img/common/illust__human__b_04.png) center center/contain no-repeat;
  width: 82px;
  height: 100px;
  left: 10px;
  bottom: 0;
}

/* about
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━　*/
#top--about {
  position: relative;
  z-index: 0;
  background: url(../img/common/bg_img__01.png) left bottom 500px no-repeat, url(../img/common/bg_img__02.png) right bottom no-repeat, url(../img/common/separate__a_01.png) center top/max(1280px, 100%) 120px no-repeat;
}
#top--about .inbox {
  padding: 180px 0 100px;
}
#top--about .ttl03 {
  margin: 0 auto;
  margin-bottom: var(--margin-70);
}
#top--about .cont-about {
  text-align: center;
  margin-bottom: 200px;
}
#top--about .cont-about .str-01 {
  font-weight: 400;
  background: #e5f7c7;
}
#top--about .cont-effect {
  position: relative;
  border: 2px solid var(--col--main-01);
  border-radius: 24px;
  width: 850px;
  min-height: 140px;
  margin: 0 auto;
  height: fit-content;
  margin-bottom: var(--margin-60);
  background: #fff;
}
#top--about .cont-effect::before {
  content: "";
  position: absolute;
  border-top: 3px solid #fff;
  width: 20%;
  left: 50%;
  translate: -50% 0;
  top: -2px;
}
#top--about .cont-effect .ttl04 {
  position: absolute;
  margin: 0 auto;
  width: fit-content;
  text-align: center;
  top: -120px;
}
#top--about .cont-effect .ttl04 .ja {
  color: #ade454;
  font-size: 50px;
  font-weight: 800;
  letter-spacing: 0px;
}
#top--about .com--btn-01 {
  margin: 0 auto;
}

/* movie
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━　*/
#top--movie {
  position: relative;
  z-index: 0;
  background: url(../img/common/pattern__border__a_01.png);
}
#top--movie .ttl03 {
  margin: 0 auto;
  color: #ade454;
  margin-bottom: var(--margin-70);
}
#top--movie .ttl03 .ja {
  line-height: 1.3;
}
#top--movie .ttl03 .ja .small-01 {
  font-size: 40px;
}
#top--movie .ttl03 .ja .str-03 {
  color: #7cc800;
}
#top--movie .ttl03 .ja .str-02 {
  color: var(--col--txt-01);
}
#top--movie .cont-movie {
  width: 100%;
  height: 580px;
  border: 20px solid #e5f7c7;
  border-radius: 24px;
  background: #fff;
}
#top--movie .cont-movie iframe {
  width: 100%;
  height: 100%;
}

/* achievements
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━　*/
#top--achievements {
  position: relative;
  z-index: 0;
}
#top--achievements .ttl03 {
  position: relative;
  margin: 0 auto;
  margin-bottom: var(--margin-70);
}
#top--achievements .ttl03::before {
  z-index: -1;
  content: "";
  position: absolute;
  background: url(../img/common/deco_ttl__brush__a_02.png) center center/contain no-repeat;
  width: 518px;
  height: 61px;
  left: 50%;
  translate: -50% 0;
  bottom: -20px;
}
#top--achievements .list-compare {
  position: relative;
  gap: 60px;
}
#top--achievements .list-compare::before {
  content: "";
  position: absolute;
  background: url(../img/common/icon__arrow__b_01.png) center center/contain no-repeat;
  width: 16px;
  height: 30px;
  top: 50%;
  translate: -50% -50%;
  left: 50%;
}
#top--achievements .list-compare-item .item-img {
  position: relative;
  border-radius: 24px;
  margin-bottom: var(--margin-20);
}
#top--achievements .list-compare-item .item-img img {
  border-radius: 24px;
}
#top--achievements .list-compare-item .item-img figcaption {
  position: absolute;
  left: 0;
  top: 24px;
  border-radius: 0 12px 12px 0;
  width: 100px;
  height: 50px;
  color: #fff;
  font-weight: 800;
  font-size: var(--font-size-24);
  letter-spacing: 0;
}
#top--achievements .list-compare-item .item-text {
  text-align: center;
  width: 100%;
  min-height: 120px;
  text-align: center;
  border-radius: 24px;
}
#top--achievements .list-compare-before .item-img figcaption {
  background: #767971;
}
#top--achievements .list-compare-before .item-text {
  background: #ededed;
}
#top--achievements .list-compare-after .item-img figcaption {
  background: #7cc800;
}
#top--achievements .list-compare-after .item-text {
  background: url(../img/common/pattern__stripe__a_01.png);
  border: 1px solid #d1eda3;
}

/* merit
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━　*/
#top--merit {
  position: relative;
  z-index: 0;
  background: url(../img/common/bg_img__04.png) left top no-repeat, url(../img/common/bg_img__03.png) right bottom no-repeat, url(../img/common/pattern__border__a_01.png);
}
#top--merit .ttl03 {
  margin: 0 auto;
  margin-bottom: var(--margin-70);
}
#top--merit .ttl03 .ja {
  position: relative;
}
#top--merit .ttl03 .ja::before {
  z-index: -1;
  content: "";
  position: absolute;
  background: url(../img/common/deco_ttl__brush__a_02.png) center center/contain no-repeat;
  width: 518px;
  height: 61px;
  left: 50%;
  translate: -50% 0;
  bottom: -20px;
}
#top--merit .ttl03 .ja .str-03 {
  position: relative;
}
#top--merit .ttl03 .sub {
  display: inline-block;
  line-height: 1.3;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: #ade454;
}
#top--merit .ttl03 .sub .str-01 {
  color: #7cc800;
}
#top--merit .cont-merit .list-merit {
  margin-bottom: var(--margin-40);
}
#top--merit .cont-merit .list-merit:last-child {
  margin-bottom: 0;
}
#top--merit .cont-merit .list-merit-item {
  margin-bottom: var(--margin-40);
}
#top--merit .cont-merit .list-merit-item:last-child {
  margin-bottom: 0;
}
#top--merit .cont-merit .list-merit-item .ttl04 {
  position: relative;
  width: fit-content;
  margin-bottom: 10px;
}
#top--merit .cont-merit .list-merit-item .ttl04::before {
  z-index: -1;
  content: "";
  position: absolute;
  width: calc(100% + 25px);
  height: 24px;
  padding-right: 20px;
  border-radius: 12px;
  background: url(../img/common/pattern__stripe__a_02.png);
  left: 0;
  bottom: 0;
}
#top--merit .cont-merit .list-merit-item .ttl04 .num {
  margin-right: var(--margin-30);
}
#top--merit .cont-merit .list-merit-item .ttl04 .ja {
  font-weight: 700;
  font-size: var(--font-size-24);
}
#top--merit .cont-merit .list-merit-item .item-text {
  border: 2px solid #d1eda3;
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  padding-left: 100px;
  justify-content: start;
}
#top--merit .com--btn-01 {
  margin: 0 auto;
}

/* subpages
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━　*/
#top--subpages .inbox {
  width: 100%;
  padding: 0;
}
#top--subpages .cont-subpages {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 370px;
}
#top--subpages .cont-subpages a {
  z-index: 0;
  position: relative;
  width: clamp(620px,95%,880px);
  height: 290px;
  border-radius: 24px;
  background: url(../img/common/pattern__stripe__a_03.png);
  border: 1px solid #ade454;
  transition: ease 0.3s;
  top: 0;
}
#top--subpages .cont-subpages a .ttl03 {
  margin-bottom: var(--margin-20);
  transition: ease 0.3s;
}
#top--subpages .cont-subpages a .item-text {
  font-weight: 700;
  text-shadow: rgb(255, 255, 255) 3px 0px 0px, rgb(255, 255, 255) 2.83487px 0.981584px 0px, rgb(255, 255, 255) 2.35766px 1.85511px 0px, rgb(255, 255, 255) 1.62091px 2.52441px 0px, rgb(255, 255, 255) 0.705713px 2.91581px 0px, rgb(255, 255, 255) -0.287171px 2.98622px 0px, rgb(255, 255, 255) -1.24844px 2.72789px 0px, rgb(255, 255, 255) -2.07227px 2.16926px 0px, rgb(255, 255, 255) -2.66798px 1.37182px 0px, rgb(255, 255, 255) -2.96998px 0.42336px 0px, rgb(255, 255, 255) -2.94502px -0.571704px 0px, rgb(255, 255, 255) -2.59586px -1.50383px 0px, rgb(255, 255, 255) -1.96093px -2.27041px 0px, rgb(255, 255, 255) -1.11013px -2.78704px 0px, rgb(255, 255, 255) -0.137119px -2.99686px 0px, rgb(255, 255, 255) 0.850987px -2.87677px 0px, rgb(255, 255, 255) 1.74541px -2.43999px 0px, rgb(255, 255, 255) 2.44769px -1.73459px 0px, rgb(255, 255, 255) 2.88051px -0.838247px 0px;
  transition: ease 0.3s;
}
#top--subpages .cont-subpages a:hover {
  position: relative;
  top: -6px;
  opacity: 0.7;
}
#top--subpages .cont-about::before {
  z-index: -1;
  content: "";
  position: absolute;
  background: url(../img/top/top__subpage__img_01.png) center center/cover no-repeat;
  width: 100%;
  height: 100%;
}
#top--subpages .cont-voice::before {
  z-index: -1;
  content: "";
  position: absolute;
  background: url(../img/top/top__subpage__img_02.png) center center/cover no-repeat;
  width: 100%;
  height: 100%;
}
/* news
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━　*/
#top--news {
  position: relative;
  z-index: 0;
  min-height: 650px;
}
#top--news .inbox {
  position: relative;
}
#top--news .ttl03 {
  z-index: 0;
  display: flex;
  position: absolute;
  background: url(../img/common/pattern__border__a_01.png);
  width: 520px;
  height: 480px;
  padding-top: 100px;
  margin-left: -100px;
}
#top--news .ttl03 .ja {
  position: relative;
}
#top--news .ttl03 .ja::before {
  pointer-events: none;
  z-index: -1;
  content: "";
  position: absolute;
  background: url(../img/common/deco_ttl__brush__a_03.png) center center/contain no-repeat;
  width: 270px;
  height: 70px;
  left: 50%;
  translate: -50% 0;
  bottom: -40px;
}
#top--news .cont-latest {
  position: relative;
  z-index: 1;
  width: 700px;
  margin-left: auto;
  margin-top: 100px;
}
#top--news .unit-latest {
  position: relative;
  right: 0;
  transition: ease 0.2s;
  margin-bottom: var(--margin-15);
}
#top--news .unit-latest:last-child {
  margin-bottom: 0;
}
#top--news .unit-latest a {
  width: 100%;
  height: 100%;
}
#top--news .unit-latest .unit-latest-text {
  flex: 1;
}
#top--news .unit-latest .unit-latest-text.on_thumb {
  width: 75%;
}
@media screen and (max-width: 767px) {
  #top--news .unit-latest .unit-latest-text.on_thumb {
    width: 70%;
  }
}
#top--news .unit-latest .item-ttl {
  order: 3;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#top--news .unit-latest .item-time {
  order: 1;
  width: fit-content;
  color: #ade454;
  margin-right: var(--margin-20);
  margin-bottom: var(--margin-15);
  padding-top: 4px;
  transition: ease 0.2s;
}
#top--news .unit-latest .tag_list {
  order: 2;
  width: 70%;
  gap: 10px;
  margin-bottom: var(--margin-15);
}
#top--news .unit-latest .tag_list-item {
  width: fit-content;
  height: fit-content;
  background: url(../img/common/pattern__stripe__a_02.png);
  border-radius: 16px;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 10px;
}
#top--news .unit-latest .unit-latest-img {
  height: 130px;
  width: 150px;
  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 {
  color: var(--col--acc-01);
  right: -10px;
  opacity: 0.7;
}
#top--news .unit-latest:hover .item-time {
  color: var(--col--acc-01);
}
#top--news .com--btn-01 {
  position: absolute;
  width: 320px;
  top: 400px;
  left: 0;
}

/* company
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━　*/
.com--table-01 tr th,
.com--table-01 tr td {
  padding: 15px 10px;
  border-bottom: 1px solid #d1eda3;
  line-height: 1.7;
}
.com--table-01 tr th {
  font-weight: 700;
  color: #7cc800;
  width: 20%;
}
.com--table-01 tr td {
  width: 80%;
}
.com--table-01 tr td img {
  height: 14px;
}
.com--table-01 tr:last-of-type th,
.com--table-01 tr:last-of-type td {
  border-bottom: unset;
}

#top--company {
  position: relative;
  z-index: 0;
  background: url(../img/common/pattern__border__a_01.png);
}
#top--company .ttl03 {
  margin: 0 auto;
  margin-bottom: var(--margin-60);
}
#top--company .ttl03 .ja {
  position: relative;
}
#top--company .ttl03 .ja::before {
  pointer-events: none;
  z-index: -1;
  content: "";
  position: absolute;
  background: url(../img/common/deco_ttl__brush__a_02.png) center center/contain no-repeat;
  width: 518px;
  height: 61px;
  left: 50%;
  translate: -50% 0;
  bottom: -20px;
}
#top--company .cont-company {
  background: rgba(255, 255, 255, 0.8);
  padding: 70px;
  border: 2px solid #d1eda3;
  border-radius: 24px;
}
#top--company .cont-company .item-table {
  width: 100%;
}
#top--company .cont-company .item-table tr {
  width: 100%;
}
#top--company .cont-map {
  width: 100%;
  height: 400px;
  min-height: 200px;
}
#top--company .cont-map iframe {
  width: 100%;
  height: 100%;
}

/* footer フッター
////////////////////////////////////////////////////////////////////////////////////////////////// */
#footer {
  background: url(../img/common/pattern__stripe__a_03.png);
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
}
@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-50);
  transition: ease 0.2s;
}
#footer .item-logo:hover {
  opacity: 0.6;
}
#footer .unit-links {
  gap: 20px;
  margin-bottom: var(--margin-30);
}
#footer .unit-links a {
  transition: ease 0.2s;
}
#footer .unit-links a:hover {
  opacity: 0.6;
}
#footer #copyright {
  font-size: var(--font-size-13);
  text-align: left;
  color: var(--col--main-01);
}
#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;
  }
}
@media screen and (max-width: 767px) {
  #footer .cont-right {
    width: 100%;
  }
}
#footer .list-nav {
  width: fit-content;
  gap: 20px 50px;
  height: 100px;
  margin-bottom: var(--margin-60);
}
#footer .list-nav-item {
  position: relative;
  width: 180px;
}
#footer .list-nav-item > a {
  position: relative;
  font-weight: 500;
  letter-spacing: 0;
  font-size: var(--font-size-16);
  padding-left: 15px;
  transition: ease 0.2s;
}
#footer .list-nav-item > a::before {
  content: "";
  position: absolute;
  background: #ade454;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}
#footer .list-nav-item > a:hover {
  opacity: 0.8;
  color: var(--col--acc-01);
}
#footer .list-nav-item ul {
  position: absolute;
  width: fit-content;
  gap: 50px;
  bottom: -35px;
  padding-left: 30px;
}
#footer .list-nav-item ul::before {
  content: "└";
  position: absolute;
  left: 0;
  top: 0;
}
#footer .list-nav-item ul li {
  width: fit-content;
}
#footer .list-nav-item ul li a {
  position: relative;
  white-space: nowrap;
  font-size: var(--font-size-14);
  letter-spacing: 0;
  font-weight: 400;
  transition: ease 0.2s;
}
#footer .list-nav-item ul li a::before {
  content: "/";
  color: var(--col--main-01);
  position: absolute;
  right: -25px;
  bottom: 5px;
}
#footer .list-nav-item ul li a:hover {
  opacity: 0.8;
  color: var(--col--acc-01);
}
#footer .list-nav-item ul li:last-child a::before {
  display: none;
}
@media screen and (max-width: 767px) {
  #footer .list-nav {
    display: none;
  }
}
#footer .unit-contact {
  z-index: 0;
  position: relative;
  padding: 40px;
  background: #f2fce0;
  border: 6px solid #d1eda3;
  border-radius: 24px;
}
#footer .unit-contact .ttl03 {
  position: relative;
  margin-bottom: var(--margin-25);
  margin-top: -60px;
}
#footer .unit-contact .ttl03::before {
  z-index: -1;
  content: "";
  position: absolute;
  background: url(../img/common/deco_ttl__brush__a_04.png) center center/contain no-repeat;
  width: 224px;
  height: 58px;
  left: 50%;
  translate: -50% 0;
  bottom: -20px;
}
#footer .unit-contact .ttl03 .ja {
  font-weight: 700;
  font-size: var(--font-size-34);
}
#footer .unit-contact .com--tel {
  margin-bottom: var(--margin-15);
}
#footer .unit-contact .com--times {
  margin-bottom: 10px;
}
#footer .unit-contact .tel-attention {
  margin-bottom: var(--margin-30);
}
#footer .unit-contact .btn-line {
  margin-bottom: var(--margin-20);
}
/* 下層 subpages
////////////////////////////////////////////////////////////////////////////////////////////////// */
.com--ttl03-02 {
  z-index: 0;
  position: relative;
  margin: 0 auto;
  width: fit-content;
  margin-bottom: var(--margin-60);
  text-align: center;
}
.com--ttl03-02 .ja {
  position: relative;
  margin: 0 auto;
  width: fit-content;
  display: block;
  font-size: var(--font-size-54);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0;
}
.com--ttl03-02 .ja::before {
  pointer-events: none;
  z-index: -1;
  content: "";
  position: absolute;
  background: url(../img/common/deco_ttl__brush__a_02.png) center center/contain no-repeat;
  width: 518px;
  height: 61px;
  left: 50%;
  top: 80%;
  translate: -50% -50%;
}

/* feature
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* concept
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#feature--concept {
  background: url(../img/common/bg_img__01.png) left bottom no-repeat;
}
#feature--concept .cont-concept .list-concept {
  gap: 70px;
  margin-bottom: var(--margin-40);
}
#feature--concept .cont-concept .item-text {
  text-align: center;
}

/* about
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#feature--about {
  background: url(../img/common/bg_img__02.png) right bottom no-repeat, url(../img/common/pattern__border__a_01.png);
  background-blend-mode: multiply;
}
#feature--about .cont-about .unit-intro {
  margin-bottom: var(--margin-70);
}
#feature--about .cont-about .unit-intro .item-text {
  text-align: center;
}
#feature--about .cont-about .unit-intro .item-text .str-01 {
  display: inline-block;
  z-index: 1;
  position: relative;
  font-weight: 500;
}
#feature--about .cont-about .unit-intro .item-text .str-01::before {
  content: "";
  position: absolute;
  background: rgba(255, 142, 121, 0.3);
  width: 85%;
  height: 70%;
  line-height: 1.3;
  z-index: -1;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
}
#feature--about .cont-about .unit-feature .list-feature {
  gap: 30px;
  margin-bottom: var(--margin-40);
}
#feature--about .cont-about .unit-feature .list-feature-item {
  position: relative;
  background: #fff;
  width: calc((100% - 60px) / 3);
  height: 140px;
  border: 2px solid #ade454;
  border-radius: 24px;
}
#feature--about .cont-about .unit-feature .list-feature-item::before {
  content: "";
  position: absolute;
  width: 60%;
  top: -2px;
  border-top: 3px solid #fff;
  left: 50%;
  translate: -50% 0;
}
#feature--about .cont-about .unit-feature .list-feature-item .ttl04 {
  position: absolute;
  text-align: center;
  top: -20px;
}
#feature--about .cont-about .unit-feature .list-feature-item .ttl04 .ja {
  font-weight: 700;
  font-size: var(--font-size-40);
  color: #7cc800;
}
#feature--about .cont-about .unit-feature .item-text {
  text-align: center;
}

/* recommend
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#feature--recommend .ttl03 {
  position: relative;
}
#feature--recommend .ttl03 .note {
  position: absolute;
  color: #ffe829;
  background: #7cc800;
  border-radius: 12px;
  padding: 15px 20px;
  width: fit-content;
  font-size: var(--font-size-28);
  font-weight: 800;
  letter-spacing: 0;
  left: -155px;
  top: -40px;
  rotate: -15deg;
}
#feature--recommend .ttl03 .note::before {
  content: "";
  position: absolute;
  background: url(../img/common/icon__arrow__d_01.png) center center/contain no-repeat;
  width: 27px;
  height: 20px;
  bottom: 1px;
  right: 40%;
  translate: -50% 100%;
}
#feature--recommend .ttl03 .sub {
  display: inline-block;
  text-align: center;
  font-size: var(--font-size-40);
  font-weight: 700;
  color: #ade454;
  line-height: 1.4;
}
#feature--recommend .ttl03 .sub .str-01 {
  color: #7cc800;
}
#feature--recommend .cont-recommend {
  position: relative;
  width: 1000px;
  margin: 0 auto;
  padding: 70px 150px;
  background: #fff;
  border: 2px solid #ade454;
  border-radius: 24px;
}
#feature--recommend .cont-recommend::before {
  content: "";
  position: absolute;
  background: url(../img/common/illust__human__d_03.png) center center/contain no-repeat;
  width: 284px;
  height: 245px;
  right: -40px;
  bottom: -20px;
}
#feature--recommend .cont-recommend .list-recommend {
  position: relative;
}
#feature--recommend .cont-recommend .list-recommend::before {
  content: "";
  position: absolute;
  background: url(../img/common/illust__human__d_01.png) center center/contain no-repeat;
  width: 100px;
  height: 153px;
  left: -180px;
  bottom: 0;
}
#feature--recommend .cont-recommend .list-recommend::after {
  content: "";
  position: absolute;
  background: url(../img/common/illust__human__d_02.png) center center/contain no-repeat;
  width: 192px;
  height: 112px;
  left: -195px;
  bottom: -150px;
}
#feature--recommend .cont-recommend .list-recommend-item {
  position: relative;
  font-weight: 700;
  letter-spacing: 0;
  padding-left: 30px;
  font-size: var(--font-size-20);
  margin-bottom: var(--margin-20);
}
#feature--recommend .cont-recommend .list-recommend-item::before {
  content: "";
  position: absolute;
  background: url(../img/common/icon__check__a_01.png) center center/contain no-repeat;
  width: 22px;
  height: 22px;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}
#feature--recommend .cont-recommend .note {
  font-weight: 700;
  margin-left: 30px;
}

/* compare
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#feature--compare {
  background: url(../img/common/bg_img__04.png) left top no-repeat, url(../img/common/pattern__border__a_01.png);
}
#feature--compare .cont-compare {
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid #d1eda3;
  padding: 70px;
  border-radius: 24px;
}
#feature--compare .cont-compare .item-table tr:nth-of-type(1) th {
  color: var(--col--txt-01);
  text-align: center;
  border-bottom: 2px solid #ade454;
}
#feature--compare .cont-compare .item-table tr:nth-of-type(1) th {
  text-align: center;
  border-right: 1px solid #d1eda3;
}
#feature--compare .cont-compare .item-table tr:nth-of-type(1) th:last-of-type {
  border-right: 0;
}
#feature--compare .cont-compare .item-table tr th,
#feature--compare .cont-compare .item-table tr td {
  border-bottom: 1px solid #d1eda3;
  line-height: 1.8;
  padding: 12px 10px;
}
#feature--compare .cont-compare .item-table tr th {
  color: #7cc800;
  font-weight: 700;
}
#feature--compare .cont-compare .item-table tr td {
  text-align: center;
  border-right: 1px solid #d1eda3;
}
#feature--compare .cont-compare .item-table tr td:last-of-type {
  border-right: 0;
}
#feature--compare .cont-compare .item-table tr .our_company {
  background: #e7f6cf;
}
#feature--compare .cont-compare .item-table tr:last-of-type th,
#feature--compare .cont-compare .item-table tr:last-of-type td {
  border-bottom: 0;
}

/* about
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#about--btn .inbox {
  gap: 24px;
}
#about--btn .com--btn-01 {
  width: calc((100% - 72px) / 4);
  height: 65px;
}

/* menu
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#about--menu {
  background: url(../img/common/bg_img__01.png) left top no-repeat, url(../img/common/bg_img__02.png) right bottom no-repeat, #fff;
}
#about--menu .inbox{
  padding: 30px 0 100px;
}
#about--menu .lead-text {
  text-align: center;
  margin-bottom: var(--margin-60);
}
#about--menu .lead-text small {
  display: block;
}
#about--menu .cont-menu {
  position: relative;
  height: fit-content;
}
#about--menu .cont-menu .ttl04 {
  width: 640px;
  margin-left: auto;
  margin-bottom: var(--margin-40);
}
#about--menu .cont-menu .ttl04 .ja {
  color: #7cc800;
  font-weight: 700;
  font-size: var(--font-size-40);
  background: linear-gradient(180deg, rgba(229, 247, 199, 0) 60%, #e5f7c7 60%);
}
#about--menu .cont-menu .item-img {
  position: absolute;
  left: 0;
  top: 0;
}
#about--menu .cont-menu .item-img img {
  border-radius: 24px;
}
#about--menu .cont-menu .item-text {
  width: 640px;
  margin-left: auto;
  min-height: 240px;
  margin-bottom: var(--margin-40);
}
#about--menu .cont-menu .unit-course {
  padding: 70px 90px;
  border: 2px solid #ade454;
  border-radius: 24px;
  margin-bottom: var(--margin-70);
  background: rgba(255, 255, 255, 0.6);
}
#about--menu .cont-menu .unit-course .ttl05 {
  text-align: center;
}
#about--menu .cont-menu .unit-course .ttl05 .ja {
  font-weight: 700;
  letter-spacing: 0;
  color: #7cc800;
  font-size: var(--font-size-28);
}
#about--menu .cont-menu .unit-course .list-menu {
  width: 100%;
}
#about--menu .cont-menu .unit-course .list-menu-item {
  width: 100%;
  padding: 15px 10px;
  border-bottom: 1px solid #d1eda3;
}
#about--menu .cont-menu .unit-course .list-menu-item:last-child {
  border-bottom: 0;
}
#about--menu .cont-menu .unit-course .list-menu-item dt .note {
  font-weight: 700;
  color: var(--col--acc-01);
  margin-left: 20px;
}
#about--menu .cont-menu .unit-course .list-menu-item dd {
  font-weight: 700;
  color: #7cc800;
  text-align: end;
}

/* flow
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#about--flow {
  position: relative;
  z-index: 0;
  background: url(../img/common/pattern__border__a_01.png);
}
#about--flow .cont-flow {
  margin: 0 auto;
  width: 970px;
}
#about--flow .cont-flow .list-flow-item {
  margin-bottom: var(--margin-40);
}
#about--flow .cont-flow .list-flow-item:last-child {
  margin-bottom: 0;
}
#about--flow .cont-flow .list-flow-item .ttl04 {
  position: relative;
  width: fit-content;
  margin-bottom: var(--margin-15);
}
#about--flow .cont-flow .list-flow-item .ttl04::before {
  z-index: -1;
  content: "";
  position: absolute;
  width: calc(100% + 20px);
  height: 24px;
  border-radius: 12px;
  background: url(../img/common/pattern__stripe__a_02.png);
  bottom: -4px;
  left: 0;
}
#about--flow .cont-flow .list-flow-item .ttl04 .num {
  margin-right: 15px;
}
#about--flow .cont-flow .list-flow-item .ttl04 .ja {
  font-weight: 700;
  font-size: var(--font-size-24);
}
#about--flow .cont-flow .list-flow-item .item-text {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid #d1eda3;
  min-height: 128px;
  padding: 40px 90px;
}
#about--flow .cont-flow .list-flow-item:nth-of-type(1) .item-text {
  position: relative;
}
#about--flow .cont-flow .list-flow-item:nth-of-type(1) .item-text::before {
  content: "";
  position: absolute;
  background: url(../img/common/illust__human__e_01.png) center center/contain no-repeat;
  width: 82px;
  height: 82px;
  right: 50px;
  bottom: 0;
}
#about--flow .cont-flow .list-flow-item:nth-of-type(2) .item-text {
  position: relative;
}
#about--flow .cont-flow .list-flow-item:nth-of-type(2) .item-text::before {
  content: "";
  position: absolute;
  background: url(../img/common/illust__human__e_02.png) center center/contain no-repeat;
  width: 110px;
  height: 94px;
  right: 50px;
  bottom: 0;
}
#about--flow .cont-flow .list-flow-item:nth-of-type(3) .item-text {
  position: relative;
}
#about--flow .cont-flow .list-flow-item:nth-of-type(3) .item-text::before {
  content: "";
  position: absolute;
  background: url(../img/common/illust__human__e_03.png) center center/contain no-repeat;
  width: 100px;
  height: 82px;
  right: 50px;
  bottom: 0;
}
#about--flow .cont-flow .list-flow-item:nth-of-type(4) .item-text {
  position: relative;
}
#about--flow .cont-flow .list-flow-item:nth-of-type(4) .item-text::before {
  content: "";
  position: absolute;
  background: url(../img/common/illust__human__e_04.png) center center/contain no-repeat;
  width: 82px;
  height: 80px;
  right: 50px;
  bottom: 0;
}

/* prof
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#about--prof {
  background: url(../img/common/bg_img__04.png) left top no-repeat;
}
#about--prof .cont-prof {
  position: relative;
  margin: 0 auto;
}
#about--prof .cont-prof .item-img {
  position: absolute;
  left: 250px;
  top: 0;
}
#about--prof .cont-prof .item-img img {
  border-radius: 24px;
}
#about--prof .cont-prof .ttl04 {
  width: fit-content;
  margin-left: auto;
  margin-bottom: var(--margin-50);
  margin-right: 290px;
}
#about--prof .cont-prof .ttl04 .ja {
  font-weight: 700;
  font-size: var(--font-size-40);
  color: #7cc800;
  letter-spacing: 0;
  background: linear-gradient(180deg, rgba(229, 247, 199, 0) 60%, #e5f7c7 60%);
}
#about--prof .cont-prof .item-license {
  width: 200px;
  margin-left: auto;
  margin-bottom: 160px;
  margin-right: 250px;
}
#about--prof .cont-prof .item-license .ttl05 {
  margin-bottom: 20px;
}
#about--prof .cont-prof .item-license .ttl05 .ja {
  font-weight: 700;
  font-size: var(--font-size-28);
  color: #7cc800;
}
#about--prof .cont-prof .item-license .item-text {
  margin-left: 20px;
}
#about--prof .cont-prof .item-message {
  position: relative;
  border: 2px solid #ade454;
  padding: 70px 90px;
  background: #fff;
  border-radius: 24px;
}
#about--prof .cont-prof .item-message::before {
  content: "";
  position: absolute;
  width: 20%;
  border-top: 2px solid #fff;
  top: -2px;
  left: 50%;
  translate: -50% 0;
}
#about--prof .cont-prof .item-message .ttl05 {
  position: absolute;
  text-align: center;
  left: 50%;
  translate: -50% 0;
  top: -20px;
}
#about--prof .cont-prof .item-message .ttl05 .ja {
  font-size: var(--font-size-28);
  color: #7cc800;
  letter-spacing: 0;
  font-weight: 700;
}
#about--prof .list-images {
  margin: 0 auto;
  width: clamp(1256px, 98%, 1920px);
  gap: 15px;
  margin-bottom: 100px;
}
#about--prof .list-images-item img {
  border-radius: 24px;
}

/* staff
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#about--staff {
  background: url(../img/common/pattern__border__a_01.png);
}
#about--staff .cont-post .unit-post {
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  padding: 70px;
  border: 2px solid #d1eda3;
  border-radius: 24px;
  margin-bottom: var(--margin-70);
}
#about--staff .cont-post .unit-post .item-img {
  position: absolute;
  left: 70px;
  top: 70px;
  border-radius: 24px;
  width: 230px;
  height: 270px;
}
#about--staff .cont-post .unit-post .ttl04 {
  margin-bottom: var(--margin-40);
  width: 660px;
  margin-left: auto;
}
#about--staff .cont-post .unit-post .ttl04 .ja {
  font-weight: 700;
  font-size: var(--font-size-40);
  color: #7cc800;
  letter-spacing: 0;
  line-height: 1.4;
  background: linear-gradient(180deg, rgba(229, 247, 199, 0) 60%, #e5f7c7 60%);
}
#about--staff .cont-post .unit-post .item-license {
  width: 660px;
  margin-left: auto;
  margin-bottom: var(--margin-40);
}
#about--staff .cont-post .unit-post .item-license:last-child {
  margin-bottom: 0;
}
#about--staff .cont-post .unit-post .item-license .ttl05 {
  margin-bottom: var(--margin-15);
}
#about--staff .cont-post .unit-post .item-license .ttl05 .ja {
  font-weight: 700;
  font-size: var(--font-size-28);
  color: #7cc800;
}
#about--staff .cont-post .unit-post .item-message {
  width: 660px;
  margin-left: auto;
}
#about--staff .cont-post .unit-post .item-message .ttl05 {
  margin-bottom: var(--margin-15);
}
#about--staff .cont-post .unit-post .item-message .ttl05 .ja {
  font-weight: 700;
  font-size: var(--font-size-28);
  color: #7cc800;
}

/* merit
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* training
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#merit--training {
  background: url(../img/common/bg_img__05.jpg) left bottom no-repeat;
}
#merit--training .cont-merit {
  padding: 70px;
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid #d1eda3;
  border-radius: 24px;
}
#merit--training .cont-merit .ttl04 {
  margin-bottom: var(--margin-30);
  text-align: center;
}
#merit--training .cont-merit .ttl04 .ja {
  z-index: 0;
  position: relative;
  font-weight: 700;
  letter-spacing: 0;
  font-size: var(--font-size-24);
}
#merit--training .cont-merit .ttl04 .ja::before {
  z-index: -1;
  content: "";
  position: absolute;
  border-radius: 12px;
  background: url(../img/common/pattern__stripe__a_02.png);
  width: 100%;
  left: 50%;
  height: 20px;
  translate: -50% 0;
  bottom: -5px;
}
#merit--training .cont-merit .item-text {
  text-align: center;
  margin-bottom: var(--margin-50);
}
#merit--training .cont-merit .item-text:last-of-type{
  margin-bottom: 0;
}

/* stretch
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#merit--stretch {
  background: url(../img/common/bg_img__06.jpg) right bottom no-repeat, url(../img/common/pattern__border__a_01.png);
  background-blend-mode: multiply;
}
#merit--stretch .cont-merit {
  padding: 70px;
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid #d1eda3;
  border-radius: 24px;
}
#merit--stretch .cont-merit .ttl04 {
  margin-bottom: var(--margin-30);
  text-align: center;
}
#merit--stretch .cont-merit .ttl04 .ja {
  z-index: 0;
  position: relative;
  font-weight: 700;
  letter-spacing: 0;
  font-size: var(--font-size-24);
}
#merit--stretch .cont-merit .ttl04 .ja::before {
  z-index: -1;
  content: "";
  position: absolute;
  border-radius: 12px;
  background: url(../img/common/pattern__stripe__a_02.png);
  width: 100%;
  left: 50%;
  height: 20px;
  translate: -50% 0;
  bottom: -5px;
}
#merit--stretch .cont-merit .item-text {
  text-align: center;
  margin-bottom: var(--margin-50);
}
#merit--stretch .cont-merit .item-text:last-of-type{
  margin-bottom: 0;
}

/* voice
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* voice
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#voice .cont-post .unit-post {
  margin-bottom: var(--margin-60);
  transition: ease 0.2s;
  position: relative;
  top: 0;
}
#voice .cont-post .unit-post:last-child {
  margin-bottom: 0;
}
#voice .cont-post .unit-post .ttl04 {
  margin-bottom: var(--margin-20);
}
#voice .cont-post .unit-post .ttl04 .icon {
  margin-right: var(--margin-20);
  width: 80px;
}
#voice .cont-post .unit-post .ttl04 .ja {
  z-index: 0;
  position: relative;
  font-weight: 700;
  letter-spacing: 0;
  font-size: var(--font-size-24);
  max-width: 90%;
  line-height: 1.5;
}
#voice .cont-post .unit-post .ttl04 .ja::before {
  z-index: -1;
  content: "";
  position: absolute;
  border-radius: 12px;
  background: url(../img/common/pattern__stripe__a_02.png);
  width: 100%;
  left: 50%;
  height: 20px;
  translate: -50% 0;
  bottom: -4px;
}
#voice .cont-post .unit-post .item-text {
  padding: 40px 70px;
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid #d1eda3;
  border-radius: 24px;
}
#voice .cont-post .unit-post .item-text p {
  line-height: 1.7;
  overflow: hidden;
  height: 100px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
#voice .cont-post .unit-post:hover {
  opacity: 0.6;
  top: -10px;
}

/* in_post
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
.voice--in_post .cont-post {
  position: relative;
  margin-bottom: var(--margin-60);
  top: 0;
}
.voice--in_post .cont-post:last-child {
  margin-bottom: 0;
}
.voice--in_post .cont-post .ttl04 {
  margin-bottom: var(--margin-20);
}
.voice--in_post .cont-post .ttl04 .icon {
  margin-right: var(--margin-20);
  width: 80px;
}
.voice--in_post .cont-post .ttl04 .ja {
  z-index: 0;
  position: relative;
  font-weight: 700;
  letter-spacing: 0;
  font-size: var(--font-size-24);
  max-width: 90%;
  line-height: 1.5;
}
.voice--in_post .cont-post .ttl04 .ja::before {
  z-index: -1;
  content: "";
  position: absolute;
  border-radius: 12px;
  background: url(../img/common/pattern__stripe__a_02.png);
  width: 100%;
  left: 50%;
  height: 20px;
  translate: -50% 0;
  bottom: -4px;
}
.voice--in_post .cont-post .item-text {
  padding: 40px 70px;
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid #d1eda3;
  border-radius: 24px;
}
.voice--in_post .cont-post .item-text .ttl05 {
  padding-bottom: var(--margin-20);
  border-bottom: 2px solid #d1eda3;
  margin-bottom: var(--margin-20);
}
.voice--in_post .cont-post .item-text .ttl05 .ja {
  font-weight: 700;
  letter-spacing: 0;
  font-size: var(--font-size-28);
  color: #7cc800;
}
.voice--in_post .cont-post .item-text p {
  line-height: 1.7;
}
.voice--in_post .com--btn-01 {
  margin: 0 auto;
}

/* 共通ページ
////////////////////////////////////////////////////////////////////////////////////////////////// */
/* 共通ページ 共通項目
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* 共通
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#contents-u .ttl01,
#contact .ttl01 {
  flex-direction: column-reverse;
  align-items: center;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: var(--margin-70);
}
#contents-u .ttl01 .ja,
#contact .ttl01 .ja {
  position: relative;
  margin: 0 auto;
  width: fit-content;
  display: block;
  font-size: var(--font-size-54);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0;
}
#contents-u .ttl01 .ja::before,
#contact .ttl01 .ja::before {
  pointer-events: none;
  z-index: -1;
  content: "";
  position: absolute;
  background: url(../img/common/deco_ttl__brush__a_02.png) center center/contain no-repeat;
  width: 518px;
  height: 61px;
  left: 50%;
  top: 80%;
  translate: -50% -50%;
}
#contents-u .ttl01 .en,
#contact .ttl01 .en {
  margin: 0 auto;
  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;
  right: 0;
  transition: ease 0.2s;
  margin-bottom: var(--margin-15);
  width: 100%;
}
#contents-u.post .cont-latest .unit-latest:last-child {
  margin-bottom: 0;
}
#contents-u.post .cont-latest .unit-latest a {
  width: 100%;
  height: 100%;
}
#contents-u.post .cont-latest .unit-latest .unit-latest-text {
  flex: 1;
}
#contents-u.post .cont-latest .unit-latest .unit-latest-text.on_thumb {
  width: 75%;
}
@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: 3;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#contents-u.post .cont-latest .unit-latest .item-time {
  order: 1;
  width: fit-content;
  color: #ade454;
  margin-right: var(--margin-20);
  margin-bottom: var(--margin-15);
  padding-top: 4px;
  transition: ease 0.2s;
}
#contents-u.post .cont-latest .unit-latest .tag_list {
  order: 2;
  width: 70%;
  gap: 10px;
  margin-bottom: var(--margin-15);
}
#contents-u.post .cont-latest .unit-latest .tag_list-item {
  width: fit-content;
  height: fit-content;
  background: url(../img/common/pattern__stripe__a_02.png);
  border-radius: 16px;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 10px;
}
#contents-u.post .cont-latest .unit-latest .unit-latest-img {
  height: 130px;
  width: 150px;
  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 {
  color: var(--col--acc-01);
  right: -10px;
  opacity: 0.7;
}
#contents-u.post .cont-latest .unit-latest:hover .item-time {
  color: var(--col--acc-01);
}

.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;
  background: url(../img/common/pattern__stripe__a_02.png);
  border-radius: 16px;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 10px;
}
#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 */