@charset "UTF-8";

:root {
  /* color */
  --color-black-00: #000;
  --color-black-1c: #1c1c1c;
  --color-gray-5d: #5d5d5d;
  --color-gray-e6: #e6e6e6;
  --color-gray-ea: #eaeaea;
  --color-pale-orange: #f2ece6;
  --color-red: #be2e15;
  --color-white: #fff;

  /* fonts */
  --font-yu: "yu-gothic-pr6n", sans-serif;
  --font-galamond: "adobe-garamond-pro", serif;
  --font-shippori: "shippori-mincho", serif;
  --font-size-2xl: 3rem;
  --font-size-xl: 2rem;
  --font-size-md: 1.6rem;
  --font-size-sm: 1.4rem;
  --font-size-xs: 1.2rem;
  --font-size-2xs: 1rem;

  /* leading */
  --leading-1: 1;
  --leading-tight: 1.5;
  --leading-base: 1.8;
  --leading-loose: 2;

  /* space */
  --space-2xl: 24rem;
  --space-xl: 20rem;
  --space-lg: 12rem;
  --space-md: 6rem;
  --space-sm: 3rem;
  --space-xs: 2.5rem;

  /* tracking */
  --tracking-sm: 0.03em;
  --tracking-md: 0.05em;
  --tracking-lg: 0.07em;
  --tracking-xl: 0.1em;

  /* width */
  --width-max: 1080px;
  --width-inner: calc(100% - 50px);

  /* z-index */
  --z-base: 0;
  --z-content: 10;
  --z-overlay: 100;
  --z-header: 300;
}

html {
  font-size: 10px;
}
body {
  color: var(--color-white);
  font-family: var(--font-shippori);
  font-size: var(--font-size-md);
  position: relative;
}
body::after {
  background-image: url(../top/bg.jpg);
  background-position: center center;
  background-size: cover;
  content: "";
  height: 100dvh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100dvw;
  z-index: var(--z-base);
}
main {
  background-color: var(--color-black-00);
  position: relative;
  z-index: var(--z-content);
}

/* ============================

  共通スタイル

 ============================ */
* {
  transition: all 0.4s;
}
a {
  text-decoration: none;
}
img {
  display: block;
}
ul {
  list-style: none;
}

.-wrapper {
  width: var(--width-inner);
  max-width: var(--width-max);
  margin-inline: auto;
}

/* ============================

  head

 ============================ */
.e-head {
  font-family: var(--font-galamond);
  font-size: var(--font-size-xl);
  font-weight: 400;
  letter-spacing: var(--tracking-md);
  margin-bottom: 40px;
  text-align: center;
}
.e-head span {
  font-family: var(--font-yu);
  display: block;
  font-size: var(--font-size-2xs);
}
.e-head::after {
  background-color: var(--color-white);
  content: "";
  display: block;
  height: 1px;
  margin: 15px auto 0;
  width: 30px;
}
.e-head.m-black {
  color: var(--color-black-00);
}
.e-head.m-black::after {
  background-color: var(--color-black-00);
}

.lpg-bbq-grill .e-head::after {
  background-color: #fdba54;
}
.parasol-heater .e-head::after,
.parasol-heater .b-user-voice .e-head::after {
  background-color: #9593c1;
}
.mosquito-magnet .e-head::after {
  background-color: #a2c776;
}

@media (min-width: 768px) {
  .e-head {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-lg);
  }
  .e-head span {
    font-size: var(--font-size-xs);
  }
  .e-head::after {
    width: 34px;
  }
}

/* ============================

  button

 ============================ */
.e-button {
  align-items: center;
  background-color: var(--color-white);
  border-radius: 10px;
  color: var(--color-black-00);
  display: flex;
  font-size: var(--font-size-md);
  height: 40px;
  justify-content: center;
  line-height: var(--leading-1);
  margin: 0 auto;
  position: relative;
  text-align: center;
  width: calc(100% - 50px);
}
.e-button::before {
  border-bottom: 1px solid var(--color-black-00);
  border-right: 1px solid var(--color-black-00);
  content: "";
  height: 0.6em;
  position: absolute;
  right: 1.25em;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  width: 0.6em;
}
.e-button:hover {
  background-color: var(--color-red) !important;
  border-color: var(--color-red);
  color: var(--color-white);
}
.e-button:hover::before {
  border-bottom: 1px solid var(--color-white);
  border-right: 1px solid var(--color-white);
}

main .e-button {
  border: 1px solid var(--color-black-00);
}

.e-button.m-mini {
  background-color: transparent;
  display: inline-block;
  height: auto;
  font-size: var(--font-size-xs);
  min-height: unset;
  padding: 0.75em 2em;
  width: auto;
}
.e-button.m-mini::before {
  display: none;
}

@media (min-width: 768px) {
  main .e-button {
    min-height: 60px;
    margin: 0;
    width: 100%;
  }
}

/* ============================

  header

 ============================ */
.b-header,
.b-header__nav {
  background-color: #000000aa;
  width: 100vw;
  z-index: var(--z-header);
}

.b-header {
  align-items: center;
  color: var(--color-white);
  display: flex;
  font-family: var(--font-yu);
  height: 9dvh;
  justify-content: space-between;
  letter-spacing: var(--tracking-md);
  line-height: var(--leading-1);
  padding: 0 22px;
  position: fixed;
  transform: translateY(-100%) !important;
}
.b-header.m-active {
  transform: translateY(0) !important;
}

.b-header__hmb {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.b-header__hmb span {
  background-color: var(--color-white);
  height: 1px;
  width: calc(100% - 5px);
}
.b-header__hmb p {
  color: var(--color-white);
  font-size: var(--font-size-xs);
}

.b-header__logo a,
.b-header__logo img {
  display: block;
  max-width: 120px;
}

.b-header__nav-list {
  border-top: 1px solid #fff;
}
.b-header__nav-item {
  border-bottom: 1px solid #fff;
}
.b-header__nav-item a {
  align-items: center;
  color: var(--color-white);
  display: flex;
  font-size: 1.5rem;
  height: calc(70dvh / 8);
  justify-content: space-between;
  padding: 0 30px 0 22px;
  position: relative;
  width: 100%;
}
.b-header__nav-item a::after {
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  content: "";
  height: 0.75em;
  transform: rotate(-45deg);
  width: 0.75em;
}

.b-header__nav {
  left: 0;
  position: absolute;
  top: 9dvh;
  transform: translateX(100%);
}
.b-header.m-open .b-header__nav {
  transform: translateX(0);
}

.b-header__bottom {
  display: flex;
  flex-direction: column;
  height: 29dvh;
  justify-content: space-between;
  padding: clamp(15px, 3dvh, 40px) 0 clamp(10px, 2dvh, 15px);
}
.b-header__bottom .e-button {
  font-size: var(--font-size-sm);
  margin-bottom: 1em;
}
.b-header__tel .e-button {
  margin-bottom: 11px;
}
.b-header__tel span {
  display: block;
  font-size: var(--font-size-xs);
  text-align: center;
}

.b-header__sns {
  display: flex;
  gap: 30px;
  justify-content: center;
}
.b-header__sns img {
  width: 40px;
}

.b-header__close {
  border-top: 1px solid var(--color-white);
  color: var(--color-white);
  height: calc(70dvh / 8);
  position: relative;
  text-indent: 1.25em;
  width: 100vw;
}
.b-header__close::before,
.b-header__close::after {
  background-color: var(--color-white);
  content: "";
  height: 1px;
  left: calc(50% - 2em);
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 20px;
}
.b-header__close::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

@media (min-width: 768px) {
  .b-header__hmb {
    display: none;
  }

  .b-header__nav {
    align-items: center;
    background-color: transparent;
    backdrop-filter: unset;
    display: flex;
    justify-content: flex-end;
    position: relative;
    top: unset;
    transform: unset;
  }

  .b-header__nav-list {
    border: none;
    display: flex;
    margin-right: 1em;
  }
  .b-header__nav-item {
    border: none;
  }
  .b-header__nav-item a {
    padding: 0 1em;
  }
  .b-header__nav-item a::before {
    background: linear-gradient(currentcolor, currentcolor) right bottom / 0 1px
      no-repeat;
    content: "";
    height: 1px;
    left: 50%;
    position: absolute;
    top: calc(50% + 0.65em);
    transition: background-size 0.4s;
    transform: translate(-50%, -50%);
    width: calc(100% - 2em);
  }
  .b-header__nav-item a::after {
    display: none;
  }
  .b-header__nav-item a:hover::before {
    background-position: left bottom;
    background-size: 100% 1px;
  }

  .b-header__bottom {
    height: auto;
  }

  .b-header__bottom .e-button {
    padding: 0 2em;
    width: 100%;
  }
  .b-header__bottom .e-button::before {
    display: none;
  }

  /* tel・sns・閉じるボタンはPC非表示 */
  .b-header__tel,
  .b-header__sns,
  .b-header__close {
    display: none;
  }
}

/* ============================

  footer

 ============================ */
.b-footer {
  font-family: var(--font-yu);
  margin: 0 auto;
  max-width: 540px;
  padding: 50px 0;
  position: relative;
  width: calc(100% - 100px);
  z-index: var(--z-content);
}
.b-footer .e-button,
.b-footer .e-logo {
  width: 100%;
}
.b-footer__contact {
  margin-bottom: 15px;
}
.b-footer__tel span,
.b-footer__address,
.b-footer__caption {
  display: block;
  font-size: var(--font-size-xs);
  text-align: center;
}
.b-footer__address a {
  color: var(--color-white);
  text-decoration: underline;
}
.b-footer .e-logo {
  margin: 45px 0;
}
.b-footer__sns {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin: var(--space-sm) 0;
}
.b-footer__sns img {
  width: 50px;
}
.b-footer__caption {
  font-size: var(--font-size-2xs);
}
@media (min-width: 768px) {
  .b-footer {
    padding: var(--space-2xl) 0 var(--space-md);
  }
  .b-footer .e-button {
    font-size: 1.8rem;
    height: 60px;
    width: calc(100% - 100px);
  }
  .b-footer .b-footer__tel .e-button {
    font-size: 2.5rem;
    pointer-events: none;
  }
  .b-footer .b-footer__tel .e-button::before {
    display: none;
  }
  .b-footer__tel span {
    font-size: 1.8rem;
    margin-top: 10px;
  }
}

/* ========================================================

  TOP

 ======================================================== */

/* ============================

  loading

 ============================ */
.b-loading {
  align-items: center;
  background-color: var(--color-black-00);
  color: var(--color-white);
  display: flex;
  height: 100dvh;
  justify-content: center;
  left: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  width: 100dvw;
  z-index: var(--z-overlay);
}
.b-loading.m-view {
  display: none;
}
.b-loading > .e-copy {
  animation: 0.8s ease-in-out loadCopy forwards;
  font-size: 2.4rem;
  letter-spacing: var(--tracking-xl);
  line-height: var(--leading-loose);
  opacity: 0;
  text-align: center;
}

@keyframes loadCopy {
  to {
    opacity: 1;
  }
}

/* ============================

  hero

 ============================ */
.top .b-hero {
  position: relative;
  z-index: var(--z-content);
}
.top .b-hero-image {
  height: 100dvh;
  position: relative;
  width: 100dvw;
}
.top .e-logo {
  animation: imgFadeLogo 1.6s ease-in forwards;
  animation-delay: 2s;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100dvw - 85px);
}
.top .b-image__wrap {
  height: 100dvh;
  left: 50%;
  overflow: hidden;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100dvw;
}
.top .b-image__wrap .e-img {
  animation: imgFade 1.6s ease-in forwards;
  animation-delay: 2s;
  display: block;
  filter: brightness(0.6) blur(0);
  left: 50%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: unset;
}
.m-view + .top .e-logo,
.m-view + .top .b-image__wrap .e-img {
  animation: none;
}
@keyframes imgFade {
  from {
    filter: brightness(0) blur(15px);
  }
  to {
    filter: brightness(0.6) blur(0);
  }
}
@keyframes imgFadeLogo {
  from {
    filter: brightness(0) blur(5px);
  }
  to {
    filter: brightness(1) blur(0);
  }
}

.top .b-image__wrap .e-img.m-01 {
  clip-path: polygon(0 0, 100% 0, 100% 10%, 0 100%);
  height: 50dvh;
  top: 0;
  transform: translateX(-50%);
  width: 100dvw;
  z-index: 11;
}
.top .b-image__wrap .e-img.m-02 {
  clip-path: polygon(0 50%, 100% 5%, 100% 50%, 0 95%);
  height: 100dvh;
  width: 100dvw;
  z-index: 10;
}
.top .b-image__wrap .e-img.m-03 {
  bottom: 0;
  clip-path: polygon(100% 0, 0 90%, 0 100%, 100% 100%);
  height: 50dvh;
  top: unset;
  transform: translateX(-50%);
  width: 100dvw;
  z-index: 11;
}

.top .e-scroll {
  bottom: 0;
  color: var(--color-white);
  display: inline-block;
  font-size: 1.5rem;
  font-family: var(--font-galamond);
  letter-spacing: var(--tracking-xl);
  opacity: 0;
  overflow: hidden;
  padding: 10px 10px 110px;
  position: absolute;
  right: 20px;
  text-decoration: none;
  transform: rotate(180deg);
  transition: 0.2s;
  writing-mode: vertical-lr;
  z-index: 2;
}
.top .e-scroll.m-active {
  opacity: 1;
}

.top .e-scroll::after {
  animation: e-scroll 2s cubic-bezier(1, 0, 0, 1) infinite;
  background: var(--color-gray-e6);
  bottom: 3.5em;
  content: "";
  left: 5px;
  height: 120px;
  position: absolute;
  width: 1px;
}

@keyframes e-scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }

  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }

  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }

  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

@media (min-width: 768px) {
  .top .e-logo {
    max-width: 840px;
    width: 43.75vw;
  }
  .top .b-image__wrap .e-img.m-01 {
    clip-path: polygon(0 0, 100% 0, 0 100%);
    height: 90dvh;
    left: 0;
    transform: unset;
    width: 50dvw;
  }
  .top .b-image__wrap .e-img.m-02 {
    clip-path: polygon(50% 0, 100% 0, 100% 10%, 50% 100%, 0 100%, 0 90%);
  }
  .top .b-image__wrap .e-img.m-03 {
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
    height: 90dvh;
    right: 0;
    transform: unset;
    width: 50dvw;
  }
}

/* ============================

  intro

 ============================ */
.top .b-intro {
  padding-bottom: 0;
}
.top .b-intro > .e-lead {
  display: block;
  font-size: 2.4rem;
  margin-bottom: 80px;
  text-align: center;
}
.top .b-intro > .e-lead__caption {
  margin: 0 auto;
  text-align: justify;
  width: calc(100% - 50px);
}

/* SP用改行：PCでは非表示 */
.top .b-intro > .e-lead > .e-br.m-sp {
  display: inline;
}

.top .b-intro__scroll {
  height: 300vh;
  position: relative;
}
.top .b-intro__stage {
  padding-top: 14dvh;
  position: sticky;
  top: 0;
  height: 100vh;
}

.top .b-objects-wrapper {
  display: flex;
  flex-direction: column;
  gap: 45px;
}
.top .b-objects-wrapper > .e-obj {
  position: relative;
}
.top .b-objects-wrapper > .e-obj img {
  margin: 0 auto;
  max-width: 150px;
  width: 14dvh;
}
.top .b-objects-wrapper > .e-obj::after {
  border-bottom: 1px solid var(--color-white);
  border-right: 1px solid var(--color-white);
  bottom: -1.6em;
  content: "";
  height: 1em;
  left: 50%;
  position: absolute;
  transform: translateX(-50%) rotate(45deg);
  width: 1em;
}
.top .b-objects-wrapper > .e-obj:last-child::after {
  display: none;
}

.top .e-obj > .e-figure,
.top .b-copies-wrapper > .e-copy {
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  position: absolute;
}
.top .e-obj > .e-figure.m-active,
.top .b-copies-wrapper > .e-copy.m-active {
  opacity: 1;
  pointer-events: auto;
}

.top .e-obj > .e-line {
  opacity: 1;
  transition: opacity 0.5s ease;
}
.top .e-obj.m-active > .e-line {
  opacity: 0;
}

.top .e-obj > .e-figure {
  top: 0;
}
.top .b-copies-wrapper > .e-copy {
  line-height: var(--leading-loose);
  margin: 40px auto 0;
  width: calc(100% - 50px);
}

@media (min-width: 768px) {
  .top .b-objects-wrapper {
    flex-direction: row;
    justify-content: center;
  }

  /* SP用改行をPCで無効化 */
  .top .b-intro > .e-lead > .e-br.m-sp {
    display: none;
  }

  /* PC：b-intro__scroll の sticky を無効化 */
  .top .b-intro__scroll {
    height: auto;
    position: static;
  }
  .top .b-intro__stage {
    height: auto;
    padding-top: clamp(80px, 10dvh, 120px);
    position: static;
  }

  /* PC：wrapper でスクロール量を確保し、sticky は b-intro__sticky に */
  .top .b-intro__wrapper {
    height: 500vh;
    position: relative;
  }
  .top .b-intro__sticky {
    display: flex;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    position: sticky;
    top: -5dvh;
  }

  .top .b-intro {
    padding-top: 0;
  }
  .top .b-intro > .e-lead {
    font-size: 3.6rem;
    margin-bottom: 70px;
  }
  .top .b-intro > .e-lead__caption {
    line-height: 2.5;
    text-align: center;
  }
  .top .b-objects-wrapper > .e-obj::after {
    bottom: unset;
    left: unset;
    right: -1.6em;
    transform: translateY(-50%) rotate(-45deg);
    top: 50%;
  }
  .top .b-objects-wrapper > .e-obj img {
    max-width: 226px;
    width: 16dvh;
  }
  .top .b-copies-wrapper > .e-copy {
    text-align: center;
  }
}

/* ============================

  solution

 ============================ */
.top .b-solution__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.top .b-solution__list .e-item {
  background-color: var(--color-black-1c);
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 0 auto;
  padding: 25px 25px 50px;
  position: relative;
  width: calc(100% - 50px);
}
.top .b-solution__list .e-main__img {
  max-width: 440px;
  width: 100%;
}
.top .b-solution__list .e-number {
  display: block;
  font-size: 4.4rem;
  letter-spacing: var(--tracking-lg);
  padding-bottom: 15px;
  position: relative;
}
.top .b-solution__list .e-number::after {
  background-color: #90c7c7;
  bottom: 0;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  width: 27px;
}
.top .b-solution__list .lpg-bbq-grill .e-number::after {
  background-color: #fdba54;
}
.top .b-solution__list .parasol-heater .e-number::after {
  background-color: #9593c1;
}
.top .b-solution__list .mosquito-magnet .e-number::after {
  background-color: #a2c776;
}

.top .b-solution__list .e-product-jp {
  display: block;
  font-family: var(--font-yu);
  font-size: var(--font-size-2xs);
  margin-top: 18px;
}
.top .b-solution__list .e-product-en {
  font-family: var(--font-galamond);
  font-size: 35px;
  font-weight: 400;
  letter-spacing: 0.12em;
  margin-top: 18px;
}
.top .b-solution__list .e-product__caption {
  font-size: var(--font-size-sm);
  letter-spacing: var(--tracking-sm);
  line-height: var(--leading-loose);
  margin-top: 30px;
  text-align: justify;
}

/* 基本のimg__wrap */
.top .b-solution__list .-img__wrap {
  bottom: 32%;
  position: absolute;
}
.top .b-solution__list .-img__wrap .e-img {
  height: auto;
  position: absolute;
  transform: translate(-50%, -50%);
}

/* solutionごとのimg__wrap */
.top .b-solution__list .e-item.lpg-bbq-grill .-img__wrap {
  right: 55px;
}
.top .b-solution__list .e-item.lpg-bbq-grill .-img__wrap .e-img {
  width: clamp(80px, 25vw, 208px);
}

.top .b-solution__list .e-item.parasol-heater .-img__wrap {
  right: 55px;
}
.top .b-solution__list .e-item.parasol-heater .-img__wrap .e-img {
  width: clamp(32px, 11.8vw, 89px);
}

.top .b-solution__list .e-item.mosquito-magnet .-img__wrap {
  right: 40px;
}
.top .b-solution__list .e-item.mosquito-magnet .-img__wrap .e-img {
  width: clamp(32px, 12vw, 126px);
}

.top .b-solution__list .-img__wrap .e-img.m-line {
  opacity: 1;
}
.top .b-solution__list .-img__wrap .e-img.m-photo {
  opacity: 0;
}
.top .b-solution__list .e-item:hover .-img__wrap .e-img.m-line {
  opacity: 0;
}
.top .b-solution__list .e-item:hover .-img__wrap .e-img.m-photo {
  opacity: 1;
}
.top .b-solution__list .e-view-more {
  bottom: 20px;
  font-family: var(--font-yu);
  right: 1em;
  position: absolute;
}
.top .b-solution__list .e-view-more::before {
  background-color: var(--color-white);
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  right: -1.5em;
  top: 50%;
  transform: translateY(-50%);
  width: 14.5px;
}

@media (min-width: 768px) {
  .top .b-solution__list .e-item {
    flex-direction: row;
    gap: 80px;
    padding: 60px calc((100vw - 1080px) / 2);
    width: 100%;
  }
  .top .b-solution__list .e-item:hover {
    background-color: var(--color-gray-ea);
    color: var(--color-black-00);
  }
  .top .b-solution__list .e-number {
    font-size: 56px;
  }
  .top .b-solution__list .e-product-jp {
    font-size: var(--font-size-xs);
    margin-top: 60px;
  }
  .top .b-solution__list .e-product-en {
    font-size: 4.5rem;
  }
  .top .b-solution__list .e-product__caption {
    margin-top: 50px;
    max-width: 270px;
  }
  .top .b-solution__list .e-view-more {
    display: none;
  }
  .top .b-solution__list .e-item .-img__wrap {
    bottom: 28%;
    right: calc((100vw - 1080px) / 2 + 120px) !important;
  }
}

.top .b-solution__list.m-sub {
  margin-bottom: 20px;
  margin-top: 55px;
}
.top .b-solution__list.m-sub .e-item {
  background-color: transparent;
  gap: 20px;
}
.top .b-solution__list.m-sub .e-product-en {
  font-size: var(--font-size-xl);
  margin-top: 25px;
}
.top .b-solution__list.m-sub .e-product__caption {
  margin-top: 20px;
}
.top .b-solution__list.m-sub .e-button {
  margin-top: 25px;
  height: 60px;
  width: 100%;
}

@media (min-width: 768px) {
  .top .b-solution__list.m-sub .e-item {
    align-items: center;
    gap: 80px;
  }
  .top .b-solution__list.m-sub .e-item:hover {
    background-color: transparent;
    color: var(--color-white);
  }
  .top .b-solution__list.m-sub .e-item .-inner {
    width: 100%;
  }
  .top .b-solution__list.m-sub .e-product-en {
    font-size: 3.8rem;
  }
  .top .b-solution__list.m-sub .e-product__caption {
    max-width: unset;
  }
}

.top .b-solution .-sub__box {
  align-items: center;
  background-color: var(--color-pale-orange);
  border-radius: 10px;
  color: var(--color-black-00);
  display: flex;
  flex-direction: column;
  font-family: var(--font-yu);
  gap: 25px;
  margin: 0 auto;
  max-width: 1080px;
  padding: 40px 25px 25px;
  width: calc(100% - 50px);
}
.top .b-solution .-sub__box .e-heading {
  font-size: 2.5rem;
  font-weight: 400;
  margin: 10px 0;
  text-align: center;
}
.top .b-solution .-sub__box .e-caption {
  font-size: var(--font-size-sm);
  position: relative;
  text-align: center;
}
.top .b-solution .-sub__box img {
  margin: 0 auto;
  width: 50px;
}
.top .b-solution .-sub__box .e-saf__button {
  background-color: transparent;
  display: flex;
  flex-direction: column;
  height: auto;
  gap: 20px;
  line-height: var(--leading-base);
  padding: 25px 20px;
  width: 100%;
}
.top .b-solution .-sub__box .e-saf__button::before {
  display: none;
}
.top .b-solution .e-saf__button .e-caption::before {
  border-bottom: 1px solid var(--color-black-00);
  border-right: 1px solid var(--color-black-00);
  content: "";
  height: 0.6em;
  position: absolute;
  right: -0.5em;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  transition: 0.4s;
  width: 0.6em;
}
.top .b-solution .e-saf__button:hover .e-caption::before {
  border-bottom: 1px solid var(--color-white);
  border-right: 1px solid var(--color-white);
}

@media (min-width: 768px) {
  .top .b-solution .-sub__box img {
    width: 140px;
  }
  .top .b-solution .-sub__box .e-heading {
    font-size: 4.3rem;
  }
  .top .b-solution .-sub__box .e-caption {
    font-size: 1.8rem;
  }
  .top .b-solution .-sub__box .e-saf__button {
    flex-direction: row;
    padding: 20px;
  }
  .top .b-solution .e-saf__button .e-heading {
    font-size: 2.4rem;
    margin: 0;
  }
}

/* ============================

  user-voice

 ============================ */
.b-user-voice {
  background-color: var(--color-pale-orange);
  overflow: hidden;
  padding-bottom: 120px !important;
}
.lpg-bbq-grill .b-user-voice {
  background-color: #fff5f0;
}
.parasol-heater .b-user-voice {
  background-color: #faf4ff;
}
.mosquito-magnet .b-user-voice {
  background-color: #eff7f0;
}
.b-user-voice .e-head {
  color: var(--color-black-00);
}
.b-user-voice .e-head::after {
  background-color: var(--color-black-00);
}

/* Swiperカスタム ========================== */

.b-user-voice .swiper {
  overflow: visible;
}
.b-user-voice .swiper-slide {
  padding-top: 30px;
}
.b-user-voice .swiper-pagination {
  bottom: -33px;
}
.b-user-voice .swiper-pagination-bullet-active {
  background: #000;
}
.b-user-voice .swiper-button-next,
.b-user-voice .swiper-button-prev {
  aspect-ratio: 1 / 1;
  background-color: var(--color-white);
  border-radius: 100px;
  color: var(--color-black-00);
  display: none;
  height: 56px;
  padding: 14px 0;
  transform: translateX(-50%);
  width: 56px;
}
.b-user-voice .swiper-button-next {
  right: calc(50% - 25dvw);
}
.b-user-voice .swiper-button-prev {
  left: calc(50% - 21dvw);
}

@media (min-width: 768px) {
  .b-user-voice .swiper-button-next,
  .b-user-voice .swiper-button-prev {
    display: block;
  }
}

/* Swiperカスタムここまで */

.b-user-voice .e-list__item {
  background-color: var(--color-white);
  border-radius: 10px;
  color: var(--color-black-00);
  filter: drop-shadow(5px 5px 3px #00000029);
  padding: 0 30px 40px;
  position: relative;
}
.b-user-voice .e-user__img {
  border-radius: 10px;
  transform: translateY(-30px);
  width: 100%;
}

@media (min-width: 768px) {
  .b-user-voice .e-list__item {
    padding: 0 4.68dvw 75px;
  }
}

.b-user-voice .e-user__comment {
  font-size: var(--font-size-sm);
  height: 5em;
  letter-spacing: var(--tracking-md);
  line-height: var(--leading-base);
  margin-bottom: 30px;
  overflow: hidden;
  position: relative;
  text-align: justify;
  text-overflow: ellipsis;
}
.b-user-voice .e-user__comment span {
  background-color: var(--color-black-00);
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  top: 0;
  width: 30px;
}
.b-user-voice .-user__detail {
  display: flex;
  flex-direction: column;
  font-size: var(--font-size-xs);
  gap: 13px;
}
.b-user-voice .e-detail__item {
  display: flex;
  gap: 12px;
  line-height: 1.2;
}
.b-user-voice .e-detail__item span {
  border-left: 1px solid var(--color-black-00);
  border-right: 1px solid var(--color-black-00);
  display: block;
  height: 1.2em;
  text-align: center;
  width: 7em;
}
.b-user-voice .e-detail__item p {
  word-break: break-word;
  width: calc(100% - (12px + 7.5em));
}
.b-user-voice .e-detail__item a {
  color: var(--color-black-00);
  text-decoration: underline;
}
.b-user-voice .e-category {
  bottom: 13px;
  font-family: var(--font-galamond);
  font-size: var(--font-size-2xs);
  letter-spacing: 0.12em;
  line-height: var(--leading-1);
  position: absolute;
  right: 15px;
}
.b-user-voice .e-category::before {
  content: "";
  display: block;
  height: 1px;
  left: -24px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
}
.parasol-heater .b-user-voice .e-category {
  color: #9593c1;
}
.parasol-heater .b-user-voice .e-category::before {
  background-color: #9593c1;
}

/* ========================================================

  sub

 ======================================================== */

/* ============================

  hero

 ============================ */
.sub .b-hero {
  height: 100dvh;
  position: relative;
  width: 100dvw;
}
.sub .b-hero .-bg {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
}
.sub .b-hero .-bg.m-reverse {
  flex-direction: column-reverse;
}
.sub .b-hero .-bg img {
  height: 50dvh;
  object-fit: cover;
  width: 100dvw;
}
.sub .b-hero .-solution {
  background-color: #00000077;
  padding: 35px 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100dvw;
}
.sub .b-hero .-solution img {
  margin: 0 auto;
  width: calc(100% - 100px);
}
@media (min-width: 768px) {
  .sub .b-hero .-bg,
  .sub .b-hero .-bg.m-reverse {
    flex-direction: row;
  }
  .sub .b-hero .-bg img {
    height: 100dvh;
    width: 50%;
  }
  .sub .b-hero .-solution {
    height: 50dvh;
  }
  .sub .b-hero .-solution img {
    height: calc(100% - 20px);
    width: auto;
  }
}

/* ============================

  intro

 ============================ */
.b-intro {
  line-height: var(--leading-loose);
  padding: 80px 0;
}
.b-intro h2 {
  font-weight: 400;
  letter-spacing: var(--tracking-xl);
  line-height: var(--leading-1);
  margin: 40px 0;
  text-align: center;
}
.b-intro img {
  margin: 0 auto;
}
.lpg-bbq-grill .b-intro img {
  max-width: 113px;
}
.parasol-heater .b-intro img {
  max-width: 44px;
}
.mosquito-magnet .b-intro img {
  max-width: 65px;
}
@media (min-width: 768px) {
  .b-intro {
    padding: var(--space-lg) 0;
    text-align: center;
  }
  .lpg-bbq-grill .b-intro img {
    max-width: 227px;
  }
  .parasol-heater .b-intro img {
    max-width: 86px;
  }
  .mosquito-magnet .b-intro img {
    max-width: 130px;
  }
}

/* ============================

  features

 ============================ */
.sub .b-features {
  padding: 80px 0;
}
.sub .b-features.m-01 {
  background-color: #fff5f0;
}
.sub .b-features.m-02 {
  background-color: #f9f4ff;
}
.sub .b-features.m-03 {
  background-color: #eff7f0;
}
.sub .b-features .-features__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.sub .b-features .-features__item {
  align-items: center;
  background-color: var(--color-white);
  color: var(--color-black-00);
  display: flex;
  flex-direction: column;
  font-family: var(--font-yu);
  gap: var(--space-xs);
  padding: var(--space-xs);
}
.sub .b-features .e-feature__title {
  font-size: var(--font-size-xl);
  margin-bottom: 15px;
  text-align: center;
}
.sub .b-features .-features__item img {
  max-width: 404px;
  width: 100%;
}
@media (min-width: 768px) {
  .sub .b-features {
    padding: var(--space-2xl) 0;
  }
  .sub .b-features .-features__list {
    gap: var(--space-md);
  }
  .sub .b-features .-features__item {
    flex-direction: row;
    gap: var(--space-md);
    padding: var(--space-md);
  }
  .sub .b-features .e-feature__title {
    text-align: left;
  }
}

/* ============================

  sub

 ============================ */
.b-sub {
  padding: 80px 0;
}
@media (min-width: 768px) {
  .b-sub {
    padding: var(--space-2xl) 0;
  }
}

/* ============================

  lineup

 ============================ */

.b-lineup .e-lineup__item {
  align-items: center;
  background-color: var(--color-white);
  border-radius: 10px;
  color: var(--color-black-00);
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  padding: 40px 25px 25px;
}
.parasol-heater .b-lineup .e-lineup__item {
  max-width: 420px;
}
.mosquito-magnet .b-lineup .e-lineup__item {
  max-width: 357px;
}
.b-lineup .e-lineup__item img {
  margin: 0 auto 40px;
  object-fit: contain;
}
.parasol-heater .b-lineup .e-lineup__item img {
  max-width: 190px;
}
.mosquito-magnet .b-lineup .e-lineup__item img {
  max-width: 171px;
}
.b-lineup .e-lineup__name {
  font-size: var(--font-size-xl);
  line-height: var(--leading-tight);
}

.b-lineup {
  overflow-x: hidden;
  padding-bottom: 112px;
}
.b-lineup .swiper {
  overflow: visible;
}
.b-lineup__item {
  background-color: var(--color-white);
  border-radius: 10px;
  color: var(--color-black-00);
  margin: 0 auto;
}
.b-lineup__item.m-double__pc {
  display: none;
}
.b-lineup__item > .b-lineup__image {
  display: block;
  max-height: 180px;
  object-fit: contain;
  padding-top: 40px;
  width: 100%;
}
.b-lineup__item .b-lineup__name {
  display: block;
  font-size: var(--font-size-xl);
  line-height: var(--leading-tight);
  padding: 25px 25px 0;
}
.b-lineup__item .b-lineup__caption {
  font-size: var(--font-size-sm);
  letter-spacing: var(--tracking-md);
  line-height: var(--leading-tight);
  margin-top: var(--space-xs);
  padding: 0 25px 25px;
}
.b-lineup .swiper-pagination {
  bottom: -35px;
}
.b-lineup .swiper-pagination-bullet {
  background-color: var(--color-white);
  opacity: 0.5;
}
.b-lineup .swiper-pagination-bullet-active {
  background-color: var(--color-white);
  opacity: 1;
}

@media (min-width: 768px) {
  .b-lineup {
    overflow: hidden;
    padding-bottom: 0;
  }
  .b-lineup__item.m-single {
    flex: 1;
    max-width: none;
    width: 38%;
  }
  .b-lineup__item.m-single,
  .b-lineup__item.m-double__pc {
    padding: 25px 40px 40px;
  }
  .b-lineup__item .b-lineup__name,
  .b-lineup__item .b-lineup__caption {
    margin: 0;
    padding: 25px 0 0;
  }
  .b-lineup__item.m-double {
    display: none;
  }
  .b-lineup__item.m-double__pc {
    display: block;
    width: calc(62% - 120px);
  }
  .b-lineup__item.m-double__pc .-inner__flexbox {
    display: flex;
    gap: 16px;
  }
  .b-lineup__item.m-double__pc .b-lineup__image {
    max-height: 255px;
  }

  /* swiper-wrapperはSwiper破棄後はただのdiv扱いになる */
  .b-lineup__track {
    display: flex;
    gap: 50px;
    transform: none !important;
  }
}

/* ============================

  spec

 ============================ */
.b-spec {
  margin: 80px 0;
}

.b-spec__nav {
  position: relative;
  padding-bottom: 52px;
}
.b-spec__nav .swiper-pagination-bullets {
  bottom: 20px;
}
.b-spec__nav .swiper-pagination-bullet {
  background-color: var(--color-white);
  opacity: 0.3;
}
.b-spec__nav .swiper-pagination-bullet-active {
  opacity: 1;
}

.b-spec__nav-item {
  cursor: pointer;
  opacity: 0.4;
  pointer-events: none;
  transition: opacity 0.2s;
}
.b-spec__nav-item.m-active {
  opacity: 1;
}
.b-spec__nav-item img {
  border-radius: 100px;
  margin: 0 auto;
  max-width: 96px;
  object-fit: cover;
  transform: scale(0.75);
}
.b-spec__nav-item.m-active img {
  transform: scale(1);
}

.b-spec .b-spec__table {
  border-collapse: collapse;
  color: var(--color-black-00);
  display: none;
  line-height: var(--leading-tight);
  margin: 0 auto;
}
.b-spec__table.m-active {
  display: table;
}
.b-spec tr {
  background-color: var(--color-white);
}
.b-spec tr:nth-child(even) {
  background-color: var(--color-gray-e6);
}
.b-spec th,
.b-spec td {
  padding: 1em;
}
.b-spec th {
  border-right: 1px solid var(--color-black-00);
  font-weight: 400;
  letter-spacing: var(--tracking-lg);
}
.b-spec__table .e-empty {
  background-color: #000;
  height: 2px;
  margin: 2em auto;
  width: 4em;
}
@media (min-width: 768px) {
  .b-spec {
    margin: var(--space-2xl) 0;
  }
  .b-spec .b-spec__table {
    width: 646px;
  }
  .b-spec__nav-list {
    display: flex;
  }

  .b-spec__nav {
    max-width: 500px;
  }

  .b-spec__nav-item {
    pointer-events: all;
    width: calc(100% / 3);
  }
  .b-spec__nav-item img {
    transform: scale(1);
  }
}

/* ============================

  price

 ============================ */
.-price__list li {
  border-bottom: 1px dashed var(--color-black-00);
  padding: 1em 0;
}
.-price__list li:last-child {
  border: none !important;
}
.e-price {
  display: block;
  font-size: 3.6rem;
  line-height: var(--leading-1);
}
.e-price__unit {
  font-size: var(--font-size-xl);
}

.b-price {
  margin-bottom: 80px;
}
.b-price .e-heading {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-sm);
  text-align: center;
}
.b-price .-price__list {
  background-color: var(--color-white);
  color: var(--color-black-00);
  margin-bottom: 40px;
  padding: 25px;
}

@media (min-width: 768px) {
  .-price__list {
    display: flex;
    justify-content: center;
    letter-spacing: var(--tracking-lg);
    padding: 30px 15px;
  }
  .-price__list li {
    border-bottom: none;
    border-right: 1px dashed var(--color-black-00);
    padding: 0 30px;
  }
  .b-price {
    margin: 0 auto;
    max-width: 840px;
  }
  .b-price .-price__box {
    display: flex;
    gap: 50px;
    margin-bottom: 120px;
  }
  .b-price .-price__box > div {
    width: 100%;
  }
  .b-price .-price__box .-price__list {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-bottom: 0;
    padding: 0 25px;
  }
  .lpg-bbq-grill .-price__list {
    flex-direction: column;
    padding: 0;
  }
  .lpg-bbq-grill .-price__list li {
    border-bottom: 1px dashed var(--color-black-00);
    border-right: none;
    padding: 20px 0;
  }
  .lpg-bbq-grill .e-price {
    align-items: baseline;
    display: flex;
  }
  .lpg-bbq-grill .e-price__unit {
    font-size: 2.3rem;
  }
  .lpg-bbq-grill .e-price__unit br {
    display: none;
  }
  .parasol-heater .b-price .-price__box .-price__list {
    justify-content: flex-start;
  }
  .mosquito-magnet .b-price .-price__box .-price__list {
    justify-content: center;
  }
  .b-price .-price__box .-price__list li {
    border-bottom: 1px dashed var(--color-black-00);
    border-right: none;
  }
  .parasol-heater .b-price .-price__box .-price__list li {
    padding: 25px 0;
  }
  .mosquito-magnet .b-price .-price__box .-price__list li {
    padding: 0;
  }
  .b-price .-price__box .-price__list li:last-child {
    border: none;
  }
}

/* Q2800のオプション用CSS */
.-q28__wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.-q28__wrap .e-img {
  max-width: 400px;
  width: 100%;
}
.-q28__opt {
  margin-top: 20px;
}
.-q28__opt p {
  font-size: var(--font-size-xs);
  margin-bottom: 20px;
  text-align: justify;
}

@media (min-width: 768px) {
  .-q28__wrap {
    align-items: center;
    flex-direction: row;
  }
  .-q28__wrap .e-img {
    margin: 0 auto;
    max-width: 200px;
  }
  .-q28__wrap .-q28__wrap {
    gap: 5px;
  }
  .-q28__opt img {
    width: calc(100% / 3 - 5px);
  }
}

/* ============================

  faq

 ============================ */
.b-faq {
  font-family: var(--font-yu);
  width: 100%;
}
.b-faq .e-heading {
  font-size: var(--font-size-xl);
  letter-spacing: var(--tracking-md);
  margin-bottom: var(--space-xs);
}
.b-faq details {
  background-color: var(--color-white);
  color: var(--color-black-00);
  cursor: pointer;
  font-size: var(--font-size-md);
  margin-bottom: var(--space-xs);
}
.b-faq summary {
  align-items: center;
  display: flex;
  gap: 25px;
  justify-content: space-between;
  line-height: var(--leading-tight);
  list-style-type: none;
  position: relative;
}
.b-faq summary::before {
  content: "Q";
  font-family: var(--font-shippori);
  font-size: var(--font-size-2xl);
  left: 30px;
  position: absolute;
  top: 49%;
  transform: translateY(-50%);
}
.b-faq summary::after {
  aspect-ratio: 1 / 1;
  border-top: 1px solid var(--color-black-00);
  border-right: 1px solid var(--color-black-00);
  content: "";
  display: block;
  height: 0.75em;
  transform: rotate(135deg);
  transition: transform 0.4s;
  width: 0.75em;
}
.b-faq details[open] summary {
  background-color: var(--color-gray-5d);
  color: var(--color-white);
}
.b-faq details[open] summary::after {
  border-color: var(--color-white);
  transform: rotate(-45deg);
}
.b-faq summary,
.b-faq .e-answer {
  padding: 30px 20px 30px 80px;
}

/* ============================

  safe and feature

 ============================ */
.safe-and-feature {
  background-color: var(--color-gray-ea);
  color: var(--color-black-00);
  font-family: var(--font-yu);
}
/* hero */
.safe-and-feature .b-hero .-image__wrapper {
  column-gap: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 25px 0 60px;
  row-gap: 30px;
}
.safe-and-feature .b-hero .-image__wrapper img {
  border-radius: 70px;
  max-width: 140px;
  width: calc(50% - 30px);
}
.safe-and-feature .b-hero .e-heading {
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: var(--tracking-xl);
  line-height: var(--leading-tight);
  margin-bottom: 40px;
  text-align: center;
}
.safe-and-feature .b-hero .e-paragraph {
  letter-spacing: var(--tracking-lg);
}
.safe-and-feature .b-hero .e-paragraph br {
  display: none;
}
@media (min-width: 768px) {
  .safe-and-feature .b-hero {
    padding: calc(100dvh / 4) 0 calc(100dvh / 6);
    position: relative;
  }
  .safe-and-feature .b-hero .-image__wrapper {
    height: 60dvh;
    left: 50%;
    padding: 0;
    position: absolute;
    top: 55%;
    transform: translate(-50%, -50%);
    width: 100%;
  }
  .safe-and-feature .b-hero .-image__wrapper img {
    border-radius: 110px;
    height: 25dvh;
    max-height: 220px;
    max-width: 220px;
    position: absolute;
    width: auto;
  }
  .safe-and-feature .b-hero .-image__wrapper .e-img__01 {
    left: 0;
    top: 0;
  }
  .safe-and-feature .b-hero .-image__wrapper .e-img__02 {
    top: 0;
    right: 0;
  }
  .safe-and-feature .b-hero .-image__wrapper .e-img__03 {
    bottom: 0;
    left: 0;
  }
  .safe-and-feature .b-hero .-image__wrapper .e-img__04 {
    bottom: 0;
    right: 0;
  }
  .safe-and-feature .b-hero .e-heading br {
    display: none;
  }
  .safe-and-feature .b-hero .e-paragraph {
    text-align: center;
  }
  .safe-and-feature .b-hero .e-paragraph br {
    display: block;
  }
}

/* features */
.safe-and-feature .b-features {
  margin: 80px 0;
}
.safe-and-feature .b-features .-features__list {
  column-gap: 25px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 40px;
}
.safe-and-feature .b-features .-features__item {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  width: calc(50% - 13px);
}
.safe-and-feature .b-features .-features__item img {
  max-width: 96px;
}
.safe-and-feature .b-features .-features__item .e-heading {
  font-size: var(--font-size-md);
  line-height: var(--leading-tight);
  text-align: center;
}
.safe-and-feature .b-features .-features__item p {
  font-size: var(--font-size-sm);
  letter-spacing: var(--tracking-sm);
  line-height: var(--leading-tight);
  text-align: justify;
}
@media (min-width: 768px) {
  .safe-and-feature .b-features .-features__list {
    column-gap: 68px;
  }
  .safe-and-feature .b-features .-features__item {
    width: calc(20% - 55px);
  }
}

/* contents */
.safe-and-feature .b-contents {
  padding: 0 0 1px;
}
.safe-and-feature .b-contents .-box {
  background-color: var(--color-white);
  border-radius: 10px;
  margin-bottom: 80px;
  padding: 40px 25px 25px;
}
.safe-and-feature .b-contents .e-heading {
  font-size: 2.6rem;
  font-weight: 400;
  letter-spacing: var(--tracking-xl);
  line-height: var(--leading-tight);
  margin-bottom: 25px;
  text-align: center;
}
.safe-and-feature .b-contents .e-heading br {
  display: block;
}
.safe-and-feature .b-contents .e-lead {
  letter-spacing: var(--tracking-lg);
}
.safe-and-feature .b-contents .e-paragraph {
  font-size: var(--font-size-sm);
  letter-spacing: var(--tracking-md);
  line-height: var(--leading-loose);
  text-align: justify;
}
.safe-and-feature .b-contents .e-fukidashi {
  background-color: var(--color-gray-ea);
  border-radius: 60px;
  display: block;
  font-size: 1.8rem;
  letter-spacing: var(--tracking-lg);
  line-height: var(--leading-tight);
  margin: 25px 0;
  padding: 15px;
  position: relative;
  text-align: center;
}
.safe-and-feature .b-contents .e-fukidashi::after {
  background-color: var(--color-gray-ea);
  bottom: -18px;
  clip-path: polygon(8px 0, 100% 0, 0 100%);
  content: "";
  display: block;
  height: 24px;
  position: absolute;
  right: 30px;
  width: 33px;
}
.safe-and-feature .b-contents img {
  width: 100%;
}

@media (min-width: 768px) {
  .safe-and-feature .b-contents .e-heading br {
    display: none;
  }
  .safe-and-feature .b-contents .e-lead {
    text-align: center;
  }
  .safe-and-feature .b-contents .-box {
    padding: 80px 80px 60px;
  }
  .safe-and-feature .b-contents .-inner__flexbox {
    align-items: flex-start;
    display: flex;
    gap: 60px;
  }
  .safe-and-feature .b-contents .-inner__flexbox .e-heading {
    text-align: left;
  }
  .safe-and-feature .b-contents .-inner__flexbox > div {
    display: flex;
    flex-direction: column;
    width: 50%;
  }
  .safe-and-feature .b-contents .-inner__flexbox img {
    max-width: calc(50% - 60px);
  }
  .safe-and-feature .b-contents .e-fukidashi {
    margin: 45px 0 0;
  }
  .safe-and-feature .b-contents .e-fukidashi::after {
    display: none;
  }
  .safe-and-feature .b-contents .e-fukidashi br {
    display: none;
  }
}

.safe-and-feature .b-contents .-sub-contents {
  background-color: var(--color-gray-ea);
  border-radius: 10px;
  margin-top: 35px;
  padding: 25px;
}
.safe-and-feature .b-contents .-sub-contents img {
  margin: 0 auto 25px;
  max-width: 80px;
}
.safe-and-feature .b-contents .-sub-contents p {
  letter-spacing: var(--tracking-lg);
}

@media (min-width: 768px) {
  .safe-and-feature .b-contents .-sub-contents {
    align-items: center;
    display: flex;
    gap: 40px;
    padding: 40px;
  }
  .safe-and-feature .b-contents .-sub-contents .e-heading {
    text-align: left;
  }
  .safe-and-feature .b-contents .-sub-contents img {
    margin: 0;
    max-width: 100%;
    width: 16.5%;
  }
}

.safe-and-feature .b-contents .-equip {
  margin-top: 50px;
  padding: 50px 0 0;
  position: relative;
}
.safe-and-feature .b-contents .-equip::before {
  background-color: #969696;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 80px;
}
.safe-and-feature .b-contents .-equip .e-heading {
  text-align: left;
}

.safe-and-feature .b-contents .-equip__list li {
  border: 1px solid var(--color-black-00);
  font-size: var(--font-size-sm);
  margin-top: 32px;
  padding: 40px 25px 30px;
  position: relative;
  text-align: justify;
}
.safe-and-feature .b-contents .-equip__list span {
  background-color: var(--color-white);
  left: 50%;
  padding: 0 30px 10px;
  position: absolute;
  text-align: center;
  top: -15px;
  transform: translateX(-50%);
}
.safe-and-feature .b-contents .-equip__list span::before {
  background-color: var(--color-black-00);
  bottom: 0;
  content: "";
  display: block;
  height: 1px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 23px;
}

@media (min-width: 768px) {
  .safe-and-feature .b-contents .-equip {
    margin-top: 80px;
    padding-top: 80px;
  }
  .safe-and-feature .b-contents .-equip::before {
    height: 4px;
  }
  .safe-and-feature .b-contents .-equip__list {
    display: flex;
    gap: 35px;
  }
  .safe-and-feature .b-contents .-equip__list li {
    margin-top: 67px;
    width: calc(100% / 3 - (70px / 3));
  }
}

.safe-and-feature .b-contents .-equip__list.m-img {
  column-gap: 16px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 0;
}
.safe-and-feature .b-contents .-equip__list.m-img li {
  border: none;
  margin-top: 40px;
  padding: 0;
  width: calc(50% - 8px);
}
.safe-and-feature .b-contents .-equip__list.m-img span {
  display: block;
  left: unset;
  margin-bottom: 20px;
  padding: 0 10px 5px;
  position: relative;
  top: unset;
  transform: unset;
}
.safe-and-feature .b-contents .-equip__list.m-img img {
  margin-bottom: 20px;
}
.safe-and-feature .e-saf__caption {
  margin: 1em 0;
}
.safe-and-feature .e-saf__button {
  width: 100%;
}

@media (min-width: 768px) {
  .safe-and-feature .b-contents .-equip__list.m-img {
    gap: 35px;
  }
  .safe-and-feature .b-contents .-equip__list.m-img li {
    width: calc(100% / 4 - (105px / 4));
  }
  .safe-and-feature .e-saf__button {
    margin-top: 140px;
  }
}

.safe-and-feature .b-contents .-equip .e-caption {
  font-size: var(--font-size-xs);
  letter-spacing: var(--tracking-sm);
  margin-top: 50px;
  text-align: justify;
}
.safe-and-feature .b-contents .-equip .e-caption br {
  display: block;
}

@media (max-width: 767px) {
  .safe-and-feature .b-contents br {
    display: none;
  }
}
/* responsive */
.m-sp {
  display: block;
}
.m-pc {
  display: none;
}
@media (min-width: 768px) {
  .m-sp {
    display: none;
  }
  .m-pc {
    display: block;
  }
}
