@charset "UTF-8";
/* header ヘッダー
////////////////////////////////////////////////////////////////////////////////////////////////// */
#header {
  position: fixed;
  width: 100%;
  z-index: 5;
  top: 0;
  left: 0;
}
#header .inner {
  position: fixed;
  top: 0;
  width: 100%;
  min-width: 1080px;
  height: 100px;
  padding: 0;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  #header .inner {
    height: 70px;
    min-width: 100%;
  }
}
#header .block-left {
  position: relative;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  #header .block-left {
    width: 100%;
    padding-left: 0;
    margin-left: 0;
  }
}
#header .item-logo {
  display: block;
  width: fit-content;
  position: relative;
  top: 50px;
}
#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-right: auto;
    top: 4vw;
  }
  #header .item-logo img {
    height: auto;
    width: 25vw;
    height: 28vw;
  }
}
#header .block-right {
  position: relative;
  width: fit-content;
  padding-right: var(--margin-60);
}
@media screen and (max-width: 767px) {
  #header .block-right {
    display: none;
  }
}
#header .cont-info {
  width: fit-content;
}

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

/* nav グローバルナビゲーション
////////////////////////////////////////////////////////////////////////////////////////////////// */
#nav .list-nav {
  width: fit-content;
  gap: 3vw;
}
#nav .list-nav .item {
  width: fit-content;
  font-size: var(--font-size-16);
  font-weight: 700;
}
#nav .list-nav .item a {
  transition: ease 0.17s;
}
#nav .list-nav .item:hover {
  color: var(--col--main-01);
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  #nav {
    display: none;
  }
}

/* mv メインビジュアル
////////////////////////////////////////////////////////////////////////////////////////////////// */
#mv {
  position: relative;
  width: 100%;
  height: 880px;
  z-index: 0;
}
#mv::before {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 17vw;
  bottom: 0;
  left: 0;
  background: var(--col--acc-02);
}
#mv .mv-catch {
  position: absolute;
  left: 2vw;
  z-index: 1;
  top: 41vw;
  width: 68vw;
}
#mv .swiper-wrapper {
  width: 78vw;
  position: absolute;
  right: -5vw;
  top: 10vw;
}
#mv .swiper-wrapper .swiper-slide img {
  width: 100%;
  max-width: unset;
}
#mv .btn-contact {
  width: 90%;
  height: 13vw;
  margin: 0 auto;
  background: var(--col--main-01);
  position: relative;
  border-radius: 1.5vw;
  box-shadow: 0px 10px 20px 0px rgba(34, 18, 7, 0.1);
  z-index: 1;
  border: 1px solid var(--col--main-01);
  transition: ease 0.2s;
  top: 95vw;
}
#mv .btn-contact::after {
  pointer-events: none;
  content: "";
  position: absolute;
  background: url(/img/mv/mv__deco_01.png) center center/contain no-repeat;
  width: 25vw;
  height: 14vw;
  right: -9vw;
  bottom: -6vw;
}
#mv .btn-contact .ja {
  position: relative;
  font-size: var(--font-size-24);
  font-weight: 800;
  color: #fff;
  padding-left: 8vw;
  transition: ease 0.2s;
}
#mv .btn-contact .ja::before {
  content: "";
  position: absolute;
  background: url(/img/common/icon__mail__a_01.png) center center/contain no-repeat;
  width: 6vw;
  height: 6vw;
  top: 50%;
  translate: 0 -50%;
  left: 0;
}
#mv .btn-contact .note {
  pointer-events: none;
  position: absolute;
  left: 50%;
  translate: -50% -100%;
  top: -2vw;
  width: 60vw;
}
#mv .btn-contact:hover {
  background: #fff;
  opacity: 0.8;
}
#mv .btn-contact:hover .ja {
  color: var(--col--main-01);
}
@media screen and (max-width: 767px) {
  #mv {
    height: 118vw;
    max-width: 100%;
  }
}

/* sv サブビジュアル
////////////////////////////////////////////////////////////////////////////////////////////////// */
#sv {
  position: relative;
  z-index: 0;
  overflow: hidden;
  width: 100%;
  height: 520px;
}
#sv::before {
  z-index: -1;
  content: "";
  position: absolute;
  height: 240px;
  width: 100%;
  left: 0;
  bottom: 0;
  background: var(--col--acc-02);
}
#sv .sv-img {
  z-index: 1;
  position: absolute;
  right: 0vw;
  width: 100vw;
  height: 46vw;
}
#sv .sv-catch {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: 60vw;
}
@media screen and (max-width: 767px) {
  #sv {
    height: 45vw;
    max-width: 100%;
  }
}

.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;
}

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

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

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

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

/* footer フッター
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.wrap-footer {
  position: relative;
  overflow: hidden;
  background: url(/img/common/pattern__stripe__01_a.png);
}

/* ft__contact
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
.ft__contact .inner {
  padding-bottom: var(--margin-30);
}
.ft__contact .inner hgroup {
  position: relative;
  margin: 0 auto;
  width: fit-content;
  margin-bottom: var(--margin-25);
  position: relative;
}
.ft__contact .inner hgroup .ttl03 {
  margin: 0 auto;
  width: fit-content;
  text-align: center;
  padding-left: 10vw;
}
.ft__contact .inner hgroup .ttl03 .ja {
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.05em;
  font-size: var(--font-size-50);
  font-size: 7vw;
  line-height: 1.6;
}
.ft__contact .inner hgroup .note {
  position: absolute;
  left: -14vw;
  top: 70%;
  translate: 0 -50%;
}
.ft__contact .inner hgroup .note img {
  height: 26vw;
}
.ft__contact .inner .lead-text {
  margin-bottom: var(--margin-55);
  text-align: center;
}
.ft__contact .inner .lead-text p {
  color: #fff;
}
.ft__contact .inner .block-contact {
  background: #fff;
  border-radius: 1.5vw;
  padding: 5vw;
  gap: 5vw;
  position: relative;
  flex-direction: column-reverse;
}
.ft__contact .inner .block-contact::before {
  content: "";
  position: absolute;
  background: url(/img/common/ft__contact__img_01.png) center center/contain no-repeat;
  width: 31vw;
  height: 34vw;
  right: -12vw;
  bottom: 40vw;
}
.ft__contact .inner .block-contact .btn-contact {
  background: var(--col--main-01);
  border-radius: 1.5vw;
  position: relative;
  box-shadow: 0px 10px 20px 0px rgba(34, 18, 7, 0.1);
  width: 100%;
  height: 14vw;
}
.ft__contact .inner .block-contact .btn-contact span {
  color: #fff;
  font-size: var(--font-size-24);
  font-weight: 800;
  letter-spacing: 0.05em;
  position: relative;
  padding-left: var(--margin-60);
}
.ft__contact .inner .block-contact .btn-contact span::before {
  content: "";
  position: absolute;
  background: url(/img/common/icon__mail__a_01.png) center center/contain no-repeat;
  width: 7vw;
  height: 5vw;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}
.ft__contact .inner .block-contact .unit-contact {
  flex: 1;
}
.ft__contact .inner .block-contact .unit-contact .com__tel {
  margin-bottom: var(--margin-25);
}
.ft__contact .inner .block-contact .unit-contact .com__tel dd .tel-num {
  font-size: 9vw;
}
.ft__contact .inner .block-contact .unit-contact .com__times {
  margin: 0 auto;
  width: fit-content;
  margin-bottom: var(--margin-25);
  flex-direction: column;
  gap: 2vw;
}
#footer {
  position: relative;
  width: 100%;
}
#footer .item-logo {
  display: block;
  position: relative;
  width: fit-content;
  transition: ease 0.2s;
}
#footer .item-logo:hover {
  opacity: 0.6;
}
#footer .inner {
  padding-top: var(--margin-40);
}
@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 {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
}
#footer .block-right {
  position: relative;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  #footer .block-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
}
#footer .unit-logo {
  gap: 3vw;
  margin: 0 auto;
  width: fit-content;
  gap: 10vw;
  flex-direction: column;
  margin-bottom: var(--margin-50);
  align-items: center;
}
#footer .unit-logo .item-logo > img {
  width: 9vw;
}
#footer .unit-logo .com__instagram {
  filter: var(--col--fil-white);
}
#footer .item-address {
  font-size: var(--font-size-17);
  color: #fff;
  line-height: 2.2;
  font-size: var(--font-size-17);
  letter-spacing: 0.05em;
  margin-bottom: var(--margin-30);
  text-align: center;
  font-size: 3.5vw;
}
#footer .com__btn_01 {
  margin-left: auto;
  width: 315px;
  height: 60px;
  border: 2px solid #fff;
  background: #7b4019;
}
#footer .com__btn_01 span {
  font-size: var(--font-size-17);
  font-weight: 800;
  color: #fff;
  position: relative;
  padding-right: var(--margin-30);
}
#footer .com__btn_01 span::before {
  content: "";
  position: absolute;
  background: url(/img/common/icon__link__a_01.png) center center/contain no-repeat;
  width: 4vw;
  height: 4vw;
  right: 0;
  top: 50%;
  translate: 0 -50%;
}
#footer .com__times {
  width: fit-content;
  position: relative;
  margin-bottom: var(--margin-20);
}
#footer .list-nav {
  display: flex;
  flex-direction: column;
  align-content: end;
  align-items: start;
  justify-content: end;
  height: 260px;
  gap: 0 3vw;
  margin-bottom: var(--margin-30);
}
#footer .list-nav .item {
  width: fit-content;
  font-size: var(--font-size-16);
  font-weight: 700;
  color: #fff;
  padding-left: var(--margin-20);
  position: relative;
  line-height: 3;
}
#footer .list-nav .item::before {
  content: "";
  position: absolute;
  left: 0;
  border-left: 2px solid #fff;
  height: 100%;
}
#footer .list-nav .item a {
  position: relative;
  transition: ease 0.2s;
}
@media screen and (max-width: 767px) {
  #footer .list-nav {
    display: none;
  }
}
#footer #copyright {
  font-size: var(--font-size-13);
  text-align: left;
  color: var(--col--main-02);
  color: #fff;
  opacity: 0.6;
  text-align: center;
  padding-bottom: 10vw;
}
#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;
  }
}

/* entrance
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#entrance {
  background: var(--col--acc-02);
}
#entrance .inner {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 0;
  gap: 10vw;
}
#entrance .block-ent {
  background: red;
  border-radius: 2vw;
  width: 100%;
  height: 80vw;
}
#entrance .block-ent a {
  display: block;
  width: 100%;
  height: 100%;
}
#entrance .block-main {
  border: 4px solid var(--col--main-01);
  background: var(--col--base-01);
  position: relative;
}
#entrance .block-main .ttl02 {
  position: absolute;
  text-align: center;
  top: 45vw;
  left: 50%;
  translate: -50% 0;
  white-space: nowrap;
}
#entrance .block-main .ttl02 .ja {
  line-height: 1.5;
  font-weight: 800;
  font-size: var(--font-size-40);
}
#entrance .block-main .ttl02 .ja .str-01 {
  color: var(--col--main-01);
  font-size: var(--font-size-60);
}
#entrance .block-main .ttl02 .ja .str-01 .weak-01 {
  font-size: var(--font-size-50);
}
#entrance .block-main .item-img {
  position: absolute;
  width: 100%;
  height: 36vw;
  top: 0;
}
#entrance .block-main .item-img img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
#entrance .block-main::before {
  pointer-events: none;
  content: "";
  position: absolute;
  background: url(/img/ent/ent__arrow__01_b.png) center center/contain no-repeat;
  width: 12vw;
  height: 12vw;
  right: -1vw;
  bottom: -1vw;
}
#entrance .block-sub {
  border: 4px solid var(--col--acc-01);
  background: #fff;
  position: relative;
  overflow: hidden;
}
#entrance .block-sub .item-img {
  position: absolute;
  width: 100%;
  height: 36vw;
  top: 0;
}
#entrance .block-sub .item-img img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
#entrance .block-sub::before {
  pointer-events: none;
  content: "";
  position: absolute;
  background: url(/img/ent/ent__arrow__01_a.png) center center/contain no-repeat;
  width: 12vw;
  height: 12vw;
  right: -1vw;
  bottom: -1vw;
}
#entrance .block-sub .ttl02 {
  font-weight: 800;
  font-size: var(--font-size-40);
  line-height: 1.6;
  position: relative;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
  position: absolute;
  text-align: center;
  top: 45vw;
  left: 50%;
  translate: -50% 0;
  white-space: nowrap;
  letter-spacing: 0;
  margin-bottom: var(--margin-20);
}
#entrance .block-sub .ttl02 small {
  font-size: var(--font-size-30);
  font-size: 4.6vw;
}
#header:has(.ent-logo) {
  background: var(--col--acc-02);
  position: relative;
}

#header .ent-logo {
  width: fit-content;
  margin: 0 auto;
}
#header .ent-logo img {
  width: 30vw;
}

#header .ent-text {
  text-align: center;
  padding: 5vw 0 8vw;
  font-size: var(--font-size-20);
  font-weight: 800;
}

#ent-copy {
  display: block;
  padding: 0;
  background: var(--col--acc-02);
  height: 100%;
  width: 100%;
  text-align: center;
  color: rgba(0, 0, 0, 0.4);
  font-size: var(--font-size-14);
  padding-bottom: 5vw;
}

/* TOP
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* top__worries
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#top__worries {
  background: var(--col--acc-02);
  position: relative;
  z-index: 0;
}
#top__worries .wrap-cont {
  position: relative;
  z-index: 1;
  background: #fff;
  width: 100%;
  padding: 0px 5vw 5vw;
  border-radius: 1.5vw;
  box-shadow: 0px 10px 20px 0px rgba(34, 18, 7, 0.1);
  border-top: 1px solid transparent;
}
#top__worries .wrap-ttl {
  flex-direction: column-reverse;
  margin-bottom: var(--margin-80);
  position: relative;
  margin-top: -5vw;
  margin-bottom: 7vw;
}
#top__worries .wrap-ttl .ttl03 {
  position: relative;
}
#top__worries .wrap-ttl .ttl03 .ja {
  font-size: var(--font-size-40);
  letter-spacing: 0.05em;
  font-weight: 800;
  font-size: 5.7vw;
}
#top__worries .wrap-ttl .ttl03 .ja img {
  height: 12vw;
}
#top__worries .wrap-ttl .sub-ttl {
  background: var(--col--acc-01);
  padding: 3vw 4vw;
  color: #fff;
  width: fit-content;
  font-size: var(--font-size-26);
  letter-spacing: 0.05em;
  font-weight: 800;
  position: relative;
  margin-bottom: var(--margin-35);
  font-size: 4.2vw;
}
#top__worries .wrap-ttl .sub-ttl::before {
  --width: 4vw;
  --height: 2vw;
  --color: var(--col--acc-01);
  bottom: 0vw;
  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);
}
#top__worries .list-worries {
  gap: 5vw;
  flex-wrap: wrap;
}
#top__worries .list-worries .item {
  background: var(--col--base-01);
  border-radius: 1.5vw;
  padding: 5vw 5vw;
}
#top__worries .list-worries .item .ttl04 {
  text-align: center;
}
#top__worries .list-worries .item .ttl04 .ja {
  font-size: var(--font-size-16);
  font-weight: 800;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
#top__worries .list-worries .item .ttl04 .ja .str-01 {
  color: var(--col--main-01);
  font-size: var(--font-size-24);
  letter-spacing: 0.05em;
}
#top__worries .list-worries .item .item-img {
  margin-bottom: var(--margin-20);
  width: 30vw;
}
/* top__about
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#top__about {
  background: url(/img/top/top__about__bg_img_01.png) center top/100% no-repeat var(--col--main-01);
}
#top__about .ttl03 {
  margin: 0 auto;
  text-align: center;
  margin-bottom: var(--margin-50);
}
#top__about .ttl03 .ja {
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.05em;
  font-size: var(--font-size-50);
  line-height: 1.9;
  font-size: 5vw;
}
#top__about .ttl03 .ja .str-01 {
  font-size: var(--font-size-60);
  font-size: 7vw;
}
#top__about .ttl03 .ja ruby {
  ruby-align: center;
}
#top__about .ttl03 .ja ruby rt {
  font-size: var(--font-size-18);
  font-size: 3vw;
}
#top__about .ttl03 .ja img {
  height: 10vw;
}
#top__about .wrap-text {
  display: flex;
  align-items: center;
  gap: 5vw;
  width: fit-content;
  margin: 0 auto;
  justify-content: center;
  position: relative;
  flex-direction: column;
}
#top__about .item-img {
  width: 95vw;
  margin-left: -5vw;
  margin-bottom: 0;
  margin-bottom: -1vw;
  position: relative;
}
#top__about .item-img::before {
  content: "";
  position: absolute;
  background: url(/img/top/top__about__illust_01.png) center center/contain no-repeat;
  width: 25vw;
  height: 37vw;
  right: -5vw;
  bottom: 0vw;
}
#top__about .item-text {
  width: 100%;
}
#top__about .item-text p {
  color: #fff;
}

/* top__feature
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#top__feature {
  background: url(/img/top/top__feature__bg_l_t.png) left top/40vw no-repeat, url(/img/top/top__feature__bg_r_t.png) right -10vw top -10vw/40vw no-repeat, url(/img/top/top__feature__bg_r_b.png) right bottom/30vw no-repeat, url(/img/top/top__feature__bg_l_b.png) left bottom/30vw no-repeat;
}
#top__feature .ttl03 {
  margin: 0 auto;
  width: fit-content;
  text-align: center;
  margin-bottom: var(--margin-60);
  background: #fff;
  padding: 1vw;
}
#top__feature .ttl03 .ja {
  font-size: var(--font-size-26);
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
#top__feature .ttl03 .str-01 {
  font-size: var(--font-size-60);
  color: var(--col--main-01);
}
#top__feature .list-feature {
  gap: 12vw;
  flex-direction: column;
}
#top__feature .list-feature .item {
  position: relative;
  z-index: 0;
}
#top__feature .list-feature .item .ttl04 {
  margin-bottom: var(--margin-30);
  width: 100%;
  margin-top: var(--margin-30);
  position: relative;
  width: 90vw;
  margin-left: 5vw;
}
#top__feature .list-feature .item .ttl04 .num {
  z-index: -1;
  position: absolute;
  left: -5vw;
  top: -7vw;
}
#top__feature .list-feature .item .ttl04 .num img {
  height: 15vw;
}
#top__feature .list-feature .item .ttl04 .ja img {
  height: 16vw;
  width: 64vw;
  object-fit: contain;
}
#top__feature .list-feature .item .item-img {
  position: relative;
  width: 100%;
  margin-bottom: 4vw;
}
#top__feature .list-feature .item .item-text {
  width: 100%;
  background: #fff;
}
#top__feature .list-feature .item .item-text br {
  display: none;
}
#top__feature .list-feature .item:nth-of-type(3) .ttl04 .ja img {
  height: 10vw;
  width: 53vw;
}

#top__case {
  background: url(/img/common/pattern__dot__01_a.png);
}
#top__case .inner {
  padding-top: 20vw;
}
#top__case .wrap-ttl {
  flex-direction: column-reverse;
  margin-bottom: var(--margin-50);
  position: relative;
}
#top__case .wrap-ttl .ttl03 .ja {
  letter-spacing: 0.05em;
  font-weight: 800;
  color: #fff;
  font-size: var(--font-size-50);
}
#top__case .wrap-ttl .sub-ttl {
  margin-left: 5vw;
  margin-bottom: var(--margin-20);
  position: relative;
  margin-left: 18vw;
}
#top__case .wrap-ttl .sub-ttl img {
  left: -22vw;
  position: absolute;
  width: 22vw;
  top: -15vw;
}
#top__case .wrap-ttl .sub-ttl .text {
  font-size: var(--font-size-28);
  letter-spacing: 0.05em;
  color: #fff;
  font-weight: 800;
}
#top__case .cont-post {
  gap: 5vw;
  margin-bottom: var(--margin-50);
  flex-direction: column;
}
#top__case .cont-post .block-post {
  width: 100%;
  background: #fff;
  padding: 5vw;
  position: relative;
  z-index: 0;
  border-radius: 1.5vw;
}
#top__case .cont-post .block-post::before {
  z-index: -1;
  content: "";
  position: absolute;
  background: url(/img/common/deco__ttl__str_01.png) center center/contain no-repeat;
  width: 8vw;
  height: 9vw;
  left: 2vw;
  top: 2vw;
}
#top__case .cont-post .block-post .ttl04 {
  overflow: hidden;
  max-height: 16vw;
  height: fit-content;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  position: relative;
  margin-bottom: var(--margin-25);
}
#top__case .cont-post .block-post .ttl04 .ja {
  font-size: var(--font-size-24);
  font-weight: 800;
  line-height: 1.5;
}
#top__case .cont-post .block-post .unit-company {
  gap: 3vw;
}
#top__case .cont-post .block-post .unit-company .item-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
#top__case .cont-post .block-post .unit-company .item-company {
  overflow: hidden;
  max-height: 12vw;
  height: fit-content;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  flex: 1;
  color: var(--col--main-01);
  line-height: 1.4;
  font-weight: 700;
}
#top__case .com__btn_01 {
  margin: 0 auto;
}
/* top__point
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#top__point {
  position: relative;
  z-index: 0;
  background: url(/img/common/pattern__dot__02_a.png);
}
#top__point .ttl03 {
  position: relative;
  text-align: center;
  margin: 0 auto;
  width: fit-content;
  margin-bottom: var(--margin-40);
}
#top__point .ttl03 .ja {
  line-height: 2;
  font-weight: 900;
  font-size: var(--font-size-40);
}
#top__point .ttl03 .ja .str-01 {
  font-size: var(--font-size-50);
}
#top__point .ttl03 .ja .str-02 {
  color: var(--col--main-01);
  margin: 0 10px;
  position: relative;
}
#top__point .ttl03 .ja .str-02::before {
  z-index: -1;
  content: "";
  position: absolute;
  background: url(/img/top/top__point__img_01.png) center center/contain no-repeat;
  width: 25vw;
  height: 15vw;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
}
#top__point .wrap-block {
  border: 4px solid var(--col--txt-01);
  padding: 5vw 5vw;
  background: #fff;
}
#top__point .wrap-block .item-img {
  margin-bottom: 8vw;
  position: relative;
}
#top__point .wrap-block .item-img::before {
  content: "";
  position: absolute;
  background: url(/img/top/top__point__illust_01.png) center center/contain no-repeat;
  width: 18vw;
  height: 30vw;
  left: -1vw;
  bottom: -4vw;
}
#top__point .wrap-block .item-text {
  width: 100%;
  margin-bottom: var(--margin-60);
}
#top__point .wrap-block .item-text br {
  display: none;
}
#top__point .wrap-block .com__btn_01 {
  text-align: center;
  line-height: 1.6;
  height: 16vw;
}
/* top__subpages
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#top__subpages {
  background: url(/img/common/pattern__stripe__01_a.png);
  border-block: 4px solid #7b4019;
}
#top__subpages .list-subpages {
  --num: 1;
  --column-gap: 5vw;
  --row-gap: 5vw;
}
#top__subpages .list-subpages .item {
  background: var(--col--base-01);
  border-radius: 1.5vw;
  border: 2px solid #7b4019;
  height: 17vw;
}
#top__subpages .list-subpages .item a {
  width: 100%;
  height: 100%;
}
#top__subpages .list-subpages .item a .ttl03 {
  width: fit-content;
  position: relative;
  padding-right: var(--margin-15);
  padding-right: 5vw;
}
#top__subpages .list-subpages .item a .ttl03::before {
  content: "";
  position: absolute;
  background: url(/img/common/icon__arrow__01_a.png) center center/contain no-repeat;
  width: 3vw;
  height: 3vw;
  right: 0vw;
  top: 50%;
  translate: 0 -50%;
}
#top__subpages .list-subpages .item a .ttl03 .ja {
  color: #7b4019;
  font-size: var(--font-size-20);
  font-weight: 800;
  letter-spacing: 0.05em;
}

/* top__menu
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#top__menu {
  background: url(/img/top/top__menu__bg_img_01.png) left -30vw top 5vw/70vw no-repeat, url(/img/top/top__menu__bg_img_02.png) right -30vw top 5vw/70vw no-repeat var(--col--acc-02);
}
#top__menu .inner {
  padding-bottom: var(--margin-40);
}
#top__menu .wrap-ttl {
  flex-direction: column-reverse;
  margin-bottom: var(--margin-40);
  gap: 2vw;
}
#top__menu .wrap-ttl .ttl03 {
  width: fit-content;
}
#top__menu .wrap-ttl .ttl03 .ja {
  font-weight: 800;
  font-size: var(--font-size-50);
  letter-spacing: 0.05em;
  font-size: 8vw;
}
#top__menu .wrap-ttl .sub-ttl {
  background: var(--col--main-01);
  width: fit-content;
  padding: 1vw 3vw;
  color: #fff;
  font-size: var(--font-size-26);
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: var(--margin-10);
  font-size: 4.7vw;
}
#top__menu .cont-post .block-post {
  margin: 0 auto;
  width: 100%;
}
#top__menu .cont-post .block-post .item-img {
  width: 100%;
  height: 67vw;
}
/* top__area
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#top__area {
  background: var(--col--acc-02);
}
#top__area .inner {
  padding-top: var(--margin-40);
}
#top__area .wrap-cont {
  background:  #7b4019;
  border-radius: 1.5vw;
  position: relative;
  z-index: 0;
  padding: 8vw 5vw;
}
#top__area .wrap-cont::before {
  z-index: -1;
  content: "";
  position: absolute;
  width: calc(100% - 4vw);
  height: calc(100% - 4vw);
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  border: 1px solid #c99a7c;
  border-radius: 1.5vw;
}
#top__area .wrap-cont .ttl03 {
  width: 100%;
  text-align: center;
  margin-bottom: var(--margin-40);
  margin-left: auto;
}
#top__area .wrap-cont .ttl03 .ja {
  font-weight: 900;
  font-size: var(--font-size-50);
  color: #fff;
}
#top__area .wrap-cont .block-text {
  width: 100%;
  background: #fff;
  border-radius: 1.5vw;
  padding: 5vw;
  box-shadow: 0px 10px 20px 0px rgba(34, 18, 7, 0.1);
  margin-left: auto;
}
#top__area .wrap-cont .item-img{
        width: 84%;
        height: 50vw;
        margin: 0 auto;
        margin-bottom: 5vw;
}
#top__area .wrap-cont .block-text .item-text {
  text-align: center;
}
#top__area .wrap-cont .block-text .item-text br {
  display: none;
}
#top__area .wrap-cont .block-text .item-text p .str-01 {
  margin-bottom: var(--margin-30);
}
#top__area .wrap-cont .block-text .item-text p .body {
  margin-bottom: var(--margin-30);
}
/* top__company
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#top__company {
  background: url(/img/common/pattern__dot__01_a.png);
}
#top__company .inner {
  position: relative;
}
#top__company .ttl03 {
  margin: 0 auto;
  width: fit-content;
  margin-bottom: var(--margin-60);
}
#top__company .ttl03 .ja {
  color: #fff;
  font-size: var(--font-size-50);
  letter-spacing: 0.05em;
  font-weight: 900;
  font-size: 8vw;
}
#top__company .item-img {
  position: relative;
  width: 100%;
  margin-bottom: 8vw;
}
#top__company .list-subpages {
  width: 100%;
  margin-left: auto;
  gap: 4vw;
}
#top__company .list-subpages .item {
  background: var(--col--base-01);
  border-radius: 1.5vw;
  border: 2px solid #7b4019;
  height: 15vw;
}
#top__company .list-subpages .item a {
  width: 100%;
  height: 100%;
}
#top__company .list-subpages .item a .ttl04 {
  width: fit-content;
  position: relative;
  padding-right: var(--margin-25);
}
#top__company .list-subpages .item a .ttl04::before {
  content: "";
  position: absolute;
  background: url(/img/common/icon__arrow__01_a.png) center center/contain no-repeat;
  width: 2vw;
  height: 2vw;
  right: 0;
  top: 50%;
  translate: 0 -50%;
}
#top__company .list-subpages .item a .ttl04 .ja {
  color: #7b4019;
  font-size: var(--font-size-20);
  font-weight: 800;
  letter-spacing: 0.05em;
}

/* top__news
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#top__news {
  background: var(--col--acc-02);
}
#top__news .inner {
  position: relative;
}
#top__news .ttl03 {
  width: fit-content;
  position: relative;
  width: fit-content;
  margin: 0 auto;
}
#top__news .ttl03 .en {
  font-size: var(--font-size-50);
  letter-spacing: 0;
}
#top__news .btn-news {
  display: block;
  position: relative;
  width: fit-content;
  padding-bottom: 4vw;
  border-bottom: 3px solid var(--col--txt-01);
  padding-right: var(--margin-45);
  margin-left: auto;
}
#top__news .btn-news::before {
  content: "";
  position: absolute;
  background: url(/img/common/icon__arrow__01_b.png) center center/contain no-repeat;
  width: 3vw;
  height: 3vw;
  right: 0;
  top: 50%;
  translate: 0 -50%;
}
#top__news .btn-news span {
  font-size: var(--font-size-20);
  font-weight: 800;
  letter-spacing: 0.05em;
}

/* top__news
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
.unit-latest {
  padding-bottom: var(--margin-40);
  background: url(/img/common/border__dot__01_a.png) left bottom repeat-x;
  margin-bottom: var(--margin-40);
}
.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: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.unit-latest .item-time {
  position: relative;
  order: 1;
  width: fit-content;
  font-size: var(--font-size-20);
  font-family: var(--fot--Barlow);
  color: var(--col--main-01);
  font-weight: 700;
  margin-bottom: var(--margin-25);
  margin-right: var(--margin-20);
}
.unit-latest .tag_list {
  order: 2;
  width: 100%;
  margin-bottom: var(--margin-25);
  gap: 1em;
}
.unit-latest .tag_list-item {
  width: fit-content;
  height: fit-content;
  color: var(--col--acc-01);
  font-size: var(--font-size-14);
  position: relative;
}
.unit-latest .tag_list-item::before {
  content: "|";
  position: absolute;
  right: -0.8em;
}
.unit-latest .tag_list-item:last-child::before {
  display: none;
}
.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;
}

.s-post-taglist {
  gap: 5vw;
}
.s-post-taglist .tag-name {
  width: fit-content;
  height: fit-content;
  color: var(--col--acc-01);
  font-size: var(--font-size-14);
  position: relative;
}
.s-post-taglist .tag-name::before {
  content: "|";
  position: absolute;
  right: -0.8em;
}

#top__news .ttl03 {
  width: 50vw;
  margin-right: auto;
  margin-bottom: 3vw;
}
#top__news .cont-latest {
  margin-bottom: 8vw;
}
#top__news .unit-latest {
  padding-bottom: var(--margin-40);
  background: url(/img/common/border__dot__01_a.png) left bottom repeat-x;
  margin-bottom: var(--margin-40);
}
#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: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#top__news .unit-latest .item-time {
  position: relative;
  order: 1;
  width: fit-content;
  font-size: var(--font-size-20);
  font-family: var(--fot--Barlow);
  color: var(--col--main-01);
  font-weight: 700;
  margin-bottom: var(--margin-25);
  margin-right: var(--margin-20);
}
#top__news .unit-latest .tag_list {
  order: 2;
  width: 100%;
  margin-bottom: var(--margin-25);
  gap: 1em;
}
#top__news .unit-latest .tag_list-item {
  width: fit-content;
  height: fit-content;
  color: var(--col--acc-01);
  font-size: var(--font-size-14);
  position: relative;
}
#top__news .unit-latest .tag_list-item::before {
  content: "|";
  position: absolute;
  right: -0.8em;
}
#top__news .unit-latest .tag_list-item:last-child::before {
  display: none;
}
#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;
}
#top__news .btn-news {
  width: fit-content;
  margin-left: auto;
}

/* about
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* about__nav
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#about__nav {
  background: var(--col--acc-02);
}
#about__nav .list-nav {
  --num: 1;
  --column-gap: 5vw;
  --row-gap: 5vw;
}
#about__nav .list-nav .item {
  border-radius: 1.5vw;
  height: 15vw;
  background: var(--col--acc-01);
}
#about__nav .list-nav .item a {
  width: 100%;
  height: 100%;
}
#about__nav .list-nav .item span {
  font-size: var(--font-size-20);
  font-weight: 800;
  color: #fff;
  position: relative;
  padding-right: var(--margin-30);
}
#about__nav .list-nav .item span::before {
  content: "";
  position: absolute;
  background: url(/img/common/icon__arrow__01_a.png) center center/contain no-repeat;
  width: 2vw;
  height: 3vw;
  filter: var(--col--fil-white);
  right: 0;
  top: 50%;
  rotate: 90deg;
  translate: 0 -50%;
}

/* about__feature
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#about__feature {
  background: url(/img/about/about__feature__bg_img_01.png) left -5vw bottom -5vw/40vw no-repeat, url(/img/about/about__feature__bg_img_02.png) right -5vw top -5vw/40vw no-repeat;
}
#about__feature .ttl03 {
  background: #fff;
  text-align: center;
  padding: 2vw;
}
#about__feature .ttl03 .ja {
  line-height: 1.4;
}
#about__feature .ttl03 .str-01 {
  color: var(--col--main-01);
}
#about__feature .topic-about {
  border: 4px solid var(--col--txt-01);
  background: #fff;
  position: relative;
  padding: 5vw;
  padding-top: 0;
}
#about__feature .topic-about::before {
  content: "";
  position: absolute;
  background: url(/img/about/about__feature__illust_01.png) center center/contain no-repeat;
  width: 17vw;
  height: 45vw;
  right: -5vw;
  bottom: -10vw;
}
#about__feature .topic-about .ttl04 {
  margin: 0 auto;
  width: fit-content;
  padding: 4vw 5vw;
  background: var(--col--acc-01);
  position: relative;
  margin-top: -30px;
  margin-bottom: var(--margin-30);
}
#about__feature .topic-about .ttl04::before {
  --width: 4vw;
  --height: 2vw;
  --color: var(--col--acc-01);
  left: 50%;
  translate: -50% 100%;
  bottom: 0;
  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);
}
#about__feature .topic-about .ttl04 .ja {
  color: #fff;
  font-size: var(--font-size-30);
  font-weight: 800;
  font-size: 5vw;
}
#about__feature .topic-about .item-img {
  position: relative;
}
#about__feature .topic-about > .item-text {
  width: 100%;
  margin-left: auto;
  margin-bottom: var(--margin-40);
}
#about__feature .topic-about .block-wase {
  background: var(--col--base-01);
  padding: 5vw;
}
#about__feature .topic-about .block-wase .ttl05 {
  text-align: center;
  padding-bottom: var(--margin-20);
  margin-bottom: var(--margin-20);
  background: url(/img/common/border__dot__01_a.png) left bottom repeat-x;
}
#about__feature .topic-about .block-wase .ttl05 .ja {
  font-weight: 900;
  font-size: var(--font-size-20);
}
/* about__menu
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#about__menu {
  background: url(/img/common/pattern__dot__02_a.png);
}
#about__menu .list-menu {
  gap: 7vw;
  flex-direction: column;
}
#about__menu .list-menu .item {
  width: 100%;
  border-radius: 1.5vw;
  height: 45vw;
  position: relative;
  overflow: hidden;
}
#about__menu .list-menu .item .ttl04 {
  z-index: 1;
  position: absolute;
  bottom: 3vw;
  left: 50%;
  translate: -50% 0;
    width: fit-content;
  white-space: nowrap;
    text-align: center;
    line-height: 1.4;
}
#about__menu .list-menu .item .ttl04 .ja {
  font-size: var(--font-size-30);
  font-size: 5vw;
  font-weight: 800;
  color: #fff;
}
#about__menu .list-menu .item .item-img {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: 100%;
  height: 100%;
}
#about__menu .list-menu .item .item-img img {
  max-width: unset;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* about__plan
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#about__plan {
  background: url(/img/common/pattern__dot__01_a.png);
}
#about__plan .wrap-plan .block-plan {
  background: #fff;
  border-radius: 1.5vw;
  padding: 5vw;
  margin-bottom: var(--margin-30);
  position: relative;
}
#about__plan .wrap-plan .block-plan .wrap-ttl {
  width: 100%;
  margin-left: auto;
  padding-bottom: var(--margin-30);
  margin-bottom: var(--margin-30);
  background: url(/img/common/border__dot__01_b.png) left bottom repeat-x;
}
#about__plan .wrap-plan .block-plan .wrap-ttl .ttl04 {
  width: 40%;
}
#about__plan .wrap-plan .block-plan .wrap-ttl .ttl04 .ja {
  color: var(--col--main-01);
  font-size: var(--font-size-30);
  font-weight: 800;
  font-size: 5.2vw;
}
#about__plan .wrap-plan .block-plan .wrap-ttl .item-price {
  text-align: end;
  flex: 1;
  font-size: var(--font-size-20);
  font-weight: 800;
  color: var(--col--main-01);
  font-size: 3.5vw;
}
#about__plan .wrap-plan .block-plan .item-img {
  position: relative;
  width: 100%;
  margin-bottom: 5vw;
}
#about__plan .wrap-plan .block-plan .item-img img {
  width: 100%;
}
#about__plan .wrap-plan .block-plan .item-text {
  width: 100%;
  margin-left: auto;
  margin-bottom: var(--margin-20);
}
#about__plan .wrap-plan .block-plan .item-table {
  width: 100%;
  margin-left: auto;
  border-spacing: 15px 8px;
  border-collapse: separate;
  left: -2vw;
  position: relative;
}
#about__plan .wrap-plan .block-plan .item-table tr th,
#about__plan .wrap-plan .block-plan .item-table tr td {
  line-height: 1.8;
  font-size: 3.5vw;
}
#about__plan .wrap-plan .block-plan .item-table tr th {
  color: #fff;
  width: 35%;
  text-align: center;
}
#about__plan .wrap-plan .block-plan .item-table tr th p {
  background: var(--col--txt-01);
}
/* about__faq
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#about__faq {
  background: var(--col--acc-02);
}
#about__faq .cont-post .block-post {
  margin-bottom: var(--margin-70);
}
#about__faq .cont-post .block-post:last-child {
  margin-bottom: 0;
}
#about__faq .cont-post .block-post dt {
  width: 90%;
  margin-left: auto;
  font-size: var(--font-size-26);
  font-weight: 800;
  position: relative;
  line-height: 1.4;
  margin-bottom: var(--margin-20);
}
#about__faq .cont-post .block-post dt::before {
  content: "";
  position: absolute;
  background: url(/img/about/icon__q.png) center center/contain no-repeat;
  width: 12vw;
  height: 10vw;
  left: -13vw;
  top: 1vw;
}
#about__faq .cont-post .block-post dd {
  width: 90%;
  margin-left: auto;
  background: #fff;
  border-radius: 1.5vw;
  line-height: 2;
  padding: 4vw 4vw;
}

/* voice
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* voice
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#voice {
  background: var(--col--acc-02);
}
#voice .cont-post .block-post {
  background: #fff;
  border-radius: 1.5vw;
  position: relative;
  padding: 5vw;
  margin-bottom: var(--margin-30);
  z-index: 0;
}
#voice .cont-post .block-post:last-child {
  margin-bottom: 0;
}
#voice .cont-post .block-post hgroup {
  width: 100%;
  margin-left: auto;
  margin-bottom: var(--margin-30);
  position: relative;
  width: 70%;
}
#voice .cont-post .block-post hgroup::before {
  content: "";
  position: absolute;
  background: url(/img/common/deco__ttl__str_01.png) center center/contain no-repeat;
  width: 10vw;
  height: 7vw;
  left: -5vw;
  top: -4vw;
  z-index: -1;
}
#voice .cont-post .block-post hgroup .ttl04 {
  padding-bottom: var(--margin-15);
  background: url(/img/common/border__dot__01_c.png) left bottom repeat-x;
  margin-bottom: var(--margin-15);
}
#voice .cont-post .block-post hgroup .ttl04 .ja {
  font-size: var(--font-size-24);
  font-weight: 800;
  line-height: 1.4;
}
#voice .cont-post .block-post hgroup .item-company {
  font-size: var(--font-size-16);
  font-weight: 800;
  color: var(--col--main-01);
  line-height: 1.4;
  font-size: 3.5vw;
}
#voice .cont-post .block-post .item-img {
  position: absolute;
  left: 5vw;
  top: 5vw;
  width: 20vw;
  height: 20vw;
  border-radius: 50%;
}
#voice .cont-post .block-post .block-text {
  background: var(--col--base-01);
  padding: 5vw;
  margin-bottom: var(--margin-20);
  border-radius: 1.5vw;
}
#voice .cont-post .block-post .block-text .ttl04 {
  width: fit-content;
  margin-bottom: var(--margin-15);
}
#voice .cont-post .block-post .block-text .ttl04 .ja {
  font-weight: 800;
  font-size: var(--font-size-17);
}
#voice .cont-post .block-post .block-text .item-text {
  line-height: 2;
}
/* flow
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* flow
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#flow {
  background: var(--col--acc-02);
}
#flow .list-flow .item {
  background: #fff;
  padding: 5vw;
  border-radius: 1.5vw;
  position: relative;
  margin-bottom: var(--margin-80);
}
#flow .list-flow .item::before {
  content: "";
  position: absolute;
  background: url(/img/common/deco__border__01_a.png) center center/contain no-repeat;
  width: 5vw;
  height: 5vw;
  left: 50%;
  translate: -50% 100%;
  bottom: -4vw;
}
#flow .list-flow .item:last-child::before {
  display: none;
}
#flow .list-flow .item:last-child {
  margin-bottom: 0;
}
#flow .list-flow .item .ttl04 {
  width: 100%;
  margin-left: auto;
  position: relative;
  padding-bottom: var(--margin-30);
  background: url(/img/common/border__dot__01_c.png) left bottom repeat-x;
  margin-bottom: var(--margin-30);
          padding-left: 13vw;
}
#flow .list-flow .item .ttl04 .num {
  position: absolute;
  font-family: var(--fot--Barlow);
  color: var(--col--main-01);
  font-size: var(--font-size-50);
        letter-spacing: 0;
        font-weight: 700;
        left: 0vw;
        top: -.2vw;
        font-size: 8vw;
}
#flow .list-flow .item .ttl04 .ja {
  font-size: var(--font-size-26);
  font-weight: 800;
  line-height: 1.5;
}
#flow .list-flow .item .item-img {
  margin-bottom: 5vw;
}
#flow .list-flow .item .item-text {
  width: 100%;
  margin-left: auto;
}
#flow .list-flow .item .block-contact {
  width: 100%;
  margin-left: auto;
  gap: 5vw;
  flex-direction: column-reverse;
}
#flow .list-flow .item .block-contact .btn-contact {
  height: 14vw;
  background: var(--col--main-01);
  border-radius: 1.5vw;
}
#flow .list-flow .item .block-contact .btn-contact span {
  color: #fff;
  font-size: var(--font-size-20);
  font-weight: 800;
  position: relative;
  padding-left: var(--margin-50);
}
#flow .list-flow .item .block-contact .btn-contact span::before {
  content: "";
  position: absolute;
  background: url(/img/common/icon__mail__a_01.png) center center/contain no-repeat;
  width: 6vw;
  height: 6vw;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}
#flow .list-flow .item .block-contact .unit-contact {
  flex: 1;
  align-items: center;
  gap: 3vw;
}
#flow .list-flow .item .block-contact .unit-contact .tel-num {
  margin-right: auto;
  font-size: var(--font-size-40);
  padding-left: 25px;
  margin-bottom: 5px;
  position: relative;
  display: block;
  font-size: 10vw;
}
#flow .list-flow .item .block-contact .unit-contact .tel-num::before {
  width: 20px;
}
#flow .list-flow .item .block-contact .unit-contact .tel-attention {
  height: 3vw;
}
#flow .list-flow .item .block-contact .unit-contact .com__times {
  gap: 0px;
  width: fit-content;
  white-space: nowrap;
  position: relative;
  flex-direction: column;
  gap: 2vw;
  margin-bottom: var(--margin-15);
}
#flow .list-flow .item .block-contact .unit-contact .com__times dt,
#flow .list-flow .item .block-contact .unit-contact .com__times dd {
  font-size: var(--font-size-14);
}

/* company
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#company__nav {
  background: var(--col--acc-02);
}
#company__nav .list-nav {
  --num: 1;
  --column-gap: 5vw;
  --row-gap: 5vw;
}
#company__nav .list-nav .item {
  border-radius: 1.5vw;
  height: 14vw;
  background: var(--col--acc-01);
}
#company__nav .list-nav .item a {
  width: 100%;
  height: 100%;
}
#company__nav .list-nav .item span {
  font-size: var(--font-size-20);
  font-weight: 800;
  color: #fff;
  position: relative;
  padding-right: var(--margin-40);
}
#company__nav .list-nav .item span::before {
  content: "";
  position: absolute;
  background: url(/img/common/icon__arrow__01_a.png) center center/contain no-repeat;
  width: 3vw;
  height: 2vw;
  filter: var(--col--fil-white);
  right: 0;
  top: 50%;
  rotate: 90deg;
  translate: 0 -50%;
}

/* company__greeting
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#company__greeting {
  background: url(/img/common/pattern__dot__01_a.png);
}
#company__greeting .block-greeting .ttl04 {
  text-align: center;
  margin-bottom: var(--margin-30);
}
#company__greeting .block-greeting .ttl04 .ja {
  font-size: var(--font-size-30);
  font-weight: 800;
  color: #fff;
}
#company__greeting .block-greeting .item-text {
  text-align: center;
  margin-bottom: var(--margin-30);
}
#company__greeting .block-greeting .item-text p {
  color: #fff;
}
#company__greeting .block-greeting .name {
  color: #fff;
  text-align: center;
  font-weight: 700;
}

/* company__store
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#company__store {
  background: var(--col--acc-02);
}
#company__store .block-store {
  background: #fff;
  padding: 5vw;
  position: relative;
  border-radius: 1.5vw;
  margin-bottom: 10vw;
}
#company__store .block-store .ttl04 {
  padding-block: 6vw;
  margin-bottom: var(--margin-50);
  width: 100%;
  margin-left: auto;
  text-align: center;
  background: url(/img/common/border__dot__01_c.png) left top repeat-x, url(/img/common/border__dot__01_c.png) left bottom repeat-x;
}
#company__store .block-store .ttl04 .ja {
  font-weight: 800;
  font-size: var(--font-size-30);
}
#company__store .block-store .item-img {
  position: relative;
  width: 100%;
  margin-bottom: 4vw;
}
#company__store .block-store .item-img img {
  width: 100%;
}
#company__store .block-store .item-text {
  width: 100%;
  margin-left: auto;
  margin-bottom: var(--margin-50);
}
#company__store .block-store .unit-address {
  width: 100%;
  margin-left: auto;
  background: var(--col--base-01);
  border-top: 1px solid transparent;
  margin-bottom: var(--margin-30);
}
#company__store .block-store .unit-address .ttl05 {
  width: fit-content;
  margin: 0 auto;
  background: var(--col--txt-01);
  padding: 3vw 5vw;
  text-align: center;
  margin-top: -20px;
}
#company__store .block-store .unit-address .ttl05 .ja {
  font-size: var(--font-size-17);
  font-weight: 800;
  color: #fff;
}
#company__store .block-store .unit-address .item-address {
  border-radius: 1.5vw;
  background: var(--col--base-01);
  padding: 5vw;
  line-height: 1.8;
  padding-top: 3vw;
}
#company__store .block-store .unit-sns {
  width: 100%;
  margin-left: auto;
}
#company__store .block-store .unit-sns a {
  margin: 0 auto;
  width: fit-content;
  gap: 5vw;
  display: flex;
}
#company__store .block-store .unit-sns .text {
  border-bottom: 1px solid var(--col--txt-01);
  padding-bottom: 5px;
  font-size: var(--font-size-20);
  font-weight: 600;
  font-family: var(--fot--Barlow);
}

/* company__info
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/*お知らせ一覧
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.post-wrp .tag-change {
  margin-bottom: 50px;
}
.post-wrp .tag-change li {
  text-align: center;
  margin: 10px 10px 0 0;
  min-width: 190px;
  display: inline-block;
  vertical-align: middle;
}
.post-wrp .tag-change li a {
  padding: 10px 15px;
  display: block;
}
.tag-select-box {
  position: relative;
  width: 40%;
  margin: 0 0 20px auto;
  max-width: 230px;
}
.tag-select-box:before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 10;
  right: 0.8em;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--col--main-01);
  pointer-events: none;
}
.tag-select-box #tag-select {
  width: 100%;
  padding: 5% 20% 5% 5%;
  box-sizing: border-box;
  font-size: var(--font-size-14);
  margin-left: auto;
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  border: none;
  border-bottom: 2px solid #333;
  cursor: pointer;
  border-radius: 0;
  background: none;
  color: #333;
  font-weight: 700;
  -webkit-appearance: none;
  appearance: none;
}
.tag-select-box #tag-select option {
  padding: 10px;
  box-sizing: border-box;
  cursor: pointer;
  box-sizing: border-box;
}

.post-wrp .tag-change li a {
  border: solid 1px var(--col--main-01);
  color: var(--col--main-01);
  background: #fff;
}
.post-wrp .tag-change .current a {
  background: var(--col--main-01);
}
.post-wrp .tag-change .current a span {
  color: #fff;
}

@media screen and (max-width: 767px) {
  .post-wrp .tag-change {
    display: block;
    overflow-x: scroll;
    white-space: nowrap;
    padding-bottom: 5%;
    margin-bottom: 10%;
  }
  .post-wrp .tag-change li {
    text-align: center;
    margin-right: 1%;
    min-width: 100px;
    display: inline-block;
    vertical-align: middle;
  }
  .post-wrp .tag-change li:last-child {
    margin-right: 0;
  }
  .post-wrp .tag-change li a {
    font-size: 3vw;
    padding: 5px 10px;
    display: block;
  }
}
/*お知らせ詳細
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#contents-u.s-post .s-post-taglist {
  margin-bottom: var(--margin-10);
}
#contents-u.s-post .sb_style h1 {
  border-bottom: 1px solid var(--col--main-01);
}
#contents-u.s-post .sb_style h2 {
  border-left: 5px solid var(--col--main-01);
}
#contents-u.s-post .sb_style h3 {
  background: var(--col--main-01);
  color: #fff;
}
#contents-u.s-post .sb_style h4:before {
  background: var(--col--main-01);
}
#contents-u.s-post .sb_style h5 {
  background: #f2f2f2;
}
#contents-u.s-post .sb_style h6 {
  color: var(--col--main-01);
}
#contents-u.s-post .sb_style ul li:before {
  background: var(--col--main-01);
}
#contents-u.s-post .sb_style ol li:before {
  color: #fff;
  background: var(--col--main-01);
}
#contents-u.s-post .sb_style a {
  color: var(--col--main-01);
}
#contents-u.s-post .s-post-ttl {
  margin-bottom: var(--margin-20);
  border-left: 2px solid var(--col--main-01);
  padding-left: var(--margin-15);
}
#contents-u.s-post .s-post-ttl span {
  font-family: var(--fot--Noto-Sans);
  font-weight: 500;
  position: relative;
  font-size: var(--font-size-22);
  color: var(--col--main-01);
  line-height: 1.6;
}
#contents-u.s-post .post-txt .sb-post-body {
  font-weight: 400;
  font-size: var(--font-size-16);
  font-family: var(--fot--Noto-Sans);
  line-height: 2;
}
#contents-u.s-post .s-time-tag {
  text-align: right;
  padding-top: 10px;
  border-top: 1px solid var(--col--main-01);
  margin-top: var(--margin-20);
}
#contents-u.s-post .s-time-tag time {
  color: var(--col--main-01);
  font-family: var(--fot--Noto-Sans);
  font-weight: 500;
  font-size: var(--font-size-15);
}

/*プライバシーポリシー
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#contents-u.privacy .privacy-box {
  margin-bottom: var(--margin-50);
}
#contents-u.privacy .privacy-box .ttl02 {
  position: relative;
  border-left: 3px solid var(--col--main-01);
  padding-left: var(--margin-15);
  margin-bottom: var(--margin-20);
}
#contents-u.privacy .privacy-box .ttl02 span {
  color: var(--col--main-01);
  font-size: var(--font-size-24);
  font-weight: 500;
  line-height: 1.5;
}
#contents-u.privacy .privacy-box p {
  font-family: var(--fot--Noto-Sans);
  font-size: var(--font-size-16);
  line-height: 2;
  letter-spacing: 0.05em;
}
#contents-u.privacy .privacy-box ul li {
  font-family: var(--fot--Noto-Sans);
  font-size: var(--font-size-16);
  line-height: 2;
  letter-spacing: 0.05em;
}
#contents-u.privacy .privacy-box:last-child {
  margin-bottom: 0;
}

/*サイトマップ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media screen and (min-width: 767px) {
  #site-map ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 40px;
  }
  #site-map ul li {
    width: calc((100% - 40px) / 2);
  }
  #site-map ul li a {
    display: block;
    position: relative;
    font-family: var(--fot--Noto-Sans);
    padding-left: var(--margin-30);
    padding-bottom: var(--margin-15);
    border-bottom: 1px solid var(--col--main-01);
    margin-bottom: var(--margin-25);
    font-size: var(--font-size-18);
    color: var(--col--txt-01);
    transition: ease 0.2s;
  }
  #site-map ul li a:before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 7px;
    border-color: transparent transparent transparent #000;
    left: 14px;
    top: 30%;
    translate: 0 -50%;
    transition: ease 0.2s;
  }
  #site-map ul li a:hover {
    color: var(--col--main-01);
  }
  #site-map ul li a:hover:before {
    border-color: transparent transparent transparent var(--col--main-01);
    left: 18px;
  }
}
@media screen and (min-width: 767px) and (max-width: 767px) {
  #site-map ul li a:before {
    border-width: 1.5vw 0 1.5vw 2.5vw;
    border-color: transparent transparent transparent #000;
    left: 0;
    top: 55%;
  }
}
@media screen and (max-width: 767px) {
  #site-map ul {
    flex-wrap: wrap;
    display: flex;
    gap: 5vw 6vw;
  }
  #site-map ul li {
    width: 100%;
  }
  #site-map ul li a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    font-size: 4vw;
    color: var(--col--main-01);
    border: 1px solid var(--col--main-01);
    padding: 3vw 4vw;
  }
  #site-map ul li a:before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 1vw 0 1vw 1.5vw;
    border-color: transparent transparent transparent var(--col--main-01);
    right: 3vw;
    top: 50%;
    translate: 0 -50%;
    transition: ease 0.2s;
  }
}
/*お問い合わせ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#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.complete .complete-box {
  text-align: center;
  line-height: 1.8;
  font-size: var(--font-size-16);
}
#contents-u.complete .complete-box a {
  color: var(--col--main-01);
}

/*ページが見つかりません。
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.not-found-txt p {
  font-size: var(--font-size-16);
  line-height: 1.8;
}
.not-found-txt p a {
  color: var(--col--main-01);
  transition: ease 0.2s;
}
.not-found-txt p a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 767px) {
  .not-found-txt {
    text-align: center;
  }
}/*# sourceMappingURL=style_sp.css.map */