@charset "UTF-8";

/* ---------------------
  - *基本設定
  - *アニメーション
  - *タイトル
  - *メインビジュアル
  - *医院概要
  - *ご挨拶
  - *診療案内
  - *当院の特徴
  - *医療コラム
--------------------- */
/* ==================================================================================================================================

  *基本設定

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

section .inner {
  padding: 100px 0;
}

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

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

  *アニメーション

================================================================================================================================== */
@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
---------------------------------------------------------------------- */
.top_title {
  margin-bottom: 50px;
  line-height: 1.5;
  text-align: center;
  position: relative;
  z-index: 0;
}

.top_title.title_left {
  text-align: start;
}

.top_title h2 {
  font-family: var(--jp-font);
  font-weight: 400;
  font-size: 190%;
}

.top_title .eng {
  display: inline-block;
  color: var(--main-color);
  font-family: var(--en-font);
  font-weight: 400;
  font-size: 420%;
  letter-spacing: 0.08em;
  line-height: 1.3;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .top_title {
    margin-bottom: 40px;
  }

  .top_title h2 {
    margin: 5px 0 0;
    font-size: 23px;
  }

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

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

  *メインビジュアル

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.mainvisual {
  position: relative;
  z-index: 1;
  height: 800px;
  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#sliderBtn_prev {
  left: 20px;
}

.mvSlider .sliderBtn#sliderBtn_next {
  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#sliderBtn_prev span::before {
  content: "\f053";
}

.mvSlider .sliderBtn#sliderBtn_next span::before {
  content: "\f054";
}

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

/* ----- MVの画像 ----- */
.mvImg {
  width: 100%;
  height: 100%;
}

.mvImg .splide__track {
  width: 100%;
  height: 100%;
}

.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 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;
  top: 40%;
  left: 0;
  z-index: 3;
  width: 100%;
  transform: translateY(-50%);
}

.mvCatch .inner {
  position: relative;
  z-index: 1;
}

.mvCatch p {
  color: #5e5e5e;
  font-family: var(--jp-font);
  font-weight: 400;
  font-size: 200%;
  letter-spacing: 0.1em;
  text-shadow: 0px 0px 4px rgba(255, 255, 255, 0.8);
  text-align: center;
  background: rgb(255, 255, 255, 0.9);
  padding: 5px 40px;
  width: fit-content;
  border-radius: 7px;
}

.mvCatch p span{
  font-size: 130%;
  color: var(--main-color);
}

/* ----- コンテンツ ----- */
.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;
  border-radius: 50%;
  border: 1px solid var(--main-color);
}

.open_bnr > * {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 280px;
  height: 280px;
  padding: 15px;
  background: rgb(254, 245, 234, 0.85);
  background-image: linear-gradient(120deg, #f2cc56 0%, #de876f 100%);
  border-radius: 50%;
  color: #fff;
  font-family: var(--jp-font);
  font-weight: 400;
  font-size: 110%;
  line-height: 1.5;
  text-align: center;
  text-shadow: 1px 1px 4px rgba(154, 141, 126, 0.4);
}

.open_bnr .date {
  font-size: 110%;
}

.open_bnr .open_text {
  margin: 0 0 15px;
  padding-bottom: 10px;
  width: 100%;
  border-bottom: solid 1px #fff;
  font-size: 180%;
}

.open_bnr .nairankai_wrap{
  display: flex;
  align-items: center;
  gap: 10px;
}

.open_bnr .nairankai_tit {
  display: flex;
  align-items: center;
  justify-content: center;
  /* width: 100%;
  margin: 0 0 10px; */
  width: 65px;
  height: 65px;
  padding: 5px;
  background: #ffffff;
  border-radius: 50%;
  color: #db8100;
  font-size: 85%;
  text-align: center;
  text-shadow: none;
}

.open_bnr .nairakai_date{
  text-align: left;
  line-height: 1.8;
}

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

.open_bnr.subcolor > * .nairankai_tit {
  color: var(--sub-color);
}

/* ----- スマホ専用エリア ----- */
.sp_only {
  display: none;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .mainvisual {
    height: 400px;
  }

  /* ----- スライダーのArrowボタン ----- */
  .mvSlider .sliderBtn {
    top: 50%;
    width: 40px;
    height: 40px;
    padding: 2px;
    font-size: 10px;
  }

  .mvSlider .sliderBtn#sliderBtn_prev {
    left: 10px;
  }

  .mvSlider .sliderBtn#sliderBtn_next {
    right: 10px;
  }

  .mvSlider .sliderBtn span::before {
    font-size: 11px;
  }

  /* ----- キャッチコピー ----- */
  .mvCatch {
    top: unset;
    bottom: 20px;
    transform: translateY(0);
    display: none;
  }

  .mvCatch.is-active {
    display: block;
  }

  .mvCatch p {
    padding: 12px 20px;
    font-size: 120%;
    line-height: 1.75;
    text-align: left;
    border-radius: 8px;
  }

  /* ----- コンテンツ ----- */
  .mvContents {
    display: none;
  }

  /* ----- 開院バナー ----- */
  .open_bnr {
    position: static;
    width: 100%;
    max-width: 350px;
    border-radius: 8px;
  }

  .open_bnr > * {
    width: 100%;
    height: auto;
    padding: 15px 20px;
    border-radius: 6px;
  }

  /* ----- スマホ専用エリア ----- */
  .sp_only {
    display: block;
    background: none !important;
  }

  .sp_only .inner {
    padding: 0 20px 30px;
  }

  .sp_only_contents {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
  }
}

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

  *医院概要（パターン02）

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.clinic {
  position: relative;
  z-index: 1;
  background: var(--bg-gray);
}

/* ----- お知らせ ----- */
.clinic .news {
  position: relative;
  z-index: 1;
}
.clinic .news .inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  padding: 100px 0 70px;
}
.clinic .news .news_left {
  flex-shrink: 0;
}
.clinic .news .top_title {
  margin: 0 0 30px;
}
.clinic .news .top_title .eng{
  font-size: 380%;
  letter-spacing: 0.08em;
}
.clinic .news .top_title h2{
  font-size: 180%;
}
.clinic .news .btn01 {
  margin-top: 30px;
  text-align: center;
}

/* ----- 医院概要 ----- */
.clinic .info .inner {
  display: flex;
  gap: 40px;
  padding: 0 0 100px;
}
.clinic .info .inner > * {
  width: calc(50% - 20px);
}
.clinic .info .office_hour .title {
  background: #ffffff;
}
.clinic .info .office_hour .table_wrapper {
  background: #ffffff;
}
.clinic .info address > * {
  position: relative;
  z-index: 1;
  min-height: 40px;
}
.clinic .info address > *::before {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 0 0 0 2px;
  background: #fff;
  border-radius: 50%;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--main-color);
  font-size: 16px;
}
.clinic .info address .location {
  padding: 5px 0 5px 50px;
}
.clinic .info address .location::before {
  content: "\f3c5";
}
.clinic .info address .location .zipcode {
  margin-right: 10px;
}
.clinic .info address .tel {
  margin-top: 15px;
  padding: 3px 0 7px 50px;
  font-family: var(--en-font);
  font-weight: 400;
  font-size: 30px;
  letter-spacing: 0.1em;
  line-height: 1;
}
.clinic .info address .tel::before {
  content: "\f3cd";
}
.clinic .info address .tel a{
  color: var(---text-color);
}
.clinic .info address .fax {
  margin-top: 15px;
  padding: 5px 0 5px 50px;
  font-family: var(--en-font);
  font-weight: 400;
  font-size: 30px;
  letter-spacing: 0.1em;
  line-height: 1;
}
.clinic .info address .fax::before {
  content: "\f249";
}
.clinic .info .note {
  margin-top: 10px;
  padding-left: 12px;
  font-size: 95%;
}
.clinic .info .speciality {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 20px auto 0;
  padding: 20px 15px;
  background: #ffffff;
  border-radius: 8px;
}
.clinic .info .speciality .title {
  flex-shrink: 0;
  width: fit-content;
  padding: 10px 30px;
  background: var(--bg-color);
  color: var(--title-color);
  text-align: center;
  font-family: var(--jp-font);
  font-weight: 500;
  border-radius: 7px;
}
.clinic .info .googlemap iframe {
  height: 390px;
  border-radius: 10px;
}
.clinic .info .list_access {
  margin-top: 10px;
}
.clinic .info .calendar_text {
  margin-top: 20px;
}
.clinic .info .btn01 {
  margin-top: 30px;
  text-align: center;
}
.clinic .info .btn01 a{
  width: 50%;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  /* ----- お知らせ ----- */
  .clinic .news .inner {
    flex-flow: column;
    gap: 0;
    padding: 60px 20px;
  }
  .clinic .news .top_title .eng{
    font-size: 42px;
  }
  .clinic .news .top_title h2{
    font-size: 23px;
  }
  .clinic .news .btn01{
    margin-top: 20px;
  }
  /* ----- 医院概要 ----- */
  .clinic .info .inner {
    flex-flow: column;
    padding: 0 20px 70px;
  }
  .clinic .info .inner > * {
    width: 100%;
  }
  .clinic .info address .location {
    padding: 0px 0 5px 50px;
  }
  .clinic .info address .location .zipcode{
    display: block;
    width: 100%;
  }
  .clinic .info .speciality {
    flex-flow: column;
    gap: 10px;
    padding: 10px;
  }
  .clinic .info .speciality .title {
    width: 100%;
    padding: 5px 10px;
  }
  .clinic .info .googlemap iframe{
    height: 300px;
  }
}

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

  *ご挨拶（パターン01）

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

.greeting::before{
  content: 'Ichikawa Ibuchi Dermatology Clinic';
  position: absolute;
  bottom: -42px;
  left: 2px;
  color: var(--main-color);
  background: linear-gradient(90deg, #f5a84d 0%, #fcd35e 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 5px #fff);
  font-family: var(--en-font);
  font-weight: 400;
  /* font-size: 94px; */
  font-size: 9.0vw;
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
  opacity: 0.12;
  z-index: 0;
}

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

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

.greeting_box:not(:last-child) {
  margin-bottom: 70px;
}

.greeting_left {
  flex-shrink: 0;
  width: 64%;
}

.greeting_text{
  margin-top: 30px;
}

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

.greeting_img{
  padding: 20px 20px 0 0;
  position: relative;
  z-index: 0;
}

.greeting_img::before{
  content: '';
  position: absolute;
  background: #FAC019;
  background: linear-gradient(135deg, #fcd35e 0%, #f5a84d 100%);
  width: 90px;
  height: 90px;
  top: 0;
  right: 0;
  border-radius: 17px;
  z-index: -1;
}

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

.greeting_profile {
  margin-top: 20px;
  font-family: var(--jp-font);
  font-weight: 400;
  line-height: 1.75;
  text-align: center;
}

.greeting_profile .position {
  font-size: 120%;
}

.greeting_profile .name {
  font-size: 150%;
}

.greeting_btn {
  margin-top: 20px;
  text-align: center;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .greeting::before{
    bottom: -7px;
    left: 0px;
  }

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

  .greeting_left {
    width: 100%;
  }

  .greeting_img{
    width: 85%;
    margin: 0 auto;
    padding: 15px 15px 0 15px;
  }

  .greeting_btn {
    margin-top: 40px;
  }
}

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

  *診療案内（パターン01）

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.medical {
  background: linear-gradient(rgba(190, 173, 154, 0.4), rgba(190, 173, 154, 0.4)), url(../images/front/bg_medical.jpg) no-repeat center/cover;
}

.medical .top_title {
  color: #ffffff;
}

.medical .top_title span {
  color: var(--main-color);
}

.medical_list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 20px;
}

.medical_item {
  position: relative;
  z-index: 1;
  width: calc(25% - 15px);
  height: auto;
  padding: 3px;
  border: 1px solid #fff;
  border-radius: 12px;
}

.medical_item:hover {
  transform: translateY(-10px);
}

.medical_img {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  transition: background 0.2s;
}

.medical_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.medical_inner {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 270px;
  padding: 30px 20px 40px;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  border-radius: 10px;
}

.medical_item:hover .medical_inner{
  background: #FEF5DA;
  background: linear-gradient(133deg, rgba(254, 245, 218, 0.9) 0%, rgba(251, 232, 208, 0.9) 100%);
}

.medical_inner > *:not(:last-child) {
  margin-bottom: 15px;
}

.medical_icon {
  width: 70%;
  max-width: 120px;
  margin: 0 auto 15px !important;
  padding: 20px;
  background: var(--bg-color);
  background: #FEF5DA;
  background: linear-gradient(133deg, rgba(254, 245, 218, 1) 0%, rgba(251, 232, 208, 1) 100%);
  border-radius: 50%;
}

.medical_item:hover .medical_icon{
  background: #fffcf4;
}

.medical_title h3 {
  color: var(--text-color);
  font-family: var(--jp-font);
  font-weight: 400;
  font-size: 120%;
  line-height: 1.5;
}

.medical_title_eng {
  margin-top: 5px;
  color: var(--main-color);
  font-family: var(--en-font);
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 1px;
  text-align: center;
}

.medical_text {
  color: var(--text-color);
}

.medical_btn span {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 0 auto;
  padding: 7px 25px 7px 15px;
  background: var(--main-color);
  border: 1px solid var(--main-color);
  color: #ffffff;
  letter-spacing: 1px;
  text-align: center;
  transition: padding 0.2s, color 0.2s, background 0.2s;
}

.medical_btn span::after {
  content: "\f105";
  position: absolute;
  top: 50%;
  right: 10px;
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 10px;
  transform: translateY(-50%);
}

.medical_item:hover .medical_btn span {
  background: #ffffff;
  color: var(--main-color);
}


/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .medical {
    background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url(../images/front/sp_bg_medical.jpg) no-repeat center/cover;
  }

  .medical_list {
    gap: 15px 10px;
  }

  .medical_item {
    width: calc(50% - 5px);
  }

  .medical_item:hover {
    transform: translateY(-5px);
  }

  .medical_inner {
    min-height: auto;
    padding: 20px 10px;
  }

  .medical_icon {
    width: 60%;
    margin-bottom: 10px!important;
    padding: 15px;
  }

  .medical_title h3 {
    font-size: 100%;
  }

}

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

  *当院の特徴（パターン02）

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.feature {
  background: var(--bg-color);
}

.feature_list {
  display: flex;
  flex-flow: wrap;
  gap: 100px 30px;
}

.feature_item {
  display: flex;
  width: 100%;
  height: auto;
}

.feature_img {
  flex-shrink: 0;
  width: 520px;
  height: fit-content;
  padding: 50px 12px 12px;
  position: relative;
  z-index: 0;
}

.feature_img::before{
  content: '';
  position: absolute;
  width: calc(100% - 80px);
  height: calc(100% - 120px);
  border-bottom: 2px solid rgb(242, 142, 0, 0.4);
  border-left: 2px solid rgb(242, 142, 0, 0.4);
  bottom: 0px;
  left: 0;
  z-index: -1;
  border-radius: 0 0 0px 13px;
}

.feature_img::after{
  content: '';
  position: absolute;
  width: calc(100% - 130px);
  height: calc(100% - 78px);
  border-top: 2px solid rgb(242, 142, 0, 0.4);
  border-right: 2px solid rgb(242, 142, 0, 0.4);
  top: 38px;
  right: 0;
  z-index: 0;
  border-radius: 0 13px 0px 0;
}

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

.feature_num {
  position: absolute;
  content: '';
  top: 10px;
  left: 5px;
  color: #fff;
  font-family: var(--en-font);
  font-weight: 400;
  font-size: 580%;
  line-height: 1;
  letter-spacing: 0.08em;
  filter: drop-shadow(0 0 3px rgb(154, 141, 126, 0.3)) drop-shadow(0 0 5px rgb(154, 141, 126, 0.3));
}

.feature_item:first-of-type .feature_num{
  letter-spacing: 0.16em;
}

.feature_inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-flow: column;
  width: calc(100% + 50px);
  height: 100%;
  min-height: 400px;
  padding: 60px 30px 0 60px;
}

.feature_title {
  display: flex;
  flex-flow: column;
  margin-bottom: 35px;
}

.feature_title h3 {
  padding: 0 23px 15px 3px;
  font-family: var(--jp-font);
  font-weight: 400;
  font-size: 150%;
  line-height: 1.8;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 0;
}

.feature_title h3::before{
  content: '';
  position: absolute;
  width: 100%;
  border-bottom: 1px solid var(--main-color);
  bottom: 0;
  left: 0;
  z-index: -1;
}

.feature_title h3::after{
  content: '';
  position: absolute;
  background: url(../images/common/diamond.svg) no-repeat center / contain;
  width: calc(138px * 0.23);
  height: calc(150px * 0.23);
  bottom: 5px;
  right: 0;
  z-index: 1;
}

.feature_title h3 span{
  padding: 0 4px;
  font-size: 120%;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.feature_title h3 > span:first-of-type{
  padding-left: 0;
}

.feature_text p{
  line-height: 1.9;
}

.feature_button {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 10px;
  padding-top: 25px;
}
.feature_button .btn01 {
  text-align: center;
}
.feature_button .btn01 a{
  min-width: 250px;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .feature {
    padding-bottom: 0;
  }
  .feature .top_title{
    margin-bottom: 20px;
  }
  .feature_list {
    gap: 30px;
  }
  .feature_item {
    flex-flow: column;
    width: 100%;
    margin: 0;
  }
  .feature_img {
    width: 100%;
    margin: 0;
  }
  .feature_img::before{
    width: calc(100% - 40px);
    height: calc(100% - 80px);
  }
  .feature_img::after{
    width: calc(100% - 80px);
    height: calc(100% - 80px);
  }
  .feature_num{
    top: 20px;
    left: 0;
    font-size: 400%;
  }
  .feature_inner {
    width: 100%;
    min-height: auto;
    margin: 0;
    padding: 30px 0 0;
  }
  .feature_title {
    min-height: auto;
    margin-bottom: 15px;
  }
  .feature_title h3{
    padding: 0 25px 12px 3px;
    font-size: 110%;
    letter-spacing: 0.05em;
    line-height: 1.9;
  }
  .feature_title h3::after{
    width: calc(138px * 0.18);
    height: calc(150px * 0.18);
  }
  .feature_title h3 span{
    font-size: 115%;
    letter-spacing: 0.05em;
  }
}

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

  *医療コラム（パターン01）

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.column {
  background: var(--bg-color);
}

.column .column_list {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 50px 25px;
  padding: 30px;
  background: #ffffff;
}

.column .column_box {
  width: calc(25% - 18.75px);
}

.column .column_box dt a {
  display: block;
  padding: 15px 10px;
  background: var(--main-color);
  color: #ffffff;
  font-size: 110%;
  text-align: center;
}

.column .column_box dd {
  padding: 10px 10px;
  border-bottom: 1px dashed var(--line-color);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .column .column_list {
    gap: 40px;
  }

  .column .column_box {
    width: 100%;
  }
}
