@charset "UTF-8";
/* header */
/* コンテンツ幅 */
/* font-family */
/* font-size */
/* 最小画面幅：640px  最大画面幅(基準画面幅)：1280pxで計算 */
/*  9 ~ 12 px */
/* 10 ~ 14 px */
/* 12 ~ 16 px */
/* 12 ~ 18 px */
/* 14 ~ 20 px */
/* 15 ~ 24 px */
/* 15 ~ 30 px */
/* 16 ~ 32 px */
/* 18 ~ 36 px */
/* 23 ~ 45 px */
/* 27 ~ 54 px */
/* 32 ~ 64 px */
/* font-weight */
/* color */
/* color(文字) */
.text-white {
  color: #fff;
}

.text-yellow {
  color: #ffea04;
}

/* z-index */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  height: 100%;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  opacity: 0.7;
  transition: 0.3s;
}

img {
  display: block;
}

/* ↓↓　以下、header　↓↓ */
.header-wrapper {
  /* padding: 11px 0px 0px; */
  position: relative;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999;
  flex-direction: column;
  gap: 11px;
  align-items: center;
  width: 100%;
  height: 80px;
  background-color: #fff;
}

.header {
  position: relative;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-between;
  width: 95%;
  padding: 11px 0;
  margin: 0 auto;
}

.logo-img {
  height: 58px;
}

.img {
  position: absolute;
  top: 0;
  left: 0;
  width: 154px;
  height: 51px;
}

.navbar {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  gap: 43px;
  align-items: center;
}

.header .text-wrapper {
  position: relative;
  width: fit-content;
  font-family: "Noto Sans JP-Regular", Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 27.2px;
  color: #01253d;
  letter-spacing: 0;
  white-space: nowrap;
}
.header .button-contact {
  position: relative;
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
  width: 165px;
  height: 45px;
  padding: 7px 15px;
  background: linear-gradient(
    90deg,
    rgb(4, 111, 181) 0%,
    rgb(7, 148, 243) 100%
  );
  border-radius: 5px;
}
.header .button-text-contact {
  position: relative;
  width: 96px;
  height: 27px;
  margin-top: -1px;
  font-family: "Noto Sans JP-Bold", Helvetica;
  font-size: 16px;
  font-weight: 700;
  line-height: 27.2px;
  color: #fff;
  letter-spacing: 0;
  white-space: nowrap;
}
.header .polygon {
  position: relative;
  width: 6px;
  height: 12.12px;
}

/* ↓↓　以下、ハンバーガーメニュー　↓↓ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 3px;
  background: #333;
  border-radius: 2px;
}

/* スマホ時に表示 */
@media screen and (width <= 768px) {
  .hamburger {
    display: flex;
  }
  .navbar {
    position: fixed;
    top: 70px;
    right: -100%;
    flex-direction: column;
    width: 200px;
    padding: 20px;
    background: #fff;
    transition: right 0.3s ease;
  }
  .navbar.active {
    right: 0;
  }
  .navbar a {
    margin-bottom: 2%;
  }
}
/* ↓↓　以下、FV　↓↓ */
.FV {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: row-reverse;
  width: 100%;
  padding-top: 80px;
  background-image: url("../images/fv-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

/* モバイル表示時、FVのコンテンツ列と画像列を縦並びに変更 */
@media (width <= 1200px) {
  .FV {
    flex-direction: column;
  }
}
.FV-content-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50%;
  margin: 2% 4% 6%;
}
.FV-content-column .FV-title {
  margin: 0 auto;
  margin-bottom: 38px;
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0;
}
.FV-content-column .FV-boxes {
  position: relative;
  display: flex;
  flex: 0 0 auto;
  gap: 5%;
  align-items: center;
  align-self: stretch;
  justify-content: space-evenly;
  width: 100%;
  margin-bottom: 38px;
}

@media (width <= 1200px) {
  .FV-content-column {
    width: 92%;
    margin-bottom: 12%;
  }
}
.FV-messages {
  justify-content: start;
  padding: 0 15%;
  font-size: clamp(0.94rem, 1.88vw, 1.5rem);
  font-weight: 700;
  color: #fff;
}
.FV-messages .FV-msgbox {
  height: 45px;
  padding: 8px;
  margin-bottom: 18px;
  font-weight: 900;
  line-height: 30.5px;
  text-align: center;
  letter-spacing: 0;
  white-space: nowrap;
  background-color: #01253d;
}
.FV-messages .FV-msgcontent .msg-sub {
  margin-bottom: 12px;
  line-height: 143%;
}
.FV-messages .FV-msgcontent .msg-sub .sub-large {
  font-size: clamp(1rem, 2.5vw, 2rem);
  font-weight: 900;
}
.FV-messages .FV-msgcontent .msg-main {
  position: relative;
  display: flex;
  flex: 0 0 auto;
  gap: 13px;
  align-items: flex-end;
}
.FV-messages .FV-msgcontent .msg-main .main-large {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-right: 5px;
}
.FV-messages .FV-msgcontent .msg-main .main-large .main-nls-name {
  position: relative;
  display: inline-block;
  width: 100%;
  min-width: 180px;
}
.FV-messages .FV-msgcontent .msg-main .main-large .main-nls-name::before {
  position: absolute;
  right: -2%;
  bottom: -10px;
  z-index: -1;
  width: 100vw;
  height: 27px;
  content: "";
  background-color: #ffbe39;
  opacity: 0.6;
}
.FV-messages .FV-msgcontent .msg-main .main-large .main-nls-name img {
  display: block;
  width: 100%;
  height: auto;
}
.FV-messages .FV-msgcontent .msg-main .main-small {
  position: relative;
  width: fit-content;
  font-weight: 900;
  line-height: 24px;
  color: #fff;
  letter-spacing: 0;
  white-space: nowrap;
}

/* FV 画像列 */
.FV-img-column {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 50%;
  margin: 0 0 0 auto;
}

.FV-img-left-column {
  position: relative;
  display: flex;
  flex-direction: column;
}

.FV-img-right-column {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.FV .main-img {
  width: 100%;
  height: 100%;
}
.FV .title {
  font-family: "Noto Sans JP", Helvetica;
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0;
}
.FV .text-wrapper {
  font-family: "Noto Sans JP-Bold", Helvetica;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 47px;
  color: #fff;
  letter-spacing: 0;
}
.FV .span {
  font-size: 45px;
}
.FV .label-wrapper {
  /* padding: 25px 28px; */
  position: relative;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 206px;
  padding: 2% 0%;
  background-color: #fff;
  border: 3px solid;
  border-color: var(--black);
  box-shadow: 5px 5px 0 #01253d;
}
.FV .label {
  /* line-height: 50px; */
  position: relative;
  width: fit-content;
  margin-top: -3px;
  font-family: "Kaisei Opti", serif;
  font-size: 3.125rem;
  font-weight: 700;
  color: #f96511;
  letter-spacing: 0;
  white-space: nowrap;
}
.FV .div-wrapper {
  /* padding: 25px 53px; */
  position: relative;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 206px;
  padding: 2% 0%;
  background-color: #fff;
  border: 3px solid;
  border-color: var(--black);
  box-shadow: 5px 5px 0 #01253d;
}

/* FV 画像列 レスポンシブ */
@media (width <= 1200px) {
  .FV-img-column {
    position: relative;
    gap: 1%;
    width: 100%;
    margin: 2% auto;
  }
  .FV-img-left-column,
  .FV-img-right-column {
    position: relative;
    right: 0;
    flex-direction: row;
    gap: 1%;
  }
  .FV .main-img {
    width: 50%;
  }
}
@media (width <= 992px) {
  .FV .title {
    font-size: 1.5rem !important;
  }
  .FV .text-wrapper {
    font-size: 1.5rem;
  }
  .FV .span {
    font-size: 40px;
  }
}
@media (width <= 768px) {
  .FV .text-wrapper {
    font-size: 24px !important;
  }
  .FV .span {
    font-size: 30px !important;
  }
}
@media (width <= 1200px) {
  .FV .container-2 {
    gap: 15px;
  }
  .FV .label-wrapper {
    width: 30%;
    padding: 17px;
  }
  .FV .div-wrapper {
    width: 30%;
    padding: 17px 35px;
  }
  .FV .label {
    font-size: 2.5rem;
  }
}
@media (width <= 768px) {
  .FV .container-2 {
    display: flex;
    gap: 3%;
    justify-content: flex-start;
  }
  .FV .label-wrapper,
  .FV .div-wrapper {
    width: 30%;
    padding: 10px 30px;
    margin-top: 2%;
  }
  .FV .label {
    font-size: 25px;
  }
}
@media (width <= 1200px) {
  .FV .container-4 {
    /* width: 220px; */
  }
  .FV .label-2 {
    font-size: 18px;
  }
  /* .FV .container-5 {
      width: 160px;
    } */
}
@media (width <= 768px) {
  .FV .container-4,
  .FV .container-5 {
    /* width: 100%; */
    /* padding: 2% 10%; */
    margin-top: 6%;
  }
  .FV .label-2 {
    font-size: 18px;
  }
}
@media (width <= 1200px) {
  .FV .container-6,
  .FV .container-6-content {
    width: 100%;
  }
  .FV .container-7::after {
    bottom: -6px;
    height: 50%;
  }
  .FV .subtitle {
    padding-bottom: 5px;
    font-size: 20px;
  }
  .FV .label-4 {
    font-size: 18px;
  }
}
@media (width <= 768px) {
  .FV .container-6,
  .FV .container-6-content {
    width: 100%;
  }
  .FV .container-7::after {
    position: absolute;
    bottom: -5px;
    left: -29%;
    z-index: -1;
    width: 130%;
    height: 50%;
    content: "";
    background-color: #ffbe39;
    opacity: 0.6;
  }
  .FV .subtitle {
    padding-bottom: 1%;
    font-size: 20px;
  }
  .FV .label-3 {
    width: 63%;
  }
  .FV .label-4 {
    font-size: 16px;
  }
}
.overlap-group-thanksto {
  width: 36%;
  height: 72px;
  margin: 0 auto;
  background-image: url("../images/record.png");
  background-repeat: no-repeat;
  background-position: center;
}
.overlap-group-thanksto .container-2 .subtitle {
  position: relative;
  padding-top: 8%;
  font-family: "Noto Sans JP-Bold", Helvetica;
  font-size: 24px;
  font-weight: 700;
  line-height: 40.8px;
  color: var(--black);
  text-align: center;
}

.overlap-group .group {
  position: absolute;
  top: 21px;
  left: 244px;
  width: 37px;
  height: 22px;
}

@media (width <= 1200px) {
  .overlap-group-thanksto {
    width: 100%;
  }
}
@media (width <= 768px) {
  .overlap-group-thanksto {
    width: 100%;
  }
  .overlap-group-thanksto .container-2 {
    display: flex;
    justify-content: center;
  }
}
/* ↓↓　以下、累計契約数　↓↓ */
.record {
  position: relative;
  display: flex;
  align-items: center;
  height: 20vw;
  background-image: url("../images/record-background.png");
  background-size: cover;
}
.record .record-badge {
  position: absolute;
  align-items: center;
  height: 22vw;
  margin: -4% auto 0 10%;
}
.record .record-badge .record-badge-img {
  height: 100%;
}
.record .record-badge .record-date {
  position: absolute;
  bottom: 25%;
  left: 28%;
  font-size: 1.3vw;
  font-weight: 900;
  line-height: 100%;
  color: #fff;
}
.record .record-badge .record-date .date-number {
  font-size: 1.8vw;
}
.record .record-count {
  display: flex;
  flex-direction: row;
  gap: 1.2vw;
  align-items: end;
  margin-left: 46%;
  font-weight: 900;
}
.record .record-count .count-number {
  font-family: "Noto Sans CJK JP";
  font-size: 10vw;
  font-style: normal;
  line-height: 100%; /* 125px */
  color: #fa6510;
  letter-spacing: 0.7vw;
  -webkit-text-stroke: 0.5vw #fff;
  paint-order: stroke;
}
.record .record-count .count-unit {
  font-family: "Noto Sans CJK JP";
  font-size: 5vw;
  font-style: normal;
  line-height: 100%; /* 60px */
  color: #1e1e1e;
}

@media (width <= 1200px) {
  .record .record-title,
  .record .title {
    width: 50%;
  }
  .record .container {
    width: 70%;
  }
}
@media (width <= 992px) {
  .record .title {
    width: 62%;
    font-size: 45px;
  }
  .record .container {
    width: 70%;
    margin: -4% auto 0;
  }
  .record .date {
    font-size: 28px;
  }
  .record .count-after {
    font-size: 40px;
  }
  .record .count {
    font-size: 80px;
  }
}
@media (width <= 768px) {
  .record .record-title {
    width: 62%;
    margin: -5% auto 2%;
  }
  .record .title {
    width: 100%;
    padding-top: 10%;
    font-size: 40px;
  }
  .record .container {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    /* margin-top: -2%; */
    width: 90%;
    margin: 5% auto;
  }
  .count-sp {
    display: flex;
    align-items: baseline;
    /* width: 90%; */
    margin: 0 auto;
  }
  .record .count-after {
    margin: 0 auto 0 5%;
  }
}
/* ↓↓　以下、エリアチェック　↓↓ */
/* areacheckはrecordの下とintroduceの下の2箇所ある */
.areacheck {
  position: relative;
  z-index: 0;
  width: 100%;
  height: auto;
  background-image: url("../images/areacheck-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  /* record下のareacheck */
  /* introduce下のareacheck */
}
.areacheck .areacheck-1 {
  width: 80%;
  padding-bottom: 12%;
  margin: auto;
}
@media screen and (width <= 991px) {
  .areacheck .areacheck-1 {
    width: 90%;
  }
}
@media screen and (width <= 768px) {
  .areacheck .areacheck-1 {
    width: 90%;
    padding-bottom: 15%;
  }
}
.areacheck .areacheck-2 {
  width: 80%;
  padding-bottom: 5%;
  margin: auto;
}
@media screen and (width <= 991px) {
  .areacheck .areacheck-2 {
    width: 90%;
  }
}
@media screen and (width <= 768px) {
  .areacheck .areacheck-2 {
    width: 90%;
    padding-bottom: 10%;
  }
}
.areacheck .vertical-wrapper {
  display: flex;
  width: 93%;
  padding-top: 5%;
  margin: 0 auto;
}
@media screen and (width <= 768px) {
  .areacheck .vertical-wrapper {
    flex-direction: column;
    width: 100%;
  }
}
@media screen and (width <= 1200px) {
  .areacheck .vertical-wrapper {
    width: 100%;
  }
}
.areacheck .vertical-wrapper .areacheck-catchcopy {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  width: 16%;
}
@media screen and (width <= 991px) {
  .areacheck .vertical-wrapper .areacheck-catchcopy {
    margin-left: 4%;
  }
}
@media screen and (width <= 768px) {
  .areacheck .vertical-wrapper .areacheck-catchcopy {
    justify-content: center;
  }
}
.areacheck .vertical-wrapper .areacheck-catchcopy .header-text {
  position: relative;
  align-self: stretch;
  padding: 0 3%;
  font-size: clamp(0.88rem, 1.56vw, 1.25rem);
  font-weight: 700;
  line-height: 36px;
  color: #fff;
  text-align: center;
  letter-spacing: 0;
  transform: rotate(-13.13deg);
}
@media screen and (width <= 900px) {
  .areacheck .vertical-wrapper .areacheck-catchcopy .header-text {
    line-height: 30px;
  }
}
@media screen and (width <= 768px) {
  .areacheck .vertical-wrapper .areacheck-catchcopy .header-text {
    font-size: 12px; /* 文字が収まらないのでfont-size直指定 */
    font-weight: 500;
    line-height: 24px;
  }
}
.areacheck .vertical-wrapper .areacheck-catchcopy .header-text::before {
  position: absolute;
  top: 5%;
  left: -57%;
  display: block;
  width: 55px;
  height: 55px;
  content: "";
  background-image: url("../images/ac-line-left.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (width <= 1200px) {
  .areacheck .vertical-wrapper .areacheck-catchcopy .header-text::before {
    left: -75%;
  }
}
@media screen and (width <= 900px) {
  .areacheck .vertical-wrapper .areacheck-catchcopy .header-text::before {
    width: 40px;
    height: 40px;
  }
}
.areacheck .vertical-wrapper .areacheck-catchcopy .header-text::after {
  position: absolute;
  top: 4%;
  left: 102%;
  display: block;
  width: 55px;
  height: 55px;
  content: "";
  background-image: url("../images/ac-line-right.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (width <= 900px) {
  .areacheck .vertical-wrapper .areacheck-catchcopy .header-text::after {
    width: 40px;
    height: 40px;
  }
}
.areacheck .vertical-wrapper .areacheck-header {
  display: flex;
  flex-direction: row;
  gap: 5%;
  align-items: center;
  width: 100%;
}
@media screen and (width <= 768px) {
  .areacheck .vertical-wrapper .areacheck-header .ac-photo-sp {
    width: 30%;
    margin: 0 auto;
  }
}
.areacheck .vertical-wrapper .areacheck-header .ac-photo-sp .ac-photo {
  z-index: 10;
  width: 100%;
}
@media screen and (width <= 991px) {
  .areacheck .vertical-wrapper .areacheck-header .ac-photo-sp .ac-photo {
    width: 80%;
    margin-left: 10%;
  }
}
@media screen and (width <= 768px) {
  .areacheck .vertical-wrapper .areacheck-header .ac-photo-sp .ac-photo {
    width: 90%;
  }
}
.areacheck .vertical-wrapper .areacheck-header .areacheck-textcontent {
  width: 70%;
  max-width: 556px;
  margin-top: -15%;
}
.areacheck
  .vertical-wrapper
  .areacheck-header
  .areacheck-textcontent
  .areacheck-speechbubble {
  position: relative;
  display: block;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  padding: 2% 8%;
  margin-top: -1px;
  font-size: clamp(0.94rem, 2.34vw, 1.88rem);
  font-weight: 700;
  line-height: 51px;
  color: #01253d;
  text-align: center;
  letter-spacing: 0;
  white-space: normal;
  background-color: #ffbe39;
  border-radius: 10px;
}
@media screen and (width <= 500px) {
  .areacheck
    .vertical-wrapper
    .areacheck-header
    .areacheck-textcontent
    .areacheck-speechbubble {
    line-height: 25px;
  }
}
.areacheck
  .vertical-wrapper
  .areacheck-header
  .areacheck-textcontent
  .areacheck-speechbubble
  br {
  display: none;
}
@media screen and (width <= 500px) {
  .areacheck
    .vertical-wrapper
    .areacheck-header
    .areacheck-textcontent
    .areacheck-speechbubble
    br {
    display: inline;
  }
}
.areacheck
  .vertical-wrapper
  .areacheck-header
  .areacheck-textcontent
  .areacheck-speechbubble
  span {
  font-size: clamp(1.13rem, 2.81vw, 2.25rem);
  font-weight: 900;
}
.areacheck
  .vertical-wrapper
  .areacheck-header
  .areacheck-textcontent
  .areacheck-speechbubble::before {
  position: absolute;
  top: 61%;
  left: -4%;
  display: block;
  width: 31px;
  height: 18px;
  content: "";
  background-image: url("../images/ac-speech.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.areacheck
  .vertical-wrapper
  .areacheck-header
  .areacheck-textcontent
  .areacheck-description {
  position: relative;
  width: 100%;
  padding-top: 26px;
  font-size: clamp(0.88rem, 1.56vw, 1.25rem);
  font-weight: 700;
  line-height: normal;
  color: #fff;
  letter-spacing: 1.68px;
}
@media screen and (width <= 768px) {
  .areacheck
    .vertical-wrapper
    .areacheck-header
    .areacheck-textcontent
    .areacheck-description {
    white-space: normal;
  }
  .areacheck
    .vertical-wrapper
    .areacheck-header
    .areacheck-textcontent
    .areacheck-description
    br {
    display: none;
  }
}

/* ↓↓　以下、エリアチェックフォーム　↓↓ */
.areacheck-wrapper {
  position: relative;
  z-index: 999;
  width: 100%;
  margin-top: -10%;
  background: #fff;
}
@media screen and (width <= 768px) {
  .areacheck-wrapper {
    margin-top: -5%;
  }
}
@media screen and (width <= 500px) {
  .areacheck-wrapper {
    margin-top: 0%;
  }
}

.areacheck-form {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
  padding: 30px 30px 10px;
  margin: 0 auto;
}
.areacheck-form .left,
.areacheck-form .center,
.areacheck-form .right {
  flex: 1;
  min-width: 250px;
  padding-left: 20px;
  margin-right: 40px;
}
.areacheck-form .q {
  width: 23%;
  font-size: clamp(0.75rem, 1.25vw, 1rem);
  font-weight: 700;
  color: #000;
}
.areacheck-form .q-left {
  width: 30%;
}

input {
  font-size: 16px;
}

.areacheck-form .a {
  display: flex;
  align-items: center;
  width: 235px;
  height: 52px;
  /* gap: 10px; */
  padding: 16px 25px;
  /* margin-left: 25%; */
  font-size: 16px;
  background-color: #f6f6f6;
  border: 1px solid;
  border-color: #979797;
  border-radius: 7px;
}
.areacheck-form .p-postal-code,
.areacheck-form .p-region,
.areacheck-form .p-locality,
.areacheck-form .p-street-address,
.areacheck-form .a-center,
.areacheck-form .a-building {
  display: flex;
  align-items: center;
  width: 235px;
  height: 52px;
  /* gap: 10px; */
  padding: 16px 25px;
  margin-left: 10%;
  background-color: #f6f6f6;
  border: 1px solid;
  border-color: #979797;
  border-radius: 7px;
}
.areacheck-form .form-row {
  display: flex;
  margin-bottom: 15%;
}
.areacheck-form .form-center {
  justify-content: flex-end;
  margin-bottom: 15px;
}
.areacheck-form .form-right {
  margin-bottom: 11%;
}
.areacheck-form .form-bottom {
  margin-bottom: 0;
}
.areacheck-form .form-button {
  display: flex;
  justify-content: flex-end;
}

.radio-group .wpcf7-list-item {
  display: block;
  padding-bottom: 10px;
}

.radio-group-right .wpcf7-list-item {
  display: block;
  padding-bottom: 10px;
  margin-right: 10px;
}

.select {
  width: 50%;
}

input[type="radio"] {
  margin-right: 5px;
  transform: scale(1.2);
  /* 数字を変えると大きさも変わる */
}

.button {
  display: inline-block;
  align-items: flex-start;
  width: 306px;
  height: 98px;
  line-height: 1.2;
  text-align: center;
  white-space: pre-line;
  text-decoration: none;
  cursor: pointer;
  background: linear-gradient(
    90deg,
    rgb(241, 90, 36) 0%,
    rgb(255, 140, 0) 100%
  );
  border: none;
  border-radius: 7px;
  transition: 0.3s;
}
.button:hover {
  opacity: 0.7;
  transition: 0.3s;
}
.button .btn-main {
  position: relative;
  display: block;
  margin-top: -8%;
  font-family: "Noto Sans JP-Bold", Helvetica;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}
.button .btn-sub {
  display: block;
  height: fit-content;
  padding-left: 10%;
  margin-top: -5%;
  font-family: "Noto Sans JP-Bold", Helvetica;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-align: left;
}
.button .btn-main::after {
  position: absolute;
  top: -15%;
  right: 0;
  display: block;
  width: 30px;
  height: 30px;
  padding-right: 18px;
  content: "";
  background-image: url("../images/arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.areacheck .form {
  position: absolute;
  top: 259px;
  left: 166px;
  width: 1269px;
  height: 311px;
  background-color: #fff;
}
.areacheck .div {
  position: relative;
  top: 51px;
  left: 63px;
  width: 1088px;
  height: 208px;
}
.areacheck .area-confirmation {
  position: absolute;
  top: 110px;
  left: 782px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  width: 306px;
  height: 98px;
  padding: 35px 18px;
}
.areacheck .area-confirmation-2 {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  gap: 10px;
  align-items: flex-end;
  justify-content: center;
  width: 306px;
  height: 98px;
  padding: 16px 81px;
}
.areacheck .area-confirmation-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  width: 306px;
  height: 98px;
  padding: 15px 27px;
  background: linear-gradient(
    90deg,
    rgb(241, 90, 36) 0%,
    rgb(255, 140, 0) 100%
  );
  border-radius: 7px;
}
.areacheck .area-confirmation-3 {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: "Noto Sans JP-Bold", Helvetica;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  color: #fff;
  letter-spacing: 0;
  white-space: nowrap;
}
.areacheck .start-button-label {
  position: relative;
  width: fit-content;
  font-family: "Noto Sans JP-Bold", Helvetica;
  font-size: 36px;
  font-weight: 700;
  line-height: normal;
  color: #fff;
  text-align: center;
  letter-spacing: 0;
  white-space: nowrap;
}

@media (width <= 1400px) {
  .areacheck-form {
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 30px;
  }
  .areacheck-form .left,
  .areacheck-form .center,
  .areacheck-form .right {
    flex: 1 1 45%;
    min-width: 300px;
    padding-right: 10px;
    padding-left: 10px;
    margin-right: 0;
  }
  .areacheck-form .form-center {
    justify-content: flex-start;
    margin-bottom: 15px;
  }
  .areacheck-form .q-right {
    width: 40%;
  }
  .areacheck-form .right {
    display: flex;
    gap: 20px;
    /* 住居タイプとボタンの間隔を調整 */
    align-items: flex-start;
    /* 上揃えにする */
    justify-content: space-between;
    /* 横並びにしてスペースを均等に配置 */
    padding-right: 6%;
  }
  .areacheck-form .button {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 300px;
    /* ボタンの幅を固定 */
    height: auto;
    border-radius: 7px;
  }
  .areacheck-form .form-row {
    margin-bottom: 0;
    /* 各行のマージン調整 */
  }
  .areacheck-form .select-right {
    margin-bottom: 6%;
  }
  .areacheck-form .right {
    align-items: flex-end;
    margin-top: 0;
  }
  .areacheck-form .a,
  .areacheck-form .a-center,
  .areacheck-form .p-postal-code,
  .areacheck-form .p-region,
  .areacheck-form .p-locality,
  .areacheck-form .p-street-address,
  .areacheck-form .a-building {
    width: 90%;
    padding: 14px 20px;
    margin: 0 0 20px;
    font-size: 15px;
  }
  .areacheck-form .address {
    margin: 0 auto 0 23%;
  }
  .areacheck-form .form-center {
    margin-bottom: 0;
  }
  /* 右側のカラム（住居タイプとボタン）を横並びにする */
  .areacheck .radio-group .wpcf7-list-item {
    padding-bottom: 15px;
  }
  .select {
    width: 100%;
  }
  .button {
    width: 80%;
    max-width: 306px;
    height: auto;
    padding: 25px;
  }
  .button .btn-main {
    margin-top: 0;
    font-size: 28px;
  }
  .button .btn-sub {
    padding-right: 7%;
    padding-left: 0;
    font-size: 14px;
    text-align: center;
  }
  .button .btn-main::after {
    top: 15%;
    right: -50%;
    width: 24px;
    height: 24px;
    padding-right: 0;
  }
  .areacheck .form {
    position: relative;
    top: auto;
    left: auto;
    width: 95%;
    padding: 20px;
  }
  .areacheck .div {
    top: auto;
    left: auto;
    width: 100%;
  }
  .areacheck .area-confirmation,
  .areacheck .area-confirmation-2,
  .areacheck .area-confirmation-wrapper {
    position: relative;
    top: auto;
    left: auto;
    justify-content: center;
    width: 80%;
    height: auto;
    padding: 15px;
  }
  .areacheck .start-button-label {
    font-size: 28px;
  }
}
@media (width <= 1200px) {
  .areacheck-form .q-right {
    width: 27%;
  }
}
@media (width <= 992px) {
  .areacheck-form .q-right {
    width: 22%;
  }
  .areacheck-form .p-postal-code,
  .areacheck-form .p-region,
  .areacheck-form .p-locality,
  .areacheck-form .p-street-address,
  .areacheck-form .a-building,
  .areacheck-form .a {
    align-items: center;
    width: 100%;
    height: auto;
    margin-left: 0;
  }
  .areacheck-form .a-center {
    width: 86%;
  }
}
@media (width <= 768px) {
  .areacheck-form {
    display: flex;
    flex-direction: column;
    padding: 20px 15px;
  }
  .areacheck-form .form-row {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
  }
  .areacheck-form .left,
  .areacheck-form .center {
    flex: 1;
    width: 100%;
    padding-top: 0;
    padding-left: 0;
    margin-right: 0;
  }
  .areacheck-form .right {
    display: block;
    flex: 1;
    width: 100%;
    padding-top: 0;
    padding-right: 10px;
    padding-left: 0;
    margin-right: 0;
  }
  .areacheck-form .select {
    display: flex;
    justify-content: center;
    justify-content: space-between;
    margin: 0 auto 0 10%;
  }
  .areacheck-form .q {
    width: 100%;
    margin: 0 auto 3% 3%;
  }
  .areacheck .radio-group .wpcf7-list-item {
    padding-bottom: 10px;
    margin-left: 0;
  }
  .areacheck-form .q label br {
    display: none;
  }
  .areacheck-form .a,
  .areacheck-form .a-center,
  .areacheck-form .p-postal-code,
  .areacheck-form .p-region,
  .areacheck-form .p-locality,
  .areacheck-form .p-street-address,
  .areacheck-form .a-building {
    align-items: center;
    width: 100%;
    height: auto;
    margin-left: 0;
  }
  .areacheck-form .address {
    margin: 0;
  }
}
/* ↓↓　以下、お悩み　↓↓ */
.problem .problem-wrapper {
  background-image: url("../images/problem-bakground.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.problem .problem-wrapper .problem-header {
  position: relative;
  z-index: 25;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  min-width: 300px;
  max-width: 660px;
  aspect-ratio: 600/180;
  margin: 0 auto;
  margin-top: -8%;
  background-image: url("../images/problem-rectangle.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.problem .problem-wrapper .problem-header .problem-header-text {
  margin-top: -3%;
  font-size: clamp(0.94rem, 2.34vw, 1.88rem);
  font-weight: 700;
  color: #fff;
  text-align: center;
}
.problem .problem-wrapper .problem-header .problem-header-text span {
  font-size: clamp(1.44rem, 3.51vw, 2.81rem);
}
.problem
  .problem-wrapper
  .problem-header
  .problem-header-text
  span
  .common_dot-notation::after {
  font-size: clamp(1.44rem, 3.51vw, 2.81rem);
}

.speech-wrapper1 {
  display: flex;
  justify-content: space-between;
  width: 80%;
  margin: 0 auto;
}

.speech-wrapper2 {
  display: flex;
  justify-content: space-between;
  width: 40%;
  margin: 0 auto;
}

.speech-wrapper3 {
  display: flex;
  justify-content: space-between;
  width: 78%;
  margin: -8% auto;
}

.speech-wrapper-sp {
  display: none;
}

.speech1 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(202px, 50%, 266px);
  padding: 20px;
  margin-top: 7%;
  background-image: url("../images/speech1.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.speech2 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(226px, 50%, 298px);
  padding: 20px;
  margin-top: 2%;
  background-image: url("../images/speech2.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.speech3 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(208px, 50%, 274px);
  padding: 23px;
  margin-top: 9%;
  background-image: url("../images/speech3.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.speech4 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(240px, 50%, 316px);
  padding: 20px;
  background-image: url("../images/speech4.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.speech5 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(210px, 50%, 276px);
  padding: 20px;
  background-image: url("../images/speech5.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.speech6 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(194px, 50%, 256px);
  padding: 20px;
  margin-top: 2%;
  background-image: url("../images/speech6.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.problem .div {
  padding: 5% 20%;
  font-family: "Noto Sans JP-Regular", Helvetica;
  font-size: 18px;
  font-weight: 400;
  line-height: 35px;
  color: var(--black);
}
.problem .span {
  font-family: "Noto Sans JP-Bold", Helvetica;
  font-weight: 700;
}
.problem .problem-img {
  width: 307px;
  margin: 0 auto;
}
.problem .problem-img img {
  width: 100%;
  height: 413px;
  margin-top: -50%;
}
.problem .bottom-text {
  display: flex;
  flex-direction: column;
  gap: 19px;
  align-items: center;
  width: 672px;
  margin: 0 auto;
  margin-top: -6px;
}
.problem .bottom-text-frame {
  position: relative;
  display: flex;
  gap: 10px;
  align-items: center;
  align-self: stretch;
  justify-content: center;
  padding: 20px 115px;
  background-color: #f9770f;
}
.problem .bottom-text-2 {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: "Noto Sans JP-Bold", Helvetica;
  font-size: 20px;
  font-weight: 700;
  line-height: 50px;
  color: #fff;
  letter-spacing: 0;
}
.problem .text-wrapper-5 {
  font-size: 28px;
}
.problem .polygon-orange {
  position: relative;
  width: 29.12px;
  height: 25.75px;
}

@keyframes bounce {
  0% {
    transform: translateY(0);
    /* 初期位置 */
  }
  50% {
    transform: translateY(-8px);
    /* 上に移動 */
  }
  100% {
    transform: translateY(0);
    /* 元の位置に戻る */
  }
}
.polygon-orange {
  animation: bounce 1s infinite;
  /* アニメーションの設定 */
}

@media (width <= 1400px) {
  .speech-wrapper3 {
    margin: -5% auto;
  }
}
@media (width <= 1200px) {
  .problem .header-container {
    width: 550px;
    height: 200px;
    padding: 6% 7%;
  }
  .problem .header-text {
    padding: 0;
    font-size: 28px;
  }
  .speech-wrapper1 {
    width: 85%;
  }
  .problem .div {
    padding: 8% 12%;
    font-size: 16px;
    line-height: 30px;
  }
  .problem .problem-img {
    width: 250px;
  }
  .problem .problem-img img {
    height: auto;
  }
  .problem .bottom-text {
    gap: 10px;
    width: 50%;
  }
  .problem .bottom-text-frame {
    padding: 5%;
  }
  .problem .bottom-text-2 {
    font-size: 16px;
  }
  .problem .text-wrapper-5 {
    font-size: 24px;
  }
}
@media (width <= 992px) {
  .speech-wrapper1 {
    width: 90%;
  }
  .speech-wrapper2 {
    width: 52%;
  }
  .speech-wrapper3 {
    width: 90%;
    margin: -3% auto;
  }
}
@media (width <= 768px) {
  .problem .header-container {
    display: flex;
    width: 80%;
    height: auto;
    margin: -10% auto 0;
  }
  .problem .header-text {
    margin: 0 auto;
    font-size: 20px;
  }
  .speech-wrapper-pc {
    display: none;
  }
  .speech-wrapper-sp {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    height: 256px;
    overflow: hidden;
  }
  .speech-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: loop 75s -37.5s linear infinite;
  }
  .speech-wrapper-sp > div {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
  }
  .speech-track2 {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: loop2 75s linear infinite;
  }
  /* 1つ目のアニメーション */
  @keyframes loop {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  /* 2つ目のアニメーション */
  @keyframes loop2 {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-200%);
    }
  }
  スライド幅の設定 .speech-wrapper-sp {
    --slide-width: calc(218px + 20px);
    /* 各要素の幅 + 隙間を加算 */
  }
  吹き出し共通 .speech1,
  .speech2,
  .speech3,
  .speech4,
  .speech5,
  .speech6 {
    flex-shrink: 0;
    min-width: 220px;
  }
  .speech1 {
    flex-shrink: 0;
    width: 218px;
    height: 165px;
    margin-top: 0;
    margin-left: 20px;
  }
  .speech2 {
    flex-shrink: 0;
    width: 253px;
    height: 192px;
  }
  .speech3 {
    width: 249px;
    height: 189px;
    margin-top: 0;
  }
  .speech4 {
    flex-shrink: 0;
    width: 281px;
    height: 213px;
  }
  .speech5 {
    flex-shrink: 0;
    width: 241px;
    height: 184px;
  }
  .speech6 {
    flex-shrink: 0;
    width: 228px;
    height: 173px;
  }
  .problem .div {
    font-size: 16px;
    line-height: 30px;
  }
  .problem .problem-img {
    width: 50%;
    margin: 0 auto;
  }
  .problem .problem-img img {
    width: 100%;
    height: auto;
    margin-top: 15%;
  }
  .problem .bottom-text {
    width: 100%;
  }
  .problem .bottom-text-frame {
    padding: 15px 30px;
  }
  .problem .bottom-text-2 {
    font-size: 18px;
    line-height: 40px;
  }
  .problem .text-wrapper-5 {
    font-size: 24px;
  }
}
/* ↓↓　以下、About Us　↓↓ */
.aboutus_wrapper {
  position: relative;
}

.aboutus .vertical-container {
  position: relative;
  z-index: 10;
  width: 100%;
  margin-top: -140px;
}
.aboutus .vertical-container img {
  width: 100%;
}
.aboutus .horizontal-container {
  position: relative;
  z-index: 15;
  display: block;
  justify-content: center;
  width: fit-content;
  margin: 100px auto 0;
}
.aboutus .inner-container {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
}

.aboutus-inner-content {
  display: flex;
  align-items: baseline;
}

.aboutus .aboutus-logo {
  width: 100%;
}
.aboutus .aboutus-logo img {
  width: 100%;
}
.aboutus .text-container {
  display: flex;
  width: 100%;
  margin: 0 auto 0 -25%;
}
.aboutus .text-2 {
  font-family: "Noto Sans JP-Bold", Helvetica;
  font-size: 36px;
  font-weight: 700;
  color: var(--black);
  text-align: center;
  letter-spacing: 0;
  transform: rotate(-9.94deg);
}
.aboutus .line-3 {
  margin: 21px 10px 0 0;
}
.aboutus .line-3 img {
  width: 100%;
}
.aboutus .line-4 {
  margin: -10px 0 40px 16px;
}
.aboutus .line-4 img {
  width: 100%;
}
.aboutus .text {
  /* width: fit-content; */
  font-family: "Noto Sans JP-Bold", Helvetica, sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--black);
  text-align: center;
  white-space: nowrap;
}
.aboutus .aboutus-bg {
  z-index: 0;
  margin-top: -200px;
  background-image: url("../images/aboutus-bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.aboutus .content-container {
  display: flex;
  flex-direction: column;
  gap: 83px;
  align-items: flex-start;
  width: 70%;
  padding-top: 293px;
  margin: 0 auto;
}
@media screen and (width <= 1200px) {
  .aboutus .content-container {
    gap: 55px;
    width: 90%;
  }
}
.aboutus .aboutus-top {
  position: relative;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  align-self: stretch;
  justify-content: space-between;
  width: 100%;
}
@media screen and (width <= 768px) {
  .aboutus .aboutus-top {
    flex-direction: column;
    gap: 15px;
  }
}
@media screen and (width <= 1200px) {
  .aboutus .aboutus-top {
    width: 100%;
  }
}
.aboutus .aboutus-top .aboutus-top-box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 42%;
  /* 768pxから縦並び */
}
@media screen and (width <= 768px) {
  .aboutus .aboutus-top .aboutus-top-box {
    width: 100%;
  }
}
.aboutus .aboutus-top .aboutus-top-box .aboutus-top-box-header {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 336px;
  height: 75px;
  padding: 23px 60px;
  font-size: clamp(0.94rem, 1.88vw, 1.5rem);
  font-weight: 700;
  line-height: normal;
  color: #fff;
  background-color: #f9770f;
}
@media screen and (width <= 1200px) {
  .aboutus .aboutus-top .aboutus-top-box .aboutus-top-box-header {
    width: 80%;
    height: auto;
  }
}
@media screen and (width <= 991px) {
  .aboutus .aboutus-top .aboutus-top-box .aboutus-top-box-header {
    width: 80%;
    padding: 5%;
  }
}
@media screen and (width <= 768px) {
  .aboutus .aboutus-top .aboutus-top-box .aboutus-top-box-header {
    width: 80%;
    height: auto;
    padding: 20px 40px;
  }
}
.aboutus .aboutus-top .aboutus-top-box .aboutus-top-box-content {
  position: relative;
  z-index: 0;
  display: flex;
  gap: 10px;
  align-items: center;
  align-self: stretch;
  justify-content: center;
  width: 100%;
  height: 275px;
  padding: 87px 60px 38px;
  margin-top: -52px;
  font-size: clamp(0.75rem, 1.25vw, 1rem);
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0;
  background-color: #fff;
  border: 9px solid;
  border-color: #f9770f;
}
@media screen and (width <= 1200px) {
  .aboutus .aboutus-top .aboutus-top-box .aboutus-top-box-content {
    padding: 10% 5% 2%;
  }
}
@media screen and (width <= 768px) {
  .aboutus .aboutus-top .aboutus-top-box .aboutus-top-box-content {
    height: auto;
    padding: 87px 30px 25px;
  }
}
.aboutus .aboutus-top .aboutus-top-vector {
  position: relative;
  width: 8%;
  height: 8%;
}
.aboutus .aboutus-bottom {
  position: relative;
  width: 100%;
  margin-bottom: 8%;
  background-color: #fff;
  border: #f9770f solid 15px;
}
.aboutus .bottom-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-evenly;
  width: 100%;
  padding: 22px 0;
  background-color: #f9770f;
}
.aboutus .bottom-header-2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 36px;
  color: #fff;
}
.aboutus .bottom-header-2 span {
  font-family: "Zen Kaku Gothic New", Helvetica, sans-serif;
  font-size: 55px;
  font-weight: 900;
  font-feature-settings: "palt";
  line-height: 55px;
  color: #f9770f;
  -webkit-text-stroke: 1px #fff;
}
@media screen and (width <= 768px) {
  .aboutus .bottom-header-2 span {
    font-size: 30px;
  }
}
.aboutus .bottom-details {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
  width: 90%;
  padding: 20px 130px 15px;
  background-color: #fff;
}
.aboutus .bottom-details-2 {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  gap: 10%;
  align-items: baseline;
}
.aboutus .bottom-detail-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.aboutus .bottom-detail-header {
  display: flex;
  /* flex-direction: column; */
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
}
.aboutus .bottom-detail-header-2 {
  flex-wrap: nowrap;
  font-family: "Noto Sans JP-Bold", Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  color: #000;
}
.aboutus .bottom-detail-images {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  gap: 14px;
  align-items: flex-end;
  width: 70%;
}
.aboutus .element {
  position: relative;
  width: 100%;
  object-fit: cover;
}
.aboutus .bottom-detail-2 {
  width: fit-content;
  font-family: "Noto Sans JP-Regular", Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  color: #000;
  letter-spacing: 0;
  white-space: nowrap;
}
.aboutus .overlap-group-3 {
  width: 75%;
  padding-top: 3%;
  margin: 0 auto;
}
.aboutus .element-2 {
  width: 100%;
}
.aboutus .element-3 {
  position: absolute;
  right: 10px;
  bottom: 0;
  width: 220px;
  height: auto;
  object-fit: cover;
}

@media (width <= 1200px) {
  .aboutus .text-2 {
    font-size: 28px;
  }
  .aboutus-inner-content {
    display: flex;
    align-items: baseline;
    padding-bottom: 7%;
  }
  .aboutus .aboutus-logo {
    width: 75%;
    margin: 0 auto;
  }
  .aboutus .text {
    font-size: 28px;
  }
  .aboutus .aboutus-bg {
    margin-top: -170px;
  }
  .aboutus .div {
    width: 100%;
  }
}
@media (width <= 992px) {
  .aboutus .aboutus-bg {
    margin-top: -150px;
  }
  .aboutus .text-wrapper-2 {
    width: 100%;
  }
  .aboutus .bottom-header-2 {
    font-size: 30px;
  }
  .aboutus .bottom-details {
    width: 80%;
    padding: 5%;
  }
  .aboutus .bottom-detail-header-2 {
    font-size: 20px;
  }
  .aboutus .bottom-detail-content {
    gap: 25px;
  }
  .aboutus .element-3 {
    width: 195px;
  }
}
@media (width <= 768px) {
  .aboutus {
    width: 100%;
  }
  .aboutus .aboutus_wrapper {
    width: 100%;
  }
  .aboutus .horizontal-container {
    width: 100%;
    margin: 20% auto 0;
  }
  .aboutus .text-container {
    width: 100%;
    padding-left: 3%;
    margin: 0;
    background: #fff;
  }
  .aboutus .text-2 {
    font-size: 24px;
  }
  .aboutus .line-3 {
    margin: 12px 4px 0 0;
  }
  .aboutus .line-4 {
    margin: -15px 0 17px 8px;
  }
  .aboutus .vertical-container {
    margin-top: -3%;
  }
  .aboutus .inner-container {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    background: #fff;
  }
  .aboutus-inner-content {
    display: flex;
    align-items: baseline;
    justify-content: center;
    width: 100%;
  }
  .aboutus .aboutus-logo {
    width: 60%;
  }
  .aboutus .content-container {
    width: 90%;
    padding-top: 50%;
  }
  .aboutus .div {
    width: 100%;
  }
  .aboutus .text-wrapper {
    font-size: 20px;
  }
  .aboutus .bottom-header-2 {
    font-size: 20px;
    line-height: 40px;
  }
  .aboutus .bottom-details {
    display: flex;
    gap: 10px;
    width: 100%;
    padding: 0;
  }
  .aboutus .bottom-details-2 {
    flex-direction: column;
  }
  .aboutus .bottom-detail-content {
    margin: 10% auto;
  }
  .aboutus .bottom-detail-header-2 {
    font-size: 18px;
  }
  .aboutus .bottom-detail-images {
    width: 60%;
  }
  .aboutus .element-3 {
    display: none;
  }
  .aboutus .overlap-group-3 {
    width: 70%;
  }
  /* .aboutus .aboutus-bg {
    margin-top: -112px;
  } */
}
/* ↓↓　以下、お客様の声　↓↓ */
.voices {
  position: relative;
  width: 100%;
  background-color: #fec;
}
.voices .voices-container {
  width: 70%;
  padding: 10% 0%;
  margin: 0 auto;
}
@media screen and (width <= 1200px) {
  .voices .voices-container {
    width: 90%;
    padding: 15% 0%;
  }
}
.voices .voices-container .voices-speechbubble {
  position: absolute;
  top: 3%;
  left: 50%;
  width: 38%;
  margin: 0 auto;
  color: #fff;
  transform: translateX(-50%);
}
@media screen and (width <= 1880px) {
  .voices .voices-container .voices-speechbubble {
    top: 5%;
  }
}
@media screen and (width <= 1700px) {
  .voices .voices-container .voices-speechbubble {
    top: 2%;
  }
}
@media screen and (width <= 1440px) {
  .voices .voices-container .voices-speechbubble {
    top: 1%;
    width: 50%;
  }
}
@media screen and (width <= 768px) {
  .voices .voices-container .voices-speechbubble {
    top: 0.5%;
    width: 75%;
    height: 170px;
  }
}
@media screen and (width <= 660px) {
  .voices .voices-container .voices-speechbubble {
    height: 150px;
  }
}
.voices .voices-container .voices-speechbubble .voices-speechbubble-img {
  width: 100%;
  height: 100%;
}
.voices .voices-container .voices-speechbubble .header-title {
  position: absolute;
  top: 14%;
  left: 50%;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  align-self: stretch;
  justify-content: center;
  width: 100%;
  font-size: clamp(0.94rem, 2.34vw, 1.88rem);
  transform: translateX(-50%);
}
@media screen and (width <= 768px) {
  .voices .voices-container .voices-speechbubble .header-title {
    top: 15%;
  }
}
.voices .voices-container .voices-speechbubble .header-title span {
  font-size: clamp(1.44rem, 3.51vw, 2.81rem);
}
.voices
  .voices-container
  .voices-speechbubble
  .header-title
  span
  .common_dot-notation::after {
  font-size: clamp(1.44rem, 3.51vw, 2.81rem);
}
.voices .voices-container .voices-speechbubble .header-subtitle {
  position: absolute;
  top: 55%;
  left: 50%;
  align-self: stretch;
  width: 85%;
  padding: 1%;
  font-size: clamp(0.88rem, 1.56vw, 1.25rem);
  font-weight: 900;
  line-height: normal;
  color: #01253d;
  text-align: center;
  letter-spacing: 0;
  background: #fff;
  border-radius: 100px;
  transform: translateX(-50%);
}
@media screen and (width <= 768px) {
  .voices .voices-container .voices-speechbubble .header-subtitle {
    top: 45%;
  }
}
@media screen and (width <= 660px) {
  .voices .voices-container .voices-speechbubble .header-subtitle {
    top: 42%;
  }
}
.voices .voices-container .voices-speechbubble .header-subtitle br {
  display: none;
}
@media screen and (width <= 660px) {
  .voices .voices-container .voices-speechbubble .header-subtitle br {
    display: inline;
  }
}
.voices .voices-container .voices-cards-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 45px;
  justify-items: center;
  padding: 15% 5%;
  background-color: #fff;
}
@media screen and (width <= 1200px) {
  .voices .voices-container .voices-cards-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (width <= 660px) {
  .voices .voices-container .voices-cards-container {
    padding-top: 35%;
  }
}
.voices .voices-container .voices-cards-container .voices-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: 3px solid;
  border-color: #f9770f;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2509803922);
}
.voices .voices-container .voices-cards-container .voices-card .card-header {
  display: flex;
  flex: 0 0 auto;
  flex-direction: row;
  gap: 6%;
  align-items: flex-start;
  align-items: center;
  width: 100%;
  height: 20%;
  padding: 4% 5%;
  background-color: #f9770f;
}
.voices
  .voices-container
  .voices-cards-container
  .voices-card
  .card-header
  .header-icon {
  height: 100%;
}
.voices
  .voices-container
  .voices-cards-container
  .voices-card
  .card-header
  .header-title {
  position: relative;
  width: fit-content;
  font-size: clamp(0.94rem, 1.88vw, 1.5rem);
  font-weight: 700;
  line-height: 30px;
  color: #fff;
  text-align: center;
  letter-spacing: 0;
  white-space: wrap;
}
.voices .voices-container .voices-cards-container .voices-card .card-body {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 5%;
}
.voices .voices-container .voices-cards-container .voices-card .card-body p {
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0;
}
.voices .voices-container .voices-cards-container .voices-card .card-img {
  position: relative;
  align-self: stretch;
  width: 100%;
  padding: 0% 5% 5%;
}
.voices .voices-container .voices-message {
  position: relative;
  width: 82%;
  padding-bottom: 15%;
  margin: 0 auto;
  margin-top: -7%;
  margin-bottom: -20%;
  color: #fff;
}
.voices .voices-container .voices-message img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}
@media screen and (width <= 1200px) {
  .voices .voices-container .voices-message img {
    width: 90%;
  }
}
@media screen and (width <= 768px) {
  .voices .voices-container .voices-message img {
    width: 95%;
    height: 130px;
  }
}
@media screen and (width <= 599px) {
  .voices .voices-container .voices-message img {
    height: 150px;
  }
}
.voices .voices-container .voices-message .message-text {
  position: absolute;
  top: 25%;
  left: 50%;
  width: 98%;
  padding: 0% 2% 0;
  font-size: clamp(0.94rem, 1.88vw, 1.5rem);
  font-weight: 900;
  color: #fff;
  text-align: center;
  transform: translate(-50%, -50%);
}
.voices .voices-container .voices-message .message-text span {
  font-size: clamp(1.13rem, 2.81vw, 2.25rem);
}
.voices .voices-container .divider-container {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 80%;
  margin: 0 auto;
}
.voices .voices-container .divider-container .divider {
  width: 189px;
  height: 2px;
  background-color: #f9770f;
}
.voices .voices-container .divider-container .divider .description-text {
  font-family: "Noto Sans JP-Bold", Helvetica, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 55px;
  color: var(--black);
  text-align: center;
}
.voices
  .voices-container
  .divider-container
  .divider
  .description-text
  .keyword-text {
  font-family: "Zen Kaku Gothic New", Helvetica, sans-serif;
  font-size: 36px;
  font-weight: 900;
  font-feature-settings: "palt";
  line-height: 36px;
  color: #fff;
  white-space: nowrap;
  text-shadow: 2px 5px 0 #01253d;
  border-color: var(--black);
  -webkit-text-stroke: 2px #01253d;
}

@media (width <= 1200px) {
  .voices .header-container {
    gap: 5%;
    width: 90%;
    margin: 10% auto;
  }
  .voices .header-subtitle {
    font-size: 24px;
  }
  .voices .review-wrapper {
    gap: 0;
    row-gap: 5%;
    width: 100%;
    margin: 5% auto 11%;
  }
  .voices .voices-card {
    width: 90%;
    padding: 0;
  }
  .voices .div {
    width: 100%;
  }
  .voices .g4 {
    width: 23%;
  }
  .voices .review-body {
    width: fit-content;
    padding: 5%;
  }
  .voices .p {
    width: fit-content;
  }
  .voices .divider-container {
    padding-top: 10%;
  }
  .voices .description-text {
    font-size: 28px;
  }
}
@media (width <= 992px) {
  .voices .divider-container {
    padding-top: 15%;
  }
}
@media (width <= 768px) {
  .voices .header-container {
    gap: 5%;
    width: 90%;
    margin: 3% auto;
  }
  .voices .header {
    gap: 3%;
  }
  .voices .header-divider {
    position: relative;
    width: 387px;
    height: 2px;
    background-color: #f9770f;
  }
  .voices .text-wrapper {
    font-size: 30px;
  }
  .voices .span {
    font-size: 20px;
  }
  .voices .header-subtitle {
    font-size: 18px;
  }
  .voices .review-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 90%;
    margin: 5% auto;
  }
  .voices .voices-card {
    width: 100%;
    padding: 0;
  }
  .voices .div {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 7% 3%;
  }
  .voices .g {
    width: 20%;
  }
  .voices .review-body {
    width: 90%;
  }
  .voices .p {
    width: 100%;
  }
  .voices .element-m {
    margin-bottom: 0;
  }
  .voices .divider-container {
    width: 90%;
    padding-top: 5%;
  }
  .divider {
    width: 10%;
  }
  .voices .description-text {
    width: 80%;
    font-size: 22px;
    line-height: 40px;
  }
  .voices .keyword-text {
    font-size: 30px;
  }
}
/* ↓↓　以下、ポイント　↓↓ */
.point {
  background-color: #ffba67;
}
.point .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  width: 80%;
  margin: 0 auto;
}
.point .div {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  justify-content: flex-end;
  width: 100%;
  margin-top: 50px;
  background-color: #f9770f;
}
.point .text-container {
  display: flex;
  width: 60%;
  padding: 35px 0;
  margin: 0 auto;
}
.point .sub-heading {
  font-family: "Noto Sans JP-Bold", Helvetica, sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #fcfcfc;
  text-align: center;
  white-space: nowrap;
}
.point .main-heading {
  font-family: "Zen Kaku Gothic New", Helvetica, sans-serif;
  font-size: 55px;
  font-weight: 900;
  font-feature-settings: "palt";
  line-height: 55px;
  color: #f9770f;
  white-space: nowrap;
  -webkit-text-stroke: 3px #fff;
}

.point2 {
  position: relative;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 50px;
  background-color: #fff;
}

.point .element-m {
  position: absolute;
  right: 3%;
  bottom: 0;
  box-sizing: border-box;
  width: 25%;
  height: auto;
}

.point-img {
  width: 100%;
}

.point-wrapper {
  position: relative;
  display: flex;
  flex: 0 0 65%;
  flex-direction: column;
  gap: 80px;
  align-items: flex-start;
  width: 100%;
  padding: 5% 2% 5% 5%;
}

.point-container {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 35px;
  align-items: center;
  width: 100%;
}

.point .text-container-2 {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: center;
  padding-top: 10px;
}
.point .icon {
  width: 120px;
  /* 最大サイズを固定 */
  max-width: 100%;
  height: auto;
}
.point .icon img {
  width: 100%;
  height: auto;
}
.point .div-wrapper {
  position: relative;
  width: 527px;
  height: 40px;
  margin-right: -2px;
}
.point .section-heading {
  display: inline;
  font-family: "Noto Sans JP-Bold", Helvetica, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 35px;
  color: var(--black);
  white-space: nowrap;
  background: linear-gradient(to right, #ffbe39 0%, #ffbe39 100%) no-repeat;
  background-position: 0 100%;
  background-size: 100% 15px;
}
.point .description {
  align-self: stretch;
  width: 100%;
  font-family: "Noto Sans JP-Regular", Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
  color: var(--black);
}

@media (width <= 1200px) {
  .point-wrapper {
    flex: 1 0 60%;
  }
  .point-container {
    gap: 15px;
    width: 80%;
  }
  .point .text-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .point .sub-heading {
    font-size: 28px;
  }
  .point .main-heading {
    -webkit-text-stroke: 2px #fff;
    font-size: 45px;
  }
  .point .text-container-2 {
    gap: 0;
  }
  .point .section-heading {
    font-size: 24px;
    line-height: 24px;
  }
  .point .description {
    width: 90%;
    font-size: 18px;
    line-height: 25px;
  }
}
@media (width <= 992px) {
  .point-container {
    width: 90%;
  }
  .point .description {
    width: 75%;
  }
}
@media (width <= 768px) {
  .point .container {
    width: 90%;
  }
  .point .div {
    margin-top: 10%;
  }
  .point .text-container {
    display: block;
    width: 100%;
    padding: 5% 3%;
  }
  .point .sub-heading {
    font-size: 20px;
    white-space: wrap;
  }
  .point .main-heading {
    font-size: 35px;
    text-align: center;
    white-space: wrap;
    -webkit-text-stroke: 1px #fff;
  }
  .point2 {
    justify-content: center;
    width: 100%;
  }
  .point .element-m {
    display: none;
  }
  .point-wrapper {
    flex: 0 0 auto;
    gap: 50px;
    align-items: center;
    width: 90%;
    padding: 5% 0;
    margin: 0 auto;
  }
  .point-container {
    flex-direction: column;
    gap: 20px;
  }
  .point .icon {
    width: 40%;
    height: auto;
  }
  .point .text-container-2 {
    width: 100%;
  }
  .point .div-wrapper {
    width: 100%;
    height: auto;
  }
  .point .section-heading {
    display: inline;
    width: 100%;
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    white-space: wrap;
    background: linear-gradient(to right, #ffbe39 0%, #ffbe39 100%) no-repeat;
    background-position: 0 100%;
    background-size: 100% 15px;
  }
  .point .description {
    width: 100%;
    font-size: 16px;
    line-height: 25px;
  }
}
/* ↓↓　以下、例外　↓↓ */
.exception {
  position: relative;
  z-index: 25;
  width: 100%;
  background-image: url("../images/exception-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.exception .exception-container {
  width: 60%;
  padding-bottom: 150px;
  margin: 0 auto;
}
@media screen and (width <= 1400px) {
  .exception .exception-container {
    width: 70%;
  }
}
@media screen and (width <= 768px) {
  .exception .exception-container {
    width: 90%;
  }
}
.exception .exception-container .exception-header {
  padding-top: 100px;
  padding-bottom: 90px;
  font-size: clamp(0.94rem, 2.34vw, 1.88rem);
  font-weight: 700;
  color: #25013d;
  text-align: center;
}
@media screen and (width <= 1200px) {
  .exception .exception-container .exception-header {
    padding-top: 10%;
    padding-bottom: 8%;
  }
}
@media screen and (width <= 768px) {
  .exception .exception-container .exception-header {
    line-height: 250%;
  }
}
.exception .exception-container .exception-header .common_text-marker {
  font-size: clamp(1.44rem, 3.51vw, 2.81rem);
  background-size: 100% 20px;
}
.exception .exception-container .exception-header .common_dot-notation {
  font-size: clamp(1.44rem, 3.51vw, 2.81rem);
}
.exception .exception-container .exception-header .common_dot-notation::after {
  font-size: clamp(1.44rem, 3.51vw, 2.81rem);
  line-height: 45px;
  content: "・・・・・・・・";
}
.exception .exception-content {
  display: flex;
  flex-direction: row;
  gap: 2%;
  color: #01253d;
  /* 画面幅768px以下の場合、縦並びに変更 */
}
@media screen and (width <= 768px) {
  .exception .exception-content {
    flex-direction: column-reverse;
  }
}
.exception .exception-content .exception-img {
  position: relative;
  width: 25%;
}
@media screen and (width <= 768px) {
  .exception .exception-content .exception-img {
    width: 40%;
    margin: 0 auto;
  }
}
.exception .exception-content .exception-img img {
  position: absolute;
  bottom: 0;
  left: 5%;
  width: 100%;
  height: auto;
}
@media screen and (width <= 768px) {
  .exception .exception-content .exception-img img {
    position: static;
  }
}
.exception .exception-content .exception-content-text {
  width: 75%;
}
@media screen and (width <= 768px) {
  .exception .exception-content .exception-content-text {
    width: 100%;
  }
}
.exception .exception-content .exception-content-text .exception-speechbubble {
  position: relative;
  align-items: center;
  width: 100%;
  font-size: clamp(0.94rem, 2.34vw, 1.88rem);
  font-weight: 700;
  line-height: 45px;
  /* 画面幅768px以下の場合は、svgではなくCSSでの描画に切り替え */
}
@media screen and (width <= 1200px) {
  .exception
    .exception-content
    .exception-content-text
    .exception-speechbubble {
    line-height: 35px;
  }
}
@media screen and (width <= 768px) {
  .exception
    .exception-content
    .exception-content-text
    .exception-speechbubble {
    width: 100%;
    padding: 3% 8%;
    line-height: 30px;
    background-color: #fff1d2;
    border-radius: 10px;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.25));
  }
}
.exception
  .exception-content
  .exception-content-text
  .exception-speechbubble
  img {
  width: 100%;
  /* 画面幅768px以下の場合は、svgではなくCSSでの描画に切り替え */
}
@media screen and (width <= 768px) {
  .exception
    .exception-content
    .exception-content-text
    .exception-speechbubble
    img {
    display: none;
  }
}
.exception
  .exception-content
  .exception-content-text
  .exception-speechbubble
  .exception-speechbubble-text {
  position: absolute;
  top: 45%;
  left: 65%;
  width: 100%;
  font-size: clamp(0.94rem, 2.34vw, 1.88rem);
  font-weight: 700;
  color: #01253d;
  text-align: start;
  transform: translate(-50%, -50%);
}
@media screen and (width <= 768px) {
  .exception
    .exception-content
    .exception-content-text
    .exception-speechbubble
    .exception-speechbubble-text {
    position: static;
    top: auto;
    left: auto;
    width: 100%;
    padding: 0;
    transform: none;
  }
}
.exception
  .exception-content
  .exception-content-text
  .exception-speechbubble
  .exception-speechbubble-text
  span {
  font-weight: 900;
}
.exception
  .exception-content
  .exception-content-text
  .exception-speechbubble
  .exception-speechbubble-text
  .common_text-marker {
  background-size: 100% 14px;
}
@media screen and (width <= 768px) {
  .exception
    .exception-content
    .exception-content-text
    .exception-speechbubble
    .exception-speechbubble-text
    .exception-speechbubble-text-break {
    display: none;
  }
}
.exception .exception-content .exception-content-text .exception-description {
  width: 100%;
  padding: 5% 1% 5% 5%;
  font-size: clamp(0.94rem, 1.88vw, 1.5rem);
  font-weight: 400;
  line-height: 36px;
}
@media screen and (width <= 768px) {
  .exception .exception-content .exception-content-text .exception-description {
    line-height: 30px;
  }
}
.exception .exception-message {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  padding: 4% 5%;
  background-color: #f9770f;
}
@media screen and (width <= 1200px) {
  .exception .exception-message {
    padding: 2% 4%;
  }
}
.exception .exception-message .exception-message-text {
  padding-left: 30%;
  font-size: clamp(0.94rem, 2.34vw, 1.88rem);
  font-weight: 900;
  line-height: 45px;
  color: #fff;
  letter-spacing: 0;
  white-space: wrap;
}
@media screen and (width <= 768px) {
  .exception .exception-message .exception-message-text {
    line-height: 30px;
  }
}
.exception .exception-message .exception-message-icon {
  position: absolute;
  left: 5%;
  width: 25%;
}
.exception .exception-message .exception-message-icon img {
  width: 100%;
}

/* ↓↓　以下、Introduce　↓↓ */
.introduce {
  position: relative;
  z-index: 0;
  padding: 18% 8% 6%;
  margin-top: -10%;
  text-align: center;
  background-image: url("../images/introduce-bg.jpg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-size: cover;
}
.introduce .introduce-msg {
  display: inline;
  font-size: clamp(1.13rem, 2.81vw, 2.25rem);
  font-weight: 900;
  line-height: 180%;
  text-align: center;
  border-bottom: 2px solid #fff;
}
.introduce .introduce-msg .best {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  font-feature-settings: "palt";
  line-height: 55px;
  color: #f96511;
  white-space: nowrap;
  -webkit-text-stroke: 0.5vw #fff;
  paint-order: stroke;
}
.introduce .introduce-header {
  position: absolute;
  top: 47%;
  z-index: 25;
  padding: 2% 5%;
  margin-left: 2%;
  font-size: clamp(0.94rem, 2.34vw, 1.88rem);
  font-weight: 700;
  line-height: 45px;
  text-align: center;
  background-color: #1a335e;
}
@media screen and (width <= 1300px) {
  .introduce .introduce-header {
    top: 45%;
    padding: 2% 4%;
  }
}
@media screen and (width <= 1200px) {
  .introduce .introduce-header {
    top: 43%;
  }
}
@media screen and (width <= 1024px) {
  .introduce .introduce-header {
    top: 28%;
  }
}
@media screen and (width <= 900px) {
  .introduce .introduce-header {
    top: 26%;
  }
}
@media screen and (width <= 768px) {
  .introduce .introduce-header {
    top: 24%;
  }
}
.introduce .introduce-content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: row; /* 1025px以上：テキストと画像が横並び */
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  margin-top: 10%;
  background-color: #fff;
  /* 1024px以下：テキストと画像が縦並び padding追加 */
}
@media screen and (width <= 1024px) {
  .introduce .introduce-content {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 4%;
  }
}
.introduce .introduce-content .introduce-content-text {
  justify-content: start;
  width: 50%;
  padding: 5%;
  font-size: clamp(0.94rem, 1.88vw, 1.5rem);
  font-weight: 400;
  line-height: 38px;
  color: #01253d;
  /* 1024px以下：テキストと画像が縦並びのため、文字エリアを画面幅に合わせる */
}
@media screen and (width <= 1360px) {
  .introduce .introduce-content .introduce-content-text {
    padding: 9% 3% 5%;
  }
}
@media screen and (width <= 1024px) {
  .introduce .introduce-content .introduce-content-text {
    width: 100%;
    padding: 9% 0% 5%;
  }
}
.introduce .introduce-content .introduce-content-text .text-bold {
  display: inline;
  font-weight: 900;
  word-break: keep-all;
  white-space: nowrap;
}
.introduce .introduce-content .introduce-content-img {
  width: 50%;
  height: 100%;
  overflow: hidden;
  /* 1024px以下：テキストと画像が縦並びのため、画像を画面幅に合わせる */
}
@media screen and (width <= 1024px) {
  .introduce .introduce-content .introduce-content-img {
    width: 100%;
  }
}
.introduce .introduce-content .introduce-content-img img {
  width: 100%;
  object-fit: cover;
}

/* ↓↓　以下、News　↓↓ */
.news {
  padding: 35px 0;
  background: linear-gradient(90deg, #f15a24 0%, #ff8c00 100%);
}

.news-wrapper {
  width: 90%;
  padding: 30px 6%;
  margin: 0 0 0 auto;
  background-color: #fff;
}
@media screen and (width <= 768px) {
  .news-wrapper {
    width: 95%;
    padding: 5% 4%;
  }
}

.news h2 {
  padding-bottom: 30px;
  font-size: 36px;
  font-weight: 700;
  color: var(--black, #01253d);
}
.news ul {
  padding-left: 0;
  line-height: 60px;
  list-style-type: none;
}
.news .date {
  padding-left: 0.5%;
  font-size: 22px;
  font-weight: 700;
  color: var(--black, #01253d);
}
.news .title {
  padding-left: 3%;
  font-size: 20px;
  font-weight: 400;
  color: var(--black, #01253d);
}

ul li {
  border-bottom: 1px solid #b3c0c9;
}
ul li:last-child {
  border-bottom: none;
}

@media (width <= 1200px) {
  .news h2 {
    font-size: 30px;
  }
  .news .date {
    font-size: 20px;
  }
  .news .title {
    font-size: 18px;
  }
}
@media (width <= 768px) {
  .news h2 {
    padding-bottom: 0;
    font-size: 28px;
  }
  .news ul {
    line-height: 30px;
  }
  .news .date {
    display: block;
    padding: 3% 0;
    font-size: 20px;
  }
  .news .title {
    padding-left: 0;
    font-size: 16px;
  }
  ul li {
    padding: 3%;
  }
}
/* ↓↓　以下、お問い合わせ　↓↓ */
.contact {
  background: #fff1d2;
}

.contact-wrapper {
  width: 60%;
  padding-top: 70px;
  margin: 0 auto;
}

.contact h2 {
  padding-bottom: 50px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--black, #01253d);
  text-align: center;
}

.form-row {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid #fff;
  /* margin-bottom: 15px; */
}

.form-row-last {
  border-bottom: none;
}

.form-row .form-title {
  display: flex;
  align-items: center;
  width: 40%;
  padding: 3% 4%;
  margin-right: 50px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--black, #01253d);
  text-align: left;
  background: linear-gradient(0deg, #ffba67 0%, #ffba67 100%);
  border-bottom: 1px solid #fff;
}
.form-row .form-title::after {
  color: #f00;
  content: "*";
}
.form-row .form-title-room::after {
  content: none;
}
.form-row label {
  width: 100%;
  padding-right: 10px;
  text-align: left;
}
.form-row .input-group-name {
  display: flex;
  gap: 0;
  justify-content: space-between;
  width: 100%;
}
.form-row .name {
  flex: 1;
  width: 50%;
  margin-right: 2%;
}

.name:last-child {
  margin-right: 0;
}

.form-row .input-group {
  width: 100%;
  padding: 20px 10px;
  margin-top: 1%;
}

.input-group input,
.input-group textarea {
  box-sizing: border-box;
  width: 100%;
  padding: 20px 10px;
  font-size: 20px;
}
.input-group input[type="checkbox"] {
  display: inline-block;
  width: 45px;
  height: 45px;
  margin-right: 8px;
  vertical-align: middle;
}

/* placeholder のフォントサイズを変更 */
input::placeholder,
textarea::placeholder {
  font-size: 16px;
  color: #5a6e7c;
}

.form-row-privacy {
  display: flex;
  gap: 15px;
  /* チェックボックスと文言の間隔 */
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--black, #01253d);
  text-align: center;
}

.input-group-privacy {
  display: flex;
  gap: 19px;
  /* チェックボックスとリンクの間隔 */
  align-items: center;
}

.privacy-note {
  font-size: 24px;
  color: var(--black, #01253d);
}

.privacy-link {
  color: var(--black, #01253d);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.input-group-privacy input[type="checkbox"] {
  width: 30px;
  height: 30px;
  margin: 0;
  vertical-align: middle;
}

.contact-submit {
  width: 306px;
  padding: 100px 0 80px;
  margin: 0 auto;
}
.contact-submit:hover {
  opacity: 0.7;
  transition: 0.3s;
}

.contact input[type="submit"],
.contact button[type="submit"] {
  width: 306px;
  height: 98px;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(90deg, #f15a24 0%, #ff8c00 100%);
  border: none;
  border-radius: 7px;
}

.wpcf7-spinner,
.privacy-check .wpcf7-list-item-label {
  display: none;
}

@media (width <= 1200px) {
  .contact h2 {
    font-size: 30px;
  }
  .contact-wrapper {
    width: 70%;
  }
  .form-row .form-title,
  input::placeholder,
  textarea::placeholder {
    font-size: 18px;
  }
  /* placeholder のフォントサイズを変更 */
  .input-group input,
  .input-group textarea {
    font-size: 18px;
  }
  .privacy-note {
    font-size: 18px;
  }
  .contact input[type="submit"],
  .contact button[type="submit"] {
    width: 290px;
    height: 90px;
    font-size: 24px;
  }
}
@media (width <= 992px) {
  .form-row .input-group {
    padding: 2% 0;
  }
}
@media (width <= 768px) {
  .contact-wrapper {
    width: 90%;
    padding-top: 10%;
  }
  .contact h2 {
    padding-bottom: 10%;
    font-size: 28px;
  }
  .form-row {
    flex-direction: column;
    border-bottom: 1px solid #fff;
    /* margin-bottom: 15px; */
  }
  .form-row .form-title {
    display: flex;
    width: 100%;
    padding: 7% 4%;
    margin-right: 0;
    font-size: 18px;
    border-bottom: none;
  }
  .form-row label {
    width: 80%;
    padding-right: 10px;
    text-align: left;
  }
  .form-row .name {
    width: 100%;
    margin-right: 2%;
  }
  .form-row .input-group {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 3% 1% 9%;
    margin-top: 0;
  }
  .input-group input,
  .input-group textarea {
    padding: 3%;
    font-size: 18px;
  }
  .form-row-privacy {
    padding-top: 0;
  }
  .privacy-note {
    font-size: 18px;
  }
  .input-group-privacy {
    gap: 10px;
    /* チェックボックスとリンクの間隔 */
  }
  .privacy-link {
    text-underline-offset: 2px;
  }
  .contact-submit {
    width: 100%;
    padding: 10%;
    margin: 0 auto;
  }
  .contact input[type="submit"],
  .contact button[type="submit"] {
    width: 100%;
    height: auto;
    padding: 5% 3%;
    font-size: 24px;
    cursor: pointer;
  }
}
/* ↓↓　以下、footer　↓↓ */
.footer {
  background: #f9770f;
}

.footer-container {
  width: 80%;
  padding: 40px 0 30px;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
}
.footer-container a {
  color: #fff;
}

.footer-wrapper-right {
  display: block;
  width: 50%;
  margin: 0 0 0 auto;
}

.footer1 {
  display: flex;
  justify-content: space-between;
}

.footer2 {
  display: flex;
  gap: 60px;
  justify-content: flex-end;
  padding-top: 30px;
}

.footer-wrapper-left {
  padding-top: 60px;
}

.copy-right {
  padding-top: 15px;
  font-size: 12px;
  font-weight: 400;
}

@media (width <= 1200px) {
  .footer-container {
    width: 90%;
    padding: 40px 0 20px;
  }
}
@media (width <= 768px) {
  .footer-container {
    width: 90%;
    padding: 8% 0 5%;
    font-size: 14px;
  }
  .footer-wrapper-right {
    display: block;
    width: 100%;
    margin: 0;
  }
  .footer1 {
    flex-direction: column;
    gap: 5px;
    align-items: flex-end;
  }
  .footer2 {
    flex-direction: column;
    gap: 5px;
    align-items: flex-end;
    padding-top: 5px;
  }
  .footer-wrapper-left {
    padding-top: 15%;
    text-align: center;
  }
  .copy-right {
    padding-top: 3%;
  }
}
/* ↓↓　以下、プライバシーポリシー　↓↓ */
.pp {
  width: 60%;
  padding: 2%;
  margin: 5% auto;
  background: linear-gradient(90deg, #f15a24 0%, #ff8c00 100%);
  border-radius: 7px;
}

.pp-container {
  padding: 5%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: var(--black, #01253d);
  background: #fff;
  border-radius: 7px;
}
.pp-container h1 {
  padding-bottom: 3%;
  font-size: 24px;
  text-align: center;
}
.pp-container h2 {
  padding-top: 4%;
  padding-bottom: 1%;
  font-size: 20px;
}
.pp-container p {
  padding-left: 1.5%;
}

.pp-date {
  padding-top: 7%;
  text-align: right;
}

@media (width <= 992px) {
  .pp {
    width: 90%;
    margin: 10% auto;
  }
  .pp-container {
    font-size: 15px;
  }
  .pp-container h1 {
    font-size: 20px;
  }
  .pp-container h2 {
    font-size: 18px;
  }
}
@media (width <= 768px) {
  .pp {
    margin: 18% auto;
  }
  .pp-container {
    font-size: 15px;
  }
  .pp-container h1 {
    padding-bottom: 5%;
  }
  .pp-container h2 {
    padding-top: 10%;
    padding-bottom: 2%;
  }
}
/* ↓↓　以下、特定商取引法に基づく表記　↓↓ */
/* .ln {
  width: 60%;
  margin: 5% auto;
  padding: 2%;
  background: linear-gradient(90deg, #F15A24 0%, #FF8C00 100%);
  border-radius: 7px;
} */
.ln-container {
  width: 65%;
  padding: 5%;
  margin: 2% auto;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: var(--black, #01253d);
  background: #fff;
  border-radius: 7px;
}
.ln-container h1 {
  padding-bottom: 4%;
  font-size: 24px;
  text-align: center;
}
.ln-container th {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
}

.ln-table {
  width: 100%;
  border-collapse: collapse;
}
.ln-table th,
.ln-table td {
  padding: 2%;
  vertical-align: top;
  text-align: left;
  border: 1px solid #ccc;
}
.ln-table th {
  width: 30%;
  background: #01253d;
}
.ln-table td {
  background: #fff;
}
.ln-table span {
  font-weight: 700;
}
.ln-table .ln-space {
  padding-left: 1%;
  font-weight: normal;
}

@media (width <= 992px) {
  .ln-container {
    width: 90%;
    margin: 10% auto;
  }
  .ln-container h1 {
    font-size: 20px;
  }
  .ln-container th {
    font-size: 16px;
  }
}
@media (width <= 768px) {
  .ln-container {
    width: 95%;
    margin: 15% auto;
    font-size: 14px;
  }
  .ln-container h1 {
    padding-bottom: 5%;
  }
  .ln-container th {
    font-size: 15px;
  }
}
/* ふわっと表示させる */
.fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1.5s ease;
  /* アニメーションの時間を1.5秒に変更 */
}
.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* 以下、サンクスページ */
.thanks-page {
  padding: 5% 0;
  /* width: 60%; */
  margin: 5% auto 0;
  background: #fff1d2;
}

.thanks-page-container {
  width: 60%;
  padding: 5% 8% 2%;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: var(--black, #01253d);
  background: #fff;
  border-radius: 7px;
}

.thanks-page h1 {
  margin: 2% 0 8%;
  font-size: 1.5rem;
  text-align: center;
}
.thanks-page p {
  line-height: 2.5;
}
.thanks-page .home-button {
  width: 20%;
  padding: 2%;
  margin: 10% auto 0;
  text-align: center;
}
.thanks-page .home-button a {
  font-weight: 600;
  color: var(--black, #01253d);
}

@media (width <= 1200px) {
  .thanks-page-container {
    width: 70%;
  }
}
@media (width <= 992px) {
  .thanks-page-container {
    width: 80%;
  }
}
@media (width <= 768px) {
  .thanks-page {
    padding: 10% 0;
  }
  .thanks-page-container {
    width: 90%;
    padding: 9% 8%;
  }
  .thanks-page p {
    line-height: 2;
  }
  .thanks-page .home-button {
    width: 50%;
  }
}
/* recaptcha非表示 */
.grecaptcha-badge {
  display: none;
}

.grecaptcha-logo {
  display: none;
}

/* マーカー */
.common_text-marker {
  display: inline;
  font-weight: 700;
  background: linear-gradient(to right, #ffbe39 0%, #ffbe39 100%) no-repeat;
  background-position: 0 100%;
  background-size: 100% 7px;
}

/* 傍点 */
/* 適用先のクラスでfont-sizeとcontent(点の数)を上書きする */
.common_dot-notation {
  position: relative;
  display: inline-block;
}
.common_dot-notation::after {
  position: absolute;
  top: -50%;
  left: 50%;
  font-size: clamp(0.94rem, 2.34vw, 1.88rem);
  content: "・・・";
  transform: translateX(-50%);
}

/*# sourceMappingURL=style.css.map */
