@charset "UTF-8";
html {
  font-size: 62.5%;
}

body {
  background-color: #f5f6f4;
  color: #222;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "yu-gothic-pr6n", "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  font-size: 16px;
  font-size: 1.6rem;
}

a {
  color: var(--color_text);
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a:visited {
  color: var(--color_black);
}

a:focus-visible {
  color: #222;
}

/* ホバー可能なデバイスでのみ適用される */
@media (any-hover: hover) {
  a:hover,
  a:active {
    color: #222;
  }
}
img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#container {
  width: 100%;
  background-color: #fefefe;
  overflow-x: hidden;
}

/* カラー */
:root {
  --color_main: #3cb035;
  --color_yellow: #f0ae2d;
  --color_blue: #2e9fd8;
  --color_black: #444;
  --color_DarkGreen: #006934;
  --color_text: #222;
  --color_text-gray: #727171;
  --color_link: #006934;
  --color_bg-gray: #f5f6f4;
  --color_bg-black: #3b4043;
  --color_gray: #c1c2c2;
  --color_white: #ffffff;
}

@media screen and (max-width: 785px) {
  .section-lead br {
    display: none;
  }
}
@media screen and (max-width: 785px) {
  .only_pc {
    display: none;
  }
}
/* メディアクエリ */
/* ヘッダー */
header .header__box {
  position: relative;
  max-width: 1166px;
  padding-right: 16px;
  margin-inline: auto;
  min-height: 100px;
}
header .site-logo {
  position: absolute;
  top: 28px;
  left: 0px;
  z-index: 100;
  padding: 4px 20px 4px 0;
  background: var(--color_white);
}

/* 幅1300ｐｘ以上 */
@media screen and (min-width: 1300px) {
  header .header__box {
    max-width: 1300px;
    padding-right: 67px;
    padding-left: 50px;
  }
  header .site-logo {
    left: 0;
  }
}
@media screen and (max-width: 860px) {
  header .header__box {
    padding-right: 0;
    min-height: 70px;
  }
  header .site-logo {
    top: 50%;
    transform: translateY(-50%);
  }
}
/* 幅1168ｐｘ以上幅1299ｐｘ以下 */
@media (min-width: 1167px) and (max-width: 1299px) {
  header .header__box {
    padding-right: 0;
  }
}
.openbtn {
  display: none;
}

.nav__box {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  row-gap: 1em;
}

/* ハンバーガーメニュー */
@media screen and (max-width: 860px) {
  .openbtn {
    display: block;
    position: fixed;
    z-index: 9999;
    right: 0;
    cursor: pointer;
    width: 70px;
    height: 70px;
    background: var(--color_main);
  }
  .openbtn span {
    display: inline-block;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    position: absolute;
    left: 14px;
    height: 4px;
    border-radius: 2px;
    background-color: var(--color_white);
    width: 60%;
  }
  .openbtn span:nth-of-type(1) {
    top: 20px;
  }
  .openbtn span:nth-of-type(2) {
    top: 34px;
  }
  .openbtn span:nth-of-type(3) {
    top: 48px;
  }
  .openbtn.active span:nth-of-type(1) {
    top: 26px;
    left: 22px;
    -webkit-transform: translateY(6px) rotate(-45deg);
    transform: translateY(6px) rotate(-45deg);
    width: 40%;
    background-color: #fefefe;
  }
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn.active span:nth-of-type(3) {
    top: 38px;
    left: 22px;
    -webkit-transform: translateY(-6px) rotate(45deg);
    transform: translateY(-6px) rotate(45deg);
    width: 40%;
    background-color: #fefefe;
  }
  .nav__box {
    /* メニューの内容 */
    position: fixed;
    width: 70%;
    height: 100%;
    top: 0;
    right: -100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 80;
    transition: all 0.5s;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: flex-end;
    padding-top: 100px;
    row-gap: 2em;
  }
  .nav__box .nav__button__list,
  .nav__box .nav__list {
    flex-direction: column;
    row-gap: 0.5em;
  }
  .nav__box .nav__list {
    row-gap: 1em;
    width: 100%;
  }
  .nav__box .nav__item {
    text-align: center;
    width: 170px;
    border-left: 0;
  }
  .nav__box .nav__item:last-child {
    border-right: 0;
  }
  .nav__box .nav__item__link,
  .nav__button .nav-child__link {
    color: var(--color_white);
  }
  .nav__box .nav__item__link:hover {
    color: var(--color_main);
  }
  .nav__box .has-child::after {
    content: none;
  }
  .nav__box .has-child.active::after {
    content: none;
  }
  .nav__box .nav-child__list {
    display: none;
  }
  /* ボタンをタップしたらメニューを表示-Jｓ*/
  .nav__box.open {
    right: 0;
  }
  .only_sp {
    display: block;
  }
}
@media screen and (min-width: 861px) {
  .only_sp {
    display: none;
  }
}
/* ナビ　ボタン */
.nav__button__list,
.nav__list {
  display: flex;
  align-items: center;
  column-gap: 0.5em;
}

.nav__button__item {
  width: 170px;
  height: 44px;
  font-size: 1.5rem;
}

.faq {
  background: var(--color_blue);
  background-image: url(../img/icon_faq.svg);
  background-position: left 16px center;
}

.contact {
  background: var(--color_main);
  background-image: url(../img/icon_contact.svg);
  background-position: left 16px center;
}

.recruit {
  background: var(--color_yellow);
  background-image: url(../img/icon_recruit.svg);
  background-position: left 28px center;
}

.nav__button__link {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color_white);
  background-repeat: no-repeat;
  background-size: 20px 20px;
  overflow-wrap: break-word;
  padding-left: 0.5em;
}
.nav__button__link:visited {
  color: var(--color_white);
}

.nav__list {
  width: 526px;
}

.nav__item {
  flex: 1;
  text-align: center;
  border-left: 2px solid var(--color_black);
}
.nav__item:last-child {
  border-right: 2px solid var(--color_black);
}

.nav__item__link {
  color: var(--color_text);
}

.nav-child__list {
  display: block;
  position: absolute;
  left: -8px;
  top: 32px;
  z-index: 100;
  visibility: hidden;
  opacity: 0;
  /*アニメーション設定*/
  transition: all 0.3s;
  background: var(--color_white);
  padding: 1em 0.5em;
  width: 150px;
  font-size: 0.85em;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.nav-child__list.focused {
  visibility: visible;
  opacity: 1;
}
.nav__button__item .nav-child__list {
  left: 0;
  top: 40px;
  width: 170px;
}
.i-contact li a {
  padding-left: 25px;
  background: transparent;
  background-image: url(../img/icon_mail.png);
  background-position: 5px center;
  background-size: 16px;
  background-repeat: no-repeat;
}

.has-child {
  position: relative;
}
.has-child::after {
  content: "";
  position: absolute;
  top: 6px;
  width: 8px;
  height: 8px;
  margin-left: 0.5em;
  border-top: 2px solid #999;
  border-right: 2px solid #999;
  transform: rotate(135deg);
}
.has-child:hover .nav-child__list, .has-child:active .nav-child__list {
  visibility: visible;
  opacity: 1;
}
.nav__button__item.has-child::after {
  border: none;
}

.nav-child__item {
  padding-bottom: 0.5em;
}
.nav-child__item:not(:last-child) {
  margin-bottom: 0.5em;
  border-bottom: 1px solid var(--color_main);
}

.nav-child__link:hover, .nav-child__link:focus {
  color: var(--color_link);
}

/* 共通パーツ */
main {
  position: relative;
  background-color: #fefefe;
  z-index: 5;
}

.inner {
  max-width: 1100px;
  margin-inline: auto;
  padding: 0 20px;
}

@media screen and (max-width: 785px) {
  .inner {
    max-width: 100%;
  }
}
/* 幅1100ｐｘ以上 */
@media screen and (min-width: 1100px) {
  .inner {
    padding: 0;
  }
}
/* セクションタイトル */
.section-title__wrap {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  row-gap: 2em;
  margin-bottom: 2em;
}

.section-title {
  letter-spacing: 0.2em;
  font-size: 3.2rem;
}
.sub-title {
  background: var(--color_DarkGreen);
  color: var(--color_white);
  padding: 0.15em 0;
  letter-spacing: 0.1em;
  font-size: 1.6rem;
  font-weight: 600;
  width: 186px;
  text-align: center;
}


@media screen and (max-width: 600px) {
  .section-title__wrap {
    row-gap: 1.2em;
    margin-bottom: 1.2em;
  }
  .section-title {
    font-size: 2.6rem;
  }
  .sub-title {
    font-size: 1.2rem;
    width: 120px;
  }
}
.section-concept {
  letter-spacing: 0.1em;
  font-size: 3.2rem;
  text-align: center;
  margin-bottom: 2em;
}

.section-lead {
  text-align: center;
  margin-bottom: 50px;
  font-weight: 600;
  line-height: 2;
}

@media screen and (max-width: 785px) {
  .section-concept {
    font-size: 2.2rem;
  }
}
/* 詳しく見るボタン */
.more-btn .btn {
  background: var(--color_main);
  border-radius: 5px;
  color: var(--color_white);
  font-size: 1.4rem;
  padding: 0.75em 2em 0.75em 1.5em;
  text-align: center;
  position: relative;
  display: inline-block;
}
.more-btn .btn::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--color_white);
  border-right: 2px solid var(--color_white);
  transform: translate(4px, -50%) rotate(45deg);
  position: absolute;
  top: 50%;
}

/* コンタクトボタン */
.contact-btn .btn {
  background: var(--color_main);
  color: var(--color_white);
  position: relative;
  font-size: 2.2rem;
  padding: 0.75em 1em 0.75em 3.2em;
  text-align: center;
  display: inline-block;
  width: 100%;
  max-width: 440px;
  overflow-wrap: break-word;
}
.contact-btn .btn::before {
  content: "";
  background-image: url(../img/icon_contact.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 40px;
  height: 27px;
  position: absolute;
  top: 50%;
  left: calc(50% - 6em);
  z-index: 100;
  transform: translateY(-50%);
}

@media screen and (max-width: 785px) {
  .contact-btn .btn {
    width: 100%;
    max-width: 280px;
    font-size: 1.8rem;
    padding: 1em 1.5em 1em 3em;
  }
  .contact-btn .btn::before {
    width: 26px;
    height: 18px;
  }
}
/* MAPボタン */
.map-btn .btn {
  background: var(--color_yellow);
  color: var(--color_white);
  font-size: 1.4rem;
  padding: 0.25em 0;
  text-align: center;
  display: block;
}

/* ショールームのご案内 */
.showroom__bnr {
  width: 100%;
  background-image: url(../img/stripe_yellow.png);
  background-repeat: repeat;
  background-position: left top;
}

.showroom__heading {
  position: relative;
  max-width: 1400px;
  margin-inline: auto;
  padding: 0 20px;
}
.showroom__heading .bg01 {
  position: absolute;
  left: 20px;
  top: 24px;
  z-index: 1;
  width: 120px;
  height: 126px;
  background-image: url(../img/bg_item05.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}
.showroom__heading .bg02 {
  position: absolute;
  right: 24px;
  top: -20px;
  z-index: 1;
  width: 112px;
  height: 156px;
  background-image: url(../img/bg_item04.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}

@media screen and (max-width: 785px) {
  .showroom__heading .bg01,
  .showroom__heading .bg02 {
    display: none;
  }
}
.showroom-conts {
  padding-bottom: 100px;
}

.showroom__bnr__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.showroom__bnr__item {
  width: 48%;
  border: 1px solid var(--color_black);
  border-radius: 10px;
  padding: 0.5em 0.5em 1em;
  background: var(--color_white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.showroom__bnr figure {
  margin-bottom: 2em;
}
.showroom__bnr figcaption {
  margin-bottom: 2em;
}
.showroom__bnr .more-btn {
  margin-top: auto;
}

.showroom__bnr__image {
  width: 100%;
}

.showroom__bnr__title {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
}

@media screen and (max-width: 785px) {
  .showroom-conts {
    padding-bottom: 50px;
  }
  .showroom__bnr .inner {
    max-width: 532px;
    padding: 0 16px;
  }
  .showroom__bnr__list {
    flex-direction: column;
    row-gap: 1em;
  }
  .showroom__bnr__item {
    width: 100%;
  }
}
/* 採用情報 */
.top-recruit__box {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  border: 2px solid var(--color_DarkGreen);
  border-radius: 20px;
  background: var(--color_white);
  margin: 100px 0;
  overflow: hidden;
}
.top-recruit__box figure {
  align-self: center;
  width: 500px;
}
.top-recruit__box .top-recruit__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.top-recruit__conts {
  width: 55%;
  padding: 0 2em 1em;
  display: flex;
  flex-direction: column;
}

.top-recruit__body {
  border-top: 1px solid var(--color_black);
  margin-top: -1em;
  display: grid;
  height: 100%;
}
.top-recruit__body .section-lead {
  font-size: 1.8rem;
  text-align: left;
  margin: 2em 0 1.5em;
}
.top-recruit__body .description {
  margin-bottom: 1em;
}
.top-recruit__body .more-btn {
  justify-self: center;
  align-self: end;
}

@media screen and (max-width: 785px) {
  .top-recruit .inner {
    max-width: 540px;
    padding: 0 20px;
  }
  .top-recruit__box {
    flex-direction: column;
    justify-content: flex-start;
    margin: 80px 0;
  }
  .top-recruit__box figure {
    width: 100%;
  }
  .top-recruit__conts {
    width: 100%;
    display: block;
  }
}
/* お問い合わせバナー */
.contact__bnr {
  width: 100%;
  background-image: url(../img/stripe_gray.png);
  background-repeat: repeat;
  background-position: left top;
  padding: 100px 0;
}

.contact__bnr__head {
  background: var(--color_yellow);
  border: 1px solid var(--color_black);
  border-bottom: 0;
}

.contact__bnr__title {
  display: grid;
  grid-template-columns: 50px auto 50px;
  padding: 0.75em;
  place-items: center;
  width: fit-content;
  margin-inline: auto;
  text-wrap: wrap;
  text-align: center;
}

.contact__bnr__box {
  border-left: 1px solid var(--color_black);
  border-right: 1px solid var(--color_black);
  border-bottom: 1px solid var(--color_black);
  background: var(--color_white);
  padding: 2rem 2rem;
}

.contact__bnr__conts {
  display: grid;
  grid-template-columns: 14em 1fr;
  column-gap: 1em;
}
.contact__bnr__conts .showroom-title {
  font-size: 1.2em;
  padding: 0.5em 1em;
  border-top: 2px solid var(--color_black);
  border-bottom: 2px solid var(--color_black);
  text-align: center;
  font-size: 1.4em;
  font-weight: 600;
}

.showroom-detail {
  display: grid;
  gap: 0.75em;
  grid-template-columns: 7em 1fr;
  grid-template-rows: 2fr;
  font-weight: 600;
}
.showroom-detail .detail__title {
  display: inline-block;
  text-align: justify;
  text-align-last: justify;
}

.contact__bnr__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 2em;
}
.contact__bnr__body .body__item {
  text-align: center;
}
.contact__bnr__body .body__item:first-child {
  padding-right: 1em;
}
.contact__bnr__body .body__item:not(:first-child) {
  border-left: 1px solid var(--color_black);
  padding-left: 1em;
}
.contact__bnr__body .body__item .tel__note {
  position: relative;
  display: inline-block;
  margin: 0 0 1.5em;
  padding: 0 0 1em;
  max-width: 100%;
  border-bottom: 1px solid var(--color_black);
}
.contact__bnr__body .body__item .tel__note::before {
  content: "";
  position: absolute;
  bottom: -29px;
  left: 50%;
  margin-left: -17px;
  border: 15px solid transparent;
  border-top: 15px solid #fff;
  z-index: 2;
}
.contact__bnr__body .body__item .tel__note::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  margin-left: -17px;
  border: 15px solid transparent;
  border-top: 15px solid var(--color_black);
  z-index: 1;
}
.contact__bnr__body .body__item .tel__note p {
  font-size: 2.4rem;
  font-weight: 600;
  text-wrap: balance;
}
.contact__bnr__body .body__item .tel {
  font-size: clamp(2em, 4.5vw, 3.4em);
  letter-spacing: 0.05em;
  font-weight: 600;
}
.contact__bnr__body .body__item .fax {
  font-weight: 600;
}
.contact__bnr__body .body__item .mail__note {
  font-size: 2.4rem;
  text-wrap: balance;
}
.contact__bnr__body .body__item .mail__note + p {
  margin-bottom: 1em;
  font-weight: 600;
}

@media screen and (max-width: 785px) {
  .contact__bnr {
    padding: 50px 0;
  }
  .contact__bnr__title {
    font-size: 1.8rem;
    grid-template-columns: 40px auto 40px;
    padding: 0.5em 0;
  }
  .contact__bnr__title img {
    width: 25px;
    height: auto;
  }
  .contact__bnr__conts {
    grid-template-columns: 1fr;
    row-gap: 1em;
  }
  .contact__bnr__conts .showroom-title {
    border: 2px solid var(--color_black);
  }
  .contact__bnr__body {
    grid-template-columns: 1fr;
    row-gap: 1em;
  }
  .contact__bnr__body .body__item:first-child {
    padding-right: 0;
  }
  .contact__bnr__body .body__item:not(:first-child) {
    border-left: 0;
    padding-left: 0;
    padding-top: 1em;
    border-top: 1px solid var(--color_black);
  }
}
@media screen and (max-width: 600px) {
  .contact__bnr__body .body__item .tel__note p {
    font-size: 1.8rem;
  }
  .contact__bnr__body .body__item .mail__note {
    font-size: 1.8rem;
  }
}
/* フッター */
footer {
  background: var(--color_bg-black);
  color: var(--color_white);
}
footer a,
footer a:visited {
  color: var(--color_white);
}

/*========= ページトップのためのCSS ===============*/
/*リンクの形状*/
.pagetop a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 1em;
  background: var(--color_main);
  border-radius: 5px;
  width: 60px;
  height: 60px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.6rem;
  transition: all 0.3s;
}

.pagetop a:hover {
  background: var(--color_DarkGreen);
}

.pagetop .text {
  font-size: 1.4rem;
  line-height: 1;
}

/*リンクを右下に固定*/
.pagetop {
  position: fixed;
  right: 10px;
  z-index: 5;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}

.pagetop__arrow {
  display: block;
  height: 16px;
  width: 16px;
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
  transform: translateY(20%) rotate(-45deg);
}

/*　上に上がる動き　*/
.pagetop.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　下に下がる動き　*/
.pagetop.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
/* フッター　インナー */
.footer__inner {
  max-width: 1100px;
  margin-inline: auto;
  padding: 0 20px;
}

@media screen and (max-width: 785px) {
  .footer__inner {
    max-width: 100%;
    padding: 0 20px;
  }
}
/* フッターロゴ */
.footer-logo {
  margin: 0 auto 2em auto;
  padding: 4px 32px;
  background: #fff;
  width: fit-content;
}
.footer-logo img {
  display: inline-block;
}

/* フッターナビ */
.footer__nav {
  margin-bottom: 2em;
  font-size: 1.4rem;
}

.footer__nav__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 1em;
}

.footer__nav__item {
  display: grid;
  grid-template-columns: 6em 1fr;
  column-gap: 0.5em;
}
.footer__nav__item p {
  text-align: center;
}

@media screen and (max-width: 600px) {
  .footer__nav__item {
    column-gap: 0;
    font-size: 0.95em;
  }
}
.sitemap__item {
  text-align-last: left;
  margin-bottom: 0.5em;
}

@media screen and (max-width: 860px) {
  .footer__nav {
    margin: 0 auto 2em auto;
    max-width: 500px;
  }
  .footer__nav__list {
    grid-template-columns: 1fr;
  }
  .sitemap__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-flow: column;
    column-gap: 0.5em;
  }
  .footer__nav__item {
    grid-template-columns: 1fr 2fr;
  }
}
/* 項目を縦並びで折り返す */
@media screen and (max-width: 860px) {
  .row-sp-3 {
    grid-template-rows: repeat(3, auto);
  }
  .row-sp-2 {
    grid-template-rows: repeat(2, auto);
  }
}
@media screen and (min-width: 1100px) {
  .footer__nav {
    max-width: 860px;
    margin-inline: auto;
  }
}
/* フッターコピーライトエリア */
.footer__copy__wrap {
  border-top: 1px solid var(--color_white);
  padding: 1em 0;
}

.footer__copy {
  text-align: right;
}

/* キービジュアル */
.key-visual__area {
  max-width: 1400px;
  height: auto;
  margin-inline: auto;
  position: relative;
}

.key-visual__copy {
  position: absolute;
  right: 0;
  width: 300px;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--color_white);
  border-bottom: 5px solid var(--color_main);
  top: 50%;
  transform: translateY(-50%);
}

.key-visual__text {
  font-size: 1.6em;
  font-weight: 600;
  letter-spacing: 0.1em;
  width: fit-content;
}

@media screen and (min-width: 1400px) {
  .key-visual__copy {
    right: 117px;
  }
}
@media screen and (max-width: 860px) {
  .key-visual__copy {
    right: 0;
    width: 225px;
    height: 75px;
  }
  .key-visual__text {
    font-size: 1.2em;
  }
}
@media screen and (max-width: 600px) {
  .key-visual__copy {
    width: 180px;
    height: 60px;
  }
  .key-visual__text {
    font-size: 1em;
    letter-spacing: 0.05em;
  }
}
/* メインビジュアル */
.main-visual__area {
  position: relative;
  max-width: 1166px;
  height: auto;
  margin-inline: auto;
}

.main-visual__copy {
  position: absolute;
  top: 8%;
  right: 0;
}

.main-visual__text {
  padding: 1em 1.5em;
  background: var(--color_white);
  font-size: clamp(1.2em, 2.2vw, 1.6em);
  font-weight: 600;
  letter-spacing: 0.1em;
  width: fit-content;
}
.main-visual__text + .main-visual__text {
  margin: 1em 0 0 2em;
}

@media screen and (max-width: 785px) {
  .main-visual__copy {
    top: inherit;
    bottom: 14%;
  }
  .main-visual__text {
    padding: 0.75em 1.5em;
    font-size: 1.2em;
    font-size: clamp(1em, 4.4vw, 1.2em);
  }
}
/* TOP メインビジュアル下ボタン　　PCのみ表示 */
.top-button__box {
  margin: 2em 0;
}

.top-button__list {
  display: flex;
  justify-content: center;
  align-items: center;
}

.top-button__item {
  flex: 1;
  font-size: 1.6rem;
  text-align: center;
  border-left: 2px solid var(--color_black);
}
.top-button__item:last-child {
  border-right: 2px solid var(--color_black);
}

.top-button__item__link {
  padding: 0.5em 1em 0.5em 0;
  display: block;
  color: var(--color_text);
  font-weight: 600;
}
.top-button__item__link::after {
  content: "";
  background: url(../img/icon_arrow-down.svg) no-repeat;
  background-size: contain;
  vertical-align: middle;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 1em;
}

/* 860以下でボタン非表示　メニューボタン表示 */
@media screen and (max-width: 860px) {
  .top-button {
    display: none;
  }
}
/* ニュース */
.top-news {
  width: 100%;
  background-image: url(../img/service/bg_service03.jpg);
  background-repeat: repeat;
  background-position: left top;
  padding-bottom: 50px;
}
.top-news .top-news__box {
  position: relative;
  max-width: 1400px;
  margin-inline: auto;
  padding: 0 20px;
}
.top-news .bg01 {
  position: absolute;
  right: 0;
  top: -10px;
  z-index: 1;
  width: 222px;
  height: 111px;
  background-image: url(../img/bg_item01.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}

@media screen and (max-width: 785px) {
  .top-news .bg01 {
    display: none;
  }
}
.news-conts {
  background: var(--color_white);
  padding: 2em 1em 0.25em;
  margin-bottom: 50px;
}

.top-news__item {
  padding-bottom: 1.2em;
  padding-right: 3em;
  margin-bottom: 1.2em;
  display: grid;
  grid-template-columns: 9em 6em 1fr 24px;
  gap: 1.4em;
  align-items: center;
  background-image: linear-gradient(to right, var(--color_black) 2px, transparent 2px);
  background-size: 10px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
.top-news__item:last-child {
  background-image: none;
}

.post-date {
  letter-spacing: 0.1em;
  color: var(--color_text-gray);
}

.post-tag {
  border: 1px solid var(--color_black);
  border-radius: 10px;
  background: var(--color_white);
  padding: 0.25em 0.75em;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.2;
}

.post-title .post-title__link {
  color: var(--color_text);
  text-align: center;
}

.top-news__bnr {
  padding-bottom: 100px;
}
.top-news__bnr .bnr-box {
  display: flex;
  column-gap: 10px;
}
.top-news__bnr .bnr-box {
  /* ホバー可能なデバイスでのみ適用される */
@media (any-hover: hover) {
  a:hover,
  a:active {
    opacity: .75;
  }
}
}
@media screen and (max-width: 785px) {
  .top-news__bnr .bnr-box {
    flex-direction: column;
    row-gap: 10px;
    align-items: center;
  }
  
}

@media screen and (max-width: 785px) {
  .news-conts {
    padding: 2em 1em 0.25em;
    margin-bottom: 32px;
  }
  .top-news__item {
    gap: 0.5em 1em;
    padding-right: 0;
  }
  .post-date {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .post-tag {
    grid-column: 2/3;
    grid-row: 1/2;
  }
  .post-title {
    grid-column: 1/4;
    grid-row: 2/3;
  }
  .post-icon {
    grid-column: 4/5;
    grid-row: 2/3;
  }
  .top-news__bnr {
    padding-bottom: 32px;
  }
}
/* サービス */
.top-service {
  margin-top: 100px;
  margin-bottom: 100px;
}

.top-service__heading {
  position: relative;
  max-width: 1400px;
  margin-inline: auto;
  padding: 0 20px;
}
.top-service__heading .bg01 {
  position: absolute;
  left: 0;
  top: -20px;
  z-index: 1;
  width: 190px;
  height: 136px;
  background-image: url(../img/bg_item02.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}
.top-service__heading .bg02 {
  position: absolute;
  right: 0;
  top: 40px;
  z-index: 1;
  width: 190px;
  height: 136px;
  background-image: url(../img/bg_item03.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}

@media screen and (max-width: 785px) {
  .top-service {
    margin-top: 50px;
    margin-bottom: 80px;
  }
  .top-service__heading .bg01, .top-service__heading .bg02 {
    display: none;
  }
}
.top-service__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5em;
}

.top-service__item {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color_main);
  background: var(--color_bg-gray);
}
.top-service__item .item__pic img {
  width: 100%;
}
.top-service__item .item__panel {
  padding: 2em;
  display: grid;
  height: 100%;
}
.top-service__item .item__panel .more-btn {
  justify-self: center;
  align-self: end;
}
.top-service__item .panel__body {
  margin-bottom: 2em;
}
.top-service__item .panel__title {
  text-align: center;
  color: var(--color_DarkGreen);
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  margin-bottom: 1em;
  line-height: 1.4;
}
.top-service__item .panel__text {
  letter-spacing: 0.1em;
  font-size: 1.4rem;
}

@media screen and (max-width: 785px) {
  .top-service .inner {
    max-width: 532px;
    padding: 0 16px;
  }
  .top-service__list {
    grid-template-columns: 1fr;
    gap: 1em;
  }
}
/* HOME CARE LIFE */
.about {
  padding-top: 100px;
}
.about .section-title__wrap {
  margin-bottom: 16px;
}
.about .bg01 {
  position: absolute;
  left: -50px;
  top: -30px;
  z-index: 1;
  width: 260px;
  height: 1258px;
  background-image: url(../img/company/bg_company_left01.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}
.about .bg02 {
  position: absolute;
  right: -50px;
  top: 30px;
  z-index: 1;
  width: 294px;
  height: 1036px;
  background-image: url(../img/company/bg_company_right01.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}
.about .section-lead {
  text-align: left;
  max-width: 832px;
  margin-inline: auto;
  margin-bottom: 100px;
}

@media screen and (max-width: 785px) {
  .about .bg01, .about .bg02 {
    display: none;
  }
}
/* 私たちは、利用者~ */
.about-conts .section-lead {
  max-width: 640px;
}

.about-concept__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 64px;
  margin-bottom: 50px;
}

.about-concept__item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1em;
  padding: 0 2em;
  position: relative;
}
.about-concept__item:nth-child(odd) {
  border-right: 1px solid var(--color_black);
}
.about-concept__item:nth-child(-n+2)::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 90%;
  height: 1px;
  background: var(--color_black);
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
}

.about-concept__num {
  width: 80px;
  height: 80px;
  background: #e25514;
  color: var(--color_white);
  font-size: 3em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-concept__title {
  color: #e25514;
  font-size: 2rem;
  font-weight: 600;
  align-content: center;
}

.about-concept__text {
  grid-column: 2/3;
  grid-row: 2/3;
  align-content: start;
}

@media screen and (max-width: 785px) {
  .about-concept__list {
    grid-template-columns: 1fr;
  }
  .about-concept__num {
    width: 56px;
    height: 56px;
    font-size: 2.2em;
  }
  .about-concept__text {
    grid-column: 1/3;
  }
  .about-concept__item {
    grid-template-columns: 56px 1fr;
    /* 奇数の右線をなし */
    /* 3番目に下線 */
  }
  .about-concept__item:nth-child(odd) {
    border-right: 0;
  }
  .about-concept__item:nth-child(3)::after {
    content: "";
    position: absolute;
    display: inline-block;
    width: 90%;
    height: 1px;
    background: var(--color_black);
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
  }
}
/* 会社概要・沿革 */
.company {
  width: 100%;
  background-image: url(../img/service/bg_service03.jpg);
  background-repeat: repeat;
  background-position: left top;
  position: relative;
  z-index: 5;
}
.company .bg01 {
  position: absolute;
  left: -50px;
  top: 30px;
  z-index: -10;
  width: 236px;
  height: 1970px;
  background-image: url(../img/company/bg_company_left02.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}
.company .bg02 {
  position: absolute;
  right: -50px;
  top: 50%;
  z-index: 1;
  width: 154px;
  height: 154px;
  background-image: url(../img/company/bg_company_right02.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.company .company-box {
  padding: 50px 0 100px;
}
.company .section-title__wrap {
  position: relative;
  margin-bottom: 64px;
}
.company .section-title__wrap .bg03 {
  position: absolute;
  left: 30px;
  top: -30px;
  z-index: 1;
  width: 153px;
  height: 156px;
  background-image: url(../img/bg_item03.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}
.company .section-title__wrap .bg04 {
  position: absolute;
  right: 30px;
  top: 30px;
  z-index: 1;
  width: 112px;
  height: 156px;
  background-image: url(../img/bg_item04.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}
.company .section-title__wrap .bg05 {
  position: absolute;
  left: 30px;
  top: -50px;
  z-index: 1;
  width: 153px;
  height: 156px;
  background-image: url(../img/bg_item05.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}

@media screen and (max-width: 785px) {
  .company .section-title__wrap .bg03, .company .section-title__wrap .bg04, .company .section-title__wrap .bg05 {
    display: none;
  }
}
.box__item {
  display: grid;
  grid-template-columns: 300px 1fr;
  border-bottom: 1px solid var(--color_gray);
}

.list-title,
.list-description {
  padding: 1em 0;
}

.list-title {
  background: var(--color_DarkGreen);
  color: var(--color_white);
  padding-left: 5em;
}

.list-description {
  background: var(--color_white);
  padding-left: 2em;
  padding-right: 1em;
}
.list-description p {
  line-height: 1.8;
}

.list-description__line {
  display: grid;
  grid-template-columns: 10em 1fr;
}
.list-description__line.list-description__line {
  margin-top: 0.5em;
}

@media screen and (max-width: 785px) {
  .box__item {
    grid-template-columns: 1fr 2.4fr;
  }
  .list-title {
    padding-left: 1em;
    text-wrap: balance;
  }
  .list-description {
    padding-left: 1em;
  }
  .list-description__line {
    grid-template-columns: 1fr;
  }
}
/* 平安グループ */
.group-box {
  padding: 100px 0;
}

.group .section-title__wrap {
  background: var(--color_main);
  color: var(--color_white);
  padding-bottom: 2em;
  margin-bottom: 100px;
}

.group-title__wrap {
  background: var(--color_DarkGreen);
  color: var(--color_white);
  padding: 0.25em 0;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2em;
}

.group-facility__list {
  display: grid;
  grid-template-columns: repeat(3, 366px);
  row-gap: 1em;
  margin-bottom: 2em;
}

.group-facility__item {
  padding: 0.5em 1em 0 1em;
  border-right: 1px solid var(--color_gray);
  font-size: 1.8rem;
}
.group-facility__item:first-child {
  border-left: 1px solid var(--color_gray);
}
.group-facility__item:nth-child(4) {
  border-left: 1px solid var(--color_gray);
}

.facility-title {
  padding-bottom: 1em;
  border-bottom: 2px dotted var(--color_gray);
  font-size: 1.8rem;
}

.facility__panel {
  display: flex;
  column-gap: 0.5em;
  padding-top: 1em;
  padding-bottom: 1em;
  border-bottom: 1px solid var(--color_gray);
}

.facility__pic__image {
  width: 150px;
  height: 150px;
}

.facility__body {
  display: flex;
  flex-direction: column;
}
.facility__body .map-btn {
  margin-top: auto;
}

.facility__text {
  font-size: 1.3rem;
}

/* 幅786ｐｘ以上幅1109ｐｘ以下は2カラム */
@media (min-width: 786px) and (max-width: 1109px) {
  .group-facility__list {
    grid-template-columns: repeat(2, 366px);
    justify-content: center;
  }
  .group-facility__item:nth-child(3) {
    border-left: 1px solid var(--color_gray);
  }
}
/* 幅785ｐｘ以下は1カラム */
@media screen and (max-width: 785px) {
  .group-facility__list {
    grid-template-columns: repeat(1, 366px);
    justify-content: center;
  }
  .group-facility__item:not(:first-child) {
    border-left: 1px solid var(--color_gray);
  }
}
/* いつも安心を */
.heading-box {
  width: 100%;
  position: relative;
  padding: 50px 30px 100px;
}

.heading-box .heading-box__inner {
  position: relative;
  z-index: 5;
}

.heading-box .bg01 {
  position: absolute;
  left: -100px;
  top: -30px;
  z-index: 1;
  width: 260px;
  height: 1258px;
  background-image: url(../img/service/bg_service01.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}

@media screen and (max-width: 785px) {
  .heading-box .bg01 {
    display: none;
  }
}
.heading-box .bg02 {
  position: absolute;
  right: -50px;
  top: -30px;
  z-index: 1;
  width: 204px;
  height: 915px;
  background-image: url(../img/service/bg_service02.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}

@media screen and (max-width: 785px) {
  .heading-box .bg02 {
    display: none;
  }
}
.heading-conts {
  max-width: 1000px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  gap: 30px;
}

@media screen and (max-width: 785px) {
  .heading-conts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.heading-conts .text,
.heading-conts .media {
  color: var(--color_DarkGreen);
  width: 50%;
}

@media screen and (max-width: 785px) {
  .heading-conts .text,
  .heading-conts .media {
    width: 100%;
  }
}
.section__bg-image {
  margin: 100px 0;
}
.section__bg-image .inner {
  max-width: 1400px;
  padding: 0;
}
.section__bg-image .image-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: url(../img/service/service_02_pc.jpg);
  background-size: cover;
  background-position: center right;
  width: 100%;
  height: 700px;
}

.image-conts {
  max-width: 914px;
  height: auto;
  background-color: rgba(255, 255, 255, 0.8);
  margin: 0 16px;
  padding: 3em 0;
}
.image-conts .section-concept {
  line-height: 2;
  font-weight: 600;
}
.image-conts .section-lead {
  margin-inline: auto;
  width: 80%;
  margin-bottom: 0;
  text-align: left;
}

@media screen and (max-width: 785px) {
  .section__bg-image .inner {
    max-width: 100%;
  }
  .image-conts {
    max-width: 70%;
  }
  .image-conts .section-concept {
    line-height: 1.5;
  }
}
/* 画像スマホ用なので600px以下で設定 */
@media screen and (max-width: 600px) {
  .section__bg-image .image-box {
    background: url(../img/service/service_02_sp.jpg) no-repeat;
    min-height: 550px;
    max-height: 700px;
    background-size: cover;
    background-position: center right;
  }
}
/* サービス */
.service {
  margin-top: 100px;
  margin-bottom: 100px;
}

.service__item {
  display: flex;
  justify-content: center;
  align-items: start;
}
.service__item:nth-child(odd) {
  flex-direction: row-reverse;
  margin-right: 4em;
}
.service__item:nth-child(odd) .panel__body {
  padding-left: 32px;
}
.service__item:nth-child(odd) .more-btn {
  margin-left: 32px;
}
.service__item:nth-child(even) {
  margin-left: 4em;
}
.service__item:nth-child(even) .panel__body {
  padding-right: 32px;
}
.service__item:not(:last-child) {
  margin-bottom: 2em;
}
.service__item .item__pic {
  width: 50%;
}
.service__item .item__pic img {
  width: 100%;
}
.service__item .item__panel {
  width: 50%;
  display: grid;
  align-self: stretch;
}
.service__item .more-btn {
  justify-self: start;
  align-self: end;
  display: block;
  margin-top: 1em;
}
.service__item .panel__title {
  color: var(--color_DarkGreen);
  font-size: 3rem;
  letter-spacing: 0.2em;
  margin: 1em 0;
  line-height: 1.4;
  border-bottom: 1px solid var(--color_black);
  padding-left: 32px;
}
.service__item .panel__text {
  letter-spacing: 0.1em;
  font-size: 1.5rem;
  line-height: 1.6;
}
.panel__title2{
color: var(--color_DarkGreen);
  font-size: 3rem;

  margin: 0em 0;
  line-height: 1.4;
  border-bottom: 1px solid var(--color_black);
  padding-left: 0px;

}
@media screen and (max-width: 785px) {
  .service__item {
    justify-content: center;
    align-items: start;
    flex-direction: column;
  }
  .service__item:nth-child(odd) {
    flex-direction: column;
    margin-right: 0;
  }
  .service__item:nth-child(odd) .panel__body {
    padding-left: 0;
  }
  .service__item:nth-child(odd) .more-btn {
    margin: 1em 0 1em 0;
  }
  .service__item:nth-child(even) {
    margin-left: 0;
  }
  .service__item:nth-child(even) .panel__body {
    padding-right: 0;
  }
  .service__item .item__pic {
    width: 100%;
  }
  .service__item .item__panel {
    width: 100%;
  }
  .service__item .panel__title {
    font-size: 2rem;
    letter-spacing: 0.1em;
    padding-left: 0;
    padding-bottom: 1em;
  }
 .panel__title2 {
    font-size: 2rem;
    letter-spacing: 0.1em;
    padding-left: 0;
    padding-bottom: 1em;
  }
  .service__item .panel__body {
    padding-left: 0;
  }
  .service__item .more-btn {
    margin: 1em 0 1em 0;
  }
}
/* 販売　レンタル　住宅改修共通 */
/* いつも安心を */
:where(section.sale, section.rental) .heading-box {
  width: 100%;
  position: relative;
  padding: 50px 16px 100px;
}
:where(section.sale, section.rental) .heading-box .heading-box__inner {
  position: relative;
  z-index: 5;
}
:where(section.sale, section.rental) .heading-box .bg01 {
  position: absolute;
  left: -50px;
  top: -30px;
  z-index: 1;
  width: 223px;
  height: 399px;
  background-image: url(../img/service/bg_service01.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}
.heading-box2 {
  max-width: 1200px;
  margin-inline: auto;
  margin-top: 50px;
  margin-bottom: 50px;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (max-width: 785px) {
  :where(section.sale, section.rental) .heading-box .bg01 {
    display: none;
  }
}
:where(section.sale, section.rental) .heading-box .bg02 {
  position: absolute;
  right: -50px;
  top: -30px;
  z-index: 1;
  width: 204px;
  height: 915px;
  background-image: url(../img/service/bg_service02.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}
@media screen and (max-width: 785px) {
  :where(section.sale, section.rental) .heading-box .bg02 {
    display: none;
  }
}
:where(section.sale, section.rental) .heading-conts {
  max-width: 1100px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  gap: 30px;
}
@media screen and (max-width: 785px) {
  :where(section.sale, section.rental) .heading-conts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
:where(section.sale, section.rental) .heading-conts .text,
:where(section.sale, section.rental) .heading-conts .media {
  color: var(--color_DarkGreen);
  width: 50%;
}
@media screen and (max-width: 785px) {
  :where(section.sale, section.rental) .heading-conts .text,
  :where(section.sale, section.rental) .heading-conts .media {
    width: 100%;
  }
}

/* 特定福祉用具販売項目 レンタル品目*/
:where(section.sale, section.rental) .product-box {
  width: 100%;
  background-image: url(../img/service/bg_service03.jpg);
  background-repeat: repeat;
  background-position: left top;
  padding: 50px 16px 0;
  position: relative;
  z-index: 5;
}
:where(section.sale, section.rental) .product-box .bg01 {
  position: absolute;
  left: 20%;
  top: -30px;
  z-index: 1;
  width: 112px;
  height: 155px;
  background-image: url(../img/bg_item04.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}
@media screen and (max-width: 785px) {
  :where(section.sale, section.rental) .product-box .bg01 {
    display: none;
  }
}
:where(section.sale, section.rental) .product__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  background-color: var(--color_DarkGreen);
  color: var(--color_white);
  padding: 10px 30px;
  letter-spacing: 2px;
  margin-bottom: 50px;
}
:where(section.sale, section.rental) .product__conts {
  max-width: 1100px;
  margin-inline: auto;
  padding: 20px;
  background-color: var(--color_white);
}
:where(section.sale, section.rental) .product__conts .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-bottom: 30px;
}
@media screen and (max-width: 900px) {
  :where(section.sale, section.rental) .product__conts .grid {
    grid-template-columns: 1fr;
  }
}
:where(section.sale, section.rental) .product__conts .grid-item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 5px;
}
:where(section.sale, section.rental) .product__conts .grid-item .name {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 1.5em 0;
  padding: 7px 10px;
  min-width: 280px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  color: var(--color_white);
  background: var(--color_main);
  text-align: center;
}
:where(section.sale, section.rental) .product__conts .grid-item .name:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid var(--color_main);
}
:where(section.sale, section.rental) .product__conts .grid-item .name span {
  display: block;
}
:where(section.sale, section.rental) .product__conts .grid-item .media {
  width: 220px;
  margin-inline: auto;
  height: 192px;
}
:where(section.sale, section.rental) .product__conts .grid-item .media img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
:where(section.sale, section.rental) .product__conts .product__description {
  max-width: 640px;
  margin-inline: auto;
  padding: 2em 0 0;
  text-align: left;
}

/* ご利用の流れ */
:where(section.sale, section.rental) .flow-box .flow__heading {
  background-color: #e25514;
  color: var(--color_white);
}
:where(section.sale, section.rental) .flow-box .flow__heading .flow-inner {
  position: relative;
  max-width: 1400px;
  margin-inline: auto;
}
:where(section.sale, section.rental) .flow-box .flow__heading .bg02 {
  position: absolute;
  left: 32px;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 216px;
  background-image: url(../img/sale/bg_sale01.png);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
}
@media screen and (max-width: 900px) {
  :where(section.sale, section.rental) .flow-box .flow__heading .bg02 {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: -40px;
    background-position: center center;
    height: 164px;
  }
}
:where(section.sale, section.rental) .flow-box .flow__heading .flow__title {
  width: min(60%, 800px);
  min-height: 330px;
  margin-inline: auto;
  position: relative;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  row-gap: 1.6em;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 900px) {
  :where(section.sale, section.rental) .flow-box .flow__heading .flow__title {
    padding-top: 140px;
    width: min(90%, 700px);
  }
}
:where(section.sale, section.rental) .flow-box .flow__heading .flow__title h2 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: 30px;
  font-size: 3rem;
  letter-spacing: 2px;
}
:where(section.sale, section.rental) .flow-box .flow__heading .flow__lead {
  padding-left: 40px;
}
@media screen and (max-width: 900px) {
  :where(section.sale, section.rental) .flow-box .flow__heading .flow__lead {
    padding: 0 0 1.6em;
  }
}
:where(section.sale, section.rental) .flow-box .flow__conts {
  max-width: 1100px;
  margin-inline: auto;
  padding: 50px 16px;
}
@media screen and (max-width: 785px) {
  :where(section.sale, section.rental) .flow-box .flow__conts {
    padding: 50px 16px;
  }
}
:where(section.sale, section.rental) .flow-box .flow__conts .flow-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  padding-bottom: 50px;
  margin-bottom: 50px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: url(../img/line_dot01.png);
  background-repeat: repeat-x;
  background-position: left bottom;
  background-size: 485px 3px;
  position: relative;
}
:where(section.sale, section.rental) .flow-box .flow__conts .flow-item:last-child::after {
  display: none;
}
:where(section.sale, section.rental) .flow-box .flow__conts .flow-item::after {
  display: block;
  position: absolute;
  left: 50%;
  bottom: -30px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  content: "";
  width: 66px;
  height: 72px;
  background-color: var(--color_white);
  background-image: url(../img/icon_arrow01.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 36px 42px;
}
:where(section.sale, section.rental) .flow-box .flow__conts .flow-item .step {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #e25514;
  color: var(--color_white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1.25;
}
:where(section.sale, section.rental) .flow-box .flow__conts .flow-item .step span {
  display: block;
  font-size: 32px;
  font-size: 3.2rem;
  font-weight: bold;
}
:where(section.sale, section.rental) .flow-box .flow__conts .flow-item .conts {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
:where(section.sale, section.rental) .flow-box .flow__conts .flow-item .conts dt {
  color: #e25514;
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}

/* 
福祉用具販売項目の詳細 */
.product-about {
  margin-top: 50px;
  margin-bottom: 100px;
}

.product-about__item {
  display: grid;
  grid-template-columns: minmax(230px, 1fr) 2.5fr;
  border: 1px solid var(--color_black);
}
.product-about__item:not(:last-child) {
  margin-bottom: 1em;
}

.product-about__heading {
  display: grid;
  grid-template-rows: 70px 1fr;
  gap: 5px;
}
.product-about__heading .name {
  padding: 7px 10px;
  color: var(--color_white);
  background: var(--color_main);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-about__heading .media {
  width: 220px;
  margin-inline: auto;
  height: 192px;
  vertical-align: middle;
  padding: 1em;
}
.product-about__heading .media img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.product-about__body {
  padding: 1em;
  position: relative;
}
.product-about__body::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 90%;
  background: var(--color_black);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.product-about__body p:not(:last-child) {
  margin-bottom: 0.5em;
}

.marker-disc__list {
  margin-left: 1em;
}

.marker-disc__item {
  text-indent: -1em;
  padding-left: 1em;
}
.marker-disc__item + .marker-disc__item {
  margin-top: 0.5em;
}

.num__item + .num__item {
  margin-top: 0.5em;
}

.marker-disc__item::before {
  content: "";
  position: relative;
  width: 10px;
  height: 10px;
  display: inline-block;
  background: var(--color_black);
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 5px;
}

/* 画像スマホ用なので600px以下で設定 */
@media screen and (max-width: 600px) {
  .product-about__item {
    grid-template-columns: 1fr;
    border: 1px solid var(--color_black);
  }
  .product-about__body::before {
    width: 90%;
    height: 1px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
  }
}
/* saleページ */
/* タイトルー特定福祉用具販売　背景ダークグリーン */
.product-heading {
  background: url(../img/sale/bg_section01.jpg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height:540px;
  color: var(--color_white);
}

.product-heading-conts {
  max-width: 914px;
  height: auto;
  margin: 0 16px;
  padding: 3em 0;
}
.product-heading-conts .section-title {
  text-align: center;
  margin-bottom: 2em;
}
.product-heading-conts .product-heading__text {
  width: 80%;
  margin-inline: auto;
}

.image-conts {
  background-color: rgba(255, 255, 255, 0.8);
}
.image-conts .section-concept {
  line-height: 2;
  font-weight: 600;
}
.image-conts .section-lead {
  width: 80%;
  margin-bottom: 0;
  text-align: left;
}

/* レンタルページのみ追加 */
.rental .product__conts .grid-item {
  grid-row: span 3;
  gap: 5px;
}
.rental .product__conts .tag_kaigo,
.rental .product__conts .tag_shien {
  padding: 0.25em;
  min-width: 280px;
  width: fit-content;
  margin-inline: auto;
  text-align: center;
  letter-spacing: 0.25em;
  font-weight: 600;
}
.rental .product__conts .tag_kaigo {
  border: 1px solid var(--color_DarkGreen);
  color: var(--color_DarkGreen);
}
.rental .product__conts .tag_shien {
  border: 1px solid #036eb0;
  color: #036eb0;
  margin-top: 0.5em;
}
.rental .product-about__body {
  display: flex;
  flex-direction: column;
}
.rental .product-about__body .flex {
  display: flex;
  column-gap: 1em;
}
.rental .product-about__pic {
  margin-bottom: 1.5em;
}
.rental .product-about__pic p {
  font-weight: 600;
}

@media screen and (max-width: 785px) {
  .rental .product-about__body .flex {
    flex-direction: column;
    align-items: center;
  }
  .rental .product-about__pic {
    align-self: center;
  }
}
/* ダウンロード */
.download-heading {
  background: var(--color_main);
  min-height: 330px;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 2em;
}
.download-heading .section-title {
  color: var(--color_white);
  text-align: center;
}
.download-heading .bg01 {
  width: 124px;
  height: 100%;
  aspect-ratio: 31/40;
}
.download-heading .bg02 {
  width: 135px;
  height: 108px;
}

/* レンタルのみ */
.rental .download-heading .bg02 {
  width: 230px;
  height: 153px;
}

@media screen and (max-width: 785px) {
  .download-heading {
    flex-direction: column;
    justify-content: flex-start;
    row-gap: 2em;
  }
  .download-heading .bg01 {
    width: 81px;
    margin-top: -30px;
  }
  .download-heading .bg02 {
    display: none;
  }
}
.download-conts {
  margin-top: 50px;
  margin-bottom: 100px;
}

.download__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(348px, 1fr));
  gap: 1em 9%;
}

.download__item {
  padding-bottom: 1em;
  background-image: linear-gradient(to right, var(--color_black) 2px, transparent 2px);
  background-size: 10px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
}

.download__link {
  display: flex;
  column-gap: 16px;
  align-items: center;
  font-size: 2.2rem;
}

.download-tag {
  background: #fdede4;
  color: #e25514;
  padding: 0.2em 0.6em;
  border-radius: 10px;
  font-size: 1.6rem;
}

/* ご利用の流れ */
/* レンタルのみ女性 */
.rental .flow-box .flow__heading .bg03 {
  background-image: url(../img/rental/img_rental-flow01.png);
  right: 32px;
  position: absolute;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 216px;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
}