@charset "utf-8";
/* CSS Document */
*, ::before, ::after {
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
}
body {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  font-style: normal;
  font-weight: normal;
  font-size: 1.2rem;
  color: #333;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  z-index: 0;
  font-feature-settings: "pkna"1;
  overflow-x: hidden;
  font-optical-sizing: auto;
}
.min {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
}
.en {
  font-family: "Pinyon Script", cursive;
}
a {
  text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0;
  font-weight: 400;
  font-size: inherit;
  font-feature-settings: "palt";
  line-height: 1.65;
}
p {
  margin-bottom: 0;
}
pre {
  margin-bottom: 0;
}
dl {
  margin-bottom: 0;
}
ul {
  margin-bottom: 0;
}
ol {
  margin-bottom: 0;
  list-style: decimal;
  padding-left: 1em;
}
img {
  max-width: 100%;
}
/*-----------------------------------------------------------------

ハンバーガーメニュー

-----------------------------------------------------------------*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh; /*ナビの高さ*/
  background: #99140f;
  /*動き*/
  transition: all 0.6s;
}
/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  right: 0;
}
/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh; /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
/*ナビゲーション*/
#g-nav ul {
  position: static;
  top: auto;
  left: auto;
  transform: none;
  padding: 20px;
}
#g-nav li {
  margin-bottom: 10px;
}
/*リストのレイアウト設定*/
#g-nav li {
  list-style: none;
  text-align: center;
}
#g-nav li a {
  color: #FFFFFF;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
  font-size: 1.6rem;
  text-align: center;
}
#g-nav li button
{
   color: #FFFFFF;
  text-decoration: none;
  padding: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
  font-size: 1.6rem;
  text-align: center;
    position: relative;
    width: 100%;
}
.sp-submenu {
  display: none;
  padding-left: 20px;
}
.sp-submenu li a {
  font-size: 1.4rem;
  padding: 10px 0;
  color: #fff;
  text-align: left;
}
.sp-submenu-btn::after {
  content: "＋";
  float: right;
}
.sp-submenu-btn.active::after {
  content: "－";
}
/*========= ボタンのためのCSS ===============*/
.openbtn1 {
  position: fixed;
  z-index: 9999; /*ボタンを最前面に*/
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background: #99140f;
}
/*×に変化*/
.openbtn1 span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #FFFFFF;
  width: 45%;
}
.openbtn1 span:nth-of-type(1) {
  top: 15px;
}
.openbtn1 span:nth-of-type(2) {
  top: 23px;
}
.openbtn1 span:nth-of-type(3) {
  top: 31px;
}
.openbtn1.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn1.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
/*==================================================
メインビジュアル
===================================*/
.slider {
  position: relative;
  z-index: 0;
  height: 100vh;
  /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
  width: calc(100% - 234px);
  max-height: 810px;
}
/*　背景画像設定　*/
.slider-item01 {
  background: url("images/mv01.png");
}
.slider-item02 {
  background: url("images/mv02.png");
}
.slider-item03 {
  background: url("images/mv03.png");
}
.slider-item {
  width: 100%; /*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
  background-repeat: no-repeat; /*背景画像をリピートしない*/
  background-position: center; /*背景画像の位置を中央に*/
  background-size: cover; /*背景画像が.slider-item全体を覆い表示*/
  height: 100vh;
  max-height: 810px;
}
/*矢印の設定*/
.mv .slick-prev, .mv .slick-next {
  display: none !important;
  position: absolute;
  z-index: 3;
  top: 42%;
  cursor: pointer; /*マウスカーソルを指マークに*/
  outline: none; /*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid #fff; /*矢印の色*/
  border-right: 2px solid #fff; /*矢印の色*/
  height: 25px;
  width: 25px;
}
.slick-prev { /*戻る矢印の位置と形状*/
  left: 2.5%;
  transform: rotate(-135deg);
}
.slick-next { /*次へ矢印の位置と形状*/
  right: 2.5%;
  transform: rotate(45deg);
}
/*ドットナビゲーションの設定*/
.mv .slick-dots {
  display: none !important;
  position: relative;
  z-index: 3;
  text-align: center;
  margin: -50px 0 0 0; /*ドットの位置*/
}
.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}
.slick-dots button {
  color: transparent;
  outline: none;
  width: 8px; /*ドットボタンのサイズ*/
  height: 8px; /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #fff; /*ドットボタンの色*/
}
.slick-dots .slick-active button {
  background: #333; /*ドットボタンの現在地表示の色*/
}
/*--------------------------------------------------------------------------*/
header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mv {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-height: 810px;
}
.header_contents {
  display: flex;
  width: calc(504 / 1920* 100vw);
}
.logo {
  padding: 10px;
  width: calc(367 / 1920* 100vw);
}
.mv_left {
  max-width: 170px;
  width: 20%;
  writing-mode: vertical-rl;
  font-size: max(2.6vw, 30px);
  align-content: center;
  padding-top: 3vw;
  font-weight: 500;
  line-height: 1.8;
}
.mv .mv_left {
  line-height: 1;
}
.mv_left span {
  font-size: max(1vw, 14px);
}
.mv_right {
  max-width: 64px;
  width: 10%;
  display: flex;
  padding-top: 1vw;
  writing-mode: vertical-rl;
  font-size: 1vw;
  font-weight: 500;
  height: 100%;
  letter-spacing: .1em;
}
.mv_right span.latin {
  writing-mode: horizontal-tb;
}
.mv_right .train {
  display: flex;
  align-items: center;
  padding: 1vw 10px;
  white-space: nowrap;
}
.mv_right .car {
  display: flex;
  align-items: center;
  border-top: 1px solid #333333;
  padding: 1vw 10px;
  white-space: nowrap;
}
.mv_right .train img, .mv_right .car img {
  margin-bottom: 1vw;
}
.mv_time {
  position: absolute;
  left: 200px;
  bottom: 30px;
  background: rgba(255,255,255,0.90);
  padding: 20px;
}
.mv_time .note{
 margin-top:0;
 font-size: max(1.4vw, 20px);
 color: #333;
 line-height: 1.8;
 text-align: center;
 font-family: "Noto Serif JP", serif;
}
.mv_time strong{
  position: relative;
    padding: 0 .2em;
    z-index: 1;
    margin: 0 .3em;
    display: inline-block;
	color: #9e110d;
    font-size: max(2.4vw, 24px);
}
.mv_time strong:after{
    content: '';
    position: absolute;
    width: 100%;
    height: 45%;
    background: #ffda2f;
    left: 0;
    bottom: 0;
    z-index: -1;
}
.schedule {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  white-space: nowrap;
}
.schedule th, .schedule td {
  border: 1px solid #ccc;
  padding: 10px;
  font-size: max(1vw, 9px);
  vertical-align: middle;
}
.schedule td {
    width: max(5.2vw, 40px);
}
.schedule th {
  text-align: center;
}
.schedule tbody {
  background: #FFFFFF;
}
.schedule thead {
  background-color: #f4e6e6;
}
.note {
  margin-top: 10px;
  font-size: max(1vw, 14px);
  color: #333;
}
.mv_catch {
  position: absolute;
  right: 64px;
  bottom: 0;
  width: calc(336 / 1920* 100vw);
    z-index: 101;
}
@media screen and (max-width: 1280px) {
  .mv_catch {
    bottom: 0;
    width: calc(336 / 1920* 100vw)
  }
}
.nav-global {
  background: #fff;
  border-bottom: 1px solid #ccc;
}
.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: max(1vw, 16px);
  justify-content: center;
}
.nav-menu > li {
  position: relative;
}
.nav-menu > li > a {
  display: block;
  padding: 14px 3vw;
  text-decoration: none;
  color: #333;
  border-left: 1px solid #999;
}
.nav-menu > li:first-child > a {
  border-left: none;
}
.nav-item:hover > a {
  background: #eee;
}
.nav-item > button {
  display: block;
  padding: 14px 3vw;
  text-decoration: none;
  color: #333;
  border-left: 1px solid #999!important;
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
}
.nav-menu > li:first-child > button {
  border-left: none;
}
.nav-item > button:hover {
  background: #eee;
}

.nav-submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  background: #891b13;
  color: #fff;
  padding: 15px;
  min-width: 200px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
}
.nav-submenu a {
  display: block;
  color: #000;
  background: #fff;
  margin: 5px 0;
  padding: 15px;
  text-decoration: none;
  width: 15%;
  height: 50px;
  position: relative
}
.nav-submenu a::before {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 10px;
  height: 10px;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translate(-25%, -50%) rotate(45deg);
}
.nav-submenu a:hover {
  background: #eee;
}
.nav-wide {
  display: none;
  flex-direction: row;
  gap: 30px;
  min-width: 1450px;/*250626追記*/
  left: -480px;/*250626追記*/
}
.nav-wide .nav-left, .nav-wide .nav-right {
  padding: 15px;
  width: 200px;
  color: #333333;
}
.nav-wide .nav-left {
  background: #FFFFFF;
}
.nav-left a {
  width: 100%;
}
.nav-wide .nav-right {
  padding: 0;
}
.nav-wide .nav-right a {
  background: #FFFFFF;
  text-align: center;
  padding: 15px;
}
.nav-wide .nav-right a:hover {
  background: #eee;
}
.nav-title {
  font-weight: bold;
  border-bottom: 2px solid #891b13;
  margin-bottom: 10px;
  padding-bottom: 5px;
}
.g_navi {
  padding: 20px 0 0;
    position: sticky;
  top: 0;
  z-index: 100;
    background: #FFFFFF;
}
.first {
  padding: 80px 0;
  background: #f7f5f2;
}
.first_inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 90%;
  display: flex;
  flex-wrap: wrap;
  gap: 120px;
}

.first_inner .ttl {
  max-width: calc(20% - 60px);
  position: relative;
  font-size: max(2vw, 24px);
  padding: 5vw;
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 420px;
}
.first_inner .ttl::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: url("images/qa_ttl_top.png") no-repeat center / contain;
  width: calc(89 / 1920* 100vw);
  height: calc(177 / 1920* 100vw);
}
.first_inner .ttl::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: url("images/qa_ttl_bottom.png") no-repeat center / contain;
  width: calc(89 / 1920* 100vw);
  height: calc(177 / 1920* 100vw);
}
.first_inner .ttl .jp {
  font-size: max(2vw, 30px);
  font-weight: 500;
  writing-mode: vertical-rl;
}
.first_text
{
    width: calc(80% - 60px);
}
.first_text .line_btn a {
    height: calc(130 / 1920 * 100vw);
}
.first_text .line_btn a::before {
    content: "";
    bottom: calc(28 / 1920 * 100vw);
}
.first_text .line_btn {
    max-width: calc(250 / 1920 * 100vw);
    width: 100%;
    margin: 30px 0 0;
}
 .first_text ul {
    list-style: none;
    padding: 0;
    margin: 0 auto 1.5em;
}
    .first_text ul li {
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
        font-size: max(1vw , 16px);
        line-height: 1.8;
}
    .first_text ul .icon {
    margin-right: .2em;
}
    .first_text ul .icon, .first_text ul strong {
    color: #9e110d;
    font-size: 18px;
    font-size: max(1.4vw , 20px);
}
    .first_text ul strong {
    position: relative;
    padding: 0 .2em;
    z-index: 1;
    margin: 0 .3em;
    display: inline-block;
}
    .first_text ul strong:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 45%;
    background: #ffda2f;
    left: 0;
    bottom: 0;
    z-index: -1;
}
.qa_ttl {
  position: absolute;
  bottom: 30%;
  left: -3vw;
  color: #dfce01;
  font-size: max(3vw, 30px);
  white-space: nowrap;
}
.qa-container {
  margin: 20px auto;
  border-radius: 8px;
  overflow: hidden;
  font-size: max(1.1vw, 16px);
}
.qa-item {
  border: 2px solid #85bc1c;
  margin-bottom: 20px;
}
.qa-question {
  color: #333;
  padding: 20px;
  cursor: pointer;
  position: relative;
}
.qa-question::after {
  content: "";
  position: absolute;
  right: 20px;
  transition: transform 0.3s;
  color: #85bc1c;
  top: 50%;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  width: 14px;
  height: 14px;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translate(-25%, -50%) rotate(135deg);
}
.qa-question.active::after {
  transform: rotate(-40deg);
}
.qa-answer {
  display: none;
  padding: 0 20px 20px 20px;
}
.time{
  padding: 80px 0 0;
}
.news {
  padding: 80px 0;
}
.inner1280 {
  max-width: 1280px;
  width: 95%;
  margin: 0 auto;
}
.news_ttl {
  text-align: center;
  font-size: max(2vw, 24px);
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.news_ttl .jp {
  margin-left: 20px;
  font-size: max(1.1vw, 18px);
}
.news_ttl .first-letter {
  color: #99140f;
}
dl.news_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  height: 200px;
  overflow-y: scroll;
  padding: 20px;
  font-size: max(1vw, 16px);
}
dl.news_list dt {
  width: calc(20% - 10px);
  margin-bottom: 15px;
}
dl.news_list dt span {
  padding: 8px 20px;
  background: #99140f;
  color: #FFFFFF;
  border-radius: 50px;
}
dl.news_list dd {
  width: calc(80% - 10px);
  margin-bottom: 15px;
}

.parallax .parallax_text {
  letter-spacing: .18em;
  font-size: max(2.6vw, 20px);
  text-align: center;
  color: #FFFFFF;
  line-height: 1.8;
}
.clinic_title {
  margin: auto;
  background: url(images/clinic_ttl_bg.png) no-repeat center /contain;
  margin-top: calc(-160 / 1920* 100vw);
  width: calc(281 / 1920* 100vw);
  height: calc(405 / 1920* 100vw);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}
.clinic_title_text {
  font-size: max(2.4vw, 24px);
  position: relative;
  writing-mode: vertical-rl;
  z-index: 1
}
.clinic_title_text::after {
  content: "";
  background: url("images/clinic_introduction.png") no-repeat center / contain;
  margin: auto;
  position: absolute;
  bottom: -10%;
  left: 0;
  right: 0;
  width: calc(540 / 1920* 100vw);
  height: calc(125 / 1920* 100vw);
  z-index: -1;
}
.specialist-section {
  padding: 80px 0;
  position: relative;
  background: #fff;
}
.specialist-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  max-width: 95%;
  margin-right: auto;
}
.specialist-number {
  position: absolute;
  right: 0;
  top: 10%;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: max(1.2vw, 20px);
  color: #333;
  letter-spacing: 0.1em;
}
.specialist-img {
  flex: 0 0 60%;
}
.specialist-img img {
  width: 100%;
  height: auto;
}
.specialist-text {
  flex: 0 0 43%;
  padding-left: 5%;
  position: relative;
  margin-left: -10%;
  z-index: 2;
  padding: 30px;
}
.specialist-text .title {
  font-size: max(2.4vw, 24px);
  line-height: 1.5;
  margin-bottom: 10px;
}
.specialist-text .highlight {
  color: #99140f;
}
.specialist-text .sub-title {
  font-size: max(1.3vw, 18px);
  margin-bottom: 10px;
}
.specialist-text hr {
  margin: 20px 0;
  border: none;
  border-top: 1px solid #333;
}
.specialist-text .desc {
  font-size: max(1vw, 16px);
  line-height: 1.8;
  text-shadow: 0px 0px 5px #fff, 0px 0px 10px #fff, 0px 0px 15px #fff;
}
.specialist-icons {
  display: flex;
  gap: 20px;
  position: absolute;
  bottom: -160px;
  right: 0;
  width: calc(1140 / 1920* 100vw);
}
.specialist-icons .icon {
  text-align: center;
}
.r_reverse {
  flex-direction: row-reverse;
}
.r_reverse.specialist-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  max-width: 95%;
  margin-right: 0;
  margin-left: auto;
}
.r_reverse .specialist-number {
  left: 0;
  right: auto;
}
.r_reverse .specialist-text {
  margin-left: auto;
  margin-right: -10%;
}
.specialist-section02 {
  padding: calc(140 / 1920* 100vw) 0 calc(220 / 1920* 100vw);
  position: relative;
  background: #f7f5f2;
  /*margin-bottom: 80px;*/
}
.specialist-section03 {
  padding: 80px 0 160px;
  position: relative;
  background: #fff;
  margin-bottom: 80px;
}
.specialist-inner02 {
  position: relative;
  width: 95%;
  margin: auto;
  max-width: 760px;
}
.specialist-inner02 .specialist-text {
  margin-left: 0;
}
.specialist-section02 .specialist-number {
  right: 5%;
  top: 5%;
}
.pos {
  position: absolute;
}
.specialist_im01 {
  left: 5%;
  top: 5%;
  width: calc(512 / 1920* 100vw);
}
.specialist_im02 {
  right: 5%;
  bottom: 5%;
  width: calc(512 / 1920* 100vw);
}
.center {
  text-align: center;
}
.clinicinfo {
  overflow: hidden;
  padding: calc(400 / 1920* 100vw) 0 95px;
  position: relative;
}
.clinicinfo_bg {
  width: calc(1552 / 1920* 100vw);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.clinicinfo_text {
  font-size: max(2.2vw, 20px);
  position: absolute;
  left: 10%;
  top: 0;
  z-index: 1;
  width: calc(558 / 1920* 100vw);
  height: calc(719 / 1920* 100vw);
  background: url("images/clinicinfo_text_bg.png")no-repeat center / contain;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: .1em;
  line-height: 1.8;
}
.slider02 img {
  width: 100%; /*スライダー内の画像を横幅100%に*/
  height: auto;
}
/*slickのJSで書かれるタグ内、スライド左右の余白調整*/
.slider02 .slick-slide {
  margin: 0 10px; /*スライド左右の余白調整*/
}
.line_btn {
  max-width: calc(200 / 1920* 100vw);
  width: 100%;
  margin: auto;
}
.line_btn a {
  width: 100%;
  height: calc(200 / 1920* 100vw);
  padding-bottom: calc(25 / 1920* 100vw);
  border: 1px solid #333;
  position: relative;
  z-index: 1;
  font-size: max(1.2vw, 14px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.line_btn a::before {
  content: "";
  width: calc(41 / 1920* 100vw);
  height: calc(13 / 1920* 100vw);
  margin: auto;
  position: absolute;
  background: url("images/arrow.png") no-repeat center / contain;
  left: 0;
  right: 0;
  bottom: calc(75 / 1920* 100vw);
  z-index: -1;
  transition: .3s;
}
.line_btn a:hover::before {
  right: -25px;
  transition: .3s;
}
.clinicinfo .line_btn {
  margin-top: -70px;
}
.medical {
  padding: 80px 0;
}
.medical_title {
  margin: auto;
  background: url(images/medical_ttl_bg.png) no-repeat center /contain;
  width: calc(281 / 1920* 100vw);
  height: calc(405 / 1920* 100vw);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}
.medical_title_text {
  font-size: max(2.4vw, 24px);
  position: relative;
  writing-mode: vertical-rl;
  z-index: 1
}
.medical_title_text::after {
  content: "";
  background: url("images/medical.png") no-repeat center / contain;
  margin: auto;
  position: absolute;
  bottom: -10%;
  left: 0;
  right: 0;
  width: calc(540 / 1920* 100vw);
  height: calc(125 / 1920* 100vw);
  z-index: -1;
}
/* 共通 */
.medical-banner-container {
  width: 95%;
  margin: 0 auto;
}
.medical-banner-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2%;
  padding: 0;
  list-style: none;
  margin-top: 20px;
}
.medical-banner {
  flex: 1 1 30%;
  min-width: 280px;
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: background-image 0.3s ease;
}
.medical-banner-list2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2%;
  padding: 0;
  list-style: none;
  max-width: 1200px;
  width: 70%;
  margin: 20px auto;
}
.medical-banner-list2 .medical-banner {
  flex: 1 1 30%;
  min-width: 280px;
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: background-image 0.3s ease;
}
.medical-banner.male {
  background-image: url('images/male_bg.png');
}
.medical-banner:hover.male {
  background-image: url('images/male_hover.png');
}
.medical-banner.female {
  background-image: url('images/female_bg.png');
}
.medical-banner:hover.female {
  background-image: url('images/female_hover.png');
}
.medical-banner.child {
  background-image: url('images/child_bg.png');
}
.medical-banner:hover.child {
  background-image: url('images/child_hover.png');
}
.medical-banner.heart {
  background-image: url('images/heart_bg.png');
}
.medical-banner:hover.heart {
  background-image: url('images/heart_hover.png');
}
.medical-banner.general {
  background-image: url('images/general_bg.png');
}
.medical-banner:hover.general {
  background-image: url('images/general_hover.png');
}
.medical-banner.rehabilitation {
  background-image: url('images/rehabilitation_bg.png');
}
.medical-banner:hover.rehabilitation {
  background-image: url('images/rehabilitation_hover.png');
}
.medical-banner.free {
  background-image: url('images/free_bg.png');
}
.medical-banner:hover.free {
  background-image: url('images/free_hover.png');
}
.medical-banner.prevention {
  background-image: url('images/prevention_bg.png');
}
.medical-banner:hover.prevention {
  background-image: url('images/prevention_hover.png');
}
.medical-banner a {
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  text-decoration: none;
}
.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  text-align: center;
  max-height: 176px;
  height: 100%;
  text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.60), 0px 0px 2px rgba(0, 0, 0, 0.60), 0px 0px 2px rgba(0, 0, 0, 0.60);
}
/* 通常時アイコンと矢印 */
.banner-content .icon, .banner-content .arrow {
  display: block;
  margin: 0 auto 10px;
  max-width: 60px;
  transition: opacity 0.3s ease;
}
.banner-content .icon {
  margin-bottom: 3vw;
  max-width: 100px;
}
/* テキスト切り替え */
.text {
  transition: opacity 0.3s ease;
  font-size: max(1vw, 16px);
  line-height: 1.6;
}
.default-text {
  font-size: max(1.6vw, 22px);
  font-weight: bold;
  margin-bottom: 20px;
}
.hover-text {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  text-align: center;
  max-height: 176px;
  height: 100%;
  text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.60), 0px 0px 2px rgba(0, 0, 0, 0.60), 0px 0px 2px rgba(0, 0, 0, 0.60);
}
.hover-text .text {
  font-size: max(1.6vw, 22px);
  font-weight: bold;
  margin-bottom: 20px;
}
/*.hover-text li {
  font-size: max(1vw, 16px);
}*/
/* ホバー時の切り替え */
.medical-banner:hover .default-text, .medical-banner:hover .icon, .medical-banner:hover .arrow {
  opacity: 0;
}
.medical-banner:hover .hover-text {
  opacity: 1;
}
/* レスポンシブ */
@media screen and (max-width: 768px) {
  .medical-banner-list {
    flex-direction: column;
    gap: 20px;
  }
  .medical-banner {
    flex: 1 1 100%;
    width: 100%;
    aspect-ratio: 1;
  }
  .icon, .arrow {
    max-width: 40px;
  }
  .medical-banner-list2 {
    width: 100%;
    gap: 20px
  }
}
.greeting-section {}
.greeting-section .greeting-container {
  display: flex;
  align-items: flex-start;
  position: relative;
}
.greeting-section .greeting-left {
  width: 55%;
  position: relative;
  padding: 2rem 1rem;
  z-index: 1
}
.greeting-section .greeting-vertical-text {
  writing-mode: vertical-rl;
  text-orientation: upright;
  background-color: rgba(167, 89, 65, 0.80);
  color: #fff;
  padding: 20px;
  font-size: max(1.6vw, 20px);
  font-weight: 500;
  margin-bottom: 1rem;
  position: absolute;
  top: 2rem;
  left: 5%;
  letter-spacing: .1em;
  line-height: 1.8;
}

.greeting-section .greeting-doctor-image {
  width: 100%;
  padding-top: 5rem;
}
.greeting-section .greeting-doctor-info {
  padding-left: 1rem;
  display: flex;
  align-items: flex-start;
}
.greeting-section .greeting-doctor-link {
  border: 1px solid #333;
  display: inline-block;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
}
.greeting-section .greeting-doctor-name {
  font-size: max(1.8vw, 14px);
  display: flex;
  align-items: flex-end;
  font-weight: 500;
  gap: 20px;
}
.greeting-section .greeting-doctor-name .inchou {
  font-size: max(1vw, 14px);
}
.greeting-section .greeting-doctor-roman {
  font-size: max(0.9vw, 14px);
  color: #555;
}
.greeting-section .greeting-right {
  width: 70%;
  background-color: #f7f5f2;
  padding: 4rem 3rem 3rem 25%;
  margin-left: -20%;
  box-sizing: border-box;
  position: relative;
  min-height: calc(870 / 1920* 100vw);
}
.greeting-section .greeting-title {
  width: calc(430 / 1920* 100vw);
  margin-bottom: 1rem;
  position: absolute;
  right: 30px;
  top: 10px;
    z-index: 1;
}
.greeting-section .greeting-text h2 {
  font-size: max(1.4vw, 20px);
  font-weight: 500;
  margin-bottom: 30px;
  line-height: 1.6;
  letter-spacing: .1em;
}
.greeting-section .greeting-text p {
  font-size: max(1vw, 16px);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.greeting-section .greeting-doctor-info .line_btn a {
  margin-top: -30px
}
/* レスポンシブ */
@media screen and (max-width: 768px) {
  .greeting-section .greeting-vertical-text {
    left: 0;
	font-size: max(1.6vw, 16px);
  }
  .greeting .line_btn{
	margin-top: 60px;
  }
  .greeting-section .greeting-doctor-info{
    flex-direction: column-reverse
  }

  .parallax {
    background: url("images/clinic_bg.png") no-repeat center bottom / cover;
    background-size: auto;
    background-position: center;
    background-attachment: scroll;
    padding: 125px 0 305px;
  }
}

@media screen and (min-width: 768px) 
{
  .parallax {
    background: url("images/clinic_bg.png") no-repeat center bottom / cover;
    background-size: auto;
    background-position: top;
    background-attachment: fixed;
    padding: 125px 0 305px;
  }
}

.footer {
  background: #f7f5f2;
}
.footer_inner {
  padding: 80px 0;
  max-width: 1280px;
  width: 95%;
  margin: 0 auto;
}
.flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 50px;
}
.flex-2 {
  width: calc(50% - 25px);
}
.flex-3 {
  width: calc((100% - 50px) / 3);
}
.mt5 {
  margin-top: 50px;
}
.tc{
	text-align: center;
}
.footer-info {
  text-align: center;
  font-size: max(1vw, 16px);
  letter-spacing: .1em;
  line-height: 1.8;
}
.footer-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  justify-content: center;
}
.footer-access {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  background: #dac6ae;
  padding: 3vw;
}
.access-box {
  font-size: max(1vw, 16px);
  justify-content: flex-start;
  display: flex;
  gap: 10px;
  align-items: center;
}
.access-box i {}
.access-box .number {
  font-size: max(1.4vw, 24px);
  font-weight: 500;
  margin: 0 3px;
}
.f_time {
  max-width: 870px;
  width: 100%;
  margin: 50px auto 0;
}
.copy {
  text-align: center;
  font-size: 16px;
  color: #FFFFFF;
  padding: 20px;
  background: #99140f;
}
/*リンクの形状*/
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}
#page-top a:hover {
  opacity: .6
}
/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateX(100px);
}
/*　左の動き　*/
#page-top.LeftMove {
  animation: LeftAnime 0.5s forwards;
}
@keyframes LeftAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/*　右の動き　*/
#page-top.RightMove {
  animation: RightAnime 0.5s forwards;
}
@keyframes RightAnime {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 1;
    transform: translateX(100px);
  }
}

#r_float {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
    flex-direction: column;
}

/*リンクを右下に固定*/
#r_float {
  position: fixed;
  right: 0;
  top: 20%;
  z-index: 999;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateX(100px);
}
#r_float a:hover {
  opacity: .6
}
/*　左の動き　*/
#r_float.LeftMove {
  animation: LeftAnime 0.5s forwards;
}
@keyframes LeftAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/*　右の動き　*/
#r_float.RightMove {
  animation: RightAnime 0.5s forwards;
}
@keyframes RightAnime {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 1;
    transform: translateX(100px);
  }
}
/*--------------------------------------------------------------------------

下層ページ

--------------------------------------------------------------------------*/
.under_mv {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-height: 35vw;
}
.under_mv .mv_left span {
  display: block;
}
.h2_ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: max(3vw, 30px);
  text-align: center;
  height: 33vw;
  width: 100%;
    background: url("images/h2_bg.png")no-repeat center / cover;
}
.h2_ttl.clinic_mv
{
    background: url("images/h2_bg_clinic.png")no-repeat center / cover;
}
.h2_ttl.male_urology_mv
{
    background: url("images/h2_bg_male_urology.png")no-repeat center / cover;
}
.h2_ttl.female_urology_mv
{
    background: url("images/h2_bg_female_urology.png")no-repeat center / cover;
}
.h2_ttl.pediatric_urology_mv
{
    background: url("images/h2_bg_pediatric_urology.png")no-repeat center / cover;
}
.h2_ttl.infection_mv
{
    background: url("images/h2_bg_infection.png")no-repeat center / cover;
}
.h2_ttl.internal_mv
{
    background: url("images/h2_bg_internal.png")no-repeat center / cover;
}
.h2_ttl.rehabilitation_mv
{
    background: url("images/h2_bg_rehabilitation.png")no-repeat center / cover;
}
.h2_ttl.private_mv
{
    background: url("images/h2_bg_private.png")no-repeat center / cover;
}
.h2_ttl.vaccine_mv
{
    background: url("images/h2_bg_vaccine.png")no-repeat center / cover;
}
.h2_ttl.access_mv
{
    background: url("images/h2_bg_access.png")no-repeat center / cover;
}
.h2_ttl span {
  display: block;
  font-size: max(1.4vw, 18px);
}
.sec {
  padding: calc(80 / 1920* 100vw) 0;
}
.h3_ttl {
  text-align: center;
  padding: calc(88 / 1920* 100vw) 0;
  position: relative;
  font-size: max(2vw, 22px);
  font-weight: 600;
  margin-bottom: calc(50 / 1920* 100vw);
  letter-spacing: .1em;
}
.h3_ttl::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url("images/h3_bg.png") no-repeat center / contain;
  width: calc(251 / 1920* 100vw);
  height: calc(246 / 1920* 100vw);
  z-index: -1;
}
.philosophy_txt {
  writing-mode: vertical-rl;
  font-size: max(1.8vw, 20px);
  position: relative;
  letter-spacing: .1em;
  width: calc(420 / 1920* 100vw);
  height: calc(448 / 1920* 100vw);
  background: url("images/parentheses.png") no-repeat center / contain;
  background-size: 100%;
  background-color: rgba(255, 255, 255, 0.80);
  margin: 0 auto;
  align-content: center;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.8;
}
.philosophy_txt span {
  position: relative;
}
.philosophy_txt::before {
  content: "";
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  background: url("images/philosophy_txt.png") no-repeat center / contain;
  width: calc(657 /1920* 100vw);
  height: calc(181 / 1920* 100vw);
}
.parallax.philosophy {
  background: url("images/philosophy_bg.png") no-repeat center bottom / cover;
  padding: 125px 0;
}
.feature_ttl {
  text-align: center;
  font-size: max(2.4vw, 24px);
  background: url("images/feature_ttl_bg.png") no-repeat center / contain;
  width: calc(964 / 1920* 100vw);
  height: calc(222 / 1920* 100vw);
  position: relative;
  margin: 0 auto;
  align-content: center;
  font-weight: 500;
  letter-spacing: .1em;
  margin-bottom: calc(100 / 1920* 100vw);
}
.feature_ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("images/features.png") no-repeat center / contain;
  width: calc(482 / 1920* 100vw);
  height: calc(146 / 1920* 100vw);
  z-index: -1;
}
.feature_inner {
  max-width: 95%;
  width: 100%;
  margin: 0 auto;
}
.feature_wrap {
  width: calc(50% - 25px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: flex-start;
}
.feature_num {
  font-size: max(3vw, 24px);
  font-weight: 600;
  text-align: center;
}
.feature_num span {
  border-bottom: 1px solid #333333;
}
.feature_headttl {
  font-size: max(2vw, 20px);
  text-align: center;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: .1em
}
.t16 {
  font-size: max(1vw, 16px);
  letter-spacing: .1em;
  line-height: 1.8;
}
.t18 {
  font-size: max(1.1vw, 18px);
  letter-spacing: .1em;
  line-height: 1.8;
}
.bold {
  font-weight: 600;
}
.feature_wrap p {
  padding: 0 2vw;
}
.feature03 {
  max-width: 90%;
  margin: calc(80 / 1920* 100vw) auto calc(80 / 1920* 100vw)
}
.feature_text {
  width: calc(35% - 25px);
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.feature_img {
  width: calc(65% - 25px);
}
.feature03 .feature_num, .feature03 .feature_headttl {
  text-align: left;
}
.slider03 { /*横幅94%で左右に余白を持たせて中央寄せ*/
  width: 94%;
  margin: 0 auto;
}
.slider03 img {
  width: 50vw; /*スライダー内の画像を60vwにしてレスポンシブ化*/
  height: auto;
}
.slider03 .slick-slide {
  transform: scale(0.7);
  transition: all .5s; /*拡大や透過のアニメーションを0.5秒で行う*/
  opacity: 0.5; /*透過50%*/
}
.slider03 .slick-slide.slick-center {
  transform: scale(1); /*中央の画像のサイズだけ等倍に*/
  opacity: 1; /*透過なし*/
}
/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.slider03 .slick-prev, .slider03 .slick-next {
  position: absolute; /*絶対配置にする*/
  top: 40%;
  cursor: pointer; /*マウスカーソルを指マークに*/
  outline: none; /*クリックをしたら出てくる枠線を消す*/
  border-top: 3px solid #91422b; /*矢印の色*/
  border-right: 3px solid #91422b; /*矢印の色*/
  height: 20px;
  width: 20px;
  z-index: 1;
}
.slick-prev { /*戻る矢印の位置と形状*/
  left: 20.5%;
  transform: rotate(-135deg);
}
.slick-next { /*次へ矢印の位置と形状*/
  right: 20.5%;
  transform: rotate(45deg);
}
/*ドットナビゲーションの設定*/
.slick-dots {
  text-align: center;
  margin: 20px 0 0 0;
}
.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}
.slick-dots button {
  color: transparent;
  outline: none;
  width: 10px; /*ドットボタンのサイズ*/
  height: 10px; /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #c7aa5b; /*ドットボタンの色*/
}
.slick-dots .slick-active button {
  background: #91422b; /*ドットボタンの現在地表示の色*/
  width: 11px; /*ドットボタンのサイズ*/
  height: 11px; /*ドットボタンのサイズ*/
}
.content-cards {
  max-width: 1520px;
  margin: 50px auto;
  width: 95%;
}
.content-cards .card-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.content-cards .card {
  border: 1px solid #ddd;
  overflow: hidden;
  text-align: center;
}
.content-cards .card img {
  width: 100%;
  height: auto;
  display: block;
}
.content-cards .card-title {
  padding: 20px 0;
  color: #fff;
  font-size: max(1vw, 16px);
  font-weight: bold;
}
.card-text {
  padding: 1vw;
  text-align: left;
}
/* カードのカラー設定 */
.content-cards .card-color1 .card-title {
  background: #c7aa5b;
}
.content-cards .card-color2 .card-title {
  background: #85bc1c;
}
.content-cards .card-color3 .card-title {
  background: #91422b;
}
@media screen and (max-width: 900px) {
  .content-cards .card-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .content-cards .card-wrap {
    grid-template-columns: 1fr;
  }
}
.custom-download-block {
  margin-bottom: 50px;
}
.custom-title {
  font-weight: bold;
  font-size: max(1.2vw, 18px);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}
.custom-icon {
  width: 8px;
  height: 20px;
  background: linear-gradient(to bottom, #d5c273 50%, #7b0c0c 50%);
  margin-right: 8px;
}
.custom-buttons {
  display: flex;
  gap: 20px 80px;
  flex-wrap: wrap;
}
.custom-btn {
  display: inline-flex;
  align-items: center;
  padding: 20px;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  border-radius: 3px;
  position: relative;
  width: calc(50% - 40px);
  font-size: max(1vw, 16px);
  justify-content: center;
}
.custom-btn img.pdf-icon {
  width: calc(80 / 1920* 100vw);
  margin-left: 8px;
  position: absolute;
  right: 30px;
  bottom: 0;
}
.excel-btn {
  background-color: #c8ad68;
}
.pdf-btn {
  background-color: #93180d;
}
.excel-btn:hover {
  background-color: #bfa058;
}
.pdf-btn:hover {
  background-color: #7d130a;
}
.profile-block {
  display: flex;
  flex-wrap: wrap;
  padding: 30px;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.profile-name-box {
  margin-right: auto;
  max-width: 50%
}
.profile-block::before {
  content: "";
  background: #f6ecdd;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.profile-block.doc03 {
  min-height: calc(630 / 1920* 100vw);
}
.profile-left {
  flex: 1;
  min-width: 280px;
  max-width: 50%;
}
.profile-dept {
  font-size: max(1.6vw, 20px);
  font-weight: bold;
}
.profile-name {
  font-size: max(1.8vw, 24px);
  font-weight: bold;
  margin-bottom: 5px;
}
.profile-roman {
  font-size: max(1vw, 16px);
  color: #666;
  margin-bottom: 20px;
}
.profile-career h4 {
  font-weight: 500;
  font-size: max(1vw, 16px);
  border-bottom: 1px solid #932;
  margin-bottom: 20px;
  text-align: center;
  padding-bottom: 10px;
}
.profile-career ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.profile-career li {
  font-size: max(1vw, 16px);
  border-bottom: 2px dashed #bcbcbc;
  padding: 10px 0;
  display: flex;
  gap: 20px;
  letter-spacing: .1em;
}
.profile-career li span {
  white-space: nowrap;
  flex-shrink: 0;
}
.profile-right {
  text-align: center;
  margin-top: 20px;
  position: absolute;
  right: 10%;
  bottom: 50%;
  transform: translateY(50%);
}
.doc03 .profile-right {
  right: 0;
}
.profile-right img {
  height: auto;
  max-height: calc(750 / 1920* 100vw);
}
.doctor_deco {
  top: 50%;
  left: 50%;
  transform: translate(-30%, -50%);
  width: calc(208 / 1920* 100vw);
  max-width: 208px;
  min-width: 120px;
  height: auto;
}
/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .profile-block {
    flex-direction: column;
    padding: 20px;
  }
  .r_reverse .profile-block {
    flex-direction: column !important;
  }
  .profile-name-box {
    margin-right: auto;
    max-width: 100%;
  }
  .profile-right {
    margin-top: 20px;
    position: relative;
    bottom: 0;
    transform: translateY(0);
  }
  .profile-right img {
    max-height: 250px;
    margin: 0 auto;
  }
  .r_reverse .profile-name-box {
    max-width: 100% !important;
  }
  .profile-left {
    flex: 1;
    min-width: 280px;
    max-width: 100%;
  }
  .profile-block::before {
    width: 100%;
    height: 100%;
  }
}
.doctor_wrap {
  margin-top: calc(80px + 10%);
}
.meyasubako_title{
	margin: 0 0 10px;
	padding: 8px;
	color: #fff;
	font-size: max(1.4vw, 18px);
	text-align: center;
}
.selectbox-3 {
    display: inline-flex;
    align-items: center;
    position: relative;
	margin-bottom: 10px;
}

.selectbox-3::after {
    position: absolute;
    right: 15px;
    width: 10px;
    height: 7px;
    background-color: #535353;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
    pointer-events: none;
}

.selectbox-3 select {
    appearance: none;
    min-width: 230px;
    height: 2.8em;
    padding: .4em calc(.8em + 30px) .4em .8em;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
    background-color: #fff;
    color: #333333;
    font-size: max(1vw, 16px);
    cursor: pointer;
}
.textbox-1-label,
.textbox-1 {
    color: #333;
}

.textbox-1-label {
    display: block;
    margin: 30px 0 15px;
    font-size: max(1vw, 16px);
}
.textbox-1-label span{
	background-color: #91422b;
	color:#fff;
	font-size: 14px;
	padding: 4px;
	margin-right: 5px;
}
.textbox-1 {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #969da3;
    border-radius: 3px;
    font-size: max(1vw, 16px);
    line-height: 1.5;
}

.textbox-1::placeholder {
    color: #999;
}

.submit_btn{
	font-size: max(1vw, 16px);
	background-color: #91422b;
	border-radius: 3px;
	color: #fff;
	padding: 15px;
	width: 130px;
	margin: 30px auto 0;
	text-align: center;
}

.submit_btn:hover{
	opacity: 0.8;
}

.r_reverse .profile-block {
  flex-direction: row-reverse;
}
.r_reverse .profile-right {
  right: auto;
  left: 10%;
}
.r_reverse .profile-name-box {
  margin-right: 0;
  max-width: 50%;
  margin-left: auto;
}
.r_reverse .doctor_deco {
  top: 50%;
  left: 50%;
  transform: translate(-70%, -50%);
  width: calc(208 / 1920* 100vw);
  max-width: 208px;
  min-width: 120px;
  height: auto;
}
.sub_ttl {
  font-size: max(1.4vw, 20px);
  font-weight: 500;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid #333333;
  line-height: 1.6;
  letter-spacing: .1em;
}
.wrap {
  margin-top: calc(80 / 1920 * 100vw)
}
.h4_ttl {
  font-size: max(1.4vw, 20px);
  text-align: center;
  font-weight: 500;
  margin-bottom: calc(30 / 1920* 100vw);
  letter-spacing: .1em;
}
.h4_ttl span {
  padding-bottom: 10px;
  border-bottom: 1px solid #333333;
}
.bg_contents {
  background: #f7f5f2;
  padding: calc(80 / 1920* 100vw) 0;
}
.border_box {
  border: 1px solid #333333;
  padding: calc(50 / 1920* 100vw);
}
.border_box .sub_ttl {
  border-bottom: 5px solid #FFFFFF;
  text-align: center;
}
.list_check li {
  padding-left: 26px;
  margin-left: 10px;
  position: relative;
  line-height: 1.8;
  margin-bottom: 10px;
}
.list_check.t16
{
    font-size: max(.9vw , 16px);
}
.list_check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url("images/list_check.png") no-repeat center / contain;
  width: 16px;
  height: 16px;
}
.list_check li.flex-2 {
  width: calc(50% - 35px);
}
.urology-table {
  border-collapse: collapse;
  width: 800px;
  margin: 20px auto;
  letter-spacing: .1em;
  line-height: 1.6
}
.urology-table caption {
  background-color: #884421;
  color: #fff;
  font-weight: 500;
  padding: 10px;
  font-size: 16px;
  text-align: center;
}
.urology-table th, .urology-table td {
  border: 1px solid #333;
  padding: 12px;
  text-align: left;
  vertical-align: top;
  font-size: 16px;
}
.urology-table th {
  background-color: #dbc6ad;
  width: 150px;
}
.urology-table td {
  background-color: #fff;
}
.inspection-box {
  margin: 20px auto;
  display: flex;
  gap: 20px 30px;
  justify-content: center;
  flex-wrap: wrap;
}
.inspection-item {
  border: 1px solid #333;
  padding: 2vw;
  background-color: #fff;
  width: calc(50% - 15px);
}
.inspection-item h3 {
  margin: 0 0 10px;
  padding: 8px;
  color: #fff;
  font-size: max(1.4vw, 18px);
  text-align: center;
}
.inspection-item p {
  margin: 0;
  font-size: max(1vw, 16px);
  line-height: 1.7;
}
/* カラー別スタイル */
.urine {
  background-color: #884421;
}
.blood {
  background-color: #67a02c;
}
.flow {
  background-color: #cda558;
}
.ecg {
  background-color: #884421;
}
.echo {
  background-color: #67a02c;
}
.cystoscope {
  background-color: #cda558;
}
.xray {
  background-color: #884421;
}
@media screen and (max-width: 600px) {
  .inspection-box {
    width: 100%;
  }
}
.stdtest_bg {
  background: url("images/stdtest_bg.png")no-repeat center / cover;
  padding: calc(80 / 1920* 100vw) 0;
}
.stdtest_bg .border_box {
  background: rgba(255, 255, 255, 0.80);
  padding: calc(80 / 1920* 100vw) calc(50 / 1920* 100vw);
}
.stdtest_bg .border_box .sub_ttl {
  font-size: max(1.4vw, 20px);
  text-align: center;
  font-weight: 500;
  padding-bottom: 10px;
  margin-bottom: calc(50 / 1920* 100vw);
  color: #91422b;
  border: none;
}
.stdtest_bg .border_box .sub_ttl span {
  border-bottom: 1px solid #91422b;
}
.head_ttl {
  text-align: center;
  font-size: max(1.2vw, 20px);
  font-weight: 500;
  margin-bottom: calc(50 / 1920 * 100vw);
  color: #85bc1c;
  padding-bottom: 10px;
}
.head_ttl span {
  border-bottom: 1px solid #85bc1c;
}
.detail-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 25px;
  border: 1px solid #333;
  text-decoration: none;
  color: #333;
  font-size: 18px;
  background-color: #fff;
  transition: background-color 0.3s, color 0.3s;
}
.detail-button:hover {
  background-color: #333;
  color: #fff;
}
.detail-button .arrow {
  margin-left: 20px;
  font-size: 20px;
}
.deco_ttl {
  font-size: max(1.4vw, 20px);
  font-weight: 500;
  padding-bottom: calc(20 / 1920* 100vw);
  margin-bottom: calc(30 / 1920 * 100vw);
  border-bottom: 1px solid #333333;
  padding-left: calc(95 / 1920 * 100vw);
  position: relative;
  letter-spacing: .1em;
}
.deco_ttl::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url("images/ttl_deco.png") no-repeat center / contain;
  width: calc(90 / 1920* 100vw);
  height: calc(88 / 1920* 100vw);
}
.price-table {
  display: flex;
  flex-wrap: wrap;
    border-top: 1px solid #CCCCCC;
    border-left: 1px solid #CCCCCC;
    border-right: 1px solid #CCCCCC;
}
.label {
  background-color: #ffeedd;
  padding: 20px;
  width: 50%;
  text-align: center;
  font-size: max(1vw, 16px);
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.6;
    border-bottom: 1px solid #CCCCCC;
}
.value {
  padding: 20px;
  width: 50%;
  text-align: center;
  box-sizing: border-box;
  font-size: max(1vw, 16px);
  letter-spacing: .1em;
  line-height: 1.6;
    border-bottom: 1px solid #CCCCCC;
}
.contents_inner {
  padding: 0 3vw;
}
.custom-button-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-top: 50px;
}
.custom-button-section .custom-button
{
   width: 180px;
  height: 180px; 
}
.custom-button {
  width: 150px;
  height: 150px;
  border: 1px solid #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #000;
  font-size: max(1vw , 18px);
  box-sizing: border-box;
  text-align: center;
}
.custom-button-arrow {
  margin-top: 10px;
  font-size: 20px;
}
.custom-button:hover {
  background-color: #f0f0f0;
}
.info-table {
  width: 100%;
  max-width: 800px;
  border-collapse: collapse;
  margin: 40px auto;
  font-size: max(1vw, 16px);
  letter-spacing: .1em;
  line-height: 1.6;
}
.info-table th, .info-table td {
  border: 1px solid #000;
  padding: 16px;
  vertical-align: top;
}
.info-table th {
  background-color: #ddc7ae; /* ベージュ */
  font-weight: normal;
  text-align: left;
}
.info-table td {
  background-color: #fff;
}
.info-table thead th {
  background-color: #91422b;
  color: #FFFFFF;
  text-align: center;
  font-weight: 500;
}
.scroll_box {
  overflow-y: scroll;
  height: 300px;
  max-width: 800px;
  margin: 0 auto;
}
.fdc {
  flex-direction: column;
}
.alc {
  align-items: center;
}
.access_items h3 {
  margin: 0 0 10px;
  padding: 8px;
  color: #fff;
  font-size: max(1.4vw, 18px);
  text-align: center;
}
.t-right {
  text-align: right;
}
.border_box .flex-3 {
  width: calc((100% - 140px) / 3);
}
.blown {
  color: #91422b;
}
.blown span {
  border-bottom: 1px solid #91422b;
}
.sub_ttl.blown {
  border-bottom: none;
}
.health-conditions-container {
  display: flex;
  justify-content: center;
  gap: 20px; /* アイテム間のスペース */
  padding: 20px;
}
/* health-condition-item: 各健康状態のカード */
.health-condition-item {
  width: calc((100%-80px) / 5);
  display: flex;
  position: relative; /* 矢印の位置調整のために必要 */
}
/* health-condition-link: カード全体を覆うリンク */
.health-condition-link {
  display: flex; /* Flexboxを適用 */
  flex-direction: column;
  align-items: center;
  padding: 20px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  border: 1px solid #333333;
}
.health-condition-link:hover {
  background-color: #f0ede8; /* ホバー時の背景色 */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* ホバー時の影 */
}
/* health-condition-icon-wrapper: アイコンを囲む円形の背景 */
.health-condition-icon-wrapper {
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
/* health-condition-text: 健康状態のテキスト */
.health-condition-text {
  font-size: max(1.1vw, 18px);
  color: #333;
  margin-bottom: 15px;
  line-height: 1.5;
}
/* health-condition-arrow: 矢印 */
.health-condition-arrow {
  font-size: 1.8em;
  color: #999;
  position: absolute;
  bottom: 10px;
  /* z-index: 1; */ /* 必要に応じてz-indexを追加 */
}
/* レスポンシブ対応 (例: 画面幅が狭い場合) */
@media (max-width: 768px) {
  .health-conditions-container {
    flex-wrap: wrap
  }
  .health-condition-item {
    width: calc((100% - 20px) / 2);
    max-width: 300px;
    margin-bottom: 20px;
  }
}
.therapy-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 30px;
  flex-wrap: wrap;
}
.therapy-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid #333333;
  width: calc((100% - 40px) / 3)
}
.therapy-card-diet .color_box {
  background-color: #9c2e2e;
  width: 100%;
}
.therapy-card-diet .therapy-title {
  color: #ffffff;
}
.therapy-card-exercise .color_box {
  background-color: #55a822;
  width: 100%;
}
.therapy-card-exercise .therapy-title {
  color: #ffffff;
}
.therapy-card-medication .color_box {
  background-color: #a87e22;
  width: 100%;
}
.therapy-card-medication .therapy-title {
  color: #ffffff;
}
.therapy-icon-wrapper {
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 25px;
}
.therapy-title {
  font-size: max(1.6vw, 24px);
  font-weight: bold;
  margin-bottom: 20px;
}
.therapy-description {
  font-size: max(1vw, 16px);
  line-height: 1.8;
  padding: 0 25px 30px;
  white-space: pre-line;
  text-align: left;
}
/* レスポンシブ対応 */
@media (max-width: 992px) {
  .therapy-container {
    flex-wrap: wrap;
    justify-content: center;
  }
  .therapy-card {
    width: 45%; /* 2列表示 */
    margin-bottom: 20px; /* カード間の余白 */
  }
}
@media (max-width: 768px) {
  .therapy-card {
    width: 100%; /* 1列表示 */
    max-width: 350px;
  }
}
.tel-text {
  text-align: center;
  font-size: max(2.4vw, 24px);
  font-weight: 500;
  position: relative;
  padding-left: 50px;
}
.tel-text::before {
  content: "";
  background: url("images/tel_icon.png") no-repeat center / contain;
  width: calc(37 / 1920* 100vw);
  height: calc(36 / 1920* 100vw);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.caution {
  max-width: 1100px;
  margin: 0 auto;
  padding: calc(50 / 1920* 100vw);
  background: #f7f5f2;
  position: relative;
  margin-bottom: 130px;
}
.caution .sub_ttl {
  border: none;
  text-align: center;
}
.caution .sub_ttl span {
  font-size: max(1vw, 16px);
}
.caution_inner {
  background: #FFFFFF;
  padding: 30px;
}
.caution .custom-button {
  margin: calc(50/ 1920* 100vw) auto 0;
}
.urology_child_top {
  position: relative;
  height: calc(838 / 1920* 100vw);
}
.urology_child_img01 {
  left: 0;
  top: 0;
  width: calc(600 / 1920 * 100vw);
  max-width: 600px;
}
.urology_child_img02 {
  right: 0;
  bottom: 0;
  width: calc(600 / 1920 * 100vw);
  max-width: 600px;
}
.urology_child_text {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(260 / 1920* 100vw);
  height: calc(405 / 1920* 100vw);
  background: url("images/text_bg.png") no-repeat center / contain;
  background-color: rgba(255, 255, 255, 0.80);
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: max(2vw, 16px);
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.6;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  min-height: 160px;
}
.t-left {
  text-align: left;
}
.custom-type-boxes {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 30px 0;
}
.custom-type-boxes .type-box {
  flex: 1 1 30%;
  border: 1px solid #333;
  padding: 0;
  box-sizing: border-box;
  background: #fff;
}
.custom-type-boxes .type-label {
  color: #fff;
  font-size: max(1vw, 16px);
  letter-spacing: .1em;
  line-height: 1.6;
  text-align: center;
  font-weight: bold;
  padding: 12px 0;
}
.box_num {
  font-size: max(1.2vw, 18px);
  letter-spacing: .1em;
  line-height: 1.6;
}
.box_ttl {
  font-size: max(1.6vw, 20px);
  letter-spacing: .1em;
  line-height: 1.6;
}
.custom-type-boxes .type-headline {
  font-size: max(1.1vw, 18px);
  letter-spacing: .1em;
  line-height: 1.6;
  font-weight: bold;
  margin: 15px 0;
  text-align: center;
  padding: 0 15px;
}
.custom-type-boxes .type-text {
  font-size: max(1vw, 16px);
  letter-spacing: .1em;
  line-height: 1.6;
  padding: 0 15px 20px;
}
.custom-type-boxes .type01 .type-label {
  background: #8b3f27;
}
.custom-type-boxes .type01 .type-headline {
  color: #8b3f27;
}
.custom-type-boxes .type02 .type-label {
  background: #8abc12;
}
.custom-type-boxes .type02 .type-headline {
  color: #8abc12;
}
.custom-type-boxes .type03 .type-label {
  background: #b8985c;
}
.custom-type-boxes .type03 .type-headline {
  color: #b8985c;
}
/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .custom-type-boxes {
    flex-direction: column;
  }
  .custom-type-boxes .type-box {
    flex: 1 1 100%;
  }
}
.urology_child_bg {
  background: url("images/urology_child_bg.png")no-repeat center / cover;
  padding: calc(80 / 1920* 100vw) 0;
}
.urology_child_bg .border_box {
  background: rgba(255, 255, 255, 0.80);
  padding: calc(80 / 1920* 100vw) calc(50 / 1920* 100vw);
}
.urology_child_bg .border_box .sub_ttl {
  font-size: max(1.4vw, 20px);
  text-align: center;
  font-weight: 500;
  padding-bottom: 10px;
  margin-bottom: calc(50 / 1920* 100vw);
  color: #91422b;
  border: none;
}
.urology_child_bg .border_box .sub_ttl span {
  border-bottom: 1px solid #91422b;
}
.green_ttl {
  font-size: max(1.1vw, 18px);
  font-weight: 500;
  color: #85bc1c;
}
.urology_inner {
  max-width: 800px;
  margin: 0 auto;
}
.symptom-section {
  background-image: url('images/std_bg.png');
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  color: #fff;
  text-align: center;
}
.symptom-section .symptom-box {
  max-width: 450px;
  padding: 30px 20px;
  border-radius: 8px;
  opacity: 0.8;
}
.symptom-section .symptom-box img {
  max-width: 150px;
  max-height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}
.symptom-section .female {
  background-color: rgba(153, 76, 51, 0.8);
}
.symptom-section .male {
  background-color: rgba(102, 204, 0, 0.8);
}
.symptom-section h2 {
  font-size: max(1.1vw, 20px);
  margin-bottom: 15px;
  font-weight: 500;
}
.symptom-section p {
  font-size: max(1vw, 16px);
  line-height: 1.8;
  text-align: left;
}
.symptom-section .note {
  width: 100%;
  margin-top: 40px;
  font-size: max(1vw, 16px);
  text-align: center;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8), 1px 1px 2px rgba(255, 255, 255, 0.8), 1px 1px 2px rgba(255, 255, 255, 0.8), 1px 1px 2px rgba(255, 255, 255, 0.8);
}
.price_box {
  background: #f7f5f2;
  padding: 2vw;
  width: calc(25% - 25px)
}
.flex-75 {
  width: calc(75% - 25px);
}
.als {
  align-items: flex-start;
}

.post_nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.post_nav a {
  display: inline-block;
  padding: 12px 20px;
  background: #f5f5f5;
  color: #333;
  text-decoration: none;
  border: 1px solid #ccc;
  font-size: max(1vw, 16px);
  transition: 0.3s;
}

.post_nav a:hover {
  background: #891b13;
  color: #fff;
  border-color: #891b13;
}
.pager {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  gap: 10px;
}

.pager .page-numbers {
  display: inline-block;
  padding: 8px 14px;
  background: #f5f5f5;
  color: #333;
  text-decoration: none;
  border: 1px solid #ccc;
  font-size: max(1vw, 16px);
}

.pager .page-numbers.current,
.pager .page-numbers:hover {
  background: #891b13;
  color: #fff;
  border-color: #891b13;
}
dl.news_list2 {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 20px;
  font-size: max(1vw, 16px);
}
dl.news_list2 dt {
  width: calc(20% - 15px);
  margin-bottom: 15px;
}
dl.news_list2 dt span {
  padding: 8px 20px;
  background: #99140f;
  color: #FFFFFF;
  border-radius: 50px;
}
dl.news_list2 dd {
  width: calc(80% - 15px);
  margin-bottom: 15px;
}
.news p
{
    font-size: max(1vw , 16px);
    letter-spacing: .1em;
    line-height: 1.8;
}
.ank_btn
{
    font-size: max(1vw , 16px);
    font-weight: 500;
    text-align: center;
    padding: 15px 10px;
    color: #FFFFFF;
    display: block;
    position: relative;
}
.ank_btn::before
{
    content: "↓";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}
.ank_btn.type01
{
    background: #8b3f27;
}
.ank_btn.type02
{
    background: #8abc12;
}
.ank_btn.type03
{
    background: #b8985c;
}
/*--------------------------------------------------------------------------

PC

--------------------------------------------------------------------------*/
@media only screen and (min-width: 1025px) {
  .sp-only {
    display: none !important;
  }
  .tab-only {
    display: none !important;
  }
}
/*--------------------------------------------------------------------------

tablet

--------------------------------------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .sp-only {
    display: none !important;
  }
  .pc-only {
    display: none !important;
  }
  .mv_catch {
    bottom: 0;
  }
}
/*--------------------------------------------------------------------------

sp

--------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
  .pc-tab-only {
    display: none !important;
  }
  .tab-only {
    display: none !important;
  }
  .logo {
    width: calc(367 / 767* 100vw);
  }
  /*==================================================
メインビジュアル
===================================*/
  .slider {
    position: relative;
    z-index: 0;
    height: 50vh;
    width: 100%;
    max-height: 100%;
  }
  /*　背景画像設定　*/
  .slider-item01 {
    background: url("images/sp_main01.png");
  }
  .slider-item02 {
    background: url("images/sp_main02.png");
  }
  .slider-item03 {
    background: url("images/sp_main03.png");
  }
  .slider-item {
    height: 50vh;
    max-height: 100%;
  }
  .mv {
    flex-wrap: wrap;
  }
  .slider {
    width: 100%;
  }
  .mv_right {
    width: 100%;
  }
  .mv_right {
    max-width: 100%;
    width: 100%;
    flex-wrap: wrap;
    padding-top: 20px;
    writing-mode: horizontal-tb;
    font-size: 14px;
    height: auto;
      margin-bottom: 30px;
  }
  .top_time {
    max-width: 95%;
    margin: 0 auto;
  }
  .top_time .note{
	margin-top:0;
	font-size: max(1.4vw, 20px);
	color: #333;
	line-height: 1.8;
	text-align: center;
	/*font-family: "Noto Serif JP", serif;*/
}
  .top_time strong{
	position: relative;
	padding: 0 .2em;
	z-index: 1;
	margin: 0 .3em;
	display: inline-block;
	color: #9e110d;
	font-size: max(2.4vw, 24px);
}
.top_time strong:after{
    content: '';
    position: absolute;
    width: 100%;
    height: 45%;
    background: #ffda2f;
    left: 0;
    bottom: 0;
    z-index: -1;
}
  
  .mv_right .train img, .mv_right .car img {
    margin-bottom: 0px;
    margin-right: 10px;
  }
  .mv_right .train, .mv_right .car {
    text-align: center;
    width: 100%;
    justify-content: center;
    border-top: none;
  }
  .mv_catch {
    position: absolute;
    right: 20px;
    bottom: 130px;
    width: calc(336 / 767* 100vw)
  }
  .schedule th, .schedule td {
    padding: 1vw;
  }
  .first_inner .ttl {
    max-width: 100%;
    position: relative;
    font-size: max(2vw, 24px);
    padding: 10vw;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 100%;
    margin: 0 auto;
  }
  .first_inner .ttl::before {
    width: calc(89 / 767* 100vw);
    height: calc(177 / 767* 100vw);
  }
  .first_inner .ttl::after {
    width: calc(89 / 767* 100vw);
    height: calc(177 / 767* 100vw);
  }
   .first_text {
    width: 100%;
}
    .first_text ul li {
    display: block;
}
    .first_text .line_btn a {
    height: calc(130 / 767 * 100vw);
}
    .first_text .line_btn {
    max-width: calc(250 / 767 * 100vw);
    width: 100%;
    margin: 30px 0 0;
}
    .first_text .line_btn a::before {
    content: "";
    bottom: calc(28 / 767 * 100vw);
}
    .first_inner {
    gap: 50px;
}
    .first_text .line_btn {
    margin: 20px auto;
}
  .qa_contents {
    width: 100%;
  }
  .qa_ttl {
    left: -50%;
    width: 200%;
  }
  dl.news_list dd {
    width: 100%;
    margin-bottom: 20px;
  }
  dl.news_list dt {
    width: 100%;
  }
    dl.news_list2 dd {
    width: 100%;
    margin-bottom: 20px;
  }
  dl.news_list2 dt {
    width: 100%;
  }
  .parallax {
    padding: 125px 0 180px;
  }
  .clinic_title {
    margin: auto;
    margin-top: auto;
    margin-bottom: auto;
    background: url(images/clinic_ttl_bg.png) no-repeat center /contain;
    margin-top: calc(-160 / 767* 100vw);
    width: calc(281 / 767* 100vw);
    height: calc(405 / 767* 100vw);
  }
  .clinic_title_text::after {
    width: calc(540 / 767* 100vw);
    height: calc(125 / 767* 100vw);
  }
  .specialist-inner {
    margin: 0 auto;
  }
  .specialist-img {
    flex: 0 0 100%;
  }
  .specialist-text {
    flex: 0 0 100%;
    margin-left: 0;
    animation-play-state: 0;
  }
  .specialist-section02 .specialist-text{
    padding: 160px 30px;
  }
  .specialist-icons {
    bottom: 0;
    right: 0;
    width: 100%;
    flex-wrap: wrap;
    position: relative;
  }
  .specialist-icons .icon {
    text-align: center;
    max-width: calc(50% - 10px)
  }
  .specialist-section {
    padding: 70px 0 0;
  }
  .specialist-section02 {
    margin-top: 40px;
  }
  .specialist-section03 {
    padding: 40px 0;
  }
  .r_reverse.specialist-inner {
    margin: 0 auto;
  }
  .r_reverse .specialist-text {
    margin: 0 auto;
  }
  .clinicinfo {
    overflow: hidden;
    padding: calc(560 / 767* 100vw) 0 calc(90 / 767* 100vw);
    position: relative;
  }
  .clinicinfo_text {
    width: calc(558 / 767* 100vw);
    height: calc(719 / 767* 100vw);
  }
  .line_btn a {
    width: 100%;
    height: calc(200 / 767* 100vw);
    padding-bottom: calc(25 / 767* 100vw);
  }
  .clinicinfo .line_btn a {
	margin-top: 100px;
  }
  .line_btn {
    max-width: calc(200 / 767* 100vw);
  }
  .line_btn a::before {
    content: "";
    width: calc(41 / 767* 100vw);
    height: calc(13 / 767* 100vw);
    bottom: calc(75 / 767* 100vw);
  }
  .greeting-section .greeting-container {
    flex-wrap: wrap;
  }
  .greeting-section .greeting-left {
    width: 100%;
  }
  .greeting-section .greeting-right {
    width: 100%;
    padding: 4rem;
    margin-left: 0;
    min-height: calc(870 / 767* 100vw);
  }
  .greeting-section .greeting-title {
    width: calc(430 / 1024* 100vw);
  }
  .flex-2 {
    width: 100%;
  }
  .flex-3 {
    width: 100%;
  }
  .medical_title {
    width: calc(281 / 767* 100vw);
    height: calc(405 / 767* 100vw);
  }
  .medical_title_text::after {
    width: calc(540 / 767* 100vw);
    height: calc(125 / 767* 100vw);
  }
  .custom-btn {
    width: 100%;
  }
  .custom-btn img.pdf-icon {
    width: calc(80 / 767* 100vw);
  }
  .doctor_wrap {
    margin-top: calc(30px + 10%);
  }
  .border_box .flex-3 {
    width: 100%;
  }
  .tel-text::before {
    width: calc(37 / 767* 100vw);
    height: calc(36 / 767* 100vw);
  }
    .philosophy_txt {
    width: calc(420 / 767 * 100vw);
    height: calc(448 / 767 * 100vw);
}
    .feature_ttl {
    text-align: center;
    width: calc(964 / 1024 * 100vw);
    height: calc(222 / 1024 * 100vw);
}
    .feature_wrap {
    width: 100%;
        margin-bottom: 50px;
}
    .feature_text {
    width: 100%;
}
    .feature_img {
    width: 100%;
}
    .feature03 .flex
    {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .feature03 .flex .feature_num
    {
        text-align: center;
    }
    .feature03 .flex .feature_headttl
    {
        text-align: center;
    }
    .inspection-item {
  width: 100%;
}
    .flex-75 {
  width: 100%;
}
    .price_box {
  width: 100%;
}
    .label {
    width: 100%;
}
    .value {
    width: 100%
}
    .h4_ttl {
    margin-bottom: calc(30 / 767 * 100vw);
}
	.female_urology_shikkan .flex-2{
		width: 100%!important;
	}
}
/*==================================================
フェードイン
===================================*/
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 下から */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 上から */
.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 左から */
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 右から */
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger, .fadeUpTrigger, .fadeDownTrigger, .fadeLeftTrigger, .fadeRightTrigger {
  opacity: 0;
}