@charset "UTF-8";
/* ---------------------
  - *共通設定
  - *メインビジュアル
  - *スマホのみのエリア
  - *お知らせ
  - *ご挨拶
  - *当院の特徴
  - *診療案内
  - *医療コラム
  - *ループスライダー
--------------------- */
/*==================================================================================================================================

  *共通設定

==================================================================================================================================*/
/*----------inner----------*/
.home_inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 640px) {
  .home_inner {
    padding-left: 5%;
    padding-right: 5%;
  }
}


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

  *メインビジュアル

==================================================================================================================================*/
.home_mv {
  position: relative;
  height: 1000px;
  overflow: hidden;
  background: #f2f8fb;
}

.mv-hero-bg :is(source,img){
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.neuron {
  position: absolute;
  pointer-events: none;
}

.neuron-pulse {
  width: 100%;
  height: 100%;
}

.neuron-img {
  width: 100%;
  height: 100%;
  display: block;
}

.neuron--1 {
  left: -400px;
  bottom: -190px;
  width: 1000px;
  height: 1000px;
  opacity: .5;
  animation: drift 14s ease-in-out infinite;
}

.neuron--1 .neuron-pulse {
  animation: pulse 26s ease-in-out infinite;
}

.neuron--1 .neuron-img {
  animation: spin 110s linear infinite;
}

.neuron--2 {
  right: -160px;
  top: -220px;
  width: 640px;
  height: 640px;
  opacity: .26;
  z-index: 4;
}

.neuron--2 .neuron-pulse {
  animation: pulseRev 19s ease-in-out infinite;
}

.neuron--2 .neuron-img {
  animation: spinRev 76s linear infinite;
}

/* slide carousel */
.mv-slides-wrap {
  position: absolute;
  left: 50%;
  top: 0;
  width: 1920px;
  height: 100%;
  transform: translateX(-50%);
  z-index: 6;
}

.mv-slide {
  position: absolute;
  left: 0;
  top: 0;
  width: 1280px;
  height: auto;
  display: block;
  transition: transform 1.15s cubic-bezier(.62, .02, .24, 1), filter .9s ease, opacity .9s ease;
  will-change: transform;
}

/* "S / Making Healthcare / marter" oversized wordmark */
.mv-title {
  position: absolute;
  left: 64px;
  bottom: 60px;
  width: 488px;
  height: 191px;
  z-index: 50;
  color: #fff;
  pointer-events: none;
  text-shadow: 0 8px 30px rgba(9, 32, 60, .5), 0 2px 8px rgba(9, 32, 60, .42);
  animation: mvUp 1s ease .1s both;
  font-family: "Forum", serif;
  font-weight: 400;
  line-height: 1;
}

.mv-title-s {
  position: absolute;
  left: 110px;
  bottom: -35px;
  font-size: 298px;
  text-shadow: 0 8px 30px rgba(9, 32, 60, .3), 0 2px 8px rgba(9, 32, 60, .22);
}

.mv-title-word {
  position: absolute;
  left: 238px;
  font-size: 65px;
  letter-spacing: .015em;
}

.mv-title-word--making {
  top: -39px;
}

.mv-title-word--healthcare {
  top: 24px;
}

.mv-title-marter {
  position: absolute;
  left: 229px;
  bottom: 4px;
  font-size: 120px;
  letter-spacing: .005em;
}

/* headline block */
.mv-headline-wrap {
  position: absolute;
  left: 880px;
  top: 96px;
  width: 1000px;
  z-index: 20;
}

.mv-headline-inner {
  position: relative;
  width: 1000px;
  height: 400px;
  animation: mvUp .9s ease .15s both;
}

.mv-catchline {
  position: absolute;
  left: 145px;
  top: 42px;
  width: 518px;
  height: 216px;
  display: block;
}

.mv-headline {
  position: absolute;
  left: 280px;
  top: 132px;
  margin: 0;
  font-size: 122px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  line-height: 1.0665;
  letter-spacing: 0;
  color: #fff;
  text-shadow: 0 10px 26px rgba(22, 44, 74, .34), 0 3px 8px rgba(22, 44, 74, .26);
  white-space: nowrap;
}

.mv-headline-small {
  font-size: 60%;
}

/* =========================================
   PC用のテキストレイヤーベース設定
========================================= */
.mv-text-layer {
  position: absolute;
  left: 50%;
  top: 0;
  width: 1920px;
  height: 100%;
  transform: translateX(-50%);
  z-index: 20;
  /* pointer-events: none; */
}

/* =========================================
   スマホ用の調整
========================================= */
@media screen and (max-width: 640px) {
  .home_mv {
    height: 100vh;
    max-height: 650px;
  }
  .mv-slides-wrap {
    width: 1920px;
    height: 1000px;
  }
  
  .mv-text-layer {
    width: 100%;
    left: 0;
    transform: none;
  }

  /* キャッチコピー */
  .mv-headline-wrap {
    width: auto;
    left: 20px;
    bottom: 160px;
    top: auto;
  }
  .mv-headline-inner {
    width: auto;
    height: auto;
  }
  .mv-headline {
    position: relative;
    left: 0;
    top: 0;
    text-align: left;
    font-size: clamp(36px, 8vw, 60px);
  }

  /* 英語タイトル */
  .mv-title {
    left: -30px;
    bottom: 20px;
    
    /* 縮小率の変数 */
    --r: 0.45;
    
    width: calc(488px * var(--r));
    height: calc(191px * var(--r));
  }
  
  .mv-title-s {
    font-size: calc(298px * var(--r));
    left: calc(110px * var(--r));
    bottom: calc(-35px * var(--r));
  }
  .mv-title-word {
    font-size: calc(65px * var(--r));
    left: calc(238px * var(--r));
  }
  .mv-title-word--making {
    top: calc(-39px * var(--r));
  }
  .mv-title-word--healthcare {
    top: calc(24px * var(--r));
  }
  .mv-title-marter {
    font-size: calc(120px * var(--r));
    left: calc(229px * var(--r));
    bottom: calc(4px * var(--r));
  }
}


/* ==========================================================================
  Keyframes
========================================================================== */
@keyframes mvUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mvFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes spinRev {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

@keyframes drift {

  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -16px, 0);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(.82);
  }

  50% {
    transform: scale(1.24);
  }
}

@keyframes pulseRev {

  0%,
  100% {
    transform: scale(1.22);
  }

  50% {
    transform: scale(.78);
  }
}

@keyframes railUp {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-50%);
  }
}

@keyframes railDown {
  from {
    transform: translateY(-50%);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes centerSway {

  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -18px;
  }
}
/*==================================================================================================================================

  *スマホのみのエリア

==================================================================================================================================*/
@media screen and (max-width: 640px) {
  .top_sp_only {
    padding: 20px 5% 0;
  }

  .top_sp_only .mv_banner,
  .top_sp_only .mv_ribon {
    text-align: center;
  }
}

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

  *お知らせ

==================================================================================================================================*/
.bg_wrap01{
  background: url(../images/bg_feature.jpg) no-repeat center top 90px / cover;
}
.main_feature_bg{
  margin-top: -30px;
	position: relative;
  overflow: hidden;
  padding-bottom: 37px;
}

@media screen and (max-width: 640px) {
  .main_feature_bg{
  }
}






.top_news {
  margin-top: -90px;
    position: relative;
    overflow: hidden;
    z-index: 999;
    padding: 90px 0 110px;
  }
.top_news::after{
  border-radius: 0 150px 150px 0;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.14);
  position: absolute;
  content: "";
  z-index: -1;
  background: #fff;
  width: calc(((100% - 1200px) / 2) + 1374px);
  height: calc(100% - 60px);
  top: 30px;
  left: 0;
}


.news_contents{
	position: relative;
	display: flex;
	justify-content: space-between;
}
.news_left{
	position: relative;
	width: 13%;
}
.tit_h2_news{
	position: relative;
}
.tit_h2_news p {
    font-size: 32px;
    letter-spacing: 0.1em;
    color: #333333;
    line-height: 1.0;
    font-family: satoshi;
}
.tit_h2_news h2 {
    position: relative;
    font-size: 15px;
    letter-spacing: 0.1em;
    color: #333333;
    padding: 7px 0 0 16px;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}
.tit_h2_news h2::before {
    position: absolute;
    content: "";
    background: #005bf4;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    left: 0;
    top: 16px;
}
.news_center{
	position: relative;
	width: 70%;
}
.news_center ul li {
    padding: 18px 0 0px;
}
.news_center ul li .news_date {
    font-size: 16px;
    letter-spacing: 0.1em;
    color: #333;
    padding-right: 17px;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5;
}
.news_center ul li i {
    font-style: normal;
    font-size: 13px;
    letter-spacing: 0.1em;
    color: #fff;
    line-height: 1.5;
    padding: 4px 13px;
    background: linear-gradient(to right, #397dcc, #5758c7);
    border-radius: 10px;
    margin-right: 19px;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
.news_center ul li a {
    font-size: 15px;
    letter-spacing: 0.1em;
    color: #333;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
.news_right{
	position: relative;
	width: 16%;
	padding-top: 50px;
}
.news_right .btn01 a{
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
  .top_news::after{
    width: 99%;
  }
}

@media screen and (max-width: 640px) {
  .top_news{
    margin-top: auto;
    padding: 70px 0 90px;
  }
.top_news::after{
  width: 98%;
  border-radius: 0 50px 50px 0;
}
.news_contents {
    display: block;
}
.news_left {
    width: 100%;
}
.tit_h2_news {
    text-align: center;
}
.tit_h2_news p {
    font-size: 22px;
    letter-spacing: 0;
}
.tit_h2_news h2 {
    font-size: 14px;
    letter-spacing: 0;
    padding: 0;
}
.tit_h2_news h2::before{
	display: none;
}
.news_center {
    width: 100%;
}
.news_center ul li .news_date {
    font-size: 14px;
    letter-spacing: 0;
    padding-right: 10px;
}
.news_center ul li i {
    font-size: 13px;
    letter-spacing: 0;
    margin-right: 10px;
}
.news_center ul li a {
    font-size: 14px;
    letter-spacing: 0;
    display: block;
}
.news_right {
    width: 100%;
    padding-top: 20px;
    text-align: center;
}
}




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

  *ご挨拶

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

.top_feature {
  position: relative;
  padding: 130px 0 0px;
  overflow: hidden;
}
.feature_contents{
  position: relative;
  z-index: 3;
}
.feature_contents h2 {
	margin-bottom: 50px;
    font-size: 120px;
    letter-spacing: -0.04em;
    line-height: 1.083;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
  }
.feature_contents h2 span{
    font-feature-settings: "palt" 1;
    font-size: 60%;
}
.feature_text{
	position: relative;
	max-width: 767px;
	/* max-width: 661px;*/
}
.feature_text p {
    font-size: 20px;
    letter-spacing: 0.1em;
    margin-bottom: 33px;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
.top_feature .btn01{
	text-align: center;
	margin-top: 40px;
}
.top_feature .btn01 a {
    padding: 15px 60px 15px 31px;
    min-width: 360px;
    border-radius: 40px;
    text-align: left;
    font-size: 16px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}


.top_count {
  position: relative;
  /* overflow: hidden;*/
  isolation: isolate;
  margin: 40px 0 0;
}

.top_count::after {
    position: absolute;
    content: "";
    background: #fff;
    width: calc(((100% - 1200px) / 2) + 1200px);
    height: 280px;
    right: 0;
    border-radius: 150px 0 0 150px;
    top: 0;
    box-shadow: 0 0 30px rgba(0,0,0,0.14);
}
.top_count_bg_text {
/*     font-size: clamp(40px, 5vw, 90px);*/
	font-size: clamp(65px, 5vw, 90px);
    background: linear-gradient(to right, #b2a1d8, #6082bf);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    opacity: 0.34;
    text-align: right;
    line-height: 1.0;
    height: 100px;
    font-family: 'satoshi';
    font-weight: 400;
}


.count_contents {
    position: relative;
    padding: 49px 100px 51px;
    /* top: -6px;*/
}

.top_count .top_count_bg_text,
.top_count .home_inner {
  position: relative;
  z-index: 1;
}

.top_count_wave {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
  min-height: 861px;
}

.top_count_wave_svg {
  position: relative;
  width: 2000px;
  min-width: 110vw;
  max-width: none;
  flex-shrink: 0;
  height: auto;
}

   .top_count_wave_svg .organic-fast-line {
    --len: 2054;
    stroke-dasharray: var(--len) calc(var(--len) * 2px);
    stroke-dashoffset: var(--len);
   }

   .top_count_wave.is-active .organic-fast-line {
    animation: organic-loop-sequence 8s linear infinite;
  }
  
  @keyframes organic-loop-sequence {
    0% {
      stroke-dashoffset: var(--len);
      stroke-width: 105px;
      animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
    }

    55% {
      stroke-dashoffset: 0;
      animation-timing-function: cubic-bezier(0.7, 0, 0.2, 1);
    }
    
    80% {
      stroke-dashoffset: calc(var(--len) * -1px);
    }

    100% {
      stroke-dashoffset: calc(var(--len) * -1px);
    }
  }

.count_flex {
    position: relative;
    display: flex;
    justify-content: left;
/*     width: 800px;*/
	width: 840px;
    margin: 0;
}
.count_flex_box {
    position: relative;
    padding: 15px 50px;
    text-align: center;
    border-left: 2px solid #e5e5e5;
}
.tit_sub_count {
    font-size: 20px;
    letter-spacing: 0.1em;
    padding-bottom: 16px;
    color: #333;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.count_number {
  font-family: "din-2014", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.count_number span.num {
  font-size: 94px;
  letter-spacing: 0;
  line-height: 1.0;
  background: linear-gradient(to right, #2f78c8, #b3a1d8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.count_number span:not(.num) {
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: #333;
  -webkit-text-fill-color: initial;
}

.animation_container {
  position: absolute;
  top: 60%;
  right: -350px;
  transform: translatey(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 600px;
}

.circle {
  position: absolute;
  width: 600px;
  height: auto;
  aspect-ratio: 1 / 1;
  top: 50%;
  left: 50%;
}

.main-circle {
  z-index: 1;
  transform: translate(-50%, -50%);
}

.b-left-far {
  z-index: 2;
  transform: translate(calc(-50% - 600px), -50%);
  opacity: .5;
}

.b-left-near {
  z-index: 3;
  transform: translate(calc(-50% - 230px), -50%);
  opacity: .75;
}

.b-right-near {
  z-index: 4;
  transform: translate(calc(-50% + 230px), -50%);
  opacity: .75;
}

@media screen and (max-width: 640px) {
.top_feature {
  padding: 80px 0 0px;
}
	
.animation_container {
  right: -100px;
  height: 300px;
}
	
.circle {
  width: 300px;
  opacity: .5;
}

.b-left-far {
  transform: translate(calc(-50% - 310px), -50%);
  opacity: .3;
}

.b-left-near {
  transform: translate(calc(-50% - 100px), -50%);
  opacity: .5;
}

.b-right-near {
  transform: translate(calc(-50% + 100px), -50%);
  opacity: .5;
}

.feature_contents h2 {
	margin-bottom: 30px;
    font-size: 45px;
    letter-spacing: 0;
    line-height: 1.5;
}
.feature_text {
    width: 100%;
}
.feature_text p {
    font-size: 14px;
    letter-spacing: 0;
    margin-bottom: 20px;
}
.top_feature .btn01 a {
    padding: 11px 60px 11px 25px;
    min-width: 280px;
    font-size: 14px;
}
.top_count {
    padding: 40px 0 45px;
}
.top_count_bg_text {
    font-size: clamp(20px, 3vw, 40px);
    opacity: 1.0;
    height: auto;
    width: 96%;
    text-align: center;
	line-height: 1.2;
}
.count_contents {
    padding: 20px 0;
    top: 0;
}
.count_flex {
    display: block;
    width: 100%;
    margin: 0 auto;
}
.count_flex_box {
    padding: 5px 0px;
    border: none;
}
.count_flex_box:last-of-type {
    border-right: none;
}
.tit_sub_count {
    font-size: 14px;
    letter-spacing: 0;
    padding-bottom: 16px;
}
.count_number {
    font-size: 40px;
    letter-spacing: 0;
    line-height: 1.0;
}
.count_number span {
    font-size: 14px;
    letter-spacing: 0;
    line-height: 1.5;
    padding-left: 10px;
}
.top_count::after{
	/* display: none;*/
  height: 100%;
  width: 95%;
  opacity: 0.9;
  border-radius: 50px 0 0 50px;
}
.top_count_wave_svg {
  width: 1000px;
  min-width: 110vw;
}
.top_count_wave{
	top: -50%;
	opacity: 0.3;
}
}




/* --- スライダー全体の大枠 --- */
.diagonal-slider {
  position: absolute;
  z-index: 1;
  bottom: 37px;
  right: 0;
  width: 100%;
  height: calc(100% - 37px);
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
}

/* --- 斜めにするコンテナ --- */
.skew {
  display: flex;
  width: 572px;
  height: 100%;
  transform: skewX(20deg);
}

/* --- 左右の列 --- */
.col {
  width: 287px;
  height: 100%;
  overflow: hidden;
}

/* --- 動くトラック部分 --- */
.track {
  display: flex;
  flex-direction: column;
}

/* --- 個別の画像アイテム --- */
.item-dia {
  width: 401px;
  height: 200px;
  position: relative;
  overflow: hidden;
}

/* --- 画像の歪み補正 --- */
.item-dia img {
  position: absolute;
  top: 0;
  width: 520px;
  height: 100%;
  left: -59.5px;
  object-fit: cover;
  transform: skewX(-20deg);
}
/* --- アニメーション設定 --- */
.col.left .track {
  animation: slideDown 50s linear infinite;
}
@keyframes slideDown {
  0%   { transform: translateY(-50%);}
  100% { transform: translateY(0);}
}

.col.right .track {
  animation: slideUp 50s linear infinite;
}
@keyframes slideUp {
  0%   { transform: translateY(0);}
  100% { transform: translateY(-50%);}
}

@media screen and (max-width: 640px) {
  .diagonal-slider {
    position: relative;
    bottom: auto;
    right: auto;
    width: 100%;
    height: auto;
    margin: 40px 0;
    overflow: hidden;
    display: block;
  }

  .skew {
    flex-direction: column;
    width: 100%;
    margin-left: 0;
    transform: none;
  }

  .col {
    width: 100%;
  }

  .track {
    flex-direction: row;
    width: max-content;
    gap: 0;
  }

  .item-dia {
    width: 273px;
    height: 150px;
    flex-shrink: 0;
    margin-right: -86.6px;
    clip-path: polygon(0% 0%, 68.3% 0%, 100% 100%, 31.7% 100%);
  }

  .item-dia img {
    position: static;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    transform: none;
  }

  .col.left .track {
    animation: dia-slideLeft 25s linear infinite;
  }

  .col.right .track {
    animation: dia-slideRight 25s linear infinite;
  }
  @keyframes dia-slideLeft {
    0%   { transform: translateX(0);}
    100% { transform: translateX(-50%);}
  }

  @keyframes dia-slideRight {
    0%   { transform: translateX(-50%);}
    100% { transform: translateX(0);}
  }
}




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

  *スマート

==================================================================================================================================*/
.top_smart {
    position: relative;
    padding: 125px 0 173px;
	background: url("../images/top_medicalsmart_bg.jpg") no-repeat top center / cover;
}
.smart_inner {
    position: relative;
    max-width: 1400px;
    min-width: 1200px;
    margin: 0 auto;
    padding: 150px 60px 120px;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 0 57px rgba(0,0,0,0.07);
	overflow: hidden;
}
.smart_inner::before {
    position: absolute;
    content: "";
    display: inline-block;
    background: url(../images/top_smart_bg.png) top left / cover no-repeat;
    width: 644px;
    height: auto;
    aspect-ratio: 161 / 157;
    top: -309px;
    left: -221px;
    animation: spin 20s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.tit_h2_smart {
    position: relative;
    text-align: center;
    display: table;
    margin: 0 auto;
    padding-bottom: 97px;
}
.tit_h2_smart p {
    font-size: 18px;
    letter-spacing: 0.1em;
    padding-bottom: 20px;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}
.tit_h2_smart h2 {
    font-size: 40px;
    letter-spacing: 0.1em;
    line-height: 1.5;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}
.top_medicalsmart {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-left: 30px;
    padding-bottom: 123px;
}


.content-panel {
    position: relative;
    width: 41%;
    background: url("../images/medicalsmart_left_bg.jpg") center/cover no-repeat;
    border-radius: 20px;
    padding: 68px 56px 52px;
    overflow: visible;
}

.panel-display {
  color: #ffffff;
}

.panel-content {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.panel-tag {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 45px;
  min-width: 200px;
  border-radius: 999px;
  background: #0b4d49;
  font-size: 20px;
  letter-spacing: 0.1em;
  color: #ffffff;
  line-height: 1.0;
  box-shadow: 0 18px 26px rgba(40, 70, 160, 0.25);
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.panel-inner {
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.panel-title {
  margin: 0;
  font-size: 28px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.panel-description {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.9;
  font-size: 14px;
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.panel-description p {
  margin: 0;
  font-size: 14px;
  line-height: 2.0;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.panel-list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--text-secondary);
  display: flex;
  flex-wrap: wrap;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}


.panel-list li {
  font-size: 15px;
  border-bottom: 1px solid #fff;
  display: table;
  margin-right: 15px;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}

.panel-cta {
  display: grid;
  gap: 0.75rem;
}

.panel-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  background: #e7eaee;
  color: #333;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.05em;
  transition: box-shadow var(--transition-duration) ease,
    transform var(--transition-duration) ease;
}

.panel-cta a:hover,
.panel-cta a:focus-visible {
  box-shadow: 0 12px 24px rgba(35, 54, 110, 0.22);
  transform: translateY(-2px);
}

.panel-cta-label {
  flex: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.panel-cta-label i{
  font-style: normal;
  font-size: 10px;
}

.panel-cta-icon {
  display: block;
  max-width: none;
  height: auto;
}

.circle-panel {
    flex: 1;
    display: flex;
    justify-content: center;
    padding-left: 49px;
    height: 100%;
}

.circle-wrapper {
    position: relative;
    width: 638px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -76px;
}

.circle-background {
  width: 100%;
  height: auto;
  display: block;
}

.circle-nav {
  position: absolute;
  inset: 0;
  display: contents;
}

.circle-item {
  position: absolute;
  width: var(--circle-item-size);
  height: var(--circle-item-size);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #118c88;
  color: #ffffff;
  font-weight: 600;
  font-size: clamp(0.7rem, 1.1vw, 0.85rem);
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.1;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: all .3s;
  padding: 0 0.85rem;
}

.circle-item:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.65);
  outline-offset: 4px;
}

.circle-item.active {
  position: absolute;
  z-index: 10;
  transform: scale(1.125);
  will-change: transform, opacity;
  background: #ffffff;
  color: #015850;
  box-shadow: 0 16px 34px rgba(64, 67, 149, 0.25);
  border: 3px solid #118C88;
}

.circle-item.active::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 8px 1px #fff;
  animation: orbit-dot 10s linear infinite;
  opacity: 1;
  pointer-events: none;
}

@keyframes orbit-dot {
  from { transform: translate(-50%, -50%) rotate(0deg) translateY(-48px);}
  to   { transform: translate(-50%, -50%) rotate(360deg) translateY(-48px);}
}


.circle-item::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  
  /* 初期状態は透明にしておく */
  background: conic-gradient(
    #fff var(--p, 0%), 
    transparent var(--p, 0%)
  );

  /* 中央をくり抜いて2pxの線にする */
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #fff calc(100% - 3.5px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #fff calc(100% - 3.5px));
  
  /* 初期状態ではアニメーションを停止 */
  animation: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

/* .activeクラスがついた時だけアニメーションを実行 */
.circle-item.active::after {
  opacity: 1;
  /* 10秒かけて1周、最後まで行ったら止まる(forwards)かループ(infinite)か選べます */
  animation: orbit-gauge 10s linear forwards;
}

/* カスタム変数の定義 */
@property --p {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 0%;
}

@keyframes orbit-gauge {
  from { --p: 0%;}
  to   { --p: 100%;}
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRightCenter {
  0% {
    opacity: 0;
    transform: translateX(calc(-50% - 20px));
  }
  100% {
    opacity: 1;
    transform: translateX(-50%);
  }
}

@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.panel-tag {
  opacity: 0;
  animation: slideInRightCenter 0.6s ease-out forwards;
}

.panel-title,
.panel-description,
.panel-list li {
  opacity: 0;
  animation: slideInRight 0.6s ease-out forwards;
}

.panel-cta {
  opacity: 0;
  animation: slideInUp 0.8s ease-out forwards;
}

.panel-tag         { animation-delay: 0.1s;}
.panel-title       { animation-delay: 0.2s;}
.panel-description { animation-delay: 0.3s;}
.panel-list        { animation-delay: 0.4s;}
.panel-cta         { animation-delay: 0.6s;}

.panel-list li:nth-child(1) { animation-delay: 0.4s;}
.panel-list li:nth-child(2) { animation-delay: 0.5s;}
.panel-list li:nth-child(3) { animation-delay: 0.6s;}
.panel-list li:nth-child(4) { animation-delay: 0.8s;}
.panel-list li:nth-child(5) { animation-delay: 1s;}

.circle-item--shukan,
.circle-item--keiei,
.circle-item--sairai {
  background: #015850;
}

.circle-item--yoyaku,
.circle-item--monshin,
.circle-item--shinsatsu,
.circle-item--kaikei {
  background: #118c88;
}

.circle-item--denwa-bot {
  background: linear-gradient(to bottom right, #015850, #118c88);
}


.circle-wrapper {
  order: 1;
}
:root {
  --circle-size: 360px;
  --circle-item-size: 100px;
}

.panel-cta a {
  padding: 0.75rem 1rem;
}
.top_smart .btn01{
	text-align: center;
}
.top_smart .btn01 a {
    padding: 20px 70px 20px 30px;
    min-width: 360px;
    text-align: left;
    box-shadow: 0 0 14px rgba(0,0,0,0.14);
    border-radius: 40px;
}






@media (min-width: 641px) and (max-width: 1199px) {
  .content-panel {
    padding: 40px 20px 40px;
  }
}






@media (max-width: 640px) {
:root {
    --circle-item-size: 60px;
}
.smart_inner {
    max-width: 94%;
    min-width: 94%;
    padding: 30px 10px 30px;
    border-radius: 10px;
}
.smart_inner::before { 
  top: -214px;
  left: -172px;
  width: 400px;
  opacity: .75;
}
.tit_h2_smart h2 {
    font-size: 19px;
    letter-spacing: 0;
    line-height: 1.5;
}
.tit_h2_smart p {
    font-size: 14px;
    letter-spacing: 0;
    padding-bottom: 20px;
}
.circle-panel {
    padding-left: 0;
}
.circle-wrapper {
    max-width: 320px;
    min-width: 240px;
    width: 100%;
    margin-top: -36px;
}
.top_medicalsmart {
    flex-direction: column;
    align-items: center;
    gap: 40px 0;
    padding-left: 0;
    padding-bottom: 30px;
}
.content-panel {
    order: 2;
    width: min(600px, 100%);
    border-radius: 20px;
    padding: 20px 15px 20px;
    height: auto;
}
.panel-display {
    min-height: 400px;
    max-height: 400px;
    overflow: scroll;
}
.circle-item {
    font-size: clamp(10px, 3vw, 12.25px);
    letter-spacing: 0em;
    padding: 0 0.6rem;
}
@keyframes orbit-dot {
  from { transform: translate(-50%, -50%) rotate(0deg) translateY(-470%);}
  to   { transform: translate(-50%, -50%) rotate(360deg) translateY(-470%);}
}
.top_smart {
  padding: 65px 0 63px;
}
.panel-title {
    font-size: 18px;
    letter-spacing: 0em;
	padding: 15px 0;
}
.panel-inner {
    gap: 0;
}
.panel-description {
    line-height: 1.7;
    font-size: 14px;
    letter-spacing: 0em;
}
.panel-cta {
    padding-top: 20px;
}
.panel-tag {
    padding: 6px 25px;
    min-width: 180px;
    font-size: 16px;
    letter-spacing: 0em;
}
.top_smart .btn01 a {
    padding: 13px 70px 13px 30px;
    min-width: 280px;
}
.panel-cta a {
    padding: 11px 10px 11px 15px;
	font-size: 12px;
	letter-spacing: 0;
	line-height: 1.3;
	gap: 0 5px;
}
.panel-list li {
    font-size: 14px;
    letter-spacing: 0em;
}
.panel-list {
    padding-top: 20px;
}
}





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

  *事業内容

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

.top_business {
    padding: 135px 0 180px;
    background: #f1f4f9;
	overflow: hidden;
}

.top_business .business_inner {
    max-width: calc(100% - 68px);
    min-width: 1200px;
    margin: 0 auto;
}

.top_business .tit_h2 {
  text-align: center;
  margin-bottom: 64px;
}
.top_business .tit_h2 p {
    font-size: 14px;
    letter-spacing: 0.1em;
    color: #005af3;
    font-weight: 300;
    margin-bottom: 12px;
    font-family: 'satoshi';
}

.top_business .tit_h2 h2 {
    font-size: 32px;
    letter-spacing: 0.1em;
    color: #333333;
    line-height: 1.0;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.top_business .business_flex {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    padding-top: 15px;
}

.top_business .business_flex_box {
    background: #ffffff;
    border-radius: 32px;
    padding: 104px 63px 96px;
    box-shadow: 0 0px 10px rgba(4, 53, 123, 0.06);
    display: flex;
    flex-direction: column;
/*     height: 1287px;*/
    height: 1036px;
}

.top_business .tit_h3_business {
  margin-bottom: 32px;
}

.top_business .tit_h3_business p {
    font-size: 14px;
    letter-spacing: 0.1em;
    color: #005af3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'satoshi';
    font-weight: 300;
}

.top_business .tit_h3_business p::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #005af3;
}

.top_business .tit_h3_business h3 {
    font-size: 40px;
    letter-spacing: 0.1em;
    color: #333333;
    margin-top: 4px;
    line-height: 1.5;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.top_business .business_img {
    text-align: center;
    width: 96%;
    margin: 0 auto 3px;
}
.top_business .business_flex_box:last-of-type .business_img {
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
}
.top_business .business_img img {
  width: 100%;
}

.top_business .business_text {
    display: grid;
    gap: 33px;
    width: 96%;
    margin: 14px auto 86px;
}

.top_business .business_text p {
    font-size: 15px;
    letter-spacing: 0.08em;
    line-height: 1.9;
    color: #333333;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.top_business .btn01 {
    margin-top: auto;
    text-align: center;
}

.top_business .btn01 a {
    padding: 17px 90px 17px 25px;
    font-size: 15px;
    letter-spacing: 0.1em;
    min-width: 430px;
    text-align: left;
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.14);
    border-radius: 40px;
}

@media (max-width: 1180px) {
  .top_business {
    padding: 96px 0 120px;
  }

  .top_business .business_flex_box {
    padding: 40px 32px 48px;
  }

  .top_business .tit_h3_business h3 {
    font-size: 36px;
  }
}

@media (max-width: 960px) {
  .top_business .business_flex {
    grid-template-columns: 1fr;
  }

  .top_business .business_flex_box {
    padding: 36px 28px 44px;
  }

  .top_business .btn01 a {
    margin-left: 0;
    margin-right: 0;
    padding: 10px 50px 10px 20px;
    font-size: 12px;
    letter-spacing: 0;
    min-width: 250px;
    text-align: left;
}
}

@media (max-width: 640px) {
  .top_business {
    padding: 72px 0 88px;
  }
  .top_business .business_inner {
    max-width: 94%;
    min-width: 94%;
    margin: 0 auto;
}
  .top_business .business_flex_box {
    padding: 20px 20px 20px;
    height: auto;
}

  .top_business .tit_h2 {
    margin-bottom: 48px;
  }

  .top_business .tit_h2 h2 {
    font-size: 28px;
  }
  .top_business .tit_h3_business p {
    font-size: 14px;
    letter-spacing: 0;
}

  .top_business .tit_h3_business h3 {
    font-size: 19px;
}
  .top_business .business_text p {
    font-size: 14px;
    letter-spacing: 0;
    line-height: 1.6;
}

  .top_business .business_text {
    gap: 16px;
    margin: 14px auto 15px;
}

  .top_business .btn01 {
    margin-top: 32px;
  }
}


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

  *医療とAI

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


.top_ai {
  position: relative;
  padding: 203px 0 170px;
  background: url(../images/bg_top_ai_office01.png) no-repeat left top,
  url(../images/bg_top_ai_office02.png) no-repeat right bottom,
  url(../images/bg_top_ai.jpg) no-repeat center / cover;
  overflow: hidden;
}

.top_ai::before,
.top_ai::after,
.top_ai .home_inner::before,
.top_ai_flex_right::before,
.top_ai_flex_right::after {
  pointer-events: none;
}

/* .top_ai::before {
  content: "";
  position: absolute;
  top: -210px;
  left: -230px;
  width: 520px;
  height: 520px;
  background: url(../images/img_ai_medical_circle_left01.png) center/contain no-repeat;
  animation: revolutionClockwise 12s linear infinite;
  opacity: 0.85;
  z-index: 0;
}

.top_ai::after {
    content: "";
    position: absolute;
    top: -220px;
    left: -210px;
    width: 520px;
    height: 520px;
    background: url(../images/img_ai_medical_circle_left02.png) center/contain no-repeat;
    animation: revolutionCounterClockwise 10s linear infinite;
    opacity: 0.7;
    z-index: 0;
} */

.top_ai .home_inner {
  position: relative;
  z-index: 2;
}

/* .top_ai_circle_left {
    position: absolute;
    top: -225px;
    left: -230px;
    width: 520px;
    height: 520px;
    background: url(../images/img_ai_medical_circle_left03.png) center/contain no-repeat;
    opacity: 1;
    z-index: 0;
} */

.top_ai_flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(40px, 8vw, 120px);
}

.top_ai_flex_left {
    width: 68.5%;
}

.ai_text_01,
.ai_text_02 {
  font-size: 16px;
  letter-spacing: 0.1em;
  /* color: #ffffff;*/
  line-height: 2.2;
  text-shadow: #fff 1px 0px 0px, #fff 0.540302px 0.841471px 0px, #fff -0.416147px 0.909297px 0px, #fff -0.989992px 0.14112px 0px, #fff -0.653644px -0.756802px 0px, #fff 0.283662px -0.958924px 0px, #fff 0.96017px -0.279415px 0px;
}

.ai_text_01 {
    margin-bottom: 74px;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.ai_ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  list-style: none;
  margin: 0 0 44px;
  padding: 0;
}

.ai_ul li {
    font-size: 18px;
    letter-spacing: 0.1em;
    line-height: 1.5;
    color: #333333;
    padding: 8px 28px;
    border-radius: 999px;
    background: linear-gradient(90deg, #c5d5ed 0%, #fbf5eb 100%);
    box-shadow: 0 12px 25px rgba(5, 26, 70, 0.18);
    transition: transform 0.6s ease;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.ai_ul li:hover {
  transform: translateY(-4px);
}

.ai_text_02 {
    margin-top: 42px;
    line-height: 2.05;
	font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.top_ai_flex_right {
    position: relative;
    margin-top: -40px;
    width: 34%;
    height: 430px;
    margin-left: auto;
    background: url(../images/img_ai_medical_circle.png) center/contain no-repeat;
    z-index: 2;
}
.tit_sub_line_img {
    padding-top: 180px;
    text-align: center;
}
.top_ai_flex_right::before {
    content: "";
    position: absolute;
    top: 32px;
    left: -1px;
    width: 360px;
    height: 360px;
    background: url(../images/img_ai_medical_circle.png) center/contain no-repeat;
    animation: revolutionClockwise 6s linear infinite;
    opacity: 0.55;
    z-index: -1;
}

.top_ai_flex_right::after {
    content: "";
    position: absolute;
    top: 24px;
    left: 8px;
    width: 360px;
    height: 360px;
    background: url(../images/img_ai_medical_circle.png) center/contain no-repeat;
    animation: revolutionCounterClockwise 4s linear infinite;
    opacity: 0.4;
    z-index: -2;
}

/* 自転 */
@keyframes selfRotate {
    from { transform: rotate(0deg);}
    to { transform: rotate(360deg);}
}

@keyframes revolutionClockwise {
    from {
        transform: rotate(0deg) translateX(25px) rotate(0deg);
    }
    to {
        transform: rotate(360deg) translateX(25px) rotate(-360deg);
    }
}

/* 公転（反時計回り） */
@keyframes revolutionCounterClockwise {
    from {
        transform: rotate(0deg) translateX(15px) rotate(0deg);
    }
    to {
        transform: rotate(-360deg) translateX(15px) rotate(360deg);
    }
}

.linenap_contents {
    position: relative;
    margin-top: 141px;
    width: calc(100% + clamp(140px, 18.5vw, 500px));
    margin-left: calc(-1 * clamp(140px, 18.5vw, 500px));
    padding: 52px clamp(64px, 8vw, 100px) 63px clamp(200px, 18vw, 350px);
    background: rgba(255, 255, 255, 0.83);
    border-radius: 0 180px 180px 0;
    box-shadow: 0 40px 80px rgba(4, 17, 58, 0.18);
    overflow: hidden;
}

.linenap_contents::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(-1 * clamp(500px, 45vw, 1200px));
  width: clamp(500px, 45vw, 1200px);
  height: 100%;
  background: rgba(255, 255, 255, 0.83);
  z-index: -1;
}

.tit_sub_line {
    position: relative;
    font-size: 16px;
    letter-spacing: 0.1em;
    color: #333333;
    padding-bottom: 4px;
    margin-bottom: 30px;
    border-bottom: 1px solid #eaeff4;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}


.linenap_flex {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
	display: flex;
    justify-content: center;
}

.linenap_box {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 36px 28px 32px;
    text-align: center;
    box-shadow: 0 20px 45px rgba(5, 26, 70, 0.12);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.linenap_box:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(5, 26, 70, 0.18);
}

.img_linenap {
  margin: 0;
}

.img_linenap img {
  width: 100%;
  height: auto;
  display: block;
}

.tit_sub_linenap_box {
    margin-top: 24px;
    font-size: 14px;
    letter-spacing: 0.1em;
    color: #333333;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.top_ai .tit_sub_linenap_box img {
  display: inline-block;
  max-width: 120px;
  width: 100%;
  height: auto;
}

@keyframes floatAiLeftA {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(12px, -10px, 0) rotate(2deg);
  }
}

@keyframes floatAiLeftB {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-10px, 8px, 0);
  }
}

@keyframes floatAiLeftC {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(10px, 14px, 0);
  }
}

@keyframes floatAiRightA {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-10px, -8px, 0);
  }
}

@keyframes floatAiRightB {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(12px, 10px, 0);
  }
}

@keyframes floatAiRightC {
  0%, 100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.4;
  }
  50% {
    transform: translate3d(-12px, 14px, 0);
    opacity: 0.5;
  }
}

@media (max-width: 1180px) {
  .top_ai {
    padding: 160px 0 140px;
  }

  .top_ai_flex_right {
    width: 360px;
    height: 360px;
  }

  .top_ai_flex_right::before {
    top: -16px;
    left: -18px;
    width: 360px;
    height: 360px;
  }

  .top_ai_flex_right::after {
    top: 14px;
    left: 14px;
    width: 360px;
    height: 360px;
  }

  .linenap_contents {
    margin-top: 96px;
    width: calc(100% + clamp(120px, 12vw, 200px));
    margin-left: calc(-1 * clamp(120px, 12vw, 200px));
    padding: 44px clamp(52px, 7vw, 100px) 52px clamp(170px, 16vw, 220px);
  }
  .tit_sub_line_img {
    padding-top: 140px;
}
}

@media (max-width: 1024px) {
  .top_ai_flex {
    flex-direction: column;
    align-items: flex-start;
  }

  .top_ai_flex_right {
    margin-top: 10px;
    margin-left: 0;
    align-self: center;
    width: 320px;
    height: 320px;
  }

  .top_ai_flex_right::before {
    top: -14px;
    left: -16px;
    width: 320px;
    height: 320px;
  }

  .top_ai_flex_right::after {
    top: 12px;
    left: 12px;
    width: 320px;
    height: 320px;
  }

  .linenap_contents {
    margin-left: 0;
    width: 100%;
    border-radius: 24px;
    padding: 40px 48px;
  }

  .linenap_contents::before {
    display: none;
  }

  .linenap_flex {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .top_ai {
    padding: 120px 0 100px;
  }

  .ai_text_01,
  .ai_text_02 {
    line-height: 1.9;
  }

  .ai_ul {
    gap: 12px 16px;
  }

  .ai_ul li {
    font-size: 16px;
    padding: 12px 28px;
  }

/*   .top_ai_flex_right {
    width: 280px;
    height: 280px;
  } */

  .top_ai_flex_right::before {
    top: -12px;
    left: -12px;
/*     width: 280px;
    height: 280px;*/
  }

  .top_ai_flex_right::after {
    top: 10px;
    left: 10px;
/*     width: 280px;
    height: 280px;*/
  }

  .linenap_flex {
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .top_ai {
    padding: 46px 0 150px;
    background-size: 50% auto,50% auto,cover;
}
  .top_ai_flex_left {
    width: 100%;
}

  .top_ai::before,
  .top_ai::after,
  .top_ai .home_inner::before {
    display: none;
  }

  .ai_text_01, .ai_text_02 {
    font-size: 14px;
    letter-spacing: 0;
}
  .ai_text_01 {
    margin-bottom: 34px;
}

  .ai_ul li {
    width: 100%;
    justify-content: center;
  }

/*   .top_ai_flex_right {
    width: 240px;
    height: 240px;
  } */

  .top_ai_flex_right::before {
    top: -10px;
    left: -10px;
/*     width: 240px;
    height: 240px;*/
  }

  .top_ai_flex_right::after {
    top: 8px;
    left: 8px;
/*     width: 240px;
    height: 240px;*/
  }

  .linenap_contents {
    padding: 25px 20px;
    margin-top: 50px;
}

  .linenap_flex {
    grid-template-columns: 1fr;
  }

  .tit_sub_line {
    margin-bottom: 28px;
  }
  .tit_sub_line_img {
    padding: 140px 60px 0;
}
	
  .linenap_box {
    max-width: 300px;
    margin: 0 auto;
}
}





/* ============================================================
   Company / Recruit Block
============================================================ */

.top_company {
    position: relative;
    padding: 164px 0 132px;
    overflow: hidden;
}

.top_company .home_inner {
	position: relative;
	z-index: 2;
}

.company_flex {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 60px 61px;
    margin-bottom: 160px;
}

.company_flex_box {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    min-height: 320px;
    padding: 35px 40px;
    color: #fff;
    border-radius: 20px;
    background-color: #212121;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 24px 60px rgba(12, 26, 75, 0.24);
    transition: transform 0.4s, box-shadow 0.4s, opacity 1s ease-out 0.3s, transform 1s ease-out 0.3s, background-size 0.3s ease;
}

.company_flex_box:hover,
.company_flex_box:focus {
	box-shadow: 0 28px 72px rgba(12, 26, 75, 0.32);
    color: #fff;
	background-size: 105%;
}

.company_flex_box:hover::before,
.company_flex_box:focus::before {
	opacity: 0.7!important;
}

.company_flex_box:nth-child(1) {
	background-image: url("../images/img_company01.png");
}

.company_flex_box:nth-child(2) {
	background-image: url("../images/img_company02.png");
}

.company_flex_box:nth-child(3) {
    background-image: url("../images/img_company03.png");
    grid-column: 1 / -1;
    height: 395px;
}

.tit_sub_company {
	position: relative;
	font-family: "Noto Sans JP", sans-serif;
	z-index: 1;
}

.tit_sub_company p:first-child {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 0px;
    font-size: 14px;
    letter-spacing: 0.1em;
    font-family: 'satoshi';
    font-weight: 300;
}

.tit_sub_company p:first-child::before {
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: #fff;
}

.company_flex_box .tit_sub_company p:last-child {
    margin: 0;
    font-size: 30px;
    letter-spacing: 0.1em;
    line-height: 1.35;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.top_recruit {
    position: relative;
    z-index: 3;
    padding: 32px 0 70px;
}

.top_recruit .tit_h2_recruit {
	margin-bottom: 20px;
}

.top_recruit .tit_h2_recruit p {
    position: relative;
    margin: 0 0 12px;
    font-size: 14px;
    letter-spacing: 0.1em;
    color: #005af3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'satoshi';
    font-weight: 300;
}

.top_recruit .tit_h2_recruit p::before{
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #005af3;
}

.top_recruit .tit_h2_recruit h2 {
    margin: 0;
    font-size: 30px;
    letter-spacing: 0.1em;
    color: #111b3a;
    line-height: 1.0;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.top_recruit .recruit_text {
    margin: 0 0 clamp(32px, 3.4vw, 42px);
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: 0.1em;
    color: #3a455d;
    padding-top: 27px;
    width: 440px;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.top_recruit .btn01{
	padding-top: 10px;
}
.top_recruit .btn01 a {
    padding: 16px 70px 16px 25px;
    min-width: 320px;
	box-shadow: 0 0 14px rgba(0, 0, 0, 0.14);
	border-radius: 40px;
}

.top_recruit_right_bg {
    position: absolute;
    right: 0;
    top: 0;
    width: calc(50% + 80px);
    height: 460px;
    border-radius: 240px 0 0 240px;
    background-color: #f3f6fe;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}



@media screen and (max-width: 1100px) {
	.company_flex {
    grid-template-columns: 1fr;
    gap: 20px 0px;
    margin-bottom: 30px;
}

	.company_flex_box {
		min-height: clamp(220px, 40vw, 280px);
		background-size: cover;
	}

	.top_recruit {
    max-width: 100%;
}

	.top_recruit_right_bg {
    position: relative;
    right: 0;
    left: auto;
    margin-left: auto;
    width: 100%;
    max-width: 70%;
    height: 400px;
}
  .top_recruit .recruit_text {
    width: 100%;
}
}

@media screen and (max-width: 640px) {
	.top_company {
    padding: 35px 0 0px;
}
  .tit_sub_company p:first-child {
    font-size: 14px;
    letter-spacing: 0;
}
  .company_flex_box .tit_sub_company p:last-child {
    font-size: 16px;
    letter-spacing: 0;
}
.company_flex_box:nth-child(3) {
	height: auto;
	min-height: clamp(220px, 40vw, 280px);
}
  .top_recruit .tit_h2_recruit h2 {
    margin: 0;
    font-size: 19px;
    letter-spacing: 0;
}
  .top_recruit .tit_h2_recruit p {
    margin: 0 0 3px;
    font-size: 14px;
    letter-spacing: 0;
    padding-left: 0;
}

	.top_recruit {
    max-width: 100%;
    padding: 32px 0 40px;
}

	.top_recruit .recruit_text {
    font-size: 14px;
    letter-spacing: 0;
    width: 100%;
}
  .top_recruit .btn01 {
    padding-top: 10px;
    text-align: center;
}
  .top_recruit .btn01 a {
    min-width: 280px;
}
}

.top_recruit_bg_wrap {
	position: absolute;
	top: 50%;
	right: -60px;
	width: 960px;
	height: 600px;
	transform: translateY(-50%) rotate(-9deg);
	transform-origin: 90% 50%;
	pointer-events: none;
	z-index: 2;
}

.top_recruit_bg_layer {
	position: absolute;
	left: 50%;
	display: flex;
	align-items: center;
	width: max-content;
	height: 210px;
	transform: translateX(-50%);
	overflow: hidden;
	--segment-width: 2200px;
	--track-width: calc(var(--segment-width) * 2);
	--duration: 45s;
}

.top_recruit_bg_layer--top {
	top: -65px;
}

.top_recruit_bg_layer--middle {
	top: calc(50% - 150px);
}

.top_recruit_bg_layer--bottom {
	bottom: 27px;
}

.top_recruit_bg_track {
	display: flex;
	width: var(--track-width);
	height: 100%;
	gap: 0;
	will-change: transform;
	animation-duration: var(--duration);
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	animation-name: recruit-loop-left;
	animation-play-state: paused;
}

.top_recruit_bg_track img {
	display: block;
	width: var(--segment-width);
	height: auto;
	max-width: none;
}

.top_recruit_bg_layer.is-ready .top_recruit_bg_track {
	animation-play-state: running;
}

.top_recruit_bg_layer.is-reverse .top_recruit_bg_track {
	animation-name: recruit-loop-right;
}

@keyframes recruit-loop-left {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(calc(-1 * var(--segment-width)));
	}
}

@keyframes recruit-loop-right {
	0% {
		transform: translateX(calc(-1 * var(--segment-width)));
	}
	100% {
		transform: translateX(0);
	}
}

@media screen and (max-width: 1199px) {
	.top_recruit_bg_wrap {
		left: 50%;
		right: auto;
		width: min(1024px, 96vw);
		height: clamp(440px, 70vw, 640px);
		transform: translate(-50%, -50%) rotate(-9deg);
	}

	.top_recruit_bg_layer {
		height: clamp(160px, 20vw, 190px);
		--segment-width: clamp(1200px, 180vw, 2200px);
	}

	.top_recruit_bg_layer--top {
		top: 0;
	}

	.top_recruit_bg_layer--middle {
		top: 50%;
		transform: translate(-50%, -50%);
	}

	.top_recruit_bg_layer--bottom {
		bottom: 0;
	}
   .top_recruit_bg_track img {
    display: block;
    width: 100%;
    height: auto;
    max-width: none;
    object-fit: cover;
}
}

@media screen and (max-width: 1100px) {
	.top_recruit_bg_wrap {
    height: 500px;
    transform: translate(-80%, -50%) rotate(-9deg);
}

	.top_recruit_bg_layer {
		height: clamp(150px, 18vw, 180px);
	}

	.top_recruit_bg_layer--top {
		top: 10px;
	}

	.top_recruit_bg_layer--middle {
		top: 50%;
		transform: translate(-50%, -50%);
	}

	.top_recruit_bg_layer--bottom {
		bottom: 10px;
	}
}

@media screen and (max-width: 640px) {
.top_recruit_bg_wrap {
    width: 100vw;
    right: calc(-50vw + 50%);
    height: 400px;
    transform: translate(-70%, -55%) rotate(-9deg);
}

	.top_recruit_bg_layer {
		height: 180px;
	}

	.top_recruit_bg_layer--middle {
    top: calc(50% + 10px);
}
  .top_recruit_bg_layer--bottom {
    top: calc(50% + 80px);
}
  .top_recruit_right_bg {
    width: 100%;
    max-width: 94%;
    height: 330px;
    margin-top: 20px;
}
  .top_recruit_bg_layer {
    height: 130px;
}
}


.sec_top_feature {
  padding: 80px 0 50px;
  background: url(../images/bg03.jpg) center no-repeat;
  background-size: cover;
}

.top_feature_item {
  position: relative;
}

@media screen and (max-width: 640px) {
  .sec_top_feature {
    padding: 48px 0 32px;
  }
}


/* 当院の特徴パターンA(写真と文章分離、並列並び) */
.sec_top_feature.pattern01 h2 {
  margin-bottom: 60px;
}
.sec_top_feature.pattern01 .top_feature_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0 2%;
}
.sec_top_feature.pattern01 .top_feature_wrap .top_feature_item {
  display: flex;
  flex-flow: column wrap;
  width: 32%;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  margin-bottom: 40px;
}
.sec_top_feature.pattern01 .top_feature_wrap .top_feature_item .top_feature_num {
  /* 枠上のナンバリング */
  position: absolute;
  left: 0;
  right: 0;
  top: -20px;
  text-align: center;
}
.sec_top_feature.pattern01 .top_feature_wrap .top_feature_item .top_feature_num p {
  display: inline-block;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  background: var(--main-color);
  padding: 10px;
  line-height: 1;
}
.sec_top_feature.pattern01 .top_feature_wrap .top_feature_item .top_feature_num p em {
  font-style: normal;
}
.sec_top_feature.pattern01 .top_feature_wrap .top_feature_item .top_feature_img {
  margin-bottom: 20px;
}
.sec_top_feature.pattern01 .top_feature_wrap .top_feature_item h3 {
  text-align: center;
}
.sec_top_feature.pattern01 .top_feature_wrap .top_feature_item .btn01 {
  margin-top: auto;
  text-align: right;
}
.sec_top_feature.pattern01 .top_feature_wrap .top_feature_item .top_feature_box {
  position: relative;
}
.sec_top_feature.pattern01 .top_feature_wrap .top_feature_item .top_feature_box .top_feature_num {
  /* 画像下のナンバリング */
  position: static;
  margin-bottom: 10px;
}
.sec_top_feature.pattern01 .top_feature_wrap .top_feature_item .top_feature_box .top_feature_num p {
  font-size: 24px;
}

@media screen and (max-width: 640px) {
  .sec_top_feature.pattern01 .top_feature_wrap .top_feature_item {
    width: 100%;
  }
  .sec_top_feature.pattern01 .top_feature_wrap .top_feature_item .top_feature_num {
    top: -15px;
  }
  .sec_top_feature.pattern01 .top_feature_wrap .top_feature_item .top_feature_num p {
    font-size: 28px;
  }
}


/* 当院の特徴パターンB(写真と文章分離、1コンテンツ横幅フル) */
.sec_top_feature.pattern02 h2 {
  margin-bottom: 60px;
}
.sec_top_feature.pattern02 .top_feature_item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.sec_top_feature.pattern02 .top_feature_item:last-child {
  margin-bottom: 0;
}
.sec_top_feature.pattern02 .top_feature_num {
  position: absolute;
  z-index: 1;
  left: 10px;
  right: auto;
  bottom: 10px;
}
.sec_top_feature.pattern02 .top_feature_num p {
  color: var(--sub-color);
  font-size: 40px;
  line-height: 1;
}
.sec_top_feature.pattern02 .top_feature_num p em {
  font-style: normal;
}
.sec_top_feature.pattern02 .top_feature_img {
  position: relative;
  width: 32%;
  margin-right: 3%;
}
.sec_top_feature.pattern02 .top_feature_box {
  width: 65%;
}

/* 左右互い違いパターン */
.top_feature_wrap.reverse .top_feature_item:nth-child(even) {
  flex-direction: row-reverse;
}
.top_feature_wrap.reverse .top_feature_item:nth-child(even) .top_feature_img {
  margin-right: 0;
  margin-left: 3%;
}
.top_feature_wrap.reverse .top_feature_item:nth-child(even) .top_feature_num {
  position: absolute;
  left: auto;
  right: 10px;
}

@media screen and (max-width: 640px) {
  .sec_top_feature.pattern02 .top_feature_item {
    flex-direction: column;
  }
  .sec_top_feature.pattern02 .top_feature_img {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .sec_top_feature.pattern02 .top_feature_box {
    width: 100%;
  }
  .sec_top_feature.pattern02 .top_feature_box h3 {
    margin: 0 auto 20px;
  }
  .sec_top_feature.pattern02 .top_feature_box .btn01 {
    text-align: center;
  }

  /* 左右互い違いパターン */
  .top_feature_wrap.reverse .top_feature_item:nth-child(even) .top_feature_img {
    margin-left: 0;
  }
  .top_feature_wrap.reverse .top_feature_item:nth-child(even) .top_feature_num {
    position: absolute;
    left: 10px;
    right: 0;
  }
}


/* 当院の特徴パターンC(背景に写真、その上にテキスト) */
.sec_top_feature.pattern03 h2 {
  margin-bottom: 60px;
}
.sec_top_feature.pattern03 .top_feature_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0 2%;
}
.sec_top_feature.pattern03 .top_feature_item {
  position: relative;
  width: 32%;
  margin-bottom: 24px;
}
.sec_top_feature.pattern03 .top_feature_img {
  position: absolute;
  width: 100%;
  height: 100%;
}
.sec_top_feature.pattern03 .top_feature_img img {
  overflow: hidden;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec_top_feature.pattern03 .top_feature_box {
  color: #fff;
  display: flex;
  align-items: center;
  flex-flow: column wrap;
  position: relative;
  z-index: 1;
  margin: auto;
  width: 100%;
  height: 100%;
  padding: 20px;
  background: rgba(58, 46, 46, 0.4);
}
.sec_top_feature.pattern03 .top_feature_num {
  margin-bottom: 20px;
  text-align: center;
}
.sec_top_feature.pattern03 .top_feature_num p {
  display: inline-block;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  background: var(--main-color);
  padding: 10px;
  line-height: 1;
}
.sec_top_feature.pattern03 .top_feature_num p em {
  font-style: normal;
}
.sec_top_feature.pattern03 .btn01 {
  text-align: center;
  margin-top: auto;
}

@media screen and (max-width: 640px) {
  .sec_top_feature.pattern03 .top_feature_item {
    width: 100%;
    margin-bottom: 32px;
  }
  .sec_top_feature.pattern03 .top_feature_item:last-child {
    margin-bottom: 0;
  }
}

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

  *診療案内

==================================================================================================================================*/
.sec_top_medical {
  padding: 80px 0 50px;
}
.sec_top_medical .sec_top_medical_flex {
  display: flex;
  flex-wrap: wrap;
}


/* 診療案内パターンA(アイコンを目立たせるタイプ) */
.sec_top_medical.pattern01 .sec_top_medical_flex{
  justify-content: center;
  gap: 0 32px;
}
.sec_top_medical.pattern01 .sec_top_medical_flex .item {
  width: 276px;
  margin-bottom: 20px;
}
.sec_top_medical.pattern01 .sec_top_medical_flex .item a {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  height: 100%;
  padding: 0 0 20px;
}
.sec_top_medical.pattern01 .sec_top_medical_flex .item a .item_img {
  margin-bottom: 20px;
}
.sec_top_medical.pattern01 .sec_top_medical_flex .item a h3 {
  margin: 0 auto 20px;
}
.sec_top_medical.pattern01 .sec_top_medical_flex .item a p {
  margin-bottom: 20px;
}
.sec_top_medical.pattern01 .sec_top_medical_flex .item a .btn01 {
  text-align: center;
  color: #fff;
  background: var(--main-color);
  padding: 5px 15px;
  margin: auto auto 0;
  transition: 0.2s;
}
.sec_top_medical.pattern01 .sec_top_medical_flex .item a:hover .btn01 {
  background: var(--sub-color);
}

@media screen and (max-width: 640px) {
  .sec_top_medical.pattern01 .sec_top_medical_flex .item {
    width: 100%;
  }
}


/* 診療案内パターンB(見出しを目立たせるタイプ) */
.sec_top_medical.pattern02 .sec_top_medical_flex {
  justify-content: flex-start;
}
.sec_top_medical.pattern02 .sec_top_medical_flex .item {
  width: 25%;
  margin-top: -1px;
}
.sec_top_medical.pattern02 .sec_top_medical_flex .item:not(:nth-child(4n+1)) {
  margin-left: -1px;
}
.sec_top_medical.pattern02 .sec_top_medical_flex .item a {
  display: flex;
  flex-flow: column wrap;
  position: relative;
  padding: 20px;
  height: 100%;
}
.sec_top_medical.pattern02 .sec_top_medical_flex .item a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--sub-color);
  z-index: 2;
}
.sec_top_medical.pattern02 .sec_top_medical_flex .item h3 {
  margin: 0 auto 20px;
}
.sec_top_medical.pattern02 .sec_top_medical_flex .item .images {
  margin-bottom: 20px;
}
.sec_top_medical.pattern02 .sec_top_medical_flex .item p {
  margin-bottom: 20px;
}
.sec_top_medical.pattern02 .sec_top_medical_flex .item .btn01 {
  text-align: center;
  color: #fff;
  background: var(--main-color);
  padding: 5px 15px;
  margin: auto auto 0;
  transition: 0.2s;
}
.sec_top_medical.pattern02 .sec_top_medical_flex .item:hover .btn01 {
  background: var(--sub-color);
}

@media screen and (max-width: 640px) {
  .sec_top_medical.pattern02 .sec_top_medical_flex .item {
    width: 100%;
  }
  .sec_top_medical.pattern02 .sec_top_medical_flex .item:not(:nth-child(4n+1)) {
    margin-left: 0;
  }
}


/* 診療案内パターンC(写真+テキストボタンタイプ) */
.sec_top_medical.pattern03 .sec_top_medical_flex{
  justify-content: center;
  gap: 0 32px;
}
.sec_top_medical.pattern03 .item {
  width: 276px;
  margin-bottom: 20px;
}
.sec_top_medical.pattern03 a {
  display: block;
  padding: 100px 0;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.sec_top_medical.pattern03 a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transition: 0.2s ease-in-out;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  z-index: -1;
}
.sec_top_medical.pattern03 a:hover::after {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
.sec_top_medical.pattern03 .item_img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.sec_top_medical.pattern03 .item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec_top_medical.pattern03 h3 {
  text-align: center;
  margin-bottom: 0;
}
.sec_top_medical p.top_medical_menu_en_title {
  display: block;
  font-weight: normal;
  text-align: center;
}

@media screen and (max-width: 640px) {
  .sec_top_medical.pattern03 .item {
    width: 48%;
  }
  .sec_top_medical.pattern03 a {
    padding: 50px 0;
  }
}

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

  *医療コラム

==================================================================================================================================*/
.sec_top_column {
  padding-top: 80px;
  padding-bottom: 80px;
}
.column_list_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 32px;
}
.column_list_flex dl {
  width: 276px;
  margin-bottom: 20px;
}
.column_list_flex dt {
  background: var(--main-color);
  color: #fff;
  font-size: 130%;
  font-weight: bold;
  text-align: center;
}
.column_list_flex dd {
  padding: 10px;
}
.column_list_flex dd ul li {
  position: relative;
  line-height: 2;
  display: flex;
  align-items: baseline;
}
.column_list_flex dd ul li::before {
  content: "\f054";
  color: var(--main-color);
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 90%;
  margin-right: 5px;
}
.column_list_flex dd ul li a {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: var(--text-color);
}
@media (hover: hover) {
  .column_list_flex dd ul li a:hover {
    color: var(--sub-color);
  }
}

@media screen and (max-width: 640px) {
  .column_list_flex{
    /* gap: 20px 2%;*/
    /* 一列にする場合はこちら */
    gap: 0;
  }
  .column_list_flex dl {
    /* width: 48%;*/
    /* 一列にする場合はこちら */
    width: 100%;
  }
}

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

  *ループスライダー

==================================================================================================================================*/
.home_loopSlider {
  overflow: hidden;
}

@media screen and (max-width: 640px) {
  .home_loopSlider img {
    width: 200px;
  }
}