@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"0;
  overflow-x: hidden;
  letter-spacing: .1em;
}
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%;
}
.min {
  font-family: "Noto Serif JP", serif;
}
main {
  background: url("../images/body_bg.png")repeat-y center/ cover;
}
a {
  transition: opacity 0.5s;
}
a:hover {
  transition: opacity 0.5s;
  opacity: .6;
}
/*-----------------------------------------------------------------

ハンバーガーメニュー

-----------------------------------------------------------------*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh; /*ナビの高さ*/
  background: #7fa8c2;
  /*動き*/
  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;
  display: block;
  padding: 20px;
}
/*リストのレイアウト設定*/
#g-nav li {
  list-style: none;
  text-align: center;
}
#g-nav li a {
  color: #FFFFFF;
  text-decoration: none;
  padding: 15px 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
  font-size: max(1vw, 18px);
}
/*========= ボタンのためのCSS ===============*/
.openbtn1 {
  position: fixed;
  z-index: 9999; /*ボタンを最前面に*/
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background: #7fa8c2;
}
/*×に変化*/
.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%;
}
/* サブメニュー非表示 */
.sp-sub-menu {
  display: none;
  padding: 0;
  margin: 0;
}
/* サブメニューの項目 */
.sp-sub-menu li a {
  font-size: 1.4rem;
  padding: 16px 20px !important;
  background: #779db5;
  border-top: 1px solid #FFFFFF;
  text-align: left;
}
/* サブメニューの位置調整（かぶり防止） */
.sp-has-sub {
  position: relative;
}
.sp-accordion-toggle .icon {
  display: inline-block;
  margin-left: 8px;
  font-size: 1.2rem;
}
.sp-accordion-toggle .icon::before {
  content: "▼";
}
/* 開いたとき用のクラス */
.sp-accordion-toggle.active .icon::before {
  content: "▲";
}
/*==================================================
メインビジュアル
===================================*/
.mv {
  height: 38vw;
  max-width: 95%;
  margin: 0 auto;
  position: relative;
}
.slider {
  position: relative;
  z-index: 0;
  /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
  height: 38vw;
}
/*　背景画像設定　*/
.slider-item01 {
  background: url("../images/main-visual01.png");
}
.slider-item02 {
  background: url("../images/main-visual02.png");
}
.slider-item03 {
  background: url("../images/main-visual03.png");
}
.slider-item {
  width: 100%; /*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
  height: 38vw;
  background-repeat: no-repeat; /*背景画像をリピートしない*/
  background-position: center; /*背景画像の位置を中央に*/
  background-size: cover; /*背景画像が.slider-item全体を覆い表示*/
}
.catch {
  font-size: max(3vw, 2rem);
  text-align: center;
  color: #FFFFFF;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(753 / 1920* 100vw);
  height: calc(356 / 1920* 100vw);
  background: url("../images/catch_bg.png") no-repeat center / contain;
  display: grid;
  align-content: center;
  line-height: 1.8;
}
/*矢印の設定*/
.slider > .slick-prev, .slider > .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;
}
.slider > .slick-prev { /*戻る矢印の位置と形状*/
  left: 2.5%;
  transform: rotate(-135deg);
}
.slider > .slick-next { /*次へ矢印の位置と形状*/
  right: 2.5%;
  transform: rotate(45deg);
}
/*ドットナビゲーションの設定*/
.slider > .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 {
  padding: 0 20px;
}
.header_inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: relative;
  align-items: flex-start
}
.logo {
  width: 12%;
  text-align: center;
}
.h_address {
  font-size: max(1vw, 14px);
  position: relative;
  padding-left: 25px;
  padding-top: 20px;
  width: 36%;
}
.h_address::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% + 10px);
  transform: translateY(-50%);
  background: url("../images/h_map.png") no-repeat center / contain;
  width: 20px;
  height: 20px;
}
.h_tel_web {
  padding-top: 20px;
  display: flex;
  gap: 20px;
  width: 39%;
  justify-content: flex-end;
}
.gnav {
  padding: 20px 10px;
  width: 100%;
}
.gnav > ul {
  display: flex;
  justify-content: center;
  gap: 4vw;
  font-size: max(1vw, 14px);
  margin-top: 30px;
}
.gnav > ul > li {
  font-weight: 500;
  position: relative;
}
/* 縦線 */
.gnav > ul > li::before {
  content: "";
  position: absolute;
  right: -2vw;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 15px;
  background: #333333;
}
.gnav > ul > li:last-child::before {
  display: none;
}
/* アコーディオン用 */
.gnav .sub-menu {
  display: none;
  position: absolute;
  top: 150%;
  left: 50%;
  transform: translateX(-50%);
  background: #FFFFFF;
  padding: 20px 30px;
  min-width: 500px;
  z-index: 10;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #E9E9E9;
  gap: 10px 20px;
  flex-wrap: wrap;
}
/* 表示時 */
.gnav .sub-menu.active {
  display: flex;
}
/* サブメニューのアイテム */
.gnav .sub-menu li {
  list-style: none;
  flex: 1 1 calc(50% - 10px);
}
/* サブメニュー内リンク */
.gnav .sub-menu li a {
  color: #333;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
  padding: 8px 5px;
  font-size: max(0.9vw, 14px);
}
.gnav .sub-menu li a:hover {
  background: #E9E9E9;
}
/* メニュー右の三角アイコン */
.gnav .sub-menu li a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #888;
  border-right: 2px solid #888;
  transform: rotate(45deg);
  margin-left: 5px;
}
section {
  padding: max(3vw, 30px) 0 max(5vw, 50px);
}
.info-section {}
.info-wrapper {
  display: flex;
  gap: 30px 4%;
  justify-content: space-between;
  max-width: 1540px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.title {
  font-size: max(1.4vw, 20px);
  margin-bottom: calc(30 / 1920* 100vw);
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}
.title span {
  display: block;
  color: #69a3c8;
  font-weight: normal;
  font-size: max(0.8vw, 14px);
}
.news, .info {
  flex: 1 1 48%;
}
/* NEWS セクション */
.news_list_inner {
  max-height: 350px;
  overflow-y: scroll;
  padding: 20px;
}
.news-list {
  display: flex;
  flex-direction: column;
  gap: 20px 35px;
}
.news-item {
  display: flex;
  align-items: flex-start;
  background: #FFFFFF;
  padding: 20px;
  gap: 20px;
  font-size: max(1vw, 14px);
}
.news-date {
  background: #7fa8c2;
  color: #fff;
  padding: 0.5rem 1rem;
  font-weight: bold;
  flex-shrink: 0;
  margin: -30px 0 0-30px;
}
.news-text {
  flex: 1;
}
/* INFORMATION テーブル */
.info-table {
  font-size: max(1vw, 14px);
  background: #FFFFFF;
  padding: 1vw 2vw;
}
.info-table table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}
.info-table th, .info-table td {
  text-align: center;
  padding: 1vw;
}
.info-table th {
  background: #FFFFFF;
}
.info-table thead th {
  border-bottom: 1px solid #CCCCCC
}
.info-table td {
  color: #6486a5;
  background: #FFFFFF;
}
.closed-days {
  font-size: max(1vw, 14px);
  color: #333;
  margin-top: 10px;
}
/* アクセス情報 */
.access-icons {
  display: flex;
  justify-content: space-between;
  gap: 1%;
  flex-wrap: wrap;
  margin-top: 40px;
}
.access-item {
  text-align: center;
  flex: 1 1 27%;
  line-height: 1.4;
}
.access-item:nth-child(2) {
  flex: 0 0 40%;
  position: relative;
}
.access-item:nth-child(2) {
  position: relative;
}
.access-item:nth-child(2)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: calc(40 / 1920* 100vw);
  background: #333333;
}
.access-item:nth-child(2)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: calc(40 / 1920* 100vw);
  background: #333333;
}
.access-item img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  object-fit: contain
}
.access-item p {
  font-size: max(0.9vw, 14px);
}
.inner1540 {
  max-width: 1540px;
  margin: 0 auto;
  width: 95%;
}
.inner1620 {
  max-width: 1620px;
  margin: 0 auto;
  width: 95%;
}
.inner1280 {
  max-width: 1280px;
  margin: 0 auto;
  width: 90%;
}
.top_bnr_inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 4%;
}
.top_bnr_inner a {
  flex: 1 1 48%;
}
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  max-height: max(35vw, 400px);
  background: url('../images/message_bg.png') center center / cover no-repeat;
  background-attachment: fixed; /* パララックス効果を追加 */
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-overlay {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.hero-overlay h1 {
  color: #fff;
  font-size: max(3vw, 30px);
  line-height: 1.6;
  font-weight: 500;
}
.feature {
  background: #FFFFFF;
  padding: max(3vw, 30px) 0 max(5vw, 50px);
}
.h3_ttl {
  text-align: center;
  margin-bottom: 40px;
  font-size: max(1vw, 14px);
  color: #7899B3;
  font-weight: 500;
}
.h3_ttl span {
  font-size: max(2.8vw, 24px);
  color: #333333;
}
.h3_ttl.slash {
  padding-bottom: calc(80 / 1920* 100vw);
  position: relative;
}
.h3_ttl.slash::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateY(-50%) rotate(45deg);
  height: calc(50 / 1920* 100vw);
  width: 1px;
  background: #333333;
}
.feature_inner {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.feature_list {
  width: 50%;
  position: relative;
}
.feature_list div.wrap
{
    padding-top: 0;
}
.feature_items {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: calc(140 / 1920 * 100vw);
  min-height: 100px;
  border-bottom: 1px solid rgba(82, 97, 109, .2);
  position: relative;
  z-index: 1;
  transition: .3s;
  text-align: center;
  cursor: pointer;
}
.feature_items.point {
  background: #BDE6FF;
}
.feature_num {
  margin-bottom: 5px;
  line-height: 1;
  letter-spacing: .2em;
  font-size: max(1vw, 16px);
  color: #0572B5;
  font-weight: 600;
}
.feature_ttl {
  font-size: max(1.2vw, 18px);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: .1em;
}
.feature_contents {
  width: 50%;
  position: relative;
}
.contents01 {
  width: 100%;
  height: 100%;
  padding-top: calc(85 / 1920 * 100vw);
  background: url("../images/contentsu01_bg.png") no-repeat center / cover;
  position: absolute;
  inset: 0;
  transition: .7s;
}
.contents02 {
  width: 100%;
  height: 100%;
  padding-top: calc(85 / 1920 * 100vw);
  background: url("../images/contentsu02_bg.png") no-repeat center / cover;
  position: absolute;
  inset: 0;
  transition: .7s;
}
.contents03 {
  width: 100%;
  height: 100%;
  padding-top: calc(85 / 1920 * 100vw);
  background: url("../images/contentsu03_bg.png") no-repeat center / cover;
  position: absolute;
  inset: 0;
  transition: .7s;
}
.contents04 {
  width: 100%;
  height: 100%;
  padding-top: calc(85 / 1920 * 100vw);
  background: url("../images/contentsu04_bg.png") no-repeat center / cover;
  position: absolute;
  inset: 0;
  transition: .7s;
}
.contents05 {
  width: 100%;
  height: 100%;
  padding-top: calc(85 / 1920 * 100vw);
  background: url("../images/contentsu05_bg.png") no-repeat center / cover;
  position: absolute;
  inset: 0;
  transition: .7s;
}
.t18 {
  font-size: max(1vw, 16px);
  letter-spacing: .1em;
  line-height: 1.8;
}
.t20 {
  font-size: max(1.1vw, 18px);
  letter-spacing: .1em;
  line-height: 1.8;
}
.feature_contents .feature_num, .feature_contents .feature_ttl {
  text-align: center;
}
.feature_contents .feature_ttl {
  margin-bottom: calc(40 / 1920* 100vw);
}
.feature_contents .wrap {
  max-width: 680px;
  width: 90%;
  margin: 0 auto;
}
.feature_contents .t18 {
  line-height: 2;
}
.feature_contents .feature_ttl {
  font-size: max(1.6vw, 20px);
}
.btn {
  margin-top: calc(50 / 1920* 100vw);
}
.feature_contents_box {
  opacity: 0;
  z-index: 0;
  transition: opacity 0.5s;
}
.feature_contents_box.active {
  opacity: 1;
  z-index: 1;
}
.flex {
  display: flex;
  flex-wrap: wrap;
}
.gap3 {
  gap: 20px 30px !important;
}
.flex-2 {
  width: calc(50% - 15px);
}
.f_center {
  justify-content: center;
}
.mt5 {
  margin-top: calc(50 / 1920* 100vw);
}
.mt3 {
  margin-top: calc(30 / 1920* 100vw);
}
.flow_section {
  padding: 80px 20px;
  text-align: center;
}
.section_title {
  font-size: 32px;
  margin-bottom: 20px;
  line-height: 1.4;
}
.section_title span {
  display: block;
  color: #0572B5;
  font-size: 18px;
  margin-top: 5px;
}
.flow_intro {
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 2;
  font-size: 16px;
}
.flow_slider {
  position: relative;
  height: auto;
}
.flow_slider .swiper-wrapper {
  height: auto;
}
.flow_item {
  background: #fff;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
  min-width: 400px;
}
.flow_slider .swiper-slide {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  height: auto !important;
  box-sizing: border-box;
  gap: 10px;
  position: relative !important;
  flex-shrink: 0;
}
.flow_slider .swiper-slide::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: calc(20 / 1920 * 100vw) solid #3B7EB2;
  border-top: calc(35 / 1920 * 100vw) solid transparent;
  border-bottom: calc(35 / 1920 * 100vw) solid transparent;
  top: 0;
  bottom: 0;
  margin: auto;
  right: -35px;
}
.flow_slider .swiper-slide:last-child::after {
  display: none;
}
.flow_num {
  background: #0572B5;
  color: #fff;
  font-size: max(1.6vw, 18px);
  width: 70px;
  height: 70px;
  line-height: 70px;
  margin: 0 auto 10px;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 600;
}
.flow_img img {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
}
.flow_text {
  padding: 0 2vw 3vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.flow_item h3 {
  font-size: max(1.2vw, 20px);
  padding-bottom: 10px;
  color: #333;
  border-bottom: 1px solid #333333;
  font-weight: 600;
}
.flow_item p {
  font-size: max(1vw, 14px);
  line-height: 1.8;
}
.flow_slider {
  position: relative;
  padding-bottom: calc(80 / 1920* 100vw) !important; /* ページネーション用の余白 */
}
.flow_slider .swiper-pagination {
  position: absolute !important;
  bottom: 10px !important;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 10;
  font-size: calc(12 / 1920 * 100vw);
}
/* ページネーションのドットの大きさ */
.swiper-pagination .swiper-pagination-bullet {
  width: 10px; /* ドットの幅 */
  height: 10px; /* ドットの高さ */
  margin: 0 10px !important; /* ドット間のスペースを調整 */
  background-color: #3B7EB2; /* ドットの色 */
  border-radius: 50%; /* 丸くする */
}
/* アクティブなドットの色を変更 */
.swiper-pagination .swiper-pagination-bullet-active {
  background-color: #0572B5; /* アクティブ時の色 */
}
/* スマホ調整 */
@media screen and (max-width: 768px) {
  .flow_item {
    padding: 20px;
  }
  .flow_slider .swiper-slide::after {
    border-left: 14px solid #3B7EB2;
    border-top: 24px solid transparent;
    border-bottom: 24px solid transparent;
    right: -24px;
  }
}
.hygiene_management {
  background: url("../images/hygiene_management_bg.png") no-repeat center / cover;
}
.center {
  text-align: center;
}
.hygiene_management_inner {
  display: flex;
  gap: 20px 30px;
  justify-content: center;
  max-width: 1134px;
  margin: 0 auto;
  margin-top: calc(50 / 1920* 100vw);
  flex-wrap: wrap;
  width: 95%;
}
.button-link {
  text-decoration: none; /* リンクの下線を消す */
  text-align: center;
}
.button-container {
  background-color: #7799B4;
  color: #FFFFFF;
  padding: 15px 30px;
  display: inline-block;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: visible; /* ←これも保険として入れておくと安心 */
  min-width: 300px;
}
.button-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: transparent #336699 transparent transparent;
}
.button-japanese {
  font-size: max(1vw, 16px);
  margin-bottom: 5px; /* 下の英語テキストとの間に少しスペース */
}
.button-english {
  font-size: max(0.8vw, 14px); /* 少し小さめのフォントサイズ */
}
.flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
}
.greering_text {
  width: calc(55% - 15px);
}
.greeting_img {
  width: calc(45% - 15px);
}
.greeting_img img {
  position: relative;
}
.name {
  position: absolute;
  bottom: 5vw;
  left: -10vw;
  width: calc(361 / 1920* 100vw);
}
.medical {}
.medical_inner {
  max-width: 1700px;
  width: 95%;
  margin: 0 auto;
}
.flex-3 {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.flex-4 {
  display: flex;
  justify-content: center;
  gap: 30px 20px;
  flex-wrap: wrap;
}
.flex-3 .medical_items {
  width: calc((100% - 60px) / 3);
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.flex-4 .medical_items {
  width: calc((100% - 60px) / 4);
  display: flex;
  flex-direction: column;
  gap: 30px;
}
ul.medical_list {
  width: 90%;
  margin: 0 auto;
}
.medical_list li {
  position: relative;
  font-size: max(1vw, 14px);
  margin-bottom: 20px;
  padding-bottom: 20px;
  padding-left: 30px;
  border-bottom: 2px dashed #333333;
}
.medical_list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 5px);
  transform: translateY(-50%);
  background: url("../images/check_icon.png") no-repeat center / contain;
  width: 20px;
  height: 20px;
}
.gallery_slider img {
  width: 100%; /*スライダー内の画像を横幅100%に*/
  height: auto;
}
/*slickのJSで書かれるタグ内、スライド左右の余白調整*/
.gallery_slider .slick-slide {
  margin: 0 10px; /*スライド左右の余白調整*/
}
.footer_inner {
  background: url("../images/body_bg.png") repeat-y center / cover;
}
.f_address {
  font-size: max(1vw, 14px);
  position: relative;
  padding-left: 25px;
  padding-top: 20px;
  width: 30%;
  margin: 0 auto;
  min-width: 250px;
}
.f_address::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% + 10px);
  transform: translateY(-50%);
  background: url("../images/h_map.png") no-repeat center / contain;
  width: 20px;
  height: 20px;
}
.gmap {
  max-width: 95%;
  margin: 0 auto;
}
.f_info {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: calc(35% - 15px);
  justify-content: center;
}
.f_time {
  width: calc(65% - 15px);
}
.f_wrap {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}
.f_img {
  width: calc(55% - 15px);
}
.f_access {
  width: calc(45% - 15px);
}
.access_ttl {
  font-size: max(1.4vw, 20px);
  text-align: center;
  padding: 10px 0;
  margin-bottom: 50px;
  color: #FFFFFF;
  background: #3B7EB2;
  position: relative;
}
.access_ttl::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 10vw 0 0;
  border-color: transparent #5B95C2 transparent transparent;
}
.f_nav {
  margin-top: 50px;
}
.f_nav .gnav {
  padding: 0 10px;
  max-width: 1200px;
  margin: 0 auto;
  width: 95%;
}
.f_nav .gnav > ul {
  flex-wrap: wrap;
  gap: 20px 3vw;
}
.copy {
  font-size: 14px;
  text-align: center;
  color: #FFFFFF;
  background: #0572B5;
  padding: 15px;
}
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.6rem;
  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);
  }
}
/*--------------------------------------------------------------------------

下層ページ

--------------------------------------------------------------------------*/
.under_mv {
  height: max(20vw, 250px);
  max-width: 95%;
  margin: 0 auto;
  position: relative;
  justify-content: center;
  display: grid;
  align-content: center;
  background: url("../images/h2_bg.png") no-repeat center / cover;
}
.h2_ttl span {
  font-size: max(3.2vw, 3rem);
}
.h2_ttl {
  font-size: max(1.2vw, 18px);
  color: #FFFFFF;
  text-align: center;
  line-height: 1.8;
}
.sub_ttl {
  font-size: max(1.2vw, 20px);
  font-weight: 600;
}
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding: 20px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.8);
}
.modal img {
  display: block;
  margin: auto;
  max-width: 90%;
  height: auto;
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1000;
}
.modal-close:hover {
  color: #ccc;
}
.concept {
  background: url("../images/concept_bg.png") no-repeat center / cover;
  position: relative;
  height: max(30vw, 250px);
}
.feature_wrap {
  margin-bottom: 30px;
}
.feature_wrap .flex {
  align-items: stretch;
  gap: 0;
}
.feature_txt {
  width: 50%;
  background: #EAF7FF;
  padding: 4vw;
}
.feature_txt .feature_ttl {
  font-size: max(1.6vw, 24px);
}
.feature_txt p {
  padding: 0 3vw;
}
.feature_img {
  width: 50%;
}
.feature_img img {
  height: 100%;
  object-fit: cover;
}
.r_reverse {
  flex-direction: row-reverse;
}
.bg_box {
  background: #EAF7FF;
  position: relative;
  padding: 4vw;
  max-width: 1280px;
  margin: 0 auto;
  width: 90%;
}
.bg_box::before {
  content: "";
  position: absolute;
  border: 1px solid #fff;
  top: 8px;
  bottom: 8px;
  left: 8px;
  right: 8px;
}
/*画像の横幅を100%にしてレスポンシブ化*/
.gallery > img {
  width: 100%;
  height: auto;
  vertical-align: bottom; /*画像の下にできる余白を削除*/
}
/*メイン画像下に余白をつける*/
.gallery {
  margin: 0 0 5px 0;
}
.gallery li {
  list-style: none;
}
/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.slick-prev, .slick-next {
  position: absolute; /*絶対配置にする*/
  z-index: 3;
  top: 42%;
  cursor: pointer; /*マウスカーソルを指マークに*/
  outline: none; /*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid #ccc; /*矢印の色*/
  border-right: 2px solid #ccc; /*矢印の色*/
  height: 25px;
  width: 25px;
}
.slick-prev { /*戻る矢印の位置と形状*/
  left: 2.5%;
  transform: rotate(-135deg);
}
.slick-next { /*次へ矢印の位置と形状*/
  right: 2.5%;
  transform: rotate(45deg);
}
/*選択するサムネイル画像の設定*/
.choice-btn li {
  cursor: pointer;
  outline: none;
  background: #333;
  list-style: none;
}
.choice-btn li img {
  opacity: 0.4; /*選択されていないものは透過40%*/
}
.choice-btn li.slick-current img {
  opacity: 1; /*選択されているものは透過しない*/
}
.box_text {
  background: #EAF7FF;
  width: 100%;
  padding: 1vw;
}
.flex-equipment {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.flex-equipment div {
  max-width: calc((100% - 40px) / 3)
}
.no_w {
  flex-wrap: nowrap !important;
}
.hours .h_address {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.f_center {
  justify-content: center !important;
}
.hours .info-table {
  max-width: 800px;
  margin: 0 auto;
}
.access_wrap {
  max-width: 1000px;
  margin: 40px auto;
  width: 95%;
}
.anchor_inner {
  max-width: 1620px;
  margin: 0 auto;
  width: 95%;
  display: flex;
  justify-content: flex-start;
  gap: 3px 1px;
  flex-wrap: wrap;
}
.anchor_inner li {
  max-width: calc((100% - 4px) / 5);
  position: relative;
}
.anchor_inner li.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.47);
  z-index: 1;
}
.section-title {
  text-align: center;
  margin: 0 0 50px;
}
.title-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 5px;
}
.title-line::before, .title-line::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #A0B7C8;
}
.title-line h3 {
  font-size: max(3vw, 24px);
  color: #4C6B82;
  margin: 0;
  white-space: nowrap;
}
.section-title .sub-title {
  font-size: max(1vw, 16px);
  color: #A0B7C8;
  letter-spacing: 1px;
  margin: 0;
}
.read_ttl {
  font-size: max(1.6vw, 20px);
  margin-bottom: 30px;
  font-weight: 600;
}
.bg_white {
  background: #FFFFFF;
}
.trouble {
  max-width: 1280px;
  width: 95%;
  margin: 50px auto;
  background: url("../images/trouble_bg.png") no-repeat center center / cover;
  padding: 5vw;
  position: relative;
}
.pos {
  position: absolute;
}
.l_t {
  left: 10px;
  top: 10px;
  width: calc(33 / 1920* 100vw);
  max-width: 33px;
}
.l_b {
  left: 10px;
  bottom: 10px;
  width: calc(33 / 1920* 100vw);
  max-width: 33px;
}
.r_t {
  right: 10px;
  top: 10px;
  width: calc(33 / 1920* 100vw);
  max-width: 33px;
}
.r_b {
  right: 10px;
  bottom: 10px;
  width: calc(33 / 1920* 100vw);
  max-width: 33px;
}
.trouble .sub_ttl {
  text-align: center;
  font-size: max(1.6vw, 20px);
  font-weight: 600;
  margin-bottom: 40px;
}
.trouble .sub_ttl span {
  color: #7899B3;
  font-size: max(1vw, 16px);
}
.trouble .list_check {
  max-width: 800px;
  margin: 0 auto;
}
.list_check li {
  padding-left: 25px;
  margin-left: 40px;
  position: relative;
}
.list_check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url("../images/check_icon2.png") no-repeat center / contain;
  width: 18px;
  height: 18px;
}
.list_check .flex-2 {
  width: calc(50% - 55px);
}
.list_check.flex {
  justify-content: center;
}
.h4_ttl {
  text-align: center;
  padding: 20px;
  border-bottom: 1px solid #333333;
  border-top: 1px solid #333333;
  font-size: max(2vw, 20px);
  margin-bottom: 40px;
}
.kinds {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: calc((100% - 60px) / 3);
  background: #EAF7FF;
}
.kinds .ttl {
  font-size: max(1.2vw, 18px);
  padding-bottom: 10px;
  border-bottom: 1px solid #333333;
  margin: 10px auto;
  text-align: center;
  font-weight: 500;
}
.kinds .text {
  padding: 20px;
}
.price_wrap {
  max-width: 1000px;
  margin: 0 auto;
}
table.price {
  width: 100%;
}
.price th, .price td {
  border: 1px solid #000000;
  padding: 10px 2vw;
  width: 50%;
}
.price th {
  background: #EAF7FF;
}
.price td {
  text-align: right;
}
div.wrap {
  padding-top: calc(80 / 1920* 100vw);
}
.pay {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: calc((100% - 60px) / 3);
  background: #EAF7FF;
  padding: 2vw;
  gap: 20px;
}
.pay .ttl {
  font-size: max(1.2vw, 18px);
  padding-bottom: 10px;
  margin: 10px auto;
  text-align: center;
  font-weight: 500;
}
.pay_img {
  padding: 0 2vw 1vw;
  text-align: center;
}
.about_inner {
  background: #EAF7FF;
  max-width: 1000px;
  margin: 0 auto;
  padding: 3vw;
}
.bold {
  font-weight: 600;
}
.list_disc li {
  padding-left: 10px;
  margin-left: 10px;
  list-style: disc;
}
.case_inner {
  max-width: 1460px;
  margin: 0 auto;
  padding: 3vw 5vw;
  background: #F5F5F5;
}
.case_ttl {
  font-size: max(1.6vw, 20px);
  text-align: center;
  margin-bottom: 40px;
}
.case-images {
  display: flex;
  justify-content: space-between;
}
.before, .after {
  width: 48%;
  text-align: center;
}
.case-table {
  width: 100%;
  border-collapse: collapse;
}
.case-table th, .case-table td {
  border: 1px solid #ccc;
  padding: 8px;
}
.case-table th {
  background: #7899B3;
  color: #FFFFFF;
  width: 30%
}
.swiper-button-prev, .swiper-button-next {
  color: #789 !important;
}
.case-swiper {
  position: relative;
  padding-bottom: 5vw !important;
}
.case-button-prev, .case-button-next {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  z-index: 10;
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.case-button-prev {
  left: 0;
}
.case-button-next {
  right: 0;
}
.case_head {
  padding: 10px 0;
  text-align: center;
  color: #FFFFFF;
  background: #7899B3;
  font-size: max(1vw, 16px);
  margin-bottom: 5px;
}
.container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center
}
.card {
  position: relative;
  width: calc((100% - 30px) / 2);
  padding: 30px 25px;
  background: url("../images/plan_bg.png") center/cover no-repeat;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.card * {
  position: relative;
  z-index: 1; /* 文字や装飾を背景より上に */
}
.corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid #2c2c2c;
}
.top-left {
  top: 10px;
  left: 10px;
  border-bottom: none;
  border-right: none;
}
.top-right {
  top: 10px;
  right: 10px;
  border-bottom: none;
  border-left: none;
}
.bottom-left {
  bottom: 10px;
  left: 10px;
  border-top: none;
  border-right: none;
}
.bottom-right {
  bottom: 10px;
  right: 10px;
  border-top: none;
  border-left: none;
}
.title-ja {
  font-size: max(1.6vw, 20px);
  font-weight: 600;
  text-align: center;
  margin-bottom: 5px;
  color: #333;
}
.title-en {
  font-size: 18px;
  text-align: center;
  font-weight: bold;
  color: #7aaadf;
  margin-bottom: 20px;
}
.recommend-label {
  background-color: #FFFFFF;
  display: inline-block;
  padding: 8px 16px;
  font-weight: bold;
  text-align: center;
  margin: 0 auto 25px;
  border-radius: 4px;
  display: block;
  width: fit-content;
}
.checklist {
  max-width: 500px;
  width: 90%;
  margin: 0 auto;
}
ul.checklist {
  list-style: none;
  padding: 0;
}
ul.checklist li {
  position: relative;
  padding-left: 38px;
  margin-bottom: 20px;
  border-bottom: 1px dotted #b3cfe3;
  padding-bottom: 10px;
}
ul.checklist li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 16px;
  color: white;
  background-color: #7aaadf;
  border-radius: 3px;
  padding: 0 7px;
}
.treatment-flow {
  color: #333;
    position: relative;
}
.step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 50px;
  border: 1px solid #ccc;
  padding: 3vw;
    position: relative;
}
.step::before
{
    content: "";
    position: absolute;
    width: 3px;
    height: 50px;
    left: 50%;
    bottom: -50px;
    transform: translateX(-50%);
    background: #7899B3;
}
.step:last-child::before
{
    display: none;
}
.step-number {
  background-color: #d8e4ef;
  font-weight: bold;
  font-size: 20px;
  padding: 10px 15px;
  margin-right: 20px;
  border-radius: 3px;
  color: #2c2c2c;
}

.step-content h3 {
  margin: 0 0 10px;
  font-size: max(1.6vw , 20px);
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
}
.section {
  border-bottom: 1px solid #333;
  padding-bottom: 40px;
  margin-bottom: 40px;
}

h4.h4 {
  font-size: 24px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}

.bar {
  width: 8px;
  height: 30px;
  background: linear-gradient(180deg,rgba(120, 153, 179, 1) 0%, rgba(120, 153, 179, 1) 50% , rgba(5, 114, 181, 1) 50% , rgba(5, 114, 181, 1) 100%);
  margin-right: 12px;
  display: inline-block;
}
.step2 {
  display: flex;
  align-items: flex-start;
  margin-bottom: 50px;
  border: 1px solid #ccc;
  padding: 3vw;
    position: relative;
    gap: 30px;
}
.step2::before
{
    content: "";
    position: absolute;
    width: 3px;
    height: 50px;
    left: 50%;
    bottom: -50px;
    transform: translateX(-50%);
    background: #7899B3;
}
.step2:last-child::before
{
    display: none;
}
.step-text {
  flex: 1;
}
.step-text p
{
    padding-left: 2vw;
}
.step-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #7899B3;
}
.step2 h2 {
  font-size: max(1.4vw , 20px);
  margin: 0;
  color: #333;
}

.step-image img {
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}
.step-image
{
    width: 30%;
}
.faq-container {
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 24px;
  padding: 20px 0;
  position: relative;
}

.faq-title {
  font-size: max(1.4vw , 20px);
  color: #fff;
  margin: 0 0 10px 0;
  background-color: #6e8ca2;
  padding: 16px 30px;
  font-weight: 600;
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 40%, 100% 100% , 30px 100% , 0 60%);
}

.faq-text {
  padding: 16px 0 0 0;
  margin: 0;
  line-height: 1.8;
}
.flex_img
{
    width: calc(35% - 15px);
}
.flex_txt
{
    width: calc(65% - 15px);
}
.border_box
{
    border: 1px solid #0572B5;
    padding: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
}
.contact_table{
	border-collapse: collapse;
    width: 100%;
}
.contact_table th{
	background-color: #6486a5;
	color: #fff;
	padding: 15px;
	border: 1px solid #333;
	width: 28%;
}
.contact_table td{
	background-color: #fff;
	color: #333;
	padding: 15px;
	border: 1px solid #333;
}
.contact_table input,textarea {
	padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
	width: 100%;
}
.contact_table span {
	background-color: #a56464;
	padding: 5px;
	font-size:14px;
	margin-left: 5px;
}
.contact_submit{
	margin: 50px 0;
	text-align: center;
}
.contact_submit button{
	background-color: #BDE6FF;
	padding: 20px;
	color: #333;
	font-size: max(1vw, 16px);
	width: 250px;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
	font-weight: bold;
}
.contact_submit button:hover{
	opacity: 0.8;
	transition: opacity 0.5s;
}

/*==================================================
お知らせ（個別・一覧）
===================================*/
#single .container {
  padding: 0 15px;
  display: block;
}

#single .h3_ttl.slash::before {
  display: none;
}

#single .ss-ttl,
#single .single-box {
  max-width: 1000px;
  margin: auto;
}

.single-box .single-date {
  max-width: 900px;
  margin: auto;
  padding-bottom: 15px;
  font-size: 20px;
}

.single-box .single-body {
  max-width: 900px;
  margin: auto;
  font-size: 24px;
}

.single-nav {
  margin-top: 40px;
}

.nav-links {
  display: flex;
  justify-content: space-around;
}

.single-nav .nav-prev a,
.single-nav .nav-next a,
#single .back-to-archive a {
  font-size: 18px;
  color: inherit;
}

#single .back-to-archive {
  padding: 10px 15px;
  text-align: center;
}

#archive .container {
  margin: 100px auto 0 auto;
  padding: 0 15px;
  max-width: 1000px;
  display: block;
}

.archive-box {
  margin: 50px auto;
  padding-top: 50px;
  border-top: 1px solid #333;
}

.read-more {
  margin-top: 15px;
  margin-bottom: 50px;
}

.read-more a {
  font-size: 18px;
  color: #0073aa;
  text-decoration: underline;
  line-height: 1.4;
}

.archive-date {
  font-size: 20px;
}

.archive-box .ttl {
  font-size: 24px;
  margin: 10px 0;
}

.archive-box .ttl a {
  color: #333;
}

.archive-box .archive-body {
  font-size: 20px;
}

.pagination-wrapper {
  margin-bottom: 150px;
  font-size: 24px;
  padding-top: 50px;
  border-top: 1px solid #333;
}

.pagination-wrapper h2 {
  display: none;
}


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

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;
  }
}
/*--------------------------------------------------------------------------

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: 30%;
    text-align: center;
    margin: 0 auto;
  }
  .mv {
    height: 80vw;
    max-width: 95%;
    margin: 0 auto;
  }
  .slider {
    position: relative;
    z-index: 0;
    /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
    height: 80vw;
  }
  /*　背景画像設定　*/
  .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 {
    width: 100%; /*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    height: 80vw;
    background-repeat: no-repeat; /*背景画像をリピートしない*/
    background-position: center; /*背景画像の位置を中央に*/
    background-size: cover; /*背景画像が.slider-item全体を覆い表示*/
  }
  .catch {
    width: calc(753 / 1024* 100vw);
    height: calc(356 / 1024* 100vw);
  }
  .info-wrapper {
    flex-direction: column;
    gap: 2rem;
  }
  .news, .info {
    flex: 1 1 100%;
  }
  .news-item {
    flex-direction: column;
    padding: 1rem;
    gap: 10px;
  }
  .news-date {
    width: fit-content;
    padding: 0.4rem 0.8rem;
  }
  .info-section .info {
  margin-top: 50px;
}
  .info-table table th, .info-table table td {
    padding: 0.5rem;
  }
  .access-icons {
    gap: 1%;
  }
  .access-item {
    flex: 1 1 26%;
    text-align: center;
    padding: 3%;
  }
  .access-item img {
    width: 36px;
    height: 36px;
  }
  .access-item:nth-child(2)::before {
    height: calc(40 / 767* 100vw);
  }
  .access-item:nth-child(2)::after {
    height: calc(40 / 767* 100vw);
  }
  .access-item p {
    line-height: 1.5;
  }
  .news-date {
    background: #7fa8c2;
    margin: -10px 0 0-10px;
  }
  .top_bnr_inner a {
    flex: 1 1 100%;
  }
  .flow_item {
    min-height: 100%;
    min-width: 86%;
  }
  .flow_slider .swiper-slide::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: calc(20 / 767 * 100vw) solid #3B7EB2;
    border-top: calc(35 / 767 * 100vw) solid transparent;
    border-bottom: calc(35 / 767 * 100vw) solid transparent;
    top: 0;
    bottom: 0;
    margin: auto;
    right: calc(-35 / 767 * 100vw);
  }
  .flow_slider {
    position: relative;
    padding-bottom: calc(80 / 767* 100vw) !important; /* ページネーション用の余白 */
  }
  /* ページネーションのドットの大きさ */
  .swiper-pagination .swiper-pagination-bullet {
    width: 8px; /* ドットの幅 */
    height: 8px; /* ドットの高さ */
    margin: 0 8px !important; /* ドット間のスペースを調整 */
    background-color: #3B7EB2; /* ドットの色 */
    border-radius: 50%; /* 丸くする */
  }
  .flow_num {
    background: #0572B5;
    color: #fff;
    font-size: max(1.6vw, 20px);
    width: 60px;
    height: 60px;
    line-height: 60px;
    margin: 0 auto 10px;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 600;
  }
  .sp_feature_inner {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
  }
  .sp_feature_list {
    width: 100%;
    position: relative;
  }
  .sp_feature_items {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: calc(80 / 767* 100vw);
  }
  .sp_feature_items .wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
  }
  .feature__ttl_wrap {
    padding: calc(50 / 767* 100vw) 0;
    background: #BDE6FF;
    text-align: center;
    width: 100%;
  }
  .sp_feature_items .wrap p.t18 {
    max-width: 90%;
    margin: 0 auto;
  }
  .sp_contents {
    width: 100%;
    height: 100%;
  }
  .hygiene_management_inner img {
    width: calc(50% - 15px);
  }
  .greering_text {
    width: 100%;
  }
  .greeting_img {
    width: 100%;
  }
  .name {
    position: absolute;
    bottom: 5vw;
    left: 3vw;
    width: calc(361 / 767* 100vw);
  }
  .flex-3 .medical_items {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .flex-4 .medical_items {
    width: calc((100% - 20px) / 2);
  }
  .f_info {
    width: 100%;
  }
  .f_time {
    width: 100%;
  }
  .f_img {
    width: 100%;
  }
  .f_access {
    width: 100%;
  }
  .gnav ul {
    flex-wrap: wrap;
  }
  .sp_floating {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 99;
    display: flex;
    width: calc(100% - 80px);
    margin-right: auto;
  }
  #page-top {
    bottom: 0px;
  }
  .h3_ttl.slash {
    padding-bottom: calc(80 / 767* 100vw);
    position: relative;
  }
  .h3_ttl.slash::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateY(-50%) rotate(45deg);
    height: calc(50 / 767* 100vw);
    width: 1px;
    background: #333333;
  }
  .mt5 {
    margin-top: calc(50 / 767* 100vw);
  }
  .mt3 {
    margin-top: calc(30 / 767* 100vw);
  }
  .flex-2 {
    width: 100%;
  }
  .flex-equipment div {
    max-width: calc((100% - 20px) / 2)
  }
  .feature_txt {
    width: 100%;
  }
  .feature_img {
    width: 100%;
  }
    .anchor_inner li {
  max-width: calc((100% - 4px) / 2);
  position: relative;
}
    .card {
  width: 100%;
}
    .kinds {
  width: 100%;
}
    .list_check .flex-2 {
  width: 100%;
}
    .pay {
  width: 100%;
}
    .step2 {
  flex-wrap: wrap;
}
    .step-image {
  width: 100%;
}
    .flex_img {
  width: 100%;
}
    .flex_txt {
  width: 100%;
}
	.contact_table th,
  .contact_table td{
		display: block;
		width: 100%;
	}
}
/*==================================================
フェードイン
===================================*/
.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;
}


/* ===== グローバルナビ追従設定 ===== */
.gnav.sticky {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 10000;
}

/* 固定時に高さ分の余白を確保 */
.gnav-placeholder {
  height: 80px; /* 実際の .gnav の高さに合わせて調整 */
}
