@charset "UTF-8";
/* CSS Document */
/* ============================================
  reset
============================================  */
*,
*::before,
*::after {
  margin: 0; /* マージンは0に */
  padding: 0; /* パディングも常に0に */
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* もちろん、より直感的なbox-sizingに設定 */
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important; /* hiddenは非表示を意味します */
}

:where(html) {
  -webkit-text-size-adjust: none; /* iOSのランドスケープでテキストが調整されないようにする */
  color-scheme: dark light; /* ユーザーがダークテーマを好む場合、自動的にダークテーマになる */
}

@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}
@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth; /* 何かにフォーカスがある場合のみスムーズスクロール */
  }
}
:where(body) {
  block-size: 100%; /* サファリ以外のブラウザのフォールバック */
  block-size: 100dvb; /* 1dvbは動的ビューポートの長さの1%、100dvbで高さいっぱいに */
  line-height: 1.5; /* アクセシブルな行の高さ */
  font-family: system-ui, sans-serif; /* timeの代わりにシステムフォントを使用 */
  -webkit-font-smoothing: antialiased; /* テキストのレンダリングを改善 */
}

:where(input, button, textarea, select) {
  font: inherit; /* フォーム コントロールは親フォントを継承 */
  color: inherit; /* カラーも継承 */
}

:where(textarea) {
  resize: vertical; /* テキストエリアの水平リサイズを無効に */
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer; /* インタラクティブなものにカーソルを合わせる */
}

:where(:disabled) {
  cursor: not-allowed; /* フォームコントロール無効時のカーソルを許可しない */
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed; /* ラベルにもカーソルを許可しない */
}

:where(button) {
  border-style: solid; /* ボタンのボーダーのスタイルを設定しやすくする */
}

:where(a) {
  text-underline-offset: 0.2ex; /* 下線の上にスペースを追加する */
}

:where(ul, ol) {
  list-style: none; /* ビュレットを削除、必要に応じて手動で追加する */
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block; /* 置換された要素をより予測可能にする */
}

:where(img, picture, svg) {
  max-inline-size: 100%; /* images should never overflow past the available space */
  block-size: auto; /* アスペクト比を保持 */
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word; /* 長い単語は改行 */
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem); /* 見出しの行の高さを減らす */
}

:where(hr) { /* より一貫性のある、スタイリッシュなhr */
  border: none;
  -webkit-border-before: 1px solid;
          border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(:focus-visible) { /* より一貫性のある、カスタマイズ可能なフォーカスのアウトライン */
  outline: 2px solid var(--focus-color, Highlight);
  outline-offset: 2px;
}

/* .visually-hiddenは後のカスケードレイヤーを上書きするために!importantを使用 */
:where(.visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)) {
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

body {
  color: #111;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Arial, Verdana, sans-serif;
}

main {
  position: relative;
}

/* ============================================
  inner
============================================  */
.l-inner {
  width: 88.56%;
  margin: 0 auto;
}
@media only screen and (min-width: 1920px) {
  .l-inner {
    width: calc(100% - 220px);
  }
}
@media screen and (max-width: 767px) {
  .l-inner {
    width: 88%;
  }
}

/* ============================================
  mainvisual
============================================  */
.l-mainvisual {
  border-bottom: solid 1px #ddd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.l-mainvisual > ._inner {
  height: calc(100vh - 220px);
  max-height: 900px;
  width: 94.28%;
  overflow: hidden;
  position: relative;
}
@media only screen and (min-width: 1920px) {
  .l-mainvisual > ._inner {
    width: calc(100% - 110px);
  }
}
@media screen and (max-width: 767px) {
  .l-mainvisual > ._inner {
    height: 80vh;
  }
}
.l-mainvisual > ._inner .swiper {
  height: 100%;
  width: 100%;
}
.l-mainvisual > ._inner .swiper-wrapper {
  height: 100%;
  width: 100%;
}
.l-mainvisual > ._inner .swiper-slide {
  position: relative;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-mainvisual > ._inner .swiper-slide ._img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.l-mainvisual > ._inner .swiper-slide ._img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right top;
     object-position: right top;
}
.l-mainvisual > ._inner .swiper-slide ._img01 {
  position: absolute;
  top: 0;
  left: 0;
  width: 97.14%;
  height: 100%;
}
@media only screen and (min-width: 1920px) {
  .l-mainvisual > ._inner .swiper-slide ._img01 {
    width: calc(100% - 55px);
  }
}
@media screen and (max-width: 767px) {
  .l-mainvisual > ._inner .swiper-slide ._img01 {
    width: 97%;
  }
}
.l-mainvisual > ._inner .swiper-slide ._img01 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-mainvisual > ._inner .swiper-slide ._img02 {
  position: absolute;
  top: 0;
  left: 47.14%;
  width: 102.86%;
  height: 100%;
}
@media only screen and (min-width: 1920px) {
  .l-mainvisual > ._inner .swiper-slide ._img02 {
    width: calc(100% + 55px);
    left: calc(50% - 55px);
  }
}
@media screen and (max-width: 767px) {
  .l-mainvisual > ._inner .swiper-slide ._img02 {
    width: 103%;
    left: 47%;
  }
}
.l-mainvisual > ._inner .swiper-slide ._img02 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-mainvisual > ._inner .swiper-slide ._copy {
  position: relative;
  z-index: 2;
  padding-left: 3.9vw;
}
@media screen and (max-width: 767px) {
  .l-mainvisual > ._inner .swiper-slide ._copy {
    padding-left: 0;
    margin: 0 auto;
  }
}
.l-mainvisual > ._inner .swiper-slide.--1 ._copy ._main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .l-mainvisual > ._inner .swiper-slide.--1 ._copy ._main ._item {
    height: 60px;
  }
}
.l-mainvisual > ._inner .swiper-slide.--1 ._copy ._main ._item.--G {
  margin-right: 45px;
}
@media screen and (max-width: 767px) {
  .l-mainvisual > ._inner .swiper-slide.--1 ._copy ._main ._item.--G {
    margin-right: 10px;
  }
}
.l-mainvisual > ._inner .swiper-slide.--1 ._copy ._main ._item.--S {
  margin-right: 45px;
}
@media screen and (max-width: 767px) {
  .l-mainvisual > ._inner .swiper-slide.--1 ._copy ._main ._item.--S {
    margin-right: 10px;
  }
}
.l-mainvisual > ._inner .swiper-slide.--1 ._copy ._main ._item.--P {
  margin-right: 12px;
}
@media screen and (max-width: 767px) {
  .l-mainvisual > ._inner .swiper-slide.--1 ._copy ._main ._item.--P {
    margin-right: 0;
  }
}
.l-mainvisual > ._inner .swiper-slide.--1 ._copy ._main ._item img {
  height: 100%;
  width: auto;
}
.l-mainvisual > ._inner .swiper-slide.--1 ._copy ._sub {
  margin-top: 35px;
}
@media screen and (max-width: 767px) {
  .l-mainvisual > ._inner .swiper-slide.--1 ._copy ._sub {
    width: 230px;
    margin-top: 10px;
  }
}
.l-mainvisual > ._inner .swiper-slide.--1 ._copy ._sub img {
  width: 100%;
}
.l-mainvisual > ._inner .swiper-slide.--2 ._copy ._main {
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 10rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .l-mainvisual > ._inner .swiper-slide.--2 ._copy ._main {
    font-size: 5rem;
  }
}
.l-mainvisual > ._inner .swiper-slide.--2 ._copy ._sub {
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 5rem;
  font-weight: bold;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .l-mainvisual > ._inner .swiper-slide.--2 ._copy ._sub {
    font-size: 2.5rem;
  }
}

.bg_blue {
      background: #121b38;
}

.l-mainvisual > ._inner .swiper-slide.--3 ._img02 img {
    width: 60%;
    object-position: left center;
}
.l-mainvisual > ._inner .swiper-slide.--3 ._img02.slide_sponly {
    display: none;
}
.l-mainvisual > ._inner .swiper-slide.--3 ._copy {
    width: 40%;
}
@media screen and (max-width: 1000px) {
    .l-mainvisual > ._inner .swiper-slide.--3 ._img02 {
        left: 0;
        width: 100%;
    }
    .l-mainvisual > ._inner .swiper-slide.--3 ._img02 img {
        width: 100%;
        object-position: left center;
    }
    
  .l-mainvisual > ._inner .swiper-slide.--3 ._copy {
    width: 100%;
      padding-right: 50px;
      
      position: absolute;
      bottom: 0;
      padding: 30px;
      background: #121b38;
  }
}
@media screen and (max-width: 768px) {
  .l-mainvisual > ._inner .swiper-slide.--3 ._copy {
      padding-left: 50px;
      padding-right: 50px;
  }
    
    .l-mainvisual > ._inner .swiper-slide.--3 ._img02 {
        display: none;
    }
    
    .l-mainvisual > ._inner .swiper-slide.--3 ._img02.slide_sponly {
        display: block;
    }
}
.l-mainvisual > ._inner .swiper-slide.--3 ._copy ._main {
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 6rem;
  font-weight: bold;
}
@media screen and (max-width: 1200px) {
  .l-mainvisual > ._inner .swiper-slide.--3 ._copy ._main {
    font-size: 5.5rem;
  }
}
@media screen and (max-width: 1100px) {
  .l-mainvisual > ._inner .swiper-slide.--3 ._copy ._main {
    font-size: 5.0rem;
  }
}
@media screen and (max-width: 767px) {
  .l-mainvisual > ._inner .swiper-slide.--3 ._copy ._main {
    font-size: 3rem;
  }
}
@media screen and (max-width: 480px) {
  .l-mainvisual > ._inner .swiper-slide.--3 ._copy ._main {
    font-size: 2.6rem;
  }
}

.l-mainvisual > ._inner .swiper-slide.--3 ._text {
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 3rem;
  font-weight: bold;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .l-mainvisual > ._inner .swiper-slide.--3 ._text {
    font-size: 2.0rem;
  }
}
@media screen and (max-width: 480px) {
  .l-mainvisual > ._inner .swiper-slide.--3 ._text {
    font-size: 1.5rem;
      margin-top: 25px;
  }
}
.l-mainvisual > ._inner .swiper-slide.--3 ._copy ._button {
  margin-top: 30px;
}
.l-mainvisual > ._inner .swiper-slide.--3 ._copy ._button .c-button {
  margin-left: auto;
  margin-right: 0;
}



.l-mainvisual > ._inner .swiper-slide.--2 ._copy ._button {
  margin-top: 30px;
}
.l-mainvisual > ._inner .swiper-slide.--2 ._copy ._button .c-button {
  margin-left: auto;
  margin-right: 0;
}
.l-mainvisual > ._inner .swiper-slide ._bg {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 5, 70, 0.35);
  z-index: 1;
}
.l-mainvisual ._scrolldown {
  width: 5.72%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  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: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  height: calc(100vh - 220px);
  max-height: 900px;
}
@media only screen and (min-width: 1920px) {
  .l-mainvisual ._scrolldown {
    width: 110px;
  }
}
@media screen and (max-width: 767px) {
  .l-mainvisual ._scrolldown {
    width: 6%;
    gap: 20px;
    height: auto;
  }
}
.l-mainvisual ._scrolldown ._text {
  font-family: "Times New Roman";
  color: #006;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .l-mainvisual ._scrolldown ._text {
    font-size: 1rem;
  }
}
.l-mainvisual ._scrolldown ._line {
  width: 1px;
  height: 220px;
  background: #ddd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-mainvisual ._scrolldown ._line {
    height: 120px;
  }
}
.l-mainvisual ._scrolldown ._line::after {
  content: "";
  /*線の形状*/
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 220px;
  background: #000546;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  -webkit-animation: pathmove 1.4s ease-in-out infinite;
          animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .l-mainvisual ._scrolldown ._line::after {
    height: 120px;
    -webkit-animation: pathmoveSP 1.4s ease-in-out infinite;
            animation: pathmoveSP 1.4s ease-in-out infinite;
  }
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@-webkit-keyframes pathmove {
  0% {
    height: 0;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    height: 220px;
    opacity: 0;
  }
}
@keyframes pathmove {
  0% {
    height: 0;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    height: 220px;
    opacity: 0;
  }
}
@-webkit-keyframes pathmoveSP {
  0% {
    height: 0;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    height: 120px;
    opacity: 0;
  }
}
@keyframes pathmoveSP {
  0% {
    height: 0;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    height: 120px;
    opacity: 0;
  }
}
.is-load .l-mainvisual > ._inner .swiper-slide.--1 ._copy ._main ._item.--G {
  opacity: 0;
  -webkit-transform: translateX(-10px);
          transform: translateX(-10px);
  -webkit-transition-duration: 0.6s;
          transition-duration: 0.6s;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.is-load .l-mainvisual > ._inner .swiper-slide.--1 ._copy ._main ._item.--S {
  opacity: 0;
  -webkit-transform: translateX(-10px);
          transform: translateX(-10px);
  -webkit-transition-duration: 0.6s;
          transition-duration: 0.6s;
  -webkit-transition-delay: 1.3s;
          transition-delay: 1.3s;
}
.is-load .l-mainvisual > ._inner .swiper-slide.--1 ._copy ._main ._item.--P {
  opacity: 0;
  -webkit-transform: translateX(-10px);
          transform: translateX(-10px);
  -webkit-transition-duration: 0.6s;
          transition-duration: 0.6s;
  -webkit-transition-delay: 1.6s;
          transition-delay: 1.6s;
}
.is-load .l-mainvisual > ._inner .swiper-slide.--1 ._copy ._main ._item.--A {
  opacity: 0;
  -webkit-transform: translateX(-10px);
          transform: translateX(-10px);
  -webkit-transition-duration: 0.6s;
          transition-duration: 0.6s;
  -webkit-transition-delay: 1.9s;
          transition-delay: 1.9s;
}
.is-load .l-mainvisual > ._inner .swiper-slide.--1 ._copy ._sub {
  opacity: 0;
  -webkit-transition-duration: 0.6s;
          transition-duration: 0.6s;
  -webkit-transition-delay: 1.3s;
          transition-delay: 1.3s;
}
.is-load .l-mainvisual ._scrolldown {
  opacity: 0;
  -webkit-transition-duration: 0.6s;
          transition-duration: 0.6s;
  -webkit-transition-delay: 1.3s;
          transition-delay: 1.3s;
}
.is-load.active .l-mainvisual > ._inner .swiper-slide.--1 ._copy ._main ._item.--G {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}
.is-load.active .l-mainvisual > ._inner .swiper-slide.--1 ._copy ._main ._item.--S {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}
.is-load.active .l-mainvisual > ._inner .swiper-slide.--1 ._copy ._main ._item.--P {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}
.is-load.active .l-mainvisual > ._inner .swiper-slide.--1 ._copy ._main ._item.--A {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}
.is-load.active .l-mainvisual > ._inner .swiper-slide.--1 ._copy ._sub {
  opacity: 1;
}
.is-load.active .l-mainvisual ._scrolldown {
  opacity: 1;
}

/* ============================================
  h
============================================  */
.h2 {
  font-family: "Noto Serif JP", serif;
  color: #000546;
  font-size: 4rem;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 45px;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .h2 {
    padding: 0 20px;
    font-size: 2.4rem;
    margin-bottom: 35px;
  }
}
.h2 span {
  color: #333;
  font-size: 2.4rem;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 1.8rem;
}
.h2 span::before {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background-color: #000546;
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .h2 span::before {
    width: 16px;
  }
}

/* ============================================
  btn
============================================  */
.c-button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
  color: #000546;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.6;
  text-decoration: none;
  padding-right: calc(1em + 50px);
  position: relative;
}
.c-button::after {
  content: "";
  position: absolute;
  right: 0;
  top: calc(50% - 25px);
  background-image: url("../img/icon-arrow--white.svg");
  background-position: center;
  background-repeat: no-repeat;
  width: 50px;
  height: 50px;
  background-color: #000546;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (any-hover: hover) {
  .c-button:hover::after {
    right: -5px;
    top: calc(50% - 30px);
    width: 60px;
    height: 60px;
  }
}
.c-button.--white {
  color: white;
}
.c-button.--white::after {
  background-image: url("../img/icon-arrow--primary.svg");
  background-color: #fff;
}

/* ============================================
  topic
============================================  */
#topic {
  position: absolute;
  right: 0;
  bottom: calc(100% - 149px);
  z-index: 1;
  width: 690px;
  padding: 30px;
  background-color: #fff;
  border: solid 1px #ddd;
  padding-bottom: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}
@media only screen and (max-width: 1000px) {
  #topic {
    top: 888px;
  }
}
@media screen and (max-width: 767px) {
  #topic {
    position: static;
    width: 88%;
    padding-bottom: 60px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 auto;
    margin-top: -1px;
    margin-bottom: -101px;
  }
}
#topic > ._title {
  font-family: "Noto Serif JP", serif;
  color: #000546;
  font-size: 1.4rem;
  font-weight: bold;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
#topic ._content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  #topic ._content {
    -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;
  }
}
#topic ._content ._thumb {
  width: 200px;
  height: 140px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
#topic ._content ._thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#topic ._content > ._inner > ._title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.6;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
#topic ._content > ._inner ._text {
  font-size: 1.4rem;
  line-height: 2;
  margin-top: 10px;
}
#topic ._content > ._inner ._button {
  margin-top: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: 0;
}

.is-load #topic {
  opacity: 0;
  -webkit-transition-duration: 0.6s;
          transition-duration: 0.6s;
  -webkit-transition-delay: 1.3s;
          transition-delay: 1.3s;
}
.is-load.active #topic {
  opacity: 1;
}

/* ============================================
  pickup
============================================  */
#pickup ._list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  #pickup ._list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 100px 0 100px;
    border-left: solid 1px #ddd;
    border-right: solid 1px #ddd;
  }
}
#pickup ._list ._item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-left: solid 1px #ddd;
  border-right: solid 1px #ddd;
  padding: 148px 0 100px;
}
@media screen and (max-width: 767px) {
  #pickup ._list ._item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-left: 0;
    border-right: 0;
    padding: 0;
  }
}
#pickup ._list ._item ._btn {
  display: block;
  text-decoration: none;
  padding: 60px 45px 50px;
  background-repeat: no-repeat;
  border-top: solid 1px #ddd;
  border-bottom: solid 1px #ddd;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 1500px) {
  #pickup ._list ._item ._btn {
    padding: 60px 25px 50px;
  }
}
@media only screen and (max-width: 1000px) {
  #pickup ._list ._item ._btn {
    padding: 60px 25px 250px;
  }
}
@media screen and (max-width: 767px) {
  #pickup ._list ._item ._btn {
    padding: 40px 25px 30px;
  }
}
#pickup ._list ._item ._btn.--admission {
  background-image: url(../../img/pickup_admission.png);
  background-size: auto 250px;
  background-position: right 2.6vw bottom;
}
@media only screen and (max-width: 1680px) {
  #pickup ._list ._item ._btn.--admission {
    background-position: 208px bottom;
  }
}
@media only screen and (max-width: 1500px) {
  #pickup ._list ._item ._btn.--admission {
    background-position: 188px bottom;
  }
}
@media only screen and (max-width: 1300px) {
  #pickup ._list ._item ._btn.--admission {
    background-position: 142px bottom;
  }
}
@media only screen and (max-width: 1000px) {
  #pickup ._list ._item ._btn.--admission {
    background-position: center bottom;
  }
}
@media screen and (max-width: 767px) {
  #pickup ._list ._item ._btn.--admission {
    background-size: auto 210px;
    background-position: right 5.2vw bottom;
  }
}
@media only screen and (max-width: 450px) {
  #pickup ._list ._item ._btn.--admission {
    background-position: 140px bottom;
  }
}
#pickup ._list ._item ._btn.--course {
  background-image: url(../../img/pickup_course.png);
  background-size: auto 259px;
  background-position: right bottom;
}
@media only screen and (max-width: 1920px) {
  #pickup ._list ._item ._btn.--course {
    background-position: 200px bottom;
  }
}
@media only screen and (max-width: 1500px) {
  #pickup ._list ._item ._btn.--course {
    background-position: 180px bottom;
  }
}
@media only screen and (max-width: 1300px) {
  #pickup ._list ._item ._btn.--course {
    background-position: 142px bottom;
  }
}
@media only screen and (max-width: 1000px) {
  #pickup ._list ._item ._btn.--course {
    background-position: center bottom;
  }
}
@media screen and (max-width: 767px) {
  #pickup ._list ._item ._btn.--course {
    background-size: auto 219px;
    background-position: right bottom;
  }
}
@media only screen and (max-width: 450px) {
  #pickup ._list ._item ._btn.--course {
    background-position: 180px bottom;
  }
}
#pickup ._list ._item ._btn.--panphlet {
  background-image: url(../../img/pickup_panphlet.png);
  background-size: auto 250px;
  background-position: 342px bottom;
}
@media only screen and (max-width: 1500px) {
  #pickup ._list ._item ._btn.--panphlet {
    background-position: 262px bottom;
  }
}
@media only screen and (max-width: 1300px) {
  #pickup ._list ._item ._btn.--panphlet {
    background-position: 172px bottom;
  }
}
@media only screen and (max-width: 1000px) {
  #pickup ._list ._item ._btn.--panphlet {
    background-position: center bottom;
  }
}
@media screen and (max-width: 767px) {
  #pickup ._list ._item ._btn.--panphlet {
    background-size: auto 210px;
    background-position: right bottom;
  }
}
@media only screen and (max-width: 450px) {
  #pickup ._list ._item ._btn.--panphlet {
    background-position: 180px bottom;
  }
}
#pickup ._list ._item ._btn::before, #pickup ._list ._item ._btn::after {
  content: "";
  width: 40px;
  height: 1px;
  background-color: #ddd;
  position: absolute;
  left: calc(100% + 1px);
}
@media screen and (max-width: 767px) {
  #pickup ._list ._item ._btn::before, #pickup ._list ._item ._btn::after {
    display: none;
  }
}
#pickup ._list ._item ._btn::before {
  top: -1px;
}
#pickup ._list ._item ._btn::after {
  bottom: -1px;
}
#pickup ._list ._item ._btn ._title ._main {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 1300px) {
  #pickup ._list ._item ._btn ._title ._main {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  #pickup ._list ._item ._btn ._title ._main {
    font-size: 1.8rem;
  }
}
#pickup ._list ._item ._btn ._title ._eng {
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#pickup ._list ._item ._btn .c-button {
  margin-top: 50px;
}
@media (any-hover: hover) {
  #pickup ._list ._item ._btn:hover {
    background-size: auto 300px;
    opacity: 0.8;
  }
}
@media (any-hover: hover) {
  #pickup ._list ._item ._btn:hover .c-button::after {
    right: -5px;
    top: calc(50% - 30px);
    width: 60px;
    height: 60px;
  }
}
#pickup ._list ._item:nth-child(odd) ._btn {
  color: #fff;
  background-color: #000546;
}
#pickup ._list ._item:nth-child(even) ._btn {
  color: #111;
  background-color: #eee;
}
#pickup ._list ._item:last-child ._btn::before, #pickup ._list ._item:last-child ._btn::after {
  display: none;
}

/* ============================================
  about
============================================  */
#about .l-inner {
  padding: 40px 0 100px;
  border: solid 1px #ddd;
}
@media screen and (max-width: 767px) {
  #about .l-inner {
    padding: 30px 0 80px;
  }
}
#about ._list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
  border-top: solid 1px #ddd;
  border-bottom: solid 1px #ddd;
}
@media only screen and (max-width: 1000px) {
  #about ._list {
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  #about ._list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#about ._list ._item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#about ._list ._item ._btn {
  text-decoration: none;
  display: block;
  padding: 45px 50px 55px;
  color: #111;
  background-color: #eee;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 1500px) {
  #about ._list ._item ._btn {
    padding: 45px 25px 55px;
  }
}
@media only screen and (max-width: 1000px) {
  #about ._list ._item ._btn {
    padding: 45px 25px 170px;
  }
}
@media screen and (max-width: 767px) {
  #about ._list ._item ._btn {
    padding: 25px 20px 35px;
  }
}
@media only screen and (max-width: 699px) {
  #about ._list ._item ._btn {
    padding-bottom: 110px;
  }
}
#about ._list ._item ._btn.--greeting {
  padding-right: 300px;
  background-image: url(../../img/about_greeting.png);
  background-size: auto 90%;
  background-position: right 40px bottom;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  #about ._list ._item ._btn.--greeting {
    border-right: solid 1px #ddd;
  }
}
@media only screen and (max-width: 1500px) {
  #about ._list ._item ._btn.--greeting {
    background-position: right 20px bottom;
    padding-right: 200px;
  }
}
@media only screen and (max-width: 1200px) {
  #about ._list ._item ._btn.--greeting {
    background-size: auto 220px;
  }
}
@media only screen and (max-width: 1000px) {
  #about ._list ._item ._btn.--greeting {
    background-size: auto 220px;
    background-position: right 10px bottom;
    padding-right: 25px;
  }
}
@media only screen and (max-width: 900px) {
  #about ._list ._item ._btn.--greeting {
    background-position: right -20px bottom;
  }
}
@media only screen and (max-width: 840px) {
  #about ._list ._item ._btn.--greeting {
    background-position: right -30px bottom;
  }
}
@media screen and (max-width: 767px) {
  #about ._list ._item ._btn.--greeting {
    background-size: auto 90%;
    background-position: right 20px bottom;
    padding-right: 150px;
    border-bottom: solid 1px #ddd;
  }
}
@media only screen and (max-width: 699px) {
  #about ._list ._item ._btn.--greeting {
    padding-right: 20px;
    background-size: auto 160px;
  }
}
@media screen and (min-width: 768px) {
  #about ._list ._item ._btn.--greeting::after {
    content: "";
    display: block;
    width: 1px;
    height: 100px;
    background-color: #ddd;
    position: absolute;
    top: calc(100% + 1px);
    right: -1px;
  }
}
#about ._list ._item ._btn.--about {
  background-image: url(../../img/about_about.png);
  background-size: cover;
  background-position: left bottom;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  #about ._list ._item ._btn.--about {
    border-left: solid 1px #ddd;
  }
}
@media screen and (max-width: 767px) {
  #about ._list ._item ._btn.--about {
    border-top: solid 1px #ddd;
  }
}
@media screen and (min-width: 768px) {
  #about ._list ._item ._btn.--about::after {
    content: "";
    display: block;
    width: 1px;
    height: 100px;
    background-color: #ddd;
    position: absolute;
    top: calc(100% + 1px);
    left: -1px;
  }
}
#about ._list ._item ._btn ._title {
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  line-height: 1.3;
}
#about ._list ._item ._btn ._title ._sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2.4rem;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1500px) {
  #about ._list ._item ._btn ._title ._sub {
    font-size: 1.8rem;
  }
}
#about ._list ._item ._btn ._title ._main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 3.4rem;
}
@media only screen and (max-width: 1500px) {
  #about ._list ._item ._btn ._title ._main {
    font-size: 2.4rem;
  }
}
#about ._list ._item ._btn .c-button {
  margin-top: 30px;
}
#about ._list ._item ._btn:hover {
  opacity: 0.8;
}
@media (any-hover: hover) {
  #about ._list ._item ._btn:hover .c-button::after {
    right: -5px;
    top: calc(50% - 30px);
    width: 60px;
    height: 60px;
  }
}

/* ============================================
  life-and-message
============================================  */
#life-and-message {
  background-color: #eee;
  margin-top: -1px;
  border-top: solid 1px #ddd;
  border-bottom: solid 1px #ddd;
}
#life-and-message .l-inner {
  padding: 40px 0 100px;
  border-left: solid 1px #ddd;
  border-right: solid 1px #ddd;
}
@media screen and (max-width: 767px) {
  #life-and-message .l-inner {
    padding: 30px 0 80px;
  }
}
#life-and-message ._list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  border-top: solid 1px #ddd;
  border-bottom: solid 1px #ddd;
}
@media screen and (max-width: 767px) {
  #life-and-message ._list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#life-and-message ._list ._item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-left: solid 1px #ddd;
  border-right: solid 1px #ddd;
}
#life-and-message ._list ._item:first-child {
  border-left: 0;
}
#life-and-message ._list ._item:last-child {
  border-right: 0;
}
#life-and-message ._list ._item ._btn {
  text-decoration: none;
  display: block;
  color: #111;
  background-color: #fff;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#life-and-message ._list ._item ._btn ._thumb {
  height: 260px;
  overflow: hidden;
}
#life-and-message ._list ._item ._btn ._thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#life-and-message ._list ._item ._btn ._contents {
  padding: 20px 30px 75px;
}
#life-and-message ._list ._item ._btn ._contents ._title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Noto Serif JP", serif;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1000px) {
  #life-and-message ._list ._item ._btn ._contents ._title {
    font-size: 2rem;
  }
}
#life-and-message ._list ._item ._btn ._contents ._text {
  font-size: 1.6rem;
  line-height: 1.8;
}
#life-and-message ._list ._item ._btn::after {
  content: "";
  display: block;
  background-image: url(../img/icon-arrow--primary.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 15px;
  height: 8px;
  position: absolute;
  right: 30px;
  bottom: 42px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#life-and-message ._list ._item ._btn:hover {
  color: #fff;
  background-color: #000546;
}
#life-and-message ._list ._item ._btn:hover ._thumb img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
#life-and-message ._list ._item ._btn:hover::after {
  background-image: url(../img/icon-arrow--white.svg);
  right: 25px;
}

/* ============================================
  other
============================================  */
#other .l-inner {
  padding: 40px 0 100px;
  border-left: solid 1px #ddd;
  border-right: solid 1px #ddd;
}
@media screen and (max-width: 767px) {
  #other .l-inner {
    padding: 30px 0 80px;
  }
}
#other ._col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  height: 440px;
  border-top: solid 1px #ddd;
  border-bottom: solid 1px #ddd;
}
@media screen and (max-width: 767px) {
  #other ._col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
  }
}
#other ._col ._list {
  width: 75%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  #other ._col ._list {
    border-right: solid 1px #ddd;
  }
}
@media screen and (max-width: 767px) {
  #other ._col ._list {
    width: 100%;
  }
}
#other ._col ._list ._item {
  width: calc(50% - 20px);
  height: 199px;
  position: relative;
}
@media screen and (max-width: 767px) {
  #other ._col ._list ._item {
    width: 100%;
    height: 160px;
  }
}
#other ._col ._list ._item ._btn {
  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: 15px;
  height: 100%;
  padding: 40px 20px;
  background-color: #000546;
  font-family: "Noto Serif JP", serif;
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.3;
  text-decoration: none;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 1000px) {
  #other ._col ._list ._item ._btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  #other ._col ._list ._item ._btn {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    text-align: left;
    height: 160px;
  }
}
#other ._col ._list ._item ._btn::after {
  content: "";
  display: block;
  background-image: url(../img/icon-arrow--white.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 15px;
  height: 8px;
  position: absolute;
  right: 30px;
  bottom: 25px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#other ._col ._list ._item ._btn:hover {
  opacity: 0.8;
}
@media screen and (min-width: 768px) {
  #other ._col ._list ._item:nth-child(1) {
    border-right: solid 1px #ddd;
    border-bottom: solid 1px #ddd;
  }
}
@media screen and (min-width: 768px) {
  #other ._col ._list ._item:nth-child(1)::before {
    content: "";
    display: block;
    width: 1px;
    height: 40px;
    background-color: #ddd;
    position: absolute;
    right: 0;
    top: calc(100% + 1px);
  }
}
@media screen and (min-width: 768px) {
  #other ._col ._list ._item:nth-child(1)::after {
    content: "";
    display: block;
    width: 40px;
    height: 1px;
    background-color: #ddd;
    position: absolute;
    bottom: 0;
    left: calc(100% + 1px);
  }
}
@media screen and (min-width: 768px) {
  #other ._col ._list ._item:nth-child(2) {
    border-left: solid 1px #ddd;
    border-bottom: solid 1px #ddd;
  }
}
@media screen and (min-width: 768px) {
  #other ._col ._list ._item:nth-child(2)::before {
    content: "";
    display: block;
    width: 1px;
    height: 40px;
    background-color: #ddd;
    position: absolute;
    left: 0;
    top: calc(100% + 1px);
  }
}
@media screen and (min-width: 768px) {
  #other ._col ._list ._item:nth-child(3) {
    border-right: solid 1px #ddd;
    border-top: solid 1px #ddd;
  }
}
@media screen and (min-width: 768px) {
  #other ._col ._list ._item:nth-child(3)::after {
    content: "";
    display: block;
    width: 40px;
    height: 1px;
    background-color: #ddd;
    position: absolute;
    top: 0;
    left: calc(100% + 1px);
  }
}
@media screen and (min-width: 768px) {
  #other ._col ._list ._item:nth-child(4) {
    border-left: solid 1px #ddd;
    border-top: solid 1px #ddd;
  }
}
#other ._col ._facebook {
  width: 25%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  #other ._col ._facebook {
    border-left: solid 1px #ddd;
  }
}
@media screen and (max-width: 767px) {
  #other ._col ._facebook {
    width: 100%;
    border-top: solid 1px #ddd;
  }
}
#other ._col ._facebook .fb-wrap {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
#other ._col ._facebook .fb-wrap .fb-page,
#other ._col ._facebook .fb-wrap .fb-page span,
#other ._col ._facebook .fb-wrap iframe {
  width: 100% !important;
  height: 438px !important;
}/*# sourceMappingURL=top.css.map */