@charset "UTF-8";
:root {
  --color-main:#333;
  --color-red:#CF0000;
  --color-cream:#F6F5EE;
  --color-cream2:#F4F0E6;
  --color-darkcream:#A9AA8C;
  --color-brown:#836E69;
  --color-green:#1E7E8F;
}

/*-------------------------------------------------------------------

	Init

-------------------------------------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  color: var(--color-main);
  font-size: 1.5rem;
  line-height: 2;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.02em;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, p, ul, ol, dl, dt, dd, figure {
  margin: 0;
  padding: 0;
}

ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.5;
  font-size: 1em;
}

address {
  font-style: inherit;
}

a {
  color: inherit;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

p {
  margin-bottom: 1em;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

img[src$=".svg"] {
  width: 100%;
  height: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

hr {
  border: none;
  height: 1px;
  background: #1a1a1a;
  margin-bottom: 1em;
}

figure {
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

input[type=submit]:hover {
  cursor: pointer;
}

/* ----------------------------------------------------------
   SP：〜768px
   デザイン幅390px基準
   10 / 390 * 100 = 2.5641vw
   ---------------------------------------------------------- */
@media (max-width: 768px) {
  html {
    font-size: 2.5641vw;
  }
}
/* ----------------------------------------------------------
   PC：769px〜1280px
   デザイン幅1280px基準
   10 / 1280 * 100 = 0.74626vw
   ---------------------------------------------------------- */
@media (min-width: 769px) {
  html {
    font-size: 0.78125vw;
  }
  body {
    font-size: 2rem;
  }
}
/* ----------------------------------------------------------
   PC：1281px以上
   1280pxを超えたらフォントサイズ固定
   ---------------------------------------------------------- */
@media (min-width: 1281px) {
  html {
    font-size: 62.5%;
  }
}
/*-------------------------------------------------------------------

	 COMMON

-------------------------------------------------------------------*/
body {
  background-color: var(--color-cream);
}

/*font*/
.montserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.montserrat.ex-light {
  font-weight: 200;
}

.montserrat.medium {
  font-weight: 500;
}

.montserrat.semi-bold {
  font-weight: 600;
}

.montserrat.bold {
  font-weight: 700;
}

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

.shippori-mincho.medium {
  font-weight: 500;
}

.shippori-mincho.semi-bold {
  font-weight: 600;
}

.shippori-mincho.bold {
  font-weight: 700;
}

.shadow-basic {
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.05);
}

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

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

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

.radius-basic {
  border-radius: var(--radius-basic);
}

.l-main {
  overflow: hidden;
}

.wrapper {
  padding-left: 2rem;
  padding-right: 2rem;
  margin-inline: auto;
}

/*gsap*/
.js-fade-in {
  opacity: 0;
  transform: translateY(30px);
  visibility: hidden;
}

@media (min-width: 769px) {
  :root {
    --radius-basic:1.6rem;
  }
  .wrapper.x-small {
    max-width: 78.4rem;
  }
  .wrapper.small {
    max-width: 97.6rem;
  }
  .wrapper.medium {
    max-width: 116.8rem;
  }
  .wrapper.large {
    max-width: 136rem;
  }
  .shadow-basic {
    box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.05);
  }
}
/*-------------------------------------------------------------------

	 OPENING AND MV

-------------------------------------------------------------------*/
#opening-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff url(../img/noize-loop.png);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden;
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 1s ease-in-out;
  pointer-events: none;
}

#opening-overlay.zoom-out {
  transform: scale(2.5);
  opacity: 0;
}

/* ロゴのサイズ調整用 */
.logo-container {
  width: 80px;
  height: 80px;
}

svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.logo-circle {
  fill: none !important;
  /* 黒色を絶対に出さない */
  stroke: none;
  transition: stroke-dashoffset 0.8s ease, fill 0.6s ease, stroke 0.6s ease;
}

.logo-circle.is-drawing {
  stroke: #dddddd !important;
  stroke-width: 1;
}

.logo-circle.is-coloring {
  fill: var(--logo-color) !important;
  stroke: transparent !important;
}

.main-visual-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 10;
  color: #ffffff;
}

.main-visual-text .lead {
  writing-mode: vertical-rl;
  font-size: 12.3076923077vw;
  line-height: 1.3;
}

.main-visual-text .lead .line1,
.main-visual-text .lead .line2 {
  transform: translateY(0.5em);
  opacity: 0;
  filter: blur(60px);
  visibility: hidden;
}

.main-visual-text .lead .line1 {
  transition: opacity 1.6s ease-out 0.5s, transform 1.6s ease-out 0.5s, filter 1.2s ease-out 0.5s;
}

.main-visual-text .lead .line2 {
  transition: opacity 1.6s ease-out 1s, transform 1.6s ease-out 1s, filter 1.2s ease-out 1s;
}

.main-visual-text .lead .line1 {
  display: inline-block;
}

.main-visual-text .lead .line2 {
  display: inline-block;
  padding-top: 3em;
}

.main-visual-text .lead .line1.is-visible,
.main-visual-text .lead .line2.is-visible {
  opacity: 1;
  filter: blur(0);
  visibility: visible;
  transform: translateY(0);
}

.main-visual-text .mv-logo {
  transform: translateY(0.5em);
  width: 76%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.6s ease-out 2s, transform 1.6s ease-out 2s;
  margin-top: 17.9487179487vw;
}

.main-visual-text .mv-logo.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/*------------------
  mv scroll 
------------------*/
.scroll-container {
  position: absolute;
  bottom: 0;
  right: 2%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: #fff;
  letter-spacing: 0.1em;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.6s ease-out 3s, transform 1.6s ease-out 3s;
}

.scroll-container.is-visible {
  opacity: 1;
  visibility: visible;
}

.scroll-text {
  font-size: min(3.5897435897vw, 16px);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 40px; /* 線の通り道の長さ */
  background-color: rgba(255, 255, 255, 0.2); /* 薄いガイド線 */
  position: relative;
  overflow: hidden; /* はみ出た線を隠す */
}

.scroll-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff; /* 動く線の色 */
  animation: scroll-anim 2.5s cubic-bezier(0.15, 0.41, 0.69, 0.94) infinite;
}

@keyframes scroll-anim {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  30% {
    transform: scaleY(1);
    transform-origin: top;
  }
  60% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
/* ------------------
  mv swipwer
------------------ */
#main-content {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  position: relative;
}

.swiper {
  width: 100%;
  height: 100vh;
  height: 100svh;
}

.swiper-img {
  height: 100%;
}

.swiper-slide-active .swiper-img,
.swiper-slide-duplicate-active .swiper-img,
.swiper-slide-prev .swiper-img {
  animation: zoomUp 12s linear 0s normal both;
}

.swiper-orign-cl .swiper-img {
  transform-origin: center left;
}

.swiper-orign-cr .swiper-img {
  transform-origin: center right;
}

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

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
@media (min-width: 769px) {
  /* ロゴのサイズ調整用 */
  .logo-container {
    width: 120px;
    height: 120px;
  }
  .main-visual-text {
    justify-content: center;
    align-items: flex-start;
    padding: 0 7.9365079365vw;
  }
  .main-visual-text .lead {
    writing-mode: horizontal-tb;
    font-size: min(7.9365079365vw, 140px);
  }
  .main-visual-text .lead .line2 {
    padding-top: 0;
  }
  .main-visual-text .mv-logo {
    transform: translateY(1em);
    width: min(28.4391534392vw, 460px);
    margin-top: 2.6455026455vw;
  }
  .scroll-container {
    right: 3%;
    gap: 10px;
  }
  .scroll-line {
    height: 60px;
  }
}
/*-------------------------------------------------------------------

	 message

-------------------------------------------------------------------*/
.message-section {
  position: relative;
  overflow: hidden;
  background: var(--color-cream) url(../img/noize-loop.png) repeat 0 0;
  z-index: 20;
}
.message-section_inner {
  position: relative;
  padding-top: 6.4rem;
  padding-bottom: 12rem;
}
.message-section .pin-spacer {
  mix-blend-mode: multiply;
}
.message-section .fixed-heading {
  width: 100%;
  font-size: 7.2rem;
  line-height: 1;
  color: var(--color-darkcream);
  text-align: center;
  letter-spacing: 0;
  margin-bottom: 4rem;
  z-index: 10;
}
.message-section .fixed-heading .s-text {
  display: block;
}
.message-section .message-lead {
  position: relative;
  font-size: 2rem;
  line-height: 2.2;
  text-align: center;
  z-index: 20;
}
.message-section .message-photo {
  position: relative;
  z-index: 2;
}
.message-section .message-photo figure {
  overflow: hidden;
  border-radius: 0.8rem;
  margin-bottom: 2.4rem;
}
.message-section .message-photo .photo1 {
  width: 26rem;
  margin-right: 0;
  margin-left: auto;
}
.message-section .message-photo .photo2 {
  width: 28rem;
}
.message-section .message-photo .photo3 {
  width: 26rem;
  margin-right: 0;
  margin-left: auto;
}
.message-section .message-photo .photo4 {
  width: 28rem;
}
.message-section_inner2 {
  position: relative;
  padding-top: 6.4rem;
  padding-bottom: 6.4rem;
}
.message-section_inner2 .s-zindex {
  position: relative;
  z-index: 2;
}
.message-section_inner2 .s-title-en {
  font-size: 6.4rem;
  line-height: 1;
  color: var(--color-brown);
  mix-blend-mode: multiply;
  margin-bottom: 2.3rem;
}
.message-section_inner2 .s-title-jp {
  font-size: 2.2rem;
  line-height: 1.3;
  color: var(--color-brown);
  margin-bottom: 4.3rem;
}
.message-section_inner2 .s-sub-title {
  font-size: 2.6rem;
  line-height: 1.6;
  margin-bottom: 2.4rem;
}
.message-section .doctor-message {
  margin-bottom: 2.4rem;
}
.message-section .doctor-message_photo {
  width: 85.7%;
  margin: 0 auto 1.8rem;
}
.message-section .doctor-profile {
  background-color: white;
  border-radius: 0.8rem;
  border: 1px solid #DDD;
  padding: 2.4rem;
  font-size: 1.4rem;
}
.message-section .doctor-profile_title {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 1em;
}
.message-section .doctor-profile > :last-child {
  margin-bottom: 0;
}
.message-section .circle {
  position: absolute;
  z-index: 1;
}
.message-section .circle.circle1 {
  width: 74rem;
  top: 7rem;
  right: 2rem;
  opacity: 0.4;
}
.message-section .circle.circle2 {
  width: 69rem;
  top: 105rem;
  left: 3rem;
  opacity: 0.3;
}
.message-section .circle.circle3 {
  width: 70rem;
  top: 8rem;
  right: 5rem;
  opacity: 0.4;
}
.message-section .circle.circle4 {
  width: 65rem;
  top: 81rem;
  left: 6.2rem;
  opacity: 0.3;
}

@media (min-width: 769px) {
  .message-section_inner {
    padding-top: 12rem;
    padding-bottom: 17.6rem;
  }
  .message-section .fixed-heading {
    font-size: 17rem;
    margin-bottom: 0 3.2rem;
  }
  .message-section .fixed-heading .s-text {
    display: inline-block;
  }
  .message-section .fixed-heading .s-text:last-child {
    margin-left: 2rem;
  }
  .message-section .message-lead {
    font-size: 3.2rem;
    margin-bottom: 7.2rem;
  }
  .message-section .message-photo {
    margin-left: -4.8rem;
    margin-right: -4.8rem;
  }
  .message-section .message-photo figure {
    border-radius: 1.6rem;
    margin-bottom: 0;
  }
  .message-section .message-photo.line1, .message-section .message-photo.line2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .message-section .message-photo.line2 {
    margin-top: -3rem;
  }
  .message-section .message-photo .photo1 {
    width: 55.2rem;
    margin-left: 4.8rem;
    margin-right: auto;
  }
  .message-section .message-photo .photo2 {
    width: 45.6rem;
    margin-left: auto;
    margin-right: 0;
  }
  .message-section .message-photo .photo3 {
    width: 45.6rem;
    margin-left: 0;
    margin-right: auto;
  }
  .message-section .message-photo .photo4 {
    width: 55.2rem;
    margin-left: auto;
    margin-right: 4.8rem;
  }
  .message-section_inner2 {
    padding-top: 8.8rem;
    padding-bottom: 17.6rem;
  }
  .message-section_inner2 .s-title-en {
    font-size: 11.2rem;
    margin-bottom: 3.2rem;
  }
  .message-section_inner2 .s-title-jp {
    font-size: 3.2rem;
    margin-bottom: 7.2rem;
  }
  .message-section_inner2 .s-sub-title {
    font-size: 3.6rem;
    line-height: 1.6;
    margin-bottom: 3.2rem;
  }
  .message-section .doctor-message {
    margin-bottom: 8rem;
    display: flex;
  }
  .message-section .doctor-message_photo {
    width: 45.6rem;
    margin: 0 0 0 2.4rem;
    order: 2;
  }
  .message-section .doctor-message_text {
    flex: 1;
    order: 1;
  }
  .message-section .doctor-profile {
    border-radius: 1.6rem;
    padding: 4rem;
    font-size: 1.8rem;
  }
  .message-section .doctor-profile_title {
    font-size: 2rem;
  }
  .message-section .circle.circle1 {
    width: 137.6rem;
    top: 7rem;
    right: 22.8rem;
  }
  .message-section .circle.circle2 {
    width: 88.6rem;
    top: 116.6rem;
    left: 70.5rem;
  }
  .message-section .circle.circle3 {
    width: 88.6rem;
    top: 10.2rem;
    right: 53.2rem;
  }
  .message-section .circle.circle4 {
    width: 75.7rem;
    top: 76rem;
    left: 66.1rem;
  }
}
/*-------------------------------------------------------------------

	contents

-------------------------------------------------------------------*/
.contents-section {
  position: relative;
}
.contents-section_inner {
  position: relative;
  padding-top: 7.2rem;
  padding-bottom: 4rem;
  z-index: 2;
}
.contents-section_inner > :last-child {
  margin-bottom: 0 !important;
}
.contents-section .contents-bg {
  position: absolute;
  width: 24.4rem;
  top: 9.6rem;
  bottom: 0;
  left: 0;
  border-radius: 0 3.2rem 3.2rem 0;
  background: var(--color-cream2) url(../img/noize-loop.png) repeat 0 0;
  overflow: hidden;
  z-index: 1;
}
.contents-section.right .contents-bg {
  border-radius: 3.2rem 0 0 3.2rem;
  left: auto;
  right: 0;
}
.contents-section_title {
  font-size: 2.8rem;
  line-height: 1.5;
  color: var(--color-green);
  margin-bottom: 3.2rem;
  letter-spacing: 0;
}
.contents-section_title > .large {
  font-size: 3rem;
}
.contents-section_title > .small {
  font-size: 1em;
}
.contents-section.right .contents-section_title {
  text-align: right;
}
.contents-section .flex-block {
  margin-bottom: 4rem;
}
.contents-section .flex-block .s-photo-wrapper {
  position: relative;
  margin-bottom: 2.4rem;
}
.contents-section .flex-block .s-photo-wrapper .s-photo {
  position: relative;
  border-radius: 0.8rem;
  overflow: hidden;
  z-index: 1;
}
.contents-section .flex-block .s-photo-wrapper .bg-rect {
  position: absolute;
  border-radius: 0.8rem;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  z-index: 0;
}
.contents-section .flex-block .s-text {
  position: relative;
  z-index: 2;
}
.contents-section .flex-block .s-photo-wrapper.yoko {
  width: 33rem;
}
.contents-section .flex-block .s-photo-wrapper.yoko .bg-rect {
  top: 12.8rem;
  left: 2rem;
}
.contents-section .flex-block .s-photo-wrapper.tate {
  width: 21rem;
  margin-right: 3.2rem;
  margin-left: auto;
}
.contents-section .flex-block .s-photo-wrapper.tate .bg-rect {
  top: 8rem;
  left: -8rem;
}
.contents-section .flex-block .s-photo-wrapper.square {
  width: 37rem;
  margin-right: -2rem;
}
.contents-section .flex-block .s-photo-wrapper.square .bg-rect {
  top: 17.3rem;
  left: -1rem;
}

@media (min-width: 769px) {
  .contents-section_inner {
    position: relative;
    padding-top: 14.4rem;
    padding-bottom: 12.8rem;
  }
  .contents-section .contents-bg {
    width: 74.6%;
    top: 21.6rem;
    border-radius: 0 5.6rem 5.6rem 0;
  }
  .contents-section.right .contents-bg {
    border-radius: 5.6rem 0 0 5.6rem;
  }
  .contents-section_title {
    font-size: 8rem;
    margin-bottom: 8rem;
  }
  .contents-section_title > .large {
    font-size: 8.8rem;
  }
  .contents-section_title > .small {
    font-size: 7.2rem;
  }
  .contents-section .flex-block {
    display: flex;
    align-items: center;
    margin-bottom: 8rem;
  }
  .contents-section .flex-block .s-photo-wrapper {
    margin-bottom: 0;
  }
  .contents-section .flex-block .s-photo-wrapper .s-photo {
    border-radius: 1.6rem;
  }
  .contents-section .flex-block .s-photo-wrapper .bg-rect {
    border-radius: 1.6rem;
  }
  .contents-section .flex-block .s-text {
    flex: 1;
  }
  .contents-section .flex-block .s-photo-wrapper.yoko {
    width: 55.2rem;
    margin-left: 5.6rem;
    order: 2;
  }
  .contents-section .flex-block .s-photo-wrapper.yoko .bg-rect {
    top: 6.4rem;
    left: -29rem;
  }
  .contents-section .flex-block .s-photo-wrapper.tate {
    width: 36rem;
    margin-right: 5.6rem;
    margin-left: 0;
  }
  .contents-section .flex-block .s-photo-wrapper.tate .bg-rect {
    top: 6.4rem;
    left: 29rem;
  }
  .contents-section .flex-block .s-photo-wrapper.square {
    width: 74.4rem;
    margin-left: 5.6rem;
    margin-right: -19.2rem;
    order: 2;
  }
  .contents-section .flex-block .s-photo-wrapper.square .bg-rect {
    top: 6.4rem;
    left: -29rem;
  }
}
/*-------------------------------------------------------------------

	recruit

-------------------------------------------------------------------*/
.recruit-section {
  margin-top: 4rem;
}
.recruit-section_inner {
  padding: 4.8rem 0 6.8rem;
  text-align: center;
}
.recruit-section_en {
  display: block;
  font-size: 9.6rem;
  line-height: 1;
  letter-spacing: 0;
  color: var(--color-cream);
  margin-bottom: 0.8rem;
}
.recruit-section_title {
  font-size: 2.4rem;
  line-height: 1.5;
  color: white;
  margin-bottom: 4.6rem;
}
.recruit-section_button a {
  display: flex;
  align-items: center;
  margin-inline: auto;
  font-size: 1.4rem;
  line-height: 1;
  text-decoration: none;
  color: var(--color-green);
  background-color: white;
  border-radius: 10rem;
  border: 4px solid var(--color-green);
  padding: 2.5rem 3.5rem;
  width: fit-content;
  box-shadow: 0 0 0 transparent; /* 初期状態の影は透明 */
  transition: all 0.3s ease;
  cursor: pointer;
}
.recruit-section_button a > span {
  display: block;
}
.recruit-section_button a .arrow {
  width: 1.4em;
  height: 1.4em;
  margin-left: 0.5em;
  background: url(../img/ico_arrow-right.svg) no-repeat center center;
  background-size: cover;
  transition: all 0.3s ease;
}
.recruit-section_button a:hover {
  border-color: #82CDDA;
  box-shadow: 0 0 16px 2px #82CDDA;
}
.recruit-section_button a:hover .arrow {
  transform-origin: bottom center;
  transform: rotate(-45deg) translateX(1rem);
}

.window-container {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.tall-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-image: url("../img/recruit-back_sp.jpg");
  background-size: cover;
  background-position: center;
  z-index: -1;
  /* GSAPで動かす前、初期状態は上端を合わせておく */
  transform: translateY(0);
}

/* 前面のテキスト */
.content-text {
  z-index: 1;
}

@media (min-width: 769px) {
  .recruit-section {
    margin-top: 13.2rem;
  }
  .recruit-section_inner {
    padding: 6.4rem 0 9.4rem;
  }
  .recruit-section_en {
    font-size: 22rem;
    margin-bottom: 0.4rem;
  }
  .recruit-section_title {
    font-size: 4rem;
    margin-bottom: 6.4rem;
  }
  .recruit-section_button a {
    font-size: 2.4rem;
    border-width: 8px;
    padding: 3rem 6rem;
  }
  .recruit-section_button a:hover {
    box-shadow: 0 0 24px 3px #82CDDA;
  }
  .tall-bg {
    height: 164%;
    background-image: url("../img/recruit-back_pc.jpg");
  }
}
/*-------------------------------------------------------------------

	clinic

-------------------------------------------------------------------*/
.clinic-section_inner {
  padding-top: 4.8rem;
  padding-bottom: 3.2rem;
}
.clinic-section_en {
  display: block;
  font-size: 4.8rem;
  line-height: 1;
  color: var(--color-darkcream);
  opacity: 0.5;
  margin-bottom: 4rem;
}
.clinic-section_wrap {
  display: flex;
  justify-content: space-between;
}
.clinic-section_title {
  writing-mode: vertical-rl;
  font-size: 2.4rem;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
.clinic-section_title > small {
  font-size: 1.8rem;
}
.clinic-section .s-clinic-list {
  width: 27rem;
}
.clinic-section .s-clinic-list > :last-child {
  margin-bottom: 0;
}
.clinic-section .s-clinic-list_item {
  background-color: var(--color-cream2);
  border-radius: 0.8rem;
  overflow: hidden;
  margin-bottom: 1.6rem;
  font-size: 1.3rem;
  line-height: 1.5;
}
.clinic-section .s-clinic-list_item .s-info {
  display: block;
  padding: 2.4rem 1.6rem;
  text-decoration: none;
  cursor: pointer;
}
.clinic-section .s-clinic-list_item .s-info p {
  margin-bottom: 0.5em;
}
.clinic-section .s-clinic-list_item .s-title {
  font-size: 1.5rem;
  margin-bottom: 0.3em;
}
.clinic-section .s-clinic-list_item .s-link {
  display: block;
  font-size: 1.2rem;
}
.clinic-section .s-clinic-list_item .s-link:after {
  content: "";
  display: inline-block;
  margin-left: 0.2em;
  width: 1.5em;
  height: 0.8em;
  background: url(../img/ico_arrow-right2.svg) no-repeat center center;
  background-size: cover;
}

@media (min-width: 769px) {
  .clinic-section_inner {
    padding-top: 11.2rem;
    padding-bottom: 6.4rem;
  }
  .clinic-section_en {
    font-size: 9.6rem;
    margin-bottom: 7.2rem;
  }
  .clinic-section_title {
    padding-left: 2rem;
    font-size: 3.2rem;
  }
  .clinic-section_title > small {
    font-size: 2.4rem;
  }
  .clinic-section .s-clinic-list {
    width: 96rem;
  }
  .clinic-section .s-clinic-list_item {
    display: flex;
    margin-bottom: 4.8rem;
    font-size: 1.6rem;
  }
  .clinic-section .s-clinic-list_item:nth-child(even) .s-photo {
    order: 2;
  }
  .clinic-section .s-clinic-list_item:nth-child(even) .s-info {
    order: 1;
  }
  .clinic-section .s-clinic-list_item .s-photo {
    width: 48rem;
  }
  .clinic-section .s-clinic-list_item .s-info {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 2.4rem 4rem;
  }
  .clinic-section .s-clinic-list_item .s-info_inner {
    display: block;
  }
  .clinic-section .s-clinic-list_item .s-info p {
    margin-bottom: 1em;
  }
  .clinic-section .s-clinic-list_item .s-title {
    font-size: 2rem;
  }
  .clinic-section .s-clinic-list_item .s-link {
    font-size: 1.4rem;
  }
}
/*-------------------------------------------------------------------

	footer

-------------------------------------------------------------------*/
.footer {
  padding-top: 4.8rem;
  padding-bottom: 4.8rem;
}
.footer_logo {
  width: 23.8rem;
  margin: 0 auto 2.4rem;
}
.footer_tel {
  font-size: 3.2rem;
  line-height: 1;
  text-align: center;
  margin-bottom: 3.2rem;
}
.footer_tel a {
  text-decoration: none;
}
.footer_copy {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 0;
}

@media (min-width: 769px) {
  .footer {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  .footer_logo {
    width: 40rem;
    margin: 0 auto 3.2rem;
  }
  .footer_tel {
    font-size: 4.8rem;
    margin-bottom: 5.2rem;
  }
  .footer_copy {
    font-size: 1.4rem;
  }
}