@charset "UTF-8";
/* ----------------------------------------
  初期設定
---------------------------------------- */
/* ---------------------------
  フォント
--------------------------- */
/* 日本語フォント */
/* 英字フォント */
.en {
  font-family: "Jost", sans-serif;
}

/* ---------------------------
  カラー
--------------------------- */
/* ---------------------------
  ヘッダー高さ
--------------------------- */
/* ---------------------------
  レスポンシブ
--------------------------- */
/* ----------------------------------------
  共通設定
---------------------------------------- */
html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  background: #FFFFFF;
  color: #204483;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.5rem;
  }
}

body.no-scroll {
  overflow-y: hidden;
}

h1,
h2,
h3,
h4,
h5,
p,
ul,
li,
ol,
th,
td {
  padding: 0;
  margin: 0;
  /* font-size: initial; */
}

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

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

section {
  padding: 6rem 0;
}
@media screen and (max-width: 768px) {
  section {
    padding: 4rem 0;
  }
}

.inner {
  width: 100%;
  padding: 0 2.4rem;
  margin-left: auto;
  margin-right: auto;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.wrapper {
  max-width: 128rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 768px) {
  .wrapper {
    max-width: 100%;
  }
}

.container {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  gap: 6rem;
}
@media screen and (max-width: 768px) {
  .container {
    gap: 3rem;
  }
}

.text {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .text {
    text-align: center;
  }
}
.text.center {
  text-align: center;
}

.red {
  color: #FF0000;
}

.white {
  color: #FFFFFF;
}

/* スライダー */
.swiper {
  width: 100%;
}
.swiper-slide {
  width: 100%;
  height: 100%;
}
.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ----------------------------------------
  コンポーネント
---------------------------------------- */
/* ---------------------------------↓編集済み */
/* ---------------------------
  h2 セクションタイトル
--------------------------- */
.ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  gap: 3.2rem;
}
@media screen and (max-width: 768px) {
  .ttl {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.6rem;
  }
}
.ttl__en {
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: 8rem;
  line-height: 0.7;
  letter-spacing: 0.03em;
  color: #008AD1;
}
@media screen and (max-width: 768px) {
  .ttl__en {
    font-size: 5rem;
  }
}
.ttl__ja {
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .ttl__ja {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.ttl.center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.ttl.right {
  text-align: right;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .ttl.right {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

/* ---------------------------
  h3 リード文
--------------------------- */
.lead {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8;
  color: #204483;
}
@media screen and (max-width: 768px) {
  .lead {
    font-size: 1.5rem;
  }
}

/* ---------------------------
  ボタン
--------------------------- */
.btn {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.btn a {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 0.7222222222;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.2rem;
  padding-bottom: 1.6rem;
  border-bottom: 2px solid #008AD1;
  position: relative;
}
.btn a:hover .btn__arrow {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
.btn__arrow {
  width: 2.8rem;
  height: 2.8rem;
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.btn.right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
/* ---------------------------
  下層ページMV
--------------------------- */
.page-mv {
  width: 100%;
  height: 45rem;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: url(../img/common/mv.jpg) no-repeat left top/cover;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page-mv {
    padding-top: 7.6rem;
  }
}
.page-mv__ttl {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  gap: 3.2rem;
}
@media screen and (max-width: 768px) {
  .page-mv__ttl {
    gap: 2rem;
  }
}
.page-mv__ttl-en {
  font-family: "Jost", sans-serif;
  font-weight: 700;
  line-height: 0.703125;
  font-size: 6.4rem;
  letter-spacing: 0.03em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .page-mv__ttl-en {
    font-size: 4.8rem;
    line-height: 0.7083333333;
  }
}
.page-mv__ttl-ja {
  font-size: 1.8rem;
  line-height: 0.7222222222;
  font-weight: 700;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .page-mv__ttl-ja {
    font-size: 1.6rem;
    line-height: 0.6875;
  }
}

/* ---------------------------
  パンくずリスト
--------------------------- */
.breadcrumbs {
  position: absolute;
  bottom: 2.4rem;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.breadcrumbs__inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.breadcrumbs__inner > span:last-of-type {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.breadcrumbs__wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 0.4rem;
     -moz-column-gap: 0.4rem;
          column-gap: 0.4rem;
  max-width: 131.2rem;
  color: #FFFFFF;
}
.breadcrumbs .home,
.breadcrumbs .post,
.breadcrumbs .category {
  font-size: 1.5rem;
}
.breadcrumbs .current-item {
  line-height: 1.2;
  font-size: 1.5rem;
  font-weight: 700;
}
.breadcrumbs span .home {
  display: block;
  width: 2rem;
  height: 2rem;
  background: url(../img/common/home.png) no-repeat center center/contain;
  vertical-align: middle;
}

/* ---------------------------
  ページ紹介文
--------------------------- */
.page-intro {
  padding: 6rem 0;
}
@media screen and (max-width: 768px) {
  .page-intro {
    padding: 4rem 0;
  }
}
.page-intro__wrapper {
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .page-intro__wrapper {
    gap: 3rem;
  }
}
.page-intro__lead {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page-intro__lead {
    text-align: left;
    font-size: 2rem;
  }
}
.page-intro p {
  font-weight: 700;
  text-align: center;
}

/* ---------------------------
  ヘッダー
--------------------------- */
/* ---------------------------------↓編集済み */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  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%;
  background: transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header.is-scrolled {
  background: rgba(52, 102, 173, 0.85);
  /* ← 濃さは調整 */
  backdrop-filter: blur(6px);
}
.header__inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1.6rem 4rem;
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding: 0.8rem 2.4rem;
  }
}
.header__ttl {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 2;
  color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .header__ttl {
    font-size: 2rem;
  }
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 3.2rem;
}
@media screen and (max-width: 1024px) {
  .header__nav {
    gap: 2rem;
  }
}
@media screen and (max-width: 950px) {
  .header__nav {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .header__nav {
    display: none;
  }
}
.header__nav-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 3.2rem;
}
@media screen and (max-width: 1024px) {
  .header__nav-lists {
    gap: 2rem;
  }
}
.header__nav-lists a {
  font-weight: 700;
  color: #FFFFFF;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.header__btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8rem;
}
.header__btn-mail {
  padding: 1.6rem 2.4rem;
  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;
  background: #008AD1;
  color: #FFFFFF;
  gap: 1rem;
  border-radius: 4px;
  -webkit-box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1024px) {
  .header__btn-mail {
    padding: 1.2rem;
  }
}
.header__mailicon {
  width: 2rem;
  height: 2rem;
}

.toggle-wrapper {
  display: none;
}
@media screen and (max-width: 950px) {
  .toggle-wrapper {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .toggle-wrapper {
    display: block;
  }
}

.toggle {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  background-color: transparent;
  cursor: pointer;
  width: 3.2rem;
  height: 3.2rem;
  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;
}
.toggle__line {
  display: block;
  -webkit-transition: translate 0.5s, rotate 0.5s;
  transition: translate 0.5s, rotate 0.5s;
  height: 0.2rem;
  width: 2.4rem;
  background: #FFFFFF;
}
.toggle__line:nth-of-type(1) {
  translate: 0 1rem;
}
.toggle__line:nth-of-type(3) {
  translate: 0 -1rem;
}

/* ---------------------------
  ドロワートグル
--------------------------- */
.toggle.is-active .toggle__line:nth-of-type(1) {
  translate: 0 0.1rem;
  rotate: -45deg;
}
.toggle.is-active .toggle__line:nth-of-type(2) {
  display: none;
}
.toggle.is-active .toggle__line:nth-of-type(3) {
  translate: 0 -0.1rem;
  rotate: 45deg;
}

/* ---------------------------
  ドロワー
--------------------------- */
:root:has(.drawer.js-open) {
  overflow: hidden;
}

.drawer {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  height: auto;
  background: #204483;
  /*スクロールバーは非表示*/
  overflow-y: scroll;
  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 99;
}
.drawer.js-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.drawer__content {
  padding-bottom: 9rem;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.2rem;
  width: 100%;
}
.drawer__lists {
  padding: 13.6rem 4rem 0;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  gap: 3.2rem;
}
.drawer__lists ul {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
.drawer__lists li {
  width: 100%;
}
.drawer__lists a {
  width: 100%;
  color: #FFFFFF;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid #DDDDDD;
}
.drawer__btn-wrapper {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  padding-inline: 4rem;
}
.drawer__btn-mail {
  padding: 2.4rem;
  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;
  background: #008AD1;
  border-radius: 0.4rem;
  width: 100%;
  color: #FFFFFF;
  gap: 1rem;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 0.6875;
}
.drawer__mailicon {
  width: 2rem;
  height: 2rem;
}

/* ---------------------------
  cta
--------------------------- */
.cta {
  background: url(../img/common/cta_bg.jpg) no-repeat center center/cover;
}
.cta__container {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .cta__container {
    gap: 2.4rem;
  }
}
.cta__ttl {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.5;
  color: #FFFFFF;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .cta__ttl {
    font-size: 2.4rem;
  }
}
.cta__copy {
  color: #FFFFFF;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .cta__copy {
    font-size: 1.5rem;
  }
}
.cta__btn-wrapper {
  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;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .cta__btn-wrapper {
    gap: 2.4rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.cta__btn-tel {
  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;
  gap: 1.2rem;
}
.cta__btn-tel--top {
  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;
  gap: 1rem;
  font-family: "Jost", sans-serif;
  font-style: normal;
  font-size: 4rem;
  font-weight: 700;
  line-height: 0.7;
  color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .cta__btn-tel--top {
    font-size: 3.2rem;
    letter-spacing: 0;
  }
}
.cta__btn-mail {
  background: #FFFFFF;
  padding: 2.4rem 4rem;
  gap: 1.2rem;
  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;
  font-size: 2rem;
  font-weight: 700;
  border-radius: 4px;
  -webkit-box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.2);
}
.cta__icon-tel {
  width: 2.8rem;
  height: 2.8rem;
}
.cta__icon-mail {
  width: 3rem;
  height: 3rem;
}
.cta__attention {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .cta__attention {
    font-size: 1.4rem;
  }
}

/* ---------------------------
  フッター
--------------------------- */
.footer {
  background: -webkit-gradient(linear, left top, right top, from(#204483), to(#61C8ED));
  background: linear-gradient(to right, #204483, #61C8ED);
  color: #FFFFFF;
  padding-top: 6rem;
  padding-bottom: 2.4rem;
}
@media screen and (max-width: 768px) {
  .footer {
    padding-top: 3rem;
  }
}
.footer__wrapper {
  gap: 4rem;
}
.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .footer__top {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer__ttl {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 1020px) {
  .footer__menu {
    width: 43.828125%;
  }
}
@media screen and (max-width: 768px) {
  .footer__menu {
    width: 100%;
  }
}
.footer__menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3.2rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .footer__menu ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .footer__lists {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}
.footer__list {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .footer__list {
    font-size: 1.4rem;
  }
}
.footer .copyright {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  width: 100%;
}

/* ------------------------------------------------------------
  TOPページ
------------------------------------------------------------ */
/* ---------------------------
  メインビジュアル
--------------------------- */
/* スライダー */
.swiper {
  width: 100%;
}
.swiper-wrapper {
  width: 100%;
}
.swiper-slide {
  width: 100%;
  height: 100%;
}
.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mv {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 75rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .mv {
    height: 69rem;
  }
}
.mv__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.mv__wrapper {
  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%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.mv__wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 75.7rem;
  height: 100%;
  background: rgba(52, 102, 173, 0.85);
  pointer-events: none;
  z-index: 2;
  clip-path: polygon(0 0, 100% 0, 76.63% 100%, 0% 100%);
  mix-blend-mode: multiply;
}
@media screen and (max-width: 768px) {
  .mv__wrapper::before {
    width: 100%;
  }
}
.mv__swiper {
  height: 75rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .mv__swiper {
    height: 69rem;
  }
}
.mv__container {
  position: absolute;
  content: "";
  top: 50%;
  left: 3.4722222222%;
  z-index: 2;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 84.8rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.6rem;
}
@media screen and (max-width: 768px) {
  .mv__container {
    left: 1.8rem;
    grid-area: 1rem;
  }
}
.mv__ttl {
  max-width: 59.3rem;
  width: 100%;
  opacity: 1;
  overflow: hidden;
  clip-path: inset(0 100% 0 0);
  -webkit-animation: titleReveal 0.8s ease 0.5s forwards;
          animation: titleReveal 0.8s ease 0.5s forwards;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  will-change: clip-path;
}
@media screen and (max-width: 768px) {
  .mv__ttl {
    width: 31.6rem;
  }
}
.mv__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
.mv__lead {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
  color: #FFFFFF;
  padding-bottom: 2rem;
  border-bottom: 1px solid #FFFFFF;
}
@media screen and (max-width: 768px) {
  .mv__lead {
    font-size: 2rem;
    padding-bottom: 1rem;
  }
}
.mv__copy {
  line-height: 2;
  color: #FFFFFF;
  padding-top: 2rem;
}
@media screen and (max-width: 768px) {
  .mv__copy {
    font-size: 1.4rem;
    padding-top: 1rem;
  }
}

@-webkit-keyframes titleReveal {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0% 0 0);
  }
}

@keyframes titleReveal {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0% 0 0);
  }
}
.jtekt {
  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: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 1.6rem;
  width: 100%;
  position: absolute;
  right: 4rem;
  bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .jtekt {
    gap: 1rem;
    right: 2rem;
    bottom: 2rem;
  }
}
.jtekt__img {
  width: 30rem;
  height: auto;
}
@media screen and (max-width: 768px) {
  .jtekt__img {
    width: 19.8rem;
  }
}
.jtekt__txt {
  color: #FFFFFF;
  font-size: 1.5rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .jtekt__txt {
    font-size: 1rem;
  }
}

/* ---------------------------
  事業内容
--------------------------- */
#top .service {
  padding: 10rem 0;
}
@media screen and (max-width: 768px) {
  #top .service {
    padding: 6rem 0;
  }
}
#top .service .lead {
  text-align: center;
}
#top .service__cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(327px, 1fr));
  gap: 4rem;
  width: 100%;
}
#top .service__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  gap: 3.2rem;
}
@media screen and (max-width: 768px) {
  #top .service__card {
    gap: 1.6rem;
  }
}
#top .service__card-item {
  border-left: 1px solid #204483;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8rem;
  width: 100%;
  padding: 0.8rem 0 3.7rem 4rem;
}
@media screen and (max-width: 768px) {
  #top .service__card-item {
    padding-left: 2rem;
    padding-bottom: 0.8rem;
  }
}
#top .service__card-ttl {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8;
}

/* ---------------------------
  flow
--------------------------- */
#top .flow {
  padding: 10rem 0;
}
@media screen and (max-width: 768px) {
  #top .flow {
    padding: 6rem 0;
  }
}
#top .flow__wrapper {
  max-width: 136rem;
}
#top .flow__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  gap: 3rem;
}
@media screen and (max-width: 768px) {
  #top .flow__heading {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#top .flow .lead {
  width: 100%;
}

.flow__items {
  background: #F6F6F6;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 6rem 4rem;
  gap: 4.4rem;
}
@media screen and (max-width: 768px) {
  .flow__items {
    padding: 3rem 4rem;
    -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;
  }
}
.flow__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.6rem;
  width: 22rem;
}
@media screen and (max-width: 768px) {
  .flow__item {
    gap: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .flow__item:not(:last-child) {
    position: relative;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .flow__item:not(:last-child)::after {
    content: "";
    position: absolute;
    background: url(../img/top/flow_arrow.png) no-repeat center center/cover;
    width: 2.4rem;
    height: 2.4rem;
    bottom: -1rem;
    -webkit-transform: rotate(90deg) translate(100%, -50%);
            transform: rotate(90deg) translate(100%, -50%);
    right: 50%;
    z-index: 5;
  }
}
.flow__item:not(:last-child) .flow__card::after {
  content: "";
  position: absolute;
  background: url(../img/top/flow_arrow.png) no-repeat center center/cover;
  width: 2.4rem;
  height: 2.4rem;
  top: 50%;
  -webkit-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
  right: -1rem;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .flow__item:not(:last-child) .flow__card::after {
    display: none;
  }
}
.flow__card {
  background: #FFFFFF;
  width: 100%;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  padding: 4rem 0;
  position: relative;
}
.flow__card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 4.6rem;
  height: 4.6rem;
  background: #F6F6F6;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.flow__img {
  width: 14.2rem;
  height: 100%;
}
.flow__card-ttl {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 0.7222222222;
}

/* ---------------------------
  strengths
--------------------------- */
#top .strengths {
  padding: 10rem 0;
}
@media screen and (max-width: 768px) {
  #top .strengths {
    padding: 6rem 0;
  }
}
@media screen and (max-width: 768px) {
  #top .strengths__inner {
    padding: 0 1.6rem;
  }
}
#top .strengths__contents {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8rem;
  width: 100%;
  padding-bottom: 6rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  #top .strengths__contents {
    gap: 5rem;
  }
}
#top .strengths__contents::before {
  content: "";
  position: absolute;
  background: url(../img/top/strengths_bg.png) no-repeat center center/cover;
  right: min(64rem - 50vw, -2.4rem);
  top: 24.5rem;
  width: 91.6666666667vw;
  height: 201.5rem;
  z-index: -2;
}
@media screen and (max-width: 768px) {
  #top .strengths__contents::before {
    top: 10.2rem;
    height: -webkit-fill-available;
    height: -moz-available;
    height: stretch;
    background: url(../img/top/strengths_bg-sp.png) no-repeat center center/cover;
    width: 93.3333333333vw;
  }
}
#top .strengths__content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  #top .strengths__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#top .strengths__content:nth-of-type(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
#top .strengths__content:nth-of-type(2n) .strengths__block {
  margin-left: 0;
  margin-right: max((100% - 111rem) / 2, 0rem);
}
#top .strengths__content:nth-of-type(2n) .strengths__img {
  margin-right: -7.3rem;
  margin-left: min(64rem - 50vw, -2.4rem);
}
@media screen and (max-width: 768px) {
  #top .strengths__content:nth-of-type(2n) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #top .strengths__content:nth-of-type(2n) .strengths__block {
    margin-right: 0;
  }
  #top .strengths__content:nth-of-type(2n) .strengths__img {
    margin-left: 0;
    margin-right: 0;
  }
}
#top .strengths__content:nth-of-type(1) .strengths__block::before {
  content: "01";
}
#top .strengths__content:nth-of-type(2) .strengths__block::before {
  content: "02";
}
#top .strengths__content:nth-of-type(3) .strengths__block::before {
  content: "03";
}
#top .strengths__content:nth-of-type(4) .strengths__block::before {
  content: "04";
}
#top .strengths__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  padding: 6rem 4rem;
  background: #FFFFFF;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  width: 49.8rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: max((100% - 111rem) / 2, 0rem);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #top .strengths__block {
    width: 100%;
    margin-left: 0;
    margin-bottom: -2rem;
    padding: 2.4rem 2rem;
  }
}
#top .strengths__block::before {
  position: absolute;
  top: -2.2rem;
  left: 3.2rem;
  font-size: 7rem;
  font-weight: 700;
  line-height: 1;
  font-style: italic;
  font-family: "Jost", sans-serif;
  color: #008AD1;
}
@media screen and (max-width: 768px) {
  #top .strengths__block::before {
    font-size: 4rem;
    top: 0;
    left: 0.2rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
#top .strengths__ttl {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 1rem;
  border-bottom: 1px solid #204483;
}
@media screen and (max-width: 768px) {
  #top .strengths__ttl {
    font-size: 2rem;
  }
}
#top .strengths__img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 49rem;
  overflow: hidden;
  margin-left: -7.3rem;
  margin-right: min(64rem - 50vw, -2.4rem);
}
@media screen and (max-width: 768px) {
  #top .strengths__img {
    width: calc(100% + 4.8rem);
    height: 40rem;
    margin-left: -2.4rem;
    margin-right: -2.4rem;
  }
}
#top .strengths__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#top .strengths__text {
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #top .strengths__text {
    font-size: 1.5rem;
    text-align: left;
  }
}

/* ---------------------------
  about/rectuitment
--------------------------- */
.col2 {
  padding: 10rem 0;
  background: url(../img/top/col2_bg.jpg) no-repeat center center/cover;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .col2 {
    padding: 6rem 0;
  }
}
.col2__wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 3rem;
}
@media screen and (max-width: 768px) {
  .col2__wrapper {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.col2__container {
  background: rgba(255, 255, 255, 0.85);
  padding: 5.6rem;
  width: 48.828125%;
  gap: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 0.4rem;
  -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  .col2__container {
    width: 100%;
    padding: 2rem;
  }
}
.col2__ttl {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 1rem;
  border-bottom: 1px solid #204483;
}
@media screen and (max-width: 768px) {
  .col2__ttl {
    font-size: 2.4rem;
  }
}
.col2__txt {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .col2__txt {
    font-size: 1.5rem;
  }
}
.col2 .btn p {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 0.7222222222;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.2rem;
  padding-bottom: 1.6rem;
  border-bottom: 2px solid #008AD1;
  position: relative;
}
.col2 .col2__container:hover .btn__arrow {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

/* ---------------------------
  news
--------------------------- */
#top .news {
  padding: 10rem 0;
}
@media screen and (max-width: 768px) {
  #top .news {
    padding: 6rem 0;
  }
}
#top .news__container {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -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;
}
@media screen and (max-width: 768px) {
  #top .news__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#top .news__left {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
#top .news .ttl {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#top .news__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 54.6875%;
  gap: 6rem;
}
@media screen and (max-width: 768px) {
  #top .news__right {
    width: 100%;
  }
}
#top .news__posts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  gap: 2.4rem;
}

.news__post {
  width: 100%;
  padding-inline: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #DDDDDD;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.6rem;
}
@media screen and (max-width: 768px) {
  .news__post {
    padding-inline: 0;
  }
}
.news__date {
  font-size: 1.8rem;
  line-height: 1;
}
.news__ttl {
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .news__ttl {
    font-size: 1.5rem;
  }
}
.news__time {
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 700;
}

/* ------------------------------------------------------------
  会社案内ページ
------------------------------------------------------------ */
.company__ttl {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.7;
  padding-bottom: 2.4rem;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .company__ttl {
    padding-bottom: 1.6rem;
    font-size: 2.4rem;
    line-height: 1.5;
  }
}
.company__ttl::before {
  content: "";
  position: absolute;
  background: #008AD1;
  height: 4px;
  width: 19.6rem;
  left: 0;
  bottom: 0;
  z-index: 1;
}
.company__ttl::after {
  content: "";
  position: absolute;
  background: #F6F6F6;
  height: 4px;
  width: 100%;
  left: 0;
  bottom: 0;
}

/* ---------------------------
  企業理念
--------------------------- */
.philosophy__lists {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 90rem;
  gap: 3.2rem;
}
.philosophy__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
}
@media screen and (max-width: 768px) {
  .philosophy__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.6rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.philosophy__term {
  position: relative;
  width: 23.8rem;
  min-width: 23.8rem;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .philosophy__term {
    width: 100%;
    min-width: auto;
  }
}
.philosophy__term::before {
  content: "";
  position: absolute;
  background: #008AD1;
  width: 2rem;
  height: 1px;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .philosophy__term::before {
    top: initial;
    bottom: -0.8rem;
    right: initial;
    left: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.philosophy__desc {
  width: 70.2222222222%;
}
@media screen and (max-width: 768px) {
  .philosophy__desc {
    width: 100%;
    font-size: 1.5rem;
  }
}

/* ---------------------------
  代表挨拶
--------------------------- */
.message__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6.6666666667%;
  max-width: 90rem;
}
@media screen and (max-width: 768px) {
  .message__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2rem;
  }
}
.message__left {
  width: 21.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.6rem;
}
@media screen and (max-width: 768px) {
  .message__left {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.message__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.6rem;
  width: 69.4444444444%;
}
@media screen and (max-width: 768px) {
  .message__right {
    width: 100%;
  }
}
.message__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.4rem;
}
@media screen and (max-width: 768px) {
  .message__item {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.message__president {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .message__president {
    font-size: 1.4rem;
  }
}
.message__name {
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .message__name {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .message__img {
    width: 21rem;
    width: 100%;
  }
}

/* ---------------------------
  会社概要
--------------------------- */
.overview__wrapper {
  gap: 6rem;
}
.overview__container {
  max-width: 90rem;
  gap: 3rem;
}
.overview__table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
.overview__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  border-bottom: 1px solid #DDDDDD;
  border-left: 1px solid #DDDDDD;
  border-right: 1px solid #DDDDDD;
}
@media screen and (max-width: 768px) {
  .overview__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.overview__row:first-child {
  border-top: 1px solid #DDDDDD;
}
.overview__term {
  width: 20.8rem;
  padding: 1.6rem 2.4rem;
  background: #F9F9F9;
  border-right: 1px solid #DDDDDD;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .overview__term {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #DDDDDD;
    padding: 1.2rem;
  }
}
.overview__desc {
  padding: 1.6rem 1.2rem;
  width: 76.7777777778%;
}
@media screen and (max-width: 768px) {
  .overview__desc {
    width: 100%;
    padding: 1.2rem;
  }
}
.overview__link {
  color: #008AD1;
  text-decoration: underline;
  display: block;
}

.iframe-map__wrapper {
  width: 100%;
}
.iframe-map {
  width: 100%;
  padding-top: 49.0196078431%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .iframe-map {
    padding-top: 122.3241590214%;
  }
}
.iframe-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ------------------------------------------------------------
  事業内容ページ
------------------------------------------------------------ */
#service .page-intro {
  padding: 10rem 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(#E7F6FF));
  background: linear-gradient(#FFFFFF, #E7F6FF);
}
@media screen and (max-width: 768px) {
  #service .page-intro {
    padding: 6rem 0;
  }
}
#service .page-intro p {
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  #service .page-intro p {
    text-align: left;
  }
}

#service .service {
  background: #E7F6FF;
}
#service .service__wrapper {
  gap: 4rem;
}
#service .service__container {
  gap: 4rem;
}
#service .service__col1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  background: #FFFFFF;
  padding: 4rem 4.8rem;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  #service .service__col1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 3.2rem 1.6rem;
    gap: 2.4rem;
  }
}
#service .service__col1:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  #service .service__col1:nth-child(2n) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#service .service__col1:nth-child(2n) .service__img {
  margin-left: -6.8rem;
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  #service .service__col1:nth-child(2n) .service__img {
    margin-left: 0;
  }
}
#service .service__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  width: 60rem;
}
@media screen and (max-width: 768px) {
  #service .service__left {
    width: 100%;
  }
}
#service .service__col1-ttl {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.7;
  padding-bottom: 1rem;
  border-bottom: 1px solid #204483;
}
@media screen and (max-width: 768px) {
  #service .service__col1-ttl {
    font-size: 2.4rem;
  }
}
#service .service__txt {
  font-weight: 700;
}
#service .service__lists {
  margin-left: 2rem;
}
#service .service__lists li {
  list-style: disc;
}
#service .service__right {
  margin-right: -6.8rem;
  width: 44.6875%;
  min-width: 28.7rem;
}
@media screen and (max-width: 768px) {
  #service .service__right {
    margin-right: 0;
    min-width: none;
    width: 100%;
    margin-bottom: -5.2rem;
  }
}
#service .service__img {
  width: 100%;
  height: auto;
}
#service .service__container-col2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 4rem 6rem;
}
@media screen and (max-width: 768px) {
  #service .service__container-col2 {
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
  }
}
#service .service__card {
  background: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 4rem;
  gap: 3.2rem;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  #service .service__card {
    padding: 2.4rem;
    gap: 2rem;
  }
}
#service .service__col2-ttl {
  font-size: 2.8rem;
  font-weight: 700;
  padding-bottom: 1rem;
  border-bottom: 1px solid #204483;
}
@media screen and (max-width: 768px) {
  #service .service__col2-ttl {
    font-size: 2rem;
  }
}

.flow__wrapper {
  max-width: 136rem;
}
.flow__lead {
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .flow__lead {
    text-align: left;
  }
}

.area {
  padding-bottom: 10rem;
}
@media screen and (max-width: 768px) {
  .area {
    padding-bottom: 4rem;
  }
}
.area__wrapper {
  max-width: 90rem;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .area__wrapper {
    gap: 2rem;
  }
}
.area__ttl {
  font-size: 3.5rem;
  font-weight: 700;
  width: 100%;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .area__ttl {
    font-size: 2.4rem;
  }
}
.area__ttl::before, .area__ttl::after {
  content: "";
  position: absolute;
  background: #204483;
  height: 1px;
  width: 38.1111111111%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .area__ttl::before, .area__ttl::after {
    width: 22.6666666667%;
  }
}
.area__ttl::before {
  left: 0;
}
.area__ttl::after {
  right: 0;
}
.area p {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  font-weight: 700;
}

/* ------------------------------------------------------------
  採用情報ページ
------------------------------------------------------------ */
.recruit-message {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(53%, #ffffff), to(#E7F6FF));
  background: linear-gradient(to bottom, #ffffff 53%, #E7F6FF 100%);
}
.recruit-message__inner {
  padding-right: 0;
  padding-left: 8rem;
}
@media screen and (max-width: 768px) {
  .recruit-message__inner {
    padding-inline: 1.5rem;
  }
}
.recruit-message__wrapper {
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .recruit-message__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3rem;
  }
}
.recruit-message__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
  width: 45.4166666667%;
}
@media screen and (max-width: 768px) {
  .recruit-message__left {
    width: 100%;
    padding-inline: 0.9rem;
    gap: 3rem;
  }
}
.recruit-message__ttl {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .recruit-message__ttl {
    font-size: 2.4rem;
  }
}
.recruit-message__ttl .blue {
  color: #008AD1;
}
.recruit-message__txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.6rem;
}

.working {
  background: #E7F6FF;
}
.working__wrapper {
  gap: 6rem;
}
.working__ttl {
  font-size: 3.5rem;
  font-weight: 700;
  padding-bottom: 1.6rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .working__ttl {
    font-size: 2.4rem;
  }
}
.working__ttl::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 5px;
  width: 3.8rem;
  background: #008AD1;
}
.working__cards {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .working__cards {
    gap: 3rem;
  }
}
.working__card {
  background: #FFFFFF;
  padding: 2.4rem 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  gap: 6rem;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .working__card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.4rem;
    padding: 2.4rem 1.6rem;
  }
}
.working__img {
  width: 46.3743676223%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .working__img {
    width: 100%;
  }
}
.working__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  width: 48.5666104553%;
}
@media screen and (max-width: 768px) {
  .working__right {
    width: 100%;
  }
}
.working__card-ttl {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 1rem;
  border-bottom: 1px solid #204483;
}
@media screen and (max-width: 768px) {
  .working__card-ttl {
    font-size: 2rem;
  }
}

.description__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .description__cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
}
.description__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.2rem;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .description__card {
    gap: 1.6rem;
  }
}
.description__img img {
  aspect-ratio: 400/280;
}
.description__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  gap: 0.8rem;
  padding: 0.8rem 0 0.8rem 4rem;
  border-left: 1px solid #204483;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .description__item {
    padding: 0.8rem 0 0.8rem 1.6rem;
  }
}
.description__item-ttl {
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .description__item-ttl {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 768px) {
  .requirements__container {
    gap: 6rem;
  }
}

requirements__lead {
	text-align: center;
}
.requirements__anchor {
  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;
  gap: 3.2rem;
}
@media screen and (max-width: 768px) {
  .requirements__anchor {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.6rem;
  }
}
.requirements__link {
  border: 1px solid #204483;
  height: 5rem;
  width: 24rem;
  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: 1.8rem;
  line-height: 1;
  font-weight: 700;
  position: relative;
}
.requirements__link::before {
  content: "";
  position: absolute;
  background: url(../img/recruit/anchor.svg) no-repeat center center/cover;
  width: 0.8rem;
  height: 0.4rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 2.6rem;
}
.requirements__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  gap: 2.4rem;
  max-width: 90rem;
}
.requirements__post {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
  padding-left: 2.4rem;
  border-left: 6px solid #008AD1;
}
.requirements .overview__desc a {
  text-decoration: underline;
}

/* ------------------------------------------------------------
  お知らせページ
------------------------------------------------------------ */
#news .news {
  background: #F9F9F9;
}
#news .news__wrapper {
  max-width: 116rem;
}
#news .news__container {
  background: #FFFFFF;
  padding: 6rem;
}
@media screen and (max-width: 768px) {
  #news .news__container {
    padding: 3rem 2.4rem;
  }
}
#news .news__posts {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  gap: 2.4rem;
  max-width: 90rem;
}

/* ---------------------------
  ページネーション
--------------------------- */
.pagination {
  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;
  gap: 1.2rem;
}

.page-numbers {
  width: 4.4rem;
  height: 4.4rem;
  border: 1.5px solid #204483;
  color: #204483;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.page-numbers.current {
  background: #204483;
  color: #FFFFFF;
}
.page-numbers.next, .page-numbers.prev {
  border: none;
}
.page-numbers.prev {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

/* ------------------------------------------------------------
  お知らせ記事ページ
------------------------------------------------------------ */
#single .single {
  background: #F9F9F9;
}
#single .single__wrapper {
  max-width: 116rem;
}
#single .single__container {
  background: #FFFFFF;
  padding: 6rem;
}
@media screen and (max-width: 768px) {
  #single .single__container {
    padding: 4rem 1.6rem;
  }
}
#single .single__post {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  #single .single__post {
    gap: 3rem;
  }
}
#single .single__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  gap: 1.2rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid #204483;
}
#single .single__ttl {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #single .single__ttl {
    font-size: 2rem;
  }
}
#single .single__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  gap: 2.4rem;
}
@media screen and (max-width: 768px) {
  #single .single__body {
    gap: 2rem;
  }
}
#single .single__body h2 {
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 700;
  background: #F9F9F9;
  padding: 1.2rem 2.4rem;
  border-left: 5px solid #008AD1;
}
@media screen and (max-width: 768px) {
  #single .single__body h2 {
    font-size: 2rem;
  }
}
#single .single__body h3 {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 700;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #008AD1;
}
@media screen and (max-width: 768px) {
  #single .single__body h3 {
    font-size: 1.8rem;
  }
}
#single .single__body h4 {
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #single .single__body h4 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  #single .single__body p {
    font-size: 1.5rem;
  }
}
#single .single__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
}
#single .single__btn-sp--wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
#single .single__btn-back {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 1.6rem;
  border-bottom: 2px solid #008AD1;
}
@media screen and (max-width: 768px) {
  #single .single__btn-back {
    font-size: 1.4rem;
    padding-bottom: 0.8rem;
  }
}
#single .single__btn-link {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  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;
  gap: 1.2rem;
}
@media screen and (max-width: 768px) {
  #single .single__btn-link {
    font-size: 1.4rem;
    gap: 0.8rem;
  }
}
#single .single__btn-icon {
  display: block;
  width: 2.8rem;
  height: 2.8rem;
}
@media screen and (max-width: 768px) {
  #single .single__btn-icon {
    width: 2rem;
    height: 2rem;
  }
}
#single .single__btn-next .single__btn-icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

/* ------------------------------------------------------------
  お問い合わせ
------------------------------------------------------------ */
#contact .contact__ttl {
  font-size: 3.5rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 1.6rem;
}
@media screen and (max-width: 768px) {
  #contact .contact__ttl {
    font-size: 2.4rem;
  }
}
#contact .contact__ttl::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 5px;
  width: 3.8rem;
  background: #008AD1;
}

.contact-tel__wrapper {
  padding: 4.8rem 1.6rem;
  background: #F6F6F6;
}
@media screen and (max-width: 768px) {
  .contact-tel__wrapper {
    padding: 3rem 1.6rem;
  }
}
.contact-tel__container {
  gap: 4.8rem;
  max-width: 98.1rem;
}
@media screen and (max-width: 768px) {
  .contact-tel__container {
    gap: 3rem;
  }
}
.contact-tel__cards {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.2rem;
}
@media screen and (max-width: 768px) {
  .contact-tel__cards {
    grid-template-columns: repeat(1, 1fr);
  }
}
.contact-tel__card {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  padding: 4rem 0;
  background: #FFFFFF;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 0.4rem;
}
@media screen and (max-width: 768px) {
  .contact-tel__card {
    padding: 3.2rem 1.6rem;
  }
}
.contact-tel__icon {
  width: 6rem;
  height: 6rem;
}
.contact-tel__main {
  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;
  gap: 0.8rem;
  margin-top: 1.6rem;
}
@media screen and (max-width: 768px) {
  .contact-tel__main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 0.8rem;
  }
}
.contact-tel__en {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 700;
  font-family: "Jost", sans-serif;
}
.contact-tel__no {
  font-family: "Jost", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .contact-tel__no {
    line-height: 0.71875;
    font-size: 3.2rem;
  }
}
.contact-tel__small {
  padding-left: 0.6rem;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
  margin-top: 1.2rem;
}

.contact__wrapper {
  padding: 4.8rem 1.6rem;
  background: #F6F6F6;
}
@media screen and (max-width: 768px) {
  .contact__wrapper {
    padding: 3rem 1.6rem;
  }
}
.contact__container {
  gap: 4.8rem;
  max-width: 98.1rem;
}
@media screen and (max-width: 768px) {
  .contact__container {
    gap: 3rem;
  }
}
.contact__tel-btn {
  border-radius: 2em;
  border: 2px solid #C2B9CF;
  padding: 2rem 4rem;
  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;
  gap: 0.4rem;
  -webkit-box-shadow: 2px 2px 10px rgba(122, 108, 140, 0.2);
          box-shadow: 2px 2px 10px rgba(122, 108, 140, 0.2);
  width: 100%;
  max-width: 63.2rem;
}
.contact__tel-btn--txt {
  font-size: 2rem;
  letter-spacing: 0.08em;
}
.contact__tel-btn--wrapper {
  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;
  gap: 0.8rem;
  width: 100%;
}
.contact__tel-btn--icon {
  width: 4rem;
  height: 4rem;
}
@media screen and (max-width: 768px) {
  .contact__tel-btn--icon {
    width: 3.2rem;
    height: 3.2rem;
  }
}
.contact__tel-btn--no {
  font-size: 3.2rem;
  font-weight: 400;
}
.contact__ttl {
  font-size: 3.6rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact__ttl {
    font-size: 2.8rem;
    letter-spacing: 0.08em;
  }
}
.contact__copy {
  text-align: center;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  gap: 0.8rem;
}
@media screen and (max-width: 768px) {
  .contact__copy {
    gap: 1.2rem;
  }
}
.contact__copy p {
  font-size: 2rem;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .contact__copy p {
    font-size: 1.6rem;
  }
}
.contact__copy span {
  font-size: 1.6rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .contact__copy span {
    font-size: 1.4rem;
  }
}

input,
textarea,
select {
  width: 100%;
  border-radius: 0;
  outline: none;
  border: none;
  padding: 1.6rem 2rem;
  background-color: #FFFFFF;
  border-radius: 0.8rem;
  font-size: 1.6rem;
  color: #204483;
  font-weight: 700;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  input,
  textarea,
  select {
    padding: 1.2rem;
  }
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder, select::-webkit-input-placeholder {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #999999;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
input::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #999999;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder, select:-ms-input-placeholder {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #999999;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
input::-ms-input-placeholder, textarea::-ms-input-placeholder, select::-ms-input-placeholder {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #999999;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
input::placeholder,
textarea::placeholder,
select::placeholder {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #999999;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

textarea {
  height: 30rem;
}

.contact-form {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 90rem;
  gap: 4.8rem;
}
@media screen and (max-width: 768px) {
  .contact-form {
    gap: 3rem;
  }
}
.contact-form__items {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  gap: 2.4rem;
}
.contact-form__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8rem;
  width: 100%;
}
.contact-form__label-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8rem;
  width: 100%;
  padding: 0.4rem 0;
}
.contact-form__label, .contact-form__fieldset {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.8rem;
  padding: 0.4rem 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.contact-form__label-text {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8;
}
.contact-form__accept {
  text-align: center;
  font-size: 1.4rem;
  line-height: 1;
  color: #FFFFFF;
  background: #008AD1;
  padding: 0.6rem 1.2rem;
}
.contact-form__fieldset {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8rem;
  width: 100%;
}
.contact-form__radios-wrapper .wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.2rem 3.2rem;
}
.contact-form__radios-wrapper .wpcf7-list-item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.2rem;
  font-weight: 500;
}
.contact-form__radios-wrapper input {
  width: 2rem;
  height: 2rem;
}
.contact-form .wpcf7-list-item {
  margin: 0 !important;
}
@media screen and (max-width: 768px) {
  .contact-form__acceptance {
    text-align: center;
  }
}
.contact-form__acceptance label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8rem;
}
.contact-form__acceptance label .wpcf7-list-item-label {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}
.contact-form input[name=your-acceptance] {
  width: 2rem;
  height: 2rem;
  border: 1px solid #204483;
  background-color: #FFFFFF;
  border-radius: 0.4rem;
  cursor: pointer;
}
.contact-form span.wpcf7-spinner {
  display: none;
}
.contact-form__submit {
  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%;
}
.contact-form__submit-btn {
  position: relative;
}
.contact-form__submit-btn::after {
  content: "";
  position: absolute;
  background: url(../img/contact/arrow.png) no-repeat center center/cover;
  width: 2.8rem;
  height: 2.8rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 9.75rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .contact-form__submit-btn::after {
    right: 9rem;
  }
}
.contact-form input[type=submit] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  cursor: pointer;
  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;
  border-radius: 0.4rem;
  padding: 2.4rem 4rem 2.4rem 9.75rem;
  background: #008AD1;
  font-size: 1.6rem;
  text-align: left;
  line-height: 1.75;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #FFFFFF;
  -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 31rem;
}
@media screen and (max-width: 768px) {
  .contact-form input[type=submit] {
    width: 29.5rem;
    padding-left: 9rem;
  }
}
.contact-form input[type=submit]:disabled {
  opacity: 0.4;
}

.policy {
  padding: 1.6rem 2rem;
  background-color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 30rem;
  color: #204483;
}
@media screen and (max-width: 768px) {
  .policy {
    padding: 1.2rem;
  }
}
.policy__container {
  overflow-y: scroll;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

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

.tab-only {
  display: none;
}
@media screen and (max-width: 1024px) {
  .tab-only {
    display: block;
  }
}

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

.center {
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.bold {
  font-weight: 700;
}