/* トップページ
=========================================================================
=========================================================================*/
/* FV
-----------------------------------------------------------*/
.fv {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.fv .slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.fv .slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}

.fv .slide img.active {
  opacity: 1;
  z-index: 1;
}

.fv h1 {
  position: absolute;
  bottom: 1em;
  left: 0;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 58px;
  color: #148571;
}

@media screen and (max-width:1140px) {
  .fv h1 {
    font-size: calc(58 / 1140 * 100vw);
  }
}

.fv h1 span {
  position: relative;
  display: inline-block;
  margin-top: .5em;
  padding: .5em .25em .5em 1em;
  z-index: 2;
}

.fv h1 span::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  transform: translateX(-50%);
  z-index: -1;
}

/* 共通パーツ
-----------------------------------------------------------*/
a.button_link {
  position: relative;
  display: block;
  width: 300px;
  height: 70px;
  font-weight: 600;
  font-size: 20px;
  line-height: 70px;
  text-align: center;
  color: #FFF;
  border: 1px solid #302D2C;
  background-color: #302D2C;
  z-index: 2;
  transition: 0.3s;
}

@media(hover: hover) {
  a.button_link:hover {
    color: #302D2C;
  }
}

a.button_link::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #FFF;
  transform: scale(0, 1);
  transform-origin: left;
  z-index: -1;
  transition: 0.6s;
}

@media(hover: hover) {

  a.button_link:hover::after {
    transform: scale(1, 1);
  }
}

a.button_link .arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto 0;
  display: inline-block;
  width: 25px;
  height: 1px;
  border-radius: 9999px;
  background-color: #FFF;
  transition: 0.6s;
}

a.button_link .arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 7px;
  height: 1px;
  border-radius: 9999px;
  background-color: #FFF;
  transform: rotate(45deg);
  transform-origin: calc(100% - 0.5px) 50%;
  transition: 0.6s;
}

@media(hover: hover) {

  a.button_link:hover .arrow {
    right: 10px;
    background-color: #302D2C;
  }

  a.button_link:hover .arrow::before {
    background-color: #302D2C;
  }
}

/* スモールボタン */
a.button_link_small {
  position: relative;
  display: block;
  margin-top: 12px;
  padding-right: 25px;
  width: 190px;
  height: 40px;
  font-weight: 600;
  font-size: 16px;
  line-height: 40px;
  text-align: center;
  color: #FFF;
  border: 1px solid #302D2C;
  background-color: #302D2C;
  z-index: 2;
  transition: 0.3s;
}

@media(hover: hover) {
  a.button_link_small:hover {
    color: #302D2C;
  }
}

a.button_link_small::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #FFF;
  transform: scale(0, 1);
  transform-origin: left;
  z-index: -1;
  transition: 0.6s;
}

@media(hover: hover) {

  a.button_link_small:hover::after {
    transform: scale(1, 1);
  }
}

a.button_link_small .arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 12px;
  margin: auto 0;
  display: inline-block;
  width: 16px;
  height: 1px;
  border-radius: 9999px;
  background-color: #FFF;
  transition: 0.6s;
}

a.button_link_small .arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 7px;
  height: 1px;
  border-radius: 9999px;
  background-color: #FFF;
  transform: rotate(30deg);
  transform-origin: calc(100% - 0.5px) 50%;
  transition: 0.6s;
}

@media(hover: hover) {

  a.button_link_small:hover .arrow {
    right: 10px;
    background-color: #302D2C;
  }

  a.button_link_small:hover .arrow::before {
    background-color: #302D2C;
  }
}

/* 会社概要
-----------------------------------------------------------*/
.about h2 {
  position: relative;
  padding: 55px 0 50px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.6em;
  text-align: center;
  color: #FFF;
  background-image: linear-gradient(-45deg, #138473, #44AD31);
}

.about h2 span.title_en {
  overflow: hidden;
  display: block;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  font-size: 30px;
}

.title_en span {
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
  white-space: pre;
}

.about h2::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: calc(500 / 1300 * 100%);
  height: 100%;
  background: url(../images/common/section_title_bg01.svg) top center no-repeat;
  background-size: contain;
}

.about h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(500 / 1300 * 100%);
  height: 100%;
  background: url(../images/common/section_title_bg02.svg) bottom center no-repeat;
  background-size: contain;
}

.about .philosophy {
  padding: 70px 20px;
  background: url(../images/index/philosophy_bg.jpg) center center no-repeat;
    background-size: cover;
}

.about .philosophy .container {
  position: relative;
  margin: 0 auto;
  padding: 50px 50px 50px 50px;
  max-width: 950px;
  background-color: rgba(255, 255, 255, 0.9);
}

.about .philosophy .container .text {
  margin: 0 auto;
  width: fit-content;
}

.about .philosophy .container p {
  margin-bottom: 2.5em;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 18px;
}

.about .philosophy .container a.button_link {
  position: absolute;
  bottom: -35px;
  right: -20px;
}

.about .point ul li figure {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background-color: #F8F6F1;
}

.about .point ul li:nth-child(2n) figure {
  flex-direction: row-reverse;
}

.about .point ul li figure img {
  width: 50%;
}

.about .point ul li figure figcaption {
  padding: 0 calc(110 / 1300 * 100%);
  width: 50%;
  height: 100%;
}

@media screen and (max-width:1140px) {
  .about .point ul li figure figcaption {
    padding: 0 calc(20 / 1140 * 100%);
  }
}

.about .point ul li figure figcaption h3 {
  position: relative;
  margin-bottom: 1em;
  width: fit-content;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 30px;
  z-index: 2;
}

@media screen and (max-width:1140px) {
  .about .point ul li figure figcaption h3 {
    font-size: calc(30 / 1140 * 100vw);
  }
}

.about .point ul li figure figcaption h3 span.underline {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 14px;
  background-color: #D7E3E5;
  transform: scale(0, 1);
	transform-origin: left;
  z-index: -1;
  transition: 0.6s;
}

.about .point ul li figure figcaption h3 span.underline.active {
  transform: scale(1, 1);
}

.about .point ul li figure figcaption h3 span.number {
  margin-right: 8px;
  font-family: "Roboto", sans-serif;
  font-size: 35px;
  color: #60B49F;
}

@media screen and (max-width:1140px) {
  .about .point ul li figure figcaption h3 span.number {
    font-size: calc(35 / 1140 * 100vw);
  }
}

.about .point ul li figure figcaption h3 strong {
  font-weight: 600;
  color: #148571;
}

/* サービス
-----------------------------------------------------------*/
.service {
  padding: 100px 0 0;
}

.service .inner {
  margin: 0 auto;
  max-width: 1100px;
}

@media screen and (max-width:1140px) {
  .service .inner {
    padding: 0 20px;
  }
}

h2.common_title {
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 50px;
  font-weight: 600;
  font-size: 30px;
}

h2.common_title span.title_en {
  position: relative;
  margin-right: 20px;
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  color: #148571;
}

h2.common_title span.title_en::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #148571;
}

.service ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.service ul li {
  width: calc(433 / 1300 * 100%);
}

.service ul li figure img {
  margin-bottom: 20px;
}

.service ul li figure figcaption {
  padding: 0 calc(36 / 433 * 100%);
}

.service ul li figure figcaption h3 {
  margin-bottom: 20px;
  padding: 8px;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 1.6em;
  text-align: center;
  color: #FFF;
  background-image: linear-gradient(-45deg, #138473, #44AD31);
}

.service ul li figure figcaption p {
  position: relative;
  margin-bottom: .5em;
  padding-left: 26px;
  font-weight: 600;
  font-size: 18px;
}

.service ul li figure figcaption p::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 100%;
  background: url(../images/index/service_icon_list.svg) center center no-repeat;
  background-size: contain;
}

.service .link {
  padding: 60px 20px;
  background-color: #F6F6F6;
}

.service .link a.button_link {
  margin: 0 auto;
}

/* 施工事例
-----------------------------------------------------------*/
.works {
  padding: 100px 0;
}

.works .inner {
  margin: 0 auto;
  max-width: 1100px;
}

@media screen and (max-width:1140px) {
  .works .inner {
    padding: 0 20px;
  }
}

/* スワイパー */
.works .works_swiper {
  position: relative;
  padding: 0 20px;
}
.works ul.swiper-wrapper {
  display: flex;
  align-items: stretch !important;
  margin-bottom: 60px;
  text-align: left;
}

.works ul.swiper-wrapper li {
  position: relative;
  width: calc(360 / 1200 * 100%);
}

.works ul.swiper-wrapper li picture {
  overflow: hidden;
  margin-bottom: 15px;
}

.works ul.swiper-wrapper li picture img {
  object-fit: cover;
  aspect-ratio: 7 / 5;
  transition: 0.6s;
}

@media(hover: hover) {
  .works ul.swiper-wrapper li:hover picture img {
    transform: scale(1.05, 1.05);
    opacity: .7;
  }
}

.works ul.swiper-wrapper li .cat {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 10px;
  margin-bottom: 10px;
}

.works ul.swiper-wrapper li .cat span {
  padding: 5px 15px;
  color: #FFF;
  font-size: 13px;
  line-height: 1em;
  background-color: #148571;
  border-radius: 50px;
}

.works ul.swiper-wrapper li h3 {
  font-weight: 600;
  font-size: 20px;
}

.works ul.swiper-wrapper li h3 span {
  position: relative;
  padding-right: 42px;
}

.works ul.swiper-wrapper li h3 span::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 27px;
  height: 100%;
  background: url(../images/index/works_icon_link.svg) no-repeat;
  background-size: contain;
  transition: 0.6s;
}

@media(hover: hover) {
  .works ul.swiper-wrapper li:hover h3 span::after {
    right: -5px;
  }
}

.swiper-button-prev,
.swiper-button-next {
  width: 60px;
  height: 60px;
  margin-top: -30px;
}

.swiper-button-prev,
.swiper-button-next {
  background: url(../images/index/button_swiper.svg) no-repeat center center / contain;
  transition: 0.6s;
}

.swiper-button-next {
  transform: scale(-1, 1);
}

@media(hover: hover) {

  .swiper-button-prev:hover,
  .swiper-button-next:hover {
    opacity: .8;
  }
}

.swiper-button-prev::after {
  content: "";
}

.swiper-button-next::after {
  content: "";
}

.works .inner a.button_link {
  margin: 0 auto;
}

/* お客様の声
-----------------------------------------------------------*/
.reviews {
  padding: 100px 0;
  background-color: #F8F6F1;
}

.reviews .inner {
  margin: 0 auto;
  max-width: 1100px;
}

@media screen and (max-width:1140px) {
  .reviews .inner {
    padding: 0 20px;
  }
}

h2.reviews_title {
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 50px;
  font-weight: 600;
  font-size: 30px;
}

h2.reviews_title span.title_en {
  position: relative;
  margin-right: 20px;
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  color: #CCB56B;
}

h2.reviews_title span.title_en::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #CCB56B;
}

.reviews ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.reviews ul li {
  padding: 30px;
  width: calc(346 / 1100 * 100%);
  background-color: #FFF;
  border-radius: 10px;
}

.reviews ul li figure {
  display: flex;
  align-items: center;
  gap: 0 calc(30 / 286 * 100%);
  margin-bottom: 25px;
}

.reviews ul li figure img {
  width: 90px;
  width: calc(90 / 286 * 100%);
}

.reviews ul li figure figcaption {
  font-weight: 500;
  font-size: 18px;
}

/* 参考価格
-----------------------------------------------------------*/
.price {
  padding: 100px 0;
}

.price .inner {
  margin: 0 auto;
  max-width: 1100px;
}

@media screen and (max-width:1140px) {
  .price .inner {
    padding: 0 20px;
  }
}

.price ul {
  display: flex;
  flex-wrap: wrap;
  gap: 100px calc(70 / 1100 * 100%);
}

.price ul li {
  width: calc(320 / 1100 * 100%);
}

.price ul li figure img {
  margin-bottom: .5em;
}

.price ul li h3 {
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 18px;
}

.price ul li p.details {
  margin-bottom: 5px;
  font-size: 15px;
}

.price ul li p.cost {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 .5em;
}

.price ul li p.cost .title {
  padding: .5em 1em;
  font-weight: 500;
  font-size: 13px;
  line-height: 1em;
  color: #FFF;
  background-color: #D5682E;
}

.price ul li p.cost .value {
  font-weight: 500;
  font-size: 23px;
}

/* お問い合わせ
-----------------------------------------------------------*/
.inquiry {
  padding: 0 0 100px;
}

.inquiry h2 {
  position: relative;
  margin-bottom: 60px;
  padding: 50px 0 50px;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.6em;
  text-align: center;
  color: #FFF;
  background-image: linear-gradient(-45deg, #138473, #44AD31);
}

.inquiry h2 span.title_en {
  overflow: hidden;
  display: block;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  font-size: 30px;
}

.title_en span {
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
  white-space: pre;
}

.inquiry h2::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: calc(500 / 1300 * 100%);
  height: 100%;
  background: url(../images/common/section_title_bg01.svg) top center no-repeat;
  background-size: contain;
}

.inquiry h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(500 / 1300 * 100%);
  height: 100%;
  background: url(../images/common/section_title_bg02.svg) bottom center no-repeat;
  background-size: contain;
}

.inquiry .inner {
  margin: 0 auto;
  max-width: 775px;
}

@media screen and (max-width:815px) {
  .inquiry .inner {
    padding: 0 20px;
  }
}

/* フォーム */
.inquiry table {
  margin-bottom: 80px;
  width: 100%;
}

.inquiry table th {
  padding-top: .75em;
  width: calc(240 / 775 * 100%);
  font-weight: 500;
  font-size: 18px;
  line-height: 1em;
}

.inquiry table th span.required {
  margin-right: 20px;
  padding: 2px 15px;
  font-size: 13px;
  color: #FFF;
  background-color: #D85E6D;
  border-radius: 5px;
}

.inquiry table th span.item {

}

.inquiry table td {
  padding-bottom: 40px;
  width: calc(500 / 775 * 100%);
}

.inquiry table td input[type="text"],
.inquiry table td input[type="email"],
.inquiry table td input[type="tel"],
.inquiry table td textarea {
  padding: .25em .5em;
  width: 100%;
  border: 1px solid #C3C3C3;
  border-radius: 5px;
}

.inquiry table td label {
  margin-right: 20px;
}

input[type="checkbox"] {
  appearance: auto;
  /* 標準表示に戻す */
  -webkit-appearance: auto;
  /* Safari用 */
  -moz-appearance: auto;
  /* Firefox用 */
  accent-color: initial;
  /* カスタム色があればリセット */
}

.inquiry table td .wpcf7-not-valid-tip {
  color: #D85E6D;
}

/* 20251023追加 */
input.error,
textarea.error {
  border: 2px solid #d00;
}
/* 20251023追加 */
.error_message {
  color: #d00;
  font-size: 0.9rem;
}

/* 送信ボタン */
.inquiry .button_layout.confirm {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 0;
}

.inquiry .button .arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto 0;
  display: inline-block;
  width: 25px;
  height: 1px;
  border-radius: 9999px;
  background-color: #FFF;
  transition: 0.6s;
}

.inquiry .button#back-button .arrow {
  right: auto;
  left: 20px;
  transform: scaleX(-1);
}

.inquiry .button .arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 7px;
  height: 1px;
  border-radius: 9999px;
  background-color: #FFF;
  transform: rotate(45deg);
  transform-origin: calc(100% - 0.5px) 50%;
  transition: 0.6s;
}

@media(hover: hover) {

  .inquiry .button:hover .arrow {
    right: 10px;
    background-color: #302D2C;
  }

  .inquiry .button#back-button:hover .arrow {
    left: 10px;
    background-color: #302D2C;
  }

  .inquiry .button:hover .arrow::before {
    background-color: #302D2C;
  }
}

.inquiry .button {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 300px;
  height: 70px;
  font-weight: 600;
  font-size: 20px;
  line-height: 70px;
  text-align: center;
  color: #FFF;
  border: 1px solid #302D2C;
  background-color: #302D2C;
  cursor: pointer;
  z-index: 2;
  transition: 0.3s;
}

@media(hover: hover) {
  .inquiry .button:hover {
    color: #302D2C;
  }
}

.inquiry .button::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #FFF;
  transform: scale(0, 1);
  transform-origin: left;
  z-index: -1;
  transition: 0.6s;
}

@media(hover: hover) {
  .inquiry .button:hover::after {
    transform: scale(1, 1);
  }
}

.inquiry input.wpcf7-submit {
  width: 100%;
  color: #FFF;
  transition: 0.3s;
}

@media(hover: hover) {
  .inquiry input.wpcf7-submit:hover {
    color: #302D2C;
  }
}

/*  スマホ（767px以下）
=========================================================================
=========================================================================*/
@media screen and (max-width:767px) {
  /* FV
  -----------------------------------------------------------*/
  .fv {
    height: calc(90vh - 70px);
  }

  .fv h1 {
    font-size: 40px;
  }

  .fv h1 span {
    margin-top: .35em;
    padding: .5em .5em .5em .5em;
  }

  /* 共通パーツ
  -----------------------------------------------------------*/
  a.button_link {
    height: 60px;
    font-size: 18px;
    line-height: 60px;
  }

  /* スモールボタン */
  a.button_link_small {
    width: 190px;
    height: 33px;
    font-size: 14px;
    line-height: 33px;
  }

  /* 会社概要
  -----------------------------------------------------------*/
  .about h2 {
    padding: 35px 10px;
    font-size: 22px;
  }

  .about h2 span {
    font-size: 20px;
  }

  .about h2::before {
    width: calc(250 / 390 * 100%);
  }

  .about h2::after {
    width: calc(250 / 390 * 100%);
  }

  .about .philosophy {
    padding: 50px 20px 85px;
  }

  .about .philosophy .container {
    padding: 30px 25px 20px;
  }

  .about .philosophy .container p {
    font-size: 16px;
  }

  .about .philosophy .container a.button_link {
    bottom: -35px;
    right: 0;
    left: 0;
    margin: 0 auto;
  }

  .about .point ul li figure img {
    width: 100%;
  }

  .about .point ul li figure figcaption {
    padding: 35px 20px;
    width: 100%;
  }

  .about .point ul li figure figcaption h3 {
    font-size: 25px;
  }


  .about .point ul li figure figcaption h3 span.number {
    font-size: 30px;
  }

  /* サービス
  -----------------------------------------------------------*/
  .service {
    padding: 60px 0 0;
  }


  h2.common_title {
    margin-bottom: 30px;
    font-size: 25px;
  }

  h2.common_title span.title_en {
    margin-right: 10px;
    font-size: 18px;
  }

  .service ul {
    margin-bottom: 0;
  }

  .service ul li {
    width: 100%;
  }

  .service ul li figure figcaption {
    padding: 0 20px 20px;
  }

  .service ul li figure figcaption h3 {
    margin-bottom: 10px;
    font-size: 22px;
  }

  .service ul li figure figcaption p {
    font-size: 16px;
  }

  .service .link {
    padding: 30px 20px;
  }

  /* 施工事例
  -----------------------------------------------------------*/
  .works {
    padding: 60px 0 40px;
  }

  /* スワイパー */
  .works .works_swiper {
    padding: 0 20px;
  }

  .works ul.swiper-wrapper li .cat span {
    padding: 5px 10px 3px;
    font-size: 10px;
  }

  .works ul.swiper-wrapper li h3 {
    font-size: 18px;
  }

  .swiper-button-prev {
    left: 0;
  }

  .swiper-button-next {
    right: 0;
  }

  /* お客様の声
  -----------------------------------------------------------*/
  .reviews {
    padding: 60px 0;
  }

  h2.reviews_title {
    margin-bottom: 30px;
    font-size: 25px;;
  }

    h2.common_title span.title_en {
    margin-right: 10px;
    font-size: 18px;
  }

  .reviews ul {
    gap: 20px 0
  }

  .reviews ul li {
    padding: 30px 25px;
    width: 100%;
  }

  .reviews ul li figure img {
    width: 70px;
  }

  .reviews ul li figure figcaption {
    font-size: 16px;
  }

  /* 参考価格
  -----------------------------------------------------------*/
  .price {
    padding: 60px 0;
  }

  .price ul {
    gap: 40px 0;
  }

  .price ul li {
    width: 100%;
  }

  .price ul li h3 {
    margin-bottom: 0;
    font-size: 18px;
  }

  .price ul li p.details {
    font-size: 13px;
  }

  .price ul li p.cost .title {
    font-size: 12px;
  }

  .price ul li p.cost .value {
    font-weight: 500;
    font-size: 20px;
  }

  /* お問い合わせ
  -----------------------------------------------------------*/
  .inquiry {
    padding: 0 0 60px;
  }

  .inquiry h2 {
    margin-bottom: 50px;
    padding: 35px 10px;
    font-size: 22px;
  }

  .inquiry h2 span {
    font-size: 20px;
  }

  .inquiry h2::before {
    width: calc(250 / 390 * 100%);
  }

  .inquiry h2::after {
    width: calc(250 / 390 * 100%);
  }

  /* フォーム */
  .inquiry table {
    display: block;
    margin-bottom: 50px;
  }

  .inquiry table th {
    display: block;
    padding: 0 0 15px;
    width: 100%;
    font-size: 16px;
  }

  .inquiry table td {
    padding-bottom: 30px;
    display: block;
    width: 100%;
  }

  .inquiry table td input[type="text"],
  .inquiry table td input[type="email"],
  .inquiry table td input[type="tel"],
  .inquiry table td textarea {
    padding: .25em .5em;
    font-size: 16px;
  }


}

/*  スマホ（480px以下）
=========================================================================
=========================================================================*/
@media screen and (max-width:480px) {

}
