@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 {
  /* 右寄せ */
}

.top_title.title_right {
  text-align: right;
}

.top_title h2 {
  position: relative;
  z-index: 1;
  width: fit-content;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-style: normal;
  font-weight: 700;
  color: #554b42;
  font-size: 50px;
  letter-spacing: 0.25em;
}

.top_title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 54px;
  height: 34px;
  background: url(../images/common/leaf.svg) no-repeat center/cover;
}

.top_title .eng {
  display: inline-block;
  margin-bottom: 5px;
  color: var(--main-color);
  font-size: 150%;
}

.top_title_vertical h2 {
  position: relative;
  z-index: 1;
  padding: 70px 0 0;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-style: normal;
  font-weight: 700;
  color: #554b42;
  font-size: 40px;
  letter-spacing: 0.25em;
  writing-mode: vertical-rl;
}

.top_title_vertical h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 54px;
  height: 34px;
  background: url(../images/common/leaf.svg) no-repeat center/cover;
  transform: translateX(-50%);
}

.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 {
    font-size: 24px;
  }

  .top_title h2::before {
    content: "";
    position: absolute;
    display: block;
    width: 40.5px;
    height: 25.5px;
    background: url(../images/common/leaf.svg) no-repeat center/cover;
  }

  .top_title .eng {
    font-size: 18px;
  }

  .top_title_vertical {
    margin-bottom: 40px;
    text-align: center;
  }

  .top_title_vertical h2 {
    padding-top: 40px;
    font-size: 24px;
    letter-spacing: 0.1em;
    writing-mode: horizontal-tb;
  }

  .top_title_vertical h2::before {
    width: 40.5px;
    height: 25.5px;
  }

  .top_title_vertical .eng {
    font-size: 18px;
  }
}

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

  *メインビジュアル

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.mainvisual {
  position: relative;
  z-index: 1;
  height: 100svh;
  min-height: 950px;
  margin-top: 100px;
  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: 450px;
  left: 0;
  z-index: 3;
  width: 100%;
}

.mvCatch .inner {
  position: relative;
  z-index: 1;
  max-width: none;
  padding: 0 80px;
}

.catch {
  width: fit-content;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-style: normal;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.65;
}

.catch .main {
  font-size: 50px;
  letter-spacing: 0.2em;
    text-shadow: 1px 1px 1px #fff, -1px -1px 1px #fff, -1px 1px 1px #fff, 1px -1px 1px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
    color: #000;
}

.catch .sub {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
/*   font-size: 20px; */
	font-size: 30px;
  letter-spacing: 0.15em;
	    letter-spacing: 0.2em;
    text-shadow: 1px 1px 1px #fff, -1px -1px 1px #fff, -1px 1px 1px #fff, 1px -1px 1px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
    color: #000;
	font-weight:bold;
}

.catch .sub big {
  font-size: 130%;
  color: var(--main-color);
  text-shadow: 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
}

.catch .sub .emphasis {
  color: rgb(100 191 229);
  text-shadow: 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
}

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

.mvContents .inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  height: 100%;
  padding: 0 80px;
}

.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);
}

.small-banner {
  position: absolute;
  bottom: 200px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.small-banner-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 180px;
  padding: 4px;
  background: rgba(0, 156, 200, 0.2);
  border-radius: 50%;
}

.small-banner-item p,
.small-banner-item a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 156, 200, 0.6);
  border-radius: 50%;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-style: normal;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.6;
  text-align: center;
	flex-direction:column;
	gap:5px;
	position:relative;
	.btn {
		background:white!important;
		color:var(--main-color);
		padding:3px 5px;
		border-radius:10px;
		font-size:80%;
	}
	&::after {
		content:"";
		position:absolute;
		bottom:30px;
		left:0;
		right:0;
		margin-inline: auto;
        width: 23px;
        height: 5px;
        border-bottom: solid 1px;
        border-right: solid 1px;
        transform: skew(45deg);
		transition:.3s;
	}
}
.small-banner-item a:hover {
			&::after {
			left:10px;
		}
}
@media screen and (max-width: 640px) {
	.small-banner-item a::after {
				bottom:10px;
				width: 16px;
				height: 3px;
	}
}
.small-banner-item:nth-child(even) {
  background: rgba(100, 191, 229, 0.2);
}

.small-banner-item:nth-child(even) p,
.small-banner-item:nth-child(even) a {
  background: rgba(100, 191, 229, 0.7);
}

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

.sp_only {
  display: none;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .mainvisual {
    height: calc(100svh - 70px);
    min-height: 825px;
	margin-top: 70px;
  }
	
  .mvImg .splide__track::before {
	content: none;
  }

  /* ----- スライダーの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: auto;
	top: /*111*/290px;
	  top: 40px;
    left: 0;
  }

  .mvCatch .inner {
    padding: 0 15px;
  }

  .catch {
    left: 0;
  }

  .catch .main {
    font-size: 26px;
  }

  .catch .sub {
    margin-top: 10px;
    padding-top: 15px;
    font-size: 15px;
    line-height: 2;
  }

/*   .mvContents {
    display: none;
  } */

  .sp_only {
    display: block;
    background: none !important;
  }

  .sp_only .inner {
    padding: 0 20px 50px;
  }
	
  .mvContents .inner {
	padding: 0 20px;
  }

  .small-banner {
/*     position: static;
    flex-flow: column; */
	left: 20px;
	bottom: /*100*/25px;
	  bottom: 300px;
	flex-wrap: wrap;
    gap: 5px;
    width: calc(100% - 40px);
  }

  .small-banner-item {
    width: calc((100% / 3) - (10px / 3));
	max-width: 110px;
    height: auto;
	aspect-ratio: 1;
    padding: 3px;
    background: rgba(0, 156, 200, 0.3);
  }

  .small-banner-item p,
  .small-banner-item a {
    padding: 6px;
    background: rgb(0, 156, 200);
    border-radius: 7px;
    font-family: fot-tsukuardgothic-std, sans-serif;
    font-style: normal;
    font-weight: 700;
	font-size: min(3.1vw, 12px);
    color: #ffffff;
    line-height: 1.6;
    text-align: center;
	border-radius: 50%;
  }

  .small-banner-item:nth-child(even) {
    background: rgba(100, 191, 229, 0.3);
  }

  .small-banner-item:nth-child(even) p,
  .small-banner-item:nth-child(even) a {
    background: rgb(100, 191, 229);
  }

  .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 {
  background: var(--bg-color);
}

.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: 150px 0 150px 50px;
}

.trouble .top_title h2 {
  padding: 30px 0 0 0px;
  font-size: 40px;
}

.trouble .top_title h2::before {
  top: 15px;
  right: 110px;
  transform: rotate(50deg);
}

.trouble_content {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: 650px;
  height: auto;
}

.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;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px !important;
  height: 100%;
  padding: 30px 20px;
  background: #ffffff;
  border-radius: 10px;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.65;
  text-align: center;
}

.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: 30px;
    width: 100%;
    padding: 30px 0 70px;
  }

  .trouble_content {
    width: 100%;
    padding: 0 20px;
  }

  .trouble .top_title h2 {
    padding: 30px 0 0 0px;
    font-size: 20px;
  }

  .trouble .top_title h2::before {
    top: 15px;
    right: 30px;
    transform: rotate(50deg);
  }

  .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: 14px;
  }

  .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 {
  position: relative;
}

.feature::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: calc(50% - 300px);
  height: 85%;
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #eef9f7 calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #eef9f7 calc(100% - 1px));
  background-position: center center;
  background-size: 20px 20px;
  background-repeat: repeat;
}

.feature .top_title {
  margin-bottom: 85px;
}

.feature .top_title h2 {
  margin: 0 0 0 auto;
  padding: 30px 0 0 100px;
}

.feature .top_title h2::before {
  top: 10px;
  left: 5px;
  transform: rotate(-30deg);
}

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

.feature_list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-flow: wrap;
  gap: 60px;
}

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

.feature_img {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  max-width: 720px;
  padding: 0 15px 15px;
}

.feature_img::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 40%;
  background: var(--main-color);
  border-radius: 15px;
}

.feature_img img {
  border-radius: 15px;
}

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

.feature_title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  margin: 30px 0 40px;
}

.feature_title h3 {
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.65;
  letter-spacing: 0.15em;
}

.feature_num {
  flex-shrink: 0;
  font-family: "brandon-grotesque", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: var(--main-color);
  font-size: 46px;
  font-size: 50px;
  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+1) {
  flex-flow: row-reverse;
  align-items: center;
  gap: 70px;
  width: 100%;
}

.feature_item:nth-child(-n+1) .feature_title {
  justify-content: flex-start;
  margin: 0 0 40px;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .feature::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 25%;
    height: 85%;
    background-image: linear-gradient(0deg, transparent calc(100% - 1px), #eef9f7 calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #eef9f7 calc(100% - 1px));
    background-position: center center;
    background-size: 15px 15px;
    background-repeat: repeat;
  }

  .feature .inner {
    padding: 70px 20px;
  }

  .feature .top_title {
    margin-bottom: 40px;
  }

  .feature .top_title h2 {
    margin: 0 auto;
    padding: 40px 0 0;
  }

  .feature .top_title h2::before {
    top: 0;
    left: 15px;
    transform: rotate(-20deg);
  }

  .feature_list {
    gap: 50px;
  }

  .feature_item {
    width: 100%;
  }

  .feature_img {
    padding: 0 7px 7px;
  }

  .feature_img::before {
    height: 45%;
    border-radius: 10px;
  }

  .feature_img img {
    border-radius: 10px;
  }

  .feature_title {
    gap: 15px;
    margin: 25px 0;
  }

  .feature_title h3 {
    font-size: 17px;
  }

  .feature_num {
    font-size: 28px;
  }

  .feature_button {
    padding-top: 20px;
    text-align: center;
  }

  .feature_button > * {
    min-width: auto;
    padding: 7px 20px;
    font-size: 95%;
  }

  .feature_item:nth-child(-n+1) {
    flex-flow: wrap;
    gap: 0;
  }

  .feature_item:nth-child(-n+1) .feature_img {
    width: 100%;
    height: auto;
  }

  .feature_item:nth-child(-n+1) .feature_title {
    gap: 15px;
    margin: 25px 0;
  }

  .feature_item:nth-child(-n+1) .feature_title h3 {
    font-size: 17px;
  }
}

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

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

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.pickup {
  background: rgb(243, 253, 252);
}

.pickup .inner {
  width: 100%;
  max-width: 1920px;
  padding: 150px 50px 0;
}

.pickup_title {
  max-width: 1500px;
  margin: 0 auto;
  margin-bottom: 120px;
  padding: 0 100px;
  background: var(--main-color);
  border-radius: 100000px;
  overflow: hidden;
}

.pickup_title h2 {
  padding: 20px 30px;
  background: var(--sub-color);
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-style: normal;
  font-weight: 700;
  color: #ffffff;
  font-size: 40px;
  letter-spacing: 0.2em;
  text-align: center;
  clip-path: polygon(5% 0, 100% 0%, 95% 100%, 0% 100%);
}

.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-style: normal;
  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: 1600px;
  margin: 0 auto;
  padding: 0 50px;
}

.pickup_img {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 730px;
  height: auto;
}

.pickup_img img {
  border-radius: 15px;
}

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

.pickup_sub_title {
  position: relative;
  z-index: 2;
  margin: 0 auto 35px;
  padding: 0 0 30px;
  border-bottom: 2px solid #c5d7d5;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.65;
  letter-spacing: 0.2em;
  text-align: center;
}

.pickup_sub_title .dot {
  position: relative;
  z-index: 1;
  padding-top: 20px;
  color: var(--main-color);
}

.pickup_sub_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_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 > * {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 12px 26px 12px 34px;
  background: var(--accent-color);
  border: 1px solid var(--accent-color);
  border-radius: 7px;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-style: normal;
  font-weight: 700;
  color: #ffffff;
  font-size: 17px;
  letter-spacing: 0.15em;
  text-align: center;
  vertical-align: bottom;
  transition: background 0.2s, color 0.2s;
}

.pickup_link .pickup_btn > *:hover {
  background: #ffffff;
  color: var(--accent-color);
}

/* 偶数 */
.pickup_item:nth-child(even) .pickup_inner {
  flex-flow: row-reverse;
}

@media screen and (max-width: 1450px) {
  .pickup_contents{
  width: 45%;
  }

  .pickup_img {
    width: 55%;
    flex-shrink: 1;
  }

  .pickup_link{
    grid-template-columns: repeat(1, 1fr);
  }
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .pickup .inner {
    padding: 70px 0 10px;
  }

  .pickup_title {
    width: calc(100% - 40px);
    margin: 0 auto 0px;
    padding: 0 15px;
  }

  .pickup_title h2 {
    padding: 15px 20px;
    font-size: 18px;
  }

  .pickup_list {
    gap: 0;
    width: 100%;
  }

  .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 {
    width: 100%;
    padding-top: 0px;
  }

  .pickup_sub_title {
    margin: 0 auto 25px;
    padding: 0 0 20px;
    font-size: 18px;
  }

  .pickup_sub_title .dot {
    padding-top: 13px;
  }

  .pickup_sub_title .dot::before {
    left: 40%;
    width: 5px;
    height: 5px;
  }

  .pickup_link {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    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;
  margin: 0 auto;
  padding: 100px 50px 150px;
  background: rgb(243, 253, 252);
}

.link .inner {
  max-width: 1500px;
  padding: 50px;
  background: #ffffff;
  border-radius: 20px;
}

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

.large_link {
  position: relative;
  z-index: 1;
  border-radius: 10px;
  overflow: hidden;
}

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

.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(36, 108, 134, 0.3), rgba(2, 63, 85, 0.2));
  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;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-style: normal;
  font-weight: 700;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.6;
}

.large_link_title::before {
  content: "\f061";
  position: absolute;
  right: -30px;
  bottom: -35px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  padding: 0 15px 22px 0;
  background: var(--main-color);
  border-radius: 50%;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 14px;
  line-height: 1;
  transition: background 0.3s;
}

.large_link:hover .large_link_title::before {
  background: var(--accent-color);
}

.small_links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 40px auto 0;
}

.small_link {
  padding: 40px 20px;
  background: var(--bg-color);
  border-radius: 10px;
}

.small_link:hover {
  background: #e3f1f8;
}

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

.small_link_title {
  margin-top: 10px;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .link {
    padding: 0;
  }

  .link .inner {
    width: calc(100% - 30px);
    margin: 0 auto;
    padding: 20px;
    border-radius: 15px 15px 0 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: 150px;
    object-fit: cover;
  }

  .large_link_title {
    padding: 10px 70px 13px 15px;
    font-size: 15px;
  }

  .large_link_title::before {
    width: 80px;
    height: 80px;
    font-size: 10px;
  }

  .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 {
  position: relative;
  z-index: 1;
  background: linear-gradient(to bottom, #f3fdfc 50%, #ffffff 50%);
}

.section_img_inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: calc(100% - 180px);
  min-width: 1200px;
  margin: 0 auto 150px;
}

.section_img_inner .img {
  width: 100%;
  height: auto;
  max-height: 500px;
}

.section_img_inner .img img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  object-fit: cover;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .section_img {
    padding-top: 30px;
    background: linear-gradient(to bottom, #f3fdfc 80%, #ffffff 80%);
  }

  .section_img_inner {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
    width: 100%;
    min-width: auto;
    margin: 0;
    padding: 0 20px;
  }

  .section_img_inner .img {
    max-height: 200px;
  }

  .section_img_inner .img img {
    border-radius: 10px;
  }
}

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

  *セクション画像

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.greeting {
  position: relative;
  z-index: 1;
}

.greeting .inner {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 150px;
}

.greeting .inner::before {
  content: "";
  position: absolute;
  top: 30%;
  left: -200px;
  z-index: -1;
  display: block;
  width: 500px;
  height: 465px;
  background: url(../images/common/logo.svg) no-repeat center/cover;
  opacity: 0.1;
}

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

.greeting_img {
  width: 450px;
}

.greeting_img img {
  border-radius: 15px;
}

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

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

.greeting_profile {
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-style: normal;
  font-weight: 700;
  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: 700;
  color: var(--main-color);
  font-size: 24px;
}

.greeting_career dl {
  display: flex;
  gap: 30px;
  padding: 20px 0;
  border-bottom: 1px solid #deecf1;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
}

.greeting_career dl:first-child {
  padding-top: 0;
}

.greeting_career dl dt {
  flex-shrink: 0;
  width: auto;
  min-width: 100px;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-style: normal;
  font-weight: 700;
}

.greeting_career ul li {
  padding: 20px 0;
  border-bottom: 1px solid #deecf1;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
}

.greeting_career ul li:first-of-type {
  padding-top: 0;
}

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

.greeting_banner_item a:hover{
  opacity: 0.6;
}

.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 {
    top: 30%;
    left: -50px;
    width: 400px;
    height: 372px;
    opacity: 0.08;
  }

  .greeting_flex {
    flex-flow: column;
    gap: 40px;
  }

  .greeting_img {
    width: 100%;
    margin: 0 auto;
  }

  .greeting_right_box {
    flex-flow: column;
    padding-top: 40px;
  }

  .greeting_profile {
    font-size: 19px;
    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;
  }
}

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

  *MV 260304

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



/* 全体の背景設定（黄緑部分） */
.catchcopy-container {
    background: url(mainvisual-01.jpg); /* 実際はここに画像が入る */
    padding: 0;
    text-align: center;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    width: fit-content;
}

/* キャッチコピー */
.catchcopy-container .catch-phrase {
    font-family: fot-tsukuardgothic-std, sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #000;
    text-shadow: 1px 1px 1px #fff, -1px -1px 1px #fff, -1px 1px 1px #fff, 1px -1px 1px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
}

/* 白背景のカード部分 */
.catchcopy-container .card {
    background-color: rgba(255, 255, 255, 0.6);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 30px 40px;
    max-width: 600px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 15px;
    backdrop-filter: blur(4px);
    box-shadow: 0px 0px 6px 0px rgba(255, 255, 255, 1);
}

/* 左側ブロック */
.catchcopy-container .card-left {
    font-family: fot-tsukuardgothic-std, sans-serif;
    text-align: left;
    padding-right: 30px;
}

.catchcopy-container .card-left .sub-text {
    font-family: fot-tsukuardgothic-std, sans-serif;
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: #000;
    text-align: center;
}

.catchcopy-container .card-left .main-title {
    font-family: fot-tsukuardgothic-std, sans-serif;
    font-size: 3rem;
    color: #009cc8;
    margin: 0;
    white-space: nowrap;
    text-shadow: 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
    position: relative;
    top: unset;
    left: unset;
    right: unset;
    bottom: unset;
    padding:unset;
    line-height:1;

        --x-gradient: linear-gradient(90deg, #333 0 2px, transparent 0 calc(100% - 2px), #333 calc(100% - 2px));
        --y-gradient: linear-gradient(#333 0 2px, transparent 0 calc(100% - 2px), #333 calc(100% - 2px));
        padding: 0.5rem;
        background-image: var(--x-gradient), var(--y-gradient), var(--x-gradient), var(--y-gradient);
        background-repeat: no-repeat;
        background-size: 100% 10px, 10px 100%, 100% 10px, 10px 100%;
        background-position: top, right, bottom, left;
}

/* 仕切り線（PCは縦線） */
.catchcopy-container .separator {
    width: 1px;
    height: 80px;
    background-color: #009cc8;
}

/* 右側ブロック */
.catchcopy-container .card-right {
    font-family: fot-tsukuardgothic-std, sans-serif;
    text-align: left;
    padding-left: 30px;
    display: flex;
    gap: 5px;
    flex-direction: column;
    font-size: 30px;
}

.catchcopy-container .card-right .item {
    font-size: 1rem;
    background: #fff;
    border-radius: 5px;
    padding: 3px 12px;
    line-height: 1.5;
}
@media (max-width: 768px) {
	.catchcopy-container .card-right .item {
		padding: 3px 7px;
		line-height: 1.5;
		font-size: 10px;
	}
}
.catchcopy-container .card-right .highlight {
    color: #64bfe5;
}

/* --- スマホ表示（768px以下） --- */
@media (max-width: 768px) {
    .catchcopy-container .catch-phrase {
        font-size: 26px;
        line-height:1.6;
        text-align:left;
    }
    .catchcopy-container .card-left .sub-text {
        font-size:15px;
		line-height:1.3;
    }
    .catchcopy-container .card {
        flex-direction: column; /* 縦積み */
        padding: 10px;
    }

    .catchcopy-container .card-left {
        padding-right: 0;
        text-align: center;
        margin-bottom: 5px;
    }

    .catchcopy-container .card-left .main-title {
        font-size: 2.2rem;
    }

    /* 仕切り線（スマホは横線） */
    .catchcopy-container .separator {
        width: 80%;
        height: 1px;
        margin: 0 auto 5px;
    }

    .catchcopy-container .card-right {
        padding-left: 0;
        text-align: center;
        flex-wrap: wrap;
        flex-direction: row;
    }
}
