@charset "UTF-8";
@use 'sass:map';
@use 'sass:math';
html {
  scroll-behavior: smooth;
  font-family: "Noto Sans JP", sans-serif;
  color: #070203;
}

.pc {
  display: block !important;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .sp {
    display: initial;
  }
}

.top {
  position: fixed;
  top: 0;
  padding: 25px;
  width: 100%;
  z-index: 1000;
  color: #070203;
  background-color: #ffffff;
}

@media screen and (max-width: 767px) {
  .top {
    padding: 10px 20px;
    margin: 0;
    background-color: white;
  }
}

.top .logo_menu {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: top;
      -ms-flex-align: top;
          align-items: top;
}

.top .logo_menu .one-line {
  font-size: clamp(8px, 0.69vw, 10px);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.44;
}

.top .logo_menu .logo {
  display: none;
}

@media screen and (max-width: 767px) {
  .top .logo_menu .logo {
    display: block;
    padding-top: 0px;
  }
}

.top .logo_menu .logo img {
  width: 100%;
  max-width: 203px;
  height: auto;
}

@media screen and (max-width: 767px) {
  .top .logo_menu .logo img {
    max-width: 90px;
  }
}

.top .logo_menu .menu_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: end;
}

@media screen and (max-width: 767px) {
  .top .logo_menu .menu_area {
    display: none;
  }
}

.top .logo_menu .menu_area .menu {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 3px 1fr 3px 1fr 3px 1fr 3px 1fr 3px;
      grid-template-columns: 3px 1fr 3px 1fr 3px 1fr 3px 1fr 3px;
      grid-template-areas: ". item-1 . item-2 . item-3 . item-4 .";
  gap: 0 2vw;
  font-size: clamp(10px, 0.83vw, 12px);
  font-weight: 500;
  letter-spacing: 0.04em;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.top .logo_menu .menu_area .menu div {
  text-align: center;
}

.top .logo_menu .menu_area .menu .item-1 {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: item-1;
}

.top .logo_menu .menu_area .menu .item-2 {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: item-2;
}

.top .logo_menu .menu_area .menu .item-3 {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
  grid-area: item-3;
}

.top .logo_menu .menu_area .menu .item-4 {
  -ms-grid-row: 1;
  -ms-grid-column: 8;
  grid-area: item-4;
}

.top .logo_menu .menu_area .menu .partition {
  border-right: 1px solid #cccccc;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .top .logo_menu .menu_area .menu .partition {
    border-top: 2px solid #365699;
    border-right: none;
  }
}

@media screen and (max-width: 767px) {
  .top .logo_menu .menu_area .menu {
    position: fixed;
    background-image: url("../images/sp_menu_bg.jpg");
    background-color: rgba(70, 50, 51, 0.2);
    background-blend-mode: multiply;
    background-position: top left;
    background-size: cover;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -ms-grid-rows: 1fr;
        grid-template-rows: 1fr;
    gap: 20px;
    width: 100%;
    height: 100vh;
    padding: 60px 40px;
    top: 0;
    right: -100%;
    -webkit-transition: all 0.75s ease-in-out;
    transition: all 0.75s ease-in-out;
  }
  .top .logo_menu .menu_area .menu .sp {
    display: block;
  }
  .top .logo_menu .menu_area .menu .sp .border_spacer {
    border-bottom: 2px solid white;
    padding-top: 20px;
  }
}

.top .logo_menu .menu_area .menu a {
  text-align: center;
  text-decoration: none;
  color: #070203;
}

@media screen and (max-width: 767px) {
  .top .logo_menu .menu_area .menu a {
    font-size: 19px;
    text-align: left;
  }
}

.top .logo_menu .menu_area .menu a:hover {
  color: #002c83;
}

.top .logo_menu .menu_area .menu.open {
  right: 0;
}

section {
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  section {
    width: 100%;
  }
}

section .section-title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

@media screen and (max-width: 767px) {
  section .section-title {
    margin: 6px 20px;
  }
}

section .section-title .title_jp {
  font-size: clamp(16.02px, 2.08vw, 30px);
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2.0;
  text-align: center;
  color: #365699;
}

@media screen and (max-width: 767px) {
  section .section-title .title_jp {
    font-size: clamp(6.68px, 5.48vw, 20px);
    line-height: 1.5;
  }
}

section .section-title .title_en {
  font-family: "Josefin Sans", sans-serif;
  font-size: clamp(8.54px, 1.11vw, 16px);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
  color: #88cdf9;
}

@media screen and (max-width: 767px) {
  section .section-title .title_en {
    font-size: clamp(3.34px, 2.74vw, 10px);
    line-height: 1.44;
  }
}

section .section-title-bar {
  position: relative;
  font-size: clamp(13.35px, 1.74vw, 25px);
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2.4;
  text-align: center;
  color: #365699;
}

@media screen and (max-width: 767px) {
  section .section-title-bar {
    font-size: clamp(5.01px, 4.11vw, 15px);
  }
}

section .section-title-bar::after {
  content: "";
  position: absolute;
  bottom: clamp(-6.41px, -0.83vw, -12px);
  left: 50%;
  width: clamp(16.02px, 2.08vw, 30px);
  height: 4px;
  background-color: #88cdf9;
  border-radius: 10px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  section .section-title-bar::after {
    width: clamp(10.02px, 8.22vw, 30px);
  }
}

.first-view {
  position: relative;
  padding-top: 70px;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(80%, transparent), color-stop(80%, #e9edf4), to(#e9edf4)), url("../images/bg-1.png");
  background: linear-gradient(transparent 0%, transparent 80%, #e9edf4 80%, #e9edf4 100%), url("../images/bg-1.png");
  background-position-y: 70%;
  background-size: 100vw;
  background-repeat: no-repeat;
}

@media screen and (max-width: 767px) {
  .first-view {
    margin: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(50%, transparent), color-stop(50%, #e9edf4), to(#e9edf4)), url("../images/bg-1-sp.png");
    background: linear-gradient(transparent 0%, transparent 50%, #e9edf4 50%, #e9edf4 100%), url("../images/bg-1-sp.png");
    background-position-y: 45%;
    background-size: 100vw;
    background-repeat: no-repeat;
  }
}

.first-view .container {
  margin-inline: 30px;
}

@media screen and (max-width: 767px) {
  .first-view .container {
    margin: 0;
  }
}

.first-view .container .logo {
  position: absolute;
  max-width: 203px;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .first-view .container .logo {
    display: none;
  }
}

.first-view .first-view-textarea {
  position: absolute;
  width: 35%;
  max-width: 492px;
  top: 45%;
  background-image: url(../images/textarea.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  z-index: 2;
  font-family: "Noto Sans JP", sans-serif;
  color: white;
}

@media screen and (max-width: 767px) {
  .first-view .first-view-textarea {
    top: 75%;
    left: 20px;
    width: 60%;
    max-width: 440px;
  }
}

.first-view .text-content {
  margin: 15% 7%;
}

.first-view .headline {
  font-size: clamp(13.35px, 1.74vw, 25px);
  font-weight: 900;
  letter-spacing: 0.15em;
  line-height: 1.88;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .first-view .headline {
    font-size: clamp(3.67px, 3.01vw, 11px);
    line-height: 1.91;
  }
}

.first-view .attention {
  font-size: clamp(6.41px, 0.83vw, 12px);
  font-weight: 500;
  line-height: 1.2;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: clamp(7.48px, 0.97vw, 14px) 0 clamp(5.34px, 0.69vw, 10px) 0;
}

@media screen and (max-width: 767px) {
  .first-view .attention {
    font-size: clamp(2px, 1.64vw, 6px);
    padding: clamp(3.34px, 2.74vw, 10px) 0 clamp(2.67px, 2.19vw, 8px) 0;
  }
}

.first-view .plan {
  font-family: "Noto Sans JP", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.first-view .plan .floor {
  position: relative;
  background: #23ae55;
  width: clamp(38.98px, 5.07vw, 73px);
  height: clamp(38.98px, 5.07vw, 73px);
  border-radius: 50%;
}

@media screen and (max-width: 767px) {
  .first-view .plan .floor {
    width: clamp(11.02px, 9.04vw, 33px);
    height: clamp(11.02px, 9.04vw, 33px);
  }
}

.first-view .plan .floor span {
  position: absolute;
  font-size: clamp(16.02px, 2.08vw, 30px);
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 1.83;
  text-align: center;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (max-width: 767px) {
  .first-view .plan .floor span {
    font-size: clamp(4.34px, 3.56vw, 13px);
  }
}

.first-view .plan .price {
  position: relative;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  padding-left: 10px;
  font-size: clamp(33.11px, 4.31vw, 62px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.17;
}

@media screen and (max-width: 767px) {
  .first-view .plan .price {
    font-size: clamp(9.02px, 7.4vw, 27px);
  }
}

.first-view .plan .price span {
  position: relative;
  font-size: clamp(18.69px, 2.43vw, 35px);
}

@media screen and (max-width: 767px) {
  .first-view .plan .price span {
    font-size: clamp(5.01px, 4.11vw, 15px);
  }
}

.first-view .plan .price span span {
  position: absolute;
  font-size: clamp(4.81px, 0.63vw, 9px);
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 3.1;
  top: -22%;
  left: 5%;
}

@media screen and (max-width: 767px) {
  .first-view .plan .price span span {
    font-size: clamp(1.34px, 1.1vw, 4px);
  }
}

.first-view .plan .price::before {
  content: "";
  position: absolute;
  display: block;
  height: clamp(9.08px, 1.18vw, 17px);
  left: 3.3%;
  right: -3.3%;
  top: 83%;
  z-index: -1;
  background-color: #23ae55;
}

@media screen and (max-width: 767px) {
  .first-view .plan .price::before {
    height: clamp(2.34px, 1.92vw, 7px);
    left: 6.5%;
    right: 0.2%;
  }
}

.first-view .first-view_img {
  position: relative;
  width: calc(100% - 240px);
  margin: 0 30px 0 240px;
}

@media screen and (max-width: 767px) {
  .first-view .first-view_img {
    display: block;
    width: calc(100% - 40px);
    margin: 0 auto;
  }
}

.first-view .first-view_img img {
  width: 100%;
  border-radius: 12px;
}

@media screen and (max-width: 767px) {
  .first-view .first-view_img img {
    width: 100%;
    border-radius: 8px;
  }
}

article section {
  margin: 0 auto;
}

article section .container {
  max-width: 1440px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  article section .container {
    max-width: none;
  }
}

article section .inner-content {
  margin-inline: clamp(64.08px, 8.33vw, 120px);
}

@media screen and (max-width: 767px) {
  article section .inner-content {
    margin-inline: 20px;
  }
}

.article-a {
  background: -webkit-gradient(linear, left top, left bottom, from(#e9edf4), color-stop(63.05%, #e9edf4), to(rgba(233, 237, 244, 0)));
  background: linear-gradient(#e9edf4 0%, #e9edf4 63.05%, rgba(233, 237, 244, 0) 100%);
}

.section-message {
  max-width: 1440px;
  padding-top: clamp(53.4px, 6.94vw, 100px);
}

@media screen and (max-width: 767px) {
  .section-message {
    max-width: 100%;
    padding-top: clamp(16.7px, 13.7vw, 50px);
  }
}

.section-message .message-content {
  margin-top: clamp(26.7px, 3.47vw, 50px);
  margin-inline: clamp(64.08px, 8.33vw, 120px);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 0 clamp(37.38px, 4.86vw, 70px);
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}

@media screen and (max-width: 767px) {
  .section-message .message-content {
    display: block;
    margin-top: clamp(11.36px, 9.32vw, 34px);
    margin-inline: 20px;
  }
}

.section-message .message-content .message-photo {
  margin-bottom: 3em;
}

@media screen and (max-width: 767px) {
  .section-message .message-content .message-photo {
    width: 100%;
    margin-bottom: clamp(15.03px, 12.33vw, 45px);
  }
}

.section-message .message-content .message-photo img {
  width: 100%;
}

.section-message .message-content .message-text {
  margin-right: clamp(53.4px, 6.94vw, 100px);
}

@media screen and (max-width: 767px) {
  .section-message .message-content .message-text {
    width: 100%;
    margin: 0 auto;
    text-align: left;
  }
}

.section-message .message-content .message-text .text-title {
  font-size: clamp(13.35px, 1.74vw, 25px);
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2.4;
  color: #365699;
}

@media screen and (max-width: 767px) {
  .section-message .message-content .message-text .text-title {
    font-size: clamp(5.68px, 4.66vw, 17px);
  }
}

.section-message .message-content .message-text .text-content {
  padding-top: clamp(21.36px, 2.78vw, 40px);
  font-size: clamp(8.54px, 1.11vw, 16px);
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 3;
}

@media screen and (max-width: 767px) {
  .section-message .message-content .message-text .text-content {
    padding-top: clamp(10.02px, 8.22vw, 30px);
    font-size: clamp(4.01px, 3.29vw, 12px);
    letter-spacing: 0.1em;
    line-height: 2.5;
  }
}

.section-message .message-content .message-text .signature {
  font-size: clamp(10.68px, 1.39vw, 20px);
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2.4;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .section-message .message-content .message-text .signature {
    font-size: clamp(5.34px, 4.38vw, 16px);
  }
}

.section-overview {
  max-width: 1440px;
  padding-top: clamp(76.9px, 10vw, 144px);
}

@media screen and (max-width: 767px) {
  .section-overview {
    padding-top: clamp(18.37px, 15.07vw, 55px);
  }
}

.section-overview .inner-content {
  padding: clamp(61.41px, 7.99vw, 115px) clamp(53.4px, 6.94vw, 100px);
  border-radius: 12px;
  background: white;
  border: 2px solid #365699;
}

@media screen and (max-width: 767px) {
  .section-overview .inner-content {
    padding: 20px;
  }
}

.section-overview .inner-content .inner-content-title {
  position: relative;
  margin: 0 auto;
  padding-bottom: 20px;
  font-size: clamp(13.35px, 1.74vw, 25px);
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2.4;
  text-align: center;
  color: #365699;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 0;
}

@media screen and (max-width: 767px) {
  .section-overview .inner-content .inner-content-title {
    margin-top: clamp(4.68px, 3.84vw, 14px);
    padding: 0;
  }
}

@media screen and (max-width: 767px) {
  .section-overview .inner-content .inner-content-title {
    font-size: clamp(5.01px, 4.11vw, 15px);
  }
}

.section-overview .inner-content .inner-content-title span {
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(50%, transparent), color-stop(50%, #e9edf4), to(#e9edf4));
  background-image: linear-gradient(transparent 0%, transparent 50%, #e9edf4 50%, #e9edf4 100%);
}

.section-overview .inner-content .inner-content-text {
  padding-top: clamp(21.36px, 2.78vw, 40px);
  font-size: clamp(8.54px, 1.11vw, 16px);
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 3;
  line-height: 2.5;
  text-align: left;
  color: #070203;
}

@media screen and (max-width: 767px) {
  .section-overview .inner-content .inner-content-text {
    font-size: clamp(4.01px, 3.29vw, 12px);
  }
}

.section-overview .inner-content .inner-chart {
  margin-top: clamp(32.04px, 4.17vw, 60px);
  background: -webkit-gradient(linear, left top, left bottom, from(#edf7ff), to(#daf0ff));
  background: linear-gradient(#edf7ff 0%, #daf0ff 100%);
}

@media screen and (max-width: 767px) {
  .section-overview .inner-content .inner-chart {
    margin-top: clamp(12.69px, 10.41vw, 38px);
  }
}

.section-overview .inner-content .inner-chart .chart-content {
  padding: clamp(26.7px, 3.47vw, 50px) 0 clamp(32.04px, 4.17vw, 60px);
}

@media screen and (max-width: 767px) {
  .section-overview .inner-content .inner-chart .chart-content {
    width: 100%;
    margin: clamp(6.68px, 5.48vw, 20px) 0;
    padding: 0;
  }
}

.section-overview .inner-content .inner-chart .chart-content .chart-title {
  font-size: clamp(13.35px, 1.74vw, 25px);
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2.4;
  color: #365699;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .section-overview .inner-content .inner-chart .chart-content .chart-title {
    font-size: clamp(5.01px, 4.11vw, 15px);
  }
}

.section-overview .inner-content .inner-chart .chart-content .plan {
  font-family: "Noto Sans JP", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 clamp(122.82px, 15.97vw, 230px);
  padding-top: clamp(21.36px, 2.78vw, 40px);
}

@media screen and (max-width: 767px) {
  .section-overview .inner-content .inner-chart .chart-content .plan {
    margin: 0 auto;
    padding-top: clamp(5.34px, 4.38vw, 16px);
    padding-bottom: clamp(5.34px, 4.38vw, 16px);
  }
}

.section-overview .inner-content .inner-chart .chart-content .plan .floor {
  position: relative;
  background: #365699;
  width: clamp(51.26px, 6.67vw, 96px);
  height: clamp(51.26px, 6.67vw, 96px);
  border-radius: 50%;
}

@media screen and (max-width: 767px) {
  .section-overview .inner-content .inner-chart .chart-content .plan .floor {
    width: clamp(15.36px, 12.6vw, 46px);
    height: clamp(15.36px, 12.6vw, 46px);
  }
}

.section-overview .inner-content .inner-chart .chart-content .plan .floor span {
  position: absolute;
  font-size: clamp(21.36px, 2.78vw, 40px);
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 1.825;
  text-align: center;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: white;
}

@media screen and (max-width: 767px) {
  .section-overview .inner-content .inner-chart .chart-content .plan .floor span {
    font-size: clamp(6.01px, 4.93vw, 18px);
  }
}

.section-overview .inner-content .inner-chart .chart-content .plan .price {
  position: relative;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  padding-left: clamp(10.68px, 1.39vw, 20px);
  font-size: clamp(44.86px, 5.83vw, 84px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.17;
  color: #365699;
}

@media screen and (max-width: 767px) {
  .section-overview .inner-content .inner-chart .chart-content .plan .price {
    font-size: clamp(13.03px, 10.68vw, 39px);
  }
}

.section-overview .inner-content .inner-chart .chart-content .plan .price span {
  position: relative;
  font-size: clamp(25.63px, 3.33vw, 48px);
}

@media screen and (max-width: 767px) {
  .section-overview .inner-content .inner-chart .chart-content .plan .price span {
    font-size: clamp(7.68px, 6.3vw, 23px);
  }
}

.section-overview .inner-content .inner-chart .chart-content .plan .price span span {
  position: absolute;
  font-size: clamp(6.94px, 0.9vw, 13px);
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2.15;
  top: -10%;
  left: -3.3%;
}

@media screen and (max-width: 767px) {
  .section-overview .inner-content .inner-chart .chart-content .plan .price span span {
    font-size: clamp(2px, 1.64vw, 6px);
  }
}

.section-overview .inner-content .inner-chart .chart-content .chart-step {
  padding-top: clamp(16.02px, 2.08vw, 30px);
}

@media screen and (max-width: 767px) {
  .section-overview .inner-content .inner-chart .chart-content .chart-step {
    margin-inline: clamp(3.01px, 2.47vw, 9px);
    padding: 0 clamp(6.68px, 5.48vw, 20px);
  }
}

.section-overview .inner-content .inner-chart .chart-content .chart-step ul {
  padding: 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(46%, transparent), color-stop(46%, #88cdf9), color-stop(54%, #88cdf9), color-stop(54%, transparent), to(transparent));
  background: linear-gradient(transparent 0%, transparent 46%, #88cdf9 46%, #88cdf9 54%, transparent 54%, transparent 100%);
}

@media screen and (max-width: 767px) {
  .section-overview .inner-content .inner-chart .chart-content .chart-step ul {
    width: 85%;
    margin: 0 auto;
  }
}

.section-overview .inner-content .inner-chart .chart-content .chart-step ul li {
  background: #fff;
  border: 2px solid #365699;
  padding: clamp(13.35px, 1.74vw, 25px) clamp(5.34px, 0.69vw, 10px);
  list-style: none;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  font-size: clamp(8.54px, 1.11vw, 16px);
  letter-spacing: 0.45em;
  text-align: center;
  color: #365699;
}

@media screen and (max-width: 767px) {
  .section-overview .inner-content .inner-chart .chart-content .chart-step ul li {
    border: 1px solid #365699;
    margin: clamp(6.68px, 5.48vw, 20px) 0;
    padding: clamp(1.67px, 1.37vw, 5px) clamp(1px, 0.82vw, 3px);
    font-size: clamp(3.34px, 2.74vw, 10px);
    letter-spacing: 0.2em;
  }
}

.section-license {
  max-width: 1440px;
  padding: clamp(76.9px, 10vw, 144px) 0;
}

@media screen and (max-width: 767px) {
  .section-license {
    padding: clamp(18.37px, 15.07vw, 55px) 0;
  }
}

@media screen and (max-width: 767px) {
  .section-license .inner-content {
    padding: 0;
  }
}

.section-license .inner-content .inner-content-text {
  font-size: clamp(13.35px, 1.74vw, 25px);
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2.4;
  text-align: center;
  color: #365699;
}

@media screen and (max-width: 767px) {
  .section-license .inner-content .inner-content-text {
    font-size: clamp(4.01px, 3.29vw, 12px);
  }
}

.section-license .inner-content .inner-content-text span {
  font-weight: 900;
}

.section-license .inner-content .inner-content-text span.green {
  color: #23AE55;
}

.section-license .inner-content .inner-content-text span.red {
  color: #E36060;
}

.section-license .inner-image {
  margin: 0 auto;
  padding: clamp(26.7px, 3.47vw, 50px) clamp(53.4px, 6.94vw, 100px) 0;
}

@media screen and (max-width: 767px) {
  .section-license .inner-image {
    padding: clamp(6.68px, 5.48vw, 20px) 0 0;
  }
}

.section-license .inner-image img.person {
  width: 100%;
  max-width: 454px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .section-license .inner-image img.person {
    width: 70%;
  }
}

.section-service {
  background: url(../images/bg-2.png), #e9edf4;
  background-size: 100vw;
  background-repeat: no-repeat;
  padding: clamp(16.02px, 2.08vw, 30px) 0;
}

@media screen and (max-width: 767px) {
  .section-service {
    background: url(../images/bg-2-sp.png), #e9edf4;
    background-size: 100vw;
    background-repeat: no-repeat;
    padding: clamp(6.68px, 5.48vw, 20px) 0;
  }
}

.section-service .container {
  padding: clamp(42.72px, 5.56vw, 80px) 0;
}

@media screen and (max-width: 767px) {
  .section-service .container {
    padding: clamp(13.36px, 10.96vw, 40px) 0;
  }
}

.section-service .inner-content {
  margin-inline: clamp(117.48px, 15.28vw, 220px);
}

@media screen and (max-width: 767px) {
  .section-service .inner-content {
    margin-inline: 20px;
  }
}

.section-service .inner-content .service-list {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: clamp(21.36px, 2.78vw, 40px);
  padding-top: clamp(26.7px, 3.47vw, 50px);
}

@media screen and (max-width: 767px) {
  .section-service .inner-content .service-list {
    -ms-grid-columns: 100%;
        grid-template-columns: 100%;
    padding-top: clamp(11.36px, 9.32vw, 34px);
  }
}

.section-service .inner-content .service-list .service-item {
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.section-service .inner-content .service-list .service-item .servive-image {
  overflow: hidden;
}

.section-service .inner-content .service-list .service-item .servive-image img {
  border-radius: 12px;
}

.section-service .inner-content .service-list .service-item .item-title {
  margin-top: clamp(25.1px, 3.26vw, 47px);
  font-size: clamp(13.35px, 1.74vw, 25px);
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2.4;
  text-align: center;
  color: #365699;
}

@media screen and (max-width: 767px) {
  .section-service .inner-content .service-list .service-item .item-title {
    margin-top: clamp(8.02px, 6.58vw, 24px);
    font-size: clamp(5.01px, 4.11vw, 15px);
    line-height: 1.7;
  }
}

.section-service .inner-content .service-list .service-item .item-overview {
  padding-top: clamp(8.01px, 1.04vw, 15px);
  font-size: clamp(9.61px, 1.25vw, 18px);
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.94;
  text-align: center;
  color: #070203;
}

@media screen and (max-width: 767px) {
  .section-service .inner-content .service-list .service-item .item-overview {
    padding-top: clamp(7.68px, 6.3vw, 23px);
    font-size: clamp(4.01px, 3.29vw, 12px);
    line-height: 2.4;
  }
}

.section-service .inner-content .service-list .service-item .item-text {
  padding-bottom: clamp(21.36px, 2.78vw, 40px);
  padding-inline: clamp(24.03px, 3.13vw, 45px);
}

@media screen and (max-width: 767px) {
  .section-service .inner-content .service-list .service-item .item-text {
    padding-bottom: clamp(10.02px, 8.22vw, 30px);
  }
}

.section-service .inner-content .service-list .service-item .item-text .item-text-title {
  font-size: clamp(8.01px, 1.04vw, 15px);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2.0;
  text-align: center;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: clamp(2.67px, 0.35vw, 5px) clamp(16.02px, 2.08vw, 30px);
  background: #88cdf9;
  border-radius: 24px;
}

@media screen and (max-width: 767px) {
  .section-service .inner-content .service-list .service-item .item-text .item-text-title {
    padding: clamp(1px, 0.82vw, 3px) clamp(5.34px, 4.38vw, 16px);
    font-size: clamp(4.01px, 3.29vw, 12px);
    border-radius: 30px;
  }
}

.section-service .inner-content .service-list .service-item .item-text .item-text-list {
  padding-top: clamp(10.68px, 1.39vw, 20px);
  list-style: none;
}

@media screen and (max-width: 767px) {
  .section-service .inner-content .service-list .service-item .item-text .item-text-list {
    padding-top: clamp(3.34px, 2.74vw, 10px);
  }
}

.section-service .inner-content .service-list .service-item .item-text .item-text-list ul {
  margin: 0;
}

.section-service .inner-content .service-list .service-item .item-text .item-text-list li {
  font-size: clamp(8.54px, 1.11vw, 16px);
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 3;
  font-weight: 400;
  line-height: 2.5;
  text-align: left;
  color: #070203;
  text-indent: -1.4em;
  padding-left: 1.8em;
  margin: 0 clamp(5.34px, 0.69vw, 10px);
}

@media screen and (max-width: 767px) {
  .section-service .inner-content .service-list .service-item .item-text .item-text-list li {
    padding-top: 2px;
    margin: clamp(1.34px, 1.1vw, 4px) 0;
    font-size: clamp(4.01px, 3.29vw, 12px);
    line-height: 1.6;
    text-indent: -1.0em;
    padding-left: 1.7em;
  }
}

.section-service .inner-content .service-list .service-item .item-text .item-text-list li::before {
  content: url(../images/icon-circle-check.svg);
  display: inline-block;
  width: clamp(10.68px, 1.39vw, 20px);
  height: clamp(10.68px, 1.39vw, 20px);
  margin-right: 0.2em;
  position: relative;
  top: clamp(1.6px, 0.21vw, 3px);
  left: 0;
}

@media screen and (max-width: 767px) {
  .section-service .inner-content .service-list .service-item .item-text .item-text-list li::before {
    width: clamp(4.51px, 3.7vw, 13.5px);
    height: clamp(4.51px, 3.7vw, 13.5px);
    margin-right: -0.1em;
  }
}

.section-service .inner-content .service-list .service-item hr {
  margin: clamp(16.02px, 2.08vw, 30px);
  border-top: 1px solid #88cdf9;
}

@media screen and (max-width: 767px) {
  .section-service .inner-content .service-list .service-item hr {
    margin: clamp(8.35px, 6.85vw, 25px) clamp(6.68px, 5.48vw, 20px);
  }
}

.section-service .inner-content .price-image {
  padding-top: clamp(32.04px, 4.17vw, 60px);
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .section-service .inner-content .price-image {
    padding-top: clamp(10.69px, 8.77vw, 32px);
  }
}

.section-service .inner-content .price-image .price-image-title {
  font-size: clamp(13.35px, 1.74vw, 25px);
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2.4;
  letter-spacing: 0.178em;
  text-align: center;
  color: #365699;
}

@media screen and (max-width: 767px) {
  .section-service .inner-content .price-image .price-image-title {
    font-size: clamp(5.01px, 4.11vw, 15px);
  }
}

.section-service .inner-content .price-image .price-image-content {
  border-radius: 12px;
  background: white;
  margin-top: clamp(32.04px, 4.17vw, 60px);
  margin-inline: 0 auto;
  padding: clamp(26.7px, 3.47vw, 50px) clamp(37.38px, 4.86vw, 70px) clamp(42.72px, 5.56vw, 80px);
}

@media screen and (max-width: 767px) {
  .section-service .inner-content .price-image .price-image-content {
    margin-top: clamp(10.69px, 8.77vw, 32px);
    padding: 0;
  }
}

.section-service .inner-content .price-image .price-image-content .price-table {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  border-spacing: 0;
}

@media screen and (max-width: 767px) {
  .section-service .inner-content .price-image .price-image-content .price-table {
    width: initial;
    margin: 0 clamp(10.02px, 8.22vw, 30px);
  }
}

.section-service .inner-content .price-image .price-image-content .price-table thead th {
  font-size: clamp(13.35px, 1.74vw, 25px);
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2.4;
  font-weight: 900;
  text-align: center;
  color: #88cdf9;
  padding-bottom: clamp(10.68px, 1.39vw, 20px);
  border-bottom: 1px solid #e9edf4;
}

@media screen and (max-width: 767px) {
  .section-service .inner-content .price-image .price-image-content .price-table thead th {
    font-size: clamp(4.01px, 3.29vw, 12px);
    padding-top: clamp(6.68px, 5.48vw, 20px);
    padding-bottom: 0;
  }
}

.section-service .inner-content .price-image .price-image-content .price-table tbody tr:last-child th, .section-service .inner-content .price-image .price-image-content .price-table tbody tr:last-child td {
  border-bottom: none;
}

.section-service .inner-content .price-image .price-image-content .price-table tbody tr {
  height: clamp(37.38px, 4.86vw, 70px);
}

@media screen and (max-width: 767px) {
  .section-service .inner-content .price-image .price-image-content .price-table tbody tr {
    height: clamp(11.69px, 9.59vw, 35px);
  }
}

.section-service .inner-content .price-image .price-image-content .price-table tbody th {
  width: 30%;
  font-size: clamp(13.35px, 1.74vw, 25px);
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2.4;
  letter-spacing: 0.1em;
  text-align: center;
  color: #88cdf9;
  border-bottom: 1px solid #e9edf4;
}

@media screen and (max-width: 767px) {
  .section-service .inner-content .price-image .price-image-content .price-table tbody th {
    font-size: clamp(4.01px, 3.29vw, 12px);
  }
}

.section-service .inner-content .price-image .price-image-content .price-table tbody td {
  font-size: clamp(18.69px, 2.43vw, 35px);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.71;
  text-align: center;
  color: #070203;
  border-bottom: 1px solid #e9edf4;
}

@media screen and (max-width: 767px) {
  .section-service .inner-content .price-image .price-image-content .price-table tbody td {
    font-size: clamp(5.01px, 4.11vw, 15px);
  }
}

.section-service .inner-content .price-image .price-image-content .price-table tbody td span {
  font-size: clamp(13.35px, 1.74vw, 25px);
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .section-service .inner-content .price-image .price-image-content .price-table tbody td span {
    font-size: clamp(3.67px, 3.01vw, 11px);
  }
}

.section-service .inner-content .price-image .price-image-content .price-table tbody td:nth-child(2) {
  width: 5%;
}

.section-service .inner-content .price-image .price-image-content .price-table tbody td:nth-child(3) {
  width: 65%;
}

.section-service .inner-content .price-image .price-image-content .price-table .slash {
  width: clamp(21.36px, 2.78vw, 40px);
  height: clamp(8.01px, 1.04vw, 15px);
  border-top: 1px solid #c0cae0;
  -webkit-transform: rotate(115deg);
          transform: rotate(115deg);
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .section-service .inner-content .price-image .price-image-content .price-table .slash {
    width: clamp(5.01px, 4.11vw, 15px);
    -webkit-transform: rotate(115deg) translateY(clamp(2.67SP*px, 0.35SP*vw, 5SPpx));
            transform: rotate(115deg) translateY(clamp(2.67SP*px, 0.35SP*vw, 5SPpx));
  }
}

.section-service .inner-content .price-image .price-image-content .price-table-attention {
  font-size: clamp(8.54px, 1.11vw, 16px);
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 3;
  letter-spacing: 0.178em;
  line-height: 2.5;
  text-align: left;
  color: #070203;
  padding-top: clamp(32.04px, 4.17vw, 60px);
}

@media screen and (max-width: 767px) {
  .section-service .inner-content .price-image .price-image-content .price-table-attention {
    padding: clamp(6.68px, 5.48vw, 20px) clamp(6.01px, 4.93vw, 18px) clamp(11.69px, 9.59vw, 35px);
    font-size: clamp(4.01px, 3.29vw, 12px);
    letter-spacing: 0.16em;
  }
}

.section-basic {
  background: url(../images/bg-3.png);
  background-size: 100vw;
  background-repeat: no-repeat;
  padding-top: clamp(80.1px, 10.42vw, 150px);
}

@media screen and (max-width: 767px) {
  .section-basic {
    background: url(../images/bg-3-sp.png);
    background-size: 100vw;
    background-repeat: no-repeat;
    padding-top: clamp(33.4px, 27.4vw, 100px);
  }
}

.section-basic .inner-content {
  margin-inline: clamp(117.48px, 15.28vw, 220px);
}

@media screen and (max-width: 767px) {
  .section-basic .inner-content {
    margin-inline: 20px;
  }
}

.section-basic .inner-content .section-title-b {
  font-size: clamp(16.02px, 2.08vw, 30px);
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2.0;
  text-align: left;
  color: #365699;
}

@media screen and (max-width: 767px) {
  .section-basic .inner-content .section-title-b {
    font-size: clamp(5.01px, 4.11vw, 15px);
  }
}

.section-basic .inner-content .basic-list {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(14.95px, 1.94vw, 28px);
}

@media screen and (max-width: 767px) {
  .section-basic .inner-content .basic-list {
    display: block;
  }
}

.section-basic .inner-content .basic-list .basic-item {
  background: #fff;
  margin-top: clamp(26.7px, 3.47vw, 50px);
}

@media screen and (max-width: 767px) {
  .section-basic .inner-content .basic-list .basic-item {
    padding-top: clamp(10.02px, 8.22vw, 30px);
  }
}

.section-basic .inner-content .basic-list .basic-item .basic-image {
  position: relative;
  margin: clamp(10.68px, 1.39vw, 20px) 0 0 0;
}

.section-basic .inner-content .basic-list .basic-item .basic-image img {
  border-radius: 12px;
}

@media screen and (max-width: 767px) {
  .section-basic .inner-content .basic-list .basic-item .basic-image img {
    width: 100%;
    max-width: initial;
  }
}

.section-basic .inner-content .basic-list .basic-item .basic-image .basic-num {
  font-family: "Noto Sans";
  position: absolute;
  top: -10%;
  left: 5%;
  width: clamp(21.36px, 2.78vw, 40px);
  height: clamp(21.36px, 2.78vw, 40px);
  background: #365699;
  border-radius: 50%;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .section-basic .inner-content .basic-list .basic-item .basic-image .basic-num {
    width: clamp(13.36px, 10.96vw, 40px);
    height: clamp(13.36px, 10.96vw, 40px);
  }
}

.section-basic .inner-content .basic-list .basic-item .basic-image .basic-num span {
  position: absolute;
  font-size: clamp(10.68px, 1.39vw, 20px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 2.0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: white;
}

@media screen and (max-width: 767px) {
  .section-basic .inner-content .basic-list .basic-item .basic-image .basic-num span {
    font-size: clamp(6.68px, 5.48vw, 20px);
  }
}

.section-basic .inner-content .basic-list .basic-item .basic-title {
  font-size: clamp(10.68px, 1.39vw, 20px);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 3.0;
  text-align: center;
  color: #365699;
  margin-top: clamp(10.68px, 1.39vw, 20px);
}

@media screen and (max-width: 767px) {
  .section-basic .inner-content .basic-list .basic-item .basic-title {
    font-size: clamp(5.01px, 4.11vw, 15px);
  }
}

.section-basic .inner-content .basic-list .basic-item .basic-text {
  font-size: clamp(8.54px, 1.11vw, 16px);
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1.875;
  text-align: left;
  color: #070203;
  padding: 0 0 clamp(16.02px, 2.08vw, 30px) 0;
  display: inline;
  padding-bottom: clamp(4.27px, 0.56vw, 8px);
  background: -webkit-gradient(linear, left top, right top, from(#c0cae0), color-stop(50%, #c0cae0), color-stop(51%, rgba(192, 202, 224, 0)), to(rgba(192, 202, 224, 0))) repeat-x left bottom/10px 2px;
  background: linear-gradient(to right, #c0cae0 0%, #c0cae0 50%, rgba(192, 202, 224, 0) 51%, rgba(192, 202, 224, 0) 100%) repeat-x left bottom/10px 2px;
}

@media screen and (max-width: 767px) {
  .section-basic .inner-content .basic-list .basic-item .basic-text {
    font-size: clamp(4.01px, 3.29vw, 12px);
  }
}

.section-flow {
  padding-top: clamp(64.08px, 8.33vw, 120px);
}

@media screen and (max-width: 767px) {
  .section-flow {
    padding-top: clamp(13.36px, 10.96vw, 40px);
  }
}

.section-flow .inner-content {
  margin-inline: clamp(117.48px, 15.28vw, 220px);
  border-bottom: 2px solid #365699;
}

@media screen and (max-width: 767px) {
  .section-flow .inner-content {
    margin-inline: 20px;
    padding-bottom: clamp(15.03px, 12.33vw, 45px);
  }
}

.section-flow .inner-content .section-title-c {
  position: relative;
  display: inline-block;
  border: 2px solid #365699;
  border-right-style: none;
  border-left-style: none;
  width: 100%;
  padding: clamp(2.67px, 0.35vw, 5px) 0;
  font-size: clamp(13.35px, 1.74vw, 25px);
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2.4;
  text-align: center;
  background-color: white;
  color: #365699;
}

@media screen and (max-width: 767px) {
  .section-flow .inner-content .section-title-c {
    font-size: clamp(5.01px, 4.11vw, 15px);
  }
}

.section-flow .inner-content .section-title-c::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: clamp(10.68px, 1.39vw, 20px) clamp(5.34px, 0.69vw, 10px) 0 clamp(5.34px, 0.69vw, 10px);
  border-color: #365699 transparent transparent;
  translate: -50% 100%;
}

@media screen and (max-width: 767px) {
  .section-flow .inner-content .section-title-c::before {
    border-width: clamp(3.34px, 2.74vw, 10px) clamp(1.67px, 1.37vw, 5px) 0 clamp(1.67px, 1.37vw, 5px);
  }
}

.section-flow .inner-content .section-title-c::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: clamp(8.54px, 1.11vw, 16px) clamp(4.27px, 0.56vw, 8px) 0 clamp(4.27px, 0.56vw, 8px);
  border-color: white transparent transparent;
  translate: -50% 100%;
}

@media screen and (max-width: 767px) {
  .section-flow .inner-content .section-title-c::after {
    border-width: clamp(2.67px, 2.19vw, 8px) clamp(1.34px, 1.1vw, 4px) 0 clamp(1.34px, 1.1vw, 4px);
  }
}

.section-flow .inner-content .flow-list {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr clamp(8.54px, 1.11vw, 16px) 1fr clamp(8.54px, 1.11vw, 16px) 1fr;
      grid-template-columns: 1fr clamp(8.54px, 1.11vw, 16px) 1fr clamp(8.54px, 1.11vw, 16px) 1fr;
      grid-template-areas: "step-1 . step-2 . step-3";
  gap: clamp(5.34px, 0.69vw, 10px);
  margin: clamp(21.36px, 2.78vw, 40px);
}

.section-flow .inner-content .flow-list #step-1 {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: step-1;
}

.section-flow .inner-content .flow-list #step-2 {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: step-2;
}

.section-flow .inner-content .flow-list #step-3 {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
  grid-area: step-3;
}

@media screen and (max-width: 767px) {
  .section-flow .inner-content .flow-list {
    -ms-grid-columns: 100%;
        grid-template-columns: 100%;
    -ms-grid-rows: auto clamp(5.34px, 4.38vw, 16px) auto clamp(5.34px, 4.38vw, 16px) auto;
        grid-template-rows: auto clamp(5.34px, 4.38vw, 16px) auto clamp(5.34px, 4.38vw, 16px) auto;
        grid-template-areas: "step-1" "." "step-2" "." "step-3";
    margin: 0;
  }
  .section-flow .inner-content .flow-list #step-1 {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: step-1;
  }
  .section-flow .inner-content .flow-list #step-2 {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    grid-area: step-2;
  }
  .section-flow .inner-content .flow-list #step-3 {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
    grid-area: step-3;
  }
}

.section-flow .inner-content .flow-list .right-triangle {
  background-image: url("../images/icon-triangle-r.svg");
  background-position: 50% 40%;
  background-repeat: no-repeat;
  background-size: 100%;
}

@media screen and (max-width: 767px) {
  .section-flow .inner-content .flow-list .right-triangle {
    width: 16px;
    margin: 0 auto;
    -webkit-transform: translateY(100%) rotate(90deg);
            transform: translateY(100%) rotate(90deg);
  }
}

.section-flow .inner-content .flow-list .flow-item {
  margin-top: clamp(10.68px, 1.39vw, 20px);
}

@media screen and (max-width: 767px) {
  .section-flow .inner-content .flow-list .flow-item {
    margin-top: clamp(11.69px, 9.59vw, 35px);
  }
}

.section-flow .inner-content .flow-list .flow-item .flow-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(10.68px, 1.39vw, 20px);
  font-weight: 500;
  line-height: 2.0;
  letter-spacing: 0.02em;
  text-align: center;
  margin: 0 auto;
  padding-bottom: clamp(5.34px, 0.69vw, 10px);
  color: #365699;
}

@media screen and (max-width: 767px) {
  .section-flow .inner-content .flow-list .flow-item .flow-title {
    font-size: clamp(6.01px, 4.93vw, 18px);
    padding-bottom: clamp(3.34px, 2.74vw, 10px);
  }
}

.section-flow .inner-content .flow-list .flow-item .flow-title::before {
  content: url(../images/icon-check.svg);
  position: relative;
  display: inline-block;
  width: clamp(8.01px, 1.04vw, 15px);
  height: auto;
  margin-right: clamp(6.41px, 0.83vw, 12px);
}

@media screen and (max-width: 767px) {
  .section-flow .inner-content .flow-list .flow-item .flow-title::before {
    width: clamp(5.01px, 4.11vw, 15px);
    margin-right: clamp(4.01px, 3.29vw, 12px);
  }
}

.section-flow .inner-content .flow-list .flow-item .flow-image {
  position: relative;
  width: clamp(112.14px, 14.58vw, 210px);
  height: clamp(112.14px, 14.58vw, 210px);
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .section-flow .inner-content .flow-list .flow-item .flow-image {
    width: clamp(70.14px, 57.53vw, 210px);
    height: clamp(70.14px, 57.53vw, 210px);
  }
}

.section-flow .inner-content .flow-list .flow-item .flow-image .upper-half-circle,
.section-flow .inner-content .flow-list .flow-item .flow-image .lower-half-circle {
  width: clamp(112.14px, 14.58vw, 210px);
  height: clamp(56.07px, 7.29vw, 105px);
  background-color: #e9edf4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 767px) {
  .section-flow .inner-content .flow-list .flow-item .flow-image .upper-half-circle,
  .section-flow .inner-content .flow-list .flow-item .flow-image .lower-half-circle {
    width: clamp(70.14px, 57.53vw, 210px);
    height: clamp(35.07px, 28.77vw, 105px);
  }
}

.section-flow .inner-content .flow-list .flow-item .flow-image .upper-half-circle {
  border-radius: clamp(56.07px, 7.29vw, 105px) clamp(56.07px, 7.29vw, 105px) 0 0;
  border-bottom: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: clamp(8.01px, 1.04vw, 15px);
}

@media screen and (max-width: 767px) {
  .section-flow .inner-content .flow-list .flow-item .flow-image .upper-half-circle {
    border-radius: clamp(35.07px, 28.77vw, 105px) clamp(35.07px, 28.77vw, 105px) 0 0;
    padding-top: clamp(5.01px, 4.11vw, 15px);
  }
}

.section-flow .inner-content .flow-list .flow-item .flow-image .lower-half-circle {
  border-radius: 0 0 clamp(56.07px, 7.29vw, 105px) clamp(56.07px, 7.29vw, 105px);
  border-top: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: clamp(10.68px, 1.39vw, 20px);
}

@media screen and (max-width: 767px) {
  .section-flow .inner-content .flow-list .flow-item .flow-image .lower-half-circle {
    border-radius: 0 0 clamp(35.07px, 28.77vw, 105px) clamp(35.07px, 28.77vw, 105px);
    padding-bottom: clamp(6.68px, 5.48vw, 20px);
  }
}

.section-flow .inner-content .flow-list .flow-item .flow-image .flow-overview {
  font-size: clamp(10.68px, 1.39vw, 20px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.5;
  text-align: center;
  color: #365699;
}

@media screen and (max-width: 767px) {
  .section-flow .inner-content .flow-list .flow-item .flow-image .flow-overview {
    font-size: clamp(6.68px, 5.48vw, 20px);
  }
}

.section-flow .inner-content .flow-list .flow-item .flow-image img {
  height: 90%;
  margin: 0 auto;
}

.section-flow .inner-content .flow-list .flow-item .flow-text {
  font-size: clamp(8.54px, 1.11vw, 16px);
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.875;
  text-align: left;
  color: #070203;
  margin-top: clamp(16.02px, 2.08vw, 30px);
}

@media screen and (max-width: 767px) {
  .section-flow .inner-content .flow-list .flow-item .flow-text {
    font-size: clamp(4.01px, 3.29vw, 12px);
    line-height: 2.5;
    margin-top: clamp(10.02px, 8.22vw, 30px);
  }
}

.section-other-service {
  padding: clamp(64.08px, 8.33vw, 120px) 0 clamp(74.76px, 9.72vw, 140px);
}

@media screen and (max-width: 767px) {
  .section-other-service {
    padding: clamp(16.7px, 13.7vw, 50px) 0;
  }
}

.section-other-service .inner-content {
  padding: clamp(18.69px, 2.43vw, 35px) clamp(21.36px, 2.78vw, 40px) clamp(26.7px, 3.47vw, 50px);
  margin-inline: clamp(117.48px, 15.28vw, 220px);
  border: 2px solid #365699;
  border-radius: 14px;
}

@media screen and (max-width: 767px) {
  .section-other-service .inner-content {
    padding: clamp(6.68px, 5.48vw, 20px);
    margin-inline: 20px;
  }
}

.section-other-service .inner-content .section-title {
  font-size: clamp(13.35px, 1.74vw, 25px);
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2.4;
  text-align: left;
  color: #365699;
}

@media screen and (max-width: 767px) {
  .section-other-service .inner-content .section-title {
    margin: 0;
    font-size: clamp(5.01px, 4.11vw, 15px);
  }
}

.section-other-service .inner-content .service-list {
  padding-top: clamp(10.68px, 1.39vw, 20px);
}

@media screen and (max-width: 767px) {
  .section-other-service .inner-content .service-list {
    padding-top: clamp(6.68px, 5.48vw, 20px);
  }
}

.section-other-service .inner-content .service-list dt {
  font-weight: 500;
  font-size: clamp(10.68px, 1.39vw, 20px);
  letter-spacing: 0.2em;
  line-height: 3.0;
  text-align: left;
  color: #365699;
}

@media screen and (max-width: 767px) {
  .section-other-service .inner-content .service-list dt {
    font-size: clamp(4.01px, 3.29vw, 12px);
  }
}

.section-other-service .inner-content .service-list dt::before {
  content: url(../images/icon-circle-check-2.svg);
  display: inline-block;
  width: clamp(10.68px, 1.39vw, 20px);
  height: auto;
  margin-right: clamp(8.01px, 1.04vw, 15px);
  position: relative;
  top: 2px;
  left: 0;
}

@media screen and (max-width: 767px) {
  .section-other-service .inner-content .service-list dt::before {
    width: clamp(4.51px, 3.7vw, 13.5px);
    margin-right: clamp(1.67px, 1.37vw, 5px);
    top: 3px;
  }
}

.section-other-service .inner-content .service-list dd {
  font-weight: 500;
  font-size: clamp(8.54px, 1.11vw, 16px);
  letter-spacing: 0.168em;
  line-height: 1.25;
  text-align: left;
  color: #070203;
  padding-left: clamp(19.22px, 2.5vw, 36px);
  margin-bottom: clamp(10.68px, 1.39vw, 20px);
}

@media screen and (max-width: 767px) {
  .section-other-service .inner-content .service-list dd {
    padding-left: 0;
    font-size: clamp(3.34px, 2.74vw, 10px);
    line-height: 2.0;
  }
}

.contact-banner {
  background-image: url("../images/contact-banner.png ");
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.contact-banner .inner-content {
  max-width: 1440px;
  margin: 0 auto;
}

.contact-banner .text-area {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  margin: 0 clamp(64.08px, 8.33vw, 120px);
  padding: clamp(37.38px, 4.86vw, 70px) 0;
  color: white;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .contact-banner .text-area {
    display: block;
    margin: 0 auto;
    padding: clamp(10.02px, 8.22vw, 30px) clamp(6.68px, 5.48vw, 20px);
  }
}

.contact-banner .text-area a {
  text-decoration: none;
  color: white;
}

.contact-banner .text-area .left-area {
  position: relative;
  margin: auto 0;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.contact-banner .text-area .left-area .headline {
  font-size: clamp(16.02px, 2.08vw, 30px);
  font-weight: bold;
  letter-spacing: 0.2em;
  line-height: 1;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .contact-banner .text-area .left-area .headline {
    font-size: clamp(5.01px, 4.11vw, 15px);
  }
}

.contact-banner .text-area .left-area .no-holidays {
  font-size: clamp(32.04px, 4.17vw, 60px);
  font-weight: bold;
  letter-spacing: 0.2em;
  line-height: 1.67;
  text-align: center;
  padding-top: clamp(21.36px, 2.78vw, 40px);
}

@media screen and (max-width: 767px) {
  .contact-banner .text-area .left-area .no-holidays {
    font-size: clamp(8.68px, 7.12vw, 26px);
    padding-top: clamp(3.34px, 2.74vw, 10px);
  }
}

.contact-banner .text-area .left-area .business-hours {
  font-size: clamp(21.36px, 2.78vw, 40px);
  font-weight: bold;
  letter-spacing: 0.2em;
  line-height: 0.75;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .contact-banner .text-area .left-area .business-hours {
    font-size: clamp(5.68px, 4.66vw, 17px);
  }
}

.contact-banner .text-area .right-area {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr 1fr;
      grid-template-rows: 1fr 1fr;
  gap: clamp(8.01px, 1.04vw, 15px);
}

@media screen and (max-width: 767px) {
  .contact-banner .text-area .right-area {
    padding-top: clamp(6.68px, 5.48vw, 20px);
    gap: clamp(3.34px, 2.74vw, 10px);
  }
}

.contact-banner .text-area .right-area .link-box {
  position: relative;
  display: block;
  border: 2px solid white;
  border-radius: 14px;
  padding: clamp(10.68px, 1.39vw, 20px) 0;
  text-align: center;
}

.contact-banner .text-area .right-area .link-box.line:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.contact-banner .text-area .right-area .link-box .smartphone {
  width: clamp(26.7px, 3.47vw, 50px);
}

@media screen and (max-width: 767px) {
  .contact-banner .text-area .right-area .link-box .smartphone {
    width: clamp(8.68px, 7.12vw, 26px);
  }
}

.contact-banner .text-area .right-area .link-box .telephone {
  width: clamp(34.71px, 4.51vw, 65px);
}

@media screen and (max-width: 767px) {
  .contact-banner .text-area .right-area .link-box .telephone {
    width: clamp(12.36px, 10.14vw, 37px);
  }
}

.contact-banner .text-area .right-area .link-box img {
  position: absolute;
  top: 50%;
  right: 5%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.contact-banner .text-area .right-area .link-text {
  position: relative;
  margin: 0 auto;
}

.contact-banner .text-area .right-area .link-text .text-line {
  position: relative;
  font-size: clamp(13.35px, 1.74vw, 25px);
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2.4;
  line-height: 3.2;
}

@media screen and (max-width: 767px) {
  .contact-banner .text-area .right-area .link-text .text-line {
    font-size: clamp(4.34px, 3.56vw, 13px);
  }
}

.contact-banner .text-area .right-area .link-text .text-line::before {
  content: url(../images/Icon-circle-greater.svg);
  display: inline-block;
  width: clamp(10.68px, 1.39vw, 20px);
  height: auto;
  margin-right: clamp(12.82px, 1.67vw, 24px);
  position: relative;
  top: 0px;
  left: 0;
}

@media screen and (max-width: 767px) {
  .contact-banner .text-area .right-area .link-text .text-line::before {
    width: clamp(3.67px, 3.01vw, 11px);
    margin-right: clamp(1.67px, 1.37vw, 5px);
  }
}

.contact-banner .text-area .right-area .link-text .text-free {
  font-size: clamp(10.68px, 1.39vw, 20px);
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .contact-banner .text-area .right-area .link-text .text-free {
    font-size: clamp(3.34px, 2.74vw, 10px);
  }
}

.contact-banner .text-area .right-area .link-text .text-tel {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(21.36px, 2.78vw, 40px);
  letter-spacing: 0.1em;
  line-height: 1.2;
}

@media screen and (max-width: 767px) {
  .contact-banner .text-area .right-area .link-text .text-tel {
    font-size: clamp(7.01px, 5.75vw, 21px);
  }
}

.contact-banner .text-area .right-area .link-text .text-tel span {
  font-size: clamp(10.68px, 1.39vw, 20px);
  margin-right: clamp(10.68px, 1.39vw, 20px);
}

@media screen and (max-width: 767px) {
  .contact-banner .text-area .right-area .link-text .text-tel span {
    font-size: clamp(3.34px, 2.74vw, 10px);
    margin-right: clamp(1.67px, 1.37vw, 5px);
  }
}

.section-cost {
  padding: clamp(64.08px, 8.33vw, 120px) 0 clamp(53.4px, 6.94vw, 100px);
  /* 前へ次への矢印カスタマイズ */
  /* 前へ次への矢印カスタマイズ */
  /* 前への矢印カスタマイズ */
  /* 次への矢印カスタマイズ */
  /* 画像サイズ調整 */
}

@media screen and (max-width: 767px) {
  .section-cost {
    padding: clamp(16.7px, 13.7vw, 50px) 0;
  }
}

.section-cost .inner-content {
  margin-inline: clamp(64.08px, 8.33vw, 120px);
}

@media screen and (max-width: 767px) {
  .section-cost .inner-content {
    margin-inline: 20px;
  }
}

.section-cost .swiper {
  width: 100%;
  height: auto;
}

.section-cost .swiper-button-prev,
.section-cost .swiper-button-next {
  width: clamp(16.02px, 2.08vw, 30px);
  height: clamp(16.02px, 2.08vw, 30px);
}

@media screen and (max-width: 767px) {
  .section-cost .swiper-button-prev,
  .section-cost .swiper-button-next {
    top: 100%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: clamp(6.68px, 5.48vw, 20px);
    height: clamp(6.68px, 5.48vw, 20px);
  }
}

.section-cost .swiper-button-prev {
  left: 0px;
}

.section-cost .swiper-button-next {
  right: 0px;
}

.section-cost .swiper-button-prev::after,
.section-cost .swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "" !important;
  width: clamp(16.02px, 2.08vw, 30px);
  height: clamp(16.02px, 2.08vw, 30px);
  margin: auto;
}

@media screen and (max-width: 767px) {
  .section-cost .swiper-button-prev::after,
  .section-cost .swiper-button-next::after {
    width: clamp(6.68px, 5.48vw, 20px);
    height: clamp(6.68px, 5.48vw, 20px);
  }
}

.section-cost .swiper-button-prev::after {
  background-image: url("../images/button-prev.svg");
}

.section-cost .swiper-button-next::after {
  background-image: url("../images/button-next.svg");
}

.section-cost .swiper-pagination-bullet-active {
  background: #365699;
}

.section-cost .swiper-slide img {
  height: auto;
  width: 100%;
}

.section-cost .slide-content {
  margin: clamp(26.7px, 3.47vw, 50px) clamp(53.4px, 6.94vw, 100px);
  padding-bottom: clamp(16.02px, 2.08vw, 30px);
}

@media screen and (max-width: 767px) {
  .section-cost .slide-content {
    margin: 0;
  }
}

.section-cost .slide-title {
  font-size: clamp(13.35px, 1.74vw, 25px);
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2.4;
  text-align: left;
  color: #365699;
}

@media screen and (max-width: 767px) {
  .section-cost .slide-title {
    font-size: clamp(5.01px, 4.11vw, 15px);
    letter-spacing: 0.15em;
    text-align: center;
    margin-top: clamp(10.02px, 8.22vw, 30px);
  }
}

.section-cost .slide-title span {
  font-weight: 500;
  font-size: clamp(10.68px, 1.39vw, 20px);
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: left;
  margin-left: 1em;
  color: #365699;
}

@media screen and (max-width: 767px) {
  .section-cost .slide-title span {
    display: block;
    font-size: clamp(4.01px, 3.29vw, 12px);
    text-align: center;
    margin: 0 auto;
  }
}

.section-cost hr {
  border: 1px solid #365699;
}

@media screen and (max-width: 767px) {
  .section-cost hr {
    margin: clamp(1.67px, 1.37vw, 5px) 0 clamp(3.34px, 2.74vw, 10px);
  }
}

.section-cost .slide-data {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 63% 37%;
      grid-template-columns: 63% 37%;
  padding-top: clamp(10.68px, 1.39vw, 20px);
  height: 100%;
}

@media screen and (max-width: 767px) {
  .section-cost .slide-data {
    -ms-grid-columns: 100%;
        grid-template-columns: 100%;
  }
}

.section-cost .slide-data .data-text {
  font-weight: 500;
  font-size: clamp(8.54px, 1.11vw, 16px);
  letter-spacing: 0.13em;
  line-height: 1.875;
  text-align: left;
  color: #070203;
}

@media screen and (max-width: 767px) {
  .section-cost .slide-data .data-text {
    font-size: clamp(4.01px, 3.29vw, 12px);
  }
}

.section-cost .slide-data .data-image {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr clamp(8.54px, 1.11vw, 16px) 1fr;
      grid-template-columns: 1fr clamp(8.54px, 1.11vw, 16px) 1fr;
  gap: clamp(5.34px, 0.69vw, 10px);
      grid-template-areas: "before . after";
  margin-right: clamp(8.01px, 1.04vw, 15px);
}

.section-cost .slide-data .data-image #before {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: before;
}

.section-cost .slide-data .data-image #after {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: after;
}

@media screen and (max-width: 767px) {
  .section-cost .slide-data .data-image {
    -ms-grid-columns: 1fr clamp(4.01px, 3.29vw, 12px) 1fr;
        grid-template-columns: 1fr clamp(4.01px, 3.29vw, 12px) 1fr;
    gap: clamp(2px, 1.64vw, 6px);
    margin: 0;
    padding-top: clamp(6.68px, 5.48vw, 20px);
  }
}

.section-cost .slide-data .data-image .right-triangle {
  background-image: url("../images/icon-triangle-r2.svg");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 100%;
}

@media screen and (max-width: 767px) {
  .section-cost .slide-data .data-image .right-triangle {
    width: clamp(4.01px, 3.29vw, 12px);
  }
}

.section-cost .slide-data .data-image img {
  border-radius: 10px;
}

.section-cost .slide-overview {
  background-color: #e9edf4;
  margin: clamp(-7.48px, -0.97vw, -14px) 0 clamp(5.34px, 0.69vw, 10px);
  padding: clamp(9.61px, 1.25vw, 18px) clamp(13.35px, 1.74vw, 25px);
  border-radius: 10px;
  font-size: clamp(8.54px, 1.11vw, 16px);
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1.875;
  text-align: left;
  color: #070203;
}

@media screen and (max-width: 767px) {
  .section-cost .slide-overview {
    margin: clamp(-13.36px, -10.96vw, -40px) 0 clamp(6.68px, 5.48vw, 20px) 0;
    padding: clamp(12.69px, 10.41vw, 38px) clamp(6.01px, 4.93vw, 18px) clamp(7.68px, 6.3vw, 23px);
    font-size: clamp(4.01px, 3.29vw, 12px);
    line-height: 2.5;
  }
}

.section-purchase {
  background: url(../images/bg-4.png), #e9edf4;
  background-size: 100vw;
  background-repeat: no-repeat;
}

@media screen and (max-width: 767px) {
  .section-purchase {
    background: url(../images/bg-4-sp.png), #e9edf4;
    background-size: 100vw;
    background-repeat: no-repeat;
  }
}

.section-purchase .inner-content {
  margin-inline: clamp(117.48px, 15.28vw, 220px);
}

@media screen and (max-width: 767px) {
  .section-purchase .inner-content {
    margin-inline: 20px;
  }
}

.section-purchase .inner-content .section-title {
  font-size: clamp(16.02px, 2.08vw, 30px);
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2.0;
  text-align: left;
  color: #365699;
}

@media screen and (max-width: 767px) {
  .section-purchase .inner-content .section-title {
    margin: 0;
    font-size: clamp(5.01px, 4.11vw, 15px);
  }
}

.section-purchase .inner-content .purchase-overview {
  padding-top: clamp(33.11px, 4.31vw, 62px);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 50% 10% 40%;
      grid-template-columns: 50% 10% 40%;
  gap: 0;
}

@media screen and (max-width: 767px) {
  .section-purchase .inner-content .purchase-overview {
    padding-top: clamp(8.35px, 6.85vw, 25px);
    -ms-grid-columns: 100%;
        grid-template-columns: 100%;
    margin-inline: clamp(6.68px, 5.48vw, 20px);
  }
}

.section-purchase .inner-content .purchase-overview .purchase-left-area {
  font-size: clamp(8.54px, 1.11vw, 16px);
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 3;
  line-height: 2.5;
  text-align: left;
  color: #070203;
}

@media screen and (max-width: 767px) {
  .section-purchase .inner-content .purchase-overview .purchase-left-area {
    font-size: clamp(4.01px, 3.29vw, 12px);
    line-height: 2.5;
  }
}

.section-purchase .inner-content .purchase-overview .purchase-right-area {
  font-size: clamp(8.54px, 1.11vw, 16px);
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 3;
  text-align: center;
  color: #070203;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .section-purchase .inner-content .purchase-overview .purchase-right-area {
    padding-top: clamp(11.69px, 9.59vw, 35px);
    font-size: clamp(4.01px, 3.29vw, 12px);
  }
}

.section-purchase .inner-content .purchase-overview .purchase-right-area .area-title {
  position: relative;
  display: inline-block;
  font-size: clamp(13.35px, 1.74vw, 25px);
  font-weight: bold;
  letter-spacing: 0.2em;
  line-height: 1.6;
  text-align: left;
  color: #365699;
  padding: 0 clamp(5.34px, 0.69vw, 10px) 0 clamp(10.68px, 1.39vw, 20px);
  margin-bottom: clamp(8.01px, 1.04vw, 15px);
}

@media screen and (max-width: 767px) {
  .section-purchase .inner-content .purchase-overview .purchase-right-area .area-title {
    font-size: clamp(6.01px, 4.93vw, 18px);
    padding: 0 clamp(3.34px, 2.74vw, 10px) 0 clamp(6.68px, 5.48vw, 20px);
    margin-bottom: clamp(6.68px, 5.48vw, 20px);
  }
}

.section-purchase .inner-content .purchase-overview .purchase-right-area .area-title::before, .section-purchase .inner-content .purchase-overview .purchase-right-area .area-title::after {
  position: absolute;
  content: "";
  width: 3px;
  height: 80%;
  top: 5px;
  background-color: #365699;
}

.section-purchase .inner-content .purchase-overview .purchase-right-area .area-title::before {
  left: 0;
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
}

.section-purchase .inner-content .purchase-overview .purchase-right-area .area-title::after {
  right: 0;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
}

.section-purchase .inner-content .purchase-overview .purchase-right-area .purchase-image-area {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 0 clamp(16.02px, 2.08vw, 30px);
}

@media screen and (max-width: 767px) {
  .section-purchase .inner-content .purchase-overview .purchase-right-area .purchase-image-area {
    margin: 0 clamp(13.35px, 1.74vw, 25px);
  }
}

.section-purchase .inner-content .purchase-overview .purchase-right-area .purchase-image-area .purchase-image {
  position: relative;
  display: block;
  text-align: center;
  margin: 0 auto;
}

.section-purchase .inner-content .purchase-overview .purchase-right-area .purchase-image-area .purchase-image img {
  width: 75%;
  margin: 0 auto;
}

.section-achievement {
  background: #e9edf4;
  padding: clamp(37.38px, 4.86vw, 70px) 0 clamp(16.02px, 2.08vw, 30px);
}

@media screen and (max-width: 767px) {
  .section-achievement {
    padding: clamp(8.35px, 6.85vw, 25px) 0;
  }
}

.section-achievement .inner-content {
  margin-inline: clamp(117.48px, 15.28vw, 220px);
}

@media screen and (max-width: 767px) {
  .section-achievement .inner-content {
    margin-inline: 20px;
  }
}

.section-achievement .inner-content .achievement-list {
  background-color: white;
  border-radius: 20px;
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: clamp(8.01px, 1.04vw, 15px);
  margin: clamp(32.04px, 4.17vw, 60px) 0;
  padding: clamp(16.02px, 2.08vw, 30px) clamp(10.68px, 1.39vw, 20px);
}

@media screen and (max-width: 767px) {
  .section-achievement .inner-content .achievement-list {
    -ms-grid-columns: 100%;
        grid-template-columns: 100%;
    gap: clamp(6.68px, 5.48vw, 20px);
    margin: clamp(10.02px, 8.22vw, 30px) 0;
    padding: clamp(6.01px, 4.93vw, 18px);
  }
}

.section-achievement .inner-content .achievement-list .achievement-item {
  margin: 0 auto;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .section-achievement .inner-content .achievement-list .achievement-item {
    width: 100%;
  }
}

.section-achievement .inner-content .achievement-list .achievement-item img {
  width: 100%;
  border-radius: 10px;
}

@media screen and (max-width: 767px) {
  .section-achievement .inner-content .achievement-list .achievement-item img {
    max-width: initial;
    border-radius: 12px;
  }
}

.section-achievement .inner-content .achievement-list .achievement-item .item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 4em;
  font-size: clamp(8.54px, 1.11vw, 16px);
  font-weight: 500;
  letter-spacing: 0.165em;
  line-height: 1.2;
  color: #070203;
}

@media screen and (max-width: 767px) {
  .section-achievement .inner-content .achievement-list .achievement-item .item-title {
    padding-top: clamp(4.34px, 3.56vw, 13px);
    font-size: clamp(4.01px, 3.29vw, 12px);
  }
}

.section-achievement .inner-content .achievement-list .achievement-item .item-price {
  font-size: clamp(16.02px, 2.08vw, 30px);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: #365699;
}

@media screen and (max-width: 767px) {
  .section-achievement .inner-content .achievement-list .achievement-item .item-price {
    font-size: clamp(8.68px, 7.12vw, 26px);
  }
}

.section-not-applicable {
  background: #e9edf4;
  padding-top: clamp(5.34px, 0.69vw, 10px);
}

@media screen and (max-width: 767px) {
  .section-not-applicable {
    padding: 0;
  }
}

.section-not-applicable .inner-content {
  margin-inline: clamp(117.48px, 15.28vw, 220px);
}

@media screen and (max-width: 767px) {
  .section-not-applicable .inner-content {
    margin-inline: 20px;
  }
}

.section-not-applicable .inner-content .section-title {
  position: relative;
  font-size: clamp(13.35px, 1.74vw, 25px);
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2.4;
  text-align: left;
  color: #365699;
  padding-left: 25%;
  -webkit-transform: translateY(clamp(26.7px, 3.47vw, 50px));
          transform: translateY(clamp(26.7px, 3.47vw, 50px));
}

@media screen and (max-width: 767px) {
  .section-not-applicable .inner-content .section-title {
    font-size: clamp(5.01px, 4.11vw, 15px);
    margin: 0;
    padding: 0;
    -webkit-transform: translateY(clamp(-26.7px, -3.47vw, -50px));
            transform: translateY(clamp(-26.7px, -3.47vw, -50px));
  }
}

.section-not-applicable .inner-content .person {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 20% 80%;
      grid-template-columns: 20% 80%;
  margin-left: clamp(10.68px, 1.39vw, 20px);
}

@media screen and (max-width: 767px) {
  .section-not-applicable .inner-content .person {
    -ms-grid-columns: 30% 70%;
        grid-template-columns: 30% 70%;
    margin: 0;
  }
}

.section-not-applicable .inner-content .person .speech-bubble {
  position: relative;
  height: 65%;
  margin: clamp(32.04px, 4.17vw, 60px) clamp(8.54px, 1.11vw, 16px) 0;
  border-radius: 240px;
  background-color: white;
  text-align: center;
  padding-left: clamp(21.36px, 2.78vw, 40px);
}

@media screen and (max-width: 767px) {
  .section-not-applicable .inner-content .person .speech-bubble {
    height: 100%;
    margin: 0 0 0 clamp(3.34px, 2.74vw, 10px);
    border-radius: 16px;
  }
}

.section-not-applicable .inner-content .person .speech-bubble::before {
  content: url(../images/bubble-tail.png);
  position: absolute;
  display: block;
  left: clamp(-25px, -5.56vw, -80px);
  top: 17%;
}

@media screen and (max-width: 767px) {
  .section-not-applicable .inner-content .person .speech-bubble::before {
    top: 30%;
  }
}

.section-not-applicable .inner-content .person .speech-bubble-text {
  display: block;
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  margin: auto 0;
  font-weight: bold;
  font-size: clamp(9.08px, 1.18vw, 17px);
  letter-spacing: 0.18em;
  line-height: 1.76;
  text-align: center;
  color: #365699;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (max-width: 767px) {
  .section-not-applicable .inner-content .person .speech-bubble-text {
    font-size: clamp(4.01px, 3.29vw, 12px);
    line-height: 2.5;
    text-align: left;
    padding-inline: clamp(2.67px, 2.19vw, 8px);
  }
}

.section-not-applicable .inner-content .attention {
  font-size: clamp(8.54px, 1.11vw, 16px);
  padding-left: 24%;
  -webkit-transform: translateY(clamp(-26.7px, -3.47vw, -50px));
          transform: translateY(clamp(-26.7px, -3.47vw, -50px));
}

@media screen and (max-width: 767px) {
  .section-not-applicable .inner-content .attention {
    padding-left: 0;
    font-size: clamp(4.01px, 3.29vw, 12px);
    line-height: 2.5;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    margin-top: clamp(8.01px, 1.04vw, 15px);
  }
}

.section-other-business {
  background: #e9edf4;
  padding-top: clamp(53.4px, 6.94vw, 100px);
}

@media screen and (max-width: 767px) {
  .section-other-business {
    padding-top: clamp(16.7px, 13.7vw, 50px);
  }
}

.section-other-business .inner-content {
  margin-inline: clamp(117.48px, 15.28vw, 220px);
  text-align: center;
}

@media screen and (max-width: 767px) {
  .section-other-business .inner-content {
    margin-inline: 20px;
  }
}

.section-other-business .inner-content .section-title {
  width: 100%;
  background-color: #365699;
  border-radius: clamp(10.68px, 1.39vw, 20px);
  padding: clamp(5.34px, 0.69vw, 10px) 0;
  font-size: clamp(13.35px, 1.74vw, 25px);
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2.4;
  color: white;
}

@media screen and (max-width: 767px) {
  .section-other-business .inner-content .section-title {
    margin: 0;
    font-size: clamp(4.01px, 3.29vw, 12px);
    border-radius: clamp(2.67px, 2.19vw, 8px);
  }
}

.section-other-business .inner-content .business-list {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr clamp(5.34px, 0.69vw, 10px) 1fr clamp(5.34px, 0.69vw, 10px) 1fr;
      grid-template-columns: 1fr clamp(5.34px, 0.69vw, 10px) 1fr clamp(5.34px, 0.69vw, 10px) 1fr;
      grid-template-areas: "item-1 . item-2 . item-3";
  padding: clamp(32.04px, 4.17vw, 60px) 0 clamp(16.02px, 2.08vw, 30px) 0;
}

.section-other-business .inner-content .business-list #item-1 {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: item-1;
}

.section-other-business .inner-content .business-list #item-2 {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: item-2;
}

.section-other-business .inner-content .business-list #item-3 {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
  grid-area: item-3;
}

@media screen and (max-width: 767px) {
  .section-other-business .inner-content .business-list {
    -ms-grid-columns: 100%;
        grid-template-columns: 100%;
    -ms-grid-rows: auto clamp(6.68px, 5.48vw, 20px) auto clamp(6.68px, 5.48vw, 20px) auto clamp(6.68px, 5.48vw, 20px);
        grid-template-rows: auto clamp(6.68px, 5.48vw, 20px) auto clamp(6.68px, 5.48vw, 20px) auto clamp(6.68px, 5.48vw, 20px);
    margin: 0 auto;
    padding-top: clamp(13.36px, 10.96vw, 40px);
    gap: clamp(6.68px, 5.48vw, 20px);
        grid-template-areas: "item-1" "." "item-2" "." "item-3" ".";
  }
  .section-other-business .inner-content .business-list #item-1 {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: item-1;
  }
  .section-other-business .inner-content .business-list #item-2 {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
    grid-area: item-2;
  }
  .section-other-business .inner-content .business-list #item-3 {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
    grid-area: item-3;
  }
}

.section-other-business .inner-content .business-list .partition {
  border-right: 2px solid #365699;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .section-other-business .inner-content .business-list .partition {
    border-top: 2px solid #365699;
    border-right: none;
  }
}

.section-other-business .inner-content .business-list .business-item {
  margin: 0 auto;
  text-align: center;
}

.section-other-business .inner-content .business-list .business-item img {
  width: 50%;
  margin: 0 auto;
}

.section-other-business .inner-content .business-list .business-item .item-title {
  font-size: clamp(10.68px, 1.39vw, 20px);
  font-weight: normal;
  letter-spacing: 0.2em;
  line-height: 3.0;
  color: #365699;
  padding-top: clamp(10.68px, 1.39vw, 20px);
}

@media screen and (max-width: 767px) {
  .section-other-business .inner-content .business-list .business-item .item-title {
    font-size: clamp(5.01px, 4.11vw, 15px);
    padding-top: clamp(8.02px, 6.58vw, 24px);
  }
}

.section-other-business .inner-content .business-list .business-item .item-text {
  font-size: clamp(8.54px, 1.11vw, 16px);
  font-weight: normal;
  letter-spacing: 0.18em;
  line-height: 1.875;
  text-align: left;
  color: #070203;
  padding-inline: clamp(8.54px, 1.11vw, 16px);
}

@media screen and (max-width: 767px) {
  .section-other-business .inner-content .business-list .business-item .item-text {
    font-size: clamp(4.01px, 3.29vw, 12px);
    line-height: 2.5;
  }
}

.section-other-business .inner-content .etc {
  font-weight: 500;
  font-size: clamp(8.54px, 1.11vw, 16px);
  letter-spacing: 0.165em;
  line-height: 1.875;
  text-align: left;
  color: #070203;
}

@media screen and (max-width: 767px) {
  .section-other-business .inner-content .etc {
    font-size: clamp(4.01px, 3.29vw, 12px);
    letter-spacing: 0.18em;
    line-height: 2.5;
    padding: clamp(3.34px, 2.74vw, 10px) clamp(5.34px, 4.38vw, 16px) 0;
  }
}

.section-building-maintenance {
  background: #e9edf4;
  padding-top: clamp(37.38px, 4.86vw, 70px);
}

@media screen and (max-width: 767px) {
  .section-building-maintenance {
    padding-top: clamp(10.02px, 8.22vw, 30px);
  }
}

.section-building-maintenance .inner-content {
  margin-inline: clamp(117.48px, 15.28vw, 220px);
}

@media screen and (max-width: 767px) {
  .section-building-maintenance .inner-content {
    margin-inline: 20px;
  }
}

.section-building-maintenance .inner-content .maintenance-list {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr clamp(5.34px, 0.69vw, 10px) 1fr clamp(5.34px, 0.69vw, 10px) 1fr;
      grid-template-columns: 1fr clamp(5.34px, 0.69vw, 10px) 1fr clamp(5.34px, 0.69vw, 10px) 1fr;
      grid-template-areas: "item-1 . item-2 . item-3";
  padding: clamp(26.7px, 3.47vw, 50px) 0 clamp(5.34px, 0.69vw, 10px) 0;
}

.section-building-maintenance .inner-content .maintenance-list #item-1 {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: item-1;
}

.section-building-maintenance .inner-content .maintenance-list #item-2 {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: item-2;
}

.section-building-maintenance .inner-content .maintenance-list #item-3 {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
  grid-area: item-3;
}

@media screen and (max-width: 767px) {
  .section-building-maintenance .inner-content .maintenance-list {
    -ms-grid-columns: 100%;
        grid-template-columns: 100%;
    -ms-grid-rows: auto clamp(3.34px, 2.74vw, 10px) auto clamp(3.34px, 2.74vw, 10px) auto clamp(3.34px, 2.74vw, 10px);
        grid-template-rows: auto clamp(3.34px, 2.74vw, 10px) auto clamp(3.34px, 2.74vw, 10px) auto clamp(3.34px, 2.74vw, 10px);
    margin: 0 auto;
    padding-top: clamp(3.34px, 2.74vw, 10px);
    gap: clamp(3.34px, 2.74vw, 10px);
        grid-template-areas: "item-1" "." "item-2" "." "item-3" ".";
  }
  .section-building-maintenance .inner-content .maintenance-list #item-1 {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: item-1;
  }
  .section-building-maintenance .inner-content .maintenance-list #item-2 {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    grid-area: item-2;
  }
  .section-building-maintenance .inner-content .maintenance-list #item-3 {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
    grid-area: item-3;
  }
}

.section-building-maintenance .inner-content .maintenance-list .partition {
  border-right: 2px solid #365699;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .section-building-maintenance .inner-content .maintenance-list .partition {
    border-top: 2px solid #365699;
    border-right: none;
  }
}

.section-building-maintenance .inner-content .maintenance-list .maintenance-item {
  margin: 0 auto;
  text-align: center;
}

.section-building-maintenance .inner-content .maintenance-list .maintenance-item img {
  width: 50%;
  margin: 0 auto;
}

.section-building-maintenance .inner-content .maintenance-list .maintenance-item .maintenance-title {
  font-weight: normal;
  font-size: clamp(10.68px, 1.39vw, 20px);
  letter-spacing: 0.2em;
  line-height: 3.0;
  color: #365699;
  padding-top: clamp(10.68px, 1.39vw, 20px);
}

@media screen and (max-width: 767px) {
  .section-building-maintenance .inner-content .maintenance-list .maintenance-item .maintenance-title {
    font-size: clamp(5.01px, 4.11vw, 15px);
  }
}

.section-building-maintenance .inner-content .maintenance-list .maintenance-item .maintenance-text {
  font-weight: normal;
  font-size: clamp(8.54px, 1.11vw, 16px);
  letter-spacing: 0.18em;
  line-height: 1.875;
  text-align: left;
  color: #070203;
  padding-bottom: clamp(10.68px, 1.39vw, 20px);
  padding-inline: clamp(8.54px, 1.11vw, 16px);
}

@media screen and (max-width: 767px) {
  .section-building-maintenance .inner-content .maintenance-list .maintenance-item .maintenance-text {
    font-size: clamp(4.01px, 3.29vw, 12px);
    padding-bottom: clamp(6.68px, 5.48vw, 20px);
    padding-inline: clamp(5.34px, 4.38vw, 16px);
  }
}

.section-price-list {
  background: #e9edf4;
  padding: clamp(32.04px, 4.17vw, 60px) 0 clamp(53.4px, 6.94vw, 100px);
}

@media screen and (max-width: 767px) {
  .section-price-list {
    padding: clamp(10.02px, 8.22vw, 30px) 0 clamp(16.7px, 13.7vw, 50px);
  }
}

.section-price-list .inner-content {
  padding-top: clamp(32.04px, 4.17vw, 60px);
  margin-inline: clamp(117.48px, 15.28vw, 220px);
}

@media screen and (max-width: 767px) {
  .section-price-list .inner-content {
    margin-inline: 20px;
    padding-top: clamp(10.02px, 8.22vw, 30px);
  }
}

.section-price-list .inner-content .price-list-area {
  background-color: white;
  padding: clamp(16.02px, 2.08vw, 30px) clamp(50.73px, 6.6vw, 95px);
  border-radius: 12px;
}

@media screen and (max-width: 767px) {
  .section-price-list .inner-content .price-list-area {
    margin: 0;
    padding: 0;
  }
}

.section-price-list .inner-content .price-list-area .price-table {
  width: 100%;
  margin: 0 auto;
  border-spacing: 0;
}

@media screen and (max-width: 767px) {
  .section-price-list .inner-content .price-list-area .price-table {
    padding: clamp(6.68px, 5.48vw, 20px) clamp(6.68px, 5.48vw, 20px) 0 clamp(6.68px, 5.48vw, 20px);
  }
}

.section-price-list .inner-content .price-list-area .price-table thead th {
  width: calc(100% / 3);
  font-size: clamp(13.35px, 1.74vw, 25px);
  font-weight: 900;
  letter-spacing: 0.2em;
  line-height: 1.6;
  text-align: center;
  color: #88cdf9;
}

@media screen and (max-width: 767px) {
  .section-price-list .inner-content .price-list-area .price-table thead th {
    font-size: clamp(5.01px, 4.11vw, 15px);
    letter-spacing: 0.01em;
  }
}

.section-price-list .inner-content .price-list-area .price-table thead th.table-attention {
  font-weight: normal;
  font-size: clamp(8.54px, 1.11vw, 16px);
  letter-spacing: 0.18em;
  line-height: 1.875;
  text-align: left;
  color: #070203;
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .section-price-list .inner-content .price-list-area .price-table thead th.table-attention {
    font-size: clamp(4.01px, 3.29vw, 12px);
    letter-spacing: 0.08em;
  }
}

.section-price-list .inner-content .price-list-area .price-table tbody th {
  width: calc(100% / 3);
  font-weight: 500;
  font-size: clamp(13.35px, 1.74vw, 25px);
  letter-spacing: 0.1em;
  line-height: 2.4;
  text-align: center;
  color: #88cdf9;
  border: 2px solid #e9edf4;
}

@media screen and (max-width: 767px) {
  .section-price-list .inner-content .price-list-area .price-table tbody th {
    font-size: clamp(4.01px, 3.29vw, 12px);
    border: 1px solid #e9edf4;
  }
}

.section-price-list .inner-content .price-list-area .price-table tbody td {
  width: calc(100% / 3);
  font-size: clamp(18.69px, 2.43vw, 35px);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.71;
  text-align: center;
  color: #070203;
  border: 2px solid #e9edf4;
}

@media screen and (max-width: 767px) {
  .section-price-list .inner-content .price-list-area .price-table tbody td {
    font-size: clamp(5.01px, 4.11vw, 15px);
    border: 1px solid #e9edf4;
  }
}

.section-price-list .inner-content .price-list-area .price-table tbody td span {
  font-size: clamp(13.35px, 1.74vw, 25px);
}

@media screen and (max-width: 767px) {
  .section-price-list .inner-content .price-list-area .price-table tbody td span {
    font-size: clamp(3.67px, 3.01vw, 11px);
  }
}

.section-price-list .inner-content .price-list-area .attention {
  width: 80%;
  padding-top: clamp(10.68px, 1.39vw, 20px);
  font-size: clamp(8.54px, 1.11vw, 16px);
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 3;
  line-height: 2.5;
  text-align: left;
  color: #070203;
}

@media screen and (max-width: 767px) {
  .section-price-list .inner-content .price-list-area .attention {
    width: initial;
    font-size: clamp(4.01px, 3.29vw, 12px);
    padding: clamp(6.68px, 5.48vw, 20px);
  }
}

.section-company {
  background: #e9edf4;
  padding: clamp(74.76px, 9.72vw, 140px) 0;
}

@media screen and (max-width: 767px) {
  .section-company {
    padding: clamp(16.7px, 13.7vw, 50px) 0;
  }
}

.section-company .inner-content {
  padding-top: clamp(21.36px, 2.78vw, 40px);
  margin-inline: clamp(117.48px, 15.28vw, 220px);
}

@media screen and (max-width: 767px) {
  .section-company .inner-content {
    margin-inline: 20px;
  }
}

.section-company .overview-item {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 30% 70%;
      grid-template-columns: 30% 70%;
  padding: clamp(5.34px, 0.69vw, 10px) 0;
  font-size: clamp(8.54px, 1.11vw, 16px);
  letter-spacing: 0.165em;
  line-height: 1.875;
}

@media screen and (max-width: 767px) {
  .section-company .overview-item {
    font-size: clamp(4.01px, 3.29vw, 12px);
    -ms-grid-columns: 100%;
        grid-template-columns: 100%;
  }
}

.section-company .overview-item .item-title {
  font-weight: 900;
  text-align: center;
  color: #365699;
}

@media screen and (max-width: 767px) {
  .section-company .overview-item .item-title {
    text-align: left;
  }
}

.section-company .overview-item .item-content {
  font-weight: 500;
  color: #070203;
}

.section-company .overview-item span {
  display: block;
}

hr {
  border: 1px solid rgba(109, 131, 181, 0.25);
  margin: 5px 0;
}

hr.sp {
  display: block;
}

.section-faq {
  background: url(../images/bg-5.png);
  background-size: 100vw;
  background-repeat: no-repeat;
}

@media screen and (max-width: 767px) {
  .section-faq {
    background: url(../images/bg-5-sp.png);
    background-size: 100vw;
    background-repeat: no-repeat;
  }
}

.section-faq .container {
  max-width: 1440px;
  margin: 0 auto;
}

.section-faq .inner-content {
  margin-inline: clamp(117.48px, 15.28vw, 220px);
  text-align: left;
}

@media screen and (max-width: 767px) {
  .section-faq .inner-content {
    margin-inline: 20px;
  }
}

.section-faq .inner-content .section-title {
  width: 100%;
  font-size: clamp(16.02px, 2.08vw, 30px);
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2.0;
  color: #365699;
}

@media screen and (max-width: 767px) {
  .section-faq .inner-content .section-title {
    width: initial;
    font-size: clamp(5.01px, 4.11vw, 15px);
    margin: 0;
  }
}

.section-faq .inner-content .faq-list {
  padding-top: clamp(10.68px, 1.39vw, 20px);
}

.section-faq .inner-content .faq-list dt {
  font-size: clamp(10.68px, 1.39vw, 20px);
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 3.0;
  text-align: left;
  color: #365699;
}

@media screen and (max-width: 767px) {
  .section-faq .inner-content .faq-list dt {
    font-size: clamp(4.01px, 3.29vw, 12px);
    letter-spacing: 0.07em;
    line-height: 1.4;
    text-indent: -2.7em;
    padding-left: 3.2em;
  }
}

.section-faq .inner-content .faq-list dt::before {
  display: inline-block;
  content: '';
  background-image: url(../images/icon-question.png);
  background-size: contain;
  vertical-align: middle;
  width: clamp(17.09px, 2.22vw, 32px);
  height: clamp(17.09px, 2.22vw, 32px);
  margin-right: clamp(11.75px, 1.53vw, 22px);
}

@media screen and (max-width: 767px) {
  .section-faq .inner-content .faq-list dt::before {
    width: clamp(8.35px, 6.85vw, 25px);
    height: clamp(8.35px, 6.85vw, 25px);
    margin-right: clamp(2.67px, 2.19vw, 8px);
  }
}

.section-faq .inner-content .faq-list dd {
  font-size: clamp(8.54px, 1.11vw, 16px);
  font-weight: 500;
  letter-spacing: 0.165em;
  line-height: clamp(16.02px, 2.08vw, 30px);
  text-align: left;
  color: #070203;
  padding-left: clamp(28.84px, 3.75vw, 54px);
  margin-bottom: clamp(10.68px, 1.39vw, 20px);
}

@media screen and (max-width: 767px) {
  .section-faq .inner-content .faq-list dd {
    font-size: clamp(3.34px, 2.74vw, 10px);
    line-height: 2.0;
    margin-top: 5px;
    padding-left: clamp(13.36px, 10.96vw, 40px);
  }
}

footer {
  position: relative;
  width: 100%;
  font-size: clamp(7.48px, 0.97vw, 14px);
  color: #232427;
  text-align: center;
  padding-top: clamp(32.04px, 4.17vw, 60px);
}

@media screen and (max-width: 767px) {
  footer {
    width: initial;
    display: block;
    padding-top: clamp(10.02px, 8.22vw, 30px);
  }
}

footer .container {
  max-width: 1440px;
  padding-top: clamp(32.04px, 4.17vw, 60px);
  border-top: 1px solid #b4b4b5;
}

@media screen and (max-width: 767px) {
  footer .container {
    padding-top: clamp(10.02px, 8.22vw, 30px);
    margin: 0 20px;
  }
}

footer .inner-content {
  max-width: 1440px;
  margin: 0 clamp(64.08px, 8.33vw, 120px);
  padding-bottom: clamp(53.4px, 6.94vw, 100px);
}

@media screen and (max-width: 767px) {
  footer .inner-content {
    padding-bottom: 0;
    margin: 0;
  }
}

footer .footer-menu {
  width: 60%;
  display: -ms-grid;
  display: grid;
  grid-auto-flow: column;
  -ms-grid-columns: auto, auto, auto, auto;
      grid-template-columns: auto, auto, auto, auto;
  gap: clamp(5.34px, 0.69vw, 10px);
  padding-top: clamp(16.02px, 2.08vw, 30px);
}

@media screen and (max-width: 767px) {
  footer .footer-menu {
    display: none;
  }
}

footer .footer-menu a {
  color: #232427;
  text-decoration: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

footer .footer-menu a::before {
  content: url(../images/Icon-circle-greater-b.svg);
  display: inline-block;
  width: clamp(8.01px, 1.04vw, 15px);
  height: auto;
  margin-right: clamp(6.41px, 0.83vw, 12px);
  position: relative;
  top: clamp(1.6px, 0.21vw, 3px);
  left: 0;
}

.copyright {
  background-color: #e9edf4;
  height: clamp(20.29px, 2.64vw, 38px);
  font-size: clamp(6.94px, 0.9vw, 13px);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2.3;
  text-align: center;
  color: #070203;
}

@media screen and (max-width: 767px) {
  .copyright {
    height: clamp(6.01px, 4.93vw, 18px);
    font-size: clamp(2.67px, 2.19vw, 8px);
    margin-top: clamp(13.36px, 10.96vw, 40px);
  }
}

.footer-company {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 20% 45% auto;
      grid-template-columns: 20% 45% auto;
  gap: clamp(21.36px, 2.78vw, 40px);
  font-size: clamp(8.54px, 1.11vw, 16px);
  font-weight: 500;
  letter-spacing: 0.165em;
  line-height: 1.875;
  text-align: left;
  color: #070203;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 767px) {
  .footer-company {
    -ms-grid-columns: 45% auto;
        grid-template-columns: 45% auto;
    -ms-grid-rows: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        grid-template-areas: "footer-logo footer-address-area" "line-link line-link";
    font-size: clamp(3.34px, 2.74vw, 10px);
    gap: clamp(6.68px, 5.48vw, 20px);
  }
  .footer-company .footer-logo {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: footer-logo;
  }
  .footer-company .footer-address-area {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
    grid-area: footer-address-area;
  }
  .footer-company .line-link {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: line-link;
  }
}

.footer-company a {
  text-decoration: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #070203;
}

.footer-company .footer-logo {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .footer-company .footer-logo {
    grid-area: footer-logo;
  }
}

@media screen and (max-width: 767px) {
  .footer-company .footer-address-area {
    grid-area: footer-address-area;
  }
}

.footer-company .footer-address {
  text-indent: -0.7em;
  padding-left: 1.5em;
}

.footer-company .footer-address::before {
  content: url(../images/icon-footer-address.svg);
  display: inline-block;
  width: clamp(8.54px, 1.11vw, 16px);
  height: auto;
  position: relative;
  top: 2px;
  left: 0;
}

@media screen and (max-width: 767px) {
  .footer-company .footer-address::before {
    width: clamp(3.34px, 2.74vw, 10px);
    margin-right: -0.5em;
  }
}

.footer-company .number {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: max-content auto;
      grid-template-columns: -webkit-max-content auto;
      grid-template-columns: max-content auto;
  gap: 10px;
}

@media screen and (max-width: 767px) {
  .footer-company .number {
    -ms-grid-columns: 100%;
        grid-template-columns: 100%;
  }
}

.footer-company .number .telephone::before {
  content: url(../images/icon-footer-phone.svg);
  display: inline-block;
  width: clamp(8.54px, 1.11vw, 16px);
  height: auto;
  margin-right: clamp(5.34px, 0.69vw, 10px);
  position: relative;
  top: 2px;
  left: 0;
}

@media screen and (max-width: 767px) {
  .footer-company .number .telephone::before {
    width: clamp(3.34px, 2.74vw, 10px);
    margin-right: clamp(1.67px, 1.37vw, 5px);
  }
}

.footer-company .number .fax::before {
  content: url(../images/icon-footer-fax.svg);
  display: inline-block;
  width: clamp(8.54px, 1.11vw, 16px);
  height: auto;
  margin-right: clamp(5.34px, 0.69vw, 10px);
  position: relative;
  top: clamp(1.07px, 0.14vw, 2px);
  left: 0;
}

@media screen and (max-width: 767px) {
  .footer-company .number .fax::before {
    width: clamp(3.34px, 2.74vw, 10px);
    margin-right: clamp(1.67px, 1.37vw, 5px);
  }
}

.footer-company .line-link {
  display: inline-block;
  background: #23ae55;
  border-radius: 30px;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -webkit-transition: ease-in-out 0.1s;
  transition: ease-in-out 0.1s;
}

.footer-company .line-link:hover {
  background-color: #23ae5599;
}

@media screen and (max-width: 767px) {
  .footer-company .line-link {
    grid-area: line-link;
    border-radius: 80px;
  }
}

.footer-company .line-link .link-text {
  font-family: "Noto Sans";
  font-weight: 500;
  font-size: clamp(8.54px, 1.11vw, 16px);
  letter-spacing: 0.18em;
  line-height: 1.875;
  text-align: center;
  color: white;
  padding: clamp(5.34px, 0.69vw, 10px) clamp(13.35px, 1.74vw, 25px);
}

@media screen and (max-width: 767px) {
  .footer-company .line-link .link-text {
    font-size: clamp(5.01px, 4.11vw, 15px);
    padding: clamp(6.68px, 5.48vw, 20px) clamp(10.02px, 8.22vw, 30px);
  }
}

.footer-company .line-link .link-text::before {
  content: url(../images/Icon-circle-greater.svg);
  display: inline-block;
  width: clamp(8.01px, 1.04vw, 15px);
  height: auto;
  margin-right: clamp(6.41px, 0.83vw, 12px);
  position: relative;
  top: clamp(1.07px, 0.14vw, 2px);
  left: 0;
}

@media screen and (max-width: 767px) {
  .footer-company .line-link .link-text::before {
    width: clamp(5.01px, 4.11vw, 15px);
  }
}

.upper {
  opacity: 0;
  -webkit-transform: translate(0px, 70px);
          transform: translate(0px, 70px);
  -webkit-transition-delay: 200ms;
          transition-delay: 200ms;
  -webkit-transition-duration: 750ms;
          transition-duration: 750ms;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}

.upper.is-active {
  opacity: 1;
  -webkit-transform: translate(0px, 0px);
          transform: translate(0px, 0px);
}
/*# sourceMappingURL=style.css.map */