@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

a {
  cursor: pointer;
  text-decoration: none;
}

.hidden-sp {
  display: none;
}
@media (min-width: 300px) {
  .hidden-sp {
    display: block;
  }
}

@media (min-width: 820px) {
  .hidden-pc {
    display: none;
  }
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #313948;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  background: rgba(230, 243, 246, 0.6);
  position: relative;
  z-index: 0;
}

.body--fixed {
  overflow: hidden;
}

.body--locked {
  overflow: hidden;
}

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

a {
  color: inherit;
}

/* ===============================
  Base
================================= */
.editor-styles-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

/* Gutenberg独自の色指定を打ち消す */
.has-text-color {
  color: inherit;
}

.has-background {
  background-color: inherit;
}

/* ===============================
  Typography（文字系）
================================= */
/* 見出し */
.wp-block-heading,
.wp-block h1,
.wp-block h2,
.wp-block h3,
.wp-block h4,
.wp-block h5,
.wp-block h6 {
  font-weight: bold;
  margin: 1.5em 0 1em;
  line-height: 1.4;
}

h1.wp-block-heading {
  font-size: 2em;
}

h2.wp-block-heading {
  font-size: 1.75em;
}

h3.wp-block-heading {
  font-size: 1.5em;
}

h4.wp-block-heading {
  font-size: 1.25em;
}

h5.wp-block-heading {
  font-size: 1em;
}

h6.wp-block-heading {
  font-size: 0.875em;
}

/* 段落 */
.wp-block-paragraph {
  margin: 0 0 1.5em;
  line-height: 1.8;
}

/* 引用 */
.wp-block-quote {
  border-left: 4px solid #ccc;
  padding-left: 1em;
  margin: 1.5em 0;
  color: #555;
  font-style: italic;
}

/* リスト */
.wp-block-list {
  margin: 0 0 1.5em;
  padding-left: 1.5em;
}

.wp-block-list__item {
  margin-bottom: 0.5em;
}

/* コード */
.wp-block-code {
  background: #f4f4f4;
  padding: 1em;
  font-family: monospace;
  font-size: 90%;
  overflow-x: auto;
  border-radius: 4px;
}

/* 水平線 */
.wp-block-separator {
  border: none;
  border-top: 1px solid #ccc;
  margin: 2em 0;
}

/* ===============================
  Media（画像・埋め込み系）
================================= */
/* 画像 */
.wp-block-image {
  margin: 1.5em 0;
  text-align: center;
}

.wp-block-image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* 動画（埋め込み） */
.wp-block-embed,
.wp-block-video {
  margin: 1.5em 0;
}

.wp-block-embed iframe,
.wp-block-video video {
  max-width: 100%;
  height: auto;
}

/* ギャラリー */
.wp-block-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}

.wp-block-gallery .wp-block-image {
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc(33.333% - 8px);
          flex: 1 1 calc(33.333% - 8px);
}

/* ===============================
  Layout（構造系）
================================= */
/* カラム */
.wp-block-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
  margin: 2em 0;
}

.wp-block-column {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

/* グループ */
.wp-block-group {
  margin: 2em 0;
  padding: 1em 0;
}

/* 表 */
.wp-block-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
}

.wp-block-table th,
.wp-block-table td {
  border: 1px solid #ddd;
  padding: 0.75em;
  text-align: left;
}

/* ===============================
  Button
================================= */
.wp-block-button {
  margin: 1.5em 0;
}

.wp-block-button__link {
  display: inline-block;
  padding: 0.75em 1.5em;
  background: #01a0e8;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.wp-block-button__link:hover {
  background: #007bbf;
}

/* ===============================
  その他
================================= */
/* キャプション */
.wp-element-caption {
  text-align: center;
  font-size: 0.875em;
  color: #666;
  margin-top: 0.5em;
}

/* アラートボックス系 */
.wp-block-preformatted {
  background: #f6f8fa;
  padding: 1em;
  font-family: monospace;
  border-left: 4px solid #ccc;
  margin: 1.5em 0;
}

/* 余白調整 */
.wp-block-spacer {
  display: block;
  width: 100%;
  height: 2em;
}

.inner {
  padding-inline: clamp(0.5rem, -1.185rem + 7.19vw, 2.5rem);
}
@media (min-width: 820px) {
  .inner {
    max-width: 820px;
    margin-inline: auto;
  }
}

@media (min-width: 300px) {
  .header {
    font-size: fluid-small(13, 14);
  }
}
@media (min-width: 820px) {
  .header {
    font-size: fluid-wide(14, 16);
  }
}

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

.fv__message {
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: calc(100% - 16px);
  margin-inline: auto;
  padding-block: clamp(0.5rem, 0.289rem + 0.9vw, 0.75rem);
  letter-spacing: 0.48px;
  line-height: 1.4;
  text-align: center;
  background: rgba(255, 255, 255, 0.7);
}

.fv__text {
  font-size: 11px;
  padding-inline: 16px;
}
@media (min-width: 375px) {
  .fv__text {
    padding-inline: 36px;
    font-size: clamp(0.75rem, 0.539rem + 0.9vw, 1rem);
  }
}

.main {
  max-width: 820px;
  margin-inline: auto;
  background: #E6F3F6;
}

.appeal {
  background: transparent linear-gradient(289deg, #01a0e8 0%, #48c6ff 100%) 0% 0% no-repeat padding-box;
  margin-top: 4px;
}

.appeal__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(0.5rem, 0.079rem + 1.8vw, 1rem);
  padding-block: clamp(0.875rem, 0.138rem + 3.15vw, 1.75rem);
  margin-inline: auto;
}

.appeal__main {
  width: 80%;
}
@media (min-width: 375px) {
  .appeal__main {
    width: clamp(15.625rem, 7.725rem + 33.71vw, 25rem);
  }
}

.appeal__main {
  margin-inline: auto;
}

.appeal__sub {
  color: #fff;
  font-weight: 500;
  text-align: center;
  font-size: 12px;
}
@media (min-width: 375px) {
  .appeal__sub {
    font-size: clamp(1rem, 0.684rem + 1.35vw, 1.375rem);
  }
}

.cta-01 {
  background: #fff;
}

.cta-01__inner {
  padding-block: clamp(0.75rem, 0.118rem + 2.7vw, 1.5rem) clamp(2.5rem, 1.236rem + 5.39vw, 4rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(0.375rem, -0.362rem + 3.15vw, 1.25rem);
}

.cta-01__text {
  text-align: center;
  font-weight: 500;
  font-size: 12px;
}
@media (min-width: 375px) {
  .cta-01__text {
    font-size: clamp(0.938rem, 0.569rem + 1.57vw, 1.375rem);
  }
}

.cta-01__button {
  margin-top: clamp(0.25rem, -0.171rem + 1.8vw, 0.75rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

.cta-01__top a {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.cta-01__top a:active {
  opacity: 0.8;
}
@media (min-width: 820px) {
  .cta-01__top a:hover {
    opacity: 0.8;
  }
}

.trouble {
  background: #E6F3F6;
}

.trouble__inner {
  padding-block: 66px 160px;
  padding-inline: 20px;
  position: relative;
}
.trouble__inner::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  width: 100%;
  height: 43px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url("../img/_trouble-bg02.png") top center/contain no-repeat;
}

.trouble__head {
  position: relative;
  z-index: 1;
}
.trouble__head::before {
  content: "";
  position: absolute;
  width: 100%;
  height: clamp(3.125rem, 1.545rem + 6.74vw, 5rem);
  left: 52%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -14px;
  z-index: 2;
  scale: 1.04;
  background: url("../img/_trouble-text.png") center center/contain no-repeat;
}

.trouble__head img {
  padding-inline: 6px;
}

.trouble__body {
  margin-top: clamp(1.375rem, 0.216rem + 4.94vw, 2.75rem);
  background: #fff;
  padding: 18px 30px 16px;
  position: relative;
  z-index: 0;
}
.trouble__body::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: 1;
  opacity: 0.48;
  background: url("../img/_trouble-bg01.png") center center/cover no-repeat;
}

.trouble__list {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 9px;
  font-size: 16px;
  font-weight: 500;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: 14px;
}
@media (min-width: 375px) {
  .trouble__list {
    font-size: clamp(1rem, 0.789rem + 0.9vw, 1.25rem);
  }
}

.trouble__item {
  position: relative;
  padding-left: 36px;
  letter-spacing: 1.8px;
}
.trouble__item::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 20px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 3;
  background: url("../img/_trouble-icon.svg") center center/cover no-repeat;
}

.reason {
  background: #FFFFE5;
  position: relative;
  overflow-y: visible;
}
.reason::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 72px;
  bottom: -46px;
  left: 0;
  z-index: 0;
  background: url("../img/_reasons-01__bg.svg") no-repeat center center/contain;
}

.reason--second::before {
  display: none;
}

.reason__image {
  position: absolute;
  width: 100%;
  top: -151px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.reason__inner {
  padding-inline: 20px;
}

.reason__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding-block: clamp(2.5rem, -7.5rem + 53.33vw, 5rem) clamp(2.875rem, 1.084rem + 7.64vw, 5rem);
}
@media (min-width: 375px) {
  .reason__cards {
    padding-block: clamp(6.875rem, -6.292rem + 56.18vw, 22.5rem) clamp(2.875rem, 1.084rem + 7.64vw, 5rem);
  }
}

.reason__card {
  background-color: #fff;
  border: 2px solid #01A0E8;
  border-radius: 8px;
  text-align: center;
  font-size: clamp(0.75rem, -0.25rem + 5.33vw, 1rem);
}
@media (min-width: 375px) {
  .reason__card {
    font-size: clamp(1rem, 0.789rem + 0.9vw, 1.25rem);
  }
}

.reason__head {
  color: #FFF700;
  background-color: #01A0E8;
  line-height: 1;
  padding-block: 7px;
  letter-spacing: 0.48px;
}

.reason__text {
  color: #01A0E8;
  line-height: 1.2;
  padding-block: 12px;
}

.reasons {
  position: relative;
  background: #E6F3F6;
}
.reasons::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 72px;
  bottom: -46px;
  left: 0;
  z-index: 0;
  background: url("../img/_reasons-bg.svg") no-repeat center center/contain;
}

.reasons__inner {
  padding-block: clamp(3.75rem, 0.59rem + 13.48vw, 7.5rem) clamp(2.5rem, 0.393rem + 8.99vw, 5rem);
  padding-inline: 20px;
}

.reasons-01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(1.25rem, 0.197rem + 4.49vw, 2.5rem);
}

.reasons-02 {
  margin-top: clamp(1.25rem, -1.91rem + 13.48vw, 5rem);
}

.reasons-02__content {
  text-align: center;
  margin-top: clamp(1.25rem, 0.197rem + 4.49vw, 2.5rem);
}

.reasons-02__lead {
  font-size: clamp(1rem, 0.684rem + 1.35vw, 1.375rem);
  color: #01A0E8;
  border: 2px solid #01A0E8;
  display: inline-block;
  padding-inline: 10px;
  letter-spacing: 1.4px;
}

.reasons-02__items {
  margin-top: 29px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(0.688rem, -0.208rem + 3.82vw, 1.75rem);
}

.reasons-03 {
  margin-top: clamp(2.625rem, 0.624rem + 8.54vw, 5rem);
}

.reasons-03__content {
  margin-top: clamp(1.375rem, 0.427rem + 4.04vw, 2.5rem);
}

.reasons-03__lead {
  text-align: center;
  font-size: clamp(0.75rem, 0.25rem + 2.67vw, 0.875rem);
  margin-top: clamp(0.75rem, 0.329rem + 1.8vw, 1.25rem);
}
@media (min-width: 375px) {
  .reasons-03__lead {
    font-size: clamp(0.938rem, 0.674rem + 1.12vw, 1.25rem);
  }
}

.reasons-04 {
  margin-top: clamp(2.25rem, -0.067rem + 9.89vw, 5rem);
}

.reasons-04__lead {
  padding-inline: 14px;
  margin-top: clamp(1rem, -0.264rem + 5.39vw, 2.5rem);
}

.reasons-04__table {
  margin-top: clamp(1.75rem, 0.697rem + 4.49vw, 3rem);
}

.reasons-05 {
  margin-top: clamp(3.375rem, 2.006rem + 5.84vw, 5rem);
}

.reasons-05__content {
  margin-top: clamp(1rem, -0.264rem + 5.39vw, 2.5rem);
}

.reasons-05__lead {
  text-align: center;
}

.reasons-05__main {
  font-size: clamp(1.125rem, 0.625rem + 2.67vw, 1.25rem);
  font-weight: 500;
  background: #FFF700;
  color: #01A0E8;
  border: 2px solid #01A0E8;
  display: inline-block;
  padding-inline: 30px;
}
@media (min-width: 375px) {
  .reasons-05__main {
    font-size: clamp(1.375rem, 0.638rem + 3.15vw, 2.25rem);
  }
}

.reasons-05__sub {
  margin-top: clamp(1.5rem, 0.236rem + 5.39vw, 3rem);
  padding-inline: 8px;
  font-size: clamp(0.813rem, 0.313rem + 2.67vw, 0.938rem);
}
@media (min-width: 375px) {
  .reasons-05__sub {
    font-size: clamp(0.938rem, 0.569rem + 1.57vw, 1.375rem);
  }
}

.reasons-05__payment {
  margin-top: clamp(1.25rem, 0.197rem + 4.49vw, 2.5rem);
  padding-inline: 4px;
}

.reasons-05__text {
  font-size: clamp(0.875rem, 0.125rem + 4vw, 1.063rem);
  text-align: center;
  font-weight: 500;
  margin-top: 34px;
  line-height: 1.5;
}
@media (min-width: 375px) {
  .reasons-05__text {
    font-size: clamp(1.063rem, 0.694rem + 1.57vw, 1.5rem);
  }
}

.space {
  background: #01A0E8;
  text-align: center;
  padding-block: clamp(3.625rem, 1.413rem + 9.44vw, 6.25rem) 158px;
}

.space__image {
  width: clamp(8.75rem, -5.997rem + 62.92vw, 26.25rem);
  margin-inline: auto;
}

.area {
  background: #e9e9e9;
  padding-bottom: clamp(2.5rem, 1.236rem + 5.39vw, 4rem);
}

.area__inner {
  padding-inline: 12px;
}

.area__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(1.125rem, -0.034rem + 4.94vw, 2.5rem);
  text-align: center;
  margin-top: clamp(2.25rem, 1.197rem + 4.49vw, 3.5rem);
}

.area__card {
  border: 2px solid #35bdfb;
}

.area__category {
  background: #35bdfb;
  color: #fff;
  font-size: clamp(0.938rem, 0.438rem + 2.67vw, 1.063rem);
}
@media (min-width: 375px) {
  .area__category {
    font-size: clamp(1.125rem, 0.809rem + 1.35vw, 1.5rem);
  }
}

.area__name {
  background: #fff;
  padding-block: clamp(0.875rem, 0.559rem + 1.35vw, 1.25rem);
  font-size: clamp(0.813rem, 0.313rem + 2.67vw, 0.938rem);
  letter-spacing: 1.4px;
}
@media (min-width: 375px) {
  .area__name {
    font-size: clamp(1rem, 0.684rem + 1.35vw, 1.375rem);
  }
}

.customer {
  background: #FFFFE5;
  padding-bottom: clamp(3.375rem, 0.952rem + 10.34vw, 6.25rem);
  position: relative;
}
.customer::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 72px;
  bottom: -36px;
  left: 0;
  z-index: 2;
  background: url("../img/_customer-bg.svg") no-repeat center center/contain;
}

.customer__inner {
  padding-inline: 12px;
}

.customer__cards {
  margin-top: clamp(3.125rem, 2.388rem + 3.15vw, 4rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(1.125rem, 0.388rem + 3.15vw, 2rem);
}

.customer__card {
  background: #fff;
  border: 2px solid #35bdfb;
  position: relative;
  z-index: 3;
  padding-inline: 12px;
}

.customer__profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(0.875rem, 0.559rem + 1.35vw, 1.25rem);
  border-bottom: 1px solid #000;
  padding-block: clamp(0.25rem, 0.039rem + 0.9vw, 0.5rem) clamp(0.125rem, -0.086rem + 0.9vw, 0.375rem);
}

.customer__icon {
  width: 45px;
}

.customer__info {
  background: #35bdfb;
  color: white;
  font-size: clamp(0.813rem, 0.313rem + 2.67vw, 0.938rem);
  font-weight: 300;
  padding-block: 1px 2px;
  width: clamp(8.75rem, 7.697rem + 4.49vw, 10rem);
  text-align: center;
}
@media (min-width: 375px) {
  .customer__info {
    font-size: clamp(1rem, 0.895rem + 0.45vw, 1.125rem);
  }
}

.customer__voice {
  font-weight: 300;
  padding-block: 12px 20px;
  letter-spacing: 0.56px;
  font-size: clamp(0.75rem, 0.25rem + 2.67vw, 0.875rem);
}
@media (min-width: 375px) {
  .customer__voice {
    font-size: clamp(0.875rem, 0.77rem + 0.45vw, 1rem);
  }
}

.cta-02 {
  position: relative;
  z-index: 1;
  background: #fff;
}

.cta-02__inner {
  position: absolute;
  z-index: 1;
  top: clamp(8.25rem, 3.75rem + 24vw, 9.375rem);
  left: 50%;
  width: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding-inline: 16px;
}
@media (min-width: 375px) {
  .cta-02__inner {
    top: clamp(9.375rem, -0.632rem + 42.7vw, 21.25rem);
  }
}

.cta-02__button {
  margin-top: clamp(1.25rem, 0.197rem + 4.49vw, 2.5rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.cta-02__top a {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.cta-02__top a:active {
  opacity: 0.8;
}
@media (min-width: 820px) {
  .cta-02__top a:hover {
    opacity: 0.8;
  }
}

.contact {
  background: #fff;
  padding-top: 32px;
  padding-bottom: clamp(3.125rem, -2.142rem + 22.47vw, 9.375rem);
}

.contact__inner {
  padding-inline: 12px;
}

.contact__content {
  border: 1px solid #01A0E8;
  border-radius: 16px 16px 0 0;
}

.contact__head {
  height: clamp(5.25rem, -0.333rem + 23.82vw, 11.875rem);
  position: relative;
  background: #01A0E8;
  border-radius: 16px 16px 0 0;
}

.contact__leading {
  padding-top: clamp(0.75rem, -0.514rem + 5.39vw, 2.25rem);
  font-size: clamp(1.25rem, 0.407rem + 3.6vw, 2.25rem);
  letter-spacing: 1px;
  color: #fff;
  text-align: center;
}

.contact__head img {
  position: absolute;
  width: 100%;
  padding-inline: 8px;
  bottom: -66%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.contact__form {
  padding-inline: clamp(1rem, -6.584rem + 32.36vw, 10rem);
  margin-top: clamp(5rem, 0.787rem + 17.98vw, 10rem);
}

.form__title {
  font-size: clamp(0.875rem, 0.77rem + 0.45vw, 1rem);
  display: block;
  margin-top: clamp(0rem, -2.107rem + 8.99vw, 2.5rem);
}

.form__title--mb {
  margin-bottom: -4px;
}

.form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.form-label {
  min-width: clamp(6.25rem, 3.09rem + 13.48vw, 10rem);
  width: clamp(6.25rem, 3.09rem + 13.48vw, 10rem);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #00a0e9;
  font-size: clamp(0.875rem, 0.77rem + 0.45vw, 1rem);
  line-height: 1.2;
}

.form-input,
.wpcf7-form-control-wrap input,
.wpcf7-form-control-wrap select,
.wpcf7-form-control-wrap textarea {
  min-width: 0;
  padding-block: clamp(0.375rem, 0.164rem + 0.9vw, 0.625rem);
  padding-inline: 8px;
  border: 1px solid #00a0e9;
  font-size: clamp(0.688rem, 0.529rem + 0.67vw, 0.875rem);
  line-height: 1.2;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 clamp(13.25rem, -13.506rem + 114.16vw, 45rem);
          flex: 1 1 clamp(13.25rem, -13.506rem + 114.16vw, 45rem);
  max-width: clamp(13.25rem, -13.506rem + 114.16vw, 45rem);
  width: 100%;
}

.wpcf7-form-control-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.form-label span {
  color: #ff0f0f;
  margin-left: 2px;
}

.wpcf7-form-control-wrap {
  margin-left: 4px;
}

.wpcf7 input[type=file] {
  border: none;
  padding-inline: 0;
  padding-block: 4px;
  font-size: 14px;
  max-width: none;
}

.wpcf7-form-control-wrap textarea {
  font-size: 14px;
  max-width: none;
  width: 100%;
}

.form-textareax {
  margin-top: 36px;
  display: block;
}

.form-area {
  height: 100px;
  width: 100%;
}

.wpcf7-acceptance {
  display: block;
  margin-bottom: 20px;
  text-align: center;
}

.wpcf7-acceptance .wpcf7-list-item-label::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  border: 1px solid #313948;
  background-color: rgba(255, 255, 255, 0.8);
  vertical-align: middle;
}

input[type=checkbox] {
  display: none;
}

.wpcf7-acceptance input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  background-color: rgba(49, 57, 72, 0.8);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="11" viewBox="0 0 14 11"><path fill="%23ffffff" d="M11.264 0L5.26 6.004 2.74 3.484 0 6.224 2.74 8.964 5.26 11.484 8 8.744 14.004 2.74z"/></svg>');
  background-position: center;
  background-repeat: no-repeat;
}

.from__privacy {
  text-align: center;
  font-size: 11px;
  margin-top: -8px;
}

.form__photo {
  margin-bottom: clamp(0rem, -1.264rem + 5.39vw, 1.5rem);
}

.form__link {
  color: #ff0f0f;
}

.submit-button {
  background: url("../img/_contact-button.png") no-repeat center center;
  background-size: contain;
  width: 100%;
  max-width: 320px;
  margin-inline: auto;
  height: 96px;
  margin-top: 14px;
  border: none;
  text-indent: -9999px; /* テキスト非表示 */
  cursor: pointer;
  padding-inline: 0;
  display: block;
  width: 100%;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.submit-button:active {
  opacity: 0.8;
}
@media (min-width: 820px) {
  .submit-button:hover {
    opacity: 0.8;
  }
}

.nav {
  background: #fff;
  padding: 4px 2px 2px;
  position: fixed;
  max-width: 820px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
  width: 100%;
  height: clamp(4.625rem, 1.676rem + 12.58vw, 8.125rem);
  z-index: 100;
}

.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.nav__tel {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 59.8%;
          flex: 0 0 59.8%;
}

.nav__online,
.nav__line {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20.1%;
          flex: 0 0 20.1%;
}

.nav__item a {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.nav__item a:active {
  opacity: 0.8;
}
@media (min-width: 820px) {
  .nav__item a:hover {
    opacity: 0.8;
  }
}

.c-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 100%;
  border-radius: 10%;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.c-button:active {
  opacity: 0.8;
}
@media (min-width: 820px) {
  .c-button:hover {
    opacity: 0.8;
  }
}