@charset "UTF-8";
:root {
  --fontColor: #333132;
  --fontNoto: "Noto Sans JP";
  --fontMPlus: "M PLUS Rounded 1c";
  --colorOrange: #ff8c00;
  --colorPink: #ff0069;
  --colorBlue: #0e8fcd;
  --colorDBlue: #004498;
  --colorLblue: #88cfd9;
  --colorDGreen: #085964;
  --gradient: linear-gradient(90deg,#88cfd9,#0e8fcd,#004498);
  --gradient2: linear-gradient(90deg,#b0c4de,#fff,#4682b4);
  --zHeader: 990;
  --zHeaderMenu: 999;
  --zFooterBtn: 100;
}

/*********************************************************
base
*********************************************************/
html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  color: var(--fontColor);
  font-family: var(--fontNoto), sans-serif;
  letter-spacing: 2px;
  line-height: 1.5;
  margin-inline: auto;
  max-width: 2000px;
}

body.is-fixed {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}

li {
  list-style: none;
}

span {
  font-weight: inherit;
}

button {
  cursor: pointer;
  padding: 0;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none;
}

.dib {
  display: inline-block;
}

/*********************************************************
header
*********************************************************/
.header__inner {
  border-radius: 10px;
  box-shadow: 3px 3px 3px #b5b5b5;
  position: fixed;
  top: 5px;
  left: 50%;
  width: 94%;
  max-width: 1200px;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  translate: -50% 10px;
  transition: opacity 0.4s, transform 0.4s, visibility 0.4s;
  z-index: var(--zHeader);
}
.header__inner.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header__top {
  display: flex;
  align-items: center;
  padding: 16px;
}

@media (max-width: 350px) {
  .header__logo {
    padding-right: 30px;
  }
}

.header__logo-link img {
  width: 200px;
}
@media (max-width: 600px) {
  .header__logo-link img {
    width: 120px;
  }
}
@media (max-width: 480px) {
  .header__logo-link img {
    width: 200px;
  }
}

.header__contact {
  margin-left: auto;
  margin-right: 100px;
}
@media (max-width: 768px) {
  .header__contact {
    margin-right: 30px;
  }
}
@media (max-width: 480px) {
  .header__contact {
    display: none;
  }
}

.header__menu-button {
  margin-right: 50px;
  width: 30px;
}
@media (max-width: 600px) {
  .header__menu-button {
    margin-right: 10px;
  }
}
@media (max-width: 480px) {
  .header__menu-button {
    margin-left: auto;
  }
}

.menu-btn {
  display: inline-block;
  width: 48px;
  height: 16px;
  position: relative;
  cursor: pointer;
}
@media (max-width: 480px) {
  .menu-btn {
    width: 42px;
    height: 16px;
  }
}
.menu-btn::before, .menu-btn::after {
  content: "";
  position: absolute;
  left: 0;
  height: 3px;
  background: var(--gradient);
}
.menu-btn::before {
  top: 0;
  width: 100%;
}
.menu-btn::after {
  bottom: 0;
  width: 60%;
}

.header__drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--gradient);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
  z-index: var(--zHeaderMenu);
}
@media (max-height: 500px) {
  .header__drawer {
    overflow: auto;
  }
}
.header__drawer.is-open {
  opacity: 1;
  visibility: visible;
}

.header__drawer-inner {
  color: #fff;
  width: 98%;
  max-width: 1000px;
  height: 100%;
  padding: 50px 20px 20px;
  position: relative;
  margin-inline: auto;
}
@media (min-width: 1024px) {
  .header__drawer-inner {
    width: 90%;
  }
}
@media (min-width: 769px) and (max-width: 980px) {
  .header__drawer-inner {
    padding: 50px 10px 20px;
  }
}
@media (max-width: 768px) {
  .header__drawer-inner {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.header__close-button {
  position: fixed;
  top: 30px;
  right: 50%;
}
@media (min-width: 1271px) {
  .header__close-button {
    margin-right: -550px;
  }
}
@media (max-width: 1270px) {
  .header__close-button {
    right: 7.5%;
  }
}
@media (max-width: 1050px) {
  .header__close-button {
    right: 8.5%;
  }
}
@media (max-width: 980px) {
  .header__close-button {
    right: 9%;
  }
}
@media (max-width: 800px) {
  .header__close-button {
    right: 9.5%;
  }
}
@media (max-width: 700px) {
  .header__close-button {
    right: 11%;
  }
}
@media (max-width: 600px) {
  .header__close-button {
    top: 25px;
    right: 5%;
  }
}
@media (max-width: 480px) {
  .header__close-button {
    top: 30px;
    right: 6%;
  }
}
@media (max-width: 350px) {
  .header__close-button {
    right: 7%;
  }
}

.close-btn {
  position: relative;
  width: 42px;
  height: 42px;
  cursor: pointer;
  display: inline-block;
}
.close-btn::before, .close-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px;
  background: #fff;
}
.close-btn::before {
  transform: rotate(45deg);
}
.close-btn::after {
  transform: rotate(-45deg);
}

.header__drawer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
}
@media (min-width: 769px) {
  .header__drawer-content {
    height: 100%;
  }
}
@media (max-width: 768px) {
  .header__drawer-content {
    flex-direction: column;
    margin-top: 30px;
    min-height: 430px;
  }
}

@media (max-width: 768px) {
  .header__nav {
    margin-top: 30px;
  }
}

.header__nav-item {
  border-bottom: 1px solid #fff;
}
.header__nav-item:first-child {
  border-top: 1px solid #fff;
}

.header__nav-link {
  display: block;
  font-weight: bold;
  padding: 15px 50px;
  text-align: center;
}

@media (max-width: 768px) {
  .header__info {
    margin-top: 30px;
  }
}

.header__info-item {
  font-size: 14px;
  text-align: center;
}
.header__info-item:not(:first-child) {
  margin-bottom: 15px;
}

.contact-btn {
  background: var(--colorOrange);
  color: #fff;
  font-weight: bold;
  padding: 10px 35px 10px 70px;
  position: relative;
  text-align: center;
}
@media (max-width: 350px) {
  .contact-btn {
    font-size: 4vw;
    padding: 10px 15px 10px 50px;
  }
}
.contact-btn:hover .arrow {
  left: 12%;
}
@media (max-width: 350px) {
  .contact-btn:hover .arrow {
    left: 8%;
  }
}
.contact-btn .arrow {
  position: absolute;
  top: 35%;
  left: 10%;
  display: inline-block;
  width: 25px;
  height: 2px;
  margin-top: 9.9px;
  border-radius: 9999px;
  background-color: #ffffff;
  transition: 0.3s;
}
@media (max-width: 350px) {
  .contact-btn .arrow {
    left: 5%;
  }
}
.contact-btn .arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 16px;
  height: 2px;
  border-radius: 9999px;
  background-color: #ffffff;
  transform: rotate(45deg);
  transform-origin: calc(100% - 1px) 50%;
}

/*********************************************************
footer
*********************************************************/
.footer {
  position: relative;
}

.footer__pagetop-link,
.footer__contact {
  position: fixed;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.4s, transform 0.4s, visibility 0.4s;
  z-index: var(--zFooterBtn);
}
.footer__pagetop-link.is-visible,
.footer__contact.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.footer__pagetop-link.is-visible:hover,
.footer__contact.is-visible:hover {
  opacity: 0.8;
}
.footer__pagetop-link.is-stop,
.footer__contact.is-stop {
  position: absolute;
}

.footer__pagetop-link {
  right: 16px;
  bottom: 16px;
}
.footer__pagetop-link img {
  width: 100px;
}
@media (max-width: 480px) {
  .footer__pagetop-link {
    right: 0;
  }
  .footer__pagetop-link img {
    width: 50px;
  }
}

.footer__contact {
  left: 16px;
  bottom: 16px;
}
.footer__contact img {
  width: 150px;
}
@media (max-width: 768px) {
  .footer__contact {
    bottom: 0;
    left: 0;
    width: 100%;
  }
  .footer__contact img {
    width: 100%;
  }
}

.footer__copyright-text {
  border-top: 1px solid #a9a9a9;
  font-size: 12px;
  padding: 10px;
  text-align: center;
}

/*********************************************************
index.html
*********************************************************/
.loading {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease;
}

.loading.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.loading__image,
.loading__catch {
  position: absolute;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.loading.is-show-image .loading__image {
  opacity: 1;
  transform: translateY(0);
}

.loading.is-hide-image .loading__image {
  opacity: 0;
  transform: translateY(-10px);
}

.loading.is-show-catch .loading__catch {
  opacity: 1;
  transform: translateY(0);
}

.loading.is-hide-catch .loading__catch {
  opacity: 0;
  transform: translateY(-10px);
}

.loading__image {
  padding-left: 2%;
  padding-right: 2%;
}
.loading__image img {
  width: 500px;
}
@media (max-width: 768px) {
  .loading__image img {
    width: 300px;
  }
}

.loading__catch {
  color: #000;
  font-size: 24px;
  font-weight: bold;
  line-height: 3;
  text-align: center;
}
@media (max-width: 480px) {
  .loading__catch {
    font-size: 16px;
    font-size: 3vw;
  }
}

/* mv */
.mv {
  position: relative;
}

.mv__title {
  color: #fff;
  font-size: 14px;
  position: absolute;
  top: 3%;
  left: 6%;
}
@media (max-width: 980px) {
  .mv__title {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .mv__title {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .mv__title span {
    display: block;
    white-space: nowrap;
  }
}
@media (max-width: 600px) {
  .mv__title {
    top: 2%;
  }
}
@media (max-width: 480px) {
  .mv__title {
    top: 1.8%;
    font-size: 2.5vw;
  }
}

.mv__link {
  padding-bottom: 10%;
  position: absolute;
  bottom: 14%;
  left: 13%;
  width: 33%;
}
@media (max-width: 768px) {
  .mv__link {
    padding-bottom: 18%;
    bottom: 49%;
    left: 21%;
    width: 58%;
  }
}

/* problems */
.problems__bg {
  padding: 100px 0;
  position: relative;
}
.problems__bg::before {
  background-image: url(image.php?id=002);
  background-position: top 25% center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  filter: grayscale(90%);
  position: absolute;
  inset: 0;
  z-index: -1;
}

.problems__content {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1100px;
}
@media (max-width: 1100px) {
  .problems__content {
    padding-left: 2%;
    padding-right: 2%;
  }
}

.problems__title {
  text-align: center;
}

.problems__title-block {
  font-family: var(--fontMPlus);
}
@media (max-width: 600px) {
  .problems__title-block {
    display: block;
    text-align: left;
  }
  .problems__title-block:last-child {
    margin-top: 15px;
    text-align: right;
  }
}

.problems__title-char {
  background: #000;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  padding: 5px 8px;
}
@media (max-width: 400px) {
  .problems__title-char {
    font-size: 18px;
  }
}
.problems__title-char:not(:last-child) {
  margin-right: 5px;
}

.problems__textarea {
  background: rgba(255, 255, 255, 0.7);
  margin: 100px auto 0;
  max-width: 1000px;
  padding: 50px;
  text-align: center;
}
@media (max-width: 480px) {
  .problems__textarea {
    padding: 30px 15px;
  }
}

.problems__list {
  display: inline-block;
}

.problems__item {
  font-size: clamp(1rem, 1.696969697vw + 0.6022727273rem, 1.875rem);
  color: var(--colorDBlue);
  font-weight: bold;
  padding-left: 50px;
  padding-right: 70px;
  position: relative;
  text-align: left;
  text-shadow: 1px 0 1px #fff, 0 1px 1px #fff, -1px 0 1px #fff, 0 -1px 1px #fff;
}
@media (max-width: 768px) {
  .problems__item {
    padding-left: 40px;
  }
}
@media (max-width: 480px) {
  .problems__item {
    padding-right: 50px;
  }
}
.problems__item:not(:first-child) {
  margin-top: 50px;
}
.problems__item::before {
  background-image: url(image.php?id=019);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  position: absolute;
  top: 20%;
  left: 0;
  width: 30px;
  height: 30px;
}
@media (max-width: 768px) {
  .problems__item::before {
    top: 25%;
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 600px) {
  .problems__item::before {
    top: 20%;
  }
}
.problems__item::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  filter: grayscale(90%);
  position: absolute;
  top: -5px;
  right: 0;
  width: 50px;
  height: 50px;
}
.problems__item:first-child::after {
  background-image: url(image.php?id=023);
}
.problems__item:nth-child(2)::after {
  background-image: url(image.php?id=024);
}
.problems__item:nth-child(3)::after {
  background-image: url(image.php?id=025);
}
.problems__item:nth-child(4)::after {
  background-image: url(image.php?id=026);
}

.problems__solution {
  background: var(--gradient);
  padding-top: 50px;
  position: relative;
  text-align: center;
}
@media (max-width: 600px) {
  .problems__solution {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.problems__solution::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -59px;
  width: 100%;
  height: 60px;
  background: var(--gradient);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.problems__image {
  width: 500px;
}

.problems__text {
  font-size: clamp(1.875rem, 2.1818181818vw + 1.3636363636rem, 3rem);
  color: #fff;
}

.problems__highlight {
  color: var(--colorPink);
  font-size: 120%;
  font-weight: bold;
}

/* reasons */
.reasons {
  overflow: hidden;
  padding: 150px 0 100px;
}
@media (max-width: 480px) {
  .reasons {
    padding: 150px 0 15%;
  }
}

.reasons__inner {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1100px;
}
@media (max-width: 1100px) {
  .reasons__inner {
    padding-left: 2%;
    padding-right: 2%;
  }
}

.reasons__title {
  font-family: var(--fontMPlus);
  font-size: 48px;
  font-weight: bold;
  position: relative;
  text-align: center;
}
@media (max-width: 480px) {
  .reasons__title {
    font-size: 36px;
    line-height: 1.2;
  }
}
.reasons__title {
  z-index: 1;
}
.reasons__title::before {
  color: #ddd;
  content: "RECOMMEND";
  font-family: var(--fontMPlus);
  font-size: 80px;
  font-weight: bold;
  opacity: 0.5;
  position: absolute;
  top: -40px;
  left: 50%;
  translate: -50% 0;
  z-index: -1;
}
@media (max-width: 600px) {
  .reasons__title::before {
    font-size: 60px;
    font-size: 13vw;
  }
}

.reasons__dq {
  font-weight: 500;
}

.reasons__title-highlight {
  color: var(--colorPink);
  font-weight: bold;
}

.reasons__item {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  position: relative;
}
.reasons__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: var(--gradient2);
  clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
  rotate: -5deg;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media (max-width: 480px) {
  .reasons__item::before {
    clip-path: polygon(25% 0, 100% 0, 75% 100%, 0 100%);
  }
}
.reasons__item.-re {
  flex-direction: row-reverse;
}
.reasons__item.-re::before {
  background: transparent;
}
.reasons__item.-re .reasons__content {
  margin-right: 0;
}
.reasons__item.-re .reasons__image-wrapper {
  margin-right: 100px;
}
@media (max-width: 600px) {
  .reasons__item.-re .reasons__image-wrapper {
    margin-right: 50px;
  }
}
@media (max-width: 480px) {
  .reasons__item.-re .reasons__image-wrapper {
    margin-right: 5%;
  }
}

.reasons__content {
  margin-right: 100px;
}
@media (max-width: 600px) {
  .reasons__content {
    margin-right: 50px;
  }
}
@media (max-width: 480px) {
  .reasons__content {
    margin-right: 5%;
  }
}

.reasons__point {
  color: #666;
  font-family: var(--fontMPlus);
  font-size: 30px;
  font-weight: bold;
}
@media (max-width: 480px) {
  .reasons__point {
    font-size: 24px;
  }
}

.reasons__number {
  color: var(--colorDBlue);
  font-size: 60px;
}
@media (max-width: 480px) {
  .reasons__number {
    font-size: 46px;
  }
}

.reasons__term {
  color: var(--colorDBlue);
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 480px) {
  .reasons__term {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .reasons__description {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .reasons__image-wrapper {
    width: 30%;
  }
}

.reasons__image {
  width: 200px;
}

/* service */
.service {
  background-image: linear-gradient(rgba(210, 210, 210, 0.4) 1px, transparent 1px), linear-gradient(to right, rgba(210, 210, 210, 0.4) 1px, transparent 1px);
  background-size: 20px 20px;
  background-color: #fff;
  background-position: -14px 14px;
  padding: 100px 0;
}
@media (max-width: 480px) {
  .service {
    padding: 15% 0;
  }
}

.service__inner {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1100px;
}
@media (max-width: 1100px) {
  .service__inner {
    padding-left: 2%;
    padding-right: 2%;
  }
}

.service__title {
  text-align: center;
}

.service__image {
  margin-top: 50px;
}

.service__title-sub {
  position: relative;
  display: inline-block;
  font-family: var(--fontMPlus);
  font-size: 24px;
  padding: 0 24px;
}
@media (max-width: 480px) {
  .service__title-sub {
    font-size: 18px;
    font-size: 5vw;
  }
}
.service__title-sub::before, .service__title-sub::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 2px;
  height: 32px;
  background: #000;
  transform-origin: center;
}
@media (max-width: 480px) {
  .service__title-sub::before, .service__title-sub::after {
    height: 25px;
  }
}
.service__title-sub::before {
  left: 0;
  transform: translateY(-50%) rotate(-30deg);
}
.service__title-sub::after {
  right: 0;
  transform: translateY(-50%) rotate(30deg);
}

.service__title-title {
  background: var(--gradient);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  font-family: var(--fontMPlus);
  font-size: 48px;
  font-weight: bold;
}
@media (max-width: 600px) {
  .service__title-title {
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  .service__title-title {
    font-size: 24px;
    font-size: 7.1vw;
  }
}

.service__texts {
  margin: 50px auto 0;
  max-width: 600px;
  text-align: center;
}

.service__image2 {
  margin: 30px 0;
}

.service__text {
  background: var(--gradient);
  color: #fff;
  font-weight: bold;
  padding: 15px;
  text-align: center;
}
.service__text:not(:first-child) {
  margin-top: 7.5px;
}

.service__about {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1100px;
}
@media (max-width: 1100px) {
  .service__about {
    padding-left: 2%;
    padding-right: 2%;
  }
}
.service__about {
  margin-top: 50px;
}

.service__item {
  text-align: center;
}

.service__item-img {
  width: 200px;
}

.service__item-title {
  font-size: 20px;
  font-weight: bold;
  margin-top: 30px;
}

.service__item-text {
  font-size: 18px;
  margin-top: 10px;
  text-align: left;
}
@media (max-width: 768px) {
  .service__item-text {
    text-align: center;
  }
}

@media (min-width: 769px) {
  .service__about .swiper-container {
    overflow: visible;
  }
  .service__about .swiper-wrapper {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .service__about .swiper-slide {
    width: 30%;
  }
  .service__about .swiper-button-prev,
  .service__about .swiper-button-next,
  .service__about .swiper-pagination {
    display: none;
  }
}
/* flow */
.flow {
  padding: 100px 0;
}
@media (max-width: 480px) {
  .flow {
    overflow: hidden;
    padding: 15% 0;
  }
}

.flow__inner {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1100px;
}
@media (max-width: 1100px) {
  .flow__inner {
    padding-left: 2%;
    padding-right: 2%;
  }
}

.flow__balloon {
  position: relative;
  padding: 18px;
  background: var(--colorPink);
  color: #fff;
  border-radius: 50%;
  font-family: var(--fontMPlus);
  font-size: 14px;
  font-weight: bold;
  margin-inline: auto;
  text-align: center;
  width: 150px;
}
.flow__balloon::after {
  content: "";
  position: absolute;
  left: 30%;
  bottom: -8px;
  transform: translateX(-50%) rotate(25deg);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 15px solid var(--colorPink);
}

.flow__title {
  font-family: var(--fontMPlus);
  font-size: 48px;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 480px) {
  .flow__title {
    font-size: 10vw;
  }
}
.flow__title span {
  position: relative;
}
.flow__title span::before, .flow__title span::after {
  background: var(--gradient);
  content: "";
  position: absolute;
  top: 50%;
  width: 30px;
  height: 4px;
}
.flow__title span::before {
  left: -40px;
}
.flow__title span::after {
  right: -40px;
}

.flow__image {
  margin-top: 50px;
}

/* price */
.price {
  background-image: url(image.php?id=003);
  background-size: cover;
  padding: 100px 0;
}
@media (max-width: 480px) {
  .price {
    padding: 15% 0;
  }
}

.price__inner {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1100px;
}
@media (max-width: 1100px) {
  .price__inner {
    padding-left: 2%;
    padding-right: 2%;
  }
}

.price__header {
  padding: 10px;
  text-align: center;
}
.price__header .price__title {
  display: inline-block;
  padding: 30px 50px;
}
@media (max-width: 768px) {
  .price__header .price__title {
    padding: 20px 30px;
  }
}
@media (max-width: 480px) {
  .price__header .price__title {
    padding: 20px;
  }
}
@media (max-width: 375px) {
  .price__header .price__title {
    padding: 10px;
  }
}

.price__title {
  overflow: hidden;
  text-align: center;
}

.price__title-label {
  font-size: clamp(1.5rem, 1.4545454545vw + 1.1590909091rem, 2.25rem);
  font-family: var(--fontMPlus);
  font-weight: bold;
}

.price__title-amount {
  font-size: clamp(3.125rem, 6.0606060606vw + 1.7045454545rem, 6.25rem);
  background: var(--gradient);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  font-family: var(--fontMPlus);
  font-weight: bold;
  line-height: 1.2;
  white-space: nowrap;
}
@media (max-width: 350px) {
  .price__title-amount {
    font-size: 30px;
  }
}
.price__title-amount span {
  font-family: var(--fontMPlus);
  padding-left: 0.3em;
}
.price__title-amount em {
  background: #000;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.price__body {
  margin: 50px auto 0;
  max-width: 800px;
}
@media (max-width: 480px) {
  .price__body {
    margin-top: 30px;
    overflow: auto;
  }
}

.price__table {
  margin-inline: auto;
  width: 98%;
  max-width: 800px;
}
@media (max-width: 480px) {
  .price__table {
    width: 480px;
  }
}
.price__table tbody th,
.price__table tbody td {
  padding: 10px;
  vertical-align: middle;
}
@media (max-width: 480px) {
  .price__table tbody th,
  .price__table tbody td {
    padding: 6px;
  }
}
@media (max-width: 350px) {
  .price__table tbody th,
  .price__table tbody td {
    vertical-align: middle;
  }
}

.price__unit-title {
  font-size: clamp(1.125rem, 2.1818181818vw + 0.6136363636rem, 2.25rem);
  background: var(--colorDBlue);
  border-radius: 10px 10px 0 0;
  color: #fff;
  font-weight: bold;
  padding: 10px;
  text-align: center;
}

.price__term {
  font-size: clamp(0.875rem, 1.9393939394vw + 0.4204545455rem, 1.875rem);
  background: var(--colorDGreen);
  border-bottom: 2px solid #d3d3d3;
  border-radius: 10px 0 0 0;
  color: #fff;
  white-space: nowrap;
}

.price__description {
  font-size: clamp(1.25rem, 1.9393939394vw + 0.7954545455rem, 2.25rem);
  background: #fff;
  border-color: #d3d3d3;
  border-style: solid;
  border-width: 0 2px 2px 0;
  color: var(--colorDGreen);
  font-weight: bold;
  height: 103px;
  text-align: center;
}
@media (max-width: 600px) {
  .price__description {
    height: 60.8px;
  }
}
.price__description strong {
  font-family: var(--fontMPlus);
  font-size: 150%;
}

.price__custom {
  font-size: 80%;
}

.price__arrow {
  font-size: 14px;
}
@media (min-width: 480px) {
  .price__arrow {
    display: none;
  }
}

/* contact-cta */
.contact-cta {
  background-image: linear-gradient(to right, rgb(255, 255, 255) 0%, rgba(244, 255, 255, 0.9) 40%, rgba(255, 255, 255, 0) 46%), url(image.php?id=004);
  background-repeat: no-repeat, no-repeat;
  background-position: left top, top right;
  background-size: 100% 100%, 70%;
  padding: 200px 0;
}
@media (max-width: 1400px) {
  .contact-cta {
    background-position: left top, top right -150px;
    background-size: 100% 100%, cover;
    padding: 15% 0;
  }
}

.contact-cta__inner {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1100px;
}
@media (max-width: 1100px) {
  .contact-cta__inner {
    padding-left: 2%;
    padding-right: 2%;
  }
}

@media (min-width: 481px) {
  .contact-cta__content {
    max-width: 470px;
  }
}

.contact-cta__title {
  color: var(--colorDBlue);
  font-family: var(--fontMPlus);
  font-size: 36px;
  font-weight: bold;
  line-height: 1.2;
}
@media (max-width: 480px) {
  .contact-cta__title {
    font-size: 24px;
  }
}

.contact-cta__text {
  font-size: 18px;
  margin: 30px 0 0;
}
@media (max-width: 480px) {
  .contact-cta__text {
    font-size: 16px;
  }
}

.contact-cta__button {
  margin-top: 30px;
}

/*********************************************************
下層ページ
*********************************************************/
.lowheader {
  background: var(--gradient);
  overflow: hidden;
  padding: 7% 0;
  position: relative;
}
@media (max-width: 768px) {
  .lowheader {
    padding-bottom: 150px;
  }
}

.lowheader__inner {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1100px;
}
@media (max-width: 1100px) {
  .lowheader__inner {
    padding-left: 2%;
    padding-right: 2%;
  }
}

.lowheader__ttl {
  color: #fff;
  font-family: var(--fontMPlus);
  font-size: 46px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .lowheader__ttl {
    text-align: center;
  }
}
@media (max-width: 480px) {
  .lowheader__ttl {
    font-size: 36px;
  }
}

.breadcrumbs {
  display: flex;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .breadcrumbs {
    justify-content: center;
  }
}

.breadcrumbs__item {
  color: #fff;
  position: relative;
}
@media (max-width: 768px) {
  .breadcrumbs__item {
    text-align: center;
  }
}
.breadcrumbs__item:not(:first-child) {
  margin-left: 50px;
}
.breadcrumbs__item:not(:first-child)::before {
  background: #fff;
  content: "";
  position: absolute;
  top: 50%;
  left: -35px;
  rotate: 50deg;
  width: 20px;
  height: 2px;
}
.breadcrumbs__item a {
  color: var(--colorOrange);
  font-weight: bold;
  text-decoration: underline;
}
.breadcrumbs__item a:hover {
  text-decoration: none;
}

.lowheader__en {
  position: absolute;
  display: flex;
  opacity: 0.8;
  font-weight: 700;
  color: #fff;
}

@media (min-width: 1025px) {
  .lowheader__en span {
    font-size: 360px;
    white-space: nowrap;
  }
}
@media (769px <= width <= 1025px) {
  .lowheader__en span {
    font-size: 240px;
    white-space: nowrap;
  }
}
@media (min-width: 769px) {
  .lowheader__en {
    top: 0;
    right: 0;
    writing-mode: vertical-rl;
    animation: flow-vertical 10s linear infinite;
  }
}
@media (max-width: 768px) {
  .lowheader__en {
    bottom: 0;
    left: 0;
    transform: translateY(-50%);
    animation: flow-horizontal 14s linear infinite;
  }
  .lowheader__en span {
    font-size: 150px;
    white-space: nowrap;
    line-height: 1;
    padding-right: 2rem;
  }
}
@keyframes flow-vertical {
  0% {
    transform: translate(0, -100%);
  }
  100% {
    transform: translate(0, 20%);
  }
}
@keyframes flow-horizontal {
  0% {
    transform: translate(30%);
  }
  100% {
    transform: translate(-100%);
  }
}
/*********************************************************
company.html
*********************************************************/
.company-info {
  padding: 100px 0;
  text-align: center;
}
@media (max-width: 480px) {
  .company-info {
    padding: 15% 0;
  }
}

.company-info__title {
  font-weight: bold;
}
.company-info__title:not(:first-child) {
  margin-top: 30px;
}

.company-info__desc {
  margin-top: 10px;
}

.company-map {
  padding-bottom: 30%;
  position: relative;
}
@media (max-width: 768px) {
  .company-map {
    padding-bottom: 50%;
  }
}
.company-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}