@charset "UTF-8";

body {
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  color: #333;
  line-height: 1.5;
  overflow-x: hidden;
  font-size: 16px;
}

a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

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

.is-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .is-sp {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  body {
    font-size: 15px;
  }
}

/* リキッドレイアウト対応 */
html {
  background-color: #fff;
  /* pcの電話番号発信対応 */
  /* ホバー */
}
html a[href^="tel:"] {
  pointer-events: none;
}

@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (max-width: 768px) {
  html a[href^="tel:"] {
    pointer-events: all;
  }
}
html a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (max-width: 768px) {
  html a:hover {
    opacity: 0.8;
  }
}

*,
*::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 */
html {
  scroll-behavior: smooth;
}

/* 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]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto !important;
}

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

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

/* フォームリセット */
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=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

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

.fadeInUpTrigger {
  opacity: 0;
}

.btn {
  position: relative;
  display: inline-block;
  text-align: center;
  max-width: 284px;
  width: 100%;
  padding: 16px 60px;
  background-color: #02026d;
  border: 1px solid #02026d;
  border-radius: 60px;
  color: #fff;
  font-weight: bold;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: 13px;
  background: url(../images/common/arrow-white.svg) no-repeat center center/contain;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn:hover {
  background-color: #fff;
  color: #02026d;
}
.btn:hover::after {
  background-image: url(../images/common/aroow-blue.svg);
}

.btn--white {
  background-color: #fff;
  border: 1px solid #02026d;
  color: #02026d;
}
.btn--white::after {
  background: url(../images/common/arrow-blue.svg) no-repeat center center/contain;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn--white:hover {
  background-color: #02026d;
  color: #fff;
}
.btn--white:hover::after {
  background-image: url(../images/common/aroow-white.svg);
}

.btn--sm {
  width: 180px;
  padding: 13px 0;
}
.btn--sm::after {
  display: none;
}

.btn--transparent {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.btn--mail-icon-white::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 72px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: url(../images/common/mail-icon-white.svg) no-repeat center center/contain;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn--mail-icon-white:hover::before {
  background-image: url(../images/common/mail-blue.svg);
}

.footer {
  text-align: center;
  background-color: #02026d;
  padding: 75px 0 32px;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 28px 0 16px;
  }
}

.footer__logo {
  width: 260px;
  margin: 0 auto;
}

.copy-right {
  display: inline-block;
  margin-top: 42px;
  font-size: 12px;
  color: #fff;
  font-weight: 100;
}
@media screen and (max-width: 768px) {
  .copy-right {
    margin-top: 24px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  height: 100px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .header {
    height: 70px;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
  padding: 0 0 0 50px;
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding-left: 15px;
  }
}

.header__logo {
  width: 260px;
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 246px;
  }
}

.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 1330px) {
  .header__right {
    display: none;
  }
}
.header__text {
  text-align: right;
  font-size: 14px;
  line-height: 1;
}

.header__nav {
  padding-right: 30px;
}

.nav__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.nav__item {
  margin-left: 30px;
}
.nav__item a {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: inherit;
  padding: 13px 0;
}
.nav__item a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 80%;
  height: 2px;
  background: #dc0000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: center top;
          transform-origin: center top;
}

.nav__item a:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.nav__btn {
  position: relative;
  display: inline-block;
  height: 100px;
  width: 200px;
  line-height: 100px;
  background-color: #02026d;
  color: #fff;
  border: 1px solid #02026d;
  font-size: 20px;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  padding-left: 48px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.nav__btn::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  top: 50%;
  left: 18px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: url(../images/common/tel-icon-white.svg) no-repeat center center/contain;
}
.nav__btn:hover {
  background-color: #fff;
  color: #02026d;
}
.nav__btn:hover::before {
  background-image: url(../images/common/tel-blue.svg);
}

.action__item--tel a::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 22px;
  height: 22px;
  top: 50%;
  left: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(/images/common/tel-icon-white.svg) no-repeat center center/contain;
}

.sp-action__items {
  display: none;
}

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

.inner-lg {
  max-width: 1250px;
  width: 100%;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .inner-lg {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.sp-nav {
  position: fixed;
  top: 0;
  right: -105%;
  width: 50%;
  height: 100vh;
  background: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .sp-nav {
    width: 70%;
  }
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
.sp-nav.active {
  right: 0;
}

/*ナビゲーション*/
.sp-navItems {
  display: none;
  position: absolute;
  width: 100%;
  z-index: 999;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.sp-navItem a {
  display: block;
  text-align: center;
  font-size: 18px;
  color: #02026d;
  padding: 20px;
  border-bottom: 1px dotted #2fc7cd;
}

.sp-navItems.active {
  display: block;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: fixed;
  z-index: 9999;
  top: 50px;
  right: 50px;
  cursor: pointer;
  width: 45px;
  height: 45px;
  display: none;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #02026d;
}
@media screen and (max-width: 1329px) {
  .openbtn {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .openbtn {
    top: 35px;
    right: 0;
  }
}

.openbtn span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 3px;
  border-radius: 2px;
  background-color: #fff;
  width: 45%;
}

.openbtn span:nth-of-type(1) {
  top: 13px;
}

.openbtn span:nth-of-type(2) {
  top: 21px;
}

.openbtn span:nth-of-type(3) {
  top: 29px;
}

.openbtn.active span:nth-of-type(1) {
  top: 15px;
  left: 16px;
  -webkit-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 27px;
  left: 16px;
  -webkit-transform: translateY(-6px) rotate(45deg);
          transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

.page-top {
  position: fixed;
  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;
  background: #fff;
  /* color: #02026d; */
  /* font-weight: bold;
  font-size: 20px;
  text-transform: uppercase; */
  border: 1px solid #02026d;
  /* border-radius: 50%; */
  right: 50px;
  bottom: 30px;
  width: 48px;
  height: 48px;
  z-index: 2;
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.page-top img {
  width: 30px;
  height: 30px;
}
/* .page-top span {
  position: relative;
} */
/* .page-top span::before {
  position: absolute;
  content: "";
  width: 26px;
  height: 26px;
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../images/common/to-top.svg) no-repeat center center/contain;
} */

.page-top a:hover {
  background: #777;
}

/*上に上がる動き*/
.page-top.UpMove {
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}

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

@keyframes UpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*下に下がる動き*/
.page-top.DownMove {
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
}

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

@keyframes DownAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
}
.section__title {
  position: relative;
  font-size: 34px;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #02026d;
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .section__title {
    font-size: 28px;
    padding-top: 10px;
  }
}
.section__title span {
  position: absolute;
  top: 0;
  left: -92px;
  font-size: 140px;
  background: -webkit-gradient(linear, left top, left bottom, from(#94d4bd), to(transparent));
  background: linear-gradient(180deg, #94d4bd, transparent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  opacity: 0.2;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .section__title span {
    font-size: 50px;
    top: -22px;
    left: -32px;
  }
}

.page-about__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 34px;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .page-about__cards {
    display: block;
    margin-top: 16px;
  }
}

.page-about__card {
  width: 48%;
  padding: 40px 56px;
  -webkit-box-shadow: rgba(0, 0, 0, .1) 0px 4px 12px;
          box-shadow: rgba(0, 0, 0, .1) 0px 4px 12px;
}
@media screen and (max-width: 768px) {
  .page-about__card:not(:first-child) {
    margin-top: 16px;
  }
}
@media screen and (max-width: 768px) {
  .page-about__card {
    width: 100%;
    padding: 20px 32px;
  }
}

.card__title {
  font-size: 24px;
  font-weight: bold;
  padding-bottom: 4px;
  border-bottom: 1px solid #2fc7cd;
}
.card__title span {
  font-size: 36px;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  color: #2fc7cd;
  margin-right: 16px;
}

.card__meta-title {
  margin-top: 10px;
  font-weight: bold;
}

.card__meta-text {
  margin-top: 6px;
}

.card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-top: 24px;
}
.card__img img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.card__text {
  margin-top: 16px;
}

.page-desuse__img {
  width: 208px;
}
@media screen and (max-width: 768px) {
  .page-desuse__img {
    margin-top: 24px;
  }
}

@media screen and (max-width: 768px) {
  .page-about__dlcontainer {
    margin-top: 32px;
  }
}

.page-about__dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 16px;
  border-bottom: 1px dashed #c4c4c4;
}
.page-about__dl:not(:first-child) {
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .page-about__dl {
    display: block;
  }
}

.page-about__dl dt {
  width: 25%;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
.page-about__dl dt {
    width: 100%;
  }
}

.page-about__dl dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
.page-about__dl dd {
    width: 100%;
    margin-top: 8px;
  }
}

.page-head {
  position: relative;
  height: 260px;
  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;
  margin-top: 73px;
  text-align: center;
  background: url(../images/common/fv-img01.jpg) no-repeat center center/cover;
}
.page-head::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .2);
}
@media screen and (max-width: 768px) {
  .page-head {
    width: 100%;
    height: 200px;
    margin-top: 70px;
  }
}
.page-head.page-head--moving {
  background-image: url(../images/common/moving_head.jpg);
}
.page-head.page-head--disuse {
  background-image: url(../images/common/disuse_head.jpg);
}
.page-head.page-head--relics {
  background-image: url(../images/common/relics_head.jpg);
}
.page-head.page-head--about {
  background-image: url(../images/common/about_head.jpg);
}
.page-head.page-head--news {
  background-image: url(../images/common/news-head.jpg);
}

.page-head__title {
  position: relative;
  font-size: 48px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.1em;
  z-index: 2;
}
.page-head__title span {
  display: block;
  font-size: 16px;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .page-head__title span {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .page-head__title {
    font-size: 34px;
  }
}

.page__h2 {
  text-align: center;
  font-size: 42px;
  color: #02026d;
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .page__h2 {
    margin-top: 48px;
    font-size: 22px;
    text-align: left;
  }
}

.page__h3 {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(45deg, #02026d, #30cfd0);
  margin-top: 50px;
  margin-left: calc(50% - 50vw);
  padding: 10px calc(50vw - 50%);
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .page__h3 {
    margin-top: 24px;
    font-size: 20px;
  }
}

.page__h4 {
  position: relative;
  font-size: 22px;
  font-weight: bold;
  margin-top: 40px;
  padding: 6px 0 6px 0;
}
@media screen and (max-width: 768px) {
  .page__h4 {
    margin-top: 16px;
    font-size: 18px;
  }
}

.page__h5 {
  font-size: 18px;
  font-weight: bold;
  padding: 10px 0 10px 16px;
  background-color: #e8feff;
  margin-top: 24px;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .page__h5 {
    margin-top: 12px;
    font-size: 16px;
  }
}

.comment {
  position: relative;
  display: inline-block;
  font-weight: bold;
  padding: 10px 32px;
  border: 1px solid #333;
  margin: 32px 0 16px;
}
.comment span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #f6f88a)); 
  background: linear-gradient(transparent 50%, #f6f88a 50%);
}
.comment::before {
  position: absolute;
  content: "";
  bottom: -1px;
  left: 51px;
  width: 18px;
  height: 1px;
  background-color: #333;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: top right;
          transform-origin: top right;
  z-index: 2;
}
.comment::after {
  position: absolute;
  content: "";
  bottom: -2px;
  left: 47px;
  width: 22px;
  height: 3px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .comment {
    margin-bottom: 0;
  }
}

.page__text {
  margin-top: 8px;
  line-height: 2;
}

.page-subtitle {
  font-weight: bold;
}

.page-subtitle-center {
  text-align: center;
}

.fz14 {
  font-size: 14px;
}

.underline {
  text-decoration: underline;
  color: #2fc7cd;
}

.center {
  margin-right: 10px;
  margin-left: 10px;
}

.attention {
  font-weight: bold;
  color: #02026d;
}

.background {
  background: #f8f8f8;
  padding: 34px;
}

.page-lists {
  margin-top: 16px;
}

.page-list {
  position: relative;
  padding-left: 20px;
}
.page-list:not(:first-child) {
  margin-top: 8px;
}
.page-list::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  top: 12px;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #2fc7cd;
}

.page-flex__01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .page-flex__01 {
    display: block;
  }
}

.page-flex__01body {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .page-flex__01body {
    width: 100%;
  }
}

.page-flex__01img {
  width: 35%;
  margin-top: 16px;
  /* aspect-ratio: 16/9; */
  overflow: hidden;
}
.page-flex__01img img {
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .page-flex__01img {
    width: 100%;
  }
}

.page-flex__02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .page-flex__02 {
    display: block;
  }
}

.page-flex__02body {
  width: 38%;
}
@media screen and (max-width: 768px) {
  .page-flex__02body {
    width: 100%;
  }
}

.page-flex__02img {
  width: 58%;
}
@media screen and (max-width: 768px) {
  .page-flex__02img {
    width: 100%;
  }
}

.page-flex__listcontainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 46px;
}
@media screen and (max-width: 768px) {
  .page-flex__listcontainer {
    margin-top: 20px;
  }
}

.page-fles__lists {
  list-style-type: disc;
  font-size: 14px;
}

.page-accordion {
  position: relative;
  text-align: center;
  color: #02026d;
  padding: 10px 0 10px 20px;
  border: 2px solid #02026d;
  margin-top: 32px;
}
.page-accordion::before,
.page-accordion::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #333;
    
}
.page-accordion::before{
    top:48%;
    left: 15px;
    transform: rotate(0deg);
    
}
.page-accordion::after{    
    top:48%;
    left: 15px;
    transform: rotate(90deg);

}
/*　closeというクラスがついたら形状変化　*/
.page-accordion.close::before{
	transform: rotate(45deg);
}

.page-accordion.close::after{
	transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
    display: none;/*はじめは非表示*/
}

.index-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  margin: 142px auto 120px;
}
@media screen and (max-width: 768px) {
  .index-lists {
    gap: 24px;
    margin: 80px auto 80px;
  }
}

.index-list {
  min-width: 300px;
  width: 31%;
  text-align: center;
}
  @media screen and (max-width: 768px) {
  .index-list {
    max-width: 400px;
    width: 100%;
  }
  }

.index-list a {
  position: relative;
  display: block;
  color: #fff;
  background-color: #02026d;
  width: 100%;
  padding: 21px 0;
  border-radius: 60px;
  border: 1px solid #02026d;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.index-list a::after {
  position: absolute;
  content: "";
  display: inline-block;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
  height: 10px;
  background: url(../images/common/arrow-white.svg) no-repeat center center/contain;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.index-list a:hover {
  background-color: #fff;
  color: #02026d;
}
.index-list a:hover::after {
  background-image: url(../images/common/aroow-blue.svg);
}


.index-list.index-list--second a {
  background-color: #2fc7cd;
  border: 1px solid #2fc7cd;
}
.index-list.index-list--second a:hover {
  background-color: #fff;
  color: #2fc7cd;
}

.page-link {
  position: relative;
  display: inline-block;
  color: #02026d;
  font-weight: bold;
  max-width: 326px;
  width: 100%;
  padding: 18px 0;
  border-radius: 60px;
  border: 2px solid #02026d;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  margin-top: 20px;
}
.page-link::after {
  position: absolute;
  content: "";
  display: inline-block;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
  height: 10px;
  background: url(../images/common/aroow-blue.svg) no-repeat center center/contain;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.page-link:hover {
  background-color: #02026d;
  color: #fff;
}
.page-link:hover::after {
  background-image: url(../images/common/arrow-white.svg);
}
@media screen and (max-width: 768px) {
  .page-link {
    display: block;
    max-width: none;
    margin: 16px auto 0;
  }
}
.flex-link {
  display: flex;
  justify-content: flex-start;
  gap: 32px;
}
.flex-link>.page-link {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .page-link {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .flex-link {
    display: block;
  }
}
.page-index__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 86px;
  padding: 40px 20px;
  background-color: #f8f8f8;
}
.page-index__bottom li a {
  color: #fff;
  background-color: #02026d;
  font-size: 14px;
  padding: 9px 24px;
  border: 2px solid #02026d;
  border-radius: 60px;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.page-index__bottom li a:hover {
  background-color: #fff;
  color: #02026d;
}
.page-index__bottom.page-index__bottom--moving li a {
  background-color: #2fc7cd;
  border: 2px solid #2fc7cd;
}
.page-index__bottom.page-index__bottom--moving li a:hover {
  background-color: #fff;
  color: #2fc7cd;
}
@media screen and (max-width: 768px) {
  .page-index__bottom {
    row-gap: 34px;
    margin-top: 60px;
  }
}

.page-moving__anchorlinks {
  background-color: #f8f8f8;
  padding: 32px 28px;
}
.page-moving__anchorlinks a {
  display: inline-block;
  color: #2fc7cd;
  text-decoration: underline;
  padding: 6px;
}

.page-price__imgitems01 {
  /* display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; */
  margin-top: 40px;
  max-width: 600px;
  width: 100%;
  /* -ms-flex-wrap: wrap;
      flex-wrap: wrap; */
}
@media screen and (max-width: 768px) {
  .page-price__imgitems01 {
    row-gap: 16px;
  }
}

.page-price__imgitem01 {
  margin-right: 20px;
}
.page-price__imgitem01:nth-child(1), .page-price__imgitem01:nth-child(3), .page-price__imgitem01:nth-child(5), .page-price__imgitem01:nth-child(7) {
  width: 120px;
}
@media screen and (max-width: 768px) {
  .page-price__imgitem01:nth-child(1), .page-price__imgitem01:nth-child(3), .page-price__imgitem01:nth-child(5), .page-price__imgitem01:nth-child(7) {
    width: 100px;
  }
}
@media screen and (max-width: 768px) {
  .page-price__imgitem01:nth-child(2), .page-price__imgitem01:nth-child(4), .page-price__imgitem01:nth-child(6) {
    width: 16px;
  }
}

.page-price__imgitems02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 48px 0;
}
@media screen and (max-width: 768px) {
  .page-price__imgitems02 {
    display: block;
  }
}

.page-price__imgitem02 {
  margin-right: 20px;
}
.page-price__imgitem02:nth-child(1), .page-price__imgitem02:nth-child(3), .page-price__imgitem02:nth-child(5), .page-price__imgitem02:nth-child(7) {
  width: 20.2%;
}
@media screen and (max-width: 768px) {
  .page-price__imgitem02:nth-child(1), .page-price__imgitem02:nth-child(3), .page-price__imgitem02:nth-child(5), .page-price__imgitem02:nth-child(7) {
    width: 100%;
  }
}
.page-price__imgitem02:nth-child(2), .page-price__imgitem02:nth-child(4), .page-price__imgitem02:nth-child(6) {
  width: 30px;
  margin: 20px auto;
}
@media screen and (max-width: 768px) {
  .page-price__imgitem02:nth-child(2), .page-price__imgitem02:nth-child(4), .page-price__imgitem02:nth-child(6) {
    width: 50px;
    -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  }
}
.page-moving__priceimg {
  width: 400px;
  max-width: 100%;
  margin-top: 16px;
}
.page-price__example01 {
  display: flex;
  justify-content: space-between;
  max-width: 460px;
  width: 100%;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .page-price__example01 {
    max-width: 300px;
  }
}
.page-price__example__item {
  font-size: 16px;
  text-align: center;
  color: #2fc7cd;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .page-price__example__item {
   font-size: 14px;
  }
}
.page-price__example__number {
  display: inline-block;
  background-color: #2fc7cd;
  color: #fff;
  text-align: center;
  font-size: 14px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 50%;
}
.page-price__example__price {
  display: grid;
  place-items: inherit;
  font-size: 20px;
  font-weight: bold;
  margin-top: 18px;
  margin-bottom: 2px;
  color: #333;
  line-height: 1;
  height: 50px;
}
@media screen and (max-width: 768px) {
  .page-price__example__price {
    place-items: center;
   font-size: 16px;
   height: 40px;
   margin-top: 6px;
  }
}
.page-price__example__symbol {
  display: grid;
  place-items: center;
}

.page-step {
  position: relative;
  margin-top: 40px;
}
.page-step::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #2fc7cd;
  top: 0;
  left: 34px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .page-step::after {
    left: 22px;
  }
}
@media screen and (max-width: 768px) {
  .page-step {
    margin-top: 16px;
  }
}

.page-step__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 44px;
}
.page-step__row:not(:first-child) {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .page-step__row:not(:first-child) {
    margin-top: 32px;
  }
}
.page-step__row:nth-child(2) .page-step__number {
  background-color: #27a5bc;
}
.page-step__row:nth-child(3) .page-step__number {
  background-color: #1d76a5;
}
.page-step__row:nth-child(4) .page-step__number {
  background-color: #155696;
}
.page-step__row:nth-child(5) .page-step__number {
  background-color: #02026d;
}
@media screen and (max-width: 768px) {
  .page-step__row {
    gap: 16px;
  }
}

.page-step__number {
  background-color: #2fc7cd;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 28px;
  font-family: "Roboto", sans-serif;
  color: #fff;
  letter-spacing: 0.07em;
  line-height: 1;
}
.page-step__number span {
  font-size: 12px;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .page-step__number span {
    font-size: 10px;
  }
}
@media screen and (max-width: 768px) {
  .page-step__number {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
}

.page-step__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.page-step__subtitle {
  font-weight: bold;
}

.page-step__title {
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .page-step__title {
    font-size: 18px;
  }
}

.page-step__text {
  margin-top: 8px;
}

.page-table--01 {
  border-collapse: collapse;
  margin-top: 32px;
  border: 1px solid #f8f8f8;
}
.page-table--01 th {
  width: 190px;
  background-color: #f8f8f8;
  font-weight: normal;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .page-table--01 th {
    display: block;
    width: 100%;
    text-align: left;
    padding-left: 24px;
  }
}
.page-table--01 td {
  padding: 20px 0 20px 24px;
}
@media screen and (max-width: 768px) {
  .page-table--01 td {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .page-table--01 {
    margin-top: 16px;
  }
}

.page-table__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.page-table__container .page-table--02,
.page-table__container .page-table--03 {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .page-table__container .page-table--02,
  .page-table__container .page-table--03 {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .page-table__container {
    display: block;
  }
}

.page-table--02 {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
  text-align: center;
}
.page-table--02 th {
  width: 60%;
  font-weight: normal;
  padding: 20px 0;
  border: 1px solid #c4c4c4;
}
@media screen and (max-width: 768px) {
  .page-table--02 th {
    width: 70%;
  }
}
.page-table--02 td {
  padding: 20px 0;
  border: 1px solid #c4c4c4;
}
@media screen and (max-width: 768px) {
  .page-table--02 td {
    width: 30%;
  }
}

.table__title--blue {
  background-color: #e8f3ff;
  font-weight: bold;
  border: none;
}

.table__title--purple {
  background-color: #cfcfff;
  font-weight: bold;
}

.table__title--gray {
  background-color: #f8f8f8;
  font-weight: bold;
}

.page-table--03 {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
  text-align: center;
}
.page-table--03 th {
  width: 20%;
  font-weight: normal;
  padding: 20px 0;
  background-color: #f8f8f8;
  border: 1px solid #f8f8f8;
}
.page-table--03 td {
  width: 80%;
  padding: 20px 0;
  border: 1px solid #f8f8f8;
}

.page-table--04 {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
  text-align: center;
}
.page-table--04 th {
  width: 20%;
  font-weight: normal;
  padding: 20px 0;
  background-color: #f8f8f8;
  border: 1px solid #f8f8f8;
}
.page-table--04 td {
  width: 20%;
  padding: 20px 0;
  border: 1px solid #f8f8f8;
}
@media screen and (max-width: 768px) {
  .page-table--04 {
    font-size: 14px;
  }
}

.page-table--05 {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
  text-align: center;
}
.page-table--05 th {
  width: 40%;
  font-weight: normal;
  padding: 20px 0;
  background-color: #f8f8f8;
  border: 1px solid #f8f8f8;
}
.page-table--05 td {
  width: 60%;
  padding: 20px 0;
  border: 1px solid #f8f8f8;
}
@media screen and (max-width: 768px) {
  .page-table--05 {
    margin-top: 8px;
  }
}

.page-table__06 {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}
.page-table__06 th {
  font-weight: normal;
  padding: 20px 0 20px 16px;
  border: 1px solid #c4c4c4;
  text-align: left;
}
.page-table__06 td {
  width: 40%;
  padding: 20px 0;
  border: 1px solid #c4c4c4;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page-table__06 td {
    width: 35%;
  }
}
@media screen and (max-width: 768px) {
  .page-table__06 {
    font-size: 14px;
    margin-top: 8px;
  }
}
.office-list-box {
  margin-top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
}

.office-list-dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .office-list-dl {
    width: 100%;
  }
}
.office-list-dl dt {
  width: 40%;
  font-weight: normal;
  padding: 20px 0;
  background-color: #f8f8f8;
  border-top: 1px solid #f8f8f8;
  border-left: 1px solid #f8f8f8;
  border-right: 1px solid #f8f8f8;
}
.office-list-dl:nth-last-child(1) dt {
  border-bottom: 1px solid #f8f8f8;
}
.office-list-dl:nth-last-child(2) dt {
  border-bottom: 1px solid #f8f8f8;
}
@media screen and (max-width: 768px) {
  .office-list-dl:nth-last-child(2) dt {
     border-bottom: none;
  }
}
.office-list-dl dd {
  width: 60%;
  padding: 20px 0;
  border-top: 1px solid #f8f8f8;
  border-left: 1px solid #f8f8f8;
  border-right: 1px solid #f8f8f8;
}
.office-list-dl:nth-last-child(1) dd {
  border-bottom: 1px solid #f8f8f8;
}
.office-list-dl:nth-last-child(2) dd {
  border-bottom: 1px solid #f8f8f8;
}
@media screen and (max-width: 768px) {
  .office-list-dl:nth-last-child(2) dd {
     border-bottom: none;
  }
}
.news {
  margin-top: 80px;
}

.news__inner {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.news__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
  border-bottom: 1px dashed #b3b3b3;
  transition: all 0.3s;
}
.news__item a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .news__item a {
    display: block;
    padding: 10px 0;
  }
}
.news__item a + .news__item a {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .news__item a + .news__item a {
    margin-top: 16px;
  }
}
.news__date {
  font-size: 15px;
  width: 20%;
  color: #02026d;
}

.news__title {
  position: relative;
  width: 100%;
  height: 100%;
  font-size: 16px;
}
.news__title::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: url(../images/common/news-arrow.svg) no-repeat center center/contain;
}

.page-relics__img {
  max-width: 200px;
  width: 100%;
  margin-top: 32px;
}

.fv__inner {
  position: relative;
  margin: 100px 100px 0 0;
}
@media screen and (max-width: 768px) {
  .fv__inner {
    margin-top: 70px;
    margin-right: 0;
  }
}

.swiper {
  border-radius: 0 0 200px 0;
  width: 94vw;
  max-height: 780px;
  height: 80vh;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .swiper {
    width: 100%;
    height: 70vh;
  }
}

.swiper-wrapper {
  height: 100%;
}

.swiper-slide {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 80%;
     object-position: 50% 80%;
}
.swiper-slide img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fv__title {
  position: absolute;
  width: clamp(326px, 30vw, 576px);
  right: -96px;
  top: 144px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .fv__title {
    width: clamp(300px, 62vw, 446px);
    top: 80px;
    left: -4px;
  }
}

.top-news {
  position: relative;
  max-width: 786px;
  width: 100%;
  padding: 32px 52px;
  background: linear-gradient(45deg, #02026d, #30cfd0);
  color: #fff;
  margin-top: -48px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .top-news {
    margin-top: 20px;
  }
}

.top-news__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .top-news__inner {
    display: block;
  }
}

.top-news__titlebox {
  max-width: 200px;
  width: 100%;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .top-news__titlebox {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    max-width: 100%;
  }
}

.top-news__title {
  font-size: 20px;
  font-weight: bold;
}
.top-news__title span {
  display: block;
  font-size: 14px;
  font-weight: normal;
  text-transform: uppercase;
  line-height: 1;
}

.top-news__items {
  width: 100%;
  border-left: 1px solid #fff;
  padding-left: 50px;
}
@media screen and (max-width: 768px) {
  .top-news__items {
    margin-top: 54px;
    padding-left: 0;
    border: none;
  }
}

.top-news__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
  padding: 8px;
}
.top-news__link:not(:nth-child(1)) {
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  .top-news__link:not(:nth-child(1)) {
    margin-top: 16px;
  }
}
@media screen and (max-width: 768px) {
  .top-news__link {
    display: block;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
  }
}

.top-news__date {
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  font-weight: 100;
}

.top-news__btn {
  display: inline-block;
  font-size: 14px;
  margin-top: 8px;
}
.top-news__btn img {
  display: inline;
  vertical-align: bottom;
  width: 20px;
  height: 20px;
}
.top-news__btn span {
  padding-left: 6px;
}

.top-service {
  margin-top: 40px;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .top-service {
    margin-top: 54px;
    padding-bottom: 0;
  }
}

.section__title--service {
  line-height: 1;
}

.top-service__bg {
  background-color: #f8f8f8;
}

.top-service__container {
  padding: 80px 0 132px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1180px) {
  .top-service__container {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .top-service__container {
    padding-top: 16px;
    padding-bottom: 80px;
  }
}

.top-service__body {
  width: 34%;
  margin-right: 68px;
}
@media screen and (max-width: 1180px) {
  .top-service__body {
    max-width: 580px;
    width: 100%;
    margin-right: 0;
  }
}

.top-service__subtitle {
  position: relative;
  display: inline-block;
  font-size: 22px;
  color: #02026d;
  padding-left: 140px;
}
@media screen and (max-width: 768px) {
  .top-service__subtitle {
    font-size: 18px;
  }
}
.top-service__subtitle::before {
  position: absolute;
  content: "";
  display: inline-block;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100px;
  height: 1px;
  background-color: #02026d;
}

.top-service__text {
  margin-top: 40px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .top-service__text {
    margin-top: 16px;
  }
}

.top-service__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 32px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 1180px) {
  .top-service__items {
    gap: 42px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 72px;
  }
}
@media screen and (max-width: 768px) {
  .top-service__items {
    display: block;
    margin-top: 24px;
  }
}

.top-service__item {
  position: relative;
  max-width: 280px;
  width: 47.28%;
  aspect-ratio: 280/180;
  -webkit-box-shadow: rgba(50, 50, 93, .25) 0px 13px 27px -5px, rgba(0, 0, 0, .3) 0px 8px 16px -8px;
          box-shadow: rgba(50, 50, 93, .25) 0px 13px 27px -5px, rgba(0, 0, 0, .3) 0px 8px 16px -8px;
}
.top-service__item a {
  position: relative;
  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;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5);
  font-size: 22px;
  color: #fff;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  letter-spacing: 0.05em;
}
.top-service__item a:hover {
  background-color: transparent;
}
.top-service__item a:hover::after {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}
.top-service__item a::before {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 40px 100px;
  border-color: transparent transparent #02026d transparent;
}
.top-service__item a::after {
  position: absolute;
  content: "";
  bottom: 10px;
  right: 8px;
  width: 22px;
  height: 5px;
  background: url(../images/common/arrow-border.svg) no-repeat center center/contain;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .top-service__item a {
    font-size: 20px;
  }
}
.top-service__item:nth-child(1) {
  background: url(../images/common/service_item01.jpg) no-repeat center center/cover;
}
.top-service__item:nth-child(2) {
  background: url(../images/common/service_item02.jpg) no-repeat center center/cover;
  position: relative;
  top: 52px;
}
@media screen and (max-width: 768px) {
  .top-service__item:nth-child(2) {
    top: 0;
    margin-top: 24px;
  }
}
.top-service__item:nth-child(3) {
  background: url(../images/common/service_item03.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 768px) {
  .top-service__item:nth-child(3) {
    margin-top: 24px;
  }
}
.top-service__item:nth-child(4) {
  background: url(../images/common/service_item04.jpg) no-repeat center center/cover;
  position: relative;
  top: 52px;
}
@media screen and (max-width: 768px) {
  .top-service__item:nth-child(4) {
    top: 0;
    margin-top: 24px;
  }
}
@media screen and (max-width: 1180px) {
  .top-service__item {
    width: 40%;
    max-width: 350px;
  }
}
@media screen and (max-width: 768px) {
  .top-service__item {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

.top-service__container02 {
  position: relative;
  padding: 26px 0 72px;
}
.top-service__container02::before {
  content: "";
  position: absolute;
  top: 108px;
  right: 16px;
  max-width: 460px;
  width: 100%;
  height: 210px;
  background: url(../images/common/service_bg.svg) no-repeat center center/contain;
}
@media screen and (max-width: 1180px) {
  .top-service__container02::before {
    position: inherit;
    display: block;
    top: 0;
    right: 0;
    margin: 80px auto 0;
  }
}
@media screen and (max-width: 768px) {
  .top-service__container02::before {
    width: 80%;
    margin-top: 0;
  }
}
.top-service__container02 .top-service__text {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .top-service__container02 .top-service__text {
    margin-top: 16px;
  }
}
.top-service__container02 .top-service__body {
  max-width: 580px;
  width: 100%;
  margin-top: 88px;
}
@media screen and (max-width: 768px) {
  .top-service__container02 .top-service__body {
    margin-top: 20px;
  }
}
.top-service__container02 .top-service__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  margin-top: 72px;
}
@media screen and (max-width: 1180px) {
  .top-service__container02 .top-service__items {
    gap: 42px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .top-service__container02 .top-service__items {
    display: block;
    margin-top: 24px;
  }
}
.top-service__container02 .top-service__item {
  max-width: 280px;
  width: 23.4%;
}
.top-service__container02 .top-service__item:nth-child(1) {
  background: url(../images/common/service_item05.jpg) no-repeat center center/cover;
}
.top-service__container02 .top-service__item:nth-child(2) {
  background: url(../images/common/service_item06.jpg) no-repeat center center/cover;
}
.top-service__container02 .top-service__item:nth-child(3) {
  background: url(../images/common/service_item07.jpg) no-repeat center center/cover;
}
.top-service__container02 .top-service__item:nth-child(4) {
  background: url(../images/common/service_item08.jpg) no-repeat center center/cover;
}
.top-service__container02 .top-service__item a::before {
  border-color: transparent transparent #2fc7cd transparent;
}
@media screen and (max-width: 1180px) {
  .top-service__container02 .top-service__item {
    width: 40%;
    max-width: 350px;
  }
}
@media screen and (max-width: 768px) {
  .top-service__container02 .top-service__item {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.top-banner {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #f8f8f8;
}
@media screen and (max-width: 768px) {
  .top-banner {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.top-banner__items {
  max-width: 960px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .top-banner__items {
    display: block;
  }
}

.top-banner__item {
  width: 48%;
  -webkit-box-shadow: rgba(50, 50, 93, .25) 0px 13px 27px -5px, rgba(0, 0, 0, .3) 0px 8px 16px -8px;
          box-shadow: rgba(50, 50, 93, .25) 0px 13px 27px -5px, rgba(0, 0, 0, .3) 0px 8px 16px -8px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.top-banner__item img {
  width: 100%;
}
.top-banner__item:hover {
  -webkit-transform: translate(4px, 4px);
          transform: translate(4px, 4px);
}
.top-banner__item a {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .top-banner__item {
    width: clamp(280px, 80%, 400px);
    margin: 0 auto 40px;
  }
  .top-banner__item + .top-banner__item {
    margin-bottom: 0;
  }

}

.top-startup {
  margin-top: 44px;
}
.top-startup .section__title span {
  top: 5px;
}
@media screen and (max-width: 768px) {
  .top-startup .section__title span {
    top: -18px;
  }
}

.top-startup__container {
  padding: 80px 15px ;
  background: url(../images/common/top-recrute.jpg) no-repeat center right/cover;
  margin-top: 34px;
  margin-left: calc(50% - 50vw);
  border-radius: 0 0 200px 0;
}
@media screen and (max-width: 768px) {
  .top-startup__container {
    margin-right: calc(50% - 50vw);
    margin-top: 0;
    padding: 250px 15px 30px;
    background-position: center right -48px;
    border-radius: 0;
  }
}
@media screen and (max-width: 450px) {
  .top-startup__container {
    background: url(../images/common/startup-img-sp.jpg) no-repeat center center / cover;
  }
}

.top-startup__text {
  line-height: 2;
}

.top-startup__body {
  max-width: 430px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.73);
  backdrop-filter: blur(2px);
  padding: 56px;
  margin-left: calc(50vw - 50%);
  border-radius: 10px;
  text-align: center;
}
@media screen and (max-width: 768px) {
   .top-startup__body {
    padding: 28px;
    margin-left: 0;
  }
}

.top-startup__body a {
  display: block;
  margin: 32px auto 0;
}
@media screen and (max-width: 768px) {
  .top-startup__body a {
    margin: 30px auto 0;
  }
}
@media screen and (max-width: 768px) {
  .top-startup__body {
    text-align: center;
  }
}

.section__title--contact {
  text-align: center;
  margin-top: 36px;
}
@media screen and (max-width: 768px) {
  .section__title--contact {
    margin-top: 64px;
  }
}
.section__title--contact span {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 4px;
}
@media screen and (max-width: 768px) {
  .section__title--contact span {
    top: -22px;
  }
}

.top-contact__container {
  background: -webkit-gradient(linear, left top, right bottom, from(#02026d), to(#30cfd0));
  background: linear-gradient(to bottom right, #02026d, #30cfd0);
  color: #fff;
  margin-top: 34px;
  padding: 60px 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-contact__container {
    margin-top: 32px;
    padding: 48px 0;
  }
}

.top-contact__body {
  display: -webkit-box;
  display: -ms-flexbox;
  max-width: 800px;
  width: 100%;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 60px auto 0;
}
@media screen and (max-width: 768px) {
  .top-contact__body {
    display: block;
    margin-top: 48px;
  }
}

.top-contact__text {
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .top-contact__text {
    font-size: 16px;
    font-weight: normal;
  }
}

.top-contact__left {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .top-contact__left {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
}

.top-contact__tel {
  font-size: 22px;
  font-weight: bold;
}
.top-contact__tel span {
  position: relative;
  padding-left: 36px;
}
.top-contact__tel span::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: url(../images/common/tel-icon-white.svg) no-repeat center center/contain;
}

.top-contact__fax {
  font-size: 22px;
  font-weight: bold;
  margin-top: 6px;
}
.top-contact__fax span {
  position: relative;
  padding-left: 36px;
}
.top-contact__fax span::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: url(../images/common/fax-icon-white.svg) no-repeat center center/contain;
}

.top-contact__time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; */
  font-size: 14px;
  margin: 12px auto 0;
  text-align: left;
}
.top-contact__time img {
  width: 44px;
  height: 44px;
}
.top-contact__time__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; 
}
.top-contact__time__head {
  width: 40%;
}
.top-contact__time p {
  margin-left: 8px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .top-contact__time {
    margin: 12px auto 0;
  }
}

.top-contact__btn {
  margin: 18px auto 0;
  max-width: 300px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .top-contact__btn {
    font-size: 16px;
    margin: 54px auto 0;
  }
}

.top-contact__right {
  width: 50%;
}
.top-contact__right .btn {
  display: block;
  max-width: 300px;
  border: none;
  margin: 0 auto;
}
.top-contact__right .btn::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 34px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: url(../images/common/house-icon.svg) no-repeat center center/contain;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.top-contact__right .btn::after {
  background: url(../images/common/aroow-blue.svg) no-repeat center center/contain;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.top-contact__right .btn:nth-child(2) {
  margin-top: 30px;
}
.top-contact__right .btn:nth-child(2)::before {
  background: url(../images/common/cargo-icon.svg) no-repeat center center/contain;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.top-contact__right .btn:hover::before {
  background-image: url(../images/common/house-white.svg);
}
.top-contact__right .btn:hover::after {
  background-image: url(../images/common/arrow-white.svg);
}
.top-contact__right .btn:hover:nth-child(2):before {
  background-image: url(../images/common/cargo-white.svg);
}
@media screen and (max-width: 768px) {
  .top-contact__right .btn {
    margin: 24px auto 0;
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .top-contact__right {
    width: 100%;
  }
}
.nav-links {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.nav-next a {
  display: inline-block;
  padding: 4px 12px;
  background-color: #02026D;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
}
.nav-previous a {
  display: inline-block;
  padding: 4px 12px;
  background-color: #02026D;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
}

.post__inner {
  margin: 80px auto 0;
  max-width: 800px;
  width: 100%;
}
.post__inner h2 {
    font-size: 26px;
    font-weight: bold;
    letter-spacing: 0.08em;
    margin-bottom: 30px;
    padding-bottom: 16px;
    border-bottom: 1px solid #b3b3b3;
  }
  @media screen and (max-width: 768px) {
    .post__inner h2 {
       font-size: 22px;
    }
  }
  .post__inner h3 {
    position: relative;
    font-size: 22px;
    font-weight: bold;
    padding-left: 8px;
    margin-top: 24px;
    margin-bottom: 8px;
    border-left: 3px solid #02026D;
  }

  @media screen and (max-width: 768px) {
  .post__inner h3 {
     margin-top: 16px;
      font-size: 20px;
  }
  }
  .post__inner h4 {
    font-size: 20px;
    font-weight: bold;
    padding: 10px 0 10px 16px;
    background-color: #e8feff;
    margin-top: 24px;
    margin-bottom: 10px;
  }
  @media screen and (max-width: 768px) {
    .post__inner h4 {
margin-top: 12px;
      font-size: 18px;
    }
  }
  .post__inner h5 {
    font-size: 18px;
    font-weight: bold;
    padding: 10px 0 10px 16px;
    background-color: #02026D;
    margin-top: 24px;
    margin-bottom: 8px;
  }
  @media screen and (max-width: 768px) {
  .post__inner h5 {
    font-size: 16px;
  }
}
  .post_inner ul {
    margin-bottom: 16px;
  }
  .post__inner ul li {
      position: relative;
      padding-left: 16px;
  }
   .post__inner ul li::before {
        position: absolute;
        content: "";
        display: inline-block;
        top: 14px;
        left: 0;
        transform: translateY(-50%);
        width: 3px;
        height: 3px;
        border-radius: 50%;
        background-color: #2FC7CD;
        margin-right: 16px;
      }
    
  
    .post__inner p {
    margin-bottom: 8px;
  }
  .post__inner img {
    width: inherit !important;
  }
  .post__inner table img {
    width: 100% !important;
  }
.contact__text {
  margin-top: 40px;
  background-color: #f8f8f8;
  padding: 30px 48px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
   .contact__text {
    padding: 10px;
  }
}
.contact__completion {
  margin-top: 100px;
  margin-bottom: 100px;
  text-align: center;
  line-height: 2;
}
.contact__form {
  margin: 40px auto 80px;
  max-width: 800px;
  width: 100%;
}
@media screen and (max-width: 768px) {
   .contact__form {
    margin-top: 16px;
  }
}
.form__dl + .form__dl {
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
   .form__dl + .form__dl {
    margin-top: 8px;
  }
}

.form__title .required {
  position: relative;
  display: inline-block;
}
.form__title .required::after {
  position: absolute;
  content: "必須";
  display: inline-block;
  top: 50%;
  right: -54px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 11px;
  font-weight: normal;
  color: #fff;
  background-color: #ff5555;
  width: 34px;
  padding: 1px 2px;
  text-align: center;
  border-radius: 4px;
}

.form__input {
  width: 100%;
  height: 48px;
  padding: 10px;
  background-color: #f8f8f8;
  border-radius: 8px;
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
   .form__input {
    height: 40px;
  }
}

input[type=text],
input[type=email],
input[type=tel],
input[type=address] {
  width: 100%;
  border: none;
  background-color: transparent;
}

.form__input-textarea {
  width: 100%;
  height: 200px;
  background-color: #f8f8f8;
  padding: 10px;
  border-radius: 8px;
  margin-top: 8px;
}

textarea {
  width: 100%;
  height: 100%;
  padding-left: 10px;
  border: none;
  background-color: transparent;
}

.form__bottom {
  margin-top: 30px;
  text-align: center;
}
input[type="submit"] {
  width: 232px;
  font-size: 16px;
  color: #fff;
  display: inline-block;
  padding: 15px 0px;
  text-align: center;
  background-color: #02026d;
  border: 1px solid #02026d;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

input[type="submit"]:hover {
  color: #02026d;
  background-color: #ffffff;
}
.form__input-half {
  width: 50%;
}

.contact__ol {
  counter-reset: count 0;
  list-style-type: none;
  margin-top: 40px;
}

.contact__ol li:not(:nth-child(1)) {
  margin-top: 10px;
}
.contact__ol li:before {
  content: counter(count) ". ";
  counter-increment: count 1;
}

.form__input-select {
  display: block;
  width: 100px;
  height: 48px;
  margin-top: 8px;
  padding: 10px 10px 10px 20px;
  border-radius: 8px;
  background-color: #f8f8f8;
}
@media screen and (max-width: 768px) {
   .form__input-select {
    height: 40px;
  }
}

select {
  width: 100%;
  height: 100%;
  display: inline-block;
  border: none;
  background-color: transparent;
  border-radius: 8px;
}

.form__input__text {
  background-color: #fff;
}

input[type=radio] {
  display: inline-block;
}

.form__input--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; 
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 8px;
}
.form__input--flex select {
  width: 100px;
  margin-right: 8px;
  padding: 10px 10px 10px 20px;
  background-color: #f8f8f8;
  border-radius: 8px;
}
.mr4 {
  margin-right: 4px;
}

.ml4 {
  margin-left: 4px;
}

.mlr12 {
  margin-left: 16px;
  margin-right: 16px;
}

.mr14 {
  margin-right: 14px;
}

.form__atention {
  margin-top: 8px;
}

.form__input-radio {
  width: 100%;
  margin-top: 8px;
  text-align: left;
  overflow-x: hidden;
}

.form__2col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .form__2col {
    display: block;
  }
}
/* .form__col {
  width: 48%;
}
@media screen and (max-width: 768px) {
  .form__col {
    width: 100%;
  }
} */
.form__table {
  width: 48%;
  text-align: center;
  border-collapse: collapse;
  border: 1px solid #888;
}
@media screen and (max-width: 768px) {
  .form__table {
    width: 100%;
  }
}

.form__table__title {
  padding: 20px;
  background-color: #f8f8f8;
  font-weight: bold;
  font-size: 16px;
  border: 1px solid #888;
}


.form__table__dt {
  width: 80%;
  text-align: left;
  padding: 20px 10px;
  border: 1px solid #888;
  font-weight: normal;
  white-space: nowrap;
}
.form__table__dt input[type="text"] {
  border: 1px solid #888;
  border-radius: 8px;
}
.form__table__select {
  width: 20%;
  padding: 20px 10px;
  border-top: 1px solid #888;
  border-right: 1px solid #888;
  
}
.form__table__select select {
  display: inline-block;
  max-width: 44px !important;
  width: 100%;
  padding: 2px 0;
  border: 1px solid #000;
  border-radius: 8px;
}

@media screen and (max-width: 768px) {
  .u__mt60 {
    margin-top: 60px;
  }
}

@media screen and (max-width: 768px) {
  .u__mt40 {
    margin-top: 40px;
  }
}
.u__mt42 {
  margin-top: 42px;
}
@media screen and (max-width: 768px) {
  .u__mt42 {
    margin-top: 32px;
  }
}

@media screen and (max-width: 768px) {
  .u__mt20 {
    margin-top: 20px;
  }
}


@media screen and (max-width: 768px) {
  .u__mt0 {
    margin-top: 0;
  }
}
.u__mt4 {
  margin-top: 4px;
}
.u__mt16 {
  margin-top: 16px;
}
/*# sourceMappingURL=styles.css.map */
.u__mt0 {
  margin-top: 0;
}
.u__fz13 {
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  .u__fz13 {
    font-size: 10px;
  }
}

.u__fw-nomal {
  font-weight: normal;
}

.element {
  /* 最初は非表示 */
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 1s, visibility 1s, transform 1s;
}
/* フェードイン時に入るクラス */
.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.flex {
  display: flex;
  align-items: center;
  align-items: flex-end;
  gap: 10px;
}
#content_ifr {
  height: 1000px !important;
}
.bg-gray {
  background-color: #f8f8f8;
}
.bg-blue {
  background-color: #e8f3ff;
}
.bg-purple {
  background-color: #cfcfff;
}