@charset "UTF-8";
/*----------------- 共通 -------------------*/
/*-----------------------------------------
    color
-----------------------------------------*/
/*-----------------------------------------
    font
-----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/*-----------------------------------------
    メディアクエリ
-----------------------------------------*/
/*-----------------------------------------

リセット

----------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
p {
  padding: 0;
  margin: 0;
  font-weight: normal;
  letter-spacing: 0.05rem;
}

#alttext-container {
  display: none !important;
}

/*-----------------------------------------

全体指定

----------------------------------------*/
.inner {
  width: 1080px;
  margin: 0 auto;
  max-width: 85%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .inner {
    width: 100%;
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
}

body {
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  background: #fff;
  color: #000;
}

img {
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

@media (min-width: 767px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
li {
  list-style: none;
}

dt, dd {
  margin: 0;
}

.sp-only {
  display: none;
}
@media (max-width: 767px) {
  .sp-only {
    display: block;
  }
}

.pc-only {
  display: block;
}
@media (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  width: 220px;
  height: 50px;
  line-height: 50px;
  background: #EC632C;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}
@media (max-width: 767px) {
  .btn {
    width: 300px;
  }
}
.btn:hover {
  opacity: 0.6;
}
.btn .img {
  margin-right: 5px;
  width: 26px;
  line-height: 1;
}
.btn__mail {
  background: #EC632C;
  font-size: 16px;
}

/*-----------------------------------------
    sideFix
-----------------------------------------*/
.sideFix {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease 0s;
}
.sideFix.is-show {
  opacity: 1;
  visibility: visible;
}
.sideFix a {
  display: block;
  border-radius: 10px 0 0 10px;
  background: #EC632C;
  padding: 1rem;
  z-index: 9;
  transition: all 0.3s ease 0s;
}
.sideFix a:hover {
  opacity: 0.6;
}
.sideFix a.mail {
  background: #26C745;
}
.sideFix__content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
  padding: 0.5rem;
}
@media (max-width: 767px) {
  .sideFix__content {
    padding: 0;
  }
}
.sideFix__content .img {
  width: clamp(20px, 2vw, 35px);
}
@media (max-width: 767px) {
  .sideFix__content .img {
    width: 30px;
  }
}
.sideFix__content .img img {
  vertical-align: bottom;
  line-height: 1em;
}
.sideFix__content span {
  display: block;
  font-size: clamp(16px, 1.6vw, 22px);
  letter-spacing: 0.1rem;
  writing-mode: vertical-rl;
  color: #fff;
  font-weight: 500;
}
@media (max-width: 767px) {
  .sideFix__content span {
    display: none;
  }
}

.footer {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__logo {
  width: 300px;
  display: block;
}

/*----------------- topページ -------------------*/
/*-----------------------------------------
    mv
-----------------------------------------*/
.mv {
  width: 100%;
}
@media (max-width: 767px) {
  .mv {
    height: auto;
    max-height: none;
  }
}
.mv .pc-img {
  width: 100%;
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .mv .pc-img {
    display: none;
  }
}
.mv .sp-video {
  display: none;
}
@media (max-width: 767px) {
  .mv .sp-video {
    width: 100%;
    display: block;
  }
}

/*-----------------------------------------
    case
-----------------------------------------*/
.case {
  padding-top: clamp(60px, 8vw, 100px);
  padding-bottom: clamp(80px, 9.5vw, 120px);
}
@media (max-width: 767px) {
  .case {
    padding-top: clamp(30px, 10.5vw, 80px);
    padding-bottom: clamp(40px, 10.5vw, 80px);
  }
}
.case__head {
  text-align: center;
  background: #26C745;
  padding: 2px;
}
@media (max-width: 767px) {
  .case__head {
    padding: 10px;
  }
}
.case__head h2 {
  font-size: clamp(22px, 2.4vw, 30px);
  color: #fff;
  font-weight: 500;
}
@media (max-width: 767px) {
  .case__head h2 {
    font-size: clamp(15px, 3vw, 22px);
  }
}
.case__content {
  margin-top: clamp(40px, 5vw, 60px);
}
@media (max-width: 767px) {
  .case__content {
    margin-top: clamp(30px, 4vw, 40px);
  }
}
.case__items {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 6.2vw, 80px);
}
@media (max-width: 767px) {
  .case__item {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}
.case__item .head {
  width: clamp(206px, 27vw, 340px);
}
@media (max-width: 767px) {
  .case__item .head {
    width: 500px;
    max-width: 100%;
  }
}
.case__item .head img {
  vertical-align: bottom;
  line-height: 1em;
}
.case__item .body {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(15px, 2.1vw, 30px);
}
@media (max-width: 767px) {
  .case__item .body {
    gap: 30px;
    flex-direction: column;
  }
}
.case__item .body .img {
  flex: 1;
  max-width: 32%;
}

.case__item .body .img img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  vertical-align: bottom;
}

@media (max-width: 767px) {
  .case__item .body .img {
    max-width: 100%;
    width: 100%;
  }

  .case__item .body .img img {
    aspect-ratio: 3 / 2;
  }
}

.card {
  display: flex;
  align-items: center;
  justify-content: center;
}
.card .img {
  max-width: 540px;
  width: 100%;
}
.card .img img {
  vertical-align: bottom;
  line-height: 1em;
}

/*-----------------------------------------
    reason
-----------------------------------------*/
.reason {
  padding-top: clamp(60px, 8vw, 100px);
  padding-bottom: clamp(80px, 9.5vw, 120px);
}
@media (max-width: 767px) {
  .reason {
    padding-top: clamp(30px, 10.5vw, 80px);
    padding-bottom: clamp(40px, 10.5vw, 80px);
  }
}
.reason__head {
  text-align: center;
  background: #EC632C;
  padding: 2px;
}
@media (max-width: 767px) {
  .reason__head {
    padding: 10px;
  }
}
.reason__head h2 {
  font-size: clamp(22px, 2.4vw, 30px);
  color: #fff;
  font-weight: 700;
}
@media (max-width: 767px) {
  .reason__head h2 {
    font-size: clamp(20px, 3vw, 22px);
  }
}
.reason__content {
  margin-top: clamp(40px, 5vw, 60px);
}
@media (max-width: 767px) {
  .reason__content {
    margin-top: clamp(30px, 4vw, 40px);
  }
}
.reason__items {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-direction: column;
  gap: clamp(60px, 8vw, 100px);
}
.reason__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 767px) {
  .reason__item {
    flex-direction: column;
  }
}
.reason__item:nth-child(even) {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .reason__item:nth-child(even) {
    flex-direction: column;
  }
}
.reason__item .left {
  max-width: 500px;
  width: 55%;
}
@media (max-width: 767px) {
  .reason__item .left {
    width: 100%;
  }
}
.reason__item .left .img img {
  vertical-align: bottom;
  line-height: 1em;
}
.reason__item .right {
  max-width: 540px;
  width: 50%;
}
@media (max-width: 767px) {
  .reason__item .right {
    max-width: 500px;
    width: 100%;
  }
}
.reason__item .right .head {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
}
.reason__item .right .head .head-left {
  width: 60px;
}
@media (max-width: 767px) {
  .reason__item .right .head .head-left {
    width: clamp(60px, 21vw, 80px);
  }
}
.reason__item .right .head .head-right {
  text-align: center;
}
.reason__item .right .head .head-right .num {
  width: clamp(190px, 18vw, 258px);
}
@media (max-width: 767px) {
  .reason__item .right .head .head-right .num {
    width: clamp(235px, 61vw, 258px);
  }
}
.reason__item .right .head .head-right img {
  vertical-align: bottom;
  line-height: 1em;
}
.reason__item .right .head h3 {
  margin-top: 5px;
  font-size: clamp(20px, 1.7vw, 24px);
  font-weight: 700;
}
@media (max-width: 767px) {
  .reason__item .right .head h3 {
    font-size: clamp(26px, 7.5vw, 36px);
  }
}
.reason__item .body {
  margin-top: 20px;
}
.reason__item .body p {
  font-size: clamp(13px, 1.3vw, 16px);
}
@media (max-width: 767px) {
  .reason__item .body p {
    font-size: clamp(12px, 2vw, 14px);
  }
}

/*-----------------------------------------
    voice
-----------------------------------------*/
.voice {
  padding-top: clamp(60px, 8vw, 100px);
  padding-bottom: clamp(80px, 9.5vw, 120px);
  background: #FAFAEA;
}
@media (max-width: 767px) {
  .voice {
    padding-top: clamp(30px, 10.5vw, 80px);
    padding-bottom: clamp(40px, 10.5vw, 80px);
  }
}
.voice__inner {
  max-width: 95%;
  width: 1240px;
}
@media (max-width: 767px) {
  .voice__inner {
    max-width: 100%;
    width: 100%;
  }
}
.voice__head {
  text-align: center;
}
.voice__head h2 {
  font-size: clamp(22px, 2.4vw, 30px);
  color: #EC632C;
  font-weight: 700;
}
@media (max-width: 767px) {
  .voice__head h2 {
    font-size: clamp(20px, 3vw, 22px);
  }
}
.voice__head .lead {
  margin-top: clamp(10px, 2.1vw, 30px);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 700;
}
@media (max-width: 767px) {
  .voice__head .lead {
    margin-top: 5px;
  }
}
.voice__content {
  margin-top: clamp(40px, 5vw, 60px);
}
@media (max-width: 767px) {
  .voice__content {
    margin-top: clamp(30px, 4vw, 40px);
  }
}
.voice__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
@media (max-width: 767px) {
  .voice__items {
    grid-template-columns: 1fr;
  }
}
.voice__item {
  background: #fff;
  padding: 20px;
}
.voice__item .head {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: clamp(15px, 2vw, 25px);
}
.voice__item .head .head-left {
  max-width: 110px;
  width: 30%;
}
@media (max-width: 767px) {
  .voice__item .head .head-left {
    width: 24%;
  }
}
.voice__item .head .head-left img {
  vertical-align: bottom;
  line-height: 1em;
}
.voice__item .head .head-right {
  width: 59%;
  max-width: 200px;
  border-bottom: 1px solid #000;
  font-size: clamp(14px, 1.4vw, 20px);
  font-weight: 700;
  text-align: center;
}
@media (max-width: 767px) {
  .voice__item .head .head-right {
    width: 70%;
    font-size: clamp(16px, 6vw, 20px);
  }
}
.voice__item .body {
  margin-top: clamp(15px, 2vw, 25px);
}
.voice__item .body p {
  font-size: clamp(13px, 1.3vw, 16px);
}
@media (max-width: 767px) {
  .voice__item .body p {
    font-size: clamp(12px, 2vw, 14px);
  }
}

/*-----------------------------------------
    contact
-----------------------------------------*/
.contact {
  padding-top: clamp(60px, 8vw, 100px);
  padding-bottom: clamp(80px, 9.5vw, 120px);
  /*----------------- お問い合わせフォーム -------------------*/
  /*----------------- label -------------------*/
  /*----------------- input -------------------*/
  /*----------------- ボタン -------------------*/
}
.contact__head {
  text-align: center;
}
.contact__head h2 {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
}
@media (max-width: 767px) {
  .contact__head h2 {
    font-size: clamp(18px, 3vw, 22px);
  }
}
.contact__content {
  margin-top: clamp(40px, 5vw, 60px);
  width: 750px;
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;
}
@media (max-width: 767px) {
  .contact__content {
    margin-top: clamp(30px, 4vw, 40px);
    max-width: 680px;
    width: 100%;
  }
}
.contact .contact-form__dl {
  margin: 0;
}
.contact .contact-form__row {
  display: flex;
  align-items: center;
  justify-content: start;
}
@media (max-width: 767px) {
  .contact .contact-form__row {
    flex-direction: column;
  }
}
.contact .contact-form__row:not(:first-child) {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .contact .contact-form__row:not(:first-child) {
    margin-top: 25px;
  }
}
.contact .contact-form__row--inner {
  width: calc(100% - 210px);
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 767px) {
  .contact .contact-form__row--inner {
    width: 100%;
  }
}
.contact .contact-form__row--input-flex {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 15px;
}
.contact .contact-form__row--input-flex #zip-button {
  display: inline-block;
  width: 95px;
  height: 30px;
  line-height: 30px;
  font-size: 14px;
  text-align: center;
  background: #E5E5E5;
  border: 1px solid #80817F;
  color: #707070;
  cursor: pointer;
  opacity: 0.6;
}
@media (max-width: 767px) {
  .contact .contact-form__row--input-flex #zip-button {
    width: 66px;
  }
}
.contact .contact-form__row--radio {
  display: flex;
  align-items: start;
  justify-content: center;
}
.contact .contact-form__row--textarea {
  display: flex;
  align-items: start;
  justify-content: center;
}
.contact .contact-form__label {
  width: 200px;
  margin: 0;
  padding: 0;
  font-size: clamp(14px, 1.3vw, 16px);
  font-weight: 500;
}
@media (max-width: 767px) {
  .contact .contact-form__label {
    width: 100%;
  }
}
.contact .contact-form__label label.is-required {
  display: inline-block;
  position: relative;
  padding-right: 20px;
}
.contact .contact-form__label label.is-required::after {
  content: "※";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  font-weight: 500;
  color: #D1637A;
}
.contact .contact-form__input {
  width: calc(100% - 200px);
  font-size: 14px;
}
@media (max-width: 767px) {
  .contact .contact-form__input {
    width: 100%;
  }
}
.contact .contact-form__input [type=text] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-shadow: none;
  border: 1px solid #80817F;
  border-radius: 1px;
  background: #fff;
  color: inherit;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  width: 100%;
  height: 30px;
  line-height: 30px;
  padding: 0 16px;
  outline: none;
  transition: all 0.6s ease 0s;
}
.contact .contact-form__input [type=text]::-moz-placeholder {
  color: #A7A7A7;
}
.contact .contact-form__input [type=text]::placeholder {
  color: #A7A7A7;
}
.contact .contact-form__input [type=text]:focus, .contact .contact-form__input [type=text]:hover {
  border-color: #EC632C;
}
.contact .contact-form__input [type=tel] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-shadow: none;
  border: 1px solid #80817F;
  border-radius: 1px;
  background: #fff;
  color: inherit;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  width: 100%;
  height: 30px;
  line-height: 30px;
  padding: 0 16px;
  outline: none;
  transition: all 0.6s ease 0s;
}
.contact .contact-form__input [type=tel]::-moz-placeholder {
  color: #A7A7A7;
}
.contact .contact-form__input [type=tel]::placeholder {
  color: #A7A7A7;
}
.contact .contact-form__input [type=tel]:focus, .contact .contact-form__input [type=tel]:hover {
  border-color: #EC632C;
}
.contact .contact-form__input [type=email] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-shadow: none;
  border: 1px solid #80817F;
  border-radius: 1px;
  background: #fff;
  color: inherit;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  width: 100%;
  height: 30px;
  line-height: 30px;
  padding: 0 16px;
  outline: none;
  transition: all 0.6s ease 0s;
}
.contact .contact-form__input [type=email]::-moz-placeholder {
  color: #A7A7A7;
}
.contact .contact-form__input [type=email]::placeholder {
  color: #A7A7A7;
}
.contact .contact-form__input [type=email]:focus, .contact .contact-form__input [type=email]:hover {
  border-color: #EC632C;
}
.contact .contact-form__input textarea {
  margin-top: 5px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  resize: vertical;
  box-shadow: none;
  border: 1px solid #80817F;
  border-radius: 1px;
  background: #fff;
  color: inherit;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.6;
  width: 100%;
  height: 180px;
  padding: 10px 16px;
  outline: none;
  transition: all 0.6s ease 0s;
}
.contact .contact-form__input textarea::-moz-placeholder {
  color: #A7A7A7;
}
.contact .contact-form__input textarea::placeholder {
  color: #A7A7A7;
}
.contact .contact-form__input textarea:focus, .contact .contact-form__input textarea:hover {
  border-color: #EC632C;
}
.contact .contact-form__note {
  margin-top: 10px;
  color: #888;
}
.contact .contact__button {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .contact .contact__button {
    display: block;
    margin-top: 20px;
  }
}
.contact .contact__btn {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  letter-spacing: 0.05rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  width: 200px;
  max-width: 100%;
  height: 60px;
  line-height: 60px;
  border-radius: 1px;
  font-size: clamp(16px, 1.5vw, 18px);
  background: #EC632C;
}

/*-----------------------------------------
    confirm
-----------------------------------------*/
.form_area {
  height: 100vh;
}
.form_area .-w-wrapper {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* タイトル部分 */
.form_area .-w-general.-w-font_title1 {
  font-size: 20px;
  line-height: 1.8;
}

.form_area .-w-ttl_wrap {
  text-align: center;
}

.form_area .-w-ttl-en {
  margin-bottom: 10px;
  line-height: 1;
  text-align: center;
}

.form_area h2.-w-general {
  margin: 0 30px;
}

.form_area h3.-w-general {
  margin: 30px 0;
  text-align: center;
}

.form_area h4.-w-general {
  text-align: center;
  margin-bottom: 30px;
}

/* 本文テキスト部分 */
.form_area .-w-text {
  margin: 30px 30px;
  font-weight: normal;
  line-height: 1.8;
  font-size: 16px;
}

/* フォーム全体のラッパ */
.form_area .-w-form_wrap {
  margin-top: 3rem;
  padding: 0 2% 2%;
}

/* 注意やエラーメッセージ */
.form_area .alert {
  font-weight: bold;
  color: #ff0000;
}

.form_area .alert_rules {
  display: block;
  margin-top: 10px;
}

/* 必須マーク */
.form_area .-w-require {
  border-radius: 2px;
  margin-left: 10px;
  font-size: 14px;
  font-weight: normal;
  padding: 5px 0;
  color: #fff;
  color: rgb(255, 255, 255);
}

.form_area .require {
  border-radius: 2px;
  margin-left: 6px;
  font-size: 14px;
  font-weight: normal;
  padding: 5px 8px;
  background: #CE0000;
  color: #fff;
}

.form_area .confirm_title {
  margin-top: 16px;
  font-size: 20px;
}

.form_area .error_messe {
  margin-top: 16px;
  font-size: 16px;
}

.form_area .top-text {
  font-size: 16px;
}

.-w-btn-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  margin-top: 4rem;
}

.form_area .-w-form-btn .submit {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  letter-spacing: 0.05rem;
  appearance: none;
  border: none;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  width: 200px;
  max-width: 100%;
  height: 60px;
  line-height: 60px;
  border-radius: 1px;
  font-size: clamp(16px, 1.5vw, 18px);
  background: #EC632C;
}

.form_area .-w-back-btn a {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  letter-spacing: 0.05rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  width: 200px;
  max-width: 100%;
  height: 60px;
  line-height: 55px;
  border-radius: 1px;
  font-size: clamp(16px, 1.5vw, 18px);
  background: #EC632C;
}

.formTable tr:not(:first-child) {
  margin-top: 10px;
}
.formTable th,
.formTable td {
  font-size: 16px;
  text-align: left;
  width: 50%;
}

/*-----------------------------------------
    map
-----------------------------------------*/
.map__content {
  width: 100%;
  height: clamp(350px, 49vw, 700px);
  margin-left: auto;
  margin-right: auto;
}
.map__content .iframe-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}
.map__content .iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}/*# sourceMappingURL=style.css.map */