@charset "UTF-8";
@import url("../css/setting.css");
html {
  scroll-padding-top: 130px;
}

:root {
  --separate--shape__w_b: url(../img/common/separate__shape__a_01.svg)center bottom / max(1280px, 100%) 150px no-repeat;
  --separate--shape__y_b: url(../img/common/separate__shape__a_02.svg)center bottom / max(1280px, 100%) 150px no-repeat;
  --pattern--stripe__y_01: url(../img/common/pattern__stripe__a_01.png);
  --pattern--stripe__y_02: url(../img/common/pattern__stripe__a_02.png);
}

.hidden-ttl {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* layout common
////////////////////////////////////////////////////////////////////////////////////////////////// */
[class*=lay__img_txt] {
  --column-gap: 0px;
  --row-gap: 0px;
  column-gap: var(--column-gap);
  row-gap: var(--row-gap);
  display: grid;
  grid-template: "img text" auto/max-content 1fr;
}
[class*=lay__img_txt] .item-img {
  grid-area: img;
  height: fit-content;
}
[class*=lay__img_txt] .item-text {
  grid-area: text;
  height: fit-content;
}
[class*=lay__img_txt].lay__img_txt_t {
  align-items: start;
}
[class*=lay__img_txt].lay__img_txt_c {
  align-items: center;
}
[class*=lay__img_txt].lay__img_txt_b {
  align-items: end;
}
[class*=lay__img_txt]:is(.lay__img_txt_t, .lay__img_txt_c, .lay__img_txt_b).lay__r {
  grid-template: "text img" auto/1fr max-content;
}
[class*=lay__img_txt]:is(.lay__img_txt_t, .lay__img_txt_c, .lay__img_txt_b).lay__r:nth-of-type(even) {
  grid-template: "text img" auto/1fr max-content;
}

[class*=lay__txt_img] {
  --column-gap: 0px;
  --row-gap: 0px;
  column-gap: var(--column-gap);
  row-gap: var(--row-gap);
  display: grid;
  grid-template: "text img" auto/1fr max-content;
}
[class*=lay__txt_img] .item-img {
  grid-area: img;
  height: fit-content;
}
[class*=lay__txt_img] .item-text {
  grid-area: text;
  height: fit-content;
}
[class*=lay__txt_img].lay__txt_img_t {
  align-items: start;
}
[class*=lay__txt_img].lay__txt_img_c {
  align-items: center;
}
[class*=lay__txt_img].lay__txt_img_b {
  align-items: end;
}
[class*=lay__txt_img]:is(.lay__txt_img_t, .lay__txt_img_c, .lay__txt_img_b).lay__r:nth-of-type(even) {
  grid-template: "text img" auto/1fr max-content;
}

.lay__txt_img {
  --column-gap: 0px;
  --row-gap: 0px;
  column-gap: var(--column-gap);
  row-gap: var(--row-gap);
  display: grid;
  grid-template: "text img" auto/1fr max-content;
}
.lay__txt_img.lay__r {
  grid-template: "img text" auto/max-content 1fr;
}
.lay__txt_img.lay__t {
  align-items: start;
}
.lay__txt_img.lay__c {
  align-items: center;
}
.lay__txt_img.lay__b {
  align-items: end;
}
.lay__txt_img.lay__rp:nth-of-type(even) {
  grid-template: "img text" auto/max-content 1fr;
}
.lay__txt_img.lay__r.lay__rp:nth-of-type(even) {
  grid-template: "text img" auto/1fr max-content;
}

.lay__ttl_img_txt {
  --column-gap: 0px;
  --row-gap: 0px;
  column-gap: var(--column-gap);
  row-gap: var(--row-gap);
  display: grid;
  grid-template: "img ttl" auto "img text" auto/max-content 1fr;
}
.lay__ttl_img_txt > .item-ttl {
  grid-area: ttl;
  height: fit-content;
  align-self: end;
}
.lay__ttl_img_txt > .item-img {
  grid-area: img;
  height: fit-content;
}
.lay__ttl_img_txt > .item-text {
  grid-area: text;
  height: fit-content;
  align-self: start;
}
.lay__ttl_img_txt.lay__t {
  align-items: start;
}
.lay__ttl_img_txt.lay__c {
  align-items: center;
}
.lay__ttl_img_txt.lay__b {
  align-items: end;
}
.lay__ttl_img_txt.lay__r {
  grid-template: "ttl img" auto "text img" auto/1fr max-content;
}
.lay__ttl_img_txt.lay__rp:nth-of-type(even) {
  grid-template: "ttl img" auto "text img" auto/1fr max-content;
}
.lay__ttl_img_txt.lay__r.lay__rp:nth-of-type(even) {
  grid-template: "img ttl" auto "img text" auto/max-content 1fr;
}

[class*=lay__list] {
  --column-gap: 1px;
  --row-gap: 1px;
  --num: 1;
  display: flex;
  flex-wrap: wrap;
  column-gap: var(--column-gap);
  row-gap: var(--row-gap);
  display: flex;
  flex-wrap: wrap;
}
[class*=lay__list] > * {
  width: calc((100% - (var(--num) - 1) * var(--column-gap)) / var(--num));
}
[class*=lay__list] .item-img {
  grid-area: img;
  height: fit-content;
}
[class*=lay__list] .item-text {
  grid-area: text;
  height: fit-content;
}
[class*=lay__list].lay__list_s {
  justify-content: start;
}
[class*=lay__list].lay__list_c {
  justify-content: center;
}
[class*=lay__list].lay__list_e {
  justify-content: end;
}

.lay__list {
  --column-gap: 1px;
  --row-gap: 1px;
  --num: 1;
  display: flex;
  flex-wrap: wrap;
  column-gap: var(--column-gap);
  row-gap: var(--row-gap);
  display: flex;
  flex-wrap: wrap;
}
.lay__list > * {
  width: calc((100% - (var(--num) - 1) * var(--column-gap)) / var(--num));
}
.lay__list.lay__t {
  justify-content: start;
}
.lay__list.lay__c {
  justify-content: center;
}
.lay__list.lay__b {
  justify-content: end;
}

/* header ヘッダー
////////////////////////////////////////////////////////////////////////////////////////////////// */
#header {
  position: fixed;
  width: 100%;
  z-index: 5;
  top: 0;
  left: 0;
  /* --------------------------------- */
  /* --------------------------------- */
}
#header .inner {
  width: 100%;
  min-width: 1080px;
  height: 130px;
  background: #fff;
  padding: 0;
}
@media screen and (max-width: 767px) {
  #header .inner {
    height: 70px;
    min-width: unset;
  }
}
#header .block-left {
  position: relative;
  width: fit-content;
  padding-left: var(--margin-30);
}
@media screen and (max-width: 767px) {
  #header .block-left {
    width: 100%;
    padding-left: 0;
    margin-left: 0;
  }
}
#header .block-right {
  position: relative;
  width: fit-content;
  padding-right: var(--margin-30);
}
@media screen and (max-width: 767px) {
  #header .block-right {
    display: none;
  }
}
#header .item-logo {
  display: block;
  width: fit-content;
}
#header .item-logo img {
  width: clamp(280px, 50vw - 300px, 439px);
}
#header .item-logo a {
  width: fit-content;
  display: block;
  transition: ease 0.2s;
}
#header .item-logo a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  #header .item-logo {
    margin: 0 auto;
    max-width: 55dvw;
    max-height: 55px;
  }
  #header .item-logo img {
    height: auto;
  }
}
#header .cont-info {
  width: fit-content;
}
#header .com--tel {
  width: fit-content;
  margin-right: var(--margin-30);
}
#header .com--tel dt {
  letter-spacing: 0.07em;
  margin-bottom: 15px;
  rotate: -0.1deg;
}
#header .com--times {
  margin-bottom: var(--margin-10);
}
#header .com--holiday {
  margin-bottom: var(--margin-15);
  letter-spacing: 0.05em;
}
#header .wrap-contact {
  gap: 30px;
}
#header .com--address {
  margin-top: 3px;
  margin-left: 30px;
  letter-spacing: 0.05em;
}

/* nav グローバルナビゲーション
////////////////////////////////////////////////////////////////////////////////////////////////// */
#nav {
  background: var(--col--acc-y-02);
}
#nav .list-nav {
  width: 1280px;
  height: 85px;
  margin: 0 auto;
  background: #fff;
  border-radius: 50px;
  padding: 0 100px;
}
#nav .list-nav-item {
  width: fit-content;
  position: relative;
  text-align: center;
}
#nav .list-nav-item::before {
  content: "";
  position: absolute;
  background: url(../img/common/nav__deco_01.png) center center/contain no-repeat;
  width: 4px;
  height: 52px;
  right: -50px;
  top: 50%;
  translate: 0 -50%;
}
#nav .list-nav-item a {
  display: inline-block;
  transition: ease 0.17s;
  font-size: var(--font-size-15);
  font-family: var(--fot--M_PLUS_R_1c);
  font-weight: 800;
  rotate: -0.4deg;
  line-height: 1.4;
}
#nav .list-nav-item a:hover {
  color: var(--col--main-01);
}
#nav .list-nav-item:first-of-type::after {
  content: "";
  position: absolute;
  background: url(../img/common/nav__deco_01.png) center center/contain no-repeat;
  width: 4px;
  height: 52px;
  left: -50px;
  top: 50%;
  translate: 0 -50%;
}
@media screen and (max-width: 767px) {
  #nav {
    display: none;
  }
}

.com--holiday {
  font-size: var(--font-size-15);
  font-weight: 700;
  width: fit-content;
}

.com--address {
  position: relative;
  width: fit-content;
  color: #0000ff;
  font-size: var(--font-size-15);
  font-weight: 700;
  padding-bottom: 5px;
  border-bottom: 1px solid #0000ff;
  height: fit-content;
  transition: ease 0.2s;
}
.com--address::before {
  content: "";
  position: absolute;
  background: url(../img/common/icon__pin__a_01.png) center center/contain no-repeat;
  width: 15px;
  height: 21px;
  left: -20px;
  bottom: 0;
}
.com--address:hover {
  opacity: 0.6;
}

.list-sns {
  width: fit-content;
  gap: 30px;
}

/* mv メインビジュアル
////////////////////////////////////////////////////////////////////////////////////////////////// */
#mv {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  height: 690px;
  margin-top: 130px;
  background: url(../img/mv/mv__deco.png) center bottom/max(1280px, 100%) 520px no-repeat;
}
#mv .mv-img {
  background: url(../img/mv/mv__img.png) center center/cover no-repeat;
  width: clamp(1280px, 100%, 1690px);
  height: 660px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #mv {
    height: 100vw;
  }
}
#mv .mv-catch {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
}

/* sv サブビジュアル
////////////////////////////////////////////////////////////////////////////////////////////////// */
#sv {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 380px;
  background: url(../img/sv/sv__bg_deco.png) center bottom/max(1280px, 100%) 290px no-repeat, #fff;
  margin-top: 130px;
}
@media screen and (max-width: 767px) {
  #sv {
    height: 50vw;
  }
}
#sv .sv-img {
  width: 1690px;
  height: 330px;
  position: relative;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
}
#sv .sv-catch {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
}

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

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

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

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

.sv-price {
  background: url(../img/sv/sv__price.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;
}

/* main コンテンツ
////////////////////////////////////////////////////////////////////////////////////////////////// */
/* TOP
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.wrap-allover {
  overflow: hidden;
  position: relative;
}

.com--ttl03-01 {
  width: fit-content;
}
.com--ttl03-01 .en {
  display: block;
  width: fit-content;
}
.com--ttl03-01 .ja {
  display: block;
  width: fit-content;
}

/* top-banner
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
.common--banner {
  background: var(--col--acc-y-02);
}
.common--banner .inner {
  --num: 2;
  --column-gap: 60px;
  --row-gap: 60px;
  padding-top: 120px;
}
.common--banner .cont-banner {
  border-radius: 20px;
  background: #fff;
  padding: 30px 40px;
  padding-top: 10px;
  font-family: var(--Kiwi-Maru);
}
.common--banner .cont-banner .ttl03 {
  margin: 0 auto;
  width: fit-content;
  padding: 15px 25px;
  text-align: center;
  margin-bottom: var(--margin-30);
  border-radius: 10px;
  margin-top: -50px;
}
.common--banner .cont-banner .ttl03 .ja {
  font-size: var(--font-size-34);
  font-family: var(--Kiwi-Maru);
  color: #fff;
  font-weight: 500;
}
.common--banner .cont-banner .item-lead {
  text-align: center;
  font-size: var(--font-size-22);
  padding-bottom: var(--margin-15);
  border-bottom: 1px dashed #756d64;
  margin-bottom: var(--margin-15);
}
.common--banner .cont-banner .item-lead p {
  line-height: 1.8;
}
.common--banner .cont-banner .item-lead .str-01 {
  font-size: var(--font-size-30);
}
.common--banner .cont-banner .item-lead .str-02 {
  font-size: var(--font-size-30);
}
.common--banner .cont-banner .item-price {
  text-align: center;
}
.common--banner .cont-banner .item-price .point-text {
  margin-bottom: var(--margin-10);
  font-size: var(--font-size-27);
  font-weight: 500;
  margin: 0 auto;
  position: relative;
  width: fit-content;
  padding-bottom: 0;
  margin-bottom: 0;
  line-height: 1;
}
.common--banner .cont-banner .item-price .point-text::before {
  content: "";
  position: absolute;
  background: url(../img/common/deco__shine__a_01.png) center center/contain no-repeat;
  width: 12px;
  height: 13px;
  left: -20px;
  bottom: 0;
}
.common--banner .cont-banner .item-price .point-text::after {
  content: "";
  position: absolute;
  background: url(../img/common/deco__shine__a_02.png) center center/contain no-repeat;
  width: 12px;
  height: 13px;
  right: -20px;
  bottom: 0;
}
.common--banner .cont-banner .item-price .price {
  font-size: 70px;
  color: var(--col--acc-r-01);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.common--banner .cont-banner .item-price .price small.unit {
  font-size: var(--font-size-40);
}
.common--banner .cont-banner .item-price .price small.note {
  letter-spacing: 0.08em;
  font-size: var(--font-size-22);
}
.common--banner .cont-banner .item-price .str-01 {
  font-size: var(--font-size-30);
}
.common--banner .cont-banner .item-price .str-02 {
  font-size: var(--font-size-30);
}
.common--banner .cont-banner.cont-beginner {
  border: 2px solid var(--col--main-02);
}
.common--banner .cont-banner.cont-beginner .ttl03 {
  position: relative;
  background: var(--col--main-02);
}
.common--banner .cont-banner.cont-beginner .ttl03::before {
  --width: 17px;
  --height: 15px;
  --color: var(--col--main-02);
  content: "";
  position: absolute;
  left: 50%;
  translate: -50% 100%;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: var(--color) transparent transparent transparent;
  border-width: var(--height) calc((var(--width)) / 2) 0px calc((var(--width)) / 2);
}
.common--banner .cont-banner.cont-beginner .item-lead .str-01 {
  display: inline-block;
  padding: 1px;
  line-height: 1;
  background: #fff2df;
  color: var(--col--main-01);
}
.common--banner .cont-banner.cont-beginner .item-lead .str-02 {
  color: var(--col--main-01);
}
.common--banner .cont-banner.cont-subscription {
  border: 2px solid var(--col--acc-g-01);
}
.common--banner .cont-banner.cont-subscription .ttl03 {
  background: var(--col--acc-g-01);
  position: relative;
}
.common--banner .cont-banner.cont-subscription .ttl03::before {
  --width: 17px;
  --height: 15px;
  --color: var(--col--acc-g-01);
  content: "";
  position: absolute;
  left: 50%;
  translate: -50% 100%;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: var(--color) transparent transparent transparent;
  border-width: var(--height) calc((var(--width)) / 2) 0px calc((var(--width)) / 2);
}
.common--banner .cont-banner.cont-subscription .item-lead {
  padding-bottom: var(--margin-30);
}
.common--banner .cont-banner.cont-subscription .item-lead .str-01 {
  display: inline-block;
  padding: 1px;
  line-height: 1;
  color: var(--col--acc-g-01);
  background: var(--col--acc-y-03);
}
.common--banner .cont-banner.cont-subscription .item-lead .str-02 {
  color: var(--col--acc-g-01);
}
.com--ttl03-01 {
  width: fit-content;
  margin: 0 auto;
  line-height: 1.3;
  text-align: center;
}
.com--ttl03-01 .ja {
  font-family: var(--Kiwi-Maru);
  font-size: var(--font-size-34);
  font-weight: 500;
  margin-bottom: var(--margin-20);
}
.com--ttl03-01 .ja .str-01 {
  font-size: var(--font-size-42);
  color: var(--col--main-02);
}
.com--ttl03-01 .ja .str-02 {
  font-size: var(--font-size-42);
  color: var(--col--main-02);
  background: url(../img/common/deco__border__a_01.png) bottom left repeat-x;
}
.com--ttl03-01 .en {
  position: relative;
  margin: 0 auto;
  width: fit-content;
  font-family: var(--Kiwi-Maru);
  font-size: var(--font-size-20);
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.07em;
  font-style: italic;
}
.com--ttl03-01 .en::before {
  content: "";
  position: absolute;
  background: url(../img/common/deco__ttl_deco__a_01.png) center center/contain no-repeat;
  width: 33px;
  height: 3px;
  left: -45px;
  top: 50%;
  translate: 0 -50%;
}
.com--ttl03-01 .en::after {
  content: "";
  position: absolute;
  background: url(../img/common/deco__ttl_deco__a_02.png) center center/contain no-repeat;
  width: 33px;
  height: 3px;
  right: -45px;
  top: 50%;
  translate: 0 -50%;
}

/* top-greeting
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#top--greeting {
  background: url(../img/common/illust__future__a_01.png) left max(20px, 50vw - 605px) bottom 80px no-repeat, url(../img/common/illust__future__a_02.png)  right  max(20px, 50vw - 550px) bottom 45px no-repeat, var(--separate--shape__w_b), var(--col--acc-y-03);
  position: relative;
}
#top--greeting .inner {
  position: relative;
  padding-bottom: 0;
}
#top--greeting .ttl03 {
  margin-bottom: var(--margin-50);
}
#top--greeting .list-images {
  position: absolute;
  width: 100%;
  height: 390px;
  top: 120px;
  left: 50%;
  translate: -50% 0;
}
#top--greeting .list-images-item {
  position: absolute;
}
#top--greeting .list-images-item:nth-of-type(1) {
  left: 0;
  top: 0;
}
#top--greeting .list-images-item:nth-of-type(1)::before {
  content: "";
  position: absolute;
  background: url(../img/common/illust__house__a_01.png) center center/contain no-repeat;
  width: 173px;
  height: 88px;
  right: 0;
  bottom: -120px;
}
#top--greeting .list-images-item:nth-of-type(2) {
  right: 0;
  top: 0;
}
#top--greeting .item-text {
  text-align: center;
  margin-bottom: var(--margin-65);
}
#top--greeting .item-movie {

  position: relative;
  width: 860px;
  margin: 0 auto;
  background: #fff;
  height: 480px;

  /* 以下は動画挿入後削除します */
  /* display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-40);
  color: #bbbbbb;
  font-weight: 700;
  top: 100px;

  margin-bottom: 165px; */

    iframe{
    width: 100%;
    height: 100%;
  }
}
#top--greeting .item-movie::before {
  content: "";
  position: absolute;
  width: 100%;
  border-top: 2px dashed var(--col--main-01);
  top: -10px;
  left: 0;
}
#top--greeting .item-movie::after {
  content: "";
  position: absolute;
  width: 100%;
  border-top: 2px dashed var(--col--main-01);
  bottom: -10px;
  left: 0;
}

/* top-worries
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#top--worries {
  position: relative;
  z-index: 0;
}
#top--worries::before {
  content: "";
  position: absolute;
  background: url(../img/common/illust__future__a_03.png) center center/contain no-repeat;
  width: 387px;
  height: 148px;
  right: max(50px, 50vw - 640px);
  top: -25px;
}
#top--worries .inner {
  padding-top: 50px;
  padding-bottom: 50px;
}
#top--worries .ttl03 {
  margin: 0 auto;
  margin-bottom: var(--margin-40);
}
#top--worries .list-worries {
  height: 400px;
  position: relative;
  width: 1020px;
  margin: 0 auto;
  background: url(../img/common/illust__human__a_04.png) center top 40px no-repeat;
  margin-bottom: 160px;
}
#top--worries .list-worries::before {
  content: "";
  position: absolute;
  background: url(../img/common/icon__dot__a_01.png) center center/contain no-repeat;
  width: 10px;
  height: 50px;
  left: 50%;
  translate: -50% 0;
  bottom: -100px;
}
#top--worries .list-worries-item {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}
#top--worries .list-worries-item::before {
  z-index: -1;
}
#top--worries .list-worries-item .text {
  font-size: var(--font-size-20);
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
#top--worries .list-worries-item .text .str-01 {
  font-weight: 700;
  font-size: var(--font-size-22);
  color: var(--col--main-02);
}
#top--worries .list-worries-item:nth-of-type(1) {
  background: url(../img/top/top__worries__frame_01.png);
  width: 273px;
  height: 110px;
  left: 60px;
  top: 0;
}
#top--worries .list-worries-item:nth-of-type(1)::before {
  content: "";
  position: absolute;
  background: url(../img/top/top__worries__arrow_01.png) center center/contain no-repeat;
  width: 38px;
  height: 15px;
  top: 60%;
  translate: 100% -50%;
  right: 10px;
}
#top--worries .list-worries-item:nth-of-type(2) {
  background: url(../img/top/top__worries__frame_02.png);
  width: 273px;
  height: 110px;
  right: 60px;
  top: 0;
}
#top--worries .list-worries-item:nth-of-type(2)::before {
  content: "";
  position: absolute;
  background: url(../img/top/top__worries__arrow_02.png) center center/contain no-repeat;
  width: 38px;
  height: 15px;
  top: 60%;
  translate: -100% -50%;
  left: 10px;
}
#top--worries .list-worries-item:nth-of-type(3) {
  background: url(../img/top/top__worries__frame_03.png);
  width: 273px;
  height: 110px;
  left: 0;
  top: 140px;
}
#top--worries .list-worries-item:nth-of-type(3)::before {
  content: "";
  position: absolute;
  background: url(../img/top/top__worries__arrow_03.png) center center/contain no-repeat;
  width: 36px;
  height: 14px;
  right: 10px;
  top: 50%;
  translate: 100% -50%;
}
#top--worries .list-worries-item:nth-of-type(4) {
  background: url(../img/top/top__worries__frame_04.png);
  width: 273px;
  height: 110px;
  right: 0;
  top: 140px;
}
#top--worries .list-worries-item:nth-of-type(4)::before {
  content: "";
  position: absolute;
  background: url(../img/top/top__worries__arrow_04.png) center center/contain no-repeat;
  width: 36px;
  height: 14px;
  left: 10px;
  top: 50%;
  translate: -100% -50%;
}
#top--worries .list-worries-item:nth-of-type(5) {
  background: url(../img/top/top__worries__frame_05.png);
  width: 349px;
  height: 126px;
  left: 140px;
  bottom: 0;
}
#top--worries .list-worries-item:nth-of-type(5)::before {
  content: "";
  position: absolute;
  background: url(../img/top/top__worries__arrow_05.png) center center/contain no-repeat;
  width: 34px;
  height: 27px;
  left: 50%;
  translate: -50% -100%;
  top: 10px;
}
#top--worries .list-worries-item:nth-of-type(6) {
  background: url(../img/top/top__worries__frame_06.png);
  width: 281px;
  height: 111px;
  right: 200px;
  bottom: 0;
}
#top--worries .list-worries-item:nth-of-type(6)::before {
  content: "";
  position: absolute;
  background: url(../img/top/top__worries__arrow_06.png) center center/contain no-repeat;
  width: 30px;
  height: 27px;
  left: 50%;
  translate: -50% -100%;
  top: 10px;
}

.common--info {
  padding: 50px;
  padding-bottom: 40px;
  background: url(../img/common/illust__human__a_01.png) left 20px bottom no-repeat, url(../img/common/illust__human__a_02.png) right 20px bottom no-repeat, var(--pattern--stripe__y_02);
  border: 1px solid var(--col--acc-y-01);
  border-radius: 30px;
}
.common--info .ttl04 {
  position: relative;
  display: block;
  margin: 0 auto;
  width: fit-content;
  margin-bottom: var(--margin-40);
  margin-top: -90px;
}
.common--info .unit-info {
  margin: 0 auto;
  width: fit-content;
  gap: 40px;
  position: relative;
}
.common--info .unit-info::before {
  content: "";
  position: absolute;
  background: url(../img/common/illust__balloon__a_01.png) center center/contain no-repeat;
  width: 123px;
  height: 113px;
  left: -100px;
  top: -110px;
}
.common--info .unit-info::after {
  content: "";
  position: absolute;
  background: url(../img/common/illust__balloon__a_02.png) center center/contain no-repeat;
  width: 123px;
  height: 113px;
  right: -100px;
  top: -110px;
}
.common--info .unit-info .com--tel dt {
  margin-bottom: var(--margin-15);
  padding: 15px 30px;
  font-size: var(--font-size-20);
  rotate: -0.2deg;
}
.common--info .unit-info .com--tel dt .str-01 {
  font-size: var(--font-size-28);
}
.common--info .unit-info .com--tel .tel-num {
  --font-size: var(--font-size-45);
  margin-left: 10px;
  letter-spacing: 0.02em;
  font-size: var(--font-size-45);
}
.common--info .unit-info .wrap-info {
  width: fit-content;
}
.common--info .unit-info .wrap-info .com--times {
  margin-bottom: var(--margin-10);
}
.common--info .unit-info .wrap-info .com--times-item dt,
.common--info .unit-info .wrap-info .com--times-item dd {
  font-size: var(--font-size-16);
}
.common--info .unit-info .wrap-info .com--times-item dt {
  background: #fff;
  padding: 5px 10px;
}
.common--info .unit-info .wrap-info .com--holiday {
  margin-bottom: var(--margin-30);
}
.common--info .unit-info .wrap-info .com--holiday > * {
  letter-spacing: 0.07em;
}
.common--info .unit-info .wrap-info .list-sns {
  gap: 35px;
}
.common--info .unit-info .wrap-info .list-sns-item a {
  --size: 35px;
}
.common--info .unit-info .wrap-info .list-sns-item .com--btn-contact img {
  width: 35px;
}

/* top-difference
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#top--difference {
  background: url(../img/common/separate__shape__a_02.svg) center top 125px/100% no-repeat;
  position: relative;
  z-index: 0;
}
#top--difference::before {
  z-index: -1;
  content: "";
  position: absolute;
  height: calc(100% - 270px);
  width: 100%;
  bottom: 0;
  left: 0;
  background: var(--col--acc-y-03);
}
#top--difference .ttl03 {
  margin: 0 auto;
  width: fit-content;
  margin-bottom: var(--margin-60);
}
#top--difference .list-difference {
  --num: 4;
  --column-gap: 40px;
  --row-gap: 40px;
  margin-bottom: var(--margin-50);
}
#top--difference .list-difference-item .ttl04 {
  text-align: center;
  order: 2;
  font-family: var(--Kiwi-Maru);
}
#top--difference .list-difference-item .ttl04 .ja {
  line-height: 1.6;
  font-size: var(--font-size-20);
}
#top--difference .list-difference-item .ttl04 .ja .str-01 {
  color: var(--color-str);
}
#top--difference .list-difference-item .item-img {
  margin-bottom: var(--margin-15);
  order: 1;
}
#top--difference .list-difference-item:nth-of-type(1) {
  --color-str: var(--col--acc-r-01);
}
#top--difference .list-difference-item:nth-of-type(2) {
  --color-str: var(--col--acc-b-01);
}
#top--difference .list-difference-item:nth-of-type(3) {
  --color-str: var(--col--acc-v-01);
}
#top--difference .list-difference-item:nth-of-type(4) {
  --color-str: var(--col--acc-g-01);
}
#top--difference .com--btn-01 {
  margin: 0 auto;
}

/* top-voice
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#top--voice {
  background: url(../img/common/illust__human__a_03.png) left max(20px, 50vw - 490px) bottom no-repeat, url(../img/common/illust__future__a_04.png) right max(20px, 50vw - 490px) bottom no-repeat, #fff;
}
#top--voice .ttl03 {
  margin: 0 auto;
  margin-bottom: var(--margin-50);
}
#top--voice .post_none {
  text-align: center;
}
#top--voice .cont-post {
  --num: 2;
  --column-gap: 80px;
  --row-gap: 60px;
}
#top--voice .cont-post .unit-post {
  margin-bottom: var(--margin-50);
  transition: ease 0.3s;
  position: relative;
  top: 0;
}
#top--voice .cont-post .unit-post .list-compare {
  --num: 2;
  --column-gap: 60px;
  --row-gap: 0px;
  position: relative;
  padding-bottom: var(--margin-20);
  border-bottom: 1px dotted var(--col--txt-01);
  margin-bottom: var(--margin-20);
}
#top--voice .cont-post .unit-post .list-compare::before {
  content: "";
  position: absolute;
  background: url(../img/common/icon__arrow__a_02.png) center center/contain no-repeat;
  width: 20px;
  height: 37px;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
}
#top--voice .cont-post .unit-post .list-compare-item dt {
  font-family: var(--Kiwi-Maru);
  font-size: var(--font-size-20);
  font-weight: 500;
  text-align: center;
  margin-bottom: var(--margin-15);
}
#top--voice .cont-post .unit-post .list-compare-item dd .item-img {
  border-radius: 10px;
  height: 150px;
}
#top--voice .cont-post .unit-post .list-compare-item.list-compare-before dt {
  position: relative;
  color: var(--col--acc-b-01);
}
#top--voice .cont-post .unit-post .list-compare-item.list-compare-before dt::before {
  content: "";
  position: absolute;
  background: url(../img/common/deco__shine__a_01_b.png);
  width: 13px;
  height: 14px;
  left: 50px;
  bottom: 0;
}
#top--voice .cont-post .unit-post .list-compare-item.list-compare-before dt::after {
  content: "";
  position: absolute;
  background: url(../img/common/deco__shine__a_02_b.png);
  width: 13px;
  height: 14px;
  right: 50px;
  bottom: 0;
}
#top--voice .cont-post .unit-post .list-compare-item.list-compare-after dt {
  position: relative;
  color: var(--col--acc-r-01);
}
#top--voice .cont-post .unit-post .list-compare-item.list-compare-after dt::before {
  content: "";
  position: absolute;
  background: url(../img/common/deco__shine__a_01_r.png);
  width: 13px;
  height: 14px;
  left: 50px;
  bottom: 0;
}
#top--voice .cont-post .unit-post .list-compare-item.list-compare-after dt::after {
  content: "";
  position: absolute;
  background: url(../img/common/deco__shine__a_02_r.png);
  width: 13px;
  height: 14px;
  right: 50px;
  bottom: 0;
}
#top--voice .cont-post .unit-post .item-text p {
  line-height: 1.7;
  font-size: var(--font-size-16);
}
#top--voice .cont-post .unit-post:hover {
  opacity: 0.8;
  top: -5px;
}
#top--voice .com--btn-01 {
  margin: 0 auto;
}

/* top-news
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
.unit-latest {
  padding-bottom: var(--margin-15);
  border-bottom: 1px dotted var(--col--txt-01);
  margin-bottom: var(--margin-15);
  position: relative;
  right: 0;
  transition: ease 0.3s;
}
.unit-latest a {
  width: 100%;
  height: 100%;
}
.unit-latest .unit-latest-text {
  width: 100%;
}
.unit-latest .unit-latest-text.on_thumb {
  width: 85%;
}
@media screen and (max-width: 767px) {
  .unit-latest .unit-latest-text.on_thumb {
    width: 70%;
  }
}
.unit-latest .item-ttl {
  order: 3;
  width: 70%;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: var(--font-size-14);
}
.unit-latest .item-time {
  position: relative;
  order: 2;
  width: fit-content;
  margin-right: var(--margin-30);
  font-size: var(--font-size-14);
}
.unit-latest .item-time::before {
  content: "/";
  position: absolute;
  right: -20px;
  bottom: 0;
}
.unit-latest .tag_list {
  order: 1;
  width: 100%;
  margin-bottom: var(--margin-15);
  gap: 12px;
}
.unit-latest .tag_list-item {
  width: fit-content;
  height: fit-content;
  font-weight: 500;
  font-size: var(--font-size-14);
  color: var(--col--main-01);
}
.unit-latest .unit-latest-img {
  height: 130px;
  width: 130px;
  margin-right: 30px;
}
@media screen and (max-width: 767px) {
  .unit-latest .unit-latest-img {
    height: 20vw;
    width: 20vw;
    margin-right: 2vw;
  }
}
.unit-latest .item-thumb {
  height: 130px;
  width: 130px;
}
@media screen and (max-width: 767px) {
  .unit-latest .item-thumb {
    height: 20vw;
    width: 20vw;
    margin-right: 2vw;
  }
}
.unit-latest:hover {
  color: var(--col--acc-01);
  right: -5px;
  opacity: 0.7;
}

.s-post-taglist {
  gap: 10px;
}
.s-post-taglist .tag-name {
  width: fit-content;
  height: fit-content;
  font-weight: 500;
  font-size: var(--font-size-14);
  color: var(--col--main-01);
}

#top--news .unit-latest {
  padding-bottom: var(--margin-15);
  border-bottom: 1px dotted var(--col--txt-01);
  margin-bottom: var(--margin-15);
  position: relative;
  right: 0;
  transition: ease 0.3s;
}
#top--news .unit-latest a {
  width: 100%;
  height: 100%;
}
#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: 3;
  width: 70%;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: var(--font-size-14);
}
#top--news .unit-latest .item-time {
  position: relative;
  order: 2;
  width: fit-content;
  margin-right: var(--margin-30);
  font-size: var(--font-size-14);
}
#top--news .unit-latest .item-time::before {
  content: "/";
  position: absolute;
  right: -20px;
  bottom: 0;
}
#top--news .unit-latest .tag_list {
  order: 1;
  width: 100%;
  margin-bottom: var(--margin-15);
  gap: 12px;
}
#top--news .unit-latest .tag_list-item {
  width: fit-content;
  height: fit-content;
  font-weight: 500;
  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 {
  color: var(--col--acc-01);
  right: -5px;
  opacity: 0.7;
}
#top--news .com--btn-01 {
  margin: 0 auto;
}

#top--news {
  background: var(--col--acc-y-02);
  min-height: 400px;
}
#top--news .inner {
  position: relative;
}
#top--news .ttl03 {
  position: absolute;
  left: 0;
  top: 100px;
}
#top--news .cont-latest {
  width: 700px;
  margin-left: auto;
}
#top--news .com--btn-01 {
  position: absolute;
  left: 0;
  top: 230px;
  width: 280px;
}
/* top-gallery
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
.top--gallery {
  position: relative;
  z-index: 0;
  background: #fff;
}
.top--gallery .inner {
  width: 1280px;
  padding-top: 20px;
  padding-bottom: 50px;
}
.top--gallery::before {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 95px;
  background: var(--col--acc-y-02);
  top: 0;
  left: 0;
}
.top--gallery .cont-post {
  --num: 5;
  --column-gap: 20px;
  --row-gap: 0;
}
.top--gallery .cont-post .unit-post {
  height: 165px;
}
.top--gallery .cont-post .unit-post .item-img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.top--gallery .cont-post .unit-post:nth-of-type(even) {
  margin-top: -20px;
}
/* top-map
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
.top--map {
  position: relative;
}
.top--map .inner {
  position: relative;
  padding-top: 50px;
  padding-bottom: 100px;
}
.top--map .inner::before {
  content: "";
  position: absolute;
  background: url(../img/common/illust__house__a_02.png) center center/contain no-repeat;
  width: 107px;
  height: 88px;
  right: -150px;
  bottom: 55px;
}
.top--map .item-map {
  width: 100%;
  height: 350px;
  min-height: 200px;
  border-radius: 30px;
  outline: 2px solid var(--col--main-02);
  border: 4px solid #fff;
}
.top--map .item-map iframe {
  width: 100%;
  border-radius: 30px;
  height: 100%;
}

/* footer フッター
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#footer {
  position: relative;
  width: 100%;
  position: relative;
  background: #fff2df;
  padding-top: var(--margin-50);
  /* --------------------------------- */
  /* --------------------------------- */
}
#footer::before {
  content: "";
  position: absolute;
  background: url(../img/common/pattern__stripe__a_01.png) repeat;
  top: 0;
  width: 100%;
  height: 15px;
  left: 0;
}
#footer .item-logo {
  width: fit-content;
  display: block;
  transition: ease 0.2s;
  margin: 0 auto;
}
#footer .item-logo:hover {
  opacity: 0.6;
}
#footer .inner {
  padding: 60px 0 50px;
}
@media screen and (max-width: 767px) {
  #footer .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
#footer .block-left {
  position: relative;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  #footer .block-left {
    width: 100%;
  }
}
#footer .block-right {
  position: relative;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  #footer .block-right {
    width: 100%;
  }
}
#footer .list-nav {
  height: 130px;
  gap: 20px;
  margin-bottom: var(--margin-50);
}
#footer .list-nav-item {
  width: fit-content;
  position: relative;
  padding-left: 16px;
}
#footer .list-nav-item::before {
  --width: 10px;
  --height: 8px;
  --color: var(--col--main-02);
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent transparent var(--color);
  border-width: calc((var(--width)) / 2) 0px calc((var(--width)) / 2) var(--height);
}
#footer .list-nav-item a {
  font-weight: 500;
  position: relative;
  transition: ease 0.2s;
  font-size: var(--font-size-14);
}
#footer .list-nav-item a:hover {
  transition: ease 0.2s;
  color: var(--col--acc-01);
  color: var(--col--main-01);
}
@media screen and (max-width: 767px) {
  #footer .list-nav {
    display: none;
  }
}
#footer #copyright {
  font-size: var(--font-size-13);
  text-align: end;
  color: var(--col--main-02);
}
#footer #copyright a {
  margin: 0 2px;
  padding: 0 5px;
  transition: ease 0.12s;
}
#footer #copyright a:hover {
  color: #fff;
  background: var(--col--main-02);
}
@media screen and (max-width: 767px) {
  #footer #copyright a {
    margin: unset;
    padding: unset;
  }
  #footer #copyright a:hover {
    color: inherit;
    background: inherit;
  }
}
#footer .com--tel {
  margin-bottom: 5px;
}
#footer .com--tel dt {
  rotate: -0.1deg;
  padding: 10px 30px;
}
#footer .com--times {
  margin-bottom: var(--margin-10);
}
#footer .com--holiday {
  margin-bottom: var(--margin-20);
}
#footer .com--address {
  margin-right: auto;
  margin-left: 30px;
}

/* 共通タイトル
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#contents-u .ttl01,
#contact .ttl01 {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: var(--margin-70);
}
#contents-u .ttl01 .ja,
#contact .ttl01 .ja {
  display: inline-block;
  position: relative;
  font-size: var(--font-size-40);
  font-weight: 500;
  font-family: var(--Kiwi-Maru);
  letter-spacing: 0.06em;
  padding-bottom: var(--margin-40);
}
#contents-u .ttl01 .ja::first-letter,
#contact .ttl01 .ja::first-letter {
  color: var(--col--main-02);
}
#contents-u .ttl01 .ja::before,
#contact .ttl01 .ja::before {
  content: "";
  position: absolute;
  background: url(../img/common/deco__ttl_deco__a_02.png) center center/contain no-repeat;
  width: 33px;
  height: 3px;
  left: 50%;
  translate: -50% 0;
  bottom: 0;
}
#contents-u .ttl01 .en,
#contact .ttl01 .en {
  margin: 0 auto;
  display: none;
}

/* subpage 下層ページ
////////////////////////////////////////////////////////////////////////////////////////////////// */
.com--table-01 tr th,
.com--table-01 tr td {
  padding: 20px 0;
  line-height: 1.8;
  font-size: var(--font-size-15);
  font-weight: 500;
  border-bottom: 1px solid var(--col--txt-01);
}
.com--table-01 tr th {
  text-align: center;
  vertical-align: middle;
  background: var(--col--acc-y-01);
  width: 25%;
}
.com--table-01 tr td {
  padding-left: 15px;
  background: #fff;
}
.com--table-01 tr:first-of-type th,
.com--table-01 tr:first-of-type td {
  border-top: 1px solid var(--col--txt-01);
}

.com--ttl03-02 {
  margin: 0 auto;
  width: fit-content;
  margin-bottom: var(--margin-50);
}
.com--ttl03-02 .ja {
  display: inline-block;
  position: relative;
  font-size: var(--font-size-40);
  font-weight: 500;
  font-family: var(--Kiwi-Maru);
  letter-spacing: 0.06em;
  padding-bottom: var(--margin-40);
}
.com--ttl03-02 .ja::first-letter {
  color: var(--col--main-02);
}
.com--ttl03-02 .ja::before {
  content: "";
  position: absolute;
  background: url(../img/common/deco__ttl_deco__a_02.png) center center/contain no-repeat;
  width: 33px;
  height: 3px;
  left: 50%;
  translate: -50% 0;
  bottom: 0;
}

/* feature
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* feature-btn
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#feature--btn {
  background: var(--col--acc-y-02);
}
#feature--btn .inner {
  padding-bottom: 0;
}
#feature--btn .list-btn {
  --num: 2;
  --column-gap: 40px;
  --row-gap: 40px;
}
#feature--btn .list-btn-item {
  width: fit-content;
}
#feature--btn .list-btn-item .com--btn-01 {
  width: 280px;
}
/* feature-prof
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#feature--prof {
  background: url(../img/common/illust__house__a_01.png) left max(50px, 50vw - 620px) bottom 50px no-repeat, url(../img/common/illust__future__a_05.png) right max(50px, 50vw - 610px) bottom no-repeat, var(--col--acc-y-02);
}
#feature--prof .inner {
  position: relative;
}
#feature--prof .ttl03 {
  margin-bottom: var(--margin-50);
}
#feature--prof .ttl03 dl {
  font-family: var(--Kiwi-Maru);
}
#feature--prof .ttl03 dl dt {
  font-size: var(--font-size-24);
  color: var(--col--main-01);
  font-weight: 500;
  margin-right: var(--margin-20);
}
#feature--prof .ttl03 dl dd ruby {
  font-size: var(--font-size-40);
  font-weight: 500;
}
#feature--prof .ttl03 dl dd ruby rt {
  font-size: var(--font-size-18);
  font-weight: 500;
}
#feature--prof .wrap-info {
  margin-bottom: var(--margin-40);
  --column-gap: 40px;
  --row-gap: 0px;
}
#feature--prof .wrap-info .com--table-01 tr th,
#feature--prof .wrap-info .com--table-01 tr td {
  line-height: 2;
}
#feature--prof .item-text {
  text-align: center;
  margin-bottom: var(--margin-40);
}
#feature--prof .item-movie{
  position: relative;
  width: 860px;
  margin: 0 auto;
  background: #fff;
  height: 480px;

  /* 以下は動画挿入後削除します */
  /* display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-40);
  color: #bbbbbb;
  font-weight: 700; */

    iframe{
    width: 100%;
    height: 100%;
  }
}
#feature--prof .item-movie::before {
  content: "";
  position: absolute;
  width: 100%;
  border-top: 2px dashed var(--col--main-01);
  top: -10px;
  left: 0;
}
#feature--prof .item-movie::after {
  content: "";
  position: absolute;
  width: 100%;
  border-top: 2px dashed var(--col--main-01);
  bottom: -10px;
  left: 0;
}
/* feature-reason
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#feature--reason {
  background: url(../img/common/separate__shape__a_03.png) center bottom/max(1280px, 100%) 680px no-repeat;
}
#feature--reason .list-reason {
  --num: 4;
  --column-gap: 40px;
  --row-gap: 40px;
  margin-bottom: var(--margin-50);
}
#feature--reason .list-reason-item .ttl04 {
  text-align: center;
  order: 2;
  font-family: var(--Kiwi-Maru);
}
#feature--reason .list-reason-item .ttl04 .ja {
  line-height: 1.6;
  font-size: var(--font-size-20);
}
#feature--reason .list-reason-item .ttl04 .ja .str-01 {
  color: var(--color-str);
}
#feature--reason .list-reason-item .item-img {
  margin-bottom: var(--margin-15);
  order: 1;
}
#feature--reason .list-reason-item:nth-of-type(1) {
  --color-str: var(--col--acc-r-01);
}
#feature--reason .list-reason-item:nth-of-type(2) {
  --color-str: var(--col--acc-b-01);
}
#feature--reason .list-reason-item:nth-of-type(3) {
  --color-str: var(--col--acc-v-01);
}
#feature--reason .list-reason-item:nth-of-type(4) {
  --color-str: var(--col--acc-g-01);
}
#feature--reason .wrap-feature .cont-feature {
  --column-gap: 50px;
  --row-gap: 0px;
  margin-bottom: var(--margin-50);
}
#feature--reason .wrap-feature .cont-feature:last-child {
  margin-bottom: 0;
}
#feature--reason .wrap-feature .cont-feature .ttl04 {
  font-family: var(--Kiwi-Maru);
  padding-bottom: var(--margin-25);
  border-bottom: 1px solid var(--col--txt-01);
  margin-bottom: var(--margin-25);
}
#feature--reason .wrap-feature .cont-feature .ttl04 .ja {
  line-height: 1.4;
  font-size: var(--font-size-30);
  font-weight: 500;
}
#feature--reason .wrap-feature .cont-feature .ttl04 .ja .str-01 {
  font-size: var(--font-size-38);
  font-weight: 500;
}
#feature--reason .wrap-feature .cont-feature:nth-of-type(1) .ttl04 {
  border-bottom: 1px solid var(--col--acc-r-01);
}
#feature--reason .wrap-feature .cont-feature:nth-of-type(1) .ttl04 .ja .str-01 {
  color: var(--col--acc-r-01);
}
#feature--reason .wrap-feature .cont-feature:nth-of-type(1) .item-text p .str-01 {
  font-weight: 700;
  color: var(--col--acc-r-01);
}
#feature--reason .wrap-feature .cont-feature:nth-of-type(2) .ttl04 {
  border-bottom: 1px solid var(--col--acc-g-01);
}
#feature--reason .wrap-feature .cont-feature:nth-of-type(2) .ttl04 .ja .str-01 {
  color: var(--col--acc-g-01);
}
#feature--reason .wrap-feature .cont-feature:nth-of-type(2) .item-text p .str-01 {
  font-weight: 700;
  color: var(--col--acc-g-01);
}

/* feature-voice
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#feature--voice .inner {
  position: relative;
  padding-bottom: 150px;
}
#feature--voice .inner::before {
  content: "";
  position: absolute;
  background: url(../img/common/illust__human__a_06.png) center center/contain no-repeat;
  width: 175px;
  height: 129px;
  left: 30px;
  bottom: 0;
}
#feature--voice .post_none {
  text-align: center;
}
#feature--voice .cont-post {
  --num: 2;
  --column-gap: 80px;
  --row-gap: 60px;
}
#feature--voice .cont-post .unit-post {
  transition: ease 0.3s;
  position: relative;
  top: 0;
}
#feature--voice .cont-post .unit-post .list-compare {
  --num: 2;
  --column-gap: 60px;
  --row-gap: 0px;
  position: relative;
  padding-bottom: var(--margin-20);
  border-bottom: 1px dotted var(--col--txt-01);
  margin-bottom: var(--margin-20);
}
#feature--voice .cont-post .unit-post .list-compare::before {
  content: "";
  position: absolute;
  background: url(../img/common/icon__arrow__a_02.png) center center/contain no-repeat;
  width: 20px;
  height: 37px;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
}
#feature--voice .cont-post .unit-post .list-compare-item dt {
  font-family: var(--Kiwi-Maru);
  font-size: var(--font-size-20);
  font-weight: 500;
  text-align: center;
  margin-bottom: var(--margin-15);
}
#feature--voice .cont-post .unit-post .list-compare-item dd .item-img {
  border-radius: 10px;
  height: 150px;
}
#feature--voice .cont-post .unit-post .list-compare-item.list-compare-before dt {
  position: relative;
  color: var(--col--acc-b-01);
}
#feature--voice .cont-post .unit-post .list-compare-item.list-compare-before dt::before {
  content: "";
  position: absolute;
  background: url(../img/common/deco__shine__a_01_b.png);
  width: 13px;
  height: 14px;
  left: 50px;
  bottom: 0;
}
#feature--voice .cont-post .unit-post .list-compare-item.list-compare-before dt::after {
  content: "";
  position: absolute;
  background: url(../img/common/deco__shine__a_02_b.png);
  width: 13px;
  height: 14px;
  right: 50px;
  bottom: 0;
}
#feature--voice .cont-post .unit-post .list-compare-item.list-compare-after dt {
  position: relative;
  color: var(--col--acc-r-01);
}
#feature--voice .cont-post .unit-post .list-compare-item.list-compare-after dt::before {
  content: "";
  position: absolute;
  background: url(../img/common/deco__shine__a_01_r.png);
  width: 13px;
  height: 14px;
  left: 50px;
  bottom: 0;
}
#feature--voice .cont-post .unit-post .list-compare-item.list-compare-after dt::after {
  content: "";
  position: absolute;
  background: url(../img/common/deco__shine__a_02_r.png);
  width: 13px;
  height: 14px;
  right: 50px;
  bottom: 0;
}
#feature--voice .cont-post .unit-post .item-text p {
  font-size: var(--font-size-16);
}
#feature--voice .cont-post .unit-post:hover {
  opacity: 0.6;
  top: -5px;
}

/* feature-in_post
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
.feature--in_post {
  background: var(--col--acc-y-02);
}
.feature--in_post .cont-post {
  background: #fff;
  padding: 50px;
  border-radius: 20px;
  margin-bottom: var(--margin-50);
}
.feature--in_post .cont-post .list-compare {
  --num: 2;
  --column-gap: 40px;
  --row-gap: 40px;
  margin-bottom: var(--margin-30);
}
.feature--in_post .cont-post .list-compare-item dt {
  font-family: var(--Kiwi-Maru);
  font-size: var(--font-size-20);
  font-weight: 500;
  text-align: center;
  margin-bottom: var(--margin-15);
}
.feature--in_post .cont-post .list-compare-item dd .item-img {
  border-radius: 10px;
  height: 340px;
}
.feature--in_post .cont-post .list-compare-item.list-compare-before dt {
  position: relative;
  color: var(--col--acc-b-01);
}
.feature--in_post .cont-post .list-compare-item.list-compare-before dt::before {
  content: "";
  position: absolute;
  background: url(../img/common/deco__shine__a_01_b.png);
  width: 13px;
  height: 14px;
  left: 50px;
  bottom: 0;
}
.feature--in_post .cont-post .list-compare-item.list-compare-before dt::after {
  content: "";
  position: absolute;
  background: url(../img/common/deco__shine__a_02_b.png);
  width: 13px;
  height: 14px;
  right: 50px;
  bottom: 0;
}
.feature--in_post .cont-post .list-compare-item.list-compare-after dt {
  position: relative;
  color: var(--col--acc-r-01);
}
.feature--in_post .cont-post .list-compare-item.list-compare-after dt::before {
  content: "";
  position: absolute;
  background: url(../img/common/deco__shine__a_01_r.png);
  width: 13px;
  height: 14px;
  left: 50px;
  bottom: 0;
}
.feature--in_post .cont-post .list-compare-item.list-compare-after dt::after {
  content: "";
  position: absolute;
  background: url(../img/common/deco__shine__a_02_r.png);
  width: 13px;
  height: 14px;
  right: 50px;
  bottom: 0;
}
.feature--in_post .com--btn-01 {
  margin: 0 auto;
  width: 360px;
}

/* for_worries
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* for_worries-method
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#for_worries--method {
  background: var(--col--acc-y-02);
}
#for_worries--method .lead-text {
  text-align: center;
  margin-bottom: var(--margin-50);
}
#for_worries--method .list-method {
  --num: 4;
  --column-gap: 35px;
  --row-gap: 40px;
  margin-bottom: var(--margin-50);
  position: relative;
}
#for_worries--method .list-method::before {
  content: "";
  position: absolute;
  background: url(../img/common/illust__future__a_06.png) center center/contain no-repeat;
  width: 150px;
  height: 156px;
  left: 0;
  bottom: 0;
}
#for_worries--method .list-method::after {
  content: "";
  position: absolute;
  background: url(../img/common/illust__human__a_05.png) center center/contain no-repeat;
  width: 162px;
  height: 156px;
  right: 0;
  bottom: 0;
}
#for_worries--method .list-method-item .ttl04 {
  width: fit-content;
  background: var(--col--main-01);
  border-radius: 20px;
  margin: 0 auto;
  margin-bottom: -20px;
  position: relative;
  padding: 5px 8px;
  width: 160px;
  text-align: center;
}
#for_worries--method .list-method-item .ttl04::before {
  --width: 7px;
  --height: 5px;
  --color: var(--col--main-01);
  bottom: 0;
  left: 50%;
  translate: -50% 100%;
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: var(--color) transparent transparent transparent;
  border-width: var(--height) calc((var(--width)) / 2) 0px calc((var(--width)) / 2);
}
#for_worries--method .list-method-item .ttl04 .ja {
  font-size: var(--font-size-20);
  font-weight: 500;
  font-family: var(--Kiwi-Maru);
  color: #fff;
}
#for_worries--method .note-text {
  margin: 0 auto;
  width: fit-content;
  position: relative;
}
#for_worries--method .note-text::before {
  content: "";
  position: absolute;
  background: url(../img/common/deco__shine__a_01_l.png) center center/contain no-repeat;
  width: 30px;
  height: 32px;
  left: -40px;
  bottom: 0;
}
#for_worries--method .note-text::after {
  content: "";
  position: absolute;
  background: url(../img/common/deco__shine__a_02_l.png) center center/contain no-repeat;
  width: 30px;
  height: 32px;
  right: -40px;
  bottom: 0;
}
#for_worries--method .note-text p {
  font-family: var(--Kiwi-Maru);
  font-size: var(--font-size-34);
  font-weight: 500;
  letter-spacing: 0.06em;
}
#for_worries--method .note-text p .str-02 {
  color: var(--col--acc-r-01);
}
#for_worries--method .note-text p .str-01 {
  color: var(--col--main-02);
}

/* for_worries--step
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#for_worries--step {
  position: relative;
  z-index: 0;
  background: url(../img/common/separate__shape__a_04.png) center bottom/max(1280px, 100%) no-repeat, var(--col--acc-y-03);
}
#for_worries--step .inner {
  padding-bottom: 50px;
}
#for_worries--step .cont-step {
  position: relative;
}
#for_worries--step .cont-step::before {
  z-index: -1;
  content: "";
  position: absolute;
  width: 6px;
  height: 100%;
  background: var(--col--main-02);
  left: 50%;
  translate: -50% 0;
  top: 0;
}
#for_worries--step .cont-step .block-step {
  margin-bottom: var(--margin-50);
  border-radius: 30px;
  border: 1px solid var(--col--main-01);
  background: #fff;
  padding: 50px 0;
  padding-bottom: 30px;
}
#for_worries--step .cont-step .block-step:last-child {
  margin-bottom: 0;
}
#for_worries--step .cont-step .block-step .ttl04 {
  display: flex;
  align-items: center;
  width: calc(100% - 40px);
  border-bottom: 1px solid var(--col--main-01);
  padding-bottom: var(--margin-40);
  margin-bottom: var(--margin-50);
}
#for_worries--step .cont-step .block-step .ttl04 .num {
  display: block;
  width: 130px;
  text-align: center;
  font-size: var(--font-size-24);
  background: var(--col--acc-y-01);
  font-family: var(--Kiwi-Maru);
  border-radius: 0 20px 20px 0;
  color: var(--col--main-01);
  margin-right: var(--margin-15);
  padding: 5px 10px;
}
#for_worries--step .cont-step .block-step .ttl04 .num small {
  font-size: var(--font-size-18);
  margin-right: var(--margin-10);
}
#for_worries--step .cont-step .block-step .ttl04 .ja {
  font-size: var(--font-size-30);
  font-weight: 500;
  font-family: var(--Kiwi-Maru);
  flex: 1;
}
#for_worries--step .cont-step .block-step .wrap-info {
  padding: 0 40px;
}
#for_worries--step .cont-step .block-step .wrap-info .item-img {
  margin-top: -15px;
}
#for_worries--step .cont-step .block-step .wrap-info .wrap-contact {
  gap: 30px;
}
#for_worries--step .cont-step .block-step .wrap-info .unit-info .item-text {
  margin-bottom: var(--margin-10);
}
#for_worries--step .cont-step .block-step .wrap-info .unit-info .item-text p {
  line-height: 2.1;
}
#for_worries--step .cont-step .block-step .wrap-info .unit-info .com--times {
  margin-bottom: var(--margin-10);
}
#for_worries--step .cont-step .block-step:is(:nth-of-type(3), :nth-of-type(4), :nth-of-type(6)) {
  position: relative;
}
#for_worries--step .cont-step .block-step:is(:nth-of-type(3), :nth-of-type(4), :nth-of-type(6))::before {
  content: "";
  position: absolute;
  background: url(../img/for_worries/for_worries__step__deco_01.png) center center/contain no-repeat;
  width: 358px;
  height: 71px;
  left: 40px;
  bottom: 60px;
}

/* for_worries-area
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#for_worries--area {
  background: #fff;
}
#for_worries--area .inner {
  position: relative;
}
#for_worries--area .ttl03 {
  position: relative;
  width: 600px;
  margin-left: auto;
  margin-bottom: var(--margin-45);
}
#for_worries--area .ttl03 .ja {
  margin: 0 auto;
  width: fit-content;
  display: block;
  position: relative;
}
#for_worries--area .ttl03 .ja {
  font-size: var(--font-size-30);
  font-weight: 500;
  font-family: var(--Kiwi-Maru);
  position: relative;
}
#for_worries--area .ttl03 .ja::before {
  content: "";
  position: absolute;
  background: url(../img/common/deco__shine__b_01.png) center center/contain no-repeat;
  width: 36px;
  height: 73px;
  left: -60px;
  bottom: -20px;
}
#for_worries--area .ttl03 .ja::after {
  content: "";
  position: absolute;
  background: url(../img/common/deco__shine__b_02.png) center center/contain no-repeat;
  width: 36px;
  height: 73px;
  right: -60px;
  bottom: -20px;
}
#for_worries--area .ttl03 .ja .str-01 {
  font-size: var(--font-size-40);
  color: var(--col--main-01);
}
#for_worries--area .ttl03 .ja .str-02 {
  font-size: var(--font-size-40);
  color: var(--col--acc-r-01);
}
#for_worries--area .item-img {
  position: absolute;
  left: 0;
  top: 0;
}
#for_worries--area .item-text {
  width: 600px;
  margin-left: auto;
  text-align: center;
  margin-bottom: var(--margin-45);
}
#for_worries--area .item-text p {
  font-weight: 700;
  font-size: var(--font-size-18);
}
#for_worries--area .item-text p .str-01 {
  color: var(--col--main-01);
}
#for_worries--area .item-text p .str-02 {
  color: var(--col--acc-r-01);
}
#for_worries--area .cont-area {
  width: 600px;
  margin-left: auto;
  background: #f7ffd9;
  border-radius: 20px;
  border-top: 1px solid transparent;
  padding: 40px;
  padding-bottom: 30px;
}
#for_worries--area .cont-area .ttl04 {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  margin-top: -50px;
  margin-bottom: var(--margin-20);
}
#for_worries--area .cont-area .ttl04::before {
  content: "";
  position: absolute;
  background: url(../img/common/deco__shine__a_01_g.png) center center/contain no-repeat;
  width: 13px;
  height: 14px;
  left: -30px;
  bottom: 0;
}
#for_worries--area .cont-area .ttl04::after {
  content: "";
  position: absolute;
  background: url(../img/common/deco__shine__a_02_g.png) center center/contain no-repeat;
  width: 13px;
  height: 14px;
  right: -30px;
  bottom: 0;
}
#for_worries--area .cont-area .ttl04 .ja {
  font-family: var(--Kiwi-Maru);
  font-size: var(--font-size-24);
  font-weight: 500;
}
#for_worries--area .cont-area .item-text {
  width: 100%;
  margin: 0;
}
#for_worries--area .cont-area .item-text p {
  font-size: var(--font-size-15);
  letter-spacing: 0.06em;
}

/* cause
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* cause--pain
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#cause--pain {
  position: relative;
  z-index: 0;
  background: var(--col--acc-y-02);
}
#cause--pain .ja .str-01 {
  color: var(--col--acc-r-01);
}
#cause--pain .cont-reason {
  position: relative;
  margin: 200px 0;
}
#cause--pain .cont-reason .ttl04 {
  position: relative;
  width: fit-content;
  background: var(--col--acc-r-01);
  padding: 12px 20px;
  border-radius: 25px;
  margin-bottom: var(--margin-30);
}
#cause--pain .cont-reason .ttl04 .ja {
  font-family: var(--Kiwi-Maru);
  font-size: var(--font-size-30);
  font-weight: 500;
  color: #fff;
}
#cause--pain .cont-reason .block-reason {
  position: relative;
  margin-bottom: var(--margin-55);
}
#cause--pain .cont-reason .block-reason:last-child {
  margin-bottom: 0;
}
#cause--pain .cont-reason .block-reason .ttl05 {
  font-family: var(--Kiwi-Maru);
  position: relative;
  border-left: 2px solid var(--col--acc-r-01);
  padding-left: 20px;
  margin-bottom: var(--margin-30);
}
#cause--pain .cont-reason .block-reason .ttl05 .ja {
  font-size: var(--font-size-20);
  font-weight: 500;
}
#cause--pain .cont-reason .block-reason > .item-img {
  position: absolute;
  right: 0;
  top: -110px;
}
#cause--pain .cont-reason .block-reason > .item-img figcaption {
  text-align: center;
}
#cause--pain .cont-reason .block-reason > .item-text {
  margin-bottom: var(--margin-30);
}
#cause--pain .cont-reason .block-reason > .item-text p {
  font-weight: 500;
}
#cause--pain .cont-reason .block-reason .list-images {
  --num: 2;
  --column-gap: 40px;
  --row-gap: 40px;
  margin-bottom: var(--margin-30);
}
#cause--pain .cont-reason .block-reason .list-images-item > .item-img figcaption {
  text-align: center;
  padding: 20px 0;
  letter-spacing: 0.07em;
  font-size: var(--font-size-18);
  font-weight: 600;
  border-bottom: 1px solid var(--col--main-02);
}
#cause--pain .cont-reason .block-reason .list-flow {
  gap: 30px;
}
#cause--pain .cont-reason .block-reason .list-flow-item {
  position: relative;
  background: #fff;
  padding: 5px 8px;
  color: var(--col--main-01);
  font-size: var(--font-size-16);
  font-weight: 500;
  border-radius: 5px;
}
#cause--pain .cont-reason .block-reason .list-flow-item::before {
  content: "";
  position: absolute;
  background: url(../img/common/icon__arrow__a_01_o.png) center center/contain no-repeat;
  width: 8px;
  height: 14px;
  right: -18px;
  top: 50%;
  translate: 0 -50%;
}
#cause--pain .cont-reason .block-reason .list-flow-item:last-child::before {
  display: none;
}
#cause--pain .cont-reason:nth-of-type(odd)::before {
  content: "";
  z-index: -1;
  position: absolute;
  background: var(--col--acc-y-02);
  width: max(1920px, 100vw);
  height: calc(100% + 200px);
  left: 50%;
  top: 50%;
  translate: -50% -50%;
}
#cause--pain .cont-reason:nth-of-type(even)::before {
  content: "";
  z-index: -1;
  position: absolute;
  background: var(--col--acc-y-03);
  width: max(1920px, 100vw);
  height: calc(100% + 200px);
  left: 50%;
  top: 50%;
  translate: -50% -50%;
}
#cause--pain .cont-reason:first-of-type {
  margin-top: 0;
}
#cause--pain .cont-reason:last-of-type {
  margin-bottom: 0;
}

/* cause--care
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#cause--care .cont-care .block-care {
  margin-bottom: var(--margin-60);
}
#cause--care .cont-care .block-care:last-child {
  margin-bottom: 0;
}
#cause--care .cont-care .block-care .wrap-title {
  --column-gap: 30px;
  --row-gap: 0px;
  margin-bottom: var(--margin-40);
}
#cause--care .cont-care .block-care .wrap-title hgroup {
  flex: 1;
}
#cause--care .cont-care .block-care .wrap-title hgroup .ttl04 {
  padding-bottom: var(--margin-20);
  border-bottom: 1px solid var(--col--main-02);
  margin-bottom: var(--margin-20);
}
#cause--care .cont-care .block-care .wrap-title hgroup .ttl04 .ja {
  font-size: var(--font-size-30);
  font-weight: 500;
  font-family: var(--Kiwi-Maru);
}
#cause--care .cont-care .block-care .wrap-title hgroup .ttl04 .ja small {
  font-size: var(--font-size-22);
}
#cause--care .cont-care .block-care .unit-method {
  padding: 30px;
  background: var(--col--main-04);
  border-radius: 20px;
}
#cause--care .cont-care .block-care .unit-method .ttl05 {
  border-left: 3px solid var(--col--main-02);
  padding-left: 20px;
  margin-bottom: var(--margin-10);
}
#cause--care .cont-care .block-care .unit-method .ttl05 .ja {
  font-size: var(--font-size-20);
  font-weight: 500;
  font-family: var(--Kiwi-Maru);
}
/* price
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* price--chart
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#price--chart {
  background: url(../img/common/separate__shape__a_05.png) center bottom/max(1280px, 100%) 376px no-repeat;
}
#price--chart .cont-info .com--table-01 {
  width: 100%;
  margin-bottom: var(--margin-60);
}
#price--chart .cont-info .com--table-01 tr {
  width: 100%;
}
#price--chart .cont-info .com--table-01 tr th,
#price--chart .cont-info .com--table-01 tr td {
  line-height: 2;
}
#price--chart .cont-info .item-note {
  padding: 20px 40px;
  background: var(--col--acc-y-02);
  border-radius: 20px;
  width: fit-content;
  margin: 0 auto;
  font-size: var(--font-size-30);
  font-weight: 500;
  font-family: var(--Kiwi-Maru);
  position: relative;
  margin-bottom: var(--margin-50);
}
#price--chart .cont-info .item-note::before {
  content: "";
  position: absolute;
  background: url(../img/common/deco__shine__b_01.png) center center/contain no-repeat;
  width: 36px;
  height: 73px;
  left: -25px;
  top: 50%;
  translate: 0 -50%;
}
#price--chart .cont-info .item-note::after {
  content: "";
  position: absolute;
  background: url(../img/common/deco__shine__b_02.png) center center/contain no-repeat;
  width: 36px;
  height: 73px;
  right: -25px;
  top: 50%;
  translate: 0 -50%;
}
#price--chart .cont-info .item-note .str-01 {
  font-size: var(--font-size-40);
  color: var(--col--main-02);
}
#price--chart .cont-attention {
  position: relative;
  background: #fff;
  padding: 30px;
}
#price--chart .cont-attention::before {
  content: "";
  position: absolute;
  background: url(../img/common/illust__human__a_01.png) center center/contain no-repeat;
  width: 90px;
  height: 115px;
  left: 50px;
  top: 0;
  translate: 0 -100%;
}
#price--chart .cont-attention::after {
  content: "";
  position: absolute;
  background: url(../img/common/illust__house__a_01.png) center center/contain no-repeat;
  width: 173px;
  height: 88px;
  right: 0;
  top: -20px;
  translate: 0 -100%;
}
#price--chart .cont-attention .ttl04 {
  border-left: 3px solid var(--col--main-02);
  padding-left: 20px;
  margin-bottom: var(--margin-20);
}
#price--chart .cont-attention .ttl04 .ja {
  font-weight: 500;
  font-family: var(--Kiwi-Maru);
  font-size: var(--font-size-20);
}
/* access
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* access-company
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#access--company {
  background: var(--col--acc-y-02);
}
#access--company .cont-info {
  width: 100%;
  margin-bottom: var(--margin-50);
}
#access--company .cont-info .item-table {
  width: 100%;
}
#access--company .cont-info .item-table tr {
  width: 100%;
}
#access--company .cont-map .item-map {
  width: 100%;
  height: 360px;
  border-radius: 30px;
  border: 5px solid #fff;
  outline: 2px solid var(--col--main-02);
}
#access--company .cont-map .item-map iframe {
  width: 100%;
  height: 100%;
}

/* access-gallery
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#access--gallery {
  background: url(../img/common/separate__shape__a_06.png) center bottom/max(1280px, 100%) 150px no-repeat, #fff;
}
#access--gallery .inner {
  padding-bottom: 50px;
}
#access--gallery .cont-post {
  --num: 4;
  --column-gap: 40px;
  --row-gap: 40px;
}
#access--gallery .cont-post .unit-post {
  height: 180px;
  border-radius: 10px;
}
#access--gallery .cont-post .unit-post .item-img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

/* access-flow
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#access--flow {
  background: var(--col--acc-y-03);
}
#access--flow .inner {
  padding-top: 50px;
}
#access--flow .cont-post {
  --num: 4;
  --column-gap: 40px;
  --row-gap: 40px;
  position: relative;
}
#access--flow .cont-post::before {
  content: "";
  position: absolute;
  background: url(../img/common/illust__human__a_03.png) center center/contain no-repeat;
  width: 175px;
  height: 129px;
  left: 25px;
  top: 0;
  translate: 0 -100%;
}
#access--flow .cont-post::after {
  content: "";
  position: absolute;
  background: url(../img/common/illust__future__a_04.png) center center/contain no-repeat;
  width: 150px;
  height: 107px;
  right: 40px;
  top: 0;
  translate: 0 -100%;
}
#access--flow .cont-post .unit-post {
  position: relative;
}
#access--flow .cont-post .unit-post::before {
  content: "";
  position: absolute;
  background: url(../img/common/icon__arrow__a_02_o.png) center center/contain no-repeat;
  width: 15px;
  height: 28px;
  right: -13px;
  top: 75px;
  translate: 100% 0%;
}
#access--flow .cont-post .unit-post .item-img {
  width: 100%;
  height: 180px;
  margin-bottom: var(--margin-10);
  border-radius: 10px;
}
#access--flow .cont-post .unit-post .item-text p {
  line-height: 1.7;
}
#access--flow .cont-post .unit-post:last-of-type::before {
  display: none;
}/*# sourceMappingURL=style.css.map */