@charset "UTF-8";
/* header ヘッダー
////////////////////////////////////////////////////////////////////////////////////////////////// */
#header {
  position: fixed;
  width: 100%;
  z-index: 5;
  top: 0;
  left: 0;
}
#header .inner {
  width: 100%;
  min-width: 1080px;
  height: 120px;
  background: #fff;
  padding: 0;
}
@media screen and (max-width: 767px) {
  #header .inner {
    height: 70px;
    min-width: 100%;
  }
}
#header .block-left {
  position: relative;
  width: fit-content;
  padding-left: var(--margin-50);
}
@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;
}
#header .item-logo a {
  width: fit-content;
  display: block;
  transition: ease 0.18s;
}
#header .item-logo a:hover {
  opacity: 0.4;
}
@media screen and (max-width: 767px) {
  #header .item-logo {
    margin: 0 auto;
  }
  #header .item-logo img {
    height: auto;
  }
}
#header .block-right {
  position: relative;
  width: fit-content;
  padding-right: var(--margin-50);
}
@media screen and (max-width: 767px) {
  #header .block-right {
    display: none;
  }
}
#header .cont-info {
  width: fit-content;
}
#header .list-times {
  margin-bottom: var(--margin-15);
  width: fit-content;
  gap: 20px;
}
#header .list-times .item {
  width: fit-content;
}
#header .list-times .item dt,
#header .list-times .item dd {
  padding: 7px 15px;
  font-size: var(--font-size-14);
  font-weight: 700;
  letter-spacing: 0.05em;
}
#header .list-times .item dt {
  width: fit-content;
  border-radius: 15px 0 0 15px;
  color: #fff;
}
#header .list-times .item dd {
  width: fit-content;
  border-radius: 0 15px 15px 0;
  background: #f0f0f0;
}
#header .list-times .item:nth-of-type(1) dt {
  background: var(--col--main-01);
}
#header .list-times .item:nth-of-type(2) dt {
  background: var(--col--acc-r-01);
}
#header .unit-contact {
  gap: 30px;
}
#header .unit-contact .com__tel .tel-num {
  font-size: var(--font-size-30);
  padding-left: 30px;
  font-weight: 600;
}
#header .unit-contact .com__tel .tel-num::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
}
#header .unit-contact .btn-contact {
  width: 32px;
  aspect-ratio: 1;
  background: var(--col--acc-y-01);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* nav グローバルナビゲーション
////////////////////////////////////////////////////////////////////////////////////////////////// */
#nav {
  background: var(--pattern-texture--cloth-01);
}
#nav .wrap-nav {
  background: #fff;
  width: min(1840px, 100%);
  margin: 0 auto;
  border-radius: 10px;
  padding: 14px 0;
}
#nav .wrap-nav .list-nav {
  width: 1080px;
  margin: 0 auto;
}
#nav .wrap-nav .list-nav-item {
  width: 20%;
  position: relative;
}
#nav .wrap-nav .list-nav-item::before {
  content: "";
  position: absolute;
  border-right: 1px solid var(--col--txt-01);
  height: 30px;
  right: 0;
  top: 50%;
  translate: 0 -50%;
}
#nav .wrap-nav .list-nav-item a {
  transition: ease 0.17s;
  font-weight: 700;
  width: fit-content;
  margin: 0 auto;
  gap: 5px;
  position: relative;
  top: 0;
}
#nav .wrap-nav .list-nav-item a .ja {
  font-size: 16px;
  transition: ease 0.15s;
}
#nav .wrap-nav .list-nav-item a .en {
  font-size: 12px;
  color: var(--col--acc-r-01);
  transition: ease 0.15s;
}
#nav .wrap-nav .list-nav-item a:hover {
  opacity: 0.7;
  top: -2px;
}
#nav .wrap-nav .list-nav-item a:hover .ja {
  color: var(--col--acc-r-01);
}
#nav .wrap-nav .list-nav-item:first-of-type::after {
  content: "";
  position: absolute;
  border-right: 1px solid var(--col--txt-01);
  height: 30px;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}
@media screen and (max-width: 767px) {
  #nav .wrap-nav {
    display: none;
  }
}

/* mv メインビジュアル
////////////////////////////////////////////////////////////////////////////////////////////////// */
#mv {
  position: relative;
  width: 100%;
  height: 730px;
  overflow: hidden;
  z-index: 0;
  background: var(--pattern-texture--cloth-01);
  margin-top: 120px;
}
#mv::before {
  z-index: 4;
  content: "";
  position: absolute;
  background: url(/img/mv/mv__illust_01.png) center center/contain no-repeat;
  width: 252px;
  height: 209px;
  bottom: 35px;
  left: clamp(50px, 50vw - 500px, 370px);
}
#mv::after {
  z-index: 3;
  content: "";
  position: absolute;
  background: url(/img/mv/mv__illust_02.png) center center/contain no-repeat;
  width: 184px;
  height: 210px;
  bottom: 35px;
  right: clamp(50px, 50vw - 500px, 370px);
}
#mv .mv-catch {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  z-index: 2;
}
#mv .swiper-wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: 1840px;
  height: 640px;
}
#mv .swiper-wrapper .swiper-slide img {
  max-width: unset;
}
@media screen and (max-width: 767px) {
  #mv {
    height: 100vw;
    max-width: 100%;
  }
}

/* sv サブビジュアル
////////////////////////////////////////////////////////////////////////////////////////////////// */
#sv {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 450px;
  background: var(--pattern-texture--cloth-01);
  margin-top: 120px;
}
#sv .sv-img {
  position: absolute;
  width: 1840px;
  height: 350px;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
}
#sv .sv-catch {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
}
@media screen and (max-width: 767px) {
  #sv {
    height: 45vw;
    max-width: 100%;
  }
}

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

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

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

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

/* footer フッター
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#footer {
  background: url(/img/common/border__img_a_01.png) center top/100% 5px no-repeat;
  position: relative;
  width: 100%;
}
#footer .item-logo {
  display: block;
  position: relative;
  width: fit-content;
  transition: ease 0.2s;
  margin-bottom: var(--margin-30);
}
#footer .item-logo:hover {
  opacity: 0.6;
}
#footer .inner {
  padding: 60px 0;
}
@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 .item-address {
  margin-bottom: var(--margin-20);
}
#footer .com__tel {
  margin-bottom: var(--margin-20);
}
#footer .com__tel .tel-num {
  font-size: var(--font-size-30);
  padding-left: 30px;
}
#footer .com__tel .tel-num::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
}
#footer .com__times {
  flex-direction: column;
  gap: 15px;
}
#footer .list-nav {
  gap: 20px 45px;
  height: 160px;
  margin-bottom: var(--margin-50);
}
#footer .list-nav-item {
  width: fit-content;
}
#footer .list-nav-item a {
  position: relative;
  transition: ease 0.15s;
  font-size: var(--font-size-13);
  font-weight: 700;
  padding-left: 15px;
}
#footer .list-nav-item a::before {
  content: ">";
  left: 0;
  font-size: var(--font-size-14);
  top: 4px;
  color: var(--col--acc-r-01);
  position: absolute;
}
#footer .list-nav-item a:hover {
  opacity: 0.7;
  color: var(--col--acc-r-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);
  color: var(--col--txt-01);
}
#footer #copyright a {
  margin: 0 2px;
  padding: 0 5px;
  transition: ease 0.12s;
}
#footer #copyright a:hover {
  color: #fff;
  background: var(--col--main-01);
}
@media screen and (max-width: 767px) {
  #footer #copyright a {
    margin: unset;
    padding: unset;
  }
  #footer #copyright a:hover {
    color: inherit;
    background: inherit;
  }
}

/* top
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* top__worries
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#top__worries {
  background: var(--pattern-texture--cloth-01);
}
#top__worries .inner {
  width: 1280px;
}
#top__worries .ttl03 {
  width: fit-content;
  margin: 0 auto;
  margin-bottom: var(--margin-50);
  position: relative;
}
#top__worries .ttl03::before {
  content: "";
  position: absolute;
  background: url(/img/common/deco_ttl__shine__a_01.png) center center/contain no-repeat;
  width: 55px;
  height: 140px;
  translate: -100% 0;
  left: -30px;
  top: 25px;
}
#top__worries .ttl03::after {
  content: "";
  position: absolute;
  background: url(/img/common/deco_ttl__shine__a_02.png) center center/contain no-repeat;
  width: 55px;
  height: 140px;
  translate: 100% 0;
  right: -30px;
  top: 25px;
}
#top__worries .list-worries {
  width: 100%;
  height: 400px;
  position: relative;
  background: url(/img/top/top__worries__bg_img_01.png) top center no-repeat;
}
#top__worries .list-worries > .item {
  position: absolute;
  width: 305px;
  height: 122px;
  border-radius: 10px;
  border: 2px solid var(--col--txt-01);
  background: #fff;
  box-shadow: 0px 3px 0px 0px rgba(233, 200, 182, 0.8);
}
#top__worries .list-worries > .item .item-img {
  position: relative;
  margin-left: 4px;
}
#top__worries .list-worries > .item .text {
  text-align: center;
  font-family: var(--fot--M_PLUS);
  font-weight: 800;
  letter-spacing: 0.07em;
  font-size: var(--font-size-19);
  line-height: 1.6;
  width: 176px;
  margin-left: auto;
  margin-right: 5px;
  rotate: 0.1deg;
}
#top__worries .list-worries > .item .text .str-01 {
  background: linear-gradient(0deg, #cbe5f3 50%, rgba(203, 229, 243, 0) 50%);
}
#top__worries .list-worries .item:nth-of-type(1) {
  left: 0;
  top: 0;
}
#top__worries .list-worries .item:nth-of-type(2) {
  right: 0;
  top: 0;
}
#top__worries .list-worries .item:nth-of-type(3) {
  left: 0;
  top: 140px;
}
#top__worries .list-worries .item:nth-of-type(4) {
  right: 0;
  top: 140px;
}
#top__worries .list-worries .item:nth-of-type(5) {
  left: 0;
  bottom: 0;
}
#top__worries .list-worries .item:nth-of-type(6) {
  left: 325px;
  bottom: 0;
}
#top__worries .list-worries .item:nth-of-type(7) {
  right: 325px;
  bottom: 0;
}
#top__worries .list-worries .item:nth-of-type(8) {
  right: 0;
  bottom: 0;
}

/* top__solution
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#top__solution {
  background: var(--separate--a-01), var(--pattern-texture--cloth-02);
}
#top__solution .inner {
  position: relative;
  padding-top: 150px;
  padding-bottom: var(--margin-50);
}
#top__solution .inner::before {
  content: "";
  position: absolute;
  background: url(/img/common/illust__human__img_01.png) center center/contain no-repeat;
  width: 350px;
  height: 263px;
  left: -100px;
  top: 320px;
}
#top__solution .inner::after {
  content: "";
  position: absolute;
  background: url(/img/common/illust__human__img_02.png) center center/contain no-repeat;
  width: 264px;
  height: 323px;
  right: 0;
  top: 250px;
}
#top__solution .ttl03 {
  position: relative;
  margin: 0 auto;
  width: fit-content;
  margin-bottom: var(--margin-50);
}
#top__solution .ttl03::before {
  content: "";
  position: absolute;
  background: url(/img/common/deco_ttl__shine__b_02.png) center center/contain no-repeat;
  width: 64px;
  height: 67px;
  left: -30px;
  top: 0;
  translate: -100% 0;
}
#top__solution .ttl03::after {
  content: "";
  position: absolute;
  background: url(/img/common/deco_ttl__shine__b_01.png) center center/contain no-repeat;
  width: 64px;
  height: 67px;
  right: -30px;
  top: 0;
  translate: 100% 0;
}
#top__solution .item-text {
  text-align: center;
  position: relative;
  width: 460px;
  margin: 0 auto;
  margin-bottom: var(--margin-60);
}
#top__solution .item-text::before {
  content: "";
  position: absolute;
  background: url(/img/common/grid__a_01.png);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
#top__solution .item-text p {
  font-weight: 500;
  margin-bottom: var(--margin-40);
}
#top__solution .com__btn_01 {
  margin: 0 auto;
}
/* top__greeting
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#top__greeting {
  position: relative;
  z-index: 0;
  background: var(--pattern-texture--cloth-02);
}
#top__greeting .inner {
  padding-top: var(--margin-50);
}
#top__greeting .wrap-greeting {
  background: #fff;
  padding: 60px 40px;
  padding-right: 0;
  border-radius: 30px 0 0 30px;
  width: fit-content;
  margin-left: auto;
  box-shadow: -10px 10px 0 0 #ededed;
  position: relative;
}
#top__greeting .wrap-greeting::before {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  translate: 100% 0;
  top: 0;
  right: 0;
  background: #fff;
  box-shadow: -10px 10px 0 0 #ededed;
}
#top__greeting .wrap-greeting .ttl03 {
  gap: 20px;
  margin-bottom: var(--margin-40);
}
#top__greeting .wrap-greeting .item-img {
  position: absolute;
  translate: -100% 0;
  left: -50px;
  top: 50px;
}
#top__greeting .wrap-greeting .item-text {
  position: relative;
}
#top__greeting .wrap-greeting .item-text::before {
  content: "";
  position: absolute;
  background: url(/img/common/grid__a_01.png);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
#top__greeting .wrap-greeting .item-text p {
  font-weight: 500;
  margin-bottom: var(--margin-40);
}



/* top__request
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#top__request {
  position: relative;
  z-index: 0;
    background: var(--pattern-texture--cloth-02);

  .inner{
    position: relative;
  }

  .ttl03 {
    position: relative;
    margin: 0 auto;
    width: fit-content;
    margin-bottom: var(--margin-40);

    .ja{
      margin-bottom: var(--margin-10);
    }

    &::before {
      content: "";
      position: absolute;
      background: url(/img/top/top__request__deco_ttl_01.png)center center / contain no-repeat;
      width: 55px;
      height: 77px;
      left: -70px;
      top: 0;
    }

    &::after {
      content: "";
      position: absolute;
      background: url(/img/top/top__request__deco_ttl_02.png)center center / contain no-repeat;
      width: 55px;
      height: 77px;
      right: -70px;
      top: 0;
    }

  }

  .item-img {
    position: absolute;
    right: 0;
    top: 210px;
  }

  .ttl04 {
    width: 620px;
    margin-right: auto;
    margin-bottom: var(--margin-20);

    .ja {
      font-weight: 800;
      font-family: var(--fot--M_PLUS);
      font-size: var(--font-size-24);
      letter-spacing: 0.1em;
      line-height: 1.4;

      .str-01 {
        font-size: var(--font-size-30);
        color: #dc212f;
      }

      .str-02 {
        font-size: var(--font-size-30);
        color: #1e90d1;
      }
    }
  }

  .item-text {
    position: relative;
    width: 620px;
    margin-right: auto;
  }

  .item-text::before {
  content: "";
  position: absolute;
  background: url(/img/common/grid__a_01.png);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  }

}



/* top__area
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#top__area {
  background: url(/img/common/bg_img__01.jpg) center center/cover no-repeat;
}
#top__area .wrap-area {
  background: rgba(255, 255, 255, 0.75);
  border-radius: 40px;
  padding: 50px 60px;
  width: fit-content;
  position: relative;
}
#top__area .wrap-area .ttl03 {
  position: relative;
  margin-bottom: var(--margin-40);
  .ja{
    margin-bottom: var(--margin-20);
  }
}

#top__area .wrap-area .ttl03::before {
content: "";
position: absolute;
background: url(/img/common/deco_ttl__shine__c_01.png)center center / contain no-repeat;
width: 55px;
height: 77px;
left: 0;
top: 0;
}

#top__area .wrap-area .ttl03::after {
content: "";
position: absolute;
background: url(/img/common/deco_ttl__shine__c_02.png)center center / contain no-repeat;
width: 55px;
height: 77px;
right: 0;
top: 0;
}

#top__area .wrap-area .item-img {
  position: absolute;
  right: -40px;
  top: -20px;
  translate: 100% 0;
  width: max-content;
}
#top__area .wrap-area .item-text {
  text-align: center;
}
#top__area .wrap-area .item-text p {
  line-height: 1.8;
}
#top__area .wrap-area .item-text p .str-r {
  font-size: var(--font-size-20);
  font-weight: 800;
  color: var(--col--acc-r-01);
  background: linear-gradient(0deg, #fbf0c0 0%, rgba(251, 240, 192, 0) 100%);
}
#top__area .wrap-area .item-text p .str-g {
  font-size: var(--font-size-20);
  font-weight: 800;
  color: var(--col--acc-g-01);
  background: linear-gradient(0deg, #dcf0e8 0%, rgba(220, 240, 232, 0) 100%);
}
#top__area .wrap-area .item-text p .note {
  font-size: var(--font-size-14);
}

/* top__subpages
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#top__subpages {
  position: relative;
  z-index: 0;
  background: var(--pattern-texture--cloth-01);
}
#top__subpages .list-subpages {
  --num: 3;
  --column-gap: 45px;
  --row-gap: 45px;
  position: relative;
}
#top__subpages .list-subpages::before {
  z-index: -1;
  content: "";
  position: absolute;
  height: 240px;
  top: 50%;
  translate: 0 -50%;
  width: 150vw;
  left: -50vw;
  background: var(--pattern-border--a-w);
}
#top__subpages .list-subpages > .item {
  transition: ease 0.2s;
}
#top__subpages .list-subpages > .item .ttl03 {
  border-radius: 0 0 0 30px;
  background: #fff;
  text-align: center;
  padding: 20px;
  width: 100%;
  position: relative;
  transition: ease 0.2s;
}
#top__subpages .list-subpages > .item .ttl03::before {
  content: "";
  position: absolute;
  background: url(/img/common/icon__arrow__a_01.svg) center center/contain no-repeat;
  width: 20px;
  height: 20px;
  right: 5px;
  bottom: 5px;
  transition: ease 0.2s;
}
#top__subpages .list-subpages > .item .ttl03 .ja {
  display: block;
  font-size: var(--font-size-30);
  font-family: var(--fot--M_PLUS);
  font-weight: 800;
  letter-spacing: 0.12em;
  transition: ease 0.2s;
  color: var(--col--txt-01);
}
#top__subpages .list-subpages > .item .ttl03 .ja::first-letter {
  color: var(--col--main-01);
}
#top__subpages .list-subpages > .item:hover {
  opacity: 0.75;
}
#top__subpages .list-subpages > .item:hover .ttl03 .ja {
  color: var(--col--main-01);
}
#top__subpages .list-subpages > .item:hover .ttl03::before {
  right: 0;
  bottom: 0;
}

/* top__contact
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#top__contact {
  background: var(--pattern-texture--cloth-02);
}
#top__contact .inner {
  padding-top: 200px;
}
#top__contact .wrap-contact {
  background: #fff;
  padding: 50px;
  border-radius: 30px;
  border: 5px solid #eeeeee;
  position: relative;
}
#top__contact .wrap-contact::before {
  content: "";
  position: absolute;
  background: url(/img/common/illust__human__img_03.png) center center/contain no-repeat;
  width: 211px;
  height: 133px;
  left: 40px;
  top: 20px;
}
#top__contact .wrap-contact::after {
  content: "";
  position: absolute;
  background: url(/img/common/illust__human__img_04.png) center center/contain no-repeat;
  width: 237px;
  height: 164px;
  right: 40px;
  top: -20px;
}
#top__contact .wrap-contact hgroup {
  margin-top: -80px;
  margin-bottom: var(--margin-20);
}
#top__contact .wrap-contact hgroup .ttl03 {
  margin: 0 auto;
  width: fit-content;
  position: relative;
  margin-bottom: var(--margin-20);
}
#top__contact .wrap-contact hgroup .ttl03::before {
  content: "";
  position: absolute;
  background: url(/img/common/deco_ttl__shine__d_01.png) center center/contain no-repeat;
  width: 140px;
  height: 64px;
  left: 50%;
  translate: -50% -100%;
  top: -15px;
}
#top__contact .wrap-contact hgroup > p {
  font-size: var(--font-size-16);
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}
#top__contact .wrap-contact hgroup > p .str-y {
  font-size: var(--font-size-20);
  font-weight: 800;
  background: linear-gradient(0deg, #fbf0c0 50%, rgba(251, 240, 192, 0) 50%);
}
#top__contact .wrap-contact hgroup > p .str-g {
  font-size: var(--font-size-20);
  color: var(--col--acc-g-01);
  font-weight: 800;
  background: linear-gradient(0deg, #dcf0e8 50%, rgba(220, 240, 232, 0) 50%);
}
#top__contact .wrap-contact .unit-contact {
  gap: 20px;
}
#top__contact .wrap-contact .unit-contact .unit-info {
  width: fit-content;
}
#top__contact .wrap-contact .unit-contact .unit-info .com__tel {
  width: fit-content;
  margin-bottom: var(--margin-10);
}
#top__contact .wrap-contact .unit-contact .unit-info .com__times {
  width: fit-content;
}
#top__contact .wrap-contact .unit-contact .unit-info .com__times .com__times-item:last-child {
  margin-right: 0;
}
#top__contact .wrap-contact .unit-contact .unit-info .com__times .com__times-item dt, #top__contact .wrap-contact .unit-contact .unit-info .com__times .com__times-item dd {
  font-size: 13px;
}
#top__contact .wrap-contact .unit-contact .unit-info .com__times .com__times-item dd {
  font-size: 11px;
}
#top__contact .wrap-contact .unit-contact .com__btn_01 {
  --width:220px;
  --height:76px;
  flex: 1;
  gap: 6px;
}
#top__contact .wrap-contact .unit-contact .com__btn_01 .ja {
  font-size: var(--font-size-16);
}
#top__contact .wrap-contact .unit-contact .com__btn_01 .en {
  font-size: 13px;
}

/* top__news
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
.unit-latest {
  margin-bottom: var(--margin-20);
  border-bottom: 1px dotted var(--col--txt-02);
  margin-bottom: var(--margin-20);
  position: relative;
  transition: ease 0.2s;
  right: 0;
}
.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: 80%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: var(--margin-15);
}
.unit-latest .item-time {
  position: relative;
  order: 2;
  width: fit-content;
  margin-right: 1em;
  margin-bottom: var(--margin-15);
}
.unit-latest .item-time::before {
  content: "/";
  position: absolute;
  right: -0.7em;
}
.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;
  background: #f1f1f1;
  border-radius: 12px;
  padding: 2px 8px;
  color: var(--col--acc-r-01);
  font-size: var(--font-size-14);
}
.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: -10px;
  color: var(--col--main-01);
}

.s-post-taglist {
  gap: 10px;
}
.s-post-taglist .tag-name {
  width: fit-content;
  height: fit-content;
  background: #f1f1f1;
  border-radius: 12px;
  padding: 2px 8px;
  color: var(--col--acc-r-01);
  font-size: var(--font-size-14);
}

#top__news {
  position: relative;
}
#top__news .inner {
  position: relative;
  min-height: 430px;
}
#top__news .inner::before {
  content: "";
  position: absolute;
  background: url(/img/common/illust__human__img_05.png) center center/contain no-repeat;
  width: 238px;
  height: 168px;
  left: -100px;
  bottom: -50px;
}
#top__news .ttl03 {
  position: absolute;
  width: fit-content;
  left: 0;
  top: 100px;
}
#top__news .ttl03 .ja {
  margin-bottom: var(--margin-20);
}
#top__news .cont-latest {
  width: 590px;
  margin-left: auto;
}
#top__news .unit-latest {
  margin-bottom: var(--margin-20);
  border-bottom: 1px dotted var(--col--txt-02);
  margin-bottom: var(--margin-20);
  position: relative;
  transition: ease 0.2s;
  right: 0;
}
#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: 80%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: var(--margin-15);
}
#top__news .unit-latest .item-time {
  position: relative;
  order: 2;
  width: fit-content;
  margin-right: 1em;
  margin-bottom: var(--margin-15);
}
#top__news .unit-latest .item-time::before {
  content: "/";
  position: absolute;
  right: -0.7em;
}
#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;
  background: #f1f1f1;
  border-radius: 12px;
  padding: 2px 8px;
  color: var(--col--acc-r-01);
  font-size: var(--font-size-14);
}
#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: -10px;
  color: var(--col--main-01);
}
#top__news .com__btn_01 {
  position: absolute;
  left: 60px;
  top: 230px;
  margin: 0 auto;
}

/* top__info
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#top__info {
  background: var(--pattern-texture--cloth-01);
}
#top__info .inner {
  padding-top: 150px;
}
#top__info .wrap-info {
  --num: 1;
  --column-gap: 40px;
  --row-gap: 0;
}
#top__info .wrap-info .block-info {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  padding-bottom: var(--margin-10);

    box-shadow: 0px 3px 0px 0px rgba(233, 200, 182, 0.4);
}
#top__info .wrap-info .block-info .ttl03 {
  width: fit-content;
  padding: 14px 120px;
  border-radius: 30px;
  margin: 0 auto;
  text-align: center;
  background: red;
  margin-bottom: var(--margin-25);
  position: relative;
  margin-top: -70px;
}
#top__info .wrap-info .block-info .ttl03::before {
  --width: 20px;
  --height: 12px;
  --color: red;
  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);
}
#top__info .wrap-info .block-info .ttl03 .ja {
  font-family: var(--fot--M_PLUS);
  font-weight: 800;
  color: #fff;
  font-size: var(--font-size-30);
}
#top__info .wrap-info .block-info .item-img {
  position: absolute;
  right: 50px;
  top: 50px;
  margin-bottom: var(--margin-20);
}
#top__info .wrap-info .block-info .item-text {
  text-align: left;
  position: relative;
  width: 440px;
}
#top__info .wrap-info .block-info .item-text::before {
  content: "";
  position: absolute;
  background: url(/img/common/grid__a_01.png);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
#top__info .wrap-info .block-info .item-text p {
  font-weight: 500;
  margin-bottom: var(--margin-40);
}
#top__info .wrap-info .block-info .item-text p .str-01 {
  display: inline-block;
  position: relative;
  font-size: var(--font-size-18);
  font-weight: 800;
  color: var(--col--main-01);
  margin-top: -10px;
}
#top__info .wrap-info .block-info.block-request .ttl03 {
  background: #269e58;
}
#top__info .wrap-info .block-info.block-request .ttl03::before {
  --color: #269e58;
}
#top__info .wrap-info .block-info.block-recruit {
  position: relative;
}
#top__info .wrap-info .block-info.block-recruit .item-img::before {
  content: "";
  position: absolute;
  background: url(/img/common/illust__human__img_06.png) center center/contain no-repeat;
  width: 302px;
  height: 145px;
  left: -75px;
  bottom: 0;
}
#top__info .wrap-info .block-info.block-recruit .ttl03 {
  background: #1593d3;
}
#top__info .wrap-info .block-info.block-recruit .ttl03::before {
  --color: #1593d3;
}

/* about_us
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* about_us__feature
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#about_us__feature {
  background: var(--pattern-texture--cloth-01);
}
#about_us__feature .list-feature {
  --num: 2;
  --column-gap: 40px;
  --row-gap: 70px;
}
#about_us__feature .list-feature > .item {
  box-shadow: 0px 3px 0px 0px rgba(233, 200, 182, 0.9);
  border-radius: 10px;
  background: #fff;
  padding: 50px 40px 40px;
  position: relative;
}
#about_us__feature .list-feature > .item .ttl04 {
  padding-bottom: var(--margin-20);
  border-bottom: 1px dashed var(--col--txt-02);
  margin-bottom: var(--margin-10);
  text-align: center;
}
#about_us__feature .list-feature > .item .ttl04 .num {
  position: absolute;
  left: 50%;
  translate: -50% 0;
  top: -30px;
}
#about_us__feature .list-feature > .item .ttl04 .ja {
  font-weight: 700;
  color: var(--col--txt-02);
  font-family: var(--fot--M_PLUS);
  font-size: var(--font-size-30);
}
#about_us__feature .list-feature > .item .item-text p {
  font-weight: 600;
}

/* about_us__supported
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#about_us__supported {
  background: var(--pattern-texture--cloth-02);
}
#about_us__supported .wrap-supported .list-supported {
  --num: 4;
  --column-gap: 40px;
  --row-gap: 20px;
}
/* about_us__flow
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#about_us__flow .wrap-flow .list-flow {
  --num: 4;
  --column-gap: 40px;
  --row-gap: 50px;
}
#about_us__flow .wrap-flow .list-flow > .item {
  position: relative;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
  border-radius: 10px;
}
#about_us__flow .wrap-flow .list-flow > .item::before {
  --width: 16px;
  --height: 12px;
  --color: #f4c91e;
  right: -15px;
  translate: 100% 0;
  content: "";
  position: absolute;
  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);
}
#about_us__flow .wrap-flow .list-flow > .item:last-child::before {
  display: none;
}
#about_us__flow .wrap-flow .list-flow > .item .item-text .num {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
  top: -17px;
  left: 50%;
  translate: -50% 0;
  background: var(--col--main-01);
  width: 40px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: #fff;
  font-size: var(--font-size-24);
  font-family: var(--fot--M_PLUS);
  font-weight: 700;
}
#about_us__flow .wrap-flow .list-flow > .item .item-text .text {
  display: block;
  text-align: center;
  font-size: var(--font-size-22);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
}
#about_us__flow .wrap-flow .list-flow > .item .item-text .text small {
  font-size: var(--font-size-17);
}

/* about_us__agency
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#about_us__agency {
  background: var(--pattern-texture--cloth-01);
}
#about_us__agency .item-text {
  width: 740px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}
#about_us__agency .item-text::before {
  content: "";
  position: absolute;
  background: url(/img/common/grid__a_01.png);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
#about_us__agency .item-text p {
  font-weight: 500;
  margin-bottom: var(--margin-40);
}
#about_us__agency .item-text p {
  font-weight: 600;
}
#about_us__agency .item-text .str-01 {
  position: relative;
  display: inline-block;
  font-weight: 700;
  font-size: var(--font-size-20);
  color: var(--col--acc-r-01);
  margin-top: -10px;
}
#about_us__agency .item-text .str-02 {
  background: linear-gradient(0deg, #faefbd 60%, rgba(250, 239, 189, 0) 60%);
}

/* menu
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.com__menu .block-about {
  margin-bottom: var(--margin-40);
  gap: 75px;
}
.com__menu .block-about .item-img {
  width: max-content;
}
.com__menu .block-about .item-text {
  position: relative;
  flex: 1;
  margin-right: auto;
  height: fit-content;
}
.com__menu .block-about .item-text::before {
  content: "";
  position: absolute;
  background: url(/img/common/grid__a_01.png);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.com__menu .block-about .item-text p {
  font-weight: 500;
  margin-bottom: var(--margin-40);
}
.com__menu .block-about .item-text p {
  font-weight: 600;
  margin-bottom: 0;
}
.com__menu .block-about .item-note {
  position: relative;
  margin-top: var(--margin-30);
}
.com__menu .block-about .item-note small {
  display: block;
  position: relative;
  padding-left: 20px;
  font-size: var(--font-size-15);
  color: #6f6f6f;
  margin-bottom: var(--margin-15);
}
.com__menu .block-about .item-note small:last-child {
  margin-bottom: 0;
}
.com__menu .block-about .item-note small::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 3px;
}
.com__menu .block-info {
  margin-bottom: var(--margin-50);
}
.com__menu .block-info:last-child {
  margin-bottom: 0;
}
.com__menu .block-info .com__list_01 {
  --num: 4;
  --column-gap: 40px;
  --row-gap: 20px;
}
/* menu__wall
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#menu__wall {
  background: var(--pattern-texture--cloth-01);
}
/* menu__roof
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#menu__roof {
  background: var(--pattern-texture--cloth-02);
}
/* menu__package
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* menu__water_works
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#menu__water_works {
  background: var(--pattern-texture--cloth-01);
}
/* menu__interior
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#menu__interior {
  background: var(--pattern-texture--cloth-02);
}
/* menu__interior_reform
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#menu__interior_reform .inner .block-info .list-supported {
  --num: 2;
  --column-gap: 40px;
  --row-gap: 20px;
}
/* menu__exterior_reform
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#menu__exterior_reform {
  background: var(--pattern-texture--cloth-01);
}
#menu__exterior_reform .inner .block-info .list-supported {
  --num: 2;
  --column-gap: 40px;
  --row-gap: 20px;
}
/* menu__other_works
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#menu__other_works {
  background: var(--pattern-texture--cloth-02);
}
/* construction
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* construction
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#construction {
  background: var(--pattern-texture--cloth-01);
}
#construction .inner .topic-post .block-post {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0px 3px 0px 0px rgba(233, 200, 182, 0.9);
  border: 1px solid var(--col--txt-02);
  margin-bottom: var(--margin-50);
}
#construction .inner .topic-post .block-post:last-child {
  margin-bottom: 0;
}
#construction .inner .topic-post .block-post .ttl04 {
  border-radius: 10px;
  padding: 5px 10px;
  background: var(--col--txt-02);
  margin-bottom: var(--margin-30);
}
#construction .inner .topic-post .block-post .ttl04 .ja {
  font-size: var(--font-size-24);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #fff;
}
#construction .inner .topic-post .block-post .list-compare {
  --num: 2;
  --column-gap: 120px;
  --row-gap: 10px;
  margin-bottom: var(--margin-30);
}
#construction .inner .topic-post .block-post .item-text{
  p{
    position: relative;
    border: 1px solid var(--col--txt-02);
    border-radius: 6px;
    padding: 20px;
  }
}

#construction .inner .topic-post .block-post .item-text p::before {
  content: "";
  position: absolute;
  background: url(/img/common/grid__a_01.png);
  width: calc(100% - 40px);

  height: 100%;
  height: 90%;
  top: 20px;
  left: 50%;
  translate: -50% 0;
}



#construction .inner .topic-post .block-post .list-compare .list-compare-item dt {
  text-align: center;
  font-size: var(--font-size-24);
  font-weight: 700;
  width: 100%;
  padding-bottom: var(--margin-20);
  border-bottom: 1px solid red;
}
#construction .inner .topic-post .block-post .list-compare .list-compare-item dd {
  margin-bottom: var(--margin-20);
  width: 100%;
  height: 240px;
}
#construction .inner .topic-post .block-post .list-compare .list-compare-item dd .item-img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
}
#construction .inner .topic-post .block-post .list-compare .list-compare-before {
  position: relative;
}
#construction .inner .topic-post .block-post .list-compare .list-compare-before::before {
  --width: 40px;
  --height: 35px;
  --color: var(--col--acc-y-01);
  right: -80px;
  top: 100px;
  content: "";
  position: absolute;
  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);
}
#construction .inner .topic-post .block-post .list-compare .list-compare-before dt {
  color: var(--col--main-01);
  border-bottom: 1px solid var(--col--main-01);
}
#construction .inner .topic-post .block-post .list-compare .list-compare-after dt {
  color: var(--col--acc-r-01);
  border-bottom: 1px solid var(--col--acc-r-01);
}
/* company
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* company
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#company {
  background: var(--pattern-texture--cloth-01);
}
#company .inner .topic-info {
  margin-bottom: var(--margin-50);
}
#company .inner .topic-info .item-table {
  background: #fff;
}
#company .inner .topic-info .item-table tr th,
#company .inner .topic-info .item-table tr td {
  line-height: 1.8;
}
#company .inner .topic-access .item-map {
  width: 100%;
  border-radius: 10px;
  border: 2px solid var(--col--txt-02);
  outline: 3px solid #fff;
  outline-offset: -5px;
  height: 300px;
  min-height: 200px;
}
#company .inner .topic-access .item-map iframe {
  border-radius: 10px;
  width: 100%;
  height: 100%;
}

/*お知らせ一覧
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.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: 1.2rem;
  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.css.map */