@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700&family=Zen+Kaku+Gothic+Antique:wght@500;700&display=swap");
.star {
  fill: gold;
  animation-duration: 0.8s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: cubic-bezier(0.4, 0, 0.6, 1);
}

.star-1 {
  animation-name: pulse1;
  animation-delay: 0.1s;
}

.star-2 {
  animation-name: pulse2;
  animation-delay: 0.2s;
}

.star-3 {
  animation-name: pulse3;
  animation-delay: 0.3s;
}

.star-4 {
  animation-name: pulse4;
  animation-delay: 0.4s;
}

.star-5 {
  animation-name: pulse5;
  animation-delay: 0.5s;
}

.star-6 {
  animation-name: pulse6;
  animation-delay: 0.6s;
}

.star-7 {
  animation-name: pulse7;
  animation-delay: 0.7s;
}

.star-8 {
  animation-name: pulse8;
  animation-delay: 0.8s;
}

.star-9 {
  animation-name: pulse9;
  animation-delay: 0.9s;
}

.star-10 {
  animation-name: pulse10;
  animation-delay: 1s;
}

.star-11 {
  animation-name: pulse11;
  animation-delay: 1.1s;
}

.star-12 {
  animation-name: pulse12;
  animation-delay: 1.2s;
}

.star-13 {
  animation-name: pulse13;
  animation-delay: 1.3s;
}

.star-14 {
  animation-name: pulse14;
  animation-delay: 1.4s;
}

.star-15 {
  animation-name: pulse15;
  animation-delay: 1.5s;
}

.star-16 {
  animation-name: pulse16;
  animation-delay: 1.6s;
}

@keyframes pulse1 {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
@keyframes pulse2 {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}
@keyframes pulse3 {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}
@keyframes pulse4 {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}
@keyframes pulse5 {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.12);
  }
}
@keyframes pulse6 {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}
@keyframes pulse7 {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.18);
  }
}
@keyframes pulse8 {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.07);
  }
}
@keyframes pulse9 {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.13);
  }
}
@keyframes pulse10 {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.16);
  }
}
@keyframes pulse11 {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.14);
  }
}
@keyframes pulse12 {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.09);
  }
}
@keyframes pulse13 {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.17);
  }
}
@keyframes pulse14 {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.11);
  }
}
@keyframes pulse15 {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.19);
  }
}
@keyframes pulse16 {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}
.pop-animetion-01 {
  animation: popEffect 0.5s ease-out;
}

@keyframes popEffect {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}
.delay-animation-01 {
  animation: delayEffect 0.5s ease-out;
}

@keyframes delayEffect {
  0% {
    /* transform: scale(0.8); */
    opacity: 0;
  }
  /* 50% {
    transform: scale(1.1);
  } */
  100% {
    /* transform: scale(1); */
    opacity: 1;
  }
}
.js-animate-pop-item {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.js-animate-pop-item.is-visible {
  opacity: 1;
  transform: scale(1);
}

html body {
  background-color: #fff;
}

:where(.p-heater *),
:where(.p-heater *)::before,
:where(.p-heater *)::after {
  box-sizing: border-box;
}

:where(.p-heater span) {
  font-weight: inherit;
}

h3 {
  position: initial;
  margin-bottom: initial;
  vertical-align: initial;
  font-weight: initial;
}
h3 span {
  display: initial;
  color: inherit;
  font-size: inherit;
  font-weight: initial;
  line-height: inherit;
  vertical-align: initial;
}

.p-heater {
  color: #382712;
  letter-spacing: 0;
  line-height: 1.5;
}
.p-heater :where(*) {
  font-weight: inherit;
}
.p-heater :where(span) {
  font-weight: inherit;
}
@media print, screen and (min-width: 768px) {
  .p-heater :where(.sp) {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .p-heater :where(.pc) {
    display: none;
  }
}

.u-hidden-pc {
  display: none;
}

@media screen and (max-width: 767px) {
  .u-hidden-pc {
    display: block;
  }
}
.u-hidden-sp {
  display: none;
}

@media screen and (min-width: 768px) {
  .u-hidden-sp {
    display: block;
  }
}
.p-mv {
  background-color: #E6F5F1;
  padding: 40px 0 100px;
}

.p-mv__copy {
  position: relative;
}

.p-mv__container {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.p-mv__title {
  position: relative;
  z-index: 2;
}

.p-mv__deco--left {
  position: absolute;
  top: 150px;
  left: 30px;
}

.p-mv__deco--right {
  position: absolute;
  top: 150px;
  right: 30px;
}

.p-mv__logo {
  display: block;
  margin-bottom: 12px;
}

.p-mv__subtitle {
  display: block;
  position: relative;
  z-index: 4;
}

.p-mv__subtitle--text01 {
  display: inline-block;
  /* animation-delay: 0s; */
}

.p-mv__subtitle--text02 {
  display: inline-block;
  position: relative;
  top: -27px;
  /* animation-delay: 0.5s; */
}

.p-mv__subtitle--text03 {
  display: inline-block;
  animation-delay: 1s;
  /* padding-bottom: 4px; */
}

.p-mv__logo img,
.p-mv__subtitle img {
  max-width: 100%;
  height: auto;
}

.p-mv__image {
  position: relative;
  z-index: 1;
  top: 30%;
  bottom: 0;
}

.p-mv__image img {
  max-width: 100%;
  height: auto;
}

.p-mv__image--left {
  position: relative;
  left: 0;
}

.p-mv__image--left--01 {
  position: absolute;
  top: 260px;
  left: 80px;
}

.p-mv__image--left--02 {
  position: absolute;
  top: 224px;
  left: 147px;
}

.p-mv__image--left--03 {
  position: absolute;
  top: 355px;
  left: 144px;
}

.p-mv__image--left--04 {
  position: absolute;
  top: 428px;
  left: 250px;
}

.p-mv__image--left--05 {
  position: absolute;
  top: 405px;
  left: 290px;
}

.p-mv__image--left--06 {
  position: absolute;
  top: 552px;
  left: 118px;
}

.p-mv__image--left--07 {
  position: absolute;
  top: 576px;
  left: 209px;
}

.p-mv__image--left--08 {
  position: absolute;
  top: 411px;
  left: 366px;
}

.p-mv__image--left--09 {
  position: absolute;
  top: 299px;
  left: 481px;
}

.p-mv__image--right {
  position: relative;
  top: -330px;
  right: 0;
}

.p-mv__image--right--01 {
  position: absolute;
  right: 119px;
  top: -110px;
}

.p-mv__image--right--02 {
  position: absolute;
  right: 113px;
  top: -62px;
}

.p-mv__image--right--03 {
  position: absolute;
  right: 94px;
  top: 50px;
}

.p-mv__image--right--04 {
  position: absolute;
  right: 34px;
  top: -51px;
}

.p-mv__image--right--05 {
  position: absolute;
  top: 125px;
  right: 356px;
}

.p-mv__image--right--06 {
  position: absolute;
  top: 85px;
  right: 9px;
}

.p-mv__image--right--07 {
  position: absolute;
  top: 118px;
  right: 277px;
}

.p-mv__image--right--08 {
  position: absolute;
  right: 232px;
  top: 300px;
}

.p-mv__image--right--09 {
  position: absolute;
  right: 176px;
  top: 268px;
}

.p-mv__description {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.04em;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 10px;
}

.p-mv__description::before,
.p-mv__description::after {
  content: "";
  width: 20px;
  height: 2px;
  background-color: #000;
}

.p-mv__description::before {
  margin-right: 14px;
  transform: rotate(60deg);
}

.p-mv__description::after {
  margin-left: 14px;
  transform: rotate(-60deg);
}

.p-mv__image--sp {
  display: none;
}

.p-mv__visual {
  position: relative;
  width: 100%;
  height: 170px;
}

.p-mv__visual img {
  position: absolute;
  object-fit: contain;
}

.p-mv__visual--balloon01 {
  z-index: 2;
  top: -32%;
  left: 6%;
  animation: float 3s ease-in-out infinite;
}

.p-mv__visual--balloon02 {
  z-index: 2;
  top: 8%;
  left: 23%;
  animation: float 3.5s ease-in-out infinite;
}

.p-mv__visual--character {
  z-index: 1;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.p-mv__visual--balloon03 {
  z-index: 2;
  top: 7%;
  right: 23%;
  animation: float 4s ease-in-out infinite;
}

.p-mv__visual--balloon04 {
  z-index: 2;
  top: -25%;
  right: 9%;
  animation: float 3.2s ease-in-out infinite;
}

.p-mv__txt {
  width: fit-content;
  margin: 10px auto 0;
  padding: 0 20px;
  position: relative;
  color: #000;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-mv__txt {
    margin-top: 11px;
    padding: 0 10px;
    font-size: 18px;
    line-height: 1.4444444444;
  }
}
.p-mv__txt::before, .p-mv__txt::after {
  content: "";
  width: 2px;
  height: 1em;
  position: absolute;
  top: 55%;
  background-color: currentColor;
}
@media screen and (max-width: 767px) {
  .p-mv__txt::before, .p-mv__txt::after {
    content: none;
  }
}
.p-mv__txt::before {
  left: 5px;
  transform: translateY(-50%) rotate(-30deg);
}
.p-mv__txt::after {
  right: 5px;
  transform: translateY(-50%) rotate(30deg);
}
.p-mv__link {
  margin-top: 11px;
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-mv__link {
    margin-top: 19px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.p-mv__item {
  max-width: 300px;
  width: 90%;
}
@media screen and (max-width: 767px) {
  .p-mv__item {
    max-width: 300px;
  }
}
.p-mv__item a {
  height: 58px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
}
@media print, screen and (min-width: 768px) {
  .p-mv__item a {
    cursor: pointer;
    transition: opacity 0.3s;
  }
  .p-mv__item a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__item a {
    height: 46px;
    font-size: 14px;
  }
}
.p-mv__item--line a {
  background-color: #06C755;
}
.p-mv__item--mail a {
  background-color: #E74C3C;
}
.p-mv__item-free {
  margin-right: 4px;
  border-radius: 4px;
  padding: 1px 8px;
  color: #E74C3C;
  font-size: 14px;
  font-weight: 700;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-mv__item-free {
    margin-right: 9px;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@media (max-width: 767px) {
  .p-mv {
    padding: 33px 0 31px;
  }
  .p-mv__logo {
    width: 324px;
    margin: auto auto 8px;
  }
  .p-mv__container {
    max-width: 375px;
    margin-inline: auto;
  }
  .p-mv__title {
    pointer-events: none;
  }
  .p-mv__subtitle {
    width: 285px;
    margin: auto;
    padding-left: 13px;
  }
  .p-mv__image--left {
    top: 0;
    left: 0;
  }
  .p-mv__image--left--01 {
    top: 120px;
    left: 14px;
    width: 39px;
    height: auto;
  }
  .p-mv__image--left--02 {
    width: 16px;
    height: 16px;
    top: 105px;
    left: 42px;
  }
  .p-mv__image--left--03 {
    width: 16px;
    height: auto;
    top: 158px;
    left: 40px;
  }
  .p-mv__image--left--04 {
    width: 13px;
    height: auto;
    top: 200px;
    left: 84px;
  }
  .p-mv__image--left--05 {
    width: 19px;
    height: auto;
    top: 192px;
    left: 100px;
  }
  .p-mv__image--left--06 {
    width: 25px;
    height: auto;
    top: 252px;
    left: 30px;
  }
  .p-mv__image--left--07 {
    width: 13px;
    height: auto;
    top: 261px;
    left: 67px;
  }
  .p-mv__image--left--08 {
    width: 15px;
    height: auto;
    top: 194px;
    left: 131px;
  }
  .p-mv__image--right {
    top: 0;
    right: 0;
  }
  .p-mv__image--right--01 {
    width: 18px;
    height: 17px;
    top: -166px;
    right: 36px;
  }
  .p-mv__image--right--02 {
    width: 29px;
    height: auto;
    top: -160px;
    right: 15px;
  }
  .p-mv__image--right--03 {
    right: 3px;
    top: -124px;
    width: 13px;
    height: auto;
    display: none;
  }
  .p-mv__image--right--05 {
    width: 15px;
    height: auto;
    top: -82px;
    right: 114px;
  }
  .p-mv__image--right--07 {
    width: 16px;
    height: auto;
    top: -86px;
    right: 82px;
  }
  .p-mv__image--right--08 {
    width: 14px;
    height: auto;
    top: -11px;
    right: 63px;
  }
  .p-mv__image--right--09 {
    width: 22px;
    height: auto;
    top: -24px;
    right: 40px;
  }
  .p-mv__image--sp {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
  }
  .p-mv__image--sp--right {
    position: relative;
    top: 10px;
    left: -6px;
  }
  .p-mv__description {
    margin-bottom: 0;
  }
  .p-mv__description::before,
  .p-mv__description::after {
    display: none;
  }
  .p-mv__visual {
    height: 85px;
    margin-top: -6px;
  }
  .p-mv__visual--balloon01 {
    max-width: 73px;
    top: -7%;
    left: 1%;
  }
  .p-mv__visual--balloon02 {
    max-width: 70px;
    top: 23%;
    left: 21%;
  }
  .p-mv__visual--character {
    max-width: 82px;
    bottom: 0;
    left: 52%;
    transform: translateX(-50%);
  }
  .p-mv__visual--balloon03 {
    max-width: 70px;
    top: 24%;
    right: 18%;
  }
  .p-mv__visual--balloon04 {
    max-width: 62px;
    top: -2%;
    right: 1%;
  }
  .p-mv__subtitle--text02 {
    top: 0;
    margin-top: -11px;
  }
}
.c-bubble {
  display: inline-block;
  position: relative;
  background: #ffffff;
  border: 3px solid #333;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .c-bubble {
    padding: 20px 16px;
    margin: 16px 0 0;
  }
}
.p-solution {
  padding: 92px 0 100px;
  background-color: #fff;
}

.p-solution__inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 15px;
}

.p-solution__header {
  margin-bottom: 30px;
}

.p-solution__title {
  font-size: 28px;
  color: #333;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.p-solution__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: #009B73;
}

.p-solution__list {
  margin-top: 8px;
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  /* justify-content: space-between; */
  list-style: none;
  width: 100%;
  padding: 0;
  padding-left: 45px;
  margin-bottom: 38px;
}

.p-solution__list-item {
  text-align: center;
  position: relative;
  padding: 17px;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  margin: 16px 23px;
}
.p-solution__list-item strong {
  color: #009B73;
}

/* .p-solution__list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: $color_01;
  font-weight: bold;
} */
.p-solution__image {
  padding-left: 40px;
  position: relative;
  line-height: 0;
  text-align: center;
  /* margin-bottom: 30px; */
}

.p-solution__image img {
  max-width: 100%;
  height: auto;
  /* border-radius: 8px; */
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
}

@media (min-width: 768px) {
  .p-solution__list-item {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  .p-solution__list-item::after {
    content: "";
    width: 30px;
    height: 28px;
    top: 100%;
    position: absolute;
    background: url(../img/water-heater/img_solution_edge.png) no-repeat center/100% 100%;
  }
  /* .p-solution__list-item:last-child {
    position: absolute;
    bottom: -240px;
    right: -10px;
  } */
}
@media (min-width: 768px) and (min-width: 1400px) {
  .p-solution__list-item::after {
    width: 36px;
    height: 32px;
  }
}
@media (min-width: 768px) {
  .p-solution__list-item.is-visible {
    opacity: 1;
    transform: scale(1);
  }
  .p-solution__list-item:first-child {
    min-width: 325px;
  }
  .p-solution__list-item:first-child::after {
    right: 20px;
  }
  .p-solution__list-item:nth-child(2) {
    min-width: 298px;
    position: relative;
    right: 0;
    top: 17px;
  }
  .p-solution__list-item:nth-child(2)::after {
    left: 22%;
    transform: rotateY(180deg);
  }
  .p-solution__list-item:nth-child(3) {
    min-width: 266px;
    position: absolute;
    left: 0;
    top: 105px;
  }
  .p-solution__list-item:nth-child(3)::after {
    right: 15px;
  }
  .p-solution__list-item:nth-child(4) {
    min-width: 216px;
    padding: 12px;
    position: absolute;
    top: 123px;
    right: 0px;
  }
  .p-solution__list-item:nth-child(4)::after {
    left: 11%;
    transform: rotateY(180deg);
  }
  .p-solution__list-item:nth-child(5) {
    position: absolute;
    left: -64px;
    top: 54px;
  }
  .p-solution__list-item:nth-child(6) {
    position: absolute;
    bottom: -210px;
    left: 0px;
  }
}
@media (max-width: 767px) {
  .p-solution {
    padding: 50px 0;
  }
  .p-solution__title {
    font-size: 24px;
  }
  .p-solution__list {
    margin-top: 18px;
    margin-bottom: 30px;
    padding-left: 0;
    gap: 16px;
  }
  .p-solution__list-item {
    width: 100%;
    margin: 0;
    padding: 21px 17px;
    text-align: left;
    font-size: 14px;
  }
  .p-solution__image {
    width: 240px;
    margin-inline: auto;
    padding-left: 0;
  }
}
.p-goodtimes__good {
  background-color: #E6F5F1;
}

.p-subsidy {
  background-color: #fff;
}

/* .p-subsidy .p-goodtimes__inner {
  padding-bottom: 0;
} */
.p-subsidy__header {
  margin-bottom: 30px;
}

.p-subsidy__character {
  display: block;
  text-align: center;
  width: 100%;
  margin-top: 60px;
}

.p-subsidy__title {
  font-size: 28px;
  color: #333;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.p-subsidy__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: #009B73;
}

.p-subsidy__content {
  max-width: 100%;
  width: 880px;
  margin: 0 auto 40px;
}

.p-subsidy__text {
  font-size: 18px;
  line-height: 1.8;
}

.p-subsidy__timeline {
  display: flex;
  justify-content: center;
  /* margin-bottom: 40px; */
  padding-top: 20px;
}

.p-subsidy__bot {
  margin-top: 13px;
  font-size: 20.67px;
  line-height: 1.3594581519;
  font-weight: 500;
  text-align: center;
}
.p-subsidy__bot a {
  color: #009B73;
  text-decoration: underline;
}
@media print, screen and (min-width: 768px) {
  .p-subsidy__bot a {
    cursor: pointer;
    transition: opacity 0.3s;
  }
  .p-subsidy__bot a:hover {
    opacity: 0.7;
  }
}

@media (max-width: 767px) {
  .p-subsidy__content {
    margin-bottom: 0;
  }
  .p-subsidy__text {
    font-size: 15px;
  }
  .p-subsidy__timeline {
    padding-top: 0;
  }
  .p-subsidy__timeline::before {
    display: none;
  }
  .p-subsidy__bot {
    margin: 9px -5px 0;
    font-size: 11px;
    line-height: 1.7272727273;
  }
  .p-subsidy__bot a {
    font-size: 13px;
  }
}
.p-column {
  padding: 0 0 100px;
  background-color: #fff;
}

.p-column__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.p-column__header {
  margin-bottom: 30px;
}

.p-column__title {
  font-size: 24px;
  color: #333;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.p-column__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: #009B73;
}

.p-column__content {
  display: flex;
  gap: 32px;
  background-color: #fff;
  border-radius: 8px;
  /* padding: 30px; */
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
}

.p-column__image {
  flex: none;
}

.p-column__image img {
  border-radius: 8px;
  overflow: hidden;
}

.p-column__text {
  /*  */
  line-height: 1.8;
  /* color: #555; */
}

@media (max-width: 767px) {
  .p-column {
    padding: 40px 0;
  }
  .p-column__title {
    font-size: 22px;
  }
  .p-column__content {
    padding: 25px;
  }
}
@media (max-width: 767px) {
  .p-column {
    padding: 30px 0;
  }
  .p-column__title {
    font-size: 20px;
  }
  .p-column__content {
    display: block;
    padding: 0;
  }
  .p-column__image {
    text-align: center;
  }
  .p-column__text {
    margin-top: 16px;
  }
}
.p-intro {
  padding: 100px 0;
  /* background-color: #f9f9f9; */
}

.p-intro__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.p-intro__title {
  text-align: center;
  margin-bottom: 40px;
}

.p-intro__logo {
  max-width: 300px;
  height: auto;
}

.p-intro__content {
  /* background-color: #fff; */
  /* border-radius: 10px; */
  /* padding: 40px; */
  /* box-shadow: 0 2px 4px 0 rgba(185, 141, 74, .1); */
  max-width: 880px;
  margin-inline: auto;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
}

.p-intro__text {
  line-height: 1.8;
  /* color: #333; */
}

@media (max-width: 767px) {
  .p-intro {
    padding: 64px 0;
  }
  .p-intro__logo {
    max-width: 250px;
  }
  .p-intro__title {
    margin-bottom: 8px;
  }
  .p-intro__content {
    padding: 30px 0;
  }
}
@media (max-width: 767px) {
  .p-intro {
    padding: 30px 0;
  }
  .p-intro__logo {
    max-width: 200px;
  }
}
.p-features {
  padding: 120px 0 100px;
  background-color: #fff;
}

.p-features__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.p-features__header {
  text-align: center;
  margin-bottom: 50px;
}

.p-features__title {
  font-size: 32px;
  font-weight: bold;
  color: #333;
  line-height: 1.4;
  margin-bottom: 24px;
}

.p-features__title-image {
  max-width: 325px;
  height: auto;
  margin-right: 8px;
  vertical-align: top;
}

.p-features__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 24px;
  margin: 0 auto;
}

.p-features__content {
  padding: 24px 16px;
}

.p-features__item {
  display: flex;
  flex-direction: column;
  gap: 30px;
  box-shadow: 0 2px 4px 0 rgba(185, 141, 74, 0.1);
  border-top: 3px solid #009B73;
  border-radius: 8px;
}

.p-features__item--more {
  background-color: #fff9eb;
  width: 100%;
}

.p-features__item-image {
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 20px;
}

.p-features__item-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.p-features__item:nth-child(odd) {
  direction: rtl;
}

.p-features__item:nth-child(odd) > * {
  direction: ltr;
}

.p-features__point {
  position: relative;
  color: #009B73;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
  padding: 5px 10px 5px 16px;
  border-radius: 5px;
  margin-left: 0;
}

.p-features__point::before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  content: "";
  display: block;
  background-color: #009B73;
  width: 8px;
  height: 1px;
  margin: auto;
}

.p-features__point-icon {
  width: 50px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.p-features__item-title {
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  margin-top: 24px;
  margin-bottom: 30px;
}
.p-features__item-title strong {
  color: #009B73;
}

.p-features__item-description {
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .p-features {
    padding: 47px 0;
  }
  .p-features__title {
    font-size: 24px;
  }
  .p-features__title-image {
    max-width: 308px;
    margin-right: 3px;
    vertical-align: text-bottom;
  }
  .p-features__list {
    display: flex;
    flex-wrap: wrap;
  }
  .p-features__item {
    grid-template-columns: 1fr;
    flex-basis: 100%;
  }
  .p-features__item:nth-child(even) {
    direction: ltr;
  }
  .p-features__item-image {
    order: -1;
  }
  .p-features__content {
    padding: 0;
  }
  .p-features__item-title {
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 25px;
  }
  .p-features__cleaner-title {
    font-size: 24px;
  }
  .p-features__item {
    padding: 20px;
  }
  .p-features__point-icon {
    width: 46px;
    right: 10px;
  }
}
.fukidashi-01-01 {
  font-size: 12px;
  position: relative;
  top: 44px;
  left: 46px;
  color: #009B73;
  width: fit-content;
  padding: 12px 16px;
}

.fukidashi-01-01::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 100%;
  height: 50%;
  box-sizing: border-box;
  border: 2px solid #009B73;
  border-top: none;
  border-bottom-right-radius: 50px;
  /* 左下の角丸 */
  border-bottom-left-radius: 50px;
  /* 右下の角丸 */
  translate: -50%;
}

.fukidashi-01-01::after {
  content: "";
  position: absolute;
  top: calc(100% + 8px);
  /* フキダシのサイズに応じて調整してください */
  left: 50%;
  width: 30px;
  height: 2px;
  box-sizing: border-box;
  background-color: #009B73;
  box-shadow: 0 2px 0 #ffffff, 0 -2px 0 #ffffff;
  rotate: 50deg;
  translate: -50%;
}

.p-features__item--character img::before {
  content: "";
}

.p-features-details__item-title {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 24px;
}

.p-features-details__item-sub-title {
  position: relative;
  display: inline-block;
  color: #009B73;
  text-transform: uppercase;
  padding: 5px 10px 5px 16px;
  line-height: 1;
  border-radius: 5px;
  margin-bottom: 10px;
  margin-left: 0;
}

.p-features-details__item-sub-title::before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  content: "";
  display: block;
  background-color: #009B73;
  width: 8px;
  height: 1px;
  margin: auto;
}

.p-features-details__item-title--small {
  font-size: 16px;
  margin-left: 1rem;
}

.p-features-details__item-description--strong {
  /* color: $color_01; */
  font-weight: 700;
  margin-bottom: 16px;
}

.p-cleaners {
  background-color: #f5f5f5;
  padding: 100px 0;
}

.p-cleaners__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.p-cleaners__header {
  display: flex;
  justify-content: space-between;
  text-align: center;
  margin-bottom: 40px;
}

.p-cleaners .p-goodtimes__title {
  margin-bottom: 64px;
}

.p-cleaners .p-goodtimes__title::after {
  background-color: #003559;
}

.p-cleaners__title {
  font-size: 32px;
  font-weight: bold;
  color: #333;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  margin-bottom: 32px;
}

.p-cleaners__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #009B73;
}

.p-cleaners__title--sub {
  font-size: 20px;
  text-align: left;
  font-weight: 700;
  line-height: 2;
}

.p-cleaners__content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.p-cleaners__item {
  flex-basis: calc(33.333% - 20px);
  /* width: 48%; */
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px 0 rgba(185, 141, 74, 0.1);
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease; */
}

/* .p-cleaners__item:hover {
  transform: translateY(-5px);
} */
.p-cleaners__logo {
  display: flex;
  align-items: center;
  width: 45%;
}

.p-cleaners__image {
  width: 100%;
  height: auto;
  display: block;
}

.p-cleaners__text {
  width: 50%;
  line-height: 1.8;
  /* color: #666; */
  text-align: left;
  margin-bottom: 32px;
}

@media (max-width: 767px) {
  .p-features-details__item-title {
    font-size: 20px;
    margin-bottom: 18px;
  }
  .p-features-details__item-title--small {
    display: block;
    margin-left: 0;
  }
  .p-features-details__content {
    padding: 32px 24px;
    margin-top: 32px;
  }
  .p-cleaners__text {
    width: 100%;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .p-cleaners__item {
    flex-basis: calc(50% - 15px);
  }
}
@media (max-width: 767px) {
  .p-cleaners {
    padding: 40px 0;
  }
  .p-cleaners__title {
    font-size: 28px;
  }
  .p-cleaners__content {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .p-cleaners__title {
    font-size: 24px;
  }
  .p-cleaners__item {
    flex-basis: 100%;
  }
  .p-cleaners__header {
    display: flex;
    flex-wrap: wrap;
  }
  .p-cleaners__title--sub {
    font-size: 18px;
    line-height: 2;
    margin-bottom: 32px;
  }
  .p-cleaners__logo {
    width: 80%;
  }
}
.p-goodtimes__flow {
  background-color: #E6F5F1;
}
@media screen and (max-width: 767px) {
  .p-goodtimes__flow .p-goodtimes__title {
    margin-bottom: 34px;
  }
  .p-goodtimes__flow .p-goodtimes__title--sub {
    margin-bottom: 14px;
    font-size: 15px;
  }
}

.p-flow {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.p-flow__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.p-flow__header {
  text-align: center;
  margin-bottom: 50px;
}

.p-flow__title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
}

.p-flow__subtitle {
  color: #666;
}

.p-flow__content {
  counter-reset: flow-section;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.p-flow__item {
  flex-basis: calc(33.333% - 20px);
  background-color: #fff;
  box-shadow: 0 2px 4px 0 rgba(185, 141, 74, 0.1);
  border-radius: 8px;
  transition: transform 0.3s ease;
  position: relative;
}

@media print, screen and (min-width: 768px) {
  .p-flow__item:not(:last-child)::after {
    display: inline-block;
    content: "";
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid #009B73;
    transition: transform 0.3s ease;
  }
}
.p-flow__item-title {
  display: flex;
  align-items: center;
  color: #009B73;
  font-weight: 700;
  border-radius: 8px 8px 0 0;
  padding: 15px;
  font-size: 20px;
  text-align: left;
}

.p-flow__item-title::before {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  background-color: #009B73;
  color: #fff;
  counter-increment: flow-section;
  content: counter(flow-section);
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

.p-flow__item-image {
  /* display: none; */
  padding: 0 20px 20px;
  text-align: center;
}

.p-flow__item-img {
  max-width: 100%;
  height: auto;
}

.p-flow__item-description {
  padding: 0 20px 20px;
}

.p-flow__item-description p {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

.p-flow__note {
  margin-top: 32px;
  font-size: 14px;
  color: #666;
}

.p-flow-card {
  display: flex;
  justify-content: center;
  max-width: 680px;
  margin: 52px auto 0;
}

.p-flow-card__title {
  display: flex;
  align-items: center;
  background-color: #009B73;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  border-radius: 8px;
  padding: 22px 16px;
  margin-right: 24px;
}

.p-flow-list {
  list-style-type: none;
  padding: 0;
}

.p-flow-list__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  margin-bottom: 16px;
}

.p-flow-list__type {
  font-size: 18px;
  font-weight: 700;
  margin-right: 24px;
}

.p-flow-list__time {
  font-size: 18px;
}

/* Utility */
.p-flow-u-border-bottom {
  border-bottom: 1px solid var(--color-border);
}

/* Scope */
.p-flow-card--construction-time .p-flow-list__item:not(:last-child) {
  border-bottom: 1px solid var(--color-border);
}

.p-flow-list__note {
  display: block;
  text-align: center;
  font-size: 14px;
  color: #666;
}

@media (max-width: 767px) {
  .p-flow__item {
    flex-basis: calc(50% - 15px);
  }
  .p-flow-card {
    display: block;
    width: 100%;
    margin: 48px 0 0;
  }
  .p-flow-card__title {
    margin: 0 0 16px;
    padding: 9px 12px;
  }
  .p-flow-list__item {
    padding: 0 10px;
  }
  .p-flow-list__type, .p-flow-list__time {
    font-size: 16px;
  }
  .p-flow-list__note {
    margin-top: 20px;
  }
  .p-flow {
    padding: 40px 0;
  }
  .p-flow__title {
    font-size: 24px;
  }
  .p-flow__content {
    flex-direction: column;
    gap: 20px;
  }
  .p-flow__item {
    flex-basis: 100%;
  }
  .p-flow__item::after {
    top: auto;
    bottom: -25px;
    right: 50%;
    transform: translateX(50%) rotate(90deg);
  }
  .p-flow__item:hover::after {
    transform: translateX(50%) rotate(90deg) translateY(5px);
  }
  .p-flow__item:last-child::after {
    display: none;
  }
  .p-flow__item-image {
    display: none;
  }
  .p-flow__item-title {
    padding: 16px;
  }
  .p-flow__item-description p {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .p-goodtimes__faq .p-goodtimes__inner {
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-goodtimes__faq .p-goodtimes__title--sub {
    font-size: 15px;
    margin-bottom: 25px;
  }
}

.p-goodtimes__faq__list {
  margin-top: 38px;
}
@media screen and (max-width: 767px) {
  .p-goodtimes__faq__list {
    margin-top: 25px;
  }
}

.p-goodtimes__faq__item {
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .p-goodtimes__faq__item {
    margin-bottom: 12px;
  }
}

.p-goodtimes__faq__head {
  position: relative;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #009B73;
  padding: 20px 70px 20px 0;
  min-height: 85px;
  color: #009B73;
  cursor: pointer;
  width: 100%;
  text-align: left;
  box-shadow: 0 2px 4px rgba(185, 141, 74, 0.1);
}
@media screen and (max-width: 767px) {
  .p-goodtimes__faq__head {
    border-width: 2px;
    border-radius: 0;
    padding: 18px 60px 18px 0;
    min-height: 80px;
  }
}

.p-goodtimes__faq__head .p-goodtimes__faq__txt {
  padding-left: 58px;
  display: block;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-goodtimes__faq__head .p-goodtimes__faq__txt {
    padding-left: 61px;
    font-size: 15px;
    line-height: 1.44;
  }
}

.p-goodtimes__faq__head .p-goodtimes__faq__txt::before {
  position: absolute;
  top: 26px;
  left: 15px;
  content: "Q";
  border-radius: 30px;
  padding-bottom: 1px;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #009B73;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-goodtimes__faq__head .p-goodtimes__faq__txt::before {
    top: 19px;
    left: 13px;
    width: 40px;
    height: 40px;
    font-size: 22px;
  }
}

.p-goodtimes__faq__head .arrow {
  width: 35px;
  height: 35px;
  border: 2px solid #009B73;
  border-radius: 4px;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-goodtimes__faq__head .arrow {
    right: 15px;
  }
}
.p-goodtimes__faq__head .arrow::before, .p-goodtimes__faq__head .arrow::after {
  content: "";
  width: 20px;
  height: 3px;
  border-radius: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #009B73;
}
.p-goodtimes__faq__head .arrow::before {
  transition: transform 0.3s;
  transform: translate(-50%, -50%) rotate(90deg);
}

.p-goodtimes__faq__head.is-open .arrow::before {
  transform: translate(-50%, -50%);
}

.p-goodtimes__faq__body {
  position: relative;
  display: none;
}

.p-goodtimes__faq__body .p-goodtimes__faq__txt {
  padding: 20px 20px 20px 58px;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .p-goodtimes__faq__body .p-goodtimes__faq__txt {
    padding-left: 61px;
  }
}

.p-goodtimes__faq__body.is-open {
  padding: 20px;
  height: auto;
  opacity: 1;
}

.p-goodtimes__faq__body::before {
  position: absolute;
  top: 18px;
  left: 15px;
  content: "A";
  border-radius: 30px;
  padding-bottom: 1px;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFF140;
  color: #009B73;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.p-goodtimes__faq__body p {
  padding-left: 38px;
}

.p-service-menu {
  background-color: #E6F5F1;
}

@media screen and (max-width: 767px) {
  .p-service-menu .p-goodtimes__title {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 32px;
    line-height: 1.2;
  }
  .p-service-menu .p-goodtimes__title::after {
    content: none;
  }
}

@media screen and (max-width: 767px) {
  .p-service-menu .p-goodtimes__title--sub {
    margin-bottom: 12px;
  }
}

.p-service-menu__ttl {
  margin-top: 44px;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-service-menu__ttl {
    margin-top: 12px;
  }
}

.p-service-menu__content + .p-service-menu__ttl {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .p-service-menu__content + .p-service-menu__ttl {
    margin-top: 28px;
  }
}

.p-service-menu__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 950px;
  margin: 40px auto 0;
}
@media screen and (max-width: 767px) {
  .p-service-menu__content {
    margin-top: 18px;
    display: block;
    padding: 0;
  }
}

.p-service-menu__item {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 3px 0 rgba(185, 141, 74, 0.1);
}
@media screen and (max-width: 767px) {
  .p-service-menu__item {
    margin-bottom: 20px;
  }
}

#animated-text-1,
#animated-text-2 {
  display: inline-block;
}

#animated-text-1 span,
#animated-text-2 span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px) scale(0.5);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.js-animate-on-scroll {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.js-animate-on-scroll.is-visible {
  opacity: 1;
}

.p-column-three {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.p-column-three__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.p-column-three__header {
  text-align: center;
  margin-bottom: 50px;
}

.p-column-three__title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
}

.p-column-three__subtitle {
  color: #666;
}

.p-column-three__content {
  counter-reset: flow-section;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.p-column-three__item {
  flex-basis: calc(33.333% - 20px);
  background-color: #fff;
  box-shadow: 0 2px 4px 0 rgba(185, 141, 74, 0.1);
  border-radius: 8px;
  transition: transform 0.3s ease;
  position: relative;
}

/* .p-column-three__item:not(:last-child)::after {
  display: inline-block;
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid $color_01;
  transition: transform 0.3s ease;
} */
.p-column-three__item-title {
  display: flex;
  align-items: center;
  background-color: #009B73;
  color: #fff;
  font-weight: 700;
  border-radius: 24px;
  padding: 8px 24px;
  font-size: 20px;
  text-align: left;
  margin: 16px;
}

.p-column-three__item-title::after {
  position: absolute;
  top: 3px;
  right: 14px;
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../img/water-heater/icon_or_mark.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 60px;
  height: 60px;
  margin-right: 8px;
}
@media screen and (max-width: 767px) {
  .p-column-three__item-title::after {
    top: 10px;
    right: 10px;
  }
}

.p-column-three__item-title02 {
  color: #009B73;
  font-weight: 700;
  border-radius: 24px;
  padding: 8px 24px;
  font-size: 20px;
  text-align: left;
  margin: 16px 0;
}

.p-column-three__item-image {
  padding: 0 20px 20px;
  text-align: center;
}

.p-column-three__item-img {
  max-width: 100%;
  height: auto;
}

.p-column-three__item-description {
  padding: 0 20px 20px;
}

.p-column-three__item-description p {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

.p-column-three__note {
  margin-top: 32px;
  font-size: 14px;
  color: #666;
}

.p-column-three-card {
  display: flex;
  justify-content: center;
  max-width: 680px;
  margin: 56px auto 0;
}

.p-column-three-card__title {
  display: flex;
  align-items: center;
  background-color: #009B73;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  border-radius: 8px;
  padding: 8px 16px;
  margin-right: 24px;
}

.p-column-three-list {
  list-style-type: none;
  padding: 0;
}

.p-column-three-list__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  margin-bottom: 16px;
}

.p-column-three-list__type {
  margin-right: 24px;
}

/* Utility */
.p-column-three-u-border-bottom {
  border-bottom: 1px solid var(--color-border);
}

/* Scope */
.p-column-three-card--construction-time .p-column-three-list__item:not(:last-child) {
  border-bottom: 1px solid var(--color-border);
}

.p-column-three__closong {
  text-align: center;
  color: #009B73;
  font-size: 24px;
  font-weight: 700;
  margin-top: 54px;
}
@media screen and (max-width: 767px) {
  .p-column-three__closong {
    margin-top: 33px;
  }
}

@media (max-width: 767px) {
  .p-column-three__item {
    flex-basis: calc(50% - 15px);
  }
  .p-column-three__item:nth-child(2n)::after {
    display: none;
  }
}
@media (max-width: 767px) {
  .p-column-three {
    padding: 40px 0;
  }
  .p-column-three__title {
    font-size: 28px;
  }
  .p-column-three__content {
    flex-direction: column;
    gap: 20px;
  }
  .p-column-three__item {
    flex-basis: 100%;
  }
  .p-column-three__item::after {
    top: auto;
    bottom: -25px;
    right: 50%;
    transform: translateX(50%) rotate(90deg);
  }
  .p-column-three__item:hover::after {
    transform: translateX(50%) rotate(90deg) translateY(5px);
  }
  .p-column-three__item:last-child::after {
    display: none;
  }
}
@media (max-width: 767px) {
  .p-column-three__title {
    font-size: 24px;
  }
  .p-column-three__item-description p {
    font-size: 14px;
  }
}
.p-column__list {
  margin-top: 60px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.p-column__list .item {
  box-shadow: 0 4px 0 0 #E8DDC6;
  width: 300px;
  border-radius: 20px;
  background: #fff;
}

.p-column__list .photo img {
  width: 100%;
  height: 200px;
  border-radius: 20px 20px 0 0;
  object-fit: cover;
}

.p-column__list .info {
  gap: 20px;
  justify-content: flex-start;
  padding: 10px 18px 0 28px;
  display: flex;
}

.p-column__list h1 {
  position: absolute;
  left: 120px;
  top: 0;
  padding-bottom: 60px;
  line-height: 52px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  width: 52px;
  background: url("../img/water-heater/icon-book.png") no-repeat center bottom;
  background-size: 52px auto;
}

.p-column__list .label {
  padding: 0 20px 10px 0;
  border-right: 1px solid #E8DDC6;
  flex-shrink: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

.p-column__list .label p {
  font-weight: 700;
}

.p-column__list .year {
  font-size: 16px;
  line-height: 16px;
}

.p-column__list .month {
  font-size: 18px;
  line-height: 16px;
}

.p-column__list .day {
  font-size: 34px;
  line-height: 34px;
}

.p-column__list h2 {
  padding-top: 4px;
  max-height: 65px;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
  letter-spacing: normal;
  font-size: 16px;
  font-weight: 700;
}

.p-column__more {
  margin-top: 71px;
  display: flex;
  justify-content: center;
}

.p-column__more a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 58px;
  width: 100%;
  max-width: 300px;
  background: #009B73;
  border-radius: 5px;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

.p-column__more a::after {
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  background: url("../img/water-heater/arrow2.png") no-repeat center center;
  width: 10px;
  height: 8px;
  background-size: 8px 10px;
  display: block;
}

@media (max-width: 767px) {
  .p-column__list {
    flex-direction: column;
    align-items: center;
  }
  .p-column__more {
    margin-top: 50px;
  }
  .p-column__more a {
    width: 90%;
    font-size: 16px;
  }
}
@media screen and (min-width: 480px) {
  .p-column__more a {
    transition: 0.25s all;
  }
  .p-column__more a:hover {
    opacity: 0.6;
  }
}
.p-goodtimes {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  padding-bottom: 48px;
}

.p-goodtimes__inner {
  box-sizing: border-box;
  width: 100%;
  max-width: 1000px;
  padding-top: 100px;
  padding-bottom: 90px;
  padding-inline: 15px;
  margin-inline: auto;
}

.p-goodtimes__title {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  text-align: center;
  position: relative;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .p-goodtimes__title {
    font-size: 20px;
  }
  .p-goodtimes__inner {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}
.p-goodtimes__title::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: #009B73;
}

.p-goodtimes__title--sub {
  font-size: 18px;
  text-align: center;
  margin-bottom: 35px;
}

@media screen and (max-width: 767px) {
  .p-goodtimes__title--sub {
    font-size: 16px;
    line-height: 1.6;
  }
}
.p-goodtimes__lead {
  line-height: 1.6;
  margin-bottom: 40px;
}

.p-goodtimes__caption {
  line-height: 1.6;
  text-align: center;
  margin-bottom: 56px;
}

.p-goodtimes__marker {
  display: inline;
  background: linear-gradient(transparent 50%, #f7ee00 50%);
  font-weight: 700;
  color: #009B73;
  margin-bottom: 8px;
}

.p-goodtimes__link {
  position: relative;
  display: inline-flex;
  background-color: #009B73;
  color: #fff;
  transition: all ease 0.5s;
  box-sizing: border-box;
  border-radius: 32px;
  font-size: 14px;
  width: 240px;
  padding: 12px 32px 14px;
  margin-inline: 8px;
}

@media screen and (max-width: 767px) {
  .p-goodtimes__link {
    box-sizing: border-box;
    width: 100%;
    margin-inline: 0;
  }
}
.p-goodtimes__link:hover {
  background-color: #d4561c;
}

.p-goodtimes__link:hover .p-goodtimes__arrow {
  right: 18px;
}

.p-goodtimes__arrow {
  display: inline-block;
  position: absolute;
  transform: rotate(45deg);
  transition: all ease 0.5s;
  right: 24px;
  top: 0;
  bottom: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  width: 8px;
  height: 8px;
  margin: auto;
}

.p-contact {
  padding: 100px 0;
  background-color: #E6F5F1;
}
@media screen and (max-width: 767px) {
  .p-contact {
		margin-top: -60px;
    padding: 60px 0 70px;
  }
}
.p-contact__wrap {
  max-width: 980px;
  margin: 0 auto;
}
.p-contact__block {
  border-radius: 15px;
  padding: 113px 15px 100px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-contact__block {
    border-radius: 0;
    padding-top: 28px;
    padding-bottom: 55px;
  }
}
.p-contact__catch {
  font-size: 24px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact__catch {
    font-size: 21px;
    line-height: 1.380952381;
  }
}
.p-contact__ttl {
  margin-top: 96px;
  padding-bottom: 21px;
  position: relative;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact__ttl {
    margin-top: 34px;
    padding-bottom: 11px;
  }
}
.p-contact__ttl::after {
  content: "";
  width: 50px;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #009B73;
}
.p-contact__txt {
  margin-top: 23px;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact__txt {
    margin-top: 14px;
  }
}
.p-contact__form {
  max-width: 760px;
  margin: 34px auto 0;
}
@media screen and (max-width: 767px) {
  .p-contact__form {
    margin-top: 14px;
  }
}
.p-contact__table {
  width: 100%;
  box-shadow: 0 2px 4px rgba(185, 141, 74, 0.1);
}
.p-contact__table th {
  width: 30%;
  border-bottom: 1px solid #fff;
  padding: 16px 50px 16px 16px;
  position: relative;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  vertical-align: middle;
  background-color: #E6F5F1;
}
@media screen and (max-width: 767px) {
  .p-contact__table th {
    width: 100%;
    display: block;
    padding: 10px 55px 10px 16px;
  }
}
.p-contact__table th span {
  border-radius: 3px;
  padding: 2px 5px 3px;
  margin-left: auto;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  color: #fff;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .p-contact__table th span {
    padding: 2px 6px 3px;
    right: 18px;
  }
}
.p-contact__table th .required {
  background-color: #E74C3C;
}
.p-contact__table th .optional {
  background-color: #0098D8;
}
.p-contact__table td {
  border: 1px solid #F2F2F2;
}
@media screen and (max-width: 767px) {
  .p-contact__table td {
    display: block;
  }
}
.p-contact__table td .inner {
  padding: 15px 15px 12px;
}
@media screen and (max-width: 767px) {
  .p-contact__table td .inner {
    padding-bottom: 14px;
  }
}
.p-contact__table td input, .p-contact__table td select, .p-contact__table td textarea {
  border: none;
  padding: 0 9px;
  background-color: #F2F2F2;
}
.p-contact__table td input, .p-contact__table td textarea {
  width: 100%;
  border-radius: 4px;
  font-size: 14px;
}
.p-contact__table td input {
  height: 43px;
}
.p-contact__table td select {
  min-width: 139px;
  height: 27px;
  color: #000;
  font-size: 13.3px;
}
.p-contact__table td textarea {
  padding: 9px;
  resize: vertical;
}
@media screen and (max-width: 767px) {
  .p-contact__table td textarea {
    height: 241px;
  }
}
.p-contact__table td .example {
  margin-top: 11px;
  color: #888;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-contact__table td .example {
    margin-top: 7px;
  }
}
.p-contact__table td .error {
  margin-top: 11px;
  color: #f00;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0;
}
.p-contact__btn {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}
.p-contact__submit {
  width: 90%;
  max-width: 340px;
  height: 56px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-contact__submit {
    max-width: 220px;
  }
}
.p-contact__submit::before, .p-contact__submit::after {
  pointer-events: none;
  z-index: 1;
  content: "";
  position: absolute;
  top: 50%;
}
.p-contact__submit::before {
  width: 18px;
  height: 18px;
  border-radius: 18px;
  background-color: #fff;
  right: 16px;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-contact__submit::before {
    right: 48px;
  }
}
.p-contact__submit::after {
  width: 7px;
  height: 7px;
  border-top: solid 1px #eb6120;
  border-right: solid 1px #eb6120;
  transform: translateY(-50%) rotate(45deg);
  right: 23px;
}
@media screen and (max-width: 767px) {
  .p-contact__submit::after {
    right: 55px;
  }
}
.p-contact__submit input {
  width: 100%;
  height: 100%;
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  background-color: #E74C3C;
}
@media print, screen and (min-width: 768px) {
  .p-contact__submit input {
    cursor: pointer;
    transition: opacity 0.3s;
  }
  .p-contact__submit input:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .p-contact__submit input {
    padding-right: 35px;
  }
}
