@charset "UTF-8";
/*
 * 参考
 * https: //github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

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

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https: //css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https: //webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.7316017316vw;
  }
}
@media (min-width: 924px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 400;
  color: #262626;
  background-image: url(../images/top/bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

/*  PCとSPの表示非表示の切り替え */
/*(md)px以上で表示*/
.pc-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-only {
    display: block;
  }
}

/*モバイルのみ表示*/
@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
}
.none_space {
  margin-left: -0.5em;
}
.page-column {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .page-column {
    padding-top: 0.75rem;
    padding-bottom: 8.5625rem;
  }
}

.l-header {
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
}

.l-inner {
  width: 100%;
  padding-right: 45px;
  padding-left: 45px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    padding-right: 25px;
    padding-left: 25px;
    max-width: 974px;
  }
}

.l-pager {
  margin-top: 2rem;
}

.l-post-connect {
  margin-top: 1rem;
}

.c-breadcrumb {
  padding: 1rem 0;
  text-align: left;
}

.c-breadcrumb a {
  color: #89c1bd;
}

.c-title {
  font-size: 1.5rem;
  color: black;
}
@media screen and (min-width: 768px) {
  .c-title {
    color: red;
  }
}
@media screen and (min-width: 1000px) {
  .c-title {
    color: blue;
  }
}
@media screen and (min-width: 1200px) {
  .c-title {
    color: green;
  }
}

.more-btn {
  padding: 0.3125rem 2.6875rem;
  display: inline-block;
  font-size: 1.0625rem;
  letter-spacing: 0.8px;
  color: #fff;
  line-height: 2;
  letter-spacing: 0.1em;
  background-color: #a4bc7d;
  box-shadow: 0 0.3125rem 0 #7f9262;
  transition: 0.2s;
}

@media screen and (min-width: 768px) {
  .more-btn:hover {
    opacity: 1;
    box-shadow: none;
    transform: translateY(0.3125rem);
  }
}

.more-btn--post {
  background-color: #e98d04;
  box-shadow: 0 0.25rem 0 #dbdbdb;
  border-radius: 2.9375rem;
  padding: 0 3.9375rem;
  font-size: 1.125rem;
  line-height: 2.8888888889;
}
@media screen and (min-width: 768px) {
  .more-btn--post {
    font-size: 1.75rem;
    line-height: 2.4642857143;
  }
}

.aircon-flow {
  padding-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .aircon-flow {
    padding-bottom: 5.25rem;
  }
}

.anchor--price {
  margin-top: -6.25rem;
  padding-top: 6.25rem;
}

.area-list {
  margin-top: 0.625rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .area-list {
    margin-top: 1.6875rem;
    max-width: 41rem;
  }
}

.area-list__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 1rem;
  -moz-column-gap: 1.125rem;
  column-gap: 1.125rem;
}
@media screen and (min-width: 768px) {
  .area-list__items {
    grid-template-columns: repeat(4, 1fr);
  }
}

.area-list__item {
  padding: 0rem 1.875rem;
  background-color: #89c1bd;
  font-size: 1.25rem;
  line-height: 2.4;
  color: #fff;
  letter-spacing: 0.1px;
  border-radius: 10px;
  text-align: center;
}

.area {
  padding-bottom: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .area {
    padding-bottom: 4rem;
  }
}

.area__inner {
  padding-right: 2.125rem;
  padding-left: 2.125rem;
}

.area__text {
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 1.15px;
  margin-top: 0.9375rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .area__text {
    margin-top: 2.6875rem;
  }
}

.area__btn {
  margin-top: 1.75rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .area__btn {
    margin-top: 2.9375rem;
  }
}

.column-list {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
}

.column-list--notice {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .column-list--notice {
    max-width: 53.75rem;
    margin-inline: auto;
  }
}

.column-list__item a {
  padding: 0.625rem 0;
  display: block;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .column-list__item a {
    display: flex;
    align-items: center;
  }
}

.column-list__item--notice a {
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  padding: 2.3125rem 0 1.75rem 0;
}
@media screen and (min-width: 768px) {
  .column-list__item--notice a {
    padding: 3.0625rem 0 4.125rem 0;
  }
}

.column-list__item-meta {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .column-list__item-meta {
    margin-right: 1.875rem;
  }
}

.column-list__item-date {
  font-size: 0.6875rem;
  line-height: 1;
  white-space: nowrap;
}

.column-list__item-category {
  margin-left: 2.5rem;
  padding: 0.3125rem;
  min-width: 5rem;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.75rem;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .column-list__item-category {
    margin-left: 1.875rem;
  }
}

.column-list__item-title {
  font-size: 0.75rem;
  line-height: 1.5;
  flex-grow: 1;
}

.column-list__item-title--notice {
  margin-top: 1rem;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .column-list__item-title--notice {
    font-size: 1.25rem;
  }
}

.column-list__item-excerpt {
  font-size: 0.9375rem;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .column-list__item-excerpt {
    margin-top: 1.875rem;
    font-size: 1rem;
    line-height: 1;
  }
}

.column {
  padding-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .column {
    padding-bottom: 3rem;
  }
}

.column__wrapper {
  width: 100%;
  background-color: #fff;
  padding-left: 1.5rem;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .column__wrapper {
    margin-top: 2.75rem;
    padding-left: 4.625rem;
    max-width: 48.1875rem;
    margin-inline: auto;
  }
}

.column__btn {
  text-align: center;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .column__btn {
    margin-top: 3.375rem;
  }
}

.company-profile {
  max-width: 100%;
  margin-top: 2.5rem;
  padding-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .company-profile {
    margin-inline: auto;
    margin-top: 6.8125rem;
    max-width: 39rem;
    padding-bottom: 2.5rem;
  }
}

.company-profile__inner {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media screen and (min-width: 768px) {
  .company-profile__inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.company-profile__list {
  padding-bottom: 0.9375rem;
  padding-left: 1.5625rem;
  display: flex;
  font-size: 1rem;
  line-height: 1.3;
  letter-spacing: 0.08em;
  border-bottom: 1px solid #b7babf;
  padding-bottom: 0.9375rem;
  border-left: 7px solid #89c1bd;
}

.company-profile__list + .company-profile__list {
  margin-top: 2.5rem;
}

.company-profile__term {
  max-width: 25%;
  width: 100%;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .company-profile__term {
    max-width: 35%;
  }
}

.company-profile__description-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

#contact {
  margin-top: 1.5rem;
  margin-inline: auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  #contact {
    padding-bottom: 2.5rem;
    max-width: 42.25rem;
  }
}
.contact__inner {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.contact__form-list {
  margin-bottom: 3.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.contact__form-list-wrapper {
  padding: 1.5rem;
  background-color: #fff;
}

.contact__form-list-wrapper--name {
  display: flex;
  justify-content: space-between;
  gap: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .contact__form-list-wrapper--name {
    gap: 0.625rem;
  }
}

.contact__form-list dt,
.contact__form-list dd {
  margin-top: 0.3125rem;
}

.contact__form-list dt {
  padding-top: 0.9375rem;
  font-weight: 700;
}

.contact__form-list dd {
  width: 100%;
}

/* 必須・任意 */
.contact__form-list-required,
.contact__form-list-optional {
  margin-right: 0.9375rem;
  padding: 0.375rem 0.875rem;
  font-size: 0.75rem;
  vertical-align: 0.0625rem;
  border-radius: 0.25rem;
}

.contact__form-list-required {
  background: #262626;
  color: #fff;
}

.contact__form-list-optional {
  color: #262626;
  border: 1px solid #262626;
}

/* input・textarea */
.contact__form-list dd input[type="text"],
.contact__form-list dd input[type="tel"],
.contact__form-list dd input[type="email"],
.contact__form-list dd textarea {
  width: 100%;
  padding: 0.9375rem 1.25rem;
  border-radius: 0.3125rem;
  border: 1px solid #727272;
}

/* ドロップダウンメニュー */
.contact__form-select {
  position: relative;
}

.contact__form-select:before {
  position: absolute;
  top: 50%;
  right: 1.25rem;
  z-index: 10;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 0.5rem solid #090909;
  border-right: 0.375rem solid transparent;
  border-left: 0.375rem solid transparent;
  pointer-events: none;
  content: "";
}

.contact__form-select select {
  width: 100%;
  padding: 1.1875rem 1.25rem;
  background: #f4f4f4;
  color: #090909;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* チェックボックス・ラジオボタン */
.contact__form-list dd .wprecruit__cf7-checkbox,
.contact__form-list dd .wprecruit__cf7-radio {
  display: block;
  padding: 0.9375rem 0 0.625rem;
}

/* 縦並び（チェックボックス・ラジオボタン） */
.contact__form-list dd .wprecruit__cf7-list-item {
  display: block;
  margin: 0;
}

.contact__form-list dd .wprecruit__cf7-list-item:nth-child(n + 2) {
  margin-top: 1.125rem;
}

/* マウスカーソル（チェックボックス・ラジオボタン） */
.contact__form-list dd .wprecruit__cf7-list-item label {
  cursor: pointer;
}

/* チェックボックス・ラジオボタン */
input[type="checkbox"],
input[type="radio"] {
  position: relative;
  width: 1.125rem;
  height: 1.125rem;
  margin-right: 0.5rem;
  border: 1px solid #bcbcbc;
  vertical-align: -0.1875rem;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* チェックボックス */
input[type="checkbox"]:checked {
  border: 1px solid #090909;
  background: #090909;
}

input[type="checkbox"]:checked:before {
  position: absolute;
  top: 0.125rem;
  left: 0.3125rem;
  transform: rotate(50deg);
  width: 0.375rem;
  height: 0.625rem;
  border-right: 0.125rem solid #fff;
  border-bottom: 0.125rem solid #fff;
  content: "";
}

/* ラジオボタン */
input[type="radio"] {
  border-radius: 50%;
}

input[type="radio"]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.5625rem;
  height: 0.5625rem;
  border-radius: 50%;
  background: #090909;
  content: "";
}

/* プレースホルダー */
.contact__form-list dd input[type="text"]::-moz-placeholder,
.contact__form-list dd input[type="tel"]::-moz-placeholder,
.contact__form-list dd input[type="email"]::-moz-placeholder,
.contact__form-list dd textarea::-moz-placeholder {
  color: #a5a5a5;
}
.contact__form-list dd input[type="text"]::placeholder,
.contact__form-list dd input[type="tel"]::placeholder,
.contact__form-list dd input[type="email"]::placeholder,
.contact__form-list dd textarea::placeholder {
  color: #a5a5a5;
}

/* 送信ボタン */
.contact__form-btn {
  text-align: center;
}

input[type="submit"] {
  width: 11.25rem;
  height: 3.5rem;
  background: #262626;
  color: #fff;
  transition: opacity 0.6s;
  border: none;
  border-radius: 2.25rem;
}
@media screen and (min-width: 768px) {
  input[type="submit"] {
    width: 16.25rem;
    height: 3.75rem;
    margin-top: 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  input[type="submit"]:hover {
    opacity: 0.6;
  }
}

/* ajax-loader */
.wprecruit__cf7-spinner {
  vertical-align: middle;
}

@media screen and (min-width: 768px) {
  .contact__form-list dt {
    width: 100%;
    margin-bottom: 0.9375rem;
    padding-top: 0;
  }
  .contact__form-list dd {
    width: 100%;
  }
}
.contact__form-checkbox .wpcf7-list-item {
  display: block;
  margin: 0 0 10px 0;
}

.contact__form-checkbox input[type="checkbox"] {
  margin-right: 8px;
}

.faq-btn__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .faq-btn__wrapper {
    margin-top: 2.1875rem;
    gap: 1.4375rem;
  }
}

.faq__inner {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}
@media screen and (min-width: 768px) {
  .faq__inner {
    padding-right: 2.8125rem;
    padding-left: 2.8125rem;
  }
}

.floating-btn {
  position: fixed;
  right: 0.625rem;
  bottom: 0.625rem;
  z-index: 1000;
  display: block;
}
@media screen and (min-width: 1000px) {
  .floating-btn {
    right: 2.5rem;
  }
}

.floating-btn__image {
  width: 10.375rem;
}
@media screen and (min-width: 768px) {
  .floating-btn__image {
    width: 18.4375rem;
  }
}

.flow-list {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 3.125rem;
  gap: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .flow-list {
    flex-direction: row;
    justify-content: center;
    gap: 2.0625rem;
    margin-top: 2.875rem;
  }
}

.flow-list__item-description {
  background-color: #c28d5c;
  position: relative;
  color: #fff;
  font-weight: 700;
  padding: 1.375rem 0.6875rem 1.3125rem 5.1875rem;
  margin-top: 0.8125rem;
}

.flow-list__item-description::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 2.5rem;
  transform: translate(-50%, -50%);
  background-size: contain;
  background-repeat: no-repeat;
}

.flow-list__item:nth-child(1) .flow-list__item-description::before {
  background-image: url(../images/common/icon02.png);
  width: 3.25rem;
  height: 3.1875rem;
}

.flow-list__item:nth-child(2) .flow-list__item-description::before {
  background-image: url(../images/common/icon03.png);
  width: 3.3125rem;
  height: 3.375rem;
}

.flow-list__item:nth-child(3) .flow-list__item-description::before {
  background-image: url(../images/common/icon04.png);
  width: 3.25rem;
  height: 3.25rem;
}

.flow {
  padding-top: 32px;
  padding-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .flow {
    padding-top: 5rem;
    padding-bottom: 3rem;
  }
}

.flow__inner {
  padding-right: 2.125rem;
  padding-left: 2.125rem;
}
@media screen and (min-width: 768px) {
  .flow__inner {
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}

.flow__text {
  margin-top: 1.5625rem;
  text-align: center;
  letter-spacing: 2.5px;
}
@media screen and (min-width: 768px) {
  .flow__text {
    margin-top: 1.6875rem;
  }
}

.flow__note {
  text-align: center;
}

.flow__note span {
  display: block;
}

.flow__note-above {
  line-height: 1.2;
  font-weight: 700;
  margin-top: 2.125rem;
  font-family: "IBM Plex Sans JP", sans-serif;
  letter-spacing: 2.5px;
}
@media screen and (min-width: 768px) {
  .flow__note-above {
    line-height: 2;
  }
}

.flow__note-above span {
  font-weight: 400;
  margin-top: 1.75rem;
  text-align: left;
  letter-spacing: 1.5px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .flow__note-above span {
    margin-top: 0.8125rem;
    text-align: center;
  }
}

.flow__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 2.0625rem;
}
@media screen and (min-width: 768px) {
  .flow__btn {
    margin-top: 1.1875rem;
  }
}

.flow__btn-text {
  color: #e98d04;
  font-weight: 700;
  font-size: 0.875rem;
  font-family: "IBM Plex Sans JP", sans-serif;
  letter-spacing: 1.5px;
}

.flow__btn-text:first-child {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flow__btn-text:last-child {
  transform: translateY(1rem);
  font-size: 1.1875rem;
}

.flow__btn-text:first-child::before,
.flow__btn-text:first-child::after {
  content: "";
  width: 0.125rem;
  height: 1.125rem;
  background: #e98d04;
}

.flow__btn-text::before {
  margin-right: 0.625rem;
  transform: rotate(-20deg);
}
@media screen and (min-width: 768px) {
  .flow__btn-text::before {
    margin-right: 3.125rem;
  }
}

.flow__btn-text::after {
  margin-left: 0.625rem;
  transform: rotate(20deg);
}
@media screen and (min-width: 768px) {
  .flow__btn-text::after {
    margin-left: 3.125rem;
  }
}

.flow__note-below {
  background-color: #fff;
  color: #090909;
  font-size: 0.875rem;
  line-height: 2;
  font-weight: 800;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 1.375rem 0;
}

.flow__note-information {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .flow__note-information {
    flex-direction: row;
    gap: 1.25rem;
  }
}

.flow__note-tel {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "IBM Plex Sans JP", sans-serif;
}

.flow__note-text {
  text-align: center;
}

.p-footer {
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .p-footer {
    padding: 1.25rem 0 2.5rem;
  }
}

.p-footer__inner {
  margin: auto;
  padding: 0 0.9375rem;
  max-width: 39.375rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-footer__inner {
    padding: 0 1.5625rem;
    max-width: 65.375rem;
  }
}

.p-footer__wrap {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-footer__wrap {
    flex-direction: row;
    gap: 2.5rem;
    justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__right {
    max-width: 36.375rem;
    width: 100%;
  }
}

.p-footer__nav {
  border-bottom: 1px solid #cacaca;
}
@media screen and (min-width: 768px) {
  .p-footer__nav {
    border-bottom: none;
  }
}

.p-footer__nav-sub {
  padding-left: 0.625rem;
  margin-top: 0.625rem;
}

.p-footer__nav-items {
  display: grid;
  -moz-column-gap: 2.5rem;
  column-gap: 2.5rem;
  grid-template-columns: 1fr;
}
.p-footer__nav-items--drawer{
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-footer__nav-items {
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 0;
    column-gap: 0;
  }
}

.p-footer__nav-item {
  padding: 0.9375rem 0.625rem;
  position: relative;
}
.p-footer__nav-item--about {
  margin-top: -50px;
}
@media screen and (min-width: 768px) {
  .p-footer__nav-item--about {
    margin-top: 0;
  }
}

.p-footer__nav-item p {
  position: relative;
  color: #89c1bd;
  font-size: 1.0625rem;
  white-space: nowrap;
  font-weight: 700;
}

.p-footer__nav-item p::before {
  content: "";
  display: block;
  width: 6px;
  height: 27px;
  background-color: #ffcd6c;
  position: absolute;
  top: 50%;
  left: -0.625rem;
  transform: translateY(-50%);
}

.p-footer__nav-sub-item a {
  padding: 0.9375rem 0;
  position: relative;
  display: block;
  line-height: 1;
  font-size: 1.0625rem;
}


.p-footer__nav-sub-item a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -0.625rem;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.25rem 0 0.25rem 0.375rem;
  border-color: transparent transparent transparent #333;
}
.p-footer__nav-sub-item-tel::before {
  content: none!important;
}
.p-footer__nav-sub-item--shinnihon a {
  font-size: 14px;
  text-decoration: underline;
}
.p-footer__nav-sub-item--shinnihon a::before {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-footer__nav-sub-item a::before {
    border-width: 0.3125rem 0 0.3125rem 0.5rem;
  }
}

.p-footer__nav-sub-item--home a {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 700;
  padding-left: 0.625rem;
}

.p-footer__nav-sub-item--home a::before {
  left: 0;
}

.p-footer__sns {
  margin-top: 1.5625rem;
  display: flex;
  justify-content: left;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-footer__sns {
    margin-top: 2.5rem;
  }
}

.p-footer__sns-icon {
  display: block;
  max-width: 1.875rem;
  width: 100%;
}

.p-footer__sns-icon + .p-footer__sns-icon {
  margin-left: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-footer__sns-icon + .p-footer__sns-icon {
    margin-left: 1.875rem;
  }
}

.p-footer__sns-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-footer__left {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-footer__left {
    margin-top: 0;
  }
}

.p-footer__logo {
  max-width: 12.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-footer__logo {
    max-width: 23.75rem;
  }
}

.p-footer__logo a {
  padding: 0.625rem 0;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-footer__logo a {
    padding: 0.9375rem 0;
  }
}

.p-footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-footer__address {
  margin-top: 0.625rem;
  font-size: 0.9375rem;
  font-weight: 700;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
.p-footer__address span {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-footer__address a[href^="tel:"] {
    pointer-events: none;
  }
}
@media screen and (min-width: 768px) {
  .p-footer__address {
    margin-top: 0.9375rem;
    font-size: 0.875rem;
  }
}

.p-footer__policy {
  margin-top: 1.25rem;
  padding: 0.625rem 0;
  display: inline-block;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-footer__policy {
    margin-top: 1.5625rem;
    font-size: 0.875rem;
  }
}

.p-footer__copyright {
  margin-top: 0.625rem;
  display: block;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.04em;
  margin-top: 1.375rem;
}
@media screen and (min-width: 768px) {
  .p-footer__copyright {
    text-align: center;
    margin-top: 1.5625rem;
  }
}

.p-footer__copyright span {
  text-transform: uppercase;
}

.fqa {
  padding-top: 32px;
  padding-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .fqa {
    padding-top: 3rem;
    padding-bottom: 4rem;
  }
}

.greeting {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #eaeeef;
}
@media screen and (min-width: 768px) {
  .greeting {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.greeting__content {
  margin-top: 20px;
  max-width: 500px;
  margin-inline: auto;
}
.greeting__text {
  font-weight: 400;
  letter-spacing: 2px;
}
@media screen and (min-width: 768px) {
  .greeting__content {
    margin-top: 50px;
  }
}
.greeting__name-wrapper {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .greeting__name-wrapper {
    margin-top: 40px;
  }
}

.greeting__name {
  text-align: right;
}

.p-404 {
  padding: 12.5rem 0;
}

.p-404__title {
  text-align: center;
}

.p-404__btn {
  text-align: center;
}
.contact {
  background-color: #eaeeef;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .contact {
    padding-top: 4rem;
    padding-bottom: 5rem;
  }
}
.contact__text-wrapper {
  text-align: center;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .contact__text-wrapper {
    margin-top: 2.5rem;
  }
}

.contact__head {
  width: 15.625rem;
}

.contact__item {
  margin-top: 0.375rem;
}

.contact__item-example {
  margin-top: 0.375rem;
  color: gray;
}

.contact__required {
  color: red;
  padding-left: 1em;
}

.contact__policy,
.contact__content,
.contact__btn {
  margin: 1.5rem 0;
}

.contact__policy-link {
  color: blue;
  transition: all 0.3s;
}

.contact__btn-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .contact__btn-wrap {
    flex-direction: row;
    gap: 2.5rem;
  }
}

.contact__btn {
  display: inline-block;
  text-align: center;
}

.contact__item-text,
.contact__item-tel,
.contact__item-email,
.contact__item-textarea,
.contact__item-select {
  margin: 0;
  padding: 0.8em;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  outline: none;
  background: none;
  background-color: transparent;
  font-size: 1rem;
  color: inherit;
  font-family: inherit;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}

.contact__item-text:focus,
.contact__item-tel:focus,
.contact__item-email:focus,
.contact__item-textarea:focus,
.contact__item-select:focus {
  border: 1px solid rgba(0, 0, 0, 0.7);
  box-shadow: none;
  outline: none;
}

.contact__item-textarea {
  height: 200px;
  resize: none;
  overflow: auto;
}

.contact__item-message {
  white-space: pre-wrap;
}

.contact__item-select {
  padding-right: 3em;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAALJJREFUeNrslssNgCAQRCmB0ijBEuyEEijBEijBEizBEnAPy0UBWVj8JDvJJB5w3gsXVUoikXwsBrpAPdRCNcOmxi2P2yZ3cIKGU9dOCY0b590pdXhPHOyRyMEDsi4JhVIlSvBYTRGgSNTAQ+pFyyBRC7e5AdchUQt3d1fYIsEGb5Fgh1MktlFwisQwOIeE4/pGuDfhLRLscIrEMHiNxHB4SeIxeMyMPxkenyUSyT9zCDAAj5btZ4c3zaUAAAAASUVORK5CYII=");
  background-repeat: no-repeat;
  background-size: 1em;
  background-position: right 0.5em center;
  color: inherit;
}

.contact__item-select:invalid {
  color: rgba(0, 0, 0, 0.32);
}

.contact__item-select select::-ms-expand {
  display: none;
}

.contact__item-radio input[type="radio"],
.contact__item-checkbox input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.contact__item-radio input[type="radio"] + span,
.contact__item-checkbox input[type="checkbox"] + span {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding: 0.5em 1em 0.5em 1.5em;
  color: #333;
  font-size: 1rem;
}

.contact__item-radio input[type="radio"]:focus + span,
.contact__item-checkbox input[type="checkbox"]:focus + span {
  opacity: 0.7;
}

.contact__item-radio input[type="radio"] + span::before,
.contact__item-checkbox input[type="checkbox"] + span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1em;
  height: 1em;
  content: "";
  transform: translateY(-50%);
  background: white;
  border: 1px solid black;
}

.contact__item-checkbox input[type="checkbox"]:checked + span::before {
  background: #333;
}

.contact__item-radio input[type="radio"]:checked + span::before {
  background: white;
}

.contact__item-radio input[type="radio"] + span::before {
  border-radius: 50%;
}

.contact__item-radio input[type="radio"] + span::after {
  position: absolute;
  content: "";
  background: #333;
  border: 1px solid transparent;
  border-radius: 50%;
  height: 0.5em;
  left: 0.25em;
  opacity: 0;
  padding: 0.125em;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease 0s;
  width: 0.5em;
}

.contact__item-checkbox input[type="checkbox"] + span::after {
  border-bottom: 2px solid white;
  border-left: 2px solid white;
  content: "";
  display: block;
  height: 0.35em;
  left: 0.15em;
  margin-top: -0.1em;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  transition: all 0.3s ease 0s;
  width: 0.8em;
}

.contact__item-checkbox input[type="checkbox"]:checked + span::after,
.contact__item-radio input[type="radio"]:checked + span::after {
  opacity: 1;
}

/* button */
.contact__btn input[type="submit"],
.contact__btn input[type="button"] {
  display: inline-block;
  margin: 0;
  padding: 0.5em 2em;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  background: rgba(0, 0, 0, 0.32);
  color: #333;
  -moz-appearance: button;
  appearance: button;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 0;
  border: none;
  transition: all 0.3s;
}

.contact__btn input[type="submit"]:hover,
.contact__btn input[type="button"]:hover,
.contact__btn input[type="submit"]:focus,
.contact__btn input[type="button"]:focus {
  outline: none;
  opacity: 0.7;
}

.contact__item,
.contact__btn-submit {
  min-width: 9.375rem;
}

.wpcf7-spinner {
  position: absolute;
}
.wpcf7 input[type="file"] {
  font-size: 10px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .wpcf7 input[type="file"] {
    font-size: 16px;
  }
}
.header {
  height: 3.125rem;
  background-color: #fff;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .header {
    height: 5.4375rem;
  }
}



.header__inner {
  height: inherit;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding-left: 0.6875rem;
    padding-right: 1.125rem;
  }
}

.header__logo {
  max-width: 9.25rem;
  width: 100%;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .header__logo {
    max-width: 14.5rem;
  }
}

.header__logo a {
  height: inherit;
  display: flex;
  align-items: center;
}

.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.header__nav {
  display: none;
  height: inherit;
}
@media screen and (min-width: 1000px) {
  .header__nav {
    display: block;
  }
}

.header__nav-list {
  display: flex;
  height: inherit;
}

.header__nav-item {
  height: inherit;
}

.header__nav-item a {
  padding: 0 0.8125rem;
  height: inherit;
  display: flex;
  align-items: center;
  font-size: clamp(0.75rem, 0.145rem + 1.26vw, 1.063rem);
  font-weight: 500;
  line-height: 2;
  color: #333;
  text-transform: uppercase;
  transition: 0.3s;
  letter-spacing: 1.08px;
}

.header__hamburger {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  position: relative;
  z-index: 999;
  width: 2.5rem;
  height: inherit;
  cursor: pointer;
  transition: 0.3s;
  background-color: transparent;
}
@media screen and (min-width: 1000px) {
  .header__hamburger {
    display: none;
  }
}

.header__hamburger.is-open {
  background-color: transparent;
}

.header__hamburger span {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 1.5rem;
  height: 0.125rem;
  background-color: #090909;
  transition: 0.5s;
}

.header__hamburger span:nth-of-type(1) {
  top: -0.5rem;
}

.header__hamburger span:nth-of-type(2) {
  top: 0;
}

.header__hamburger span:nth-of-type(3) {
  top: 0.5rem;
}

.header__hamburger.is-open span:nth-of-type(1) {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
}

.header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.header__hamburger.is-open span:nth-of-type(3) {
  top: -0.25rem;
  transform: translateX(-50%) rotate(-45deg);
}

.header__drawer {
  padding: 3.125rem 2.375rem;
  display: none;
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  overflow-y: scroll;
  scrollbar-width: none;
}

.header__drawer::-webkit-scrollbar {
  display: none;
}

.header__drawer-item a {
  padding: 0.9375rem 0;
  display: block;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}

.header__nav-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.p-pager-list {
  display: flex;
}

.p-pager-list__btn:last-of-type {
  margin-left: auto;
}

.p-pager-list__btn a {
  display: inline-block;
  padding: 10px 20px;
  color: #89c1bd;
  border: 1px solid #89c1bd;
}

.p-post-article__container {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-post-article__container {
    margin-top: 10rem;
  }
}

.p-post-article__wrap {
  padding-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-post-article__wrap {
    padding-bottom: 3.5rem;
  }
}

.p-post-article__title {
  color: #090909;
  line-height: 1.5;
  position: relative;
  padding: 0.875rem 1.5rem;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-post-article__title {
    font-size: 1.25rem;
  }
}

.p-post-article__info {
  display: flex;
  align-items: center;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-post-article__info {
    margin-top: 3rem;
  }
}

.p-post-article__category {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
}

.p-post-article__category li {
  color: #fff;
  margin-left: 1rem;
  border-radius: 5px;
}

.p-post-article__category li a {
  padding: 0.625rem 1.75rem;
  font-size: 0.875rem;
  line-height: 1.1666666667;
  border-radius: 3px;
}
@media screen and (min-width: 768px) {
  .p-post-article__category li a {
    font-size: 1.25rem;
  }
}

.p-post-article__box {
  margin: 6.4rem auto 0;
}

.p-post-article__content {
  padding: 1.25rem 0 0;
  width: 100%;
}

.p-post-article__content-wrap {
  padding-bottom: 1.875rem;
  width: 100%;
  margin: auto;
}

.p-post-article__contents {
  margin-top: 1.875rem;
}

.p-post-article__main-img {
  aspect-ratio: 800/536;
  max-width: 100%;
  width: 50rem;
}

.p-post-article__main-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-post-article__category {
  letter-spacing: 0;
}

.p-post-article__data {
  color: #090909;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-post-article__data {
    font-size: 0.875rem;
  }
}

.p-post-article__content h2 {
  margin: 1.875rem 0 0.9375rem;
  padding: 0.3125rem 1.25rem;
  color: #090909;
  font-size: 1.75rem;
}

.p-post-article__contents h3 {
  margin: 1.875rem 0 0.9375rem;
  padding-left: 0.625rem;
  color: #89c1bd;
  font-size: 1.75rem;
  border-left: 0.5em solid #89c1bd;
}

.p-post-article__contents h4 {
  margin: 0.625rem 0;
  font-size: 1.5rem;
}

.p-post-article__contents h5 {
  margin: 0.625rem 0;
  padding: 0.125rem 0.78125rem;
  display: inline-block;
  color: #89c1bd;
  font-size: 1.25rem;
  border-top: 2px solid #89c1bd;
  border-bottom: 2px solid #89c1bd;
}

.p-post-article__contents p {
  font-size: 0.9375rem;
}

.p-post-article__contents a {
  color: #89c1bd;
  text-decoration: underline;
}

.p-post-article__contents img {
  margin: 0.625rem 0;
}

.p-post-article__contents figure {
  margin: 0.625rem 0;
}

.p-post-article__contents figcaption {
  margin: 0.625rem 0;
  font-size: 0.75rem;
}

.p-post-article__contents ul {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-post-article__contents ul {
    margin-top: 2.375rem;
  }
}

.p-post-article__contents ul li {
  padding-left: 1.375rem;
  font-size: 1rem;
  line-height: 1.5;
  text-indent: -1.125rem;
}

.p-post-article__contents ul li:not(:first-of-type),
.p-post-article__contents ol li:not(:first-of-type) {
  margin-top: 1rem;
}

.p-post-article__contents ul li::before {
  content: "";
  margin-right: 0.625rem;
  position: relative;
  top: -0.1875rem;
  width: 0.5rem;
  height: 0.5rem;
  display: inline-block;
  background-color: #89c1bd;
  border-radius: 50%;
}

.p-post-article__contents ol {
  margin-top: 2rem;
  counter-reset: number;
}
@media screen and (min-width: 768px) {
  .p-post-article__contents ol {
    margin-top: 2.375rem;
  }
}

.p-post-article__contents ol li {
  padding-left: 1.75rem;
  font-size: 1rem;
  line-height: 1.5;
  text-indent: -0.75rem;
}

.p-post-article__contents ol li::before {
  counter-increment: number;
  content: counter(number) ".";
  margin-right: 0.625rem;
  display: inline-block;
  line-height: 1;
  color: #89c1bd;
}

.p-post-article__btn {
  margin-top: 8.25rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-post-article__btn {
    margin-top: 10.5625rem;
  }
}

.p-post-connect__title {
  font-size: 1.5rem;
  color: #89c1bd;
}

.p-post-connect__items {
  display: grid;
  gap: 3.125rem;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-post-connect__items {
    row-gap: 2.5rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
    grid-template-columns: repeat(4, 1fr);
  }
}

.p-post-list {
  position: relative;
}

.p-post-list__wrap {
  margin: 2rem 0;
}

.p-post-list__title {
  font-size: 2.5rem;
  color: #89c1bd;
}

.p-post-list__items {
  display: grid;
  gap: 3.125rem;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-post-list__items {
    row-gap: 2.5rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
    grid-template-columns: repeat(4, 1fr);
  }
}

.p-post-list__cards {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-post-list__cards {
    margin-top: 6.25rem;
  }
}

.p-post-list__btn {
  margin-top: 1.25rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-post-list__btn {
    margin: 1.75rem auto 0;
    width: 100%;
    max-width: calc(61.25rem + 50px);
    padding: 0 0.625rem;
  }
}

.p-tab__menu {
  display: flex;
  justify-content: center;
}

.p-tab__menu-item {
  padding: 0.625rem;
  min-width: 6.25rem;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.875rem;
  line-height: 1;
  color: #73b2c8;
  border: 1px solid #73b2c8;
  background-color: #fff;
  text-align: center;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-tab__menu-item {
    font-size: 1.25rem;
  }
}

.p-tab__menu-item + .p-tab__menu-item {
  margin-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-tab__menu-item + .p-tab__menu-item {
    margin-left: 1.875rem;
  }
}

.p-tab__menu-item.is-active {
  color: #fff;
  background-color: #73b2c8;
}

.p-tab__content {
  margin-top: 1.25rem;
}

.p-tab__content-item {
  padding: 1.5625rem;
  display: none;
  background-color: #fff;
  border: 1px solid #73b2c8;
}

.p-tab__content-item.is-active {
  display: block;
  animation: fade 0.3s;
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.p-top-gallery__inner {
  margin: 5% 5% 0 5%;
}

.p-top-gallery .splide__slide {
  display: block;
  width: 100%;
  aspect-ratio: 600/300;
}

.p-top-gallery .splide__slide picture {
  height: inherit;
  height: 100%;
}

.p-top-gallery .splide__slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-top-gallery .swiper-slide {
  display: block;
  width: 100%;
  aspect-ratio: 600/300;
}

.p-top-gallery .swiper-slide picture {
  height: inherit;
  height: 100%;
}

.p-top-gallery .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-top-gallery .slick-track {
  display: block;
  width: 100%;
}

.p-top-gallery .slick-slide {
  display: block;
  width: 100%;
  aspect-ratio: 600/300;
  margin: 0 5px;
}

.p-top-gallery .slick-slide picture {
  height: inherit;
  height: 100%;
}

.p-top-gallery .slick-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.mv {
  position: relative;
  z-index: 1;
  min-height: 16rem;
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .mv {
    margin-top: 5.4375rem;
    height: initial;
  }
}

.mv__inner {
  height: inherit;
  min-height: inherit;
}

.mv__title-wrap {
  position: absolute;
  z-index: 2;
  bottom: -10%;
  left: 4%;
  bottom: 9%;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .mv__title-wrap {
    left: calc(50% - min(50vw, 33rem));
    transform: translateY(-50%);
    width: initial;
    bottom: -5%;
  }
}

.mv__main-title {
  font-size: 1.0625rem;
  line-height: 1.5;
  letter-spacing: 2.5px;
  text-shadow: 0 0 12px #a38f61;
}
@media screen and (min-width: 768px) {
  .mv__main-title {
    font-size: 2rem;
    line-height: 2;
  }
}

.mv__img picture {
  height: 100%;
}

.mv__img img {
  height: inherit;
  min-height: inherit;
}

.mv__img img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.section-block {
  overflow-x: hidden;
  padding-top: 32px;
  padding-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .section-block {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.about__inner {
  margin: auto;
  padding: 0 20px;
  max-width: 600px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .about__inner {
    padding: 0 25px;
    max-width: 976px;
  }
}
.about-list {
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .about-list {
    margin-top: 52px;
  }
  .about-list__item {
    display: flex;
    align-items: center;
  }
}
.about-list__item:not(:first-child) {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .about-list__item:nth-of-type(even) {
    flex-direction: row-reverse;
  }
  .about-list__item:not(:first-child) {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .about-list__item + .about-list__item {
    margin-top: 30px;
    margin-top: 40px;
  }
}

.about-list__item-img {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}

@media screen and (min-width: 768px) {
  .about-list__item-img {
    margin: initial;
    max-width: 350px;
    width: 100%;
  }
}
.about-list__item-img img {
  width: 100%;
  aspect-ratio: 352/260;
  object-fit: cover;
}

.about-list__item-content-bg {
  margin: -30px auto 0;
  padding: 30px 20px;
  position: relative;
  width: 88%;
  background-color: #eaeeef;
}
@media screen and (min-width: 768px) {
  .about-list__item-content-bg {
    margin-top: 0;
    margin-right: calc(50% - 50vw);
    margin-left: -50px;
    padding: 30px 30px;
    width: 100vw;
  }
}

@media screen and (min-width: 768px) {
  .about-list__item:nth-of-type(even) .about-list__item-content-bg {
    margin-right: -50px;
    margin-left: calc(50% - 50vw);
  }
}

@media screen and (min-width: 768px) {
  .about-list__item-content {
    max-width: 600px;
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .about-list__item:nth-of-type(even) .about-list__item-content {
    margin-left: auto;
  }
}

.about-list__item-title {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #262626;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .about-list__item-title {
    font-size: 16px;
  }
}

.about-list__item-text {
  margin-top: 30px;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #262626;
}

@media screen and (min-width: 768px) {
  .about-list__item-text {
    margin-top: 40px;
  }
}

.about-list__item-btn-wrap {
  margin-top: 40px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .about-list__item-btn-wrap {
    text-align: left;
  }
}

.about-list__item-btn {
  padding: prem(10) prem(37);
  display: inline-block;
  font-size: prem(14);
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid #fff;
  border-radius: prem(5);
}

@media screen and (min-width: 768px) {
  .about-list__item-btn {
    padding: 14px 55px;
    font-size: 15px;
  }
}

.aircon {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .aircon {
    padding-top: 2.5rem;
    padding-bottom: 5rem;
  }
}

.aircon__page-section-title {
  text-align: center;
}

.page-aircon__btn {
  text-align: center;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .page-aircon__btn {
    margin-top: 5.125rem;
  }
}

.flow-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.625rem;
  flex-direction: column;
  margin-top: 4.0625rem;
}
@media screen and (min-width: 768px) {
  .flow-list {
    margin-top: 5rem;
    flex-direction: row;
    justify-content: center;
    -moz-column-gap: 2.8125rem;
    column-gap: 2.8125rem;
    row-gap: 1.875rem;
  }
}

.flow-list__item {
  padding: 6.0625rem 1.125rem 3rem 1.125rem;
  background-color: #fff;
  position: relative;
  width: 100%;
  border: 1px solid #e7ecf2;
}
@media screen and (min-width: 768px) {
  .flow-list__item {
    width: calc(33.3333333333% - 2.375rem);
    padding: 5.9375rem 1.25rem 1.8rem 1.1875rem;
  }
}

.flow-list__item-number {
  font-size: 1.375rem;
  font-weight: 700;
  background: radial-gradient(circle, #ffffff 0%, #6cbae4 100%);
  border-radius: 100%;
  width: 5.875rem;
  height: 5.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  position: absolute;
  top: -1.625rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: "BIZ UDPGothic", sans-serif;
}

.flow-list__item-title {
  font-size: 1.125rem;
  text-align: center;
  max-width: 100%;
  margin-inline: auto;
  padding-bottom: 20px;
  position: relative;
}
.flow-list__item-title::before {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: radial-gradient(circle, #ffffff 0%, #6cbae4 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 3px;
}

.flow-list__item-title::before {
  background-color: #0c5ba8;
}
.flow-list__item-title::after {
  background-color: #0c5ba8;
}

.flow-list__item-img img {
  width: 100%;
  aspect-ratio: 304/167;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .flow-list__item-img img {
    aspect-ratio: 218/166;
  }
}

.flow-list__item-text {
  margin-top: 1rem;
  font-size: 14px;
}
.menu-inner {
  padding-left: 1rem;
  padding-right: 1rem;
}
.menu-tab__description {
  text-align: center;
  margin-top: 30px;
  line-height: 2;
}
.menu-tab-content__table {
  position: relative;
  width: 100%;
  width: 48rem;
  margin-top: 1.875rem;
  margin-inline: auto;
  border-collapse: collapse;
}

.menu-tab-content__table-wrapper {
  position: relative;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 1;
  scroll-behavior: smooth;
}

.menu-tab-content__notice-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 10px;
  margin-bottom: 2rem;
}

.menu-tab-content__notice {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  max-width: 48rem;
  margin-inline: auto;
  padding: 0.625rem;
  border: 1px solid #999999;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.menu-tab-content__notice-text {
  width: 100%;
  line-height: 1.2;
}
.menu-tab-content__notice-text-below {
  text-align: center;
}

.menu-tab-content__notice-text a {
  color: #222222;
  text-decoration: underline;
}

.menu-tab-content__section {
  z-index: 0;
  position: relative;
  overflow: hidden;
}

.menu-tab-content__table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.menu-tab-content__title {
  display: block;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 13px;
  margin-inline: auto;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  font-size: 1.375rem;
  text-align: center;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .menu-tab-content__title {
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }
}

.menu-tab-content__title::before,
.menu-tab-content__title::after {
  display: block;
  position: absolute;
  top: 50%;
  width: 100vw;
  height: 1px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #000;
  content: "";
}

.menu-tab-content__title::before {
  right: 100%;
  margin-right: 1.25rem;
}

.menu-tab-content__title::after {
  left: 100%;
  margin-left: 1.25rem;
}

.menu-tab-content__table-head {
  background-color: #e7ecf2;
}

.menu-tab-content__table-header {
  position: relative;
  width: 30%;
  border-left: 2px solid #fff;
  font-weight: normal;
  text-align: center;
  font-size: 12px;
}

.menu-tab-content__table-head--white .menu-tab-content__table-header {
  width: inherit;
}

.menu-tab-content__table-header::after {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #fff;
  content: "";
}

.menu-tab-content__table-row {
  border-bottom: 1px solid #e0e0e0;
}

.menu-tab-content__table-row:first-child {
  border-top: 1px solid #e0e0e0;
}

.menu-tab-content__table-data {
  position: relative;
  height: 4.25rem;
  padding-left: 1rem;
  font-size: 1rem;
  text-align: center;
}
table{
  table-layout: fixed;
}

.menu-tab-content__table-data.diagonal-line {
  position: relative;
}
.menu-tab-content__table-data.diagonal-line::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 95%;
  height: 95%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: linear-gradient(
    -167deg,
    transparent calc(50% - 0.5px),
    #e0e0e0 calc(50% - 0.5px),
    #e0e0e0 calc(50% + 0.5px),
    transparent calc(50% + 0.5px)
  );
  content: "";
}

.menu-tab-content__table-data .small-text {
  font-size: 0.75rem;
  line-height: 1;
  text-align: right;
}

.menu-tab-content__table-data:not(:last-child)::after {
  position: absolute;
  top: 10px;
  right: 0;
  width: 1px;
  height: calc(100% - 20px);
  background-color: #e0e0e0;
  content: "";
}

.menu-tab-content__table-data:first-child {
  font-size: 1rem;
  text-align: left;
}

.menu-tab-content__table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
}

.menu-tab-content__note {
  font-size: 12px;
  text-align: right;
}

.menu-tab__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 2.5rem;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .menu-tab__list {
    gap: 1.5rem;
  }
}

.menu-tab__item {
  position: relative;
  width: 10.625rem;
  background-color: #e7ecf2;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-tab__item::after {
  position: absolute;
  right: 0.375rem;
  bottom: 0.25rem;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-right: 8px solid #fff;
  border-left: 8px solid transparent;
  content: "";
}

.menu-tab__item.is-active {
  background-color: #6cbae4;
}

@media screen and (min-width: 768px) {
  .menu-tab__item.is-active::after {
    border-top: 15px solid transparent;
    border-right: 15px solid #fff;
    border-left: 15px solid transparent;
  }
}
.menu-tab__content {
  max-width: 49.25rem;
  margin-inline: auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}

.menu-tab__content-item {
  display: none;
}
.menu-tab__content-item.is-active {
  display: block;
  -webkit-animation: fade 0.3s;
  animation: fade 0.3s;
}

@-webkit-keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.faq-list {
  max-width: 48.25rem;
  margin-top: 1.5rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .faq-list {
    margin-top: 2.9375rem;
  }
}

.faq-list__item + .faq-list__item {
  margin-top: 1.25rem;
}

.faq-list__item-question {
  padding: 0.75rem 2.5rem 0.75rem 1.125rem;
  position: relative;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.05);
  background-color: #e7ecf2;
}
@media screen and (min-width: 768px) {
  .faq-list__item-question {
    text-indent: -1.25rem;
    padding: 0.875rem 3.75rem 0.875rem 5rem;
  }
}

.faq-list__item-question::before,
.faq-list__item-question::after {
  content: "";
  position: absolute;
  top: 1.3125rem;
  right: 1.25rem;
  width: 1rem;
  height: 0.125rem;
  background: #090909;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .faq-list__item-question::before,
  .faq-list__item-question::after {
    top: 1.5rem;
    width: 1.25rem;
  }
}

.faq-list__item-question::after {
  transform: rotate(90deg);
}

.faq-list__item-question.is-open::after {
  transform: rotate(0deg);
}

.faq-list__item-question span {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .faq-list__item-question span {
    margin-right: 1.25rem;
  }
}

.faq-list__item-answer {
  padding: 0.9375rem 1.875rem 0.9375rem 2.5rem;
  display: none;
  font-size: 1rem;
  text-indent: -1.25rem;
  background-color: initial;
}
@media screen and (min-width: 768px) {
  .faq-list__item-answer {
    padding: 1.25rem 2.5rem 0.9375rem 5rem;
  }
}

.faq-list__item-answer span {
  margin-right: 1.25rem;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .faq-list__item-answer span {
    margin-right: 1.25rem;
  }
}

.page-mv {
  margin-top: 3.125rem;
  position: relative;
  height: 17vh;
}
@media screen and (min-width: 768px) {
  .page-mv {
    height: 45vh;
    margin-top: 5.4375rem;
    min-height: 19.8125rem;
  }
}

.page-mv__inner {
  height: inherit;
  min-height: inherit;
  overflow: hidden;
}

.page-mv__title-wrap {
  position: absolute;
  z-index: 2;
  top: 42%;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 0 1.875rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-mv__title-wrap {
    padding: 0 3.875rem;
  }
}

.page-mv__main-title {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 700;
  font-family: "IBM Plex Sans JP", sans-serif;
  text-shadow: 0 0 0.75rem #a38f61;
}
@media screen and (min-width: 768px) {
  .page-mv__main-title {
    font-size: 2rem;
    line-height: 2;
  }
}

.page-mv__img,
.page-mv__img img {
  height: inherit;
  min-height: inherit;
}

.page-mv__img img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.page-news-container {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .page-news-container {
    flex-direction: row;
    justify-content: space-between;
  }
}

.page-news-container__post-box {
  padding: 6.375rem 0 5.875rem 0;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.service-list {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .service-list {
    margin-top: 2.5rem;
    max-width: 46.25rem;
    margin-inline: auto;
  }
}

.service-list__item {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 1.25rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .service-list__item {
    flex-direction: row;
  }
}

.service-list__item-description {
  width: 100%;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  background-color: #e7ecf2;
  padding: 1.125rem 0;
  border-radius: 1.25rem 1.25rem 0rem 0rem;
}
@media screen and (min-width: 768px) {
  .service-list__item-description {
    border-radius: 1.25rem 0rem 0rem 1.25rem;
    width: 50%;
  }
}

.service-list__item-description--denki {
  background-color: #89c1bd;
}

.service-list__item-price {
  width: 100%;
  padding: 0.75rem 1.1875rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 0 1.25rem 1.25rem;
  border: 2px solid #e7ecf2;
}
@media screen and (min-width: 768px) {
  .service-list__item-price {
    justify-content: space-between;
    width: 50%;
    border-radius: 0 1.25rem 1.25rem 0;
  }
}

.service-list__item-amount {
  font-size: 1rem;
}

.service-list__item-amount--estimate {
  font-style: normal;
}

.service-list__item-tax {
  font-size: 0.625rem;
}

.service-text__wrapper {
  margin-top: 40px;
}
.service-text {
  text-align: center;
  font-size: 14px;
}
.service-img {
  max-width: 264px;
  margin-top: 40px;
  margin-inline: auto;
}
.service-img img {
  object-fit: cover;
  aspect-ratio: 264/374;
}
.page-price {
  padding-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .page-price {
    padding-bottom: 5rem;
  }
}

.page-section-title {
  display: block;
  position: relative;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 3px;
}
@media screen and (min-width: 768px) {
  .page-section-title {
    display: inline;
    font-size: 1.375rem;
    padding-left: 3.75rem;
    padding-right: 3.75rem;
  }
}

.page-section-title::before,
.page-section-title::after {
  content: "";
  display: block;
  width: 28px;
  height: 4px;
  background-color: #090909;
  position: absolute;
  top: 0;
  top: 50%;
  transform: translateY(-50%);
}

.page-section-title::before {
  left: 0;
}

.page-section-title::after {
  right: 0;
}

.page-section-title--center::before,
.page-section-title--center::after {
  content: none;
}

.page-tab {
  margin-top: 2.25rem;
}
@media screen and (min-width: 768px) {
  .page-tab {
    margin-top: 2.5rem;
  }
}

.page-tab__description {
  letter-spacing: 0.1em;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .page-tab__description {
    text-align: center;
  }
}

.page-tab__list {
  display: grid;
  gap: 0.625rem;
  grid-template-columns: repeat(1, 1fr);
  margin-top: 2.25rem;
  max-width: 95%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .page-tab__list {
    margin-top: 2.3125rem;
    grid-template-columns: repeat(4, 1fr);
  }
}

.page-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .page-table {
    width: 61%;
  }
}
.page-table__header {
  background-color: #f5f5f5;
  font-size: 0.75rem;
  line-height: 1.3;
}
.page-table__header-cell {
  padding: 0.625rem;
  text-align: left;
  font-weight: bold;
  border: 1px solid #ddd;
}
.page-table__header-cell:last-child {
  width: 50%;
}
.page-table__body {
  font-size: 0.75rem;
  font-weight: 700;
}
.page-table__body .page-table__row {
  background-color: #fff;
}
.page-table__cell {
  padding: 0.5625rem;
  border: 1px solid #ddd;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .page-table {
    font-size: 14px;
  }
  .page-table__header-cell,
  .page-table__cell {
    padding: 1rem;
  }
}

.price-aircon {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .price-aircon {
    margin-top: 3rem;
  }
}

.price-area {
  padding-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .price-area {
    padding-bottom: 2.6875rem;
  }
}

.price-area__wrapper {
  content: "";
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  padding-top: 1.0625rem;
  padding-bottom: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .price-area__wrapper {
    padding-top: 80px;
    padding-bottom: 2.4375rem;
  }
}
.price-area__description {
  font-size: 14px;
  text-align: center;
  font-weight: 700;
  margin-top: 20px;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .price-area__description {
    font-size: 18px;
    margin-top: 40px;
  }
}
.price-area-list {
  margin-top: 1.4375rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 0.625rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .price-area-list {
    gap: 1.5rem;
    margin-top: 10px;
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 730px;
    justify-content: flex-start;
  }
}

.price-area-list__item {
  width: -moz-fit-content;
  width: fit-content;
}

.price-area-list__item-title {
  font-size: 15px;
  line-height: 1.5;
  background-color: #0c5ba8;
  color: #fff;
  display: inline-block;
  padding: 0 1.875rem;
  border-radius: 0.1875rem 0.1875rem 0 0;
}

.price-area-list__item-text {
  padding: 0 1.95rem;
  border: 2px solid #0c5ba8;
  font-size: 14px;
  border-radius: 0 0.1875rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .price-area-list__item-text {
    line-height: 3.7;
    text-align: center;
    font-weight: 700;
  }
}

.price-area__text {
  font-size: 14px;
  line-height: 2;
  margin-top: 1rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .price-area__text {
    margin-top: 0.625rem;
  }
}

.price-area__img {
  width: 100%;
  max-width: 21.375rem;
  margin-top: 1.5rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .price-area__img {
    max-width: 45.625rem;
    margin-top: 0.625rem;
  }
}

.price-area__img img {
  aspect-ratio: 342/374;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .price-area__img img {
    aspect-ratio: 730/374;
  }
}

.price-list {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 2.3125rem;
  gap: 1.3125rem;
}
@media screen and (min-width: 768px) {
  .price-list {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 2.875rem;
    margin-inline: auto;
  }
}

.price-list__item {
  padding: 1rem 0.875rem 0.6875rem 0.875rem;
  display: grid;
  grid-template-areas: "price-title price-image" "price-description price-description" "price-price price-price";
  grid-template-columns: 1fr 1fr;
  background-color: #fff;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25))
    drop-shadow(0px 4px 4px rgba(141, 55, 41, 0.1));
  min-height: 16.625rem;
}

.price-list__item-title {
  grid-area: price-title;
  line-height: 1.5;
  color: #f6bb06;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-size: 1.25rem;
}

.price-list__item-image {
  grid-area: price-image;
  max-width: 100%;
  width: 6.875rem;
  margin-inline: auto;
  text-align: right;
}

.price-list__item-image img {
  aspect-ratio: 110/69;
  width: inherit;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.price-list__item:nth-child(2) figure {
  width: 5.25rem;
}

.price-list__item:nth-child(2) figure img {
  aspect-ratio: 84/91;
}

.price-list__item:nth-child(3) figure {
  width: 3.4375rem;
}

.price-list__item:nth-child(3) figure img {
  aspect-ratio: 55/99;
}

.price-list__item:nth-child(4) figure {
  width: 5.4375rem;
}

.price-list__item:nth-child(4) figure img {
  aspect-ratio: 87/87;
}

.price-list__item-description {
  grid-area: price-description;
}

.price-list__item-price {
  grid-area: price-price;
  color: #e98d04;
  font-weight: 700;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-style: italic;
  align-self: end;
  font-size: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.price-list__item-tax {
  font-size: 0.625rem;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-style: normal;
  color: #090909;
  font-weight: 400;
}

.price-table {
  margin-top: 1.8125rem;
  width: 100%;
  border-collapse: collapse;
  background-color: #f8f4eb;
  border: 1px solid #ddd;
}
@media screen and (min-width: 768px) {
  .price-table {
    margin-top: 1.5rem;
    width: 60.9544468547%;
    margin-inline: auto;
  }
}

.price-table__header-cell {
  background-color: #f0f0f0;
  font-weight: bold;
  text-align: left;
  padding: 8px;
  border: 1px solid #ddd;
}

.price-table__cell {
  padding: 8px;
  border: 1px solid #ddd;
  text-align: left;
}

.price {
  padding-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .price {
    padding-bottom: 3rem;
  }
}

.price__section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .price__section {
    padding-top: 3rem;
    padding-bottom: 2.5rem;
  }
}

.price__btn {
  text-align: center;
  margin-top: 1.75rem;
}
@media screen and (min-width: 768px) {
  .price__btn {
    margin-top: 2rem;
  }
}

.price__image {
  width: 100%;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .price__image {
    margin-top: 1.5rem;
    max-width: 46.8125rem;
  }
}

.price__image img {
  aspect-ratio: 749/600;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.price__notice {
  margin-top: 1rem;
  font-size: 0.75rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .price__notice {
    margin-top: 1.5rem;
    font-size: 0.875rem;
  }
}

.price__notice:nth-child(2) {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .price__notice:nth-child(2) {
    margin-top: 1.5rem;
  }
}

.concept__slider {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  background: #eaeeef;
}
.concept__slider-item {
  width: 200px !important;
}
.concept__slider-item--small {
  width: 104px !important;
}

@media screen and (min-width: 768px) {
  .concept__slider-item {
    width: 350px !important;
  }
  .concept__slider-item--small {
    width: 177px !important;
    height: 100%;
  }
}

.concept__slider-item img {
  aspect-ratio: 343/237;
  -o-object-fit: cover;
  object-fit: cover;
}
.concept__slider-item--small img {
  aspect-ratio: 177/237;
}
.concept__slider {
  margin-top: 5rem;
}

.privacy-policy {
  margin-top: 6.25rem;
}

.privacy-policy__inner {
  margin-top: 6.25rem;
  padding: 0 1.25rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .privacy-policy__inner {
    padding: 0 1.5625rem;
  }
}

.privacy-policy__introduction {
  font-size: 1rem;
  line-height: 2;
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .privacy-policy__introduction {
    font-size: 1.125rem;
  }
}

.privacy-policy__items {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid #ccc;
}
@media screen and (min-width: 768px) {
  .privacy-policy__items {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
  }
}

.privacy-policy__item {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #ccc;
}
@media screen and (min-width: 768px) {
  .privacy-policy__item {
    padding-bottom: 2.5rem;
  }
}

.privacy-policy__item + .privacy-policy__item {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .privacy-policy__item + .privacy-policy__item {
    margin-top: 2.5rem;
  }
}

.privacy-policy__term {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .privacy-policy__term {
    font-size: 1.25rem;
  }
}

.privacy-policy__description {
  margin-top: 0.9375rem;
  font-size: 1rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .privacy-policy__description {
    font-size: 1.125rem;
  }
}

.privacy-policy__description-numbers {
  counter-reset: number;
}

.privacy-policy__description-text + .privacy-policy__description-numbers,
.privacy-policy__description-text + .privacy-policy__description-items {
  margin-top: 0.9375rem;
}

.privacy-policy__description-number {
  padding-left: 0.9375rem;
  text-indent: -0.9375rem;
}

.privacy-policy__description-number + .privacy-policy__description-number,
.privacy-policy__description-item + .privacy-policy__description-item {
  margin-top: 0.9375rem;
}

.privacy-policy__description-number::before {
  content: counter(number) ". ";
  counter-increment: number;
}

.privacy-policy__description-items {
  padding-left: 1.25rem;
  list-style: disc;
}

.reason-list {
  display: grid;
  gap: 1.5625rem;
  grid-template-columns: repeat(1, 1fr);
  counter-reset: number;
  margin-top: 1.375rem;
}
@media screen and (min-width: 768px) {
  .reason-list {
    -moz-column-gap: 1.5625rem;
    column-gap: 1.5625rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 1.5rem;
  }
}

.reason-list__item-img {
  width: 100%;
}

.reason-list__item-img img {
  width: 100%;
  aspect-ratio: 287/155;
  -o-object-fit: cover;
  object-fit: cover;
}

.reason-list__item-number {
  position: relative;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.08em;
  text-align: center;
}

.reason-list__item-number::after {
  counter-increment: number;
  content: counter(number);
}

.reason-list__item-title {
  margin-top: 0.75rem;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.15px;
}
@media screen and (min-width: 768px) {
  .reason-list__item-title {
    margin-top: 0.625rem;
  }
}

.reason-list__item-text {
  margin-top: 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 1.5px;
}
@media screen and (min-width: 768px) {
  .reason-list__item-text {
    line-height: 2;
    margin-top: 0.9375rem;
    font-size: 1rem;
  }
}

.reason {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .reason {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.section-title__wrapper {
  position: relative;
  margin-left: -5%;
}
@media screen and (min-width: 768px) {
  .section-title__wrapper {
    margin-left: 0;
  }
}
@media screen and (min-width: 768px) {
  .section-title__wrapper::after {
    height: 6px;
  }
}

@media screen and (min-width: 768px) {
  .section-title__wrapper::before {
    height: 6px;
  }
}

.section-title {
  font-size: 3rem;
  line-height: 1.25;
  text-align: center;
  text-transform: capitalize;
  font-family: Libre Baskerville, serif;
  font-weight: 300;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .section-title {
    font-size: 70px;
  }
}

.section-title span {
  color: #0c5ba8;
}
.section-title__wrapper .section-title__sub {
  font-size: 22px;
  font-weight: 700;
  line-height: 2;
  text-align: center;
  display: block;
  color: #262626;
  font-family: "IBM Plex Sans JP", sans-serif;

}
.top-banner-list {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .top-banner-list {
    flex-direction: row;
    gap: 2.5rem;
  }
}

.top-banner-list__item-link {
  max-width: 100%;
  aspect-ratio: 345/143;
}
@media screen and (min-width: 768px) {
  .top-banner-list__item-link {
    aspect-ratio: 580/240;
  }
}

.top-banner-list__item-link img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.top-banner {
  padding: 2.5rem 0rem 12.0625rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-banner {
    padding: 8.75rem 0;
  }
}

.top-banner::before {
  position: absolute;
  content: "";
  background-image: url(../images/top/top-bg.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.top-news-container {
  display: flex;
}

.top-news-container__image-box {
  width: 600px;
  background-image: url(../images/top/top01.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.top-news-container__post-box {
  padding: 6.375rem 0 5.875rem 0;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.voice {
  padding-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .voice {
    padding-bottom: 4rem;
  }
}

.voice__btn {
  margin-top: 1.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .voice__btn {
    margin-top: 2.5rem;
  }
}

.voice__wrapper {
  margin-top: 2.3125rem;
  padding: 0.875rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .voice__wrapper {
    margin-top: 1.5rem;
  }
}

.voice__wrapper .ti-inner {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.about__aircon {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .about__aircon {
    margin-top: 3rem;
  }
}

.about__concents,
.about__switch,
.about__antenna {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .about__concents,
  .about__switch,
  .about__antenna {
    margin-top: 2.5rem;
  }
}

.about__antenna {
  padding-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .about__antenna {
    padding-bottom: 5rem;
  }
}

.about__content-wrapper {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .about__content-wrapper {
    gap: 3rem;
  }
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .about__content {
    flex-direction: row;
    gap: 1.5rem;
  }
}

.about__content-img {
  max-width: 100%;
  width: 100%;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .about__content-img {
    width: 28.25rem;
  }
}

@media screen and (min-width: 768px) {
  .about__content-img--rectangle {
    width: 13.25rem;
  }
}

.about__content-img img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 452/260;
  margin-inline: auto;
}

.about__content-img--rectangle img {
  aspect-ratio: 212/277;
}

.about__content-text-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.125;
}

.about__content-text-description {
  font-size: 0.9375rem;
  line-height: 1.2666666667;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .about__content-text-description {
    margin-top: 2rem;
  }
}

.worries__inner {
  padding-right: 0.125rem;
  padding-left: 0.125rem;
}
@media screen and (min-width: 768px) {
  .worries__inner {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

.worries__content {
  max-width: 44.5rem;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background-color: #fff;
  padding: 2.25rem 0;
  border: 3px solid #a4bc7d;
  border-radius: 1.25rem;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .worries__content {
    margin-top: 2.625rem;
    gap: 4.5rem;
    padding: 0.9375rem 6.125rem 0.9375rem 1.6875rem;
  }
}

.worries__content--denki {
  border: 3px solid #89c1bd;
}

.worries__content-img {
  width: 6.125rem;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .worries__content-img {
    width: 10.9375rem;
  }
}

.worries__content-img img {
  aspect-ratio: 97/112;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .worries__content-img img {
    aspect-ratio: 175/200;
  }
}

.worries__list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
@media screen and (min-width: 768px) {
  .worries__list {
    gap: 1.375rem;
  }
}

.worries__item {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .worries__item {
    font-size: 1.25rem;
  }
}

.worries__item span {
  color: #e98d04;
  font-weight: 700;
}

.worries__description {
  background-color: #e98d04;
  padding: 1.0625rem 0.875rem 1.5rem 0.875rem;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .worries__description {
    padding: 1.6875rem 1.875rem 1.875rem 1.6875rem;
    margin-top: 2.625rem;
  }
}

.worries__description--denki {
  background-color: #89c1bd;
}

.worries__description-text {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.9444444444;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .worries__description-text {
    font-size: 1.375rem;
    line-height: 2.0454545455;
  }
}

.worries__btn {
  text-align: center;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .worries__btn {
    margin-top: 2rem;
  }
}

.pagenavi__inner {
  margin: auto;
  padding: 0 1.25rem;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .pagenavi__inner {
    padding: 0 1.5625rem;
    max-width: 75rem;
  }
}

.pagenavi .wp-pagenavi {
  clear: both;
  text-align: center;
}

.pagenavi .wp-pagenavi a,
.pagenavi .wp-pagenavi span {
  padding: 0.625rem 1.3125rem;
  margin: 0 0.1875rem;
  font-size: 1.125rem;
  line-height: 1;
  white-space: nowrap;
  border: 1px solid #f4f7f8;
  transition: 0.3s;
  border-radius: 8px;
  font-family: "Alata", serif;
}

.pagenavi .wp-pagenavi a:hover {
  color: #fff;
  background-color: #090909;
  border-color: #090909;
  opacity: 1;
}

.pagenavi .wp-pagenavi .current {
  color: #fff;
  background-color: #090909;
  border-color: #090909;
}
/*# sourceMappingURL=style.css.map */
