@charset "UTF-8";
/* ---------------------
  - *基本設定
  - *タイトル
  - *メインビジュアル
  - *バナーエリア
  - *医院概要
  - *ご挨拶
  - *診療案内
  - *当院の特徴
  - *病状・病名から探す
  - *医療コラム
  - *無限スライダー
--------------------- */
/* ==================================================================================================================================

  *アニメーション

================================================================================================================================== */
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes zoomInAnime {
  from {
    pointer-events: none;
    transform: scale(0.5);
  }
  to {
    pointer-events: auto;
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes zoomOutAnime {
  from {
    pointer-events: none;
    transform: scale(1);
  }
  to {
    pointer-events: auto;
    opacity: 1;
    transform: scale(1.5);
  }
}
@keyframes scrolldown {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.fadeUp,
.zoomOut,
.zoomIn,
.fadeRight,
.fadeLeft {
  opacity: 0;
}

.fadeUp.is-active {
  animation: fadeUpAnime 1s forwards;
}

.fadeRight.is-active {
  animation: fadeRightAnime 1s forwards;
}

.fadeLeft.is-active {
  animation: fadeLeftAnime 1s forwards;
}

.zoomIn.is-active {
  animation: zoomInAnime 0.8s forwards;
}

.zoomOut.is-active {
  animation: zoomOutAnime 1s forwards;
}

/* ==================================================================================================================================

  *基本設定

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.front {
  overflow: hidden;
}

section .inner {
  max-width: 1600px;
  padding: 100px 50px;
}

.text > *:not(:last-child) {
  margin-bottom: 2em;
}

/* ----- パララックス ----- */
.parallax {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 500px;
}

/* 切り抜く範囲 */
.parallax_img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  clip-path: inset(0);
}

/* 固定する画像 */
.parallax_img::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  section .inner {
    padding: 70px 20px;
  }
  /* ----- パララックス ----- */
  .parallax {
    height: 300px;
  }
}
/* ==================================================================================================================================

  *タイトル

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.top_title {
  position: relative;
  z-index: 2;
  margin-bottom: 70px;
  line-height: 1.5;
  /* 中央寄せ */
  /* 右寄せ */
}
.top_title.title_center {
  text-align: center;
}
.top_title.title_right {
  text-align: right;
}
.top_title h2 {
  font-size: 40px;
  letter-spacing: 0.25em;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-style: normal;
  font-weight: 400;
}
.top_title .eng {
  display: inline-block;
  margin-bottom: 5px;
  color: var(--main-color);
  font-size: 150%;
}

.top_title_vertical h2 {
  font-size: 40px;
  letter-spacing: 0.25em;
  writing-mode: vertical-rl;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-style: normal;
  font-weight: 400;
}
.top_title_vertical .eng {
  display: inline-block;
  margin-bottom: 5px;
  color: var(--main-color);
  font-size: 150%;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .top_title {
    margin-bottom: 40px;
  }
  .top_title h2 {
    margin: 5px 0 0;
    font-size: 24px;
  }
  .top_title .eng {
    font-size: 18px;
  }
  .top_title_vertical {
    margin-bottom: 40px;
    text-align: center;
  }
  .top_title_vertical h2 {
    font-size: 24px;
    letter-spacing: 0.1em;
    writing-mode: horizontal-tb;
  }
  .top_title_vertical .eng {
    font-size: 18px;
  }
}
/* ==================================================================================================================================

  *メインビジュアル

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.mainvisual {
  position: relative;
  z-index: 1;
  height: 100svh;
  min-height: 950px;
  overflow: hidden;
}

.mvSlider {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

/* ----- スライダーのArrowボタン ----- */
.mvSlider .sliderBtn {
  position: absolute;
  top: 50%;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  transform: translateY(-50%);
}
.mvSlider .sliderBtn#mv_btnPrev {
  left: 20px;
}
.mvSlider .sliderBtn#mv_btnNext {
  right: 20px;
}
.mvSlider .sliderBtn span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: var(--main-color);
  border-radius: 50%;
  transition: background 0.2s;
}
.mvSlider .sliderBtn span:hover {
  background: var(--text-color);
}
.mvSlider .sliderBtn span::before {
  padding: 0 0 1px 0;
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  color: #ffffff;
  font-size: 15px;
  transition: color 0.2s;
}
.mvSlider .sliderBtn#mv_btnPrev span::before {
  content: "\f053";
}
.mvSlider .sliderBtn#mv_btnNext span::before {
  content: "\f054";
}

/* 各スライダーのボタンは非表示に */
.mvSlider .splide__arrows {
  display: none;
}

/* ----- MVの画像 ----- */
.mvImg {
  width: 100%;
  height: 100%;
}
.mvImg .splide__track {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.mvImg .splide__track::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(2, 63, 85, 0.35), rgba(3, 89, 120, 0.1));
}
.mvImg .splide__slide {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.mvImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* フェードの専用スタイル */
.fade .mvImg .splide__slide img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  height: calc(100% + 50px);
  pointer-events: none;
}

/* アニメーションを実行 */
.fade.move .mvImg .splide__slide img {
  animation: hideTranslate 8s ease-out forwards;
}

.fade.move .mvImg .splide__slide.is-active img {
  animation: showTranslate 8s ease-out forwards;
}

/* MVのアニメーション  */
@keyframes hideImg {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes showTranslate {
  0% {
    transform: translate3d(0, 0px, 0);
  }
  100% {
    transform: translate3d(0, -30px, 0);
  }
}
@keyframes hideTranslate {
  /* 下降 */
  0% {
    transform: translate3d(0, -30px, 0);
  }
  100% {
    transform: translate3d(0, 0px, 0);
  }
}
/* ----- キャッチコピー ----- */
.mvCatch {
  position: absolute !important;
  bottom: 110px;
  left: 75px;
  z-index: 3;
  width: 100%;
}
.mvCatch .inner {
  position: relative;
  z-index: 1;
  max-width: none;
}

.catch {
  width: fit-content;
  color: #ffffff;
  line-height: 1.65;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-style: normal;
  font-weight: 400;
}
.catch .main {
  font-size: 50px;
}
.catch .sub {
  position: relative;
  left: -10px;
  z-index: 1;
  margin-top: 20px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 20px;
}

/* ----- コンテンツ ----- */
.mvContents {
  position: absolute !important;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.mvContents .inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.mvContents .splide__track {
  width: 100%;
  height: 100%;
}

.open_bnr {
  position: absolute;
  bottom: 50px;
  display: inline-block;
  padding: 4px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}
.open_bnr > * {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 280px;
  height: 280px;
  padding: 15px;
  background: var(--main-color);
  border-radius: 50%;
  color: #ffffff;
  font-size: 110%;
  line-height: 1.5;
  text-align: center;
}
.open_bnr .date {
  font-size: 110%;
}
.open_bnr .open_text {
  margin: 0 0 10px;
  font-size: 180%;
}
.open_bnr .nairankai_tit {
  display: block;
  width: 100%;
  margin: 0 0 10px;
  padding: 5px 10px;
  background: #ffffff;
  border-radius: 300px;
  color: var(--main-color);
  font-size: 90%;
  text-align: center;
}

/* サブカラー */
.open_bnr.subcolor > * {
  background: var(--sub-color);
}
.open_bnr.subcolor > * .nairankai_tit {
  color: var(--sub-color);
}

/* ----- RIBONバナー ----- */
.mv_ribon {
  position: absolute;
  bottom: 150px;
  left: 0;
}

.sp_only {
  display: none;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .mainvisual {
    height: calc(100svh - 30px);
    min-height: 700px;
  }
  /* ----- スライダーのArrowボタン ----- */
  .mvSlider .sliderBtn {
    top: 50%;
    width: 40px;
    height: 40px;
    padding: 2px;
    font-size: 12px;
  }
  .mvSlider .sliderBtn#mv_btnPrev {
    left: 10px;
  }
  .mvSlider .sliderBtn#mv_btnNext {
    right: 10px;
  }
  .mvSlider .sliderBtn span::before {
    font-size: 11px;
  }
  .mvCatch {
    bottom: 80px;
    left: 20px;
  }
  .mvCatch .inner {
    padding: 0;
  }
  .catch .main {
    font-size: 24px;
  }
  .catch .sub {
    left: 0;
    padding-right: 20px;
    font-size: 12px;
    line-height: 2;
  }
  .mvContents {
    display: none;
  }
  .sp_only {
    display: block;
    background: none !important;
  }
  .sp_only .inner {
    padding: 0 20px;
  }
  .sp_only_contents {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
  }
  .open_bnr {
    position: static;
    width: 100%;
    max-width: 350px;
    border-radius: 0;
  }
  .open_bnr > * {
    width: 100%;
    height: auto;
    padding: 15px 20px;
    border-radius: 0;
  }
}
/* ==================================================================================================================================

  *お悩みから探す

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.trouble_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 100px;
  width: calc(100% - (100% - 1550px) / 2);
  margin: 0 0 0 auto;
  padding: 170px 0 85px 50px;
}

.trouble_content {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: 650px;
  height: auto;
}
.trouble_content::before {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  z-index: -1;
  display: block;
  width: 200px;
  height: 200px;
  background: #a2d6eb;
  border-radius: 50%;
  filter: blur(70px);
}

.trouble_slider {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 50px;
}
.trouble_slider .splide:not(:first-child) {
  margin-top: -15px;
}
.trouble_slider .splide:nth-child(2n) {
  padding-left: 40px;
}
.trouble_slider .splide__list {
  gap: 25px;
}
.trouble_slider .splide__slide {
  padding-top: 35px;
}
.trouble_slider .splide__slide p {
  position: relative;
  z-index: 1;
  width: 300px !important;
  padding: 30px 20px;
  background: #ffffff;
  border-radius: 10px;
  font-size: 18px;
  line-height: 1.65;
  text-align: center;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-style: normal;
  font-weight: 400;
}
.trouble_slider .splide__slide:nth-child(2n)::before {
  content: "";
  position: absolute;
  top: 0;
  left: -15px;
  z-index: 2;
  display: block;
  width: 56px;
  height: 64px;
  background: url(../images/front/moyamoya.svg) no-repeat center/cover;
}
.trouble_slider .splide:nth-child(2n) .splide__slide:nth-child(2n)::before {
  right: -20px;
  left: auto;
  transform: scale(-1, 1);
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .trouble_container {
    flex-flow: wrap;
    gap: 50px;
    width: 100%;
    padding: 30px 0 50px;
  }
  .trouble_content {
    width: 100%;
    padding: 0 20px;
  }
  .trouble_slider {
    padding-bottom: 0;
  }
  .trouble_slider .splide:nth-child(2n) {
    padding-left: 0;
  }
  .trouble_slider .splide__list {
    gap: 15px;
  }
  .trouble_slider .splide__slide {
    padding-top: 30px;
  }
  .trouble_slider .splide__slide p {
    width: 220px !important;
    padding: 20px 15px;
    font-size: 15px;
  }
  .trouble_slider .splide__slide:nth-child(2n)::before {
    left: -15px;
    width: 42px;
    height: 48px;
  }
  .trouble_slider .splide:nth-child(2n) .splide__slide:nth-child(2n)::before {
    right: -15px;
  }
}
/* ==================================================================================================================================

  *特徴

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.feature .top_title {
  margin-bottom: 85px;
}

.feature .inner {
  padding: 50px 50px 75px;
}

.feature_list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-flow: wrap;
  gap: 60px;
}
.feature_list::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  z-index: -1;
  display: block;
  width: 200px;
  height: 200px;
  background: #a2d6eb;
  border-radius: 50%;
  filter: blur(70px);
}

.feature_item {
  display: flex;
  flex-flow: column;
  width: calc(33.3333333333% - 40px);
  height: 100%;
}

.feature_img {
  flex-shrink: 0;
}
.feature_img img {
  border-radius: 25px;
}

.feature_inner {
  display: flex;
  flex-flow: column;
  height: auto;
}

.feature_title {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 15px;
  margin: -25px 0 40px;
}
.feature_title h3 {
  font-size: 20px;
  line-height: 1.65;
  letter-spacing: 0.2em;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-style: normal;
  font-weight: 400;
}

.feature_num {
  color: var(--main-color);
  font-family: brandon-grotesque, sans-serif;
  font-weight: 400;
  font-weight: 400;
  font-size: 46px;
  line-height: 1;
  text-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff, 0 0 15px #ffffff;
}

.feature_button {
  margin-top: auto;
  padding-top: 40px;
  text-align: right;
}
.feature_button > * {
  min-width: 240px;
}

.feature_item:nth-child(-n+2) {
  flex-flow: row-reverse;
  align-items: center;
  gap: 70px;
  width: 100%;
}
.feature_item:nth-child(-n+2) .feature_img {
  width: 750px;
}
.feature_item:nth-child(-n+2) .feature_num {
  flex-shrink: 0;
  font-size: 50px;
}
.feature_item:nth-child(-n+2) .feature_title {
  flex-flow: row;
  gap: 35px;
  margin: 0 0 40px;
}
.feature_item:nth-child(-n+2) .feature_title h3 {
  font-size: 24px;
}
.feature_item:nth-child(-n+2) .feature_button {
  margin-top: 20px;
  padding-top: 50px;
}

.feature_item:nth-child(2) {
  flex-flow: row;
  margin-bottom: 30px;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .feature .inner {
    padding: 50px 20px;
  }
  .feature .top_title {
    margin-bottom: 40px;
  }
  .feature_list {
    gap: 40px 20px;
  }
  .feature_item {
    width: calc(50% - 10px);
  }
  .feature_num {
    font-size: 30px;
  }
  .feature_title {
    margin: -15px 0 30px;
  }
  .feature_title h3 {
    font-size: 16px;
  }
  .feature_button {
    text-align: center;
  }
  .feature_button > * {
    min-width: auto;
    padding: 7px 20px;
    font-size: 95%;
  }
  .feature_item:nth-child(-n+2) {
    flex-flow: wrap;
    gap: 20px;
    height: auto;
    margin: 0 auto 20px;
  }
  .feature_item:nth-child(-n+2) .feature_img {
    width: 100%;
    height: auto;
  }
  .feature_item:nth-child(-n+2) .feature_title {
    flex-flow: row;
    gap: 20px;
    margin: 0 0 30px;
  }
  .feature_item:nth-child(-n+2) .feature_title h3 {
    font-size: 18px;
  }
  .feature_item:nth-child(-n+2) .feature_num {
    font-size: 30px;
  }
  .feature_item:nth-child(-n+2) .feature_button {
    margin-top: auto;
    padding-top: 20px;
    text-align: right;
  }
  .feature_item:nth-child(-n+2) .feature_button > * {
    min-width: auto;
    padding: 10px 35px;
    font-size: 100%;
  }
}
/* ==================================================================================================================================

  *ピックアップ（パターン01） - 追加コンテンツ

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.pickup .inner {
  width: 100%;
  max-width: 1920px;
  padding: 75px 50px 100px;
}

.pickup_list {
  display: flex;
  flex-flow: wrap;
  gap: 120px;
}

.pickup_item {
  width: 100%;
}

.pickup_title_eng {
  margin: 0 auto 10px;
  font-family: brandon-grotesque, sans-serif;
  font-weight: 400;
  font-weight: 400;
  color: var(--main-color);
  font-size: 100px;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: right;
  opacity: 10%;
}

.pickup_inner {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1500px;
  margin: 0 auto;
}

.pickup_img {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 730px;
  height: auto;
}
.pickup_img::before {
  content: "";
  position: absolute;
  top: 0px;
  left: -100px;
  z-index: -1;
  display: block;
  width: 200px;
  height: 200px;
  background: rgb(162, 214, 235);
  border-radius: 50%;
  filter: blur(70px);
}
.pickup_img img {
  border-radius: 25px;
}

.pickup_title {
  position: relative;
  z-index: 2;
  margin: 0 auto 30px;
  text-align: center;
}

.pickup_title h2, .pickup_title h3 {
  background: none;
  font-size: 40px;
  letter-spacing: 0.2em;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-style: normal;
  font-weight: 400;
}

.pickup_contents {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding-top: 80px;
}

.pickup_title .dot {
  position: relative;
  z-index: 1;
  padding-top: 20px;
  color: var(--main-color);
}
.pickup_title .dot::before {
  content: "";
  position: absolute;
  top: 0;
  left: 40%;
  display: block;
  width: 7px;
  height: 7px;
  background: var(--main-color);
  border-radius: 50%;
  transform: translateX(-50%);
}

.pickup_sub_title {
  margin: 0 auto 60px;
  font-size: 26px;
  line-height: 1.65;
  text-align: center;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-style: normal;
  font-weight: 400;
}

.pickup_link {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 20px;
  margin-top: auto;
  padding-top: 60px;
}

.pickup_link .pickup_btn {
  width: 100%;
  height: fit-content;
}

.pickup_link .pickup_btn a {
  position: relative;
  display: block;
  padding: 12px 30px;
  border: 1px solid var(--main-color);
  border-radius: 100000px;
  color: var(--main-color);
  font-size: 17px;
  letter-spacing: 0.15em;
  text-align: center;
  vertical-align: bottom;
  transition: background 0.2s, color 0.2s;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-style: normal;
  font-weight: 400;
}

.pickup_link .pickup_btn a:hover {
  background: var(--main-color);
  color: #ffffff;
}

.pickup_link .pickup_btn a:hover::before {
  right: 12px;
  background: var(--main-color);
}

/* 偶数 */
.pickup_item:nth-child(even) .pickup_title_eng {
  text-align: start;
}
.pickup_item:nth-child(even) .pickup_inner {
  flex-flow: row-reverse;
}
.pickup_item:nth-child(even) .pickup_img::before {
  content: "";
  position: absolute;
  top: 0px;
  right: -100px;
  left: auto;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .pickup .inner {
    padding: 50px 0;
  }
  .pickup_list {
    gap: 50px;
    width: 100%;
  }
  .pickup_title h2, .pickup_title h3 {
    font-size: 26px;
  }
  .pickup_title_eng {
    font-size: 30px;
  }
  .pickup_item {
    flex-flow: column;
    width: 100%;
  }
  .pickup_inner {
    flex-flow: column;
    gap: 30px;
    width: 100%;
    padding: 30px 20px;
  }
  .pickup_img {
    width: 100%;
    margin: 0 auto;
  }
  .pickup_contents {
    padding-top: 0px;
  }
  .pickup_sub_title {
    margin: 0 auto 25px !important;
    font-size: 20px;
  }
  .pickup_link {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
    padding-top: 30px;
  }
  .pickup_link .pickup_btn a {
    padding: 10px 25px;
    font-size: 16px;
  }
  /* 偶数 */
  .pickup_item:nth-child(even) .pickup_title_eng {
    text-align: start;
  }
  .pickup_item:nth-child(even) .pickup_inner {
    flex-flow: column;
  }
  .pickup_item:nth-child(even) .pickup_img::before {
    content: "";
    position: absolute;
    top: 0px;
    right: -100px;
    left: auto;
  }
}
/* ==================================================================================================================================

  *リンクエリア

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.link {
  position: relative;
  z-index: 1;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 50px;
}
.link::before {
  content: "";
  position: absolute;
  top: 25%;
  left: 0px;
  z-index: -1;
  display: block;
  width: 200px;
  height: 200px;
  background: rgb(162, 214, 235);
  border-radius: 50%;
  filter: blur(70px);
}
.link .inner {
  padding: 80px;
  background: #ffffff;
  border-radius: 60px;
}

.large_links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
}

.large_link {
  position: relative;
  z-index: 1;
}

.large_link_img {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
}
.large_link_img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(3, 89, 120, 0.3), rgba(2, 63, 85, 0.3));
  opacity: 1;
  transition: opacity 0.4s;
}
.large_link_img img {
  transition: transform 0.4s;
}

.large_link:hover .large_link_img::before {
  opacity: 0.7;
}
.large_link:hover .large_link_img img {
  transform: scale(1.05);
}

.large_link_title {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  padding: 15px 40px 15px 30px;
  color: #ffffff;
  font-size: 22px;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-style: normal;
  font-weight: 400;
}
.large_link_title::before {
  content: "\f061";
  position: absolute;
  top: 53%;
  right: 30px;
  display: block;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 14px;
  line-height: 1;
  transform: translateY(-50%);
  transition: right 0.3s;
}

.large_link:hover .large_link_title::before {
  right: 25px;
}

.small_links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  max-width: 1300px;
  margin: 40px auto 0;
}

.small_link {
  padding: 40px 20px;
  background: #f9fafb;
  border-radius: 20px;
}
.small_link:hover {
  background: #f2f5f8;
}

.small_link_icon {
  width: 70%;
  max-width: 120px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 50%;
}

.small_link_title {
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-style: normal;
  font-weight: 400;
  margin-top: 10px;
  color: var(--main-color);
  font-size: 18px;
  text-align: center;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .link {
    padding: 0;
  }
  .link .inner {
    padding: 70px 20px;
    border-radius: 0;
  }
  .large_links {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .large_link_img {
    border-radius: 15px;
  }
  .large_link_img img {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
  }
  .large_link_title {
    padding: 10px 35px 10px 20px;
    font-size: 17px;
  }
  .large_link_title::before {
    right: 18px;
    font-size: 11px;
  }
  .large_link_title:hover::before {
    right: 16px;
  }
  .small_links {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px auto 0;
  }
  .small_link {
    padding: 20px 15px;
  }
  .small_link_icon {
    width: 60%;
  }
  .small_link_title {
    margin-top: 5px;
    font-size: 16px;
  }
}
/* ==================================================================================================================================

  *セクション画像

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.section_img {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: calc(100% - 180px);
  min-width: 1200px;
  margin: 120px auto;
}
.section_img .img {
  width: 100%;
  height: auto;
}
.section_img .img img {
  width: 100%;
  height: 100%;
  border-radius: 40px;
  object-fit: cover;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .section_img {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    width: 100%;
    min-width: auto;
    margin: 100px 0 50px;
    padding: 0 20px;
  }
  .section_img .img {
    width: calc(100% - 60px);
    margin: 0 auto 0 0;
  }
  .section_img .img:nth-child(2) {
    margin: 0 0 0 auto;
  }
  .section_img .img img {
    border-radius: 10px;
  }
}
/* ==================================================================================================================================

  *セクション画像

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.greeting .inner {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 150px;
}
.greeting .inner::before {
  content: "";
  position: absolute;
  top: 0px;
  left: calc(50% - 150px);
  z-index: -1;
  display: block;
  width: 200px;
  height: 200px;
  background: rgb(162, 214, 235);
  border-radius: 50%;
  filter: blur(70px);
}
.greeting .inner::after {
  content: "";
  position: absolute;
  right: -150px;
  bottom: 15%;
  z-index: -1;
  display: block;
  width: 200px;
  height: 200px;
  background: rgb(162, 214, 235);
  border-radius: 50%;
  filter: blur(70px);
}

.greeting_flex {
  display: flex;
  gap: 100px;
}

.greeting_img {
  width: 450px;
}
.greeting_img img {
  border-radius: 30px;
}

.greeting_right {
  display: flex;
  flex-flow: column;
}

.greeting_right_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 30px 50px;
  margin-top: auto;
  padding-top: 50px;
}

.greeting_profile {
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.75;
}
.greeting_profile .name span {
  font-size: 70%;
}

.greeting_under {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px;
  margin-top: 120px;
}

.greeting_under_box {
  display: flex;
  flex-flow: column;
}

.greeting_under_box h3 {
  margin-bottom: 30px;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-style: normal;
  font-weight: 400;
  color: var(--main-color);
  font-size: 24px;
}

.greeting_career dl {
  display: flex;
  gap: 30px;
  padding: 20px 0;
  border-bottom: 1px solid #deecf1;
  font-size: 18px;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-style: normal;
  font-weight: 400;
}
.greeting_career dl:first-child {
  padding-top: 0;
}
.greeting_career dl dt {
  flex-shrink: 0;
  width: auto;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-style: normal;
  font-weight: 400;
}
.greeting_career ul li {
  padding: 20px 0;
  border-bottom: 1px solid #deecf1;
  font-size: 18px;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-style: normal;
  font-weight: 400;
}
.greeting_career ul li:first-of-type {
  padding-top: 0;
}

.greeting_banner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.greeting_under_box .btn01 {
  margin-top: auto;
  padding-top: 50px;
  text-align: center;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .greeting .inner {
    flex-flow: column;
    gap: 0;
  }
  .greeting .inner::before {
    left: -100px;
  }
  .greeting_flex {
    flex-flow: column;
    gap: 40px;
  }
  .greeting_img {
    width: 100%;
    margin: 0 auto;
  }
  .greeting_right_box {
    flex-flow: column;
  }
  .greeting_profile {
    font-size: 22px;
    text-align: center;
  }
  .greeting_under {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
    margin-top: 40px;
  }
  .greeting_under_box h3 {
    margin-bottom: 15px;
    font-size: 20px;
  }
  .greeting_career dl {
    flex-flow: column;
    gap: 0px;
    padding: 15px 0;
    border-bottom: 1px solid #deecf1;
    font-size: 15px;
  }
  .greeting_career dl dt {
    font-size: 90%;
  }
  .greeting_career ul li {
    padding: 15px 0;
    font-size: 15px;
  }
  .greeting_under_box .btn01 {
    padding-top: 40px;
  }
}