@charset "UTF-8";

:root {
  interpolate-size: allow-keywords;
  --bl: #000;
  --gray-02: #ccc;
  --grad-01: linear-gradient(90deg, var(--MAIN) 0%, var(--LMAIN) 100%);
  --grad-01-rev: linear-gradient(0deg, var(--MAIN) 0%, var(--LMAIN) 100%);
  --grad-02: linear-gradient(90deg, var(--ACC) 0%, var(--LACC) 100%);
  --grad-02-rev: linear-gradient(0deg, var(--ACC) 0%, var(--LACC) 100%);
  --grad-03: linear-gradient(90deg, var(--OTH) 0%, var(--LOTH) 100%);
  --grad-03-rev: linear-gradient(0deg, var(--OTH) 0%, var(--LOTH) 100%);
  --transition: all 0.3s ease-in-out;
  --oversize: calc((100% - 100vw) / 2);
}

/* ==================================
リセット・調整・ファンデーション
===================================== */
/* 高さを画像自体の高さにする */
:where(img) {
  vertical-align: bottom;
}
:where(.thumb),
:where([class*="__thumb"]) {
  vertical-align: bottom;
  background-color: unset;
}

/*---------- アクセシビリティ ----------*/
/* アイコンをスクリーンリーダーに読み上げられないようにする */
i,
[class*="material-icons"],
[class*="material-symbols"] {
  speak: none;
}

/*---------- Swiper ----------*/
/* 滑らかに */
.u-swiper-liner .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  -o-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}
/* ==================================
タイポ
===================================== */
/*---------- font（日本語フォントが打ち消される場合に使用） ----------*/
/* @font-face{
	font-family: "Avenir"; ←任意の文字で書く
	src: url('../../dcms_media/fonts/webFonts/Avenir35Light/font.woff2') format('woff2');
	src: url('../../dcms_media/fonts/webFonts/Avenir35Light/font.woff') format('woff');
	font-weight: 300; ←読み込むフォントのデータに合わせてweight設定する（woffデータの中にweightがすべてそろっていれば記載不要）
	unicode-range: U+0030-0039, U+0041-005A, U+0061-007A, U+0021, U+003F, U+0026, U+0025, U+002C, U+002E; ←英数字 + ! ? & % , . を含める
} */
/*↑↑↑必要に応じて記載変更↑↑↑↑*/


/* ゴシックとか */
.ff-notosans {
  font-family: "Noto Sans JP", serif;
}
.ff-lato {
  font-family: "Lato", sans-serif;
  /* letter-spacing: 0.05rem; */
}
.ff-oswald {
  font-family: "Oswald", sans-serif;
}
.ff-poppins {
  font-family: "Poppins", sans-serif;
}
.ff-zenmarugo {
  font-family: "Zen Maru Gothic", sans-serif;
}
.ff-zenkakugo {
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.ff-montserrat {
  font-family: "Montserrat", sans-serif;
}
.ff-staatliches {
  font-family: "Staatliches", sans-serif;
}
.ff-m-plus-rounded-1c {
  font-family: "M PLUS Rounded 1c", sans-serif;
  transform: rotate(0.07deg);
}
.ff-inter {
  font-family: "Inter", sans-serif;
}
/* 明朝とか */
.ff-notoserif {
  font-family: "Noto Serif JP", serif;
}
.ff-yumincho {
  font-family: "Yu Mincho", "YuMincho", serif;
}
.ff-shippori {
  font-family: "Shippori Mincho", serif;
}
.ff-shippori-b1 {
  font-family: "Shippori Mincho B1", serif;
}

/* font-weight */
.fw-600 {
  font-weight: 600 !important;
}
.fw-800 {
  font-weight: 800 !important;
}
.fw-900 {
  font-weight: 900 !important;
}

/* font-size */
@media print,
screen and (min-width: 992px) {
  .fs-lg-50 {
    font-size: 3.125rem;
  }
}
@media print,
screen and (min-width: 992px) {
  .fs-lg-60 {
    font-size: 3.75rem;
  }
}

/* 縦書き */
.vertical-rl {
  writing-mode: vertical-rl;
}

/* 袋文字 */
.text-hukuro {
  /* -webkit-text-stroke: 2px var(--bl);
     text-stroke: 2px var(--bl); */
  text-shadow: 2px 2px 1px var(--bl), -2px 2px 1px var(--bl), 2px -2px 1px var(--bl), -2px -2px 1px var(--bl), 2px 0px 1px var(--bl), 0px 2px 1px var(--bl), -2px 0px 1px var(--bl),
    0px -2px 1px var(--bl);
}
.text-hukuro-wht {
  /* -webkit-text-stroke: 2px var(--WHT);
     text-stroke: 2px var(--WHT); */
  text-shadow: 2px 2px 1px var(--WHT), -2px 2px 1px var(--WHT), 2px -2px 1px var(--WHT), -2px -2px 1px var(--WHT), 2px 0px 1px var(--WHT), 0px 2px 1px var(--WHT), -2px 0px 1px var(--WHT),
    0px -2px 1px var(--WHT);
}

/* box-decoration-break */
.decoration-break {
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* マーカーのあしらい */
mark {
  background: linear-gradient(transparent 60%, yellow 60%);
}

/* テキストをグラデーションにするベース */
.text-grad {
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: inline-block;
}

/* ==================================
ユーティリティー
===================================== */
/*---------- 画像の比率 ----------*/
.u-aspect {
  /* 縦横比はstyleでCSS変数を書き換える
     ex) style="--aspect: 2.51 / 1;" */
  --aspect: auto;
  @media print,
  screen and (min-width: 576px) {
    --aspect-sm: var(--aspect);
  }
  @media print,
  screen and (min-width: 768px) {
    --aspect-md: var(--aspect-sm);
  }
  @media print,
  screen and (min-width: 992px) {
    --aspect-lg: var(--aspect-md);
  }
  @media print,
  screen and (min-width: 1200px) {
    --aspect-xl: var(--aspect-lg);
  }
  @media print,
  screen and (min-width: 1400px) {
    --aspect-xxl: var(--aspect-xl);
  }

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: var(--aspect);
    @media print,
    screen and (min-width: 576px) {
      aspect-ratio: var(--aspect-sm);
    }
    @media print,
    screen and (min-width: 768px) {
      aspect-ratio: var(--aspect-md);
    }
    @media print,
    screen and (min-width: 992px) {
      aspect-ratio: var(--aspect-lg);
    }
    @media print,
    screen and (min-width: 1200px) {
      aspect-ratio: var(--aspect-xl);
    }
    @media print,
    screen and (min-width: 1400px) {
      aspect-ratio: var(--aspect-xxl);
    }
  }

  &.--4x3 img {
    aspect-ratio: 4 / 3;
  }
  &.--3x2 img {
    aspect-ratio: 3 / 2;
  }
  &.--16x9 img {
    aspect-ratio: 16 / 9;
  }
  &.--21x9 img {
    aspect-ratio: 21 / 9;
  }
  &.--1x1 img {
    aspect-ratio: 1 / 1;
  }
  &.--2x1 img {
    aspect-ratio: 2 / 1;
  }
  &.--3x1 img {
    aspect-ratio: 3 / 1;
  }
  &.--4x1 img {
    aspect-ratio: 4 / 1;
  }
  &.--7x8 img {
    aspect-ratio: 7 / 8;
  }
  &.--9x16 img {
    aspect-ratio: 9 / 16;
  }
  &.--2x3 img {
    aspect-ratio: 2 / 3;
  }
  &.--3x4 img {
    aspect-ratio: 3 / 4;
  }

  /* 画像全体を枠内に入れたいとき */
  &.--contain img,
  .--contain img {
    object-fit: contain;
  }
}

/*---------- 角丸 ----------*/
[class*="u-rounded"] {
  overflow: clip;
}
.u-rounded {
  --round: 0.625em;
  border-radius: var(--round);
  @media print,
  screen and (min-width: 576px) {
    --round-sm: var(--round);
    border-radius: var(--round-sm);
  }
  @media print,
  screen and (min-width: 768px) {
    --round-md: var(--round-sm);
    border-radius: var(--round-md);
  }
  @media print,
  screen and (min-width: 992px) {
    --round-lg: var(--round-md);
    border-radius: var(--round-lg);
  }
  @media print,
  screen and (min-width: 1200px) {
    --round-xl: var(--round-lg);
    border-radius: var(--round-xl);
  }
  @media print,
  screen and (min-width: 1400px) {
    --round-xxl: var(--round-xl);
    border-radius: var(--round-xxl);
  }
}

.u-rounded-_25 {
  border-radius: 0.25rem !important;
}
.u-rounded-_5 {
  border-radius: 0.5rem !important;
}
.u-rounded-_75 {
  border-radius: 0.75rem !important;
}
.u-rounded-1 {
  border-radius: 1rem !important;
}
.u-rounded-1_5 {
  border-radius: 1.5rem !important;
}
.u-rounded-1_25 {
  border-radius: 1.25rem !important;
}
.u-rounded-2 {
  border-radius: 2rem !important;
}
.u-rounded-3 {
  border-radius: 3rem !important;
}

.--round-top {
  border-bottom-right-radius: unset !important;
  border-bottom-left-radius: unset !important;
}
.--round-bottom {
  border-top-right-radius: unset !important;
  border-top-left-radius: unset !important;
}
.--round-right {
  border-top-left-radius: unset !important;
  border-bottom-left-radius: unset !important;
}
.--round-left {
  border-top-right-radius: unset !important;
  border-bottom-right-radius: unset !important;
}
.--round-trans-up {
  border-top-left-radius: unset !important;
  border-bottom-right-radius: unset !important;
}
.--round-trans-down {
  border-top-right-radius: unset !important;
  border-bottom-left-radius: unset !important;
}

/*---------- はみ出させる ----------*/
.u-over {
  margin-inline: var(--oversize);
}
/* 右に */
.u-r-over {
  margin-right: var(--oversize);
}
@media print,
screen and (min-width: 768px) {
  .u-r-md-over {
    margin-right: var(--oversize);
  }
}
@media print,
screen and (min-width: 992px) {
  .u-r-lg-over {
    margin-right: var(--oversize);
  }
}
/* 左に */
.u-l-over {
  margin-left: var(--oversize);
}
@media print,
screen and (min-width: 768px) {
  .u-l-md-over {
    margin-left: var(--oversize);
  }
}
@media print,
screen and (min-width: 992px) {
  .u-l-lg-over {
    margin-left: var(--oversize);
  }
}

.u-l-over-50vw {
  width: 50vw;
  margin-left: calc((50vw - 50%) * -1);
}
.u-r-over-50vw {
  width: 50vw;
  margin-right: -50vw;
}
@media print,
screen and (min-width: 768px) {
  .u-l-over-50vw-md {
    width: 50vw;
    margin-left: calc((50vw - 50%) * -1);
  }
  .u-r-over-50vw-md {
    width: 50vw;
    margin-right: -50vw;
  }
}
@media print,
screen and (min-width: 992px) {
  .u-l-over-50vw-lg {
    width: 50vw;
    margin-left: calc((50vw - 50%) * -1);
  }
  .u-r-over-50vw-lg {
    width: 50vw;
    margin-right: -50vw;
  }
}
@media print,
screen and (min-width: 1200px) {
  .u-l-over-50vw-xl {
    width: 50vw;
    margin-left: calc((50vw - 50%) * -1);
  }
  .u-r-over-50vw-xl {
    width: 50vw;
    margin-right: -50vw;
  }
}
@media print,
screen and (min-width: 1400px) {
  .u-l-over-50vw-xxl {
    width: 50vw;
    margin-left: calc((50vw - 50%) * -1);
  }
  .u-r-over-50vw-xxl {
    width: 50vw;
    margin-right: -50vw;
  }
}

/* ========================================
パーツ
======================================== */
/*---------- アイコン（アイコンフォント想定。大きさはp-*やfs-*、個別にwidth・height指定して調整。） ----------*/
.c-icon {
  aspect-ratio: 1 / 1;
  speak: none;
  display: inline-block;
  vertical-align: bottom;
  line-height: 1;

  --icon-size: 1.5em;
  width: var(--icon-size);
  height: var(--icon-size);
  @media print,
  screen and (min-width: 576px) {
    --icon-size-sm: var(--icon-size);
    width: var(--icon-size-sm);
    height: var(--icon-size-sm);
  }
  @media print,
  screen and (min-width: 768px) {
    --icon-size-md: var(--icon-size-sm);
    width: var(--icon-size-md);
    height: var(--icon-size-md);
  }
  @media print,
  screen and (min-width: 992px) {
    --icon-size-lg: var(--icon-size-md);
    width: var(--icon-size-lg);
    height: var(--icon-size-lg);
  }
  @media print,
  screen and (min-width: 1200px) {
    --icon-size-xl: var(--icon-size-lg);
    width: var(--icon-size-xl);
    height: var(--icon-size-xl);
  }
  @media print,
  screen and (min-width: 1400px) {
    --icon-size-xxl: var(--icon-size-xl);
    width: var(--icon-size-xxl);
    height: var(--icon-size-xxl);
  }

  img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    speak: none;
  }

  &.--cover img {
    object-fit: cover;
  }
}

/*---------- アイコンとテキスト（ボタンによく使う） ----------*/
/* 余白の微調整は「gap-*」 */
.c-icon-text {
  display: grid;
  grid-template-columns: repeat(2, auto);
  column-gap: 0.75em;
  justify-content: center;
  align-items: center;

  /* アイコンだけ右寄せ */
  &.--r {
    grid-template-columns: 1fr auto;
  }
  /* アイコンだけ左寄せ */
  &.--l {
    grid-template-columns: auto 1fr;
  }
}

/*---------- レイアウト ----------*/
/* display: grid;で重ねる */
.l-overlap {
  display: grid;
  >* {
    grid-area: 1 / -1;
  }
}
#tinymce,
.editor_block {
  .l-overlap {
    >* {
      grid-area: unset !important;
      z-index: 1 !important;
      opacity: 1 !important;
    }
  }
}

/* 子要素を中央配置 */
/* 縦 */
.l-v-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* 縦横中央 */
.l-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/*---------- 背景のベース ----------*/
/* 背景画像を敷く場合、
   背景画像に各色のフィルターをかける場合
   疑似要素を配置したいときのベース */
.p-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
  /* opacity（濃さ）はstyleでCSS変数を書き換える
     ex) style="--bg-opacity: 0.5;" */
  --bg-opacity: 0.3;

  /* 疑似要素のファンデーション */
  &::before,
  &::after {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: inherit;
    pointer-events: none;
    speak: none;
    opacity: var(--bg-opacity);
  }
  /* 画像の時 */
  &.--img::before,
  &.--img::after {
    z-index: 1;
  }
  /* グレースケール透明フィルター */
  &.--bl::before {
    background-color: var(--bl);
  }
  &.--def::before {
    background-color: var(--DEF);
  }
  &.--dgry::before {
    background-color: var(--DGRY);
  }
  &.--gry::before {
    background-color: var(--GRY);
  }
  &.--lgry::before {
    background-color: var(--LGRY);
  }
  &.--wh::before {
    background-color: var(--WHT);
  }
  /* メインカラーフィルター */
  &.--main::before {
    background-color: var(--MAIN);
  }
  &.--lmain::before {
    background-color: var(--LMAIN);
  }
  /* アクセントカラーフィルター */
  &.--accent::before {
    background-color: var(--ACC);
  }
  &.--laccent::before {
    background-color: var(--LACC);
  }
  /* 補助色カラーフィルター */
  &.--other::before {
    background-color: var(--OTH);
  }
  &.--lother::before {
    background-color: var(--LOTH);
  }
  /* グラデーションカラーフィルター */
  &.--grad-01::before {
    background: var(--grad-01);
  }
  &.--grad-01-rev::before {
    background: var(--grad-01-rev);
  }
  &.--grad-02::before {
    background: var(--grad-02);
  }
  &.--grad-02-rev::before {
    background: var(--grad-02-rev);
  }
  &.--grad-03::before {
    background: var(--grad-03);
  }
  &.--grad-03-rev::before {
    background: var(--grad-03-rev);
  }

  /* ぼかしフィルター
     強さはstyleでCSS変数を書き換える
     ex) style="--blur: 1em;" */
  &.--blur {
    --blur: 0.5rem;
  }
  &.--blur::after {
    backdrop-filter: blur(var(--blur));
    opacity: 1;
  }

  /* 乗算 */
  &.--multiply::after {
    mix-blend-mode: multiply;
  }
}

/*---------- ホバーアクション ----------*/
.c-hover {
  transition: var(--transition);
  text-decoration: none;
  &:hover {
    text-decoration: none;
  }
  /* 背景色 */
  &.--bg-bl:hover {
    background-color: var(--bl);
  }
  &.--bg-def:hover {
    background-color: var(--DEF);
  }
  &.--bg-dgry:hover {
    background-color: var(--DGRY);
  }
  &.--bg-gry:hover {
    background-color: var(--GRY);
  }
  &.--bg-lgry:hover {
    background-color: var(--LGRY);
  }
  &.--bg-wh:hover {
    background-color: var(--WHT);
  }
  &.--bg-main:hover {
    background-color: var(--MAIN);
  }
  &.--bg-lmain:hover {
    background-color: var(--LMAIN);
  }
  &.--bg-accent:hover {
    background-color: var(--ACC);
  }
  &.--bg-laccent:hover {
    background-color: var(--LACC);
  }
  &.--bg-other:hover {
    background-color: var(--OTH);
  }
  &.--bg-lother:hover {
    background-color: var(--LOTH);
  }
  /* 動き */
  &.--up,
  .--up {
    --translate-up: -0.125rem;
    transition: var(--transition);
  }
  &.--up:hover,
  &:hover .--up {
    transform: translateY(var(--translate-up));
  }
  &.--down,
  .--down {
    --translate-down: 0.125rem;
    transition: var(--transition);
  }
  &.--down:hover,
  &:hover .--down {
    transform: translateY(var(--translate-down));
  }
  &.--right,
  .--right {
    --translate-right: 0.125rem;
    transition: var(--transition);
  }
  &.--right:hover,
  &:hover .--right {
    transform: translateX(var(--translate-right));
  }
  &.--left,
  .--left {
    --translate-left: -0.125rem;
    transition: var(--transition);
  }
  &.--left:hover,
  &:hover .--left {
    transform: translateX(var(--translate-left));
  }
  &.--scale-up,
  .--scale-up {
    --scale: scale(1.1);
    img {
      transition: var(--transition);
    }
    &:hover img {
      transform: var(--scale);
    }
  }
  /* あしらい */
  &.--underline:hover,
  &:hover .--underline {
    text-decoration: underline;
  }
  &.--opacity,
  .--opacity {
    --opacity: 0.8;
    &:hover {
      opacity: var(--opacity);
      img {
        opacity: var(--opacity);
      }
    }
  }
  /* l-overlapで重ねた要素のうち、ホバーしたら--afterが表示される */
  &.--overlap {
    .--after {
      opacity: 0;
      transition: var(--transition);
    }
    &:hover .--after {
      opacity: 1;
    }
  }
  /* 下線が伸びる */
  &.--bottom-line {
    position: relative;
    padding-bottom: min(0.5em, 5%);
    &::after {
      content: "";
      width: 0%;
      height: 2px;
      background-color: currentColor;
      position: absolute;
      bottom: -1px;
      left: 0;
      transition: 0.3s cubic-bezier(0.42, 0, 0.13, 0.99);
    }
    &:hover::after {
      @media (hover: hover) and (pointer: fine) {
        width: 100%;
      }
    }
  }
  /* 下線が伸びる（子要素の場合） */
  .--bottom-line {
    position: relative;
    padding-bottom: min(0.5em, 5%);
    &::after {
      content: "";
      width: 0%;
      height: 2px;
      background-color: currentColor;
      position: absolute;
      bottom: -1px;
      left: 0;
      transition: 0.3s cubic-bezier(0.42, 0, 0.13, 0.99);
    }
  }
  &:hover .--bottom-line::after {
    @media (hover: hover) and (pointer: fine) {
      width: 100%;
    }
  }
  /* shadowを入れる */
  &.--shadow:hover {
    @media (hover: hover) and (pointer: fine) {
      /* box-shadow: 0 .5em 1em currentColor; */
      box-shadow: 0 0.5em 1em rgb(0 0 0 / 30%);
    }
  }
}

/* ホバーしたら下線が左から順に伸びる
   （display: inline;にする必要があるので注意） */
.c-hover-underline-anime {
  display: inline;
  overflow: hidden;
  background-image: linear-gradient(90deg, currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: bottom 0 left 0;
  background-size: 0 1px;
  transition-duration: 0.3s;
  transition-property: background-size;
}
@media (any-hover: hover) {
  .c-hover-underline-anime:hover,
  a:has(.c-hover-underline-anime):hover .c-hover-underline-anime,
  button:has(.c-hover-underline-anime):hover .c-hover-underline-anime {
    background-size: 100% 1px;
  }
}

.fs-h1 {
  font-size: 1.875rem;
  line-height: 1.25;
}

.fs-h2 {
  font-size: 1.5rem;
  line-height: 1.25;
}

.fs-h3 {
  font-size: 1.375rem;
  line-height: 1.25;
}

.fs-h4 {
  font-size: 1.25rem;
  line-height: 1.25;
}

.fs-h5 {
  font-size: 1.125rem;
  line-height: 1.25;
}

.fs-h6 {
  font-size: 1rem;
  line-height: 1.25;
}

.fs-10 {
  font-size: 0.625rem;
}

.fs-12 {
  font-size: 0.75rem;
}

.fs-14 {
  font-size: 0.875rem;
}

.fs-16 {
  font-size: 1rem;
}

.fs-18 {
  font-size: 1.125rem;
}

.fs-20 {
  font-size: 1.25rem;
}

.fs-22 {
  font-size: 1.375rem;
}

.fs-24 {
  font-size: 1.5rem;
}

.fs-26 {
  font-size: 1.625rem;
}

.fs-28 {
  font-size: 1.75rem;
}

.fs-30 {
  font-size: 1.875rem;
}

.fs-32 {
  font-size: 2rem;
}

.fs-34 {
  font-size: 2.125rem;
}

.fs-36 {
  font-size: 2.25rem;
}

.fs-38 {
  font-size: 2.375rem;
}

.fs-40 {
  font-size: 2.5rem;
}

@media print,
screen and (min-width: 576px) {
  .fs-sm-10 {
    font-size: 0.625rem;
  }

  .fs-sm-12 {
    font-size: 0.75rem;
  }

  .fs-sm-14 {
    font-size: 0.875rem;
  }

  .fs-sm-16 {
    font-size: 1rem;
  }

  .fs-sm-18 {
    font-size: 1.125rem;
  }

  .fs-sm-20 {
    font-size: 1.25rem;
  }

  .fs-sm-22 {
    font-size: 1.375rem;
  }

  .fs-sm-24 {
    font-size: 1.5rem;
  }

  .fs-sm-26 {
    font-size: 1.625rem;
  }

  .fs-sm-28 {
    font-size: 1.75rem;
  }

  .fs-sm-30 {
    font-size: 1.875rem;
  }

  .fs-sm-32 {
    font-size: 2rem;
  }

  .fs-sm-34 {
    font-size: 2.125rem;
  }

  .fs-sm-36 {
    font-size: 2.25rem;
  }

  .fs-sm-38 {
    font-size: 2.375rem;
  }

  .fs-sm-40 {
    font-size: 2.5rem;
  }
}

@media print,
screen and (min-width: 768px) {
  .fs-h1 {
    font-size: 2.5rem;
  }

  .fs-h2 {
    font-size: 2rem;
  }

  .fs-h3 {
    font-size: 1.75rem;
  }

  .fs-h4 {
    font-size: 1.5rem;
  }

  .fs-h5 {
    font-size: 1.25rem;
  }

  .fs-h6 {
    font-size: 1.125rem;
  }

  .fs-md-10 {
    font-size: 0.625rem;
  }

  .fs-md-12 {
    font-size: 0.75rem;
  }

  .fs-md-14 {
    font-size: 0.875rem;
  }

  .fs-md-16 {
    font-size: 1rem;
  }

  .fs-md-18 {
    font-size: 1.125rem;
  }

  .fs-md-20 {
    font-size: 1.25rem;
  }

  .fs-md-22 {
    font-size: 1.375rem;
  }

  .fs-md-24 {
    font-size: 1.5rem;
  }

  .fs-md-26 {
    font-size: 1.625rem;
  }

  .fs-md-28 {
    font-size: 1.75rem;
  }

  .fs-md-30 {
    font-size: 1.875rem;
  }

  .fs-md-32 {
    font-size: 2rem;
  }

  .fs-md-34 {
    font-size: 2.125rem;
  }

  .fs-md-36 {
    font-size: 2.25rem;
  }

  .fs-md-38 {
    font-size: 2.375rem;
  }

  .fs-md-40 {
    font-size: 2.5rem;
  }
}

@media print,
screen and (min-width: 992px) {
  .fs-lg-10 {
    font-size: 0.625rem;
  }

  .fs-lg-12 {
    font-size: 0.75rem;
  }

  .fs-lg-14 {
    font-size: 0.875rem;
  }

  .fs-lg-16 {
    font-size: 1rem;
  }

  .fs-lg-18 {
    font-size: 1.125rem;
  }

  .fs-lg-20 {
    font-size: 1.25rem;
  }

  .fs-lg-22 {
    font-size: 1.375rem;
  }

  .fs-lg-24 {
    font-size: 1.5rem;
  }

  .fs-lg-26 {
    font-size: 1.625rem;
  }

  .fs-lg-28 {
    font-size: 1.75rem;
  }

  .fs-lg-30 {
    font-size: 1.875rem;
  }

  .fs-lg-32 {
    font-size: 2rem;
  }

  .fs-lg-34 {
    font-size: 2.125rem;
  }

  .fs-lg-36 {
    font-size: 2.25rem;
  }

  .fs-lg-38 {
    font-size: 2.375rem;
  }

  .fs-lg-40 {
    font-size: 2.5rem;
  }
}

@media print,
screen and (min-width: 1200px) {
  .fs-xl-10 {
    font-size: 0.625rem;
  }

  .fs-xl-12 {
    font-size: 0.75rem;
  }

  .fs-xl-14 {
    font-size: 0.875rem;
  }

  .fs-xl-16 {
    font-size: 1rem;
  }

  .fs-xl-18 {
    font-size: 1.125rem;
  }

  .fs-xl-20 {
    font-size: 1.25rem;
  }

  .fs-xl-22 {
    font-size: 1.375rem;
  }

  .fs-xl-24 {
    font-size: 1.5rem;
  }

  .fs-xl-26 {
    font-size: 1.625rem;
  }

  .fs-xl-28 {
    font-size: 1.75rem;
  }

  .fs-xl-30 {
    font-size: 1.875rem;
  }

  .fs-xl-32 {
    font-size: 2rem;
  }

  .fs-xl-34 {
    font-size: 2.125rem;
  }

  .fs-xl-36 {
    font-size: 2.25rem;
  }

  .fs-xl-38 {
    font-size: 2.375rem;
  }

  .fs-xl-40 {
    font-size: 2.5rem;
  }
}

@media print,
screen and (min-width: 1400px) {
  .fs-xxl-10 {
    font-size: 0.625rem;
  }

  .fs-xxl-12 {
    font-size: 0.75rem;
  }

  .fs-xxl-14 {
    font-size: 0.875rem;
  }

  .fs-xxl-16 {
    font-size: 1rem;
  }

  .fs-xxl-18 {
    font-size: 1.125rem;
  }

  .fs-xxl-20 {
    font-size: 1.25rem;
  }

  .fs-xxl-22 {
    font-size: 1.375rem;
  }

  .fs-xxl-24 {
    font-size: 1.5rem;
  }

  .fs-xxl-26 {
    font-size: 1.625rem;
  }

  .fs-xxl-28 {
    font-size: 1.75rem;
  }

  .fs-xxl-30 {
    font-size: 1.875rem;
  }

  .fs-xxl-32 {
    font-size: 2rem;
  }

  .fs-xxl-34 {
    font-size: 2.125rem;
  }

  .fs-xxl-36 {
    font-size: 2.25rem;
  }

  .fs-xxl-38 {
    font-size: 2.375rem;
  }

  .fs-xxl-40 {
    font-size: 2.5rem;
  }
}
/* =================================================
   1. 基本設定・追従ヘッダー
   ================================================= */
.p-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 1000;
  background: transparent;
  color: #fff;
  transition: all 0.4s ease;
}
.p-header>.inner {
  height: 100px;
}

/* スクロール後 */
.p-header.is-colored {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.p-header.is-colored .sub-nav a,
.p-header.is-colored .main-nav a,
.p-header.is-colored .material-symbols-outlined {
  color: #333 !important;
}

.header-logo img {
  height: 80px;
  width: auto;
  display: block;
}

.main-nav a {
  display: flex;
  align-items: center;
}

.sub-nav>li>a,
.nav-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sub-nav .dropdown-menu a {
  display: block;
  font-weight: normal;
}
.page_renewal_index .p-header:hover {
  background: rgba(0, 0, 0, 0.3);
}
.page_renewal_index .p-header.is-colored:hover {
  background: #FFF;
}

.header-nav .sub-menu-title a {
  padding-bottom: 10px;
  border-bottom: 2px solid #006CB6;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  font-weight: bold;
}

.header-nav .sub-menu-title a .material-symbols-outlined {
  color: #006CB6 !important;
  border-color: #006CB6 !important;
}

.header-nav .sub-menu-title a:hover {
  color: #006CB6 !important;
}

.header-nav .sub-menu li {
  margin-bottom: 10px;
}

.header-nav .sub-menu li a {
  padding-left: 15px !important;
  position: relative;
  font-size: 14px;
}

.header-nav .sub-menu li a::before {
  position: absolute;
  content: "keyboard_arrow_right";
  font-family: 'Material Symbols Outlined';
  font-size: inherit;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.p-header .link-none .material-symbols-outlined {
  pointer-events: visible !important;
}

/* =================================================
   2. PC用スタイル（768px以上）
   ================================================= */
@media print,
screen and (min-width: 768px) {
  .header-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }

  .sub-nav,
  .main-nav {
    display: flex;
    list-style: none;
  }

  .sub-nav>li,
  .main-nav>li {
    margin-left: 25px;
    position: static;
  }

  .sub-nav>li>a,
  .main-nav>li>a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
  }

  /* 【修正箇所】クリックでふわっと出るアニメーション設定 */
  .dropdown-menu {
    display: block !important;
    /* display:noneを使わない */
    visibility: hidden;
    opacity: 0;
    transform: translateY(20px);
    /* 20px下から浮き上がる */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 40px 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #eee;
    transition: all 0.4s ease;
    /* アニメーション速度 */
    pointer-events: none;
  }

  /* 【追記箇所】JSで.is-openがついた時に表示 */
  .has-child.is-open>.dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* 【修正箇所】ホバー設定を無効化 */
  .has-child:hover>.dropdown-menu {
    display: none;
  }
}

/* =================================================
   3. スマホ用スタイル（767px以下：アコーディオン）
   ================================================= */
@media print,
screen and (max-width: 767px) {
  .p-header,
  .p-header>.inner {
    height: 60px;
    padding: 0;
  }

  .hamburger {
    width: 60px;
    height: 60px;
    background-color: #006CB6;
    position: absolute;
    z-index: 1100;
    top: 0;
    right: 0;
  }

  .hamburger span {
    position: absolute;
    width: 60%;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translatex(-50%);
    background: #fff;
    transition: 0.3s;
  }

  .hamburger span:nth-child(1) {
    top: 18px;
  }
  .hamburger span:nth-child(3) {
    top: 43px;
  }
  .hamburger.is-active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.is-active span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #fff;
    padding: 80px 20px;
    overflow-y: auto;
    transition: 0.4s;
  }

  .header-nav.is-active {
    right: 0;
  }
  .header-nav a,
  .header-nav .material-symbols-outlined {
    color: #333 !important;
  }

  .sub-nav,
  .main-nav {
    list-style: none;
    width: 100%;
  }

  .has-child>a,
  .sub-nav>li a {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-weight: bold;
    text-decoration: none;
  }

  /* 【修正箇所】スマホ用アコーディオンアニメーション */
  .dropdown-menu {
    display: block !important;
    max-height: 0;
    /* 最初は高さを0にする */
    overflow: hidden;
    opacity: 0;
    background: #f9f9f9;
    padding: 0 10px;
    /* 閉じている時はパディングも0 */
    transition: all 0.4s ease;
  }

  /* 【追記箇所】JSで開いた時 */
  .has-child.is-open>.dropdown-menu {
    max-height: 2000px;
    /* 十分な高さを確保 */
    opacity: 1;
    padding: 10px;
  }

  .sub-nav>li {
    margin-bottom: 10px;
  }
  .sub-nav>li>a,
  .nav-text {
    flex-direction: row;
  }
}

/* ========================================
   4. フローティングボタン
   ======================================== */
.side-floating-banners {
  position: fixed;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2000;
  gap: 10px;
  list-style: none;
  display: flex;
  flex-direction: column;
}

.side-floating-banners li a {
  padding: 20px 10px;
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 5px;
  width: 60px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.banner-01 a {
  background-color: #6699CC;
  border: 2px solid #6699CC;
}
.banner-01 a:hover {
  background-color: #3D5973;
  border: 2px solid #3D5973;
}
.banner-02 a {
  background-color: #3D5973;
  border: 2px solid #3D5973;
}
.banner-02 a:hover {
  background-color: #6699CC;
  border: 2px solid #6699CC;
}

.vertical-text {
  writing-mode: vertical-rl;
  text-orientation: upright;
}

.floating-icon-01 img {
  width: 30px;
}

@media print,
screen and (max-width: 767px) {
  .side-floating-banners {
    right: 0;
    top: auto;
    bottom: 0;
    transform: none;
    gap: 0;
    width: 100%;
    flex-direction: row;
  }
  .side-floating-banners li {
    width: 50%;
  }
  .side-floating-banners li a {
    width: 100%;
    height: 100%;
    padding: 10px;
    border-radius: 0;
    flex-direction: row;
    justify-content: center;
  }
  .vertical-text {
    writing-mode: horizontal-tb;
  }
  .floating-icon-01 img {
    width: 16px;
  }
  .floating-icon-02 {
    font-size: 16px;
  }
}

/* ========================================
フローティングボタン
======================================== */
/* バナー全体のコンテナ */
.side-floating-banners {
  position: fixed;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  /* 垂直方向の中央寄せ */
  z-index: 2000;
  /* ヘッダーより上に表示 */
  gap: 10px;
  /* ボタン同士の隙間 */
  list-style: none;
}

/* ボタン共通スタイル */
.side-floating-banners li a {
  padding: 20px 10px;
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 5px;
  width: 60px;
  /* 幅を固定 */
  transition: all 0.3s ease;
}
/* 各バナーの色 */
.banner-01 a,
.banner-02 a:hover {
  background-color: #6699CC;
  border: 2px solid #6699CC;
}
.banner-02 a,
.banner-01 a:hover {
  background-color: #3D5973;
  border: 2px solid #3D5973;
}

/* 縦書きテキストの設定 */
.vertical-text {
  writing-mode: vertical-rl;
  /* 縦書き */
  text-orientation: upright;
  /* 文字を正位置にする */
}
.floating-icon-01 img {
  width: 30px;
}

@media print,
screen and (max-width: 767px) {
  .side-floating-banners {
    position: fixed;
    right: 0;
    top: auto;
    bottom: 0;
    transform: none;
    gap: 0;
    width: 100%;
  }
  .side-floating-banners li {
    width: 50%;
  }
  .side-floating-banners li a {
    width: 100%;
    height: 100%;
    padding: 10px;
    border-radius: 0;
  }
  .vertical-text {
    writing-mode: inherit;
  }
  .floating-icon-01 img {
    width: 16px;
  }
  .floating-icon-02 {
    font-size: 16px;
  }
}

/* ========================================
フッター
======================================== */
.renewal-footer {
  background-color: #353F4F;
  padding: 40px 0;
  color: #fff;
  line-height: 1.8;
}
.renewal-footer li {
  list-style: none;
}
.renewal-footer-menu li a,
.copyright ul li a {
  text-decoration: none;
  color: #fff;
  display: block;
}
.renewal-footer-menu li a:hover {
  opacity: 0.6;
}
.renewal-footer .f-logo {
  max-width: 160px;
}
.renewal-footer .sub-menu>li {
  margin-bottom: 20px;
}
.renewal-footer .sub-menu>li:last-child {
  margin-bottom: 0;
}
.renewal-footer .sub-menu>li>a {
  padding-left: 10px;
  position: relative;
}
.renewal-footer .sub-menu>li>a::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: #fff;
}
.renewal-footer .sub-menu2>li>a {
  font-size: 14px;
}

@media print,
screen and (max-width: 767px) {
  .renewal-footer {
    margin-bottom: 70px;
  }
}

/* ========================================
TOP
======================================== */
/* ----------------------------------------
共通
---------------------------------------- */
html {
  font-size: 16px !important;
}
body {
  font-size: 16px;
}
.main-title {
  font-size: clamp(50px, calc(30px + 5vw), 90px);
  color: rgba(102, 153, 204, 0.4);
}
.sub-title {
  padding-left: 30px;
  position: relative;
}
.sub-title::before,
.sub-title::after {
  content: "";
  position: absolute;
  border-radius: 50px;
}
.sub-title::before {
  top: 20%;
  left: 15px;
  width: 8px;
  height: 8px;
  background-color: #E50012;
}
.sub-title::after {
  bottom: 20%;
  left: 0;
  width: 16px;
  height: 16px;
  background-color: #006CB6;
}
.link-none {
  pointer-events: none !important;
}
.dlb_btn.simple-btn a {
  padding: 0;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: start;
  white-space: nowrap;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  min-width: auto;
}
.dlb_btn.simple-btn a::before {
  display: none;
}
.dlb_btn.simple-btn a .border {
  color: #E50012;
  border-color: #E50012 !important;
}

/* ----------------------------------------
mv
---------------------------------------- */
.p-mv .img.logo {
  opacity: 0;
}
.p-mv {
  height: 80vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  /* はみ出しを強制カット */
}
/* スライダー全体の高さを親に合わせる */
.p-mv .slider,
.p-mv .slick-list,
.p-mv .slick-track {
  height: 100%;
}
/* 画像自体の設定 */
.p-mv .slick-img img {
  width: 100%;
  height: 100%;
  /* 親と同じ高さにする */
  object-fit: cover;
  /* 比率を保ったまま、枠いっぱいに広げる（重要！） */
  object-position: center;
  /* 画像の中央を基準にする */
}
.p-mv .slick-dots li button {
  background-color: #ddd;
}

/* ロゴの配置とアニメーション設定 */
.logo-container {
  position: absolute;
  bottom: 30px;
  /* 下からの距離（調整可） */
  left: 30px;
  /* 左からの距離（調整可） */
  z-index: 10;
  /* スライダーより上に表示 */
}
.catchcopy-image {
  display: block;
  max-width: 500px;
  /* ロゴのサイズ（調整可） */
  height: auto;
  /* 初期状態は非表示 */
  opacity: 0;
  transform: translateY(20px);
  /* 少し下から浮かび上がる演出用 */
  transition: opacity 1.5s ease, transform 1.5s ease;
  /* 1.5秒かけて変化 */
}
/* 1周した後に付与されるクラス */
.is-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
  /* 元の位置に戻る */
}

@media print,
screen and (max-width: 767px) {
  .catchcopy-image {
    max-width: 250px;
  }
}

/* ----------------------------------------
mv-news
---------------------------------------- */
.p-mv-news {
  color: #fff;
}
.p-mv-news .--bg {
  background-color: #353F4F;
}
.p-mv-news .material-symbols-outlined.--bg {
  background-color: #3D5973;
}
.p-mv-news .dlb_media_04_block {
  display: block;
}
.p-mv-news .dlb_media_04_block .dlb_media_block {
  width: 100%;
  padding: 0;
  margin-right: 0;
  color: #fff;
  border: none;
}
.p-mv-news .dlb_media_04_block .dlb_media_block:last-of-type {
  margin-bottom: 0;
}
.p-mv-news .dlb_media_04_block .dlb_media_block .dlb_media_right {
  display: flex;
  align-items: center;
}
.p-mv-news .dlb_media_time {
  margin: 0;
  margin-right: 20px;
  color: #3D5973;
  background-color: #F7F7F7;
  border-radius: 4px;
  font-size: 12px;
  padding: 10px;
}
.p-mv-news .dlb_media_04_block .dlb_media_title {
  margin: 0;
}
.p-mv-news .dlb_media_04_block .dlb_media_cate {
  display: none;
}
.p-mv-news a:hover {
  opacity: 0.6;
}
@media print,
screen and (min-width: 992px) {
  .p-mv-news .dlb_media_04_area {
    border-left: 1px solid #3D5973;
    padding-left: 40px;
  }
}

/* ----------------------------------------
headline
---------------------------------------- */
.p-headline::before {
  opacity: 1;
  background-color: #6699CC;
  mix-blend-mode: multiply;
}
.p-headline::after {
  opacity: 0.5;
  background: url('/dcms_media/image/headline-bg.jpg') no-repeat 100% / cover;
}
.p-headline .main-title {
  color: #F7FAFD;
}
.p-headline .--bg {
  background-color: #353F4F;
}
.p-headline .border {
  border-color: #fff !important;
}
.p-headline a {
  text-decoration: none;
  color: #fff;
}
.p-headline a .title {
  transition: all .3s;
}
.p-headline a:hover .title {
  opacity: 0.6;
  transition: all .3s;
}
@media print,
screen and (min-width: 992px) {
  .p-headline .col:first-child .u-aspect {
    --aspect: 8/6 !important;
  }
}

/* ----------------------------------------
news
---------------------------------------- */
.p-news .tabcontent {
  padding: 0;
  border: 0;
  inset: 0;
}
.p-news .tablist {
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.p-news .tablist li a {
  border-radius: 4px;
  color: #363636;
  border: 1px solid #006CB6;
}
.p-news .tablist li.active a,
.p-news .tablist li a:hover {
  color: #fff;
  background-color: #006CB6;
}
.p-news .dlb_media_04_block {
  flex-direction: column;
}
.p-news .dlb_media_04_block .dlb_media_right {
  display: flex;
  align-items: center;
}
.p-news .dlb_media_04_block .dlb_media_block {
  padding: 20px;
  width: 100%;
  margin-right: 0;
  border: none;
  background-color: #E1EBF5;
  border-radius: 4px;
  margin-bottom: 10px;
}
.p-news .dlb_media_04_block .dlb_media_time {
  order: 1;
  margin: 0;
  margin-right: 20px;
}
.p-news .dlb_media_04_block .dlb_media_cate {
  order: 2;
  position: static;
  margin: 0;
  margin-right: 20px;
}
.p-news .dlb_media_04_block .dlb_media_cate span {
  background-color: #006CB6;
  border-radius: 2px;
  color: #fff;
  font-size: 12px;
  white-space: nowrap;
}
.p-news .dlb_media_04_block .dlb_media_title {
  order: 3;
  margin: 0;
}
.p-news a:hover {
  opacity: 0.6;
}
@media print,
screen and (max-width: 991px) {
  .p-news .tablist li {
    width: calc(33% - 25px);
    margin-bottom: 10px;
  }
  .p-news .dlb_media_04_block .dlb_media_title {
    margin-top: 10px;
  }
  .p-news .dlb_media_04_block .dlb_media_right {
    flex-wrap: wrap;
  }
}
@media print,
screen and (max-width: 767px) {
  .p-news .tablist li {
    width: calc(50% - 25px);
  }
}

/* ----------------------------------------
hospitality
---------------------------------------- */
.p-hospitality::before {
  content: "";
  position: absolute;
  width: 45%;
  height: 25%;
  background-color: rgba(255, 255, 255, 0.3);
  bottom: 20%;
  right: 0;
  top: auto;
  left: auto;
  z-index: -1;
  opacity: 1;
}
.p-hospitality .col:first-child {
  position: relative;
}
.p-hospitality .col:first-child::before {
  position: absolute;
  content: "";
  width: 70%;
  height: 50%;
  border-radius: 1rem;
  background-color: #6699CC;
  z-index: -2;
  top: 20%;
  left: 10%;
}

@media print,
screen and (min-width: 992px) {
  .p-hospitality .img-1,
  .p-hospitality .img-2 {
    position: absolute;
  }
  .p-hospitality .img-1 {
    top: 60%;
    left: 0;
    z-index: -1;
  }
  .p-hospitality .img-2 {
    bottom: 10%;
    right: 2%;
    z-index: -1;
  }
  .p-hospitality .img-1 img {
    width: 48vw;
  }
  .p-hospitality .img-2 img {
    max-width: 350px;
  }
}
@media print,
screen and (max-width: 991px) {
  .p-hospitality .col:first-child::before {
    top: 30%;
    width: 50%;
  }
}

/* ----------------------------------------
学部紹介
---------------------------------------- */
.p-faculty {
  background-color: #F7F7F7;
}
.p-faculty .text-main {
  color: #57B9C6;
}
.p-faculty .text-main2 {
  color: #E4817A;
}
.p-faculty-01,
.p-faculty-02 {
  position: relative;
}
.p-faculty-01::before {
  position: absolute;
  content: "";
  width: 100vw;
  height: 100%;
  top: 0;
  left: 0;
  background: -moz-linear-gradient(left, #C2E5EA 0%, #C9E7EE 20%, #D0E8F2 40%, #D7EAF4 60%, #DEECF6 80%, #E3ECF7 100%);
  background: -webkit-linear-gradient(left, #C2E5EA 0%, #C9E7EE 20%, #D0E8F2 40%, #D7EAF4 60%, #DEECF6 80%, #E3ECF7 100%);
  background: linear-gradient(to right, #C2E5EA 0%, #C9E7EE 20%, #D0E8F2 40%, #D7EAF4 60%, #DEECF6 80%, #E3ECF7 100%);
}
.p-faculty-02::before {
  position: absolute;
  content: "";
  width: 100vw;
  height: 100%;
  top: 0;
  right: 0;
  background: -moz-linear-gradient(left, #F0EAF3 0%, #F4E7EE 25%, #F6E6E8 50%, #F6E5E2 75%, #E9B7AD 100%);
  background: -webkit-linear-gradient(left, #F0EAF3 0%, #F4E7EE 25%, #F6E6E8 50%, #F6E5E2 75%, #E9B7AD 100%);
  background: linear-gradient(to right, #F0EAF3 0%, #F4E7EE 25%, #F6E6E8 50%, #F6E5E2 75%, #E9B7AD 100%);
}


/* ----------------------------------------
中間リンク（CTA）
---------------------------------------- */
.p-cta {
  background-color: #6699CC
}
.p-cta .col:last-child img {
  width: 40px;
}
.p-cta .col a {
  height: 250px;
  text-decoration: none;
}
.p-cta .col:first-child a::before {
  background-color: #C2E5EA;
  /* mix-blend-mode: multiply; */
  opacity: 0.7;
  z-index: 0;
  transition: all .3s;
}
.p-cta .col:last-child a::before {
  background-color: #F6E5E2;
  /* mix-blend-mode: multiply; */
  opacity: 0.6;
  z-index: 0;
  transition: all .3s;
}
.p-cta .col a:hover::before {
  opacity: 1;
  transition: all .3s;
}
.p-cta .col:first-child a::after {
  background: url('/dcms_media/image/info-link01.jpg') no-repeat 100% / cover;
  filter: grayscale(100%);
  opacity: 1;
}
.p-cta .col:last-child a::after {
  background: url('/dcms_media/image/info-link02.jpg') no-repeat 100% / cover;
  filter: grayscale(100%);
  opacity: 1;
}
.p-cta .border {
  border-color: #333 !important;
}
.p-cta .col a:hover .border {
  border-color: #E50012 !important;
}
.p-cta .col a:hover .material-symbols-outlined {
  color: #000 !important;
}
.p-cta .col a:hover .material-symbols-outlined.border {
  color: #E50012 !important;
}

@media print,
screen and (max-width: 991px) {
  .p-cta .col a {
    height: 200px;
  }
}