@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

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

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

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

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

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}
@media (max-width: 1000px) {
  html {
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #000;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}

.c-btn {
  background-color: #007bff;
  border: none;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  padding: 0.625rem 1.25rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s;
}

.c-btn:hover {
  background-color: #0056b3;
}

.inner {
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: 0 25px;
}
@media screen and (max-width: 767px) {
  .inner {
    max-width: 640px;
    padding: 0 20px;
  }
}

.inner900 {
  max-width: 56.25rem;
  margin-left: auto;
  margin-right: auto;
}

.inner1100 {
  max-width: 68.75rem;
  margin-left: auto;
  margin-right: auto;
}

.c-title {
  font-size: 1.5rem;
  color: green;
}
@media screen and (max-width: 1199px) {
  .c-title {
    color: blue;
  }
}
@media screen and (max-width: 999px) {
  .c-title {
    color: red;
  }
}
@media screen and (max-width: 767px) {
  .c-title {
    color: black;
  }
}

.no-js .loading {
  display: none;
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(62deg, #2f9fd1 10.34%, #2eaa6f 100.35%);
  background-color: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loading.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.loading__inner {
  text-align: center;
}
.loading__logo {
  width: 12.5rem;
  height: auto;
  opacity: 0;
  transform: scale(0.8);
  animation: logoFadeIn 1s ease forwards;
}

@keyframes logoFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.about {
  background-color: #007cc1;
  color: #fff;
  padding: 7.1875rem 0;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .about {
    padding: 3.75rem 0 0rem;
  }
}

.about__title {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 3.75rem;
  letter-spacing: 0.32em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .about__title {
    font-size: 1.75rem;
    letter-spacing: 0.34em;
    margin-bottom: 0.125rem;
  }
}
.about__title span {
  position: relative;
  z-index: 2;
}

.about__title img {
  margin-left: auto;
  margin-right: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .about__title img {
    max-width: 8.25rem;
  }
}

.about__subtitle {
  font-size: 2.375rem;
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .about__subtitle {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 1.5rem;
    font-size: 1.625rem;
    letter-spacing: 0.18em;
    border-bottom: 1px solid #fff;
    line-height: 1.1;
  }
}

.about__content {
  max-width: 50rem;
  margin: 0 auto 4rem;
}
@media screen and (max-width: 767px) {
  .about__content {
    margin: 0 auto 3.75rem;
  }
}

.about__text {
  font-size: 1.5rem;
  line-height: 1.8;
  margin-bottom: 1.75rem;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .about__text {
    font-size: 1rem;
    letter-spacing: normal;
    line-height: 1.7;
    margin-bottom: 0.875rem;
  }
}

.about__subtext {
  font-size: 1rem;
  line-height: 2.2;
  margin-bottom: 5rem;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .about__subtext {
    font-size: 0.875rem;
    line-height: 2;
    margin-bottom: 0rem;
  }
}

.about__image {
  max-width: 45.25rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .about__image {
    width: min(74vw, 400px);
    margin-bottom: 1.375rem;
  }
}
.about__image img {
  width: 100%;
  height: auto;
}

.contact {
  padding: 7.25rem 0 4.875rem;
  position: relative;
  background: linear-gradient(62deg, #2f9fd1 10.34%, #2eaa6f 100.35%);
}
@media screen and (max-width: 767px) {
  .contact {
    padding: 6.5625rem 0 1.375rem;
  }
}

.contact__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.contact__title {
  font-size: 2.875rem;
  font-weight: 300;
  margin-bottom: 3.5rem;
  letter-spacing: 0.34em;
  text-align: center;
  position: relative;
  margin-left: 0.75rem;
}
@media screen and (max-width: 767px) {
  .contact__title {
    margin-left: 0;
    font-size: 1.75rem;
    margin-bottom: 0.625rem;
  }
}

.contact__title span {
  position: relative;
  z-index: 2;
  color: #fff;
}

.contact__title img {
  margin-left: auto;
  margin-right: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .contact__title img {
    max-width: 11.25rem;
  }
}

.contact__content {
  max-width: 50rem;
  margin: 0 auto;
}

.contact__text {
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 2.25rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .contact__text {
    font-size: 0.875rem;
    line-height: 1.9;
    margin-bottom: 1.875rem;
  }
}

.contact__buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .contact__buttons {
    margin-bottom: 3rem;
  }
}

.contact__button {
  transition: opacity 0.3s;
}
.contact__button:hover {
  opacity: 0.8;
}

.contact__note {
  font-size: 0.875rem;
  line-height: 2;
  color: #666;
}

.floating-button {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 100;
  width: 11.0625rem;
}
@media screen and (max-width: 767px) {
  .floating-button {
    display: none;
  }
}

.floating-button__link {
  position: relative;
}

.floating-button__image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.floating-button__textbox {
  margin-top: 0.25rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}

.floating-button__text {
  display: block;
  font-size: 1.125rem;
  letter-spacing: 0.18em;
}

.footer {
  background: #fff;
  padding: 1rem 0;
  text-align: center;
}

.footer__copyright {
  font-size: 1.125rem;
  color: #0071bb;
  letter-spacing: 0.01em;
}

.no-js .fv {
  opacity: 1;
  transition: none;
}
.no-js .fv .fv__title {
  opacity: 1;
  transform: none;
  animation: none;
}

.fv {
  position: relative;
  height: 100vh;
  min-height: 37.5rem;
  padding-top: 5rem;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.fv.is-show {
  opacity: 1;
}
.fv.is-show .fv__title {
  opacity: 0;
  transform: translateY(1.875rem);
  animation: fvTitleFadeIn 1s ease forwards 0.5s;
}
@media screen and (max-width: 767px) {
  .fv {
    min-height: 25rem;
  }
}

@keyframes fvTitleFadeIn {
  0% {
    opacity: 0;
    transform: translateY(1.875rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fv__inner {
  height: 100%;
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fv__content {
  z-index: 2;
  margin: auto;
  position: relative;
}

.fv__title {
  margin-top: -3.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .fv__title {
    margin-top: -5rem;
  }
}
.fv__title img {
  width: 100%;
  height: auto;
  max-width: 35.625rem;
}

.fv__title-main {
  display: block;
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #0071bb;
}

.fv__title-sub {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  color: #333;
}

.fv__text {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: #666;
}

.fv__buttons {
  display: flex;
  gap: 1.5rem;
}

.fv__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  background-color: #0071bb;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 1.875rem;
  transition: opacity 0.3s;
}
.fv__button:hover {
  opacity: 0.8;
}

.fv__image {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
}
.fv__image img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: background-color 0.3s, box-shadow 0.3s;
}
.header.is-scrolled {
  background-color: #fff;
  box-shadow: 0 0.1875rem 0.125rem rgba(0, 0, 0, 0.5);
}
.header.is-open {
  background-color: transparent;
}

.header__inner {
  max-width: 65rem;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding: 0.75rem 0.625rem;
  }
}

@media screen and (max-width: 767px) {
  .header.is-scrolled .header__inner {
    padding: 0.75rem 0.625rem;
  }
}

.header__logo {
  padding: 1.5rem 0.125rem;
}
@media screen and (max-width: 767px) {
  .header__logo {
    padding: 0.125rem 0.5rem;
  }
}

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

@media screen and (max-width: 767px) {
  .header.is-scrolled .header__logo a {
    display: block;
  }
}

.header__logo img {
  width: 100%;
  max-width: 13.375rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .header__logo img {
    max-width: 8.3125rem;
  }
}

.header__nav {
  margin-left: auto;
  margin-right: 0.625rem;
}
@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
}

.header__nav-list {
  display: flex;
  list-style: none;
}

.header__nav-item {
  position: relative;
}

.header__nav-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.0625rem;
  height: 1rem;
  background-color: #cbcbcb;
}

.header__nav-item a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.125rem;
  transition: color 0.3s;
  padding: 0.625rem 0.875rem;
  display: block;
}

.header__nav-item a:hover {
  opacity: 0.8;
}

.header__nav-item img {
  max-height: 0.875rem;
}

.header__buttons {
  display: flex;
  gap: 0.125rem;
}
@media screen and (max-width: 767px) {
  .header__buttons {
    display: none;
  }
}

.header__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  min-width: 7.9375rem;
}

.header__button:hover {
  opacity: 0.8;
}

.header__button img {
  max-height: 1.8125rem;
}

.header__hamburger {
  display: none;
  position: relative;
  width: 3rem;
  height: 3rem;
  border: none;
  background: none;
  z-index: 101;
  cursor: pointer;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .header__hamburger {
    display: block;
  }
}
.header__hamburger img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__hamburger-close {
  display: none;
  position: absolute;
  top: 0.375rem;
  right: 0.625rem;
  max-width: 1rem;
  max-height: 1rem;
}

.is-open .header__hamburger-menu {
  display: none;
}
.is-open .header__hamburger-close {
  display: block;
}

.header__sp-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(134deg, rgba(0, 132, 189, 0.9) 9.75%, rgba(0, 137, 182, 0.9) 32.01%, rgba(0, 152, 163, 0.9) 63.02%, rgba(0, 161, 153, 0.9) 77.18%);
  padding: 4.125rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
@media screen and (max-width: 767px) {
  .header__sp-nav {
    display: block;
  }
}
.is-open .header__sp-nav {
  opacity: 1;
  visibility: visible;
}

.header__sp-nav-inner {
  padding: 0 1.25rem;
}

.header__sp-nav-list {
  list-style: none;
  width: min(43vw, 400px);
  margin: 0 auto;
}

.header__sp-nav-item {
  border-bottom: 1px solid #fff;
}
.header__sp-nav-item:last-child {
  border-bottom: none;
}
.header__sp-nav-item a {
  display: block;
  padding: 0.75rem 0.625rem;
}
.header__sp-nav-item a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.header__sp-nav-item img {
  margin-left: auto;
  margin-right: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.message {
  background-color: #0071bb;
  color: #fff;
  padding: 8.75rem 0 9.375rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .message {
    padding: 4.375rem 0 3.75rem;
  }
}

.message__title {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 2.25rem;
  letter-spacing: 0.02em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .message__title {
    margin-bottom: 1.875rem;
  }
}
.message__title span {
  position: relative;
  z-index: 2;
}

.message__title img {
  margin-left: auto;
  margin-right: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .message__title img {
    max-width: 8.8125rem;
  }
}

.message__subtitle {
  font-size: 1.625rem;
  font-weight: 500;
  margin-bottom: 2.375rem;
  letter-spacing: 0.02em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .message__subtitle {
    font-size: 1.5rem;
    letter-spacing: 0.02em;
    margin-bottom: 2.25rem;
  }
}

.message__content {
  max-width: 50rem;
  margin: 0 auto 3.25rem;
}
@media screen and (max-width: 767px) {
  .message__content {
    margin: 0 auto 2.25rem;
  }
}

.message__text {
  font-size: 1rem;
  line-height: 2.1;
  margin-bottom: 2.25rem;
  letter-spacing: 0.02em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .message__text {
    font-size: 0.875rem;
    line-height: 2;
    margin-bottom: 1.75rem;
  }
}
.message__text:last-child {
  margin-bottom: 0;
}

.message__profile {
  max-width: 39.25rem;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .message__profile {
    letter-spacing: 0.02em;
  }
}

.message__company {
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.message__name {
  width: 12.125rem;
  margin-bottom: 5.375rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .message__name {
    width: 9.875rem;
    margin-bottom: 1.625rem;
  }
}

.message__name img {
  aspect-ratio: 194/46;
}

.message__image {
  max-width: 23.4375rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .message__image {
    width: min(78vw, 400px);
    margin-bottom: 2rem;
  }
}
.message__image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 375/320;
  -o-object-fit: contain;
     object-fit: contain;
}

.message__career {
  text-align: left;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .message__career {
    width: min(83.7vw, 600px);
    margin: 0 auto;
  }
}

.message__career-name {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .message__career-name {
    font-size: 1.25rem;
    font-weight: 400;
    padding-left: 0.5rem;
    margin-bottom: 1.125rem;
  }
}

.message__career-name span {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  margin-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .message__career-name span {
    font-size: 0.875rem;
    margin-left: 0.625rem;
  }
}

.message__career-heading {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  letter-spacing: 0.2em;
  text-align: center;
  color: #007cc1;
  background-color: #c5ebf9;
  border-radius: 3.125rem;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .message__career-heading {
    margin-bottom: 0.75rem;
  }
}

.message__career-birth {
  font-size: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 0.0625rem solid #fff;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .message__career-birth {
    padding-bottom: 0rem;
    padding-left: 0.5rem;
    border-bottom: none;
    margin-bottom: 0.875rem;
  }
}

.message__career-history {
  font-size: 0.875rem;
  line-height: 1.8;
}

.message__career-item {
  margin-bottom: 0.625rem;
  display: flex;
}
@media screen and (max-width: 767px) {
  .message__career-item {
    flex-direction: column;
    border-top: 0.0625rem solid #fff;
    margin-bottom: 0.875rem;
  }
}
.message__career-item:last-child {
  margin-bottom: 0;
}

.message__career-company {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  padding: 0 0.3125rem;
  margin-bottom: 0.75rem;
  display: inline-block;
  width: 11.6875rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .message__career-company {
    width: 12.5rem;
    letter-spacing: 0.02em;
    border-bottom: 0.0625rem solid #fff;
    border-left: 0.0625rem solid #fff;
    border-right: 0.0625rem solid #fff;
    padding: 0rem 0.375rem;
    margin-bottom: 0.625rem;
    line-height: 1.6;
  }
}

.message__career-detail {
  font-size: 0.875rem;
  line-height: 1.6;
  padding-left: 1rem;
  width: 100%;
  border-left: 0.0625rem solid #fff;
}
@media screen and (max-width: 767px) {
  .message__career-detail {
    padding-left: 0.25rem;
    border-left: none;
    line-height: 1.3;
  }
}

.news {
  padding: 7.5rem 0;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .news {
    padding: 3.125rem 0;
  }
}

.news__inner {
  text-align: center;
}

.news__title {
  font-size: 2.875rem;
  font-weight: 300;
  margin-bottom: 5.125rem;
  letter-spacing: 0.34em;
  text-align: center;
  position: relative;
  margin-left: -0.875rem;
}
@media screen and (max-width: 767px) {
  .news__title {
    margin-left: 0;
    font-size: 1.75rem;
  }
}

.news__title span {
  position: relative;
  z-index: 2;
  background: linear-gradient(90deg, #0084bc 0%, #008faf 50.96%, #01a099 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.news__title img {
  margin-left: auto;
  margin-right: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .news__title img {
    max-width: 6.4375rem;
  }
}

.news__text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #666;
  line-height: 1.8;
  margin-bottom: 4rem;
}

.news__items {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.news__item {
  width: 10rem;
  height: 10rem;
  background-color: #ceefee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news__item-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0071bb;
}

.news__bottom {
  text-align: center;
}

.news__bottom-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0071bb;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  position: relative;
}

.news__bottom-text::before,
.news__bottom-text::after {
  content: "";
  display: block;
  width: 1.875rem;
  height: 0.0625rem;
  background: #0071bb;
  transform: rotate(-45deg);
  position: relative;
}

.news__bottom-text::before {
  transform: rotate(45deg);
  margin-top: -0.125rem;
}

.news__bottom-text::after {
  transform: rotate(-45deg);
  margin-top: -0.125rem;
}

.news__button {
  display: inline-block;
}

.news__button-link {
  display: inline-block;
  background-color: #0071bb;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  padding: 1rem 4rem;
  border-radius: 6.25rem;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.news__button-link:hover {
  background-color: #0071bb;
  color: #fff;
}

.price {
  padding: 7.75rem 0 10.375rem;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .price {
    padding: 1.875rem 0 3.75rem;
  }
}

.price__inner {
  text-align: center;
}

.price__title {
  font-size: 2.875rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  letter-spacing: 0.34em;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .price__title {
    font-size: 1.75rem;
    margin-bottom: 0.625rem;
  }
}

.price__title span {
  position: relative;
  z-index: 2;
  background: linear-gradient(90deg, #0084bc 0%, #008faf 50.96%, #01a099 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.price__title img {
  margin-left: auto;
  margin-right: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .price__title img {
    max-width: 6.9375rem;
  }
}

.price__text {
  font-size: 1.125rem;
  font-weight: 500;
  color: #666;
  line-height: 1.8;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .price__text {
    font-size: 0.875rem;
    margin-bottom: 1.625rem;
  }
}

.price__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  gap: 0.875rem;
  margin-bottom: 3.25rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .price__items {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 2.5rem;
  }
}

.price__item {
  width: 9.1875rem;
  height: 9.1875rem;
}

.price__item-text {
  font-size: 1.1875rem;
  font-weight: 700;
  color: #0071bb;
}

.price__bottom {
  text-align: center;
}

.price__bottom-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0071bb;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  letter-spacing: 0.02em;
  position: relative;
}

.price__bottom-text::before,
.price__bottom-text::after {
  content: "";
  display: block;
  width: 1.875rem;
  height: 0.0625rem;
  background: #0071bb;
  transform: rotate(-45deg);
  position: relative;
}

.price__bottom-text::before {
  transform: rotate(45deg);
  margin-top: -0.125rem;
  right: -1.25rem;
}

.price__bottom-text::after {
  transform: rotate(-45deg);
  margin-top: -0.125rem;
  left: -1.25rem;
}

.price__button {
  display: inline-block;
}

.price__button-link {
  display: inline-block;
}

.recruit {
  padding: 6.875rem 0 6.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .recruit {
    padding: 2.875rem 0 3.125rem;
  }
}
.recruit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(79deg, #29aae1 0%, #00a199 100%);
  opacity: 0.15;
  pointer-events: none;
}

.recruit__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.recruit__title {
  font-size: 2.875rem;
  font-weight: 300;
  margin-bottom: 3.75rem;
  letter-spacing: 0.34em;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .recruit__title {
    font-size: 1.75rem;
    margin-bottom: 0.875rem;
  }
}

.recruit__title span {
  position: relative;
  z-index: 2;
  background: linear-gradient(90deg, #0084bc 0%, #008faf 50.96%, #01a099 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.recruit__title img {
  margin-left: auto;
  margin-right: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .recruit__title img {
    max-width: 10.4375rem;
  }
}

.recruit__content {
  max-width: 50rem;
  margin: 0 auto;
}

.recruit__lead {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0071bb;
  margin-bottom: 0.75rem;
  letter-spacing: 0.18em;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .recruit__lead {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}

.recruit__lead::before,
.recruit__lead::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 0.0625rem;
  background: #0071bb;
  transform: rotate(-60deg);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .recruit__lead::before,
  .recruit__lead::after {
    width: 2.25rem;
    transform: rotate(-45deg);
  }
}

.recruit__lead::before {
  transform: rotate(60deg);
  margin-top: -0.125rem;
  left: -2.5rem;
}
@media screen and (max-width: 767px) {
  .recruit__lead::before {
    transform: rotate(55deg);
    left: -1.875rem;
  }
}

.recruit__lead::after {
  transform: rotate(-60deg);
  margin-top: -0.125rem;
  right: -2.5rem;
}
@media screen and (max-width: 767px) {
  .recruit__lead::after {
    transform: rotate(-55deg);
    right: -1.875rem;
  }
}

.recruit__text {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 3.125rem;
  color: #666;
}
@media screen and (max-width: 767px) {
  .recruit__text {
    font-size: 0.875rem;
    margin-bottom: 2.5rem;
  }
}

.recruit__button {
  display: inline-block;
}

.recruit__button-link:hover {
  opacity: 0.8;
}

.service {
  background: linear-gradient(40.5943deg, #0084bd 63.1846%, #00a199 100%);
  color: #fff;
  padding: 6.25rem 0 1.875rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .service {
    padding: 2.75rem 0 5.375rem;
  }
}

.service__title {
  font-size: 2.875rem;
  font-weight: 300;
  margin-bottom: 4.625rem;
  letter-spacing: 0.34em;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .service__title {
    font-size: 1.75rem;
    margin-bottom: 0.625rem;
  }
}
.service__title span {
  position: relative;
  z-index: 2;
}

.service__title img {
  margin-left: auto;
  margin-right: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .service__title img {
    max-width: 10.125rem;
  }
}

.service__subtitle {
  font-size: 1.625rem;
  font-weight: 500;
  margin-bottom: 2.5rem;
  text-align: center;
  letter-spacing: 0.18em;
}
@media screen and (max-width: 767px) {
  .service__subtitle {
    font-size: 1.375rem;
    margin-bottom: 1.875rem;
  }
}

.service__items--sp {
  width: min(84.2vw, 400px);
  margin: 0 auto;
}

.service__items {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 0 auto;
  position: relative;
  max-width: 56.875rem;
}

.service__item {
  width: 10.625rem;
  height: 10.625rem;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.service__text {
  color: #0071bb;
  font-size: 1.125rem;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.service2 {
  padding: 0 0 7.5rem;
  position: relative;
  background: linear-gradient(180deg, #29aae1 -3.69%, #0084bd 45.29%, #0089b6 65.8%, #0098a3 96.55%, #00a199 110.22%);
}

.service2__top {
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -1.875rem;
}
@media screen and (max-width: 767px) {
  .service2__top {
    width: 100%;
    top: -5.375rem;
  }
}

.service2__lead {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #fff;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .service2__lead {
    width: 100%;
    font-size: 1.5625rem;
    font-weight: 500;
  }
}

.service2__arrow {
  padding-top: 1.125rem;
  width: 1.25rem;
  height: 5.25rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .service2__arrow {
    padding-top: 0.375rem;
    width: 0.875rem;
    height: 3.8125rem;
  }
}

.service2__items {
  padding-top: 8.375rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 58rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .service2__items {
    width: min(84vw, 400px);
    padding-top: 4.75rem;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
  }
}

.service2__item {
  border: 0.125rem solid #fff;
  border-radius: 1.25rem;
  padding: 2.5rem 3.125rem 1.5rem 3.125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .service2__item {
    padding: 1.25rem 0.625rem 0.125rem 0.625rem;
  }
}

.service2__content {
  position: relative;
}

.service2__head {
  margin-bottom: 1.125rem;
}
@media screen and (max-width: 767px) {
  .service2__head {
    margin-bottom: 0.625rem;
  }
}

.service2__label {
  display: inline-block;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
  padding: 0.375rem 0;
  margin-bottom: 0.125rem;
  border-bottom: 0.0625rem solid #fff;
}
@media screen and (max-width: 767px) {
  .service2__label {
    padding: 0.25rem 0 0.375rem;
  }
}

.service2__title {
  font-size: 1.75rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.18em;
}
@media screen and (max-width: 767px) {
  .service2__title {
    letter-spacing: 0.018em;
  }
}

.service2__body {
  margin-bottom: 1.5rem;
}

.service2__text {
  font-size: 1rem;
  line-height: 1.6;
  color: #fff;
  text-align: left;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .service2__text {
    font-size: 0.875rem;
    line-height: 1.7;
    padding: 0 1.25rem;
  }
}

.service2__icon {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 1rem;
}
@media screen and (max-width: 767px) {
  .service2__icon {
    margin: 0 auto 1.125rem;
  }
}
.service2__icon img {
  width: 100%;
  height: 100%;
  max-width: 6.9375rem;
  max-height: 5.875rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.sp-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(270deg, #0084BD 0.28%, #0089B6 33.08%, #0098A3 78.79%, #00A199 99.67%);
  padding: 1rem;
  z-index: 100;
  transform: translateY(100%);
  transition: transform 0.3s;
}
@media screen and (max-width: 767px) {
  .sp-nav {
    display: block;
  }
}
.sp-nav.is-show {
  transform: translateY(0);
}

.sp-nav__inner {
  display: flex;
  gap: 0.3125rem;
  max-width: 19.75rem;
  margin: 0 auto;
}

.sp-nav__button {
  transition: opacity 0.3s;
}
.sp-nav__button:hover {
  opacity: 0.8;
}

.sp-nav__button img {
  -o-object-fit: contain;
     object-fit: contain;
}

.no-js .fadein {
  opacity: 1;
  transform: none;
  transition: none;
}

.fadein {
  opacity: 0;
  transform: translateY(1.875rem);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fadein.is-show {
  opacity: 1;
  transform: translateY(0);
}

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

.pc-only {
  display: block !important;
}
@media screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}
/*# sourceMappingURL=style.css.map */
