@charset "UTF-8";

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

  *基本設定

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

section .inner {
  padding: 100px 0 120px;
  position: relative;
}

.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: 65px;
  line-height: 1.5;
  text-align: center;

  /* 左寄せ */
}

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

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

.top_title .eng {
	display: inline-block;
	margin-bottom: 5px;
	color: var(--main-color);
	font-size: 225%;
	font-family: var(--font-en);
	font-weight: 400;
	font-style: normal;
letter-spacing: 0.1em;
}

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

  .top_title h2 {
    font-size: 26px;
  }

  .top_title .eng {
    font-size: 190%;
  }
}

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

  *メインビジュアル

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ 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#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: "\f060";
}

.mvSlider .sliderBtn#mv_btnNext span::before {
  content: "\f061";
}

/* 各スライダーのボタンは非表示に */
.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: 38%;
	left: 0;
	z-index: 3;
	width: 100%;
	transform: translateY(-50%);
	text-align:center;
}

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

.mvCatch p {
	font-size: 220%;
	font-family: var(--font-jp);
	font-weight: 500;
	font-style: normal;
	text-shadow: 0 0 5px #fff,0 0 5px #fff,0 0 10px #fff,0 0 10px #fff,0 0 15px #fff,0 0 15px #fff;
}

/* ----- コンテンツ ----- */
.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%;
}

/* バナー横並び */
.mv_bnr{
	display:flex;
	align-items:flex-end;
	position: absolute;
    bottom: 50px;
	gap :15px;
	z-index: 0;
}

/* ----- 開院バナー ----- */
.open_bnr {
/*   position: absolute;
  bottom: 120px;
  right: 0; */
  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 25px;
	background:/*rgb(40 62 127 / 90%)*/rgb(118 159 205 / 90%);
	border-radius: 50%;
	color: #ffffff;
	font-size: 110%;
	line-height: 1.5;
	text-align: center;
	font-family: var(--font-jp);
	font-weight: 500;
	font-style: normal;
}

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

.open_bnr .open_text {
  font-size: 170%;
}

.open_bnr .open_date{
	font-size: 145%;
	margin: 0 0 6px;

}



.open_bnr .nairankai_tit {
    display: block;
    width: 100%;
    margin: 6px 0 10px;
    padding: 5px 10px;
    font-size: 90%;
    text-align: center;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
	
}

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

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

/* 丸バナー */
.mv_bnr_circle{
display: flex;
justify-content: center;
align-items: center;
gap: 15px;
}
.mv_bnr_circle li,
.mv_bnr_circle a{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.mv_bnr_circle li{
width: 220px;
height: 220px;
aspect-ratio: 1 / 1;
padding: 20px 25px;
background: /*rgb(97 129 167 / 90%)*/rgb(185 215 234 / 90%);
border-radius: 50%;
font-size: 108%;
font-family: var(--font-jp);
font-weight: 400;
font-style: normal;
text-align: center;
line-height: 1.75;
position: relative;
transition: all 0.2s;
}
.mv_bnr_circle li:nth-of-type(even){
	background:/*rgb(133 148 166 / 95%)*/rgb(214 230 242 / 95%);
}
.mv_bnr_circle li:before{
content: "";
border: 1px solid #fff;
width: calc(100% - 20px);
height: calc(100% - 20px);
border-radius: 50%;
position: absolute;
top:10px;
left:10px;
}
.mv_bnr_circle a{
width: 100%;
height: 100%;
position:relative;
z-index:10;
}
.mv_bnr_circle .top_mv_bnr_tit{
font-size: 125%;
color:/*#fff*/var(--text-color);
}

.mv_bnr_circle li:has(a):hover{
/* background: rgb(39 56 69 / 80%); */
background:rgb(118 159 205 / 80%);
color: #fff;
}

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

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

  /* ----- スライダーの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 {
    display: none;
	text-align: left;
	top: 28%;
  }

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

  .mvCatch p {
    font-size: 130%;
    line-height: 1.75;
  }

  /* ----- コンテンツ ----- */
  .mvContents .mv_bnr_circle,
.sp_only_contents .open_bnr{
    display: none;
  }

  /* ----- 開院バナー ----- */
  .open_bnr {
	position: absolute;
	bottom: 10px;
	right: 2%;
  }

  .open_bnr > * {
	padding: 15px 20px;
	width: 200px;
	height: 200px;
   font-size: 78%;
  }
	
  /* ----- 丸バナー ----- */
	.mv_bnr{
	position: static;
	}

	.mv_bnr_circle li{
		width: calc((100% - 15px) / 2);
		height: 100%;
		min-width: 160px;
		font-size: 80%;
	}

  /* ----- スマホ専用エリア ----- */
  .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-color);
}


/* ----- お知らせ ----- */
.clinic .news {
  position: relative;
  z-index: 1;
}

.clinic .news .inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction:column;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 90px 0 100px;
}

.clinic .news .news_left {
  flex-shrink: 0;
}

.clinic .news .top_title {
  margin: 0 0 30px;
}

.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 {
	padding: 25px 30px 15px;
	background: #ffffff;
	border-radius: 5px;
}

.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: /*var(--main-color)*/#b9d7ea;
  border-radius: 50%;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #ffffff;
  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: 5px 0 7px 50px;
	font-size: 32px;
	line-height: 1;
	font-family: var(--font-en);
	font-weight: 400;
	font-style: normal;
	letter-spacing: 0.2rem;
}
.clinic .info address .tel a{
	color:#7aaecc;
}
.clinic .info address .tel::before {
  content: "\f3cd";
}

.clinic .info address .fax {
  margin-top: 15px;
  padding: 5px 0 5px 50px;
  font-size: 30px;
  line-height: 1;
}

.clinic .info address .fax::before {
  content: "\f249";
}

.clinic .info .note {
  margin-top: 15px;
  padding-left: 12px;
  font-size: 98%;
}

.clinic .info .speciality {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 20px auto 0;
}

.clinic .info .speciality .title {
  flex-shrink: 0;
  width: fit-content;
  padding: 6px 30px;
  background: var(--sub-color);
  color: #ffffff;
  text-align: center;
}

.clinic .info .googlemap iframe {
  height: 350px;
}

.clinic .info .list_access {
  margin-top: 15px;
}

.clinic .info .calendar_text {
  margin-top: 20px;
}

.clinic .info .btn01 {
  margin-top: 30px;
  text-align: center;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {

  /* ----- お知らせ ----- */
  .clinic .news .inner {
    flex-flow: column;
    gap: 0;
    padding: 60px 20px;
  }

  /* ----- 医院概要 ----- */
  .clinic .info .inner {
    flex-flow: column;
    padding: 0 20px 70px;
  }

  .clinic .info .inner>* {
    width: 100%;
  }

  .clinic .info .speciality {
    flex-flow: column;
    gap: 10px;
    padding: 10px;
  }

  .clinic .info .speciality .title {
    width: 100%;
  }
	
	.clinic .info address .tel {
		font-size: 30px;
	}
	.clinic .info .office_hour .table_wrapper{
    padding: 15px 10px 5px;
	}
}

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

  *ご挨拶（パターン01）

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

.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: 60%;
}

.greeting_text h3{
	font-size: 150%;
	font-family: var(--font-jp);
	font-weight: 400;
	font-style: normal;
	letter-spacing: 0.2rem;
	margin-bottom: 1.0em;
}
.greeting_text{
	font-size: 112%;
}
/* .greeting_text>*:not(:last-child) {
  margin-bottom: 2em;
}
 */
.greeting_img{
	width: 420px;
	height: 420px;
	overflow:hidden;
}
.greeting_img img{
	width: 100%;
	height: 100%;
	object-fit:cover;
	object-position:center;
	border-radius: 5px;
}

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

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

.greeting_profile .name {
  font-size: 150%;
}
.greeting_profile .name span{
	font-size: 80%;
	margin-right: 15px;
}
.greeting_btn {
  margin-top: 50px;
  text-align: left;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .greeting_flex {
    flex-flow: column-reverse;
    gap: 25px;
  }

  .greeting_left {
    width: 100%;
  }
	
	.greeting_text h3{
		font-size: 115%;
	}
	.greeting_text{
		font-size: 100%;
	}	
	.greeting_img{
	width: 300px;
	height: 300px;
	margin: 0 auto;
	}

  .greeting_btn {
    margin-top: 40px;
	text-align:center;
  }
	.greeting_profile{
		padding: 20px 0;
	}
	.greeting_profile .position{
		font-size: 110%;
	}
	.greeting_profile .name{
		font-size: 140%;
	}
}

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

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

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


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

.medical_list {
	display: flex;
	flex-wrap: wrap;
	gap: 45px 50px;
	justify-content: center;
}

.medical_item {
  position: relative;
  z-index: 1;
  width: calc(25% - 45px);
  height: auto;
}

.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%;
	padding: 30px 20px 40px;
	background: rgba(255, 255, 255, 0.9);
	text-align: center;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	transition: background 0.2s ease-out,transform 0.2s ease-out;
}
.medical_item:hover .medical_inner{
	background: #edf4f7;
	transform: scale(1.05);
}
.medical_inner > *:not(:last-child) {
  margin-bottom: 15px;
}

.medical_icon {
  width: 70%;
  max-width: 120px;
  margin: 0 auto!important;
}

.medical_title h3 {
	color: var(--sub-color);
	font-size: 135%;
	font-family: var(--font-jp);
	font-weight: 400;
	font-style: normal;
}

.medical_title_eng {
  margin-top: 5px;
  color: var(--main-color);
  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 {
  }

  .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: 50%;
  }

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

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

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

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

.feature:before{
	display:block;
	content:"";
	width: 100vw;
	height: 100%;
	background: var(--bg-blue);
	position: absolute;
	top: 0;
	left: 32%;
}

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

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

.feature_item {
  display: flex;
  width: 100%;
  height: auto;
  margin-top: 50px;
}

.feature_img {
  flex-shrink: 0;
  width: 550px;
  margin-top: -50px;
  z-index: 1;
}
.feature_img img{
	border-radius: 5px;
}
.feature_inner {
	position: relative;
	z-index: 0;
	display: flex;
	flex-flow: column;
	width: calc(100% + 50px);
	height: 100%;
	min-height: 380px;
	margin: 0 0 0 -40px;
	padding: 50px 65px 50px 80px;
	background: #ffffff;
	border-radius: 5px;
}
.feature_title {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 20px;
	border-bottom: 1px solid var(--line-color);
	padding-bottom: 12px;
}
.feature_title h3 {
	color: var(--text-color);
	font-size: 165%;
	line-height: 1.65;
	font-family: var(--font-jp);
	font-weight: 400;
	font-style: normal;
letter-spacing: 0.2rem;
}

.feature_num {
  font-size: 150%;
}

.feature_num span {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--main-color);
	font-size: 130%;
	font-family: var(--font-en);
	font-weight: 600;
	font-style: normal;
	line-height: 1;
	letter-spacing: 0.02em;
	width: 70px;
	aspect-ratio: 1 / 1;
    background: var(--bg-lightblue);
    border-radius: 100%;
}
.feature_item:nth-of-type(even) .feature_num span {
    background: var(--bg-blue);
}

.feature_text{
	font-size: 112%;
}

.feature_button {
  display: flex;
  flex-flow: wrap;
  justify-content: flex-end;
  gap: 10px;
  margin-top: auto;
  padding-top: 25px;
}

.feature_button .btn01 {
  text-align: center;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .feature {
    padding-bottom: 0;
  }
	.feature:before{
		left: 26%;
	}
	
	.feature .top_title{
		margin-bottom: 40px;
	}
  .feature_list {
    gap: 40px;
  }

  .feature_item {
    flex-flow: column;
    width: 100%;
    margin: 0;
  }
  .feature_img {
    width: 100%;
    margin: 0;
  }
	.feature_img img{
		border-radius: 3px 3px 0 0;
	}

  .feature_inner {
    width: 100%;
    min-height: auto;
    margin: 0;
    padding: 30px 20px;
	border-radius: 0 0 3px 3px;
  }
	.feature_num{
		font-size: 135%;
	}
	.feature_num span{
		width: 55px;
	}
  .feature_title {
    min-height: auto;
    margin-bottom: 15px;
	gap: 10px;
  }
	.feature_title h3{
	font-size: 122%;
	letter-spacing: 0.1rem;
	}
	.feature_text {
		font-size: 100%;
	}
	.feature_button{
		justify-content:center!important;
	}
	.feature_button .btn01,
	.feature_button .btn01 > *{
		width: 100%;
	}
}

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

  *医療コラム（パターン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%;
  }
}

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

  *無限スライダー

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
#infinitySlider {
  padding: 10px 0;
}

#infinitySlider .splide__list {
  gap: 10px;
}

#infinitySlider .splide__slide {
  width: 400px !important;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  #infinitySlider .splide__slide {
    width: 300px !important;
  }
}
