@charset "UTF-8";
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-size: 16px;
}

* {
  font-family: "Noto Sans JP", sans-serif;
  color: #202F35;
  letter-spacing: 0;
}

.pc-show {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-show {
    display: block;
  }
}

.pc-none {
  display: block;
}
@media screen and (min-width: 768px) {
  .pc-none {
    display: none;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif, serif;
  overflow-y: scroll;
}

body.is-fixed {
  position: fixed;
  left: 0;
  width: 100%;
}

a[href^="tel:"] {
  pointer-events: auto;
}
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
  cursor: pointer;
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

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

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.button {
  display: inline-block;
  padding: 0.75rem 0;
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 400;
  text-align: center;
  width: 100%;
  max-width: 21.4375rem;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .button {
    font-size: 1.125rem;
  }
}

.button--white {
  border: 1px solid #007fd8;
  background: #fff;
}

a.button--white {
  position: relative;
}

.button--white a::after {
  content: "";
  display: inline-block;
  background-image: url(../images/arrow-blue.png);
  background-size: cover;
  position: absolute;
  width: 1rem;
  height: 1rem;
  top: 51%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-left: 5px;
}

.button--blue {
  border: 1px solid #007fd8;
  background: linear-gradient(271deg, #007FD8 0.73%, #005B9C 100%);
  color: #fff;
}

.button--blue::after {
  content: "";
  display: inline-block;
  background-image: url(../images/arrow-white.png);
  background-size: cover;
  position: absolute;
  width: 1rem;
  height: 1rem;
  top: 51%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-left: 5px;
}

.button-mail span::after,
.button-tel span::after,
.button-mobile span::after {
  content: "";
  display: inline-block;
  background-image: url(../images/arrow-white.png);
  background-size: cover;
  position: absolute;
  width: 1rem;
  height: 1rem;
  top: 51%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-left: 5px;
}

.button-mail span,
.button-tel span,
.button-mobile span {
  color: #fff;
  position: relative;
}

.button-mail span::before {
  content: "";
  display: inline-block;
  background-image: url(../images/icon_mail.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 1.375rem;
  height: 1.125rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -26px;
}

.button-tel span::before {
  content: "";
  display: inline-block;
  background-image: url(../images/icon_phone.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 1.375rem;
  height: 1.125rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -26px;
}

.button-mobile span::before {
  content: "";
  display: inline-block;
  background-image: url(../images/icon_mobile.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 1.375rem;
  height: 1.125rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -26px;
}

.footer {
  background: #005b9c;
  padding: 1.0625rem 1rem;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 5rem 0;
  }
}

.footer__company {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__company {
    font-size: 2rem;
  }
}

.footer__privacy-policy {
  margin-top: 0.75rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__privacy-policy {
    margin-top: 2.5rem;
  }
}

.footer__privacy-policy a {
  color: #fff;
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .footer__privacy-policy a {
    font-size: 1rem;
  }
}

.footer__copyright {
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    margin-top: 2.5rem;
  }
}

.footer__copyright p {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__copyright p {
    font-size: 0.875rem;
  }
}

.header {
  width: 100%;
  height: 52px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .header {
    height: 99px;
  }
}

.headerColorScroll {
  background-color: rgba(0, 67, 126, 0.6);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.header__inner {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 12px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .header__inner {
    max-width: 1032px;
    width: 100%;
    height: 100%;
  }
}

.header__logo {
  margin-left: 1.125rem;
  z-index: 9999;
}
@media screen and (min-width: 768px) {
  .header__logo {
    margin-left: 0.4375rem;
  }
}

.header__logo a {
  display: block;
  color: #fff;
  font-size: clamp(1.125rem, 0.625rem + 2.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .header__logo a {
    margin-left: 0.4375rem;
  }
}

.header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: inherit;
    margin-left: auto;
  }
}

.header__nav a {
  color: #fff;
}

.header__items {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__item:not(:last-of-type) {
  padding-right: 2.125rem;
}

.hamburger {
  position: fixed;
  z-index: 9999;
  top: 17px;
  right: 11px;
  width: 25px;
  height: 16px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

.hamburger.is-active {
  right: 17px;
}

.hamburger span {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 1px;
  background: #fff;
  -webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
}

.hamburger span:first-child {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 8px;
}

.hamburger span:nth-child(3) {
  top: 16px;
}

.hamburger.is-active span:first-child {
  top: 15px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background: #fff;
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  top: 15px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: #fff;
}

.drawer-menu {
  background: rgba(0, 67, 126, 0.8);
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
}

.drawer-menu__inner {
  margin-inline: auto;
  width: 78.67%;
}

.drawer-menu__items {
  padding-top: 4.75rem;
  padding-bottom: 1.5rem;
  width: 100%;
}

.drawer-menu__item {
  border-bottom: 1px solid #fff;
  padding: 16px 0;
  text-align: center;
}

.drawer-menu__item a {
  color: #fff;
}

.inner {
  width: 100%;
  padding-right: 16px;
  padding-left: 16px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    padding-right: 25px;
    padding-left: 25px;
    max-width: 1000px;
  }
}

.section-title {
  text-align: center;
  position: relative;
}

.section-title img {
  display: inline-block;
}

.section-subtitle {
  color: #007fd8;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  margin-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .section-subtitle {
    font-size: 1rem;
    margin-top: 0.5625rem;
  }
}

.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fadeUpTrigger {
  opacity: 0;
  -webkit-transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, -webkit-transform 0.6s ease-out;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}

.fadeIn {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.modal {
  display: none;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}

.modal__overlay {
  background: rgba(0, 0, 0, 0.8);
  height: 100vh;
  position: absolute;
  width: 100%;
}

.modal__content {
  background: #eee;
  left: 50%;
  padding: 30px;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 90%;
  height: 60%;
  position: relative;
  overflow-y: scroll;
}
@media screen and (min-width: 768px) {
  .modal__content {
    max-width: 800px;
  }
}

.modal__button {
  display: block;
  color: #202F35;
  cursor: pointer;
  font-size: 25px;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  position: fixed;
  top: 0;
  right: 10px;
}

.modal__content img {
  max-width: 200px;
  width: 100%;
}

.modal__content p {
  background-color: #eee;
  display: inline-block;
  font-size: 1rem;
  margin-top: 1.25rem;
}

.modal__content a {
  color: #000;
  padding: 5px 10px;
  text-align: right;
}

.fixed {
  height: 100%;
  position: fixed;
  width: 100%;
}

.mv {
  background-image: url(/images/bg_fv_SP.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-bottom: 7rem;
}
@media screen and (min-width: 768px) {
  .mv {
    background-image: url(/images/bg_fv_PC.jpg);
    padding-bottom: 0;
  }
}

.mv__sub-title {
  padding-top: 60px;
}
@media screen and (min-width: 768px) {
  .mv__sub-title {
    padding-top: 99px;
  }
}

.sub-title__wrap {
  background-color: #00437e;
  padding: 16px 17px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .sub-title__wrap {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

.sub-title__tag {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
  min-width: 80px;
}
@media screen and (min-width: 768px) {
  .sub-title__tag {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.4375rem;
  }
}

.sub-title__tag span {
  border: 1px solid #fff;
  border-radius: 50px;
  color: #fff;
  font-size: clamp(0.75rem, 0.6590909091rem + 0.4545454545vw, 1rem);
  height: 21.722px;
  padding: 0 0.5625rem;
  display: grid;
  place-items: center;
}
@media screen and (min-width: 768px) {
  .sub-title__tag span {
    height: 32px;
    padding: 0.125rem 1.25rem;
  }
}

.sub-title__text {
  color: #FFF500;
  font-size: 1rem;
  font-weight: 500;
  margin-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .sub-title__text {
    margin-top: 1rem;
    font-size: 1.5rem;
  }
}

.mv__title-wrap {
  margin-top: 2.375rem;
}
@media screen and (min-width: 768px) {
  .mv__title-wrap {
    margin-top: 5.1875rem;
  }
}

.mv__title {
  color: #fff;
  font-size: clamp(1.875rem, 1.1022727273rem + 3.8636363636vw, 4rem);
  font-weight: 700;
  margin-top: 1.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .mv__title {
    margin-top: 2.625rem;
  }
}

.mv__title-head {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .mv__title-head {
    font-size: 1.5rem;
  }
}

.mv__title-description {
  background-color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  font-weight: 500;
  padding: 16px 0;
  margin-top: 2.5rem;
  margin-inline: auto;
  max-width: 343px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .mv__title-description {
    font-size: 1.5rem;
    padding: 25px 0;
    max-width: 914px;
  }
}

.scroll-down {
  color: #fff;
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
  margin-top: 4rem;
  position: relative;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .scroll-down {
    margin-top: 11.25rem;
    padding-bottom: 7.3125rem;
  }
}

.scroll-down::after {
  content: "";
  position: absolute;
  top: 26px;
  left: 50%;
  width: 1px;
  height: 64px;
  background: #fff;
  -webkit-animation: scroll-down 2s infinite;
          animation: scroll-down 2s infinite;
}

@-webkit-keyframes scroll-down {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50.1% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}

@keyframes scroll-down {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50.1% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}
.about-us {
  background-image: url(/images/bg_note.png);
  padding-top: 76px;
}
@media screen and (min-width: 768px) {
  .about-us {
    padding-top: 8.75rem;
  }
}

.about-us__title img {
  width: 7.1875rem;
}
@media screen and (min-width: 768px) {
  .about-us__title img {
    width: 12.5rem;
  }
}

.about-us__title::after {
  content: "";
  display: inline-block;
  background-color: #005b9c;
  width: 7.1875rem;
  height: 2px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .about-us__title::after {
    width: 12.5rem;
  }
}

.about-us__lead {
  font-size: 1.125rem;
  font-weight: 700;
  margin-top: 2.5rem;
  text-align: center;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .about-us__lead {
    font-size: 2rem;
    margin-top: 5rem;
  }
}

.about-us__boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 2.5rem;
  margin-inline: auto;
  width: 92.42%;
}
@media screen and (min-width: 768px) {
  .about-us__boxes {
    gap: 1.5rem;
    margin-top: 5rem;
    margin-bottom: 5rem;
    padding: 0 1.5625rem;
  }
}

.about-us__box {
  background-repeat: no-repeat;
  background-size: cover;
  display: grid;
  place-items: center;
  min-width: 87px;
}
@media screen and (min-width: 768px) {
  .about-us__box {
    max-width: 280px;
  }
}

.box-01 {
  background-image: url(/images/About\ us_box01.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.box-02 {
  background-image: url(/images/About\ us_box02.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.box-03 {
  background-image: url(/images/About\ us_box03.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.box__content {
  border: 1px solid #fff;
  width: 90%;
  height: 90%;
  display: grid;
  place-items: center;
}

.box__white-text {
  color: #fff;
  font-size: clamp(0.75rem, 0.5681818182rem + 0.9090909091vw, 1.25rem);
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
}
.box__white-text.box__white-text--small {
  color: #fff;
  font-size: clamp(0.625rem, 0.3977272727rem + 1.1363636364vw, 1.25rem);
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
}

.box__yellow-text {
  color: #FFF500;
  font-size: clamp(0.75rem, 0.2954545455rem + 2.2727272727vw, 2rem);
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  margin-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .box__yellow-text {
    margin-top: 1rem;
  }
}

.about-us__cta {
  background-image: url(/images/About\ us_img_SP.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 1.5rem;
  padding: 2.5rem 0 4rem;
}
@media screen and (min-width: 768px) {
  .about-us__cta {
    background-image: url(/images/About\ us_img_PC.jpg);
    margin-top: 0;
    padding: 5rem 0;
  }
}

.cta__white-text {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .cta__white-text {
    font-size: 1rem;
  }
}

.cta__white-text:not(:first-of-type) {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .cta__white-text:not(:first-of-type) {
    margin-top: 1.5625rem;
  }
}

.cta__yellow-text {
  color: #FFF500;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .cta__yellow-text {
    font-size: 1.5rem;
    margin-top: 1.5625rem;
  }
}

.cta__button {
  margin-top: 1.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .cta__button {
    margin-top: 5rem;
  }
}

.cta__button a {
  color: #00437e;
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 700;
  position: relative;
  padding-right: 1.375rem;
}

.cta__button a::after {
  content: "";
  display: inline-block;
  background-image: url(/images/arrow-blue.png);
  background-size: cover;
  position: absolute;
  width: 1rem;
  height: 1rem;
  top: 51%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-left: 5px;
}

.value {
  padding: 4.5625rem 0;
}
@media screen and (min-width: 768px) {
  .value {
    padding: 8.75rem 0 7.5rem;
  }
}

.value__title img {
  width: 4.4375rem;
}
@media screen and (min-width: 768px) {
  .value__title img {
    width: 7.625rem;
  }
}

.value__title::after {
  content: "";
  display: inline-block;
  background-color: #005b9c;
  width: 4.4375rem;
  height: 2px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .value__title::after {
    width: 7.625rem;
  }
}

.value__points {
  background: #F2F9FF;
  padding: 1.375rem 1.125rem;
  margin-top: 2.5rem;
  margin-inline: auto;
  max-width: 343px;
  width: 92.13%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .value__points {
    padding: 2.5rem 0 2.5rem 2.5rem;
    margin-top: 4.0625rem;
    max-width: 809px;
    width: 84.9%;
  }
}

.value__point,
.value__point span {
  color: #00437e;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .value__point,
  .value__point span {
    font-size: 1.5rem;
  }
}

.value__point::before {
  content: "";
  display: inline-block;
  background-image: url(/images/value_check-fat.png);
  background-size: contain;
  width: 1.125rem;
  height: 1.125rem;
}
@media screen and (min-width: 768px) {
  .value__point::before {
    width: 1.625rem;
    height: 1.625rem;
  }
}

.value__point:not(:first-of-type) {
  margin-top: 0.375rem;
}
@media screen and (min-width: 768px) {
  .value__point:not(:first-of-type) {
    margin-top: 0.9375rem;
  }
}

.point-indent {
  display: inline-block;
  margin-left: 1.125rem;
}
@media screen and (min-width: 768px) {
  .point-indent {
    margin-left: 0;
  }
}

.value__message {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 1.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .value__message {
    font-size: 1.5rem;
    margin-top: 4.375rem;
  }
}

.underline-before {
  background: -webkit-gradient(linear, left top, left bottom, from(#FFF500), to(#FFF500)) 0 100%/0 30px no-repeat;
  background: linear-gradient(#FFF500, #FFF500) 0 100%/0 30px no-repeat;
  /*左から、カラー（始点と終点それぞれ同じものを指定）、position / サイズ横縦 繰り返しの有無 */
  -webkit-transition: background 1s;
  transition: background 1s;
  /*トランジションの設定。下線を引く動きをアニメーションにするのに必要 */
  text-decoration: none;
  /*テキストの装飾の設定 */
}

.underline-after {
  background-size: 100% 8px;
  /* 変化後のスタイル。横サイズを0から100%に変えることで指定の文字列に下線を引く */
}

.value__button {
  margin-top: 1.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .value__button {
    margin-top: 5rem;
  }
}

.value__button a {
  padding-right: 1.375rem;
}

.value__button a::after {
  content: "";
  display: inline-block;
  background-image: url(/images/arrow-white.png);
  background-size: cover;
  position: absolute;
  width: 1rem;
  height: 1rem;
  top: 51%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.service {
  background-color: #F2F9FF;
  padding-top: 4rem;
}
@media screen and (min-width: 768px) {
  .service {
    padding-top: 8.75rem;
  }
}

.service__title img {
  width: 6.0625rem;
}
@media screen and (min-width: 768px) {
  .service__title img {
    width: 10.6875rem;
  }
}

.service__title::after {
  content: "";
  display: inline-block;
  background-color: #005b9c;
  width: 6.0625rem;
  height: 2px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .service__title::after {
    width: 10.6875rem;
  }
}

.service__description-wrap {
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .service__description-wrap {
    margin-top: 5rem;
  }
}

.service__description {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .service__description {
    font-size: 1.5rem;
  }
}

.service__note {
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .service__note {
    font-size: 1.125rem;
  }
}

.service__highlight {
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 1.25rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .service__highlight {
    font-size: 1.125rem;
    margin-top: 3.25rem;
  }
}

.service__highlight::before {
  content: "";
  background: url(/images/service-highlightPolygon.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .service__highlight::before {
    width: 620px;
    height: 120px;
    position: absolute;
    top: -35px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.service__call-to-action {
  color: #005b9c;
  font-size: 1.125rem;
  font-weight: 700;
  margin-top: 2.875rem;
}
@media screen and (min-width: 768px) {
  .service__call-to-action {
    font-size: 2rem;
  }
}

.service__details {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .service__details {
    font-size: 1.125rem;
    margin-top: 5rem;
  }
}

.details-01 {
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .details-01 {
    margin-top: 5rem;
  }
}

.details-02 {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .details-02 {
    margin-top: 2.5rem;
  }
}

.service-overview {
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .service-overview {
    margin-top: 5rem;
  }
}

.service-overview-title {
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .service-overview-title {
    font-size: 2rem;
  }
}

.service__items {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .service__items {
    margin-top: 3.75rem;
  }
}

.service__text {
  background: linear-gradient(271deg, #007FD8 0.73%, #005B9C 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 8px 0 24px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .service__text {
    font-size: 1.5rem;
    padding: 1.375rem 0;
  }
}

.service__text.bg-navy {
  background: #005b9c;
}

.consultation {
  background: #F2F9FF;
  padding-top: 2.5rem;
  padding-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .consultation {
    padding-top: 5rem;
    padding-bottom: 7.5rem;
  }
}

.consultation__title {
  color: #005b9c;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .consultation__title {
    font-size: 1.5rem;
  }
}

.consultation__image-area {
  aspect-ratio: 375/302;
  background-image: url(/images/consultation.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 2.5rem;
  display: grid;
  place-items: center;
}
@media screen and (min-width: 768px) {
  .consultation__image-area {
    aspect-ratio: 1440/517;
    background-image: url(/images/consultation_PC.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 5rem;
  }
}

.consultation__layoutbox {
  max-width: 375px;
  width: 100%;
  height: inherit;
  aspect-ratio: 375/302;
  margin-inline: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .consultation__layoutbox {
    min-width: 768px;
    height: 500px;
  }
}

.bubble__text {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .bubble__text {
    font-size: 1.125rem;
  }
}

.bubble-01 {
  background-image: url(/images/bubble_01.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 16rem;
  height: 3.625rem;
  position: absolute;
  top: 17px;
  left: 15.5px;
}
@media screen and (min-width: 768px) {
  .bubble-01 {
    width: 392px;
    height: 69.5px;
    left: 22.5px;
  }
}

.bubble-02 {
  background-image: url(/images/bubble_02.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 143px;
  height: 82px;
  position: absolute;
  top: 74px;
  left: 105px;
}
@media screen and (min-width: 768px) {
  .bubble-02 {
    width: 220.8px;
    height: 126.6px;
    top: 108px;
    left: 162px;
  }
}

.bubble-03 {
  background-image: url(/images/bubble_03.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 207px;
  height: 58px;
  position: absolute;
  top: 171px;
  left: 17px;
}
@media screen and (min-width: 768px) {
  .bubble-03 {
    width: 319.7px;
    height: 86.4px;
    top: 246px;
    left: 7px;
  }
}

.bubble-04 {
  background-image: url(/images/bubble_04.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 256px;
  height: 58px;
  position: absolute;
  top: 240px;
  left: 48px;
}
@media screen and (min-width: 768px) {
  .bubble-04 {
    width: 392px;
    height: 69.5px;
    top: 356px;
    left: 60px;
  }
}

.hide {
  opacity: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}

.hide2 {
  opacity: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

.hide3 {
  opacity: 0;
  -webkit-transition: opacity 0.9s;
  transition: opacity 0.9s;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.hide4 {
  opacity: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}

.text-01 {
  padding-top: 10px;
}
@media screen and (min-width: 768px) {
  .text-01 {
    padding-top: 16px;
  }
}

.text-02 {
  padding-top: 12px;
  padding-right: 12px;
}
@media screen and (min-width: 768px) {
  .text-02 {
    padding-top: 20px;
    padding-right: 26px;
  }
}

.text-03 {
  padding-top: 14px;
}
@media screen and (min-width: 768px) {
  .text-03 {
    padding-top: 25px;
  }
}

.text-04 {
  padding-top: 17px;
}
@media screen and (min-width: 768px) {
  .text-04 {
    padding-top: 24px;
  }
}

.consultation__overviewPolygon {
  text-align: center;
}

.consultation__overviewPolygon img {
  display: inline-block;
  max-width: 358px;
  width: 100%;
}

.consultation__closing {
  color: #005b9c;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 0.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .consultation__closing {
    font-size: 2rem;
    margin-top: 6.375rem;
  }
}

.consultation__button {
  padding: 0 16px;
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .consultation__button {
    margin-top: 5rem;
  }
}

.consultation__button a {
  padding-right: 1.375rem;
}

.consultation__button a::after {
  content: "";
  display: inline-block;
  background-image: url(/images/arrow-white.png);
  background-size: cover;
  position: absolute;
  width: 1rem;
  height: 1rem;
  top: 51%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.contact {
  padding: 4.8125rem 0 3.75rem;
}
@media screen and (min-width: 768px) {
  .contact {
    padding-top: 8.75rem;
  }
}

.contact__title::after {
  content: "";
  display: inline-block;
  background-color: #005b9c;
  width: 6.25rem;
  height: 2px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .contact__title::after {
    width: 11.4375rem;
  }
}

.contact__title img {
  width: 6.25rem;
}
@media screen and (min-width: 768px) {
  .contact__title img {
    width: 11.4375rem;
  }
}

.contact__description-wrap {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .contact__description-wrap {
    margin-top: 5rem;
  }
}

.contact__description {
  font-size: 0.875rem;
  margin-top: 1.25rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__description {
    font-size: 1.125rem;
  }
}

.contact__button-wrap {
  margin-top: 2.6875rem;
}
@media screen and (min-width: 768px) {
  .contact__button-wrap {
    margin-top: 6.25rem;
  }
}

.contact__button {
  text-align: center;
}
.contact__button:first-of-type {
  margin-top: 2.5rem;
}
.contact__button:not(:first-of-type) {
  margin-top: 1rem;
}

.contact__button a span {
  display: inline-block;
  letter-spacing: 0.02rem;
  text-align: center;
}

.contact__check-items {
  border: 1px solid #202F35;
  padding: 1.375rem 0.8125rem;
  margin-top: 2.5rem;
  margin-inline: auto;
  max-width: 688px;
}
@media screen and (min-width: 768px) {
  .contact__check-items {
    padding: 2.5rem 2.625rem 2.5rem 2.875rem;
    margin-top: 5rem;
    max-width: 688px;
  }
}

.check-items__title {
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .check-items__title {
    font-size: 1.5rem;
  }
}

.check-items__description {
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 0.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .check-items__description {
    font-size: 1.125rem;
  }
}

@media screen and (min-width: 768px) {
  .check-items__wrap {
    margin-top: 2.5rem;
  }
}

.check-items__table {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .check-items__table {
    max-width: 600px;
  }
}

.check-items__table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: left;
}

.check-items__label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .check-items__label {
    font-size: 1.125rem;
  }
}

.check-items__table td {
  width: 100%;
}

.check-items__input {
  background: #E6E6E6;
  padding: 3px 3px;
  overflow-x: auto;
  width: 100%;
}

.company {
  background: #F2F9FF;
  padding: 4.4375rem 0;
}
@media screen and (min-width: 768px) {
  .company {
    padding-top: 8.75rem;
  }
}

.company__title img {
  width: 7.5rem;
}
@media screen and (min-width: 768px) {
  .company__title img {
    width: 11.3125rem;
  }
}

.company__title::after {
  content: "";
  display: inline-block;
  background-color: #005b9c;
  width: 7.5rem;
  height: 2px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .company__title::after {
    width: 11.3125rem;
  }
}

.company__overview-table {
  border-collapse: collapse;
  margin-top: 2.5rem;
  margin-inline: auto;
  max-width: 600px;
  width: 90.67%;
}
@media screen and (min-width: 768px) {
  .company__overview-table {
    margin-top: 5rem;
    max-width: 649px;
  }
}

.company__overview-table tr {
  border-bottom: 1px solid #dddddd;
  display: block;
}
@media screen and (min-width: 768px) {
  .company__overview-table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.company__overview-table tr:first-of-type {
  border-top: 1px solid #dddddd;
}

.company__overview-table th {
  font-size: 1rem;
  font-weight: 700;
  display: block;
  padding-top: 0.9375rem;
  padding-bottom: 0.5625rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .company__overview-table th {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    padding-left: 3.7%;
    text-indent: initial;
    width: 44.27%;
  }
}

.company__overview-table td {
  font-size: 0.875rem;
  font-weight: 500;
  display: block;
  padding-bottom: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .company__overview-table td {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    text-indent: initial;
    width: 55.73%;
  }
}
.company__overview-table td:last-of-type {
  border-bottom: 1px solid #dddddd;
}

.company__overview-table td span {
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .company__service-wrap {
    display: block;
  }
}