@charset "utf-8";
/* CSS Document */

/* =========================================================
============================================================
============================================================
Swidge.com
============================================================
============================================================
========================================================= */



/*------------------------------------------------------------
|
| Common
|
------------------------------------------------------------*/
:root{
  --container: 1008px;
  --gutter: 24px;
  --accent: #B81C22;   /* キーカラーred */
  --dark: #1c1c1c;
  --text: #51646F;
  --bg: #fff;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: "Noto Sans JP", system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.8;
}
a{ color: inherit; text-decoration: none; }
img{ max-width:100%; height:auto; }


.sp {/* PCレイアウトでSPを消す*/
  display: none;
}
.pc {/* PCレイアウトでPCを表示*/
  display: block;
}

.col{
  display: flex;
}
.col-between{
  display: inline-flex;
  display: flex;
  justify-content: space-between;
}

.float-l {/* 回り込み左 */
  float: left;
}
.float-r {/* 回り込み右 */
  float: right;
}
.clear-both {/* 回り込み解除 */
  clear: both;
}
.center {/* 配置－中央 */
  text-align: center;
}
.right {/* 配置－右 */
  text-align: right;
}
.sp_t10 {/* 上にマージン */
  margin-top: 10px;
}
.sp_t20 {/* 上にマージン */
  margin-top: 20px;
}
.sp_t30 {/* 上にマージン */
  margin-top: 30px;
}
.sp_t40 {/* 上にマージン */
  margin-top: 40px;
}
.s_b180 {/* 上にマージン */
  margin-bottom:180px;
}
.sp_b20 {/* 下にマージン */
  margin-bottom: 20px;
}
.sp_b30 {/* 下にマージン */
  margin-bottom: 30px;
}
.sp_b40 {/* 下にマージン */
  margin-bottom: 40px;
}
.sp_b80 {/* 下にマージン */
  margin-bottom: 80px;
}
.sp_tb20 {/* 上下にマージン */
  margin-bottom: 20px;
  margin-top: 20px;
}
.sp_tb30 {/* 上下にマージン */
  margin-bottom: 30px;
  margin-top: 30px;
}
.sp_tb40 {/* 上下にマージン */
  margin-bottom: 40px;
  margin-top: 40px;
}
.sp_left_1 {/* 左にマージン */
  margin-left: 1rem;
}
.al-mid {/* 上下のセンタリング */
  display: table-cell;
  vertical-align: middle;
}
.img_50 img {/* 上下のセンタリング */
  width: 50%;
}
.img_80 img {
  width: 80%;
}




/*------------------------------------------------------------
|
|  Fonts
|
------------------------------------------------------------*/
.txt_just {
  text-align:justify;
}
.weight500 {
  font-weight:500
} 
.weight700 {
  font-weight:700
} 
a {
  color: #0084ff;
  text-decoration: underline;
  font-weight: normal;
  transition: .3s;
}

a:hover {
  color: #70b8fb;
  font-weight: normal;
  text-decoration: none;
  transition: .3s;
}

.font-shippori {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
}


.en{ font-family: "Tinos", serif; letter-spacing: .02em; }


h1{
  font-family: "Shippori Mincho", serif;
  font-size: clamp(16px, 3vw, 16px);
  font-weight: 700;
  letter-spacing: 0.2rem;
  margin: 0 0 6px;
}


h3{
  position: relative;
  display: inline-block; 
  padding-left: 12px; /* 線の分余白 */
  margin: 0px 0px 24px 0px;
  font-size: 2.4rem;
  font-weight:100;
  line-height: 4rem;
  color:  var(--accent);
}


h3::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:3px;
  height:100%;

  /* ←ここがポイント：上下色分け */
  background: linear-gradient(
    to bottom,
    #00ACB1 0%,
    #00ACB1 50%,
    #B81C22 50%,
    #B81C22 100%
  );
}

h4{
    margin: 0px 0px 24px 0px;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 3.0rem;
    font-family: "Shippori Mincho", serif;
    border-top: 1px solid #88A6A9;
    border-bottom: 1px solid #88A6A9;
}
h4 span{
    margin: 0 0 0 1rem;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 2.0rem;
    font-family: "Shippori Mincho", serif;
}
.txt_size_s {/* 小の文字サイズ */
  font-size: 0.95rem;
  line-height: 1.5rem;
  padding-top: 1rem;

}
.txt_size_m {/* 中の文字サイズ */
  font-size: 1.05rem;
  line-height: 2.0rem;
  padding-top: 0.8rem;
  letter-spacing: 0.15rem;
}
.txt_size_l {/* 大の文字サイズ */
  font-size: 1.2rem;
  line-height: 2.2rem;
  padding-top: 0.8rem;
  letter-spacing: 0.15rem;
}


.txt_color_white {
  color: #FFFFFF;
}




/*------------------------------------------------------------
|
| button
|
------------------------------------------------------------*/
.button_basic a {
  background-color: var(--accent);
  color: #FFF;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: auto;
  max-width: 250px;
  padding: 10px 25px;
  font-weight: 300;
  position: relative;
  text-decoration: none;
  line-height: 1.8;
  transition: 0.3s ease-in-out;
}
.button_basic a:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 2rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.button_basic a:hover {
  background: var(--text);
  color: #FFF;
  font-weight: 300;
}
.button_basic a:hover:after {
  right: 1.4rem;
}

/* 矢印付きボタン */
.btn--arrow{
  gap: 12px;
}

/* 矢印本体 */
.btn__arrow{
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg) translateX(0);
  transition: transform 0.3s ease;
}


/*------------------------------------------------------------
|
| LAYOUT
|
------------------------------------------------------------*/
.logo img{
  height: 48px;
  margin: 8px 16px 0 0;
}

.container{
  width: min(var(--container), 100% - (var(--gutter) * 2));
  margin: 0 auto;
}

.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

/* 汎用ボックス */
.beginning_box{
    max-width: 800px;
    margin: 0 auto;
    padding: 48px;
}

/* Section common */
.section{}
.section-head__title{
  margin:0;
  font-size: 54px;
  font-weight: 400;
  color: var(--accent);
}
.section-head__en{
  display: block;
  font-family: "Tinos", serif;
  font-size: 100px;
  font-weight: 400;
  line-height: 1;
  color: var(--accent);
}
.section-head__jp{
  margin: -2px 0 0; /* ← 英字との重なりを調整 */
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  font-family: "Shippori Mincho", serif;
}


/*------------------------------------------------------------
|
| Header
|
------------------------------------------------------------*/
.site-header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  background: transparent;   /* heroの上に載せるので透明 */
  border-bottom: none;
  backdrop-filter: none;
}
.site-title{
  display: flex;
}
.header-inner{
  max-width: 1080px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 48px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.site-title{
  text-decoration: none;
  color: var(--text);
}

.site-title:hover{
  color: #51646F;
  opacity: 0.8;
}

/* G_NAVI */
.g-nav__list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 18px;
  align-items: center;
}
.g-nav__list li{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.g-nav__list li a{
  display: block;
  font-size: 16px;
  color: #51646F;
  line-height: 1.2;
  text-decoration: none;   
  opacity: 1;
  transition: opacity .25s ease;  /* ★薄くする用 */
}
.g-nav__list li a:hover,
.g-nav__list li a:focus{
  text-decoration: none;
}
.g-nav__list li span{
  position: relative;
  display: inline-block;
  font-family: "Arimo", sans-serif;
  font-size: 12px;
  color: var(--accent);
  text-align: center;
  margin-top: 4px;
}
.g-nav__list li span::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);        /* 見えない */
  transform-origin: center;    /* ★中央から */
  transition: transform .25s ease;
}
.g-nav__list li:hover span::after,
.g-nav__list li:focus-within span::after{
  transform: scaleX(1);        /* ★左右に伸びる */
}
/* hover時：日本語を薄く＋下線を出す */
.g-nav__list li:hover a{
  opacity: 0.45;
}
.g-nav__list li:hover span::after{
  transform: scaleX(1);
}
.g-nav a.is-cta{
  background: var(--accent);
  color:#fff;
  padding: 10px 14px;
  border-radius: 999px;
}


/* Hamburger */
.nav-toggle{
  display:none;
  width:44px;
  height:44px;
  border:1px solid rgba(0,0,0,.15);
  background:#fff;
  border-radius:10px;
  cursor:pointer;
}
.nav-toggle__line{
  display:block;
  width:22px;
  height:2px;
  background:#222;
  margin: 5px auto;
}



/*------------------------------------------------------------
|
| INDEX
|
------------------------------------------------------------*/
/* Hero */
.hero{
  width: 100%;
}

.hero__image{
  margin-left: calc(50% - 50vw);
  height: 680px;
  background: url("../images/kv.jpg") center/cover no-repeat;
}

/* Copy band */
.copyband{
  background: var(--accent);
  color:#fff;
  padding: 104px;
}
.copyband .container{
  text-align: center;
}
.copyband__title{
  margin: 0 0 12px;
  font-size: clamp(60px, 2vw, 42px);
  font-family: "Arimo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.2rem;
  line-height: 3rem;
}
.copyband__kicker{
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  margin:0 0 10px;
  font-size: clamp(20px, 2.8vw, 28px);
  opacity:.9;
}
.copyband__text{
  margin:0 auto;
  max-width: 616px;
}


/* News */
.news__inner{
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: start;
  margin: 104px auto;
}
.news-list{
  list-style:none;
  margin:0 0 18px;
  padding:0;
}
.news-item{
  display:grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.news-item time{
  font-family: "Tinos", serif;
  color: var(--accent);
  border: 1px solid var(--accent);
  text-align: center;
}



/* About */
.about{
  position: relative;
  color:#fff;
  overflow:hidden;
}
.about__bg{
  position:absolute; inset:0;
  background: url("../images/backimg01.jpg") center/cover no-repeat; 
  filter: saturate(1.05);
  transform: scale(1.02);
}
.about__inner{
  position:relative;
  display:flex;
  justify-content: space-between;
  gap: 28px;
  margin: 192px auto;
}

.about__content{
  width: 504px;
  max-width: 720px;
}
.about__text{
  margin: 0 0 18px;
  text-shadow: 0 1px 10px rgba(0,0,0,.35);
}

/* Banners */
.banners{
  padding: 104px 0;
  background-color: #F4F4F4;
}
.banners__grid{
  width: 1008px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 80px;
}
.banner{
  position: relative;
  display:block;
  border-radius: 8px;
  overflow:hidden;
  background:#f6f6f6;
  min-height: 180px;
}
.banner__thumb{
  position:absolute; inset:0;
  background-size: cover;
  background-position:center;
}
.banner__thumb--message{ background-image: url("../images/message.jpg"); }
.banner__thumb--members{background-image: url(../images/members.jpg);}
.banner__thumb--outpatient{ background-image: url("../images/outpatient.jpg"); }

.banner__label{
  position:absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  background: rgba(176,18,18,.92);
  color:#fff;
  padding: 12px 14px;
  border-radius: 6px;
}
.banner__title{ display:block; font-size: 20px; font-weight: 400; }
.banner__sub{ display:block; font-size: 12px; opacity:.95; }

.banners__wide{ margin-top: 32px;padding-top: 6px; }
.banner.is-wide{ min-height: 140px; }

.overlap-card{
  position: relative;
  display: block;
  width: max(488px, 100%);
  padding-bottom: 24px;
  overflow: visible;
}
.overlap-card__photo{
  height: 296px;
  overflow: hidden;
}

.overlap-card__photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);                 /* 通常 */
  transition: transform 0.4s ease;     /* ★ズーム用 */
}
.overlap-card:hover .overlap-card__photo img{
  transform: scale(1.05);              /* ★5%ズーム */
}

/* 赤ボックス（最大 280×136） */
.overlap-card__label{
  position: absolute;
  left: 50%;
  bottom: -24px;
  transform: translateX(-50%);
  width: min(280px, 92%);
  height: 136px;
  background: #c62812;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: background-color 0.3s ease;
  
}
.overlap-card:hover .overlap-card__label{
  background-color: var(--text);
}


/* 白い三角アクセント（左上） */
.overlap-card__label::before{
  content: "";
  position: absolute;
  top: 8px;/* 位置調整 */
  left: 8px;
  width: 0;
  height: 0;
  border-top: 20px solid #fff; /* 三角のサイズ */
  border-right: 20px solid transparent;
}

/* テキスト */
.overlap-card__en{
  font-size: 36px;
  line-height: 1;
  font-weight: 400;
}
.overlap-card__jp{
  margin: 0;
  font-family: "Shippori Mincho", serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}
.wide-card{
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: max(1008px, 100%);
  height: 200px
  margin: 0 auto;
  background: #fff;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}

/* 左：テキストエリア */
.wide-card__text{
  position: relative;
  height: 100%;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  justify-content: center; 
  gap: 14px;
  background: #fff;
}

/* 三角アクセント */
.wide-card__text::before{
  content:"";
  position:absolute;
  top: 8px;
  left: 8px;
  width: 0;
  height: 0;
  border-top: 20px solid #c62812;
  border-right: 20px solid transparent;
}

/* 英字 */
.wide-card__en{
  display:block;
  font-size: clamp(32px, 3vw, 32px);
  line-height: 1.15;
  font-weight: 400;
  color: #b01212;
}
.wide-card:hover .wide-card__en{
  color: var(--text);
  filter: brightness(1.1); 
}
/* 日本語（h2） */
.wide-card__jp{
  margin: 0;
  font-family: "Shippori Mincho", serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  color: #333;
}

/* 右：写真 */
.wide-card__photo{
  height: 100%;
  overflow: hidden;
}

.wide-card__photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.4s ease;
}
.wide-card:hover .wide-card__photo img{
  transform: scale(1.05);   /* ★5%ズーム */
}
/* CTA split */
.cta{ padding: 0; }
.cta__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
}
.cta-card{
  position:relative;
  min-height: 260px;
  display:block;
  color:#fff;
  overflow:hidden;
    text-decoration: none;
}
.cta-card:hover{
  color:#fff;
}
.cta-card__bg{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.3);
  transform: scale(1);
  transition: transform 0.4s ease,filter 0.4s ease;   
}
.cta-card:hover .cta-card__bg{
  filter: brightness(1.0);        /* 明るさ +5% */
  transform: scale(1.05);          /* 5%拡大 */
}
.cta-card__bg--recruit{
  background-image: url(../images/recruit.jpg);
}
.cta-card__bg--contact{ background-image: url("../images/contact.jpg"); }

.cta-card__inner{
  position:relative;
  text-align: center;
  height:100%;
  padding: 104px 26px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap: 10px;
  text-shadow: 0 1px 10px rgba(0,0,0,.35);
  transition: transform 0.3s ease;
}
.cta-card:hover .cta-card__inner{
  transform: translateY(-4px);
}
.cta-card__title{
  margin:0;
  font-size: clamp(72px, 2.8vw, 28px);
  font-weight:400;
}
.cta-card__text{
  margin: 18px 0;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 2.8rem;
  text-align: center;
}
.cta-card__inner a {
  text-decoration: none;
}
.cta-card__tel{
  margin: 0 auto;
  font-size: 32px;
  text-align: center;
}
.icon-tel{
  background-image: url(../images/ico_tel.svg);
  background-size: 32px auto;
  width: 32px;
  height: 42px;
  display: inline-block;
  background-position: 0px 8px;
  background-repeat: no-repeat;

}
.btn.is-mail{
  border-color: #fff;
  background-color: transparent;
}
.btn.is-mail img{
  height: 32px;
  margin-right: 26px;
}
.cta-card .btn {
  background-color: var(--accent);
  color: #FFF;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: auto;
  max-width: 340px;
  padding: 10px 25px;
  font-weight: 300;
  position: relative;
  text-decoration: none;
  line-height: 1.8;
  transition: background-color 0.3s ease,color 0.3s ease,transform 0.3s ease;
}
#recruit:hover .btn--arrow .btn__arrow{
  transform: rotate(-45deg) translateX(0px);
}
.cta-card:hover .btn{
  background-color: #51646F;
}




/*------------------------------------------------------------
|
| Pages
|
------------------------------------------------------------*/
#page_wrap{
  max-width: var(--container);
  padding: 104px 0;
  margin: 0 auto;
}
@media (max-width: 1008px){
#page_wrap{
  width: min(var(--container), 100% - (var(--gutter) * 2));
  padding: 104px 0;
  margin: 0 auto;
}
}

.page_title{
  background: url("../images/page_title.jpg") center/cover no-repeat;
  filter: saturate(1.05);
  height: 300px;
  padding-top: 136px;
}
.page_title__inner{
  width: min(var(--container), 100% - (var(--gutter) * 2));
  margin: auto;
  padding: 300px auto;
}
.page_title__en{
  display: block;
  font-family: "Tinos", serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 1;
  color: var(--accent);
}
.page_title__jp{
  margin: -2px 0 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  font-family: "Shippori Mincho", serif;
}



/*------------------------------------------------------------
|
| Greeting
|
------------------------------------------------------------*/
.greeting_col{
  display: flex;
}
.greeting .txt_area{
  max-width: 625px;
  margin-right: 72px;
  flex: 1;
}
.greeting .photo_area{
  max-width: 312px;
}
.greeting__affiliation{
  margin: 0;
  font-family: "Shippori Mincho", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
   margin-top: 16px;
}
.greeting__name{
  margin: 0;
  font-family: "Shippori Mincho", serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 16px;
}
.greeting__name span{
  display: block;
  font-size: 12px;
  letter-spacing: 0.16rem;
  margin-top: 8px;
}

@media (max-width: 1008px){
.greeting .txt_area{max-width: 75%;}
.greeting .photo_area{max-width: 25%;}
}





/*------------------------------------------------------------
|
| Travel & Vaccine Clinic
|
------------------------------------------------------------*/
.vaccine-clinic-poster img{
    max-width: 300px;
    margin: 0 auto;
    padding: 0 32px;
}


/*------------------------------------------------------------
|
| Recruit
|
------------------------------------------------------------*/
/* リクルート */
.recruit_box{
    max-width: 800px;
    margin: 0 auto;
    padding: 48px;
    border-radius: 16px;
    background-color: #F4F4F4;
}
.recruit_txt_color{
    display: flex;
    margin-bottom: 12px;
    padding: 12px;
    background-color: #FFF;
    font-size: 1.2rem;
    background-image: url(../images/icon_check.svg);
    background-repeat: no-repeat;
    background-size: 32px auto;
    background-position: 10px 16px;
    text-indent: 2rem;
}


/*------------------------------------------------------------
|
| Members
|
------------------------------------------------------------*/
.members_box{
    display: flex;
    margin-bottom: 32px;
align-items: flex-start;
}
.members_left {
    max-width: 376px;
    position: -webkit-sticky;
    position: sticky;
    top: 90px;
    align-self: flex-start;
}
.members_left img {
  max-width: 376px;
}
.members_right {
flex: 1;
  max-width: 892px;
  margin-left: 32px;
}  
.members-table th,
.members-table td {
  border-bottom: 1px solid #E8E8E8;
  padding: 12px;
  margin-bottom: 18px;
}
.members-table th {
  width: 100px;
  background: rgb(247, 247, 247);
  padding: 8px 10px;
  border-radius: 6px;
}
.members-table td {
  font-size: 0.9rem;
}
.members-table li{
  margin-left: 2rem;
}
  
@media (max-width: 767px) {
.members_box{
  display: block;
  }
.members_left {
  max-width: 90%;
  margin: 0 auto 20px auto;
  position: static;  /* ← sticky解除 */
}
.members_left img {
  max-width: 100%;
}
.members_right {
  max-width: 100%;
  margin-left: auto;
} 
.members-table th,
.members-table td {
  border-bottom: none;
  }
.members-table,
.members-table tbody,
.members-table tr {
  display: block;
  width: 100%;
}
.members-table th,
.members-table td {
  display: block;
  width: 100%;
}
.members-table tr {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 12px;
}
.members-table th {
  font-weight: 700;
    margin-bottom: 6px;
    background: #f7f7f7;
    padding: 8px 10px;
    border-radius: 6px;
  }

.members-table td {
    margin: 0px;
    padding: 8px 10px;
  }
}



/*------------------------------------------------------------
|
| Contact
|
------------------------------------------------------------*/
.contact_box{
    max-width: 800px;
    margin: 0 auto;
    padding: 104px;
    border-radius: 16px;
    background-color: #F4F4F4;
}
.contact__title{
  margin: 0;
  font-family: "Shippori Mincho", serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 16px;
  margin-bottom: 24px;
}
.contact__tel{
    font-family: "Shippori Mincho", serif;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 16px;
    background-image: url(../images/icon_contact_tel.svg);
    background-repeat: no-repeat;
    display: inline-block;
    padding-left: 50px;
    margin-top: 24px;
}
.contact__tel span{
    font-size: 16px;
}
.contact__mail{
    font-family: "Shippori Mincho", serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 16px;
    background-image: url(../images/icon_contact_mail.svg);
    background-repeat: no-repeat;
    display: inline-block;
    padding-left: 50px;
    margin-top: 24px;
}






/*------------------------------------------------------------
|
| Footer
|
------------------------------------------------------------*/
.site-footer{
  background: #292929;
  color:#fff;
  padding: 104px 0;
}
.footer__inner{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}
.footer__name{
  font-family: "Shippori Mincho", serif;
  font-size: clamp(16px, 3vw, 16px);
  font-weight: 700;
  letter-spacing: 0.2rem;
  margin: 0 0 6px;
}
.footer__addr{
  margin: 18px 0 0 60px;
  font-size: clamp(12px, 3vw, 12px);
  font-weight: 200;
  letter-spacing: 0.2rem;
}
.footer__copy{
  font-size: clamp(12px, 3vw, 12px);
  letter-spacing: 0.2rem;
  opacity:.8;
}





/* ======== Responsive (<=767px) ============================== */



@media (max-width: 767px){
.sp {display: block;}/* PCレイアウトでPCを表示*/
.pc {isplay: none;}/* PCレイアウトでPCを表示*/
.col{display: block;}
.col-between{display: inline-flex;display:  block;justify-content: space-between;}

.header-inner{padding: 12px 3%;border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;}
.site-title{width: 96%} 

  /* Nav becomes hamburger */
.nav-toggle{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 64px;
  height: 64px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: currentColor;
}

/* 三本線 */
.nav-toggle__icon{
  position: relative;
  width: 22px;
  height: 16px;
}
.nav-toggle__line{
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle__line:nth-child(1){ top: 0; }
.nav-toggle__line:nth-child(2){ top: 7px; }
.nav-toggle__line:nth-child(3){ top: 14px; }
/* MENU文字 */
.nav-toggle__text{
  font-family: "Tinos", serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  transition: opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(1){
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(2){
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(3){
  transform: translateY(-7px) rotate(-45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__text{
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__text{
  opacity: 1;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__text::after{
  content: "CLOSE";
}
.nav-toggle[aria-expanded="true"] .nav-toggle__text{
  color: currentColor;
}
.g-nav{position: fixed;top: 79px;left: 0;
  right: 0;
  background: rgba(255,255,255,.98);
  border-top: 1px solid rgba(0,0,0,.08);
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  transition: .2s ease;
  padding: 10px 0;
}
  .g-nav.is-open{
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  height: 100vh;
}
  .g-nav__list{
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 120px;   /* ヘッダー＋MENU分 */
  gap: 24px;
  padding-top: 0;
  }
.g-nav__list a{display:block;padding: 14px 18px;}
 .g-nav__list li{
  width: 100%;  
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
  position: relative;
  }
  .g-nav__list li a{
  font-size: 18px;
  display: block;
  width: 100%;
  padding: 12px 0;
  text-align: center;
  text-decoration: none;
  position: relative;
  z-index: 2;
  }

.g-nav__list li span{font-size: 12px;pointer-events: none;}
  
  
  
.hero__image{height: 270px;margin-top: 80px;}
.copyband{padding: 32px 5%;}
.section-head__en{font-size: 80px;}
.news__inner,
.about__inner{margin: 32px auto;grid-template-columns: 1fr;display: block;}
.about__content{ width: 100%; } 
.news__inner{margin: 32px 5%;}
.news-item{display: block;}
.news-item time{display: block;width: 160px;margin-bottom: 4px;}
.section-head__title{font-size: 46px;}
.overlap-card{width: 100%;} 
.banners{padding: 32px 0;background-color: #F4F4F4;}
.banners__grid{width: 100%; grid-template-columns: 1fr;width: 90%;margin: 0 auto; }
.banners__wide{margin-top: 0px;padding-top: 40px;
}
.wide-card{ width: 100%;grid-template-columns: 1fr;}
.wide-card__text{padding: 28px 22px;}
.wide-card__en {text-align: center;}
.wide-card__jp{text-align: center;font-size: 18px; /* SPは少しだけ落とすと収まり良い */}
.wide-card__photo{min-height: 180px;}
.cta__grid{grid-template-columns: 1fr;}
.cta-card__inner{height:100%;padding: 32px 0;}

/* 中ページ */
#page_wrap{max-width: 90%;padding: 32px 0;margin: 0 auto;}
.page_title{height: 200px;padding-top: 100px;}
.page_title__en{font-size: 8vw;}
.page_title__jp{font-size: 1rem;}

/* 教授挨拶 */
.greeting_col{flex-direction: column-reverse;}
.greeting .txt_area{max-width: 100%;margin-right: 0px;margin-top: 32px;}
.greeting .photo_area{max-width: 100%;}

/* リクルート */
.recruit_box{max-width: 100%;padding: 24px;}

/* お問い合わせ */
.contact_box{max-width: 100%;padding: 32px;}

/* ワクチンページのポスター画像 */
.vaccine-clinic-poster img{
    margin: 32px auto 32px auto;
}


/* footer */
.site-footer{padding: 32px 0;}
.footer__inner{display: block;}
.footer__left .col{margin: 0 auto;text-align: center;width: 90%;}
.footer__addr {margin: 18px auto;text-align: center;}
.footer__copy {text-align: center;}



}