@charset "UTF-8";

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

@media screen and (max-width: 1025px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }
}

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

* {
  margin: 0;
}

html,
body {
  height: 100%;
  overflow: auto;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

#root,
#__next {
  isolation: isolate;
}

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

* {
  margin: 0;
}

html,
body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

#root,
#__next {
  isolation: isolate;
}

/*** The new CSS reset - version 1.5.1 (last updated 1.3.2022) ***/
*:where(:not(iframe, canvas, img, svg, video):not(svg *, symbol *)) {
  /*all: unset;
  display: revert*/
}

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

a,
button {
  cursor: revert;
}

ol,
ul,
menu {
  list-style: none;
}

ul,
li {
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
}

table {
  border-collapse: collapse;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  appearance: revert;
}

::placeholder {
  color: unset;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

a {
  text-decoration: none;
  color: #000;
}

body {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-weight: 600;
  color: #000;
}

/* header */

.oc25-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 30px;
  padding-bottom: 30px;
  max-width: 90%;
  margin-inline: auto;
}

@media screen and (max-width: 1025px) {
  .oc25-header {
    padding-top: 20px;
    padding-bottom: 20px;
    max-width: 100%;
    padding-right: 10px;
    padding-left: 20px;
    margin-inline: auto;
  }
}


.oc25-header__logo {
  width: 400px;
}

@media screen and (max-width: 1025px) {
  .oc25-header__logo {
    width: 100%;
    width: 46.41vw;
    /* 181 ÷ 390 ≒ 0.4641 → 46.41vw */

  }
}

@media screen and (max-width: 480px) {
  .oc25-header__logo {
    width: clamp(181px, 46.41vw);

  }
}

.oc25-header__nav {
  display: flex;
  gap: 30px;
}

.oc25-header__entry--link {
  background-color: #fff;
  border-radius: 25px;
  box-shadow: 0px 0px 10px 0px #1c52e526;
  padding: 16px 25px;
}

.oc25-header__entry--text {
  font-size: 16px;
  font-weight: 700;
  color: #0051d7;
}



/* 追従バナー */
.entry-floating-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 233px;
  height: 233px;
  z-index: 8;
  border-radius: 50%;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 1025px) {
  .entry-floating-banner {
    width: 170px;
    height: 170px;
    right: 0;
  }
}

.entry-floating-banner__link {
  position: absolute;
  display: block;
}

.entry-floating-banner__img {
  display: block;
  width: 100%;
  height: auto;

}

.entry-floating-banner__close {
  position: absolute;
  top: 17px;
  right: 27px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  border: none;
  width: 24px;
  height: 24px;
  font-size: 16px;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
}

@media screen and (max-width: 1025px) {
  .entry-floating-banner__close {
    top: 15px;
    right: 24px;
  }
}

/* 閉じた状態のクラス */
.floating-banner--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* モバイルで小さくしたい場合 */
@media (max-width: 480px) {
  .floating-banner {
    bottom: 10px;
    right: 10px;
    width: 200px;
  }
}


:root {
  --img-base-height: 70vh;
  /* ここを変更してください */
}

/* 全体のコンテンツを囲むラッパー */
.main-layout-wrapper {
  display: flex;
  flex-direction: column;
  /* 要素を縦に並べる */
  align-items: center;
  /* ラッパー内の要素を水平方向の中央に配置 */
  width: 100%;
  /* 親 (body) の全幅を使用 */
  position: relative;
}

/* スライドショー全体のコンテナ */
.carousel-container {
  width: 100%;
  /* carousel-wrapper の高さに合わせる */
  height: var(--img-base-height);
  position: relative;
  overflow: hidden;
  /* はみ出たコンテンツを非表示 */
  border-radius: 1rem;
  /* 角を丸くする */
}

/* 各スライドショーのラッパー (前景と背景) */
.carousel-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  /* 親の全幅に広がるように明示的に設定 */
  height: var(--img-base-height);
  /* ラッパーの高さは画像の基準高さに合わせる */
  display: flex;
  align-items: center;
}

/* スライドを保持し、横方向に並べるトラック */
.carousel-track {
  display: flex;
  white-space: nowrap;
  /* 画像の折り返しを防止 */
  height: 100%;
  /* 親の高さに合わせる */
  gap: 1rem;
  /* 画像間の隙間をflexboxのgapで設定 */
  will-change: transform;
  /* ブラウザにtransformの変化を最適化するようヒントを与える */
}

/* トラック内の画像スタイル */
.carousel-track img {
  height: var(--img-base-height);
  /* 画像の高さでスライドショー全体の高さを決定 */
  width: auto;
  /* アスペクト比を維持 */
  object-fit: contain;
  /* 画像全体が表示されるように調整 */
  flex-shrink: 0;
  /* 画像が縮小するのを防止 */
  min-width: 100px;
  /* 画像が読み込まれない場合に備えて最小幅を設定 */
}

/* 前景スライドショーに特化したスタイル */
.foreground-carousel {
  top: 0;
  /* 上下ずれをなくす */
  z-index: 1;
  /* 前景を前面に */
}

/* 背景スライドショーに特化したスタイル */
.background-carousel {
  filter: blur(8px);
  /* ぼかし効果 */
  opacity: 0.2;
  /* 透明度20% */
  top: 0;
  /* 上下ずれをなくす */
  z-index: 0;
  /* 背景を背面に */
}


/* — FV コンテナ — */
.oc2025__fv {
  position: relative;
  width: 100vw;
  /* 画面端まで */
  left: 50%;
  transform: translateX(-50%);
  height: 100vh;
  /* デザインに合わせて */
  overflow: hidden;
  padding-bottom: 90px;
}

@media screen and (max-width: 1025px) {
  .oc2025__fv {
    padding-bottom: 0;
  }
}

.oc2025__fv__inner {
  margin-bottom: 120px;
}

@media screen and (max-width: 1025px) {
  .oc2025__fv__inner {
    margin-bottom: 0;
  }
}

/* ここから FVアニメーション*/
/* .scroll-slider-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

@media screen and (max-width: 1025px) {
  .scroll-slider-wrapper {
    height: 70vh;
  }

}

.scroll-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1025px) {
  .scroll-slider {
    max-height: 100%;
  }
}

.scroll-slider.bg {
  z-index: 1;
}

.scroll-slider.bg img {
  width: 70%;
  filter: blur(6px);
  opacity: 0.2;
}


.scroll-slider.fg {
  z-index: 2;
}

.scroll-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: scroll-left 150s linear infinite;
  animation-delay: -5s;
}

.oc25-slide img {
  display: block;
  height: 100vh;
  width: auto;
  height: auto;
  max-height: 100vh;
  max-width: 100%;
}



.oc25-slide {
  flex-shrink: 0;
}

.oc25-slide img {
  height: 100vh;
  width: auto;
  display: block;
}

@media screen and (max-width: 1025px) {
  .oc25-slide img {
    height: auto;
    width: 70%;
  }
}

.scroll-slider.bg .scroll-track {
  animation: scroll-left 150s linear infinite;
  animation-delay: -5s;
}

.scroll-slider.fg .scroll-track {
  animation: scroll-left 100s linear infinite;
}

@media screen and (max-width: 1025px) {
  .scroll-slider.bg .scroll-track {
    animation: scroll-left 150s linear infinite;
    animation-delay: -5s;
  }

  .scroll-slider.fg .scroll-track {
    animation: scroll-left 80s linear infinite;
  }
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
} */




/* — Swiper 共通 — */
/* .fv-swiper {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
}

@media screen and (max-width: 1025px) {
  .fv-swiper {
    max-height: 70vh;
  }
}

.fv-swiper .swiper-slide {
  width: auto;
}

.fv-swiper .swiper-slide img {
  width: auto;
  height: 100%;
  display: block;
}

@media screen and (max-width: 1025px) {
  .fv-swiper .swiper-slide img {
    max-height: 700px;
  }
}

.fv-swiper-bg {
  z-index: 1;
  opacity: 0.2;

}

.fv-swiper-bg .swiper-slide img {
  filter: blur(6px);
  width: 70%;
  margin-inline: auto;
}

@media screen and (max-width: 1025px) {
  .fv-swiper-bg .swiper-slide img {
    max-height: 700px;
  }
}

.fv-swiper-fg {
  z-index: 2;
  pointer-events: none;
} */

.oc25-copy {
  position: absolute;
  left: 60px;
  bottom: 0;
  z-index: 7;
}

@media screen and (max-width: 1025px) {
  .oc25-copy {
    left: 20px;
    /* bottom: 90px; */
  }
}

.oc25-main-copy {
  width: 47.26vw;
  /* 605 ÷ 1280 ≒ 0.4726 → 47.26vw */
  width: clamp(274px, 47.26vw, 100%);
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 1025px) {
  .oc25-main-copy {
    font-size: 33px;

  }
}

/* read */
.oc25-read {
  padding: 80px 30px;
}

@media screen and (max-width: 1025px) {
  .oc25-read {
    padding: 70px 20px 60px;
  }
}

.oc25-read__inner {
  max-width: 1080px;
  margin-inline: auto;
}

.oc25-read__contents {
  display: flex;
  gap: 40px;
  align-items: center;
}

@media screen and (max-width: 1025px) {
  .oc25-read__contents {
    flex-direction: column;
    gap: 30px;
  }
}

.oc25-read__text {
  font-size: 17px;
  color: #1c52e5;
  line-height: 2.8;
  letter-spacing: 0.08em;
  font-weight: 600;
}

@media screen and (max-width: 1025px) {
  .oc25-read__text {
    font-size: 15px;
    line-height: 2.5;
  }
}

.oc25-read__image {
  padding-left: 40px;
  width: 445px;
  flex-shrink: 1;
}

@media screen and (max-width: 1025px) {
  .oc25-read__image {
    padding-left: 0;
    width: 100%;
    flex-shrink: 0;
  }
}

/* cta */
.oc25-read__cta {
  padding-top: 90px;
}

.oc25-read__cta--text {
  display: block;
  text-align: center;
  font-size: 30px;
  color: #1c52e5;
  padding-bottom: 20px;
  width: max-content;
  margin-inline: auto;
  padding-right: 15px;
  padding-left: 15px;
}

@media screen and (max-width: 1025px) {
  .oc25-read__cta--text {
    font-size: 19px;
    margin-bottom: 0;
  }
}

.--shasen {
  position: relative;
}

.--shasen::before,
.--shasen::after {
  position: absolute;
  top: 0.2rem;
  height: 1.8rem;
  content: '';
}

.--shasen::before {
  border-left: solid 3px;
  left: 0;
  transform: rotate(-15deg);
}

.--shasen::after {
  border-right: solid 3px;
  right: 0;
  transform: rotate(15deg);
}


.cta-box {
  background-color: #1c52e5;
  padding: 60px;
  border-radius: 20px;
}

@media screen and (max-width: 1025px) {
  .cta-box {
    padding: 50px 30px;
  }
}

.cta-contents {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding-bottom: 60px;
  position: relative;
}

@media screen and (max-width: 1025px) {
  .cta-contents {
    flex-direction: column;
    gap: 30px;
    padding-bottom: 40px;
  }
}

.cta-contents::after {
  content: '';
  display: block;
  border-right: 1px solid #fff;
  height: 240px;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-40%, -50%);
}

@media screen and (max-width: 1025px) {
  .cta-contents::after {
    content: none;
  }
}


.cta-contents__logo {
  width: 346px;
  flex-shrink: 1;
}


@media screen and (max-width: 1025px) {
  .cta-contents__logo {
    width: 100%;
    border-bottom: 2px solid #fff;
    padding-bottom: 30px;
  }
}



.cta-contents__info {
  width: 337px;
}

@media screen and (max-width: 1025px) {
  .cta-contents__info {
    width: 100%;
  }
}



.oc25-cta {}


.oc25-cta__date {}

@media screen and (max-width: 1025px) {
  .oc25-cta__date {}
}

.oc25-cta__hour {
  display: block;
  padding-top: 15px;
  font-size: 25px;
  color: #fff;
  letter-spacing: 0.08em;
  padding-bottom: 15px;
}

@media screen and (max-width: 1025px) {
  .oc25-cta__hour {
    font-size: 24px;
  }
}

.oc25-cta__list {
  display: flex;
  flex-direction: column;
  gap: 8px;

}

.oc25-cta__item {
  display: flex;
  gap: 10px;
}

.oc25-cta__item--label {
  background-color: #fff;
  color: #0051d7;
  padding: 3px 15px;
  border-radius: 30px;
  font-size: 14px;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 1025px) {
  .oc25-cta__item--label {
    font-size: 13px;
  }
}

.oc25-cta__item--text {
  color: #fff;
  font-size: 17px;
}

@media screen and (max-width: 1025px) {
  .oc25-cta__item--text {
    color: #fff;
    font-size: 15px;
  }

}

.cta-button {
  width: 100%;
}

.cta-button__link {
  display: block;
  text-align: center;
  background-color: #fff;
  padding: 20px;
  border-radius: 20px;
  position: relative;

}

@media screen and (max-width: 1025px) {
  .cta-button__link {
    background-color: #ffff00;
    padding: 15px 10px;
    border-radius: 33px;
  }

  .cta-button__link.press {
    box-shadow: 0 10px 0 #003dac;
  }

  .cta-button__link.press:hover {
    transform: translateY(4px);
    box-shadow: none;
  }
}

.cta-button__link--image {
  position: absolute;
  left: 10px;
  top: -22px;
}

.pc.cta-button__link--image {
  width: 152px;
}

.sp.cta-button__link--image {
  width: 74px;
  top: -20px;
  left: 0;
}

.cta-button--text {
  color: #0051d7;
  font-size: 20px;

}

@media screen and (max-width: 1025px) {
  .cta-button--text {
    color: #0051d7;
    font-size: 16px;
    letter-spacing: 0.03em;
    font-weight: 900;


  }
}

/* menu */

/* .header__link {
  font-weight: 700;
  letter-spacing: 0.48px;
  transition: color 0.3s;
}
.header__link:hover {
  color: #F5810E;
}


.header__open {
  margin-top: 3px;
} */

.oc25-header__menu--link {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 999;
}

.oc25-header__menu--link {
  width: 190px;
  background-color: #1c52e5;
  border-radius: 25px;
  padding: 15px 25px;
}

@media screen and (max-width: 1025px) {
  .oc25-header__menu--link {
    max-width: 100px;
    padding: 5px 15px;
    border-radius: 30px;
  }
}

.oc25-header__menu--link.is-checked {
  background-color: #fff;
}

.oc25-header__menu--text {
  display: inline-block;
  text-align: center;
  font-size: 13px;
  line-height: 2;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;

}

.oc25-header__menu--text.is-checked {
  color: #0051d7;
}


button {
  margin: 0;
  padding: 0;
  border: none;
  box-shadow: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.drawer-icon {
  width: 12px;
  height: 9px;
  position: relative;
  z-index: 51;
}

.drawer-icon__bar {
  position: absolute;
  top: 10px;
  left: 0;
  width: 12px;
  height: 1px;
  border-radius: 6px;
  background: #fff;
  transition: transform 0.3s linear, top 0.3s linear;
}

.drawer-icon.is-checked .drawer-icon__bar {
  background: #0b37bc;
}

.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 14px;
  transform: rotate(30deg);
}

.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}

.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 14px;
  transform: rotate(-30deg);
}


.drawer-icon__bar:nth-of-type(2) {
  top: 14px;
}

.drawer-icon__bar:nth-of-type(3) {
  top: 18px;
}

.drawer-content {
  position: fixed;
  top: 0;
  right: 0;
  max-width: 480px;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  /* ここで中身だけスクロール */
  background-color: #0051d7;
  z-index: 99;
  /* padding-top: 86px; */
  padding-top: 46px;
  transform: translateX(100%);
  transition: transform 0.3s linear;
}

@media screen and (max-width: 1025px) {
  .drawer-content {
    max-width: 480px;
    width: 100%;
    height: 100%;

  }
}

.drawer-content.is-checked {
  transform: translateX(0%);
}

.drawer-content__menu {
  width: 100%;
  padding: 90px 60px;
}

@media screen and (max-width: 480px) {
  .drawer-content__menu {
    width: 100%;
    padding: 60px 30px;
  }
}

.drawer-content__menu--list {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
  border-top: 1px solid #3969E8;
}

.drawer-content__menu--item {
  width: 100%;
  border-bottom: 1px solid #3969E8;
}

.drawer-content__link {
  display: block;
  padding-top: 30px;
  padding-right: 0;
  padding-bottom: 30px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.48px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.drawer-content__button {
  margin-top: 14px;
}


.arrow-white {
  position: relative;
  display: inline-block;
  width: 8.4px;
  height: 14.7px;
}

.arrow-white::before,
.arrow-white::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 11px;
  height: 2px;
  border-radius: 9999px;
  background-color: #ffffff;
  transform-origin: calc(100% - 1px) 50%;
}

.arrow-white::before {
  transform: rotate(45deg);
}

.arrow-white::after {
  transform: rotate(-45deg);
}

.oc25-menu__bottom {
  padding-bottom: 50px;
}

.oc25-menu__bottom .ex-link__list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 15px;
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #3969E8;

}

.oc25-menu__bottom .ex-link__item {}

.oc25-menu__bottom .ex-link__item--link {
  font-size: 13px;
  color: #fff;
}

.oc25-menu__bottom .copyright {
  padding-top: 50px;
}

.oc25-menu__bottom .copy {
  font-size: 9px;
  color: #fff;
  font-weight: 500;
}



/* footer */
.oc25-footer {
  position: relative;
  background-color: #0051d7;
}

.footer-image {}

.oc25-footer__inner {
  position: absolute;
  top: 180px;
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .oc25-footer__inner {
    top: 60px;
    width: 100%;
  }
}

.oc25-footer__contents {
  margin-inline: auto;
  max-width: calc(1080px + 20px *2);
  padding-right: 20px;
  padding-left: 20px;
  display: flex;
  gap: 150px;
  align-items: flex-end;
  padding-bottom: 60px;
}

@media screen and (max-width: 1025px) {
  .oc25-footer__contents {
    max-width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    flex-direction: column;
    padding-bottom: 20px;
  }

}

@media screen and (max-width: 1024px) {
  .oc25-footer__contents {
    flex-direction: column;
    gap: 40px;
  }
}

.oc25-footer__logo {
  width: 300px;
  flex-shrink: 0;
}

@media screen and (max-width: 1024px) {
  .oc25-footer__logo {
    margin-inline: auto;
  }
}

.oc25-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media screen and (max-width: 1024px) {
  .oc25-footer__nav {
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
  }
}

.oc25-form__link {
  padding: 16px;
  background-color: #fff;
  border-radius: 25px;
  width: 300px;
}

@media screen and (max-width: 1025px) {

  .oc25-form__link {
    padding: 16px;
    background-color: #ffff00;
    border-radius: 25px;
    width: 300px;
  }
}

.oc25-form__link--text {
  font-size: 16px;
  font-weight: 800;
  color: #0051d7;
}

@media screen and (max-width: 1025px) {
  .oc25-form__link--text {
    font-size: 14px;
  }
}

.footer-nav__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px 40px;
}

@media screen and (max-width: 1024px) {
  .footer-nav__list {
    gap: 13px;
    padding-top: 20px;

  }

}

@media screen and (max-width: 1025px) {

  .footer-nav__item:first-child,
  .footer-nav__item:nth-child(2) {
    width: 100%;
  }

  .footer-nav__item a {
    text-align: left;
  }

}

.footer-nav__link {
  font-size: 14px;
  color: #fff;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-nav__link .arrow-white {}

.oc25-footer__bottom {
  max-width: calc(1080px + 20px * 2);
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 40px 0;
  border-top: 1px solid;
  border-bottom: 1px solid;
  border-color: rgba(255, 255, 255, 0.3);
}

@media screen and (max-width: 1024px) {
  .oc25-footer__bottom {
    padding: 30px 20px;
    flex-direction: column-reverse;
    border: none;
  }
}


.oc25-footer__bottom .copyright .copy {
  font-size: 10px;
  color: #fff;
}

@media screen and (max-width: 1025px) {
  .oc25-footer__bottom .copyright {
    padding-top: 20px;
  }

  .oc25-footer__bottom .copyright .copy {
    font-size: 9px;
  }
}

.ex-link__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

@media screen and (max-width: 1025px) {
  .ex-link__list {
    flex-direction: column-reverse;
    gap: 15px;
    border-top: 1px solid;
    border-bottom: 1px solid;
    border-color: rgba(255, 255, 255, 0.3);
    padding-top: 15px;
    padding-bottom: 15px;
    width: 100%;
    margin-inline: auto;
  }
}

.ex-link__item {}

.ex-link__item--link {
  font-size: 13px;
  color: #fff;
  letter-spacing: 0.05em;
  display: flex;
  gap: 10px;
  align-items: center;

}

@media screen and (max-width: 1025px) {
  .ex-link__item--link {
    font-size: 12px;
  }
}

.ex-link__icon {
  width: 11px;
  height: 11px;

}


/*-------------------------
  タブ切り替え
-------------------------*/
.tab_menu {
  z-index: 2;
  position: relative;
  width: 50%;
  float: left;
  text-align: center;
  transition: all 0.2s ease;
  cursor: pointer;
  box-sizing: border-box;
}

.tab_menu:hover {
  color: #838383;
}

input[name=tab_menu] {
  display: none;
}

.tab_content {
  display: none;
  z-index: 1;
  clear: both;
  padding: 30px 30px 50px;
  margin: 0 0 30px 0;
  position: relative;
  top: -1px;
}

@media (max-width: 768px) {
  .tab_content {
    padding: 0;
  }
}

#tab_a:checked~#tab_a_content,
#tab_b:checked~#tab_b_content {
  display: block !important;
}

#tab_a_content {
  border: solid 5px #fa5f41;
  background: #fff;
}

#tab_b_content {
  border: solid 5px #0051d7;
  background: #fff;
}

.slide-arrow {
  opacity: 1;
  transition: opacity 0.2s;
}

.slide-arrow.disabled {
  opacity: 0.4;
  pointer-events: none;
}

.slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.slide-track {
  display: flex;
  width: 1000%;
  /* 複製したスライドを全て表示できる幅 */
  animation: scroll 150s linear infinite;
}

@media (max-width: 768px) {
  .slide-track {
    width: 2500%;
  }
}

.slide {
  flex: 0 0 20%;
  /* スライドの幅を均等に */
  text-align: center;
  line-height: 100px;
  font-size: 24px;
  background: #333;
  color: white;
  border-right: 2px solid #f0f0f0;
}

/* アニメーション */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/*# sourceMappingURL=style.css.map */


#tab_a_content .Update {
  border: 2px solid #fa5f41;
}

#tab_a_content .Update h3 {
  background: #fa5f41;
}

#tab_a_content .Update .Inner {
  background: rgb(250 95 65 / 8%);
}

/* section共通 */

.oc25-section__number {
  font-size: 24px;
  color: #1c52e5;
}

@media screen and (max-width: 1025px) {
  .oc25-section__number {
    font-size: 17px;
  }
}

.oc25-section__main-title {
  font-size: 100px;
  color: #1c52e5;
  text-transform: uppercase;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
}

@media screen and (max-width: 1025px) {
  .oc25-section__main-title {
    font-size: 70px;
  }
}

.oc25-section__sub-title {
  font-size: 22px;
  color: #1c52e5;
}

@media screen and (max-width: 1025px) {
  .oc25-section__sub-title {
    font-size: 16px;
  }
}

/* point */
.oc25-point {
  padding-bottom: 60px;
  /* position: relative; */
}


.oc25-point__titles {
  max-width: 1080px;
  margin-inline: auto;
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 120px;
}

@media screen and (max-width: 1025px) {
  .oc25-point__titles {
    max-width: 100%;
    padding-right: 30px;
    padding-left: 30px;
    flex-direction: column;
    gap: 0px;
    align-items: flex-start;
    padding-bottom: 0;
  }
}

@media screen and (max-width: 1025px) {
  .oc25-point__titles .oc25-section__main-title {
    margin-left: -6px;

  }

  .oc25-point__titles .oc25-section__sub-title {
    padding-top: 10px;
  }
}



.oc25-point__titles .oc25-section__number {
  display: inline-block;
  margin-top: -33px;
}

.oc25-point__titles .oc25-section__sub-title {
  display: inline-block;
  padding-top: 10px;
}

.point-wrap {
  position: relative;
  z-index: 0;
}

.oc25-point__back-image {
  position: absolute;
  right: 0;
  top: -170px;
  width: 80%;
  z-index: -1;
}

@media screen and (max-width: 1025px) {
  .oc25-point__back-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 80%;
    z-index: -1;
  }
}


.oc25-point__cards {
  max-width: 1080px;
  width: 100%;
  margin-inline: auto;
  display: flex;
  gap: 100px;
  flex-direction: column;
  padding-bottom: 120px;
  position: relative;
  /* z-index: 2; */
  z-index: 0;
}



@media screen and (max-width: 1025px) {
  .oc25-point__cards {
    max-width: 100%;
    padding-right: 30px;
    padding-left: 30px;
    padding-top: 60px;
    gap: 48px;

  }
}

.oc25-point__card {
  display: flex;
  position: relative;
  z-index: 0;
}

@media screen and (max-width: 1025px) {
  .oc25-point__card {
    flex-direction: column-reverse;
    border-radius: 25px;
    box-shadow: 0px 0px 10px 0px #1c52e526;
  }
}

.oc25-point__card.row-rev {
  display: flex;
  position: relative;
  flex-direction: row-reverse;
}

@media screen and (max-width: 1025px) {
  .oc25-point__card.row-rev {
    flex-direction: column-reverse;
  }
}

.oc25-point__texts {
  border-radius: 25px;
  box-shadow: 0px 0px 10px 0px #1c52e526;
  padding: 90px 90px 120px 60px;
  position: relative;
  max-width: 570px;
  flex-shrink: 1;
  margin-right: auto;
  background-color: #fff;


}

@media screen and (max-width: 1025px) {
  .oc25-point__texts {
    box-shadow: none;
    padding: 20px 30px 40px;
    position: initial;
    max-width: 100%;
    flex-shrink: 1;
    margin-right: auto;

  }

}

.row-rev .oc25-point__texts {
  margin-right: inherit;
  margin-left: auto;
  padding: 90px 60px 120px 90px;
}

@media screen and (max-width: 1025px) {
  .row-rev .oc25-point__texts {
    margin-right: inherit;
    margin-left: auto;
    padding: 20px 30px 40px;
  }
}

.oc25-point__card-number {
  position: absolute;
  left: 0;
  top: -30px;
  width: 77px;
  height: 77px;
  background-color: #1c52e5;
  color: #fff;
  border-radius: 50% 50% 0 50%;
  font-size: 34px;
  font-weight: 600;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  z-index: 2;
}

@media screen and (max-width: 1025px) {
  .oc25-point__card-number {
    width: 60px;
    height: 60px;
    z-index: 2;
    font-size: 27px;
  }
}

@media screen and (max-width: 1025px) {
  .oc25-point__card-number.sp {
    position: static;
    display: none;
  }
}


.row-rev .oc25-point__card-number {
  left: initial;
  right: 0;
  border-radius: 50% 50% 50% 0;

}

@media screen and (max-width: 1025px) {
  .row-rev .oc25-point__card-number {
    left: 0;
    right: initial;
    border-radius: 50% 50% 0 50%;
    z-index: 2;
  }
}


.oc25-point__card-title {
  font-size: 26px;
  color: #1c52e5;
}

@media screen and (max-width: 1025px) {
  .oc25-point__card-title {
    font-size: 20px;
    text-align: center;
  }
}

.oc25-point__card-text {
  padding-top: 25px;
  font-size: 15px;
  line-height: 2.2;
}

@media screen and (max-width: 1025px) {
  .oc25-point__card-text {
    padding-top: 10px;
  }
}

.oc25-point__image {
  position: absolute;
  right: 0;
  top: -60px;
  max-width: 540px;
  /* z-index: 1; */
  padding-bottom: 90px;
}

@media screen and (max-width: 1025px) {
  .oc25-point__image {
    max-width: 100%;
    position: static;
    z-index: 0;
    padding-bottom: 0;
  }
}

.row-rev .oc25-point__image {
  left: 0;
  right: initial;
}

.oc25-point__image img {
  border-radius: 25px;

}

.oc25-point__slider {
  width: 100%;
}

/* program */
.oc25-program {
  padding-top: 60px;
}

.oc25-program__titles {
  text-align: center;
  padding-bottom: 90px;
}

@media screen and (max-width: 1025px) {
  .oc25-program__titles {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 60px;
    padding-right: 20px;
    padding-left: 20px;
  }
}

.oc25-program__titles .oc25-section__main-title {
  line-height: 0.9;
  padding-top: 20px;
}

@media screen and (max-width: 1025px) {
  .oc25-program__titles .oc25-section__main-title {
    font-size: 60px;
  }
}

.oc25-program__titles .oc25-section__sub-title {
  display: inline-block;
  padding-top: 20px;
}

.oc25-program__inner {
  padding-right: 30px;
  padding-left: 30px;
  margin-inline: auto;
}

.oc25-program__list {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  column-gap: 40px;
  row-gap: 60px;
  padding-bottom: 120px;
}

@media screen and (max-width: 1025px) {
  .oc25-program__list {
    flex-direction: column;
    row-gap: 30px;
    padding-bottom: 60px;
  }
}

.oc25-program__item {
  width: 30%;
  border-radius: 25px;
  box-shadow: 0px 0px 10px 0px #1c52e526;
  padding: 20px;
  position: relative;
}

@media screen and (max-width: 1025px) {
  .oc25-program__item {
    width: 100%;

  }
}

.oc25-program__image {}

.oc25-program__label {
  position: absolute;
  top: 0;
  left: 0;
  width: 84px;
  height: 84px;
  background-color: #1c52e5;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  border-radius: 50% 50% 0 50%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

@media screen and (max-width: 1025px) {
  .oc25-program__label {
    width: 65px;
    height: 65px;
    font-size: 15px;
  }
}

.oc25-program__texts {
  padding-right: 20px;
  padding-left: 20px;
}

@media screen and (max-width: 1025px) {
  .oc25-program__texts {
    padding-right: 10px;
    padding-left: 10px;
  }
}


.oc25-program__texts--title {
  font-size: 24px;
  color: #1c52e5;
  padding-top: 30px;
  padding-bottom: 20px;
  text-align: center;
}

@media screen and (max-width: 1025px) {
  .oc25-program__texts--title {
    font-size: 22px;
    padding-top: 28px;
    padding-bottom: 16px;
  }
}

.oc25-program__texts--info1 {
  display: block;
  font-size: 14px;
  color: #1c52e5;
  padding-bottom: 10px;
  text-align: center;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 1025px) {
  .oc25-program__texts--info1 {
    letter-spacing: 0.05em;
  }
}

.oc25-program__texts--info2 {
  display: block;
  font-size: 14px;
  color: #1c52e5;
  padding-bottom: 20px;
  text-align: center;
}

.oc25-program__texts--text {
  font-size: 14px;
  line-height: 1.8;
  font-weight: 500;
  padding-bottom: 40px;
}

/* timetable */

.oc25-timetable {}

.oc25-timetable__titles {
  padding-bottom: 30px;
  position: relative;
}

.oc25-timetable__title {
  font-size: 38px;
  color: #1c52e5;
  letter-spacing: 0.08em;
  text-align: center;
}

@media screen and (max-width: 1025px) {
  .oc25-timetable__title {
    font-size: 26px;
  }
}

.oc25-timetable__back-image {
  position: absolute;
  top: -70px;
}

@media screen and (max-width: 1025px) {
  .oc25-timetable__back-image {
    top: 0;
    overflow: hidden;
  }

  .oc25-timetable__back-image img {
    width: 200%;
    max-width: 200%;
  }
}

.oc25-timetable__inner {
  padding-right: 30px;
  padding-left: 30px;
  padding-bottom: 60px;
}

@media screen and (max-width: 1025px) {
  .oc25-timetable__inner {
    padding-right: 8px;
    padding-left: 8px;
    padding-bottom: 30px;
  }
}

.oc25-timetable-wrap {
  padding-top: 120px;
  position: relative;
  padding-bottom: 60px;
}

@media screen and (max-width: 1025px) {
  .oc25-timetable-wrap {
    padding-top: 10px;
    padding-bottom: 30px;
  }
}

.oc25-timetable__image {
  border-radius: 25px;
}

.oc25-timetable__text {
  position: absolute;
  color: #fff;
  text-align: center;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 1025px) {
  .oc25-timetable__text {
    font-size: 18px;
  }
}


.oc25-timetable__text--small {}

@media screen and (max-width: 1025px) {

  .oc25-timetable__text--small {
    font-size: 14px;
  }
}

.oc25-timetable__link {
  display: block;
  max-width: 1080px;
  margin-inline: auto;
  padding: 20px;
  background-color: #1c52e5;
  border-radius: 25px;
  transition: .5s;
  overflow: hidden;
}

.oc25-timetable__link img {
  transition: .5s;
}

.oc25-timetable__link:hover img {
  transform: scale(1.1);
  transition: .5s;
}



@media screen and (max-width: 1025px) {
  .oc25-timetable__link {
    max-width: 90%;
    padding: 5px;
  }
}

.oc25-timetable__zabuton {
  position: absolute;
  bottom: 0;
  z-index: -1;
  background-color: #1c52e5;
  width: 100%;
  height: 300px;
  border-radius: 20px;
}

@media screen and (max-width: 1025px) {
  .oc25-timetable__zabuton {
    position: absolute;
    bottom: 0;
    z-index: -1;
    background-color: #1c52e5;
    width: 100%;
    height: 190px;
    border-radius: 20px;
  }
}

/* course */
.oc25-course {
  padding-top: 90px;
  padding-bottom: 120px;
  position: relative;
}

.oc25-course__back-image {
  position: absolute;
  right: 0;
  width: 30%;
  z-index: -1;

}

@media screen and (max-width: 1025px) {}

.oc25-course__titles {
  position: relative;
  max-width: 1080px;
  margin-inline: auto;
  padding-left: 60px;
  padding-bottom: 120px;
}

@media screen and (max-width: 1025px) {
  .oc25-course__titles {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    padding-bottom: 40px;
    padding-left: 30px;

  }
}

.oc25-course__titles .oc25-section__number {
  display: inline-block;
  position: absolute;
  top: 14px;
  left: 0;
}

@media screen and (max-width: 1025px) {
  .oc25-course__titles .oc25-section__number {
    position: initial;
  }
}

.oc25-course__titles .oc25-section__sub-title {
  display: inline-block;
  padding-top: 20px;
}

@media screen and (max-width: 1025px) {
  .oc25-course__titles .oc25-section__main-title {
    margin-left: -6px;
  }

  .oc25-course__titles .oc25-section__sub-title {
    padding-left: 6px;
    padding-top: 10px;
  }

}


.oc25-course__inner {
  max-width: calc(1080px + 20px * 2);
  margin-inline: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.oc25-course__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media screen and (max-width: 1025px) {}

.oc25-course__item {
  padding: 20px;
  border-radius: 30px;
  display: flex;
  gap: 20px;
  align-items: center;
  border-radius: 25px;
  box-shadow: 0px 0px 10px 0px #1c52e526;
  background-color: #fff;

}

@media screen and (max-width: 1025px) {
  .oc25-course__item {
    flex-direction: column-reverse;
  }
}

.course-contents {
  padding: 40px 60px;
  padding-left: 40px;
}

@media screen and (max-width: 1025px) {
  .course-contents {
    padding: 0 20px 30px;
  }
}

.course-contents__heading {
  font-size: 34px;
  color: #1c52e5;
  font-weight: 600;
}

@media screen and (max-width: 1025px) {
  .course-contents__heading {
    font-size: 28px;
  }
}

.course-contents__sub-heading {
  font-size: 10px;
  color: #bfcef8;
  text-transform: uppercase;
}

.course-contents__copy {
  padding-top: 40px;
  font-size: 20px;
  color: #1c52e5;
  line-height: 1.6;
  font-weight: 500;
}

@media screen and (max-width: 1025px) {
  .course-contents__copy {
    padding-top: 30px;
  }
}

.course-contents__text {
  display: block;
  padding-top: 20px;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 500;
  padding-bottom: 20px;
}

.course-contents__link {
  display: block;
  width: max-content;
  font-size: 14px;
  color: #fff;
  background-color: #1c52e5;
  padding: 15px 40px;
  border-radius: 30px;
}

.course-image {
  width: 485px;
  flex-shrink: 0;
}

@media screen and (max-width: 1025px) {
  .course-image {
    width: 100%;
    flex-shrink: 0;
  }

  .course-image img {
    border-radius: 30px;
  }
}


/* 開催情報 info */
.oc25-info {
  background-color: #1c52e5;
  padding-top: 90px;
  padding-bottom: 180px;
}

@media screen and (max-width: 1025px) {
  .oc25-info {
    padding-top: 60px;
    padding-bottom: 90px;
  }
}

.oc25-info__inner {
  padding-right: 20px;
  padding-left: 20px;
}

.oc25-info__titles {
  max-width: 880px;
  margin-inline: auto;
  padding-bottom: 90px;
}

@media screen and (max-width: 1025px) {
  .oc25-info__titles {
    max-width: 100%;
    padding-bottom: 35px;
  }
}

.oc25-info__main-title {
  color: #fff;
  text-align: center;
  width: 100%;
}

@media screen and (max-width: 1025px) {
  .oc25-info__main-title img {
    width: 100%;
    max-width: 280px;
    margin-inline: auto;
  }
}

.oc25-info__sub-title {
  color: #fff;
  text-align: center;

}

.oc25-info__news {
  width: 100%;
  max-width: 880px;
  margin-inline: auto;
  padding-bottom: 30px;
}

@media screen and (max-width: 1025px) {
  .oc25-info__news {
    max-width: 100%;
    position: relative;
  }
}

.oc25-info__news__link {
  display: block;
  background-color: #0b37bc;
  color: #fff;
  text-align: center;
  padding-top: 25px;
  padding-bottom: 25px;
  border-radius: 20px;
  /* oc25-info__icon.webp */
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

@media screen and (max-width: 1025px) {
  .oc25-info__news__link {
    flex-direction: column;
    padding-right: 42px;
    padding-left: 42px;
    gap: 0;

  }
}

.oc25-info__news--icon {
  width: 30px;
  height: 30px;
}

@media screen and (max-width: 1025px) {
  .oc25-info__news--icon {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.oc25-info__news--date {
  font-size: 18px;
}

@media screen and (max-width: 1025px) {
  .oc25-info__news--date {
    font-size: 14px;
  }
}

.oc25-info__news--title {
  font-size: 18px;
}

@media screen and (max-width: 1025px) {
  .oc25-info__news--title {
    font-size: 16px;
  }
}

.oc25-info__contents {
  max-width: 880px;
  margin-inline: auto;
  border-radius: 30px;
  background-color: #fff;
  padding: 20px 30px 50px;
}

@media screen and (max-width: 1025px) {
  .oc25-info__contents {
    max-width: 100%;
    border-radius: 30px;
    padding: 20px 20px 30px;
    border-radius: 15px;
  }
}

.info__header {
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.info__header--maru {
  display: block;
  width: 14px;
  height: 14px;
  background: #0051d7;
  border-radius: 50%;
}

.info-body {
  max-width: 700px;
  margin-inline: auto;
}

@media screen and (max-width: 1025px) {
  .info-body {
    padding-top: 20px;
  }
}

.info-body__title {
  font-size: 20px;
  font-weight: 600;
  color: #1c52e5;
  letter-spacing: 0.08em;
  width: max-content;
  margin-inline: auto;
  text-align: center;
  padding-bottom: 30px;
}

.info-body__title::after {
  content: '';
  display: block;
  margin-top: 10px;
  border-top: 2px solid #0051d7;
  text-align: center;
}

.info-body__caution {
  background-color: #fff6b6;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

@media screen and (max-width: 1025px) {
  .info-body__caution {
    flex-direction: column;
    gap: 5px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

.info-body__caution--icon {
  width: 24px;
}

@media screen and (max-width: 1025px) {
  .info-body__caution--icon {
    width: 18px;
  }

}

.info-body__caution--text {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  color: #fc5700;
}

@media screen and (max-width: 1025px) {
  .info-body__caution--text {
    text-align: center;
    font-size: 13px;
  }
}

@media screen and (min-width: 768px) {
  .info-body__caution--text .sp {
    display: none;
  }
}

.info-data__list {
  padding-top: 40px;
  padding-bottom: 30px;
}

.info-data__row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 25px;
  padding-bottom: 25px;
  border-bottom: 1px dotted #ccc;
}

@media screen and (max-width: 1025px) {
  .info-data__row {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.info-data__title {
  font-size: 16px;
  font-weight: 800;
  width: 18%;
}

@media screen and (max-width: 1025px) {
  .info-data__title {
    width: 100%;
  }
}

.info-data__title.wide {
  letter-spacing: 0.3em;
}

.info-data__text {
  font-size: 16px;
  font-weight: 500;
}

@media screen and (max-width: 1025px) {
  .info-data__text {
    padding-top: 5px;
    font-size: 14px;
    padding-left: 15px;
  }

}

.info-data__bottom--list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 40px;
}

@media screen and (max-width: 1025px) {
  .info-data__bottom--list {
    gap: 8px;
    padding-bottom: 10px;
  }
}


.info-data__bottom--item {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 1025px) {
  .info-data__bottom--item {
    font-size: 11px;
    font-weight: 500;
  }
}

.info-data__cta {
  margin-bottom: 40px;
}

.coming {
  display: block;
  text-align: center;
}

.info-data__cta--link {
  transition: hover .3s;

}

.info-data__cta--link:hover {
  transition: .3s;
  opacity: 0.3;
}

/* お願い */
.info-request {
  max-width: 700px;
  margin-inline: auto;
}

.request-boxes {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 90px;
}

@media screen and (max-width: 1025px) {
  .request-boxes {
    padding-bottom: 60px;
    gap: 20px;
  }

}

.request-box {
  /* padding-bottom: 90px; */
}

.rq-box__head {
  width: 100%;
  background-color: #e6e6e6;
  padding-top: 20px;
  padding-bottom: 20px;
}

.rq-box__head--title {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}


@media screen and (max-width: 1025px) {
  .rq-box__head--title {
    font-size: 15px;
  }
}

.js-accordion {}

.rq-box__body {
  display: none;
  padding-top: 30px;
}

@media screen and (max-width: 1025px) {
  .rq-box__body {
    padding-top: 20px;
  }

}

.rq-box__body--text {
  font-size: 13px;
  line-height: 2;
}

@media screen and (max-width: 1025px) {
  .rq-box__body--text {
    font-size: 11px;
  }
}

.parking-link {
  color: #1c52e5;
  text-decoration: underline;
}

.oc25-info__entry {
  padding-bottom: 30px;
}

@media screen and (max-width: 1025px) {
  .oc25-info__entry {
    padding-bottom: 20px;
  }
}

.oc25-info__entry--link {
  display: block;
  text-align: center;
  background-color: #1c52e5;
  padding-top: 25px;
  padding-bottom: 30px;
  position: relative;
  border-radius: 30px;
}

@media screen and (max-width: 1025px) {
  .oc25-info__entry--link {
    background-color: #ffff00;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.oc25-info__entry--icon {
  width: 102px;
  position: absolute;
  left: 0;
  top: -40px;
}

@media screen and (max-width: 1025px) {
  .oc25-info__entry--icon {
    width: 52px;
    top: -30px;
  }
}

.oc25-info__entry--text {
  color: #fff;
  font-size: 23px;
  font-weight: 600;
}

@media screen and (max-width: 1025px) {
  .oc25-info__entry--text {
    color: #1c52e5;
    font-size: 18px;
    font-weight: 900;
  }

}

.oc25-info__flow {
  margin-inline: auto;
  text-align: center;
}

.oc25-info__flow--text {
  text-align: center;
  font-size: 14px;
}

.oc25-info__flow--link {
  color: #1c52e5;
  text-decoration: underline;
}



/* access */
.oc25-access {
  padding-top: 220px;
  padding-bottom: 120px;
}

@media screen and (max-width: 1025px) {
  .oc25-access {
    padding-right: 30px;
    padding-left: 30px;
    padding-bottom: 90px;
  }
}

.oc25-access__inner {
  /* padding-top: 230px; */
  max-width: 1200px;
  margin-inline: auto;
  box-shadow: 0px 0px 10px 0px #1c52e526;
  border-radius: 20px;
  position: relative;
}

@media screen and (max-width: 1025px) {
  .oc25-access__inner {
    max-width: 100%;
    padding-right: 30px;
    padding-left: 30px;
    border-radius: 6px;
  }
}

.oc25-access__contents {
  max-width: 1080px;
  margin-inline: auto;
  display: flex;
  gap: 90px;
  padding-bottom: 90px;
}

@media screen and (max-width: 1025px) {
  .oc25-access__contents {
    flex-direction: column;
    max-width: 100%;
    gap: 40px;
    padding-bottom: 58px;

  }
}

.oc25-access__texts {
  margin-top: -90px;
}

@media screen and (max-width: 1025px) {
  .oc25-access__texts {
    margin-top: 58px;
  }
}

.oc25-access__titles {
  padding-bottom: 100px;
}

@media screen and (max-width: 1025px) {
  .oc25-access__titles {
    padding-top: 0;
    display: flex;
    flex-direction: column;
    position: absolute;
    padding-bottom: 0;
    top: -180px;
    left: 0;
  }

  .oc25-access__titles .oc25-section__sub-title {
    padding-top: 10px;
  }
}

.oc25-section__number {}

.oc25-section__main-title {}

.oc25-section__sub-title {}


.oc25-access__map {
  position: relative;
  margin-top: -120px;
  width: 50%;
  padding-top: 56.25%;
  /* 16:9のアスペクト比 */
  height: 0;
}

@media screen and (max-width: 1025px) {
  .oc25-access__map {
    margin-top: 0;
    padding-top: 80%;
    width: 100%;

  }
}

.oc25-access__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
}

@media screen and (max-width: 1025px) {
  .oc25-access__map iframe {
    border-radius: 6px;
  }
}

.oc25-access__address {
  padding-bottom: 20px;
}

.oc25-access__address-name {
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 10px;
  color: #1c52e5;
}

.oc25-access__address-text {
  display: block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.oc25-access__address-tel {
  display: block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;

}

.oc25-access__list {}

.oc25-access__item {

  border-bottom: 1px solid #bfcef8;
}

.oc25-access__item--link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 18px;
  padding-bottom: 18px;
}

.oc25-access__item--link .arrow-access {
  position: relative;
  display: inline-block;
  width: 7.2px;
  height: 13.9px;
}

.oc25-access__item--link .arrow-access::before,
.oc25-access__item--link .arrow-access::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 10px;
  height: 1px;
  border-radius: 9999px;
  background-color: #1c52e5;
  transform-origin: calc(100% - 0.5px) 50%;
  z-index: 1;
}

.oc25-access__item--link .arrow-access::before {
  transform: rotate(45deg);
}

.oc25-access__item--link .arrow-access::after {
  transform: rotate(-45deg);
}

.oc25-access__item--text {
  color: #1c52e5;
  font-size: 14px;
}

.oc25-access__map--button {
  padding-top: 50px;
  max-width: 200px;
}

@media screen and (max-width: 1025px) {
  .oc25-access__map--button {
    padding-top: 30px;
    max-width: 100%;
    margin-inline: auto;
  }
}

.oc25-access__map--link {
  background-color: #1c52e5;
  border-radius: 30px;
  padding: 15px 30px;
  display: block;
  text-align: center;
  position: relative;
}

@media screen and (max-width: 1025px) {
  .oc25-access__map--link {
    padding: 15px 15px;
  }
}

.oc25-access__map--text {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

html {
  scroll-behavior: smooth;
}

#js-drawer-content {
  scroll-behavior: smooth;
}

.white-icon {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.arrow-blue {
  position: relative;
  display: inline-block;
  width: 3.3px;
  height: 2.6px;
  z-index: 2;
}

.arrow-blue::before,
.arrow-blue::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.25px);
  right: 0;
  width: 3px;
  height: 0.5px;
  border-radius: 9999px;
  background-color: #1c52e5;
  transform-origin: calc(100% - 0.25px) 50%;
}

.arrow-blue::before {
  transform: rotate(45deg);
}

.arrow-blue::after {
  transform: rotate(-45deg);
}