@charset "utf-8";
/*================================
ここから全サイズ適用
================================*/

/*================================
共通パーツ
================================*/
/*バナー*/
.bnr_group {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px 40px;
}
.bnr_item {
  text-align: center;
}
.bnr_item img {
  display: inline-block;
}
.bnr_item a {
  transition: 0.3s;
}
.bnr_item a:hover {
  opacity: 0.7;
}

/*================================
ヘッダー
================================*/
.header {
  animation: fadeInDown 2s 0.4s ease backwards;
}
.hd_logo {
  transition: 0.4s;
  visibility: hidden;
  opacity: 0;
}
.header.-bg .hd_logo {
  visibility: visible;
  opacity: 1;
}

/*side_fix
================================*/
.side_fix {
  animation: zoomIn 1s 2s ease backwards;
}

/*================================
メインビジュアル
================================*/
#main-visual {
}
.mv_content {
  /*flex*/
  display: flex;
  justify-content: center;
  align-items: stretch;
  /*others*/
  margin-left: auto;
}

/*------------------------------*/
/*メインビジュアル　キャッチコピー*/
/*------------------------------*/
.mv_catchcopy {
  /*flex*/
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: flex-end;
  gap: 4rem;
  /*others*/
  width: 40%;
  min-width: 52rem;
  padding: 7rem 4rem;
}
.mv_logo {
  width: 100%;
  max-width: 600px;
  animation: fadeInUp 2s 0.6s ease both;
}
.mv_logo_img {
  margin-right: auto;
  margin-left: auto;
}
.mv_catchcopy_group {
  /*flex*/
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  /*others*/
  width: 100%;
  max-width: 600px;
}
.mv_title {
  font-size: 4.5rem; /*4.8rem*/
  line-height: 1.45;
  letter-spacing: 0.05em;
  color: var(--theme-color01);
  /*anime*/
  animation: fadeInUp 2s 1s ease both;
}
.mv_text {
  /*padding-top: 5rem;*/
  line-height: 2.3;
  letter-spacing: 0.05em;
  color: var(--theme-color01);
  /*anime*/
  animation: fadeInUp 2s 1.4s ease both;
}

/*------------------------------*/
/*メインビジュアル　写真*/
/*------------------------------*/
.mv_pic {
  position: relative;
  z-index: 1;
  width: 60%;
  height: 69rem;
  border-radius: 0 0 0 8rem;
  /*1枚だけ画像表示する場合*/
  background-image: url(../img/top/mv_img01.webp?4);
  background-position: left top;
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-color: #faf8fa;
  /*anime*/
  animation: zoomOut 2s 0s ease both;
}
@keyframes mv_pic {
  from {
    background-size: auto 160%;
  }
  to {
    background-size: auto 100%;
  }
}
.mv_pic::after {
  position: absolute;
  z-index: 1;
  content: "";
  right: 3rem;
  top: calc(50% + 6rem);
  transform: translateY(-50%);
  width: 2.3rem;
  height: 17rem;
  background: url(../img/top/scroll_text.png) center/contain no-repeat;
}

/*スライダー設定
.swiper {
}
.swiper--wrapper {
  width: 100%;
  height: 100%;
  transition-timing-function: linear;
}
.swiper-slide {
  width: 100%;
  height: 100%;
  background-position: left top;
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-color: #faf8fa;
  文字が必要な場合
	color: #ffffff;
	text-align: center;
	line-height: 300px;
}
.swiper-slide.-slide01 {
  background-image: url(../img/top/mv_img01.webp?4);
}
.swiper-slide.-slide02 {
  background-image: url(../img/top/mv_img02.webp);
}
.swiper-slide.-slide03 {
  background-image: url(../img/top/mv_img03.webp);
}
.swiper-slide.-slide04 {
  background-image: url(../img/top/mv_img04.webp);
}
.swiper-slide.-slide05 {
  background-image: url(../img/top/mv_img05.webp);
}
*/

/*縦書き設定*/
.vertical {
  writing-mode: vertical-rl;
  text-orientation: upright;
}

/*モバイル検索のサムネイル画像対策
--------------------------------*/
#main-visual .thumbnail_img {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 200px;
}

/*================================
メインコンテンツ
================================*/
.main {
  padding-top: 10rem;
}

/*================================
お知らせ・バナーなど
================================*/
.topics {
}
.topics .inner {
  max-width: calc(1000px + 14rem);
  padding-bottom: 80px;
}
.topics_frame {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--theme-color02);
  text-align: center;
}
.topics_title {
  margin-bottom: 20px;
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.05em;
  color: var(--theme-color01);
}
.topics_text {
  display: inline-block;
  text-align: left;
}

/*================================
当院について・当院の特長・診療科目
================================*/
.introduction {
  margin-bottom: 10rem;
}
.introduction .inner {
  /*flex*/
  display: flex;
  justify-content: center;
  align-items: flex-start;
  /*others*/
  position: relative;
  z-index: 1;
  max-width: calc(1200px + 14rem);
}
.introduction .inner::after {
  position: absolute;
  z-index: -1;
  content: "";
  top: 4.6rem;
  left: 50%;
  transform: translateX(-50%);
  width: 102vw;
  height: 19.2rem;
  border-top: 1px solid var(--theme-color02);
  border-bottom: 1px solid var(--theme-color02);
}
.intro_bg {
  position: absolute;
  z-index: -1;
  content: "";
  left: 4rem;
  top: 3rem;
  width: calc(100% - 8rem);
  padding-top: 37.35%;
  background: var(--theme-color01);
  border-radius: 4rem 0 4rem 0;
}
.intro_catchcopy {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translateX(100%);
  writing-mode: vertical-rl;
  text-orientation: sideways;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.05em;
  color: var(--theme-color03);
}
/*写真*/
/*------------------------------*/
.intro_photo_group {
  /*flex*/
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  flex-direction: column;
  /*others*/
  width: calc(100% - (48.3% - 15%));
  margin-right: -15%;
}
.intro_photo01 {
}
.intro_photo01_frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  max-width: 800px;
  border-radius: 4rem 0 4rem 0;
  /*縦横比*/
  aspect-ratio: 8/5;
}
.intro_photo01_img {
  width: 100%;
}
.intro_photo01_frame::before {
  position: absolute;
  z-index: 1;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 4rem 0 4rem 0;
  box-shadow: 0 0 0 0.8rem rgba(255, 255, 255, 0.5) inset;
}
.intro_photo01_frame::after {
  position: absolute;
  z-index: 1;
  content: "";
  left: 0.8rem;
  top: 0.8rem;
  width: calc(100% - (0.8rem * 2));
  height: calc(100% - (0.8rem * 2));
  border-radius: 3.2rem 0 3.2rem 0;
  border: 1px solid #fff;
}
.intro_photo02 {
  z-index: 1;
  width: 32.5%;
  margin-right: 20%;
  margin-top: -15%;
}
/*文章*/
/*------------------------------*/
.intro_frame {
  /*flex*/
  display: flex;
  justify-content: center;
  align-items: stretch;
  /*others*/
  z-index: 1;
  width: 48.3%; /*約580px*/
  margin-top: 6rem;
}
.intro_frame_bg {
  /*flex*/
  display: flex;
  justify-content: center;
  align-items: stretch;
  /*others*/
  width: 100%;
  padding: 6rem 6rem;
  background: rgba(255, 255, 255, 0.9);
}
.intro_body {
  max-width: 40rem;
}
.intro_heading {
  margin-bottom: 30px;
}
.intro_heading_en {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  padding-bottom: 0.24em;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 5.8rem;
  line-height: 1;
  text-align: left;
  letter-spacing: 0.05em;
  color: var(--theme-color01);
}
.intro_heading_en::before {
  position: absolute;
  z-index: 1;
  content: "";
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0.64em;
  background: var(--theme-color01);
}
.intro_heading_jp {
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
  letter-spacing: 0.05em;
  color: var(--theme-color04);
}

/*------------------------------*/
/*左右反転*/
/*------------------------------*/
.introduction.-reverse {
}
.introduction.-reverse .inner {
  flex-direction: row-reverse;
}
.introduction.-reverse .intro_photo_group {
  margin-right: 0;
  margin-left: -15%;
  align-items: flex-start;
}
.introduction.-reverse .intro_photo02 {
  margin-left: 20%;
}
.introduction.-reverse .intro_catchcopy {
  right: auto;
  left: 0;
  transform: translateX(-100%);
}

/*================================
医院イメージ画像
================================*/
.appearance {
  margin-bottom: 10rem;
}
.app_photo01 {
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding-top: 37%;
  background-image: url(../img/top/photo_bg01.webp?5);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 4rem 0 4rem 0;
}
.app_photo01::before {
  position: absolute;
  z-index: 1;
  content: "";
  width: 100%;
  height: calc(100% - 2rem);
  top: 1rem;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.app_photo02 {
  position: relative;
  z-index: 1;
  aspect-ratio: 15/11;
  width: 45rem;
  margin-top: -15rem;
  margin-left: auto;
  margin-right: 8rem;
  background-image: url(../img/top/photo_img01.webp?2);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/*================================
診療内容
================================*/
.service {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--theme-color02);
}
.service::before {
  position: absolute;
  z-index: -1;
  content: "";
  left: 0;
  top: 6px;
  width: 100%;
  border-top: 1px solid var(--theme-color02);
}
.service .inner {
  /*flex*/
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 40px 4rem;
  /*others*/
  max-width: calc(1000px + 14rem);
  padding-top: 9rem;
  padding-bottom: 9rem;
}
.service_heading {
  width: 30rem;
}
.service_heading_en {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  padding-bottom: 0.24em;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
  /*font-size: 6.6rem;*/
  font-size: 6rem;
  line-height: 0.65;
  text-align: left;
  letter-spacing: 0.05em;
  color: var(--theme-color01);
}
.service_heading_en::before {
  position: absolute;
  z-index: 1;
  content: "";
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0.64em;
  background: var(--theme-color01);
}
.service_heading_jp {
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
  letter-spacing: 0.05em;
  color: var(--theme-color04);
}
.service_content {
  width: calc(100% - (30rem + 4rem));
}
.services_group {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-flow: row wrap;
  gap: 3rem 4rem;
}
.services_item {
  width: calc(100% / 3 - 4rem * 2 / 3);
  /*min-width: 16rem;*/
}
.services_link {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  flex-direction: column;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: 0.4s;
  height: 16rem;
  padding: 0 0.8rem 2.4rem;
	background: var(--theme-color06);
  background-position: top 2rem center;
  background-size: 8rem 6.6rem;
  background-repeat: no-repeat;
	border: 1px solid var(--theme-color04);
  border-radius: 2rem 0.2rem 2rem 0.2rem;
}
.services_link::before {
  transition: 0.4s;
  opacity: 0;
  position: absolute;
  z-index: -1;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--theme-color04);
  background-position: top 2rem center;
  background-size: 8rem 6.6rem;
  background-repeat: no-repeat;
}
.services_name {
  position: relative;
  z-index: 1;
  transition: 0.4s;
  padding-bottom: 0.2em;
  font-size: 1.8rem;
  text-align: center;
	color: #333;
}
.services_name::before {
  position: absolute;
  z-index: 1;
  content: "";
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 7rem;
  height: 1px;
  background: var(--theme-color04);
  transition: 0.4s;
}
/*hover
-------------------------------*/
.services_link:hover::before {
  opacity: 1;
  background-color: #ccb892;
}
.services_link:hover .services_name {
  color: var(--theme-color06);
}
.services_link:hover .services_name::before {
  background: var(--theme-color06);
}
/*診療内容アイコン
-------------------------------*/
.services_link.-icon01 {
  background-image: url(../img/top/services_icon01_off.png?02);
}
.services_link.-icon02 {
  background-image: url(../img/top/services_icon02_off.png?02);
}
.services_link.-icon03 {
  background-image: url(../img/top/services_icon03_off.png?02);
}
.services_link.-icon04 {
  background-image: url(../img/top/services_icon04_off.png?02);
}
.services_link.-icon05 {
  background-image: url(../img/top/services_icon05_off.png?02);
}
.services_link.-icon06 {
  background-image: url(../img/top/services_icon06_off.png?02);
}
.services_link.-icon07 {
  background-image: url(../img/top/services_icon07_off.png?02);
}
.services_link.-icon08 {
  background-image: url(../img/top/services_icon08_off.png?02);
}
.services_link.-icon09 {
  background-image: url(../img/top/services_icon09_off.png?02);
}
.services_link.-icon10 {
  background-image: url(../img/top/services_icon10_off.png?02);
}
.services_link.-icon11 {
  background-image: url(../img/top/services_icon11_off.png?02);
}
/*診療内容アイコン（hover）
-------------------------------*/
.services_link.-icon01::before {
  background-image: url(../img/top/services_icon01_on.png);
}
.services_link.-icon02::before {
  background-image: url(../img/top/services_icon02_on.png);
}
.services_link.-icon03::before {
  background-image: url(../img/top/services_icon03_on.png);
}
.services_link.-icon04::before {
  background-image: url(../img/top/services_icon04_on.png);
}
.services_link.-icon05::before {
  background-image: url(../img/top/services_icon05_on.png);
}
.services_link.-icon06::before {
  background-image: url(../img/top/services_icon06_on.png);
}
.services_link.-icon07::before {
  background-image: url(../img/top/services_icon07_on.png);
}
.services_link.-icon08::before {
  background-image: url(../img/top/services_icon08_on.png);
}
.services_link.-icon09::before {
  background-image: url(../img/top/services_icon09_on.png);
}
.services_link.-icon10::before {
  background-image: url(../img/top/services_icon10_on.png);
}
.services_link.-icon11::before {
  background-image: url(../img/top/services_icon11_on.png);
}
/*準備中*/
.services_group.-nolink {
  position: relative;
  z-index: 1;
}
.services_group.-nolink::before {
  position: absolute;
  z-index: 2;
  content: "準備中";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(200, 200, 200, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  color: #fff;
}

/*================================
お知らせ
================================*/
.news {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--theme-color02);
}
.news::before {
  position: absolute;
  z-index: -1;
  content: "";
  left: 0;
  top: 6px;
  width: 100%;
  border-top: 1px solid var(--theme-color02);
}
.news .inner {
  /*flex*/
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 40px 4rem;
  /*others*/
  max-width: calc(1000px + 14rem);
  padding-top: 9rem;
  padding-bottom: 9rem;
}
.news_heading {
  width: 30rem;
}
.news_heading_en {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  padding-bottom: 0.24em;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 6.6rem;
  line-height: 0.65;
  letter-spacing: 0.05em;
  text-align: left;
  color: var(--theme-color01);
}
.news_heading_en::before {
  position: absolute;
  z-index: 1;
  content: "";
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0.64em;
  background: var(--theme-color01);
}
.news_heading_jp {
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
  letter-spacing: 0.05em;
  color: var(--theme-color04);
}
.news_content {
  width: calc(100% - (30rem + 4rem));
}

.news_scroll {
  overflow-y: scroll;
  margin-left: auto;
  margin-right: auto;
  min-height: 12rem;
  max-height: 25rem;
  padding-right: 20px;
}
.news_list {
}
.news_list .date {
  float: left;
  width: 16rem;
  font-weight: 500;
  color: var(--theme-color01);
}
.news_list .article {
  margin-left: 16rem;
  margin-bottom: 20px;
}
.news_list .article a {
  text-decoration: underline;
  font-weight: 500;
  color: var(--theme-color01);
}

/*================================
施設基準
================================*/
.facility_standards {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--theme-color02);
}
.facility_standards::before {
  position: absolute;
  z-index: -1;
  content: "";
  left: 0;
  top: 6px;
  width: 100%;
  border-top: 1px solid var(--theme-color02);
}
.facility_standards .inner {
  /*others*/
  max-width: calc(1000px + 14rem);
  padding-top: 9rem;
  padding-bottom: 9rem;
}
.facility_standards_heading {
  margin-bottom: 40px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--theme-color01);
	font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  letter-spacing: 0.05em;
  color: var(--theme-color01);
}
.facility_standards_content {
}
.facility_standards_frame_bg {
  /*max-width: 80%;*/
  margin-right: auto;
  margin-left: auto;
  padding: 40px 30px;
  background-color: #f1f6f7;
  border: 1px solid var(--theme-color01);
  border-radius: 4px;
}
.facility_standards_group {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  column-gap: 4rem;
  row-gap: 16px;
}
.facility_standards_item {
  width: calc(100% / 2 - (4rem / 2));
}

.facility_standards .li-number {
  position: relative;
  padding-left: 1.2em;
  text-align: left;
}
.facility_standards .li-number::before {
  position: absolute;
  content: "";
  top: 0.8em;
  left: 0.2em;
	width: 0.4em;
	height: 0.4em;
	border-radius: 50%;
	background: var(--theme-color01);
}
.facility_standards .li-number:not(:last-child) {
  margin-bottom: 16px;
}

/*================================
インスタグラム
================================*/
.instagram {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--theme-color02);
}
.instagram::before {
  position: absolute;
  z-index: -1;
  content: "";
  left: 0;
  top: 6px;
  width: 100%;
  border-top: 1px solid var(--theme-color02);
}
.instagram::after {
  position: absolute;
  z-index: -1;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 8px;
  border-top: 1px solid var(--theme-color02);
  border-bottom: 1px solid var(--theme-color02);
}
.instagram .inner {
  max-width: calc(1000px + 14rem);
  padding-top: 9rem;
  padding-bottom: 9rem;
}
.instagram_heading {
  margin-bottom: 40px;
}
.instagram_heading_en {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  padding-bottom: 0.24em;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 6.6rem;
  line-height: 0.65;
  text-align: left;
  letter-spacing: 0.05em;
  color: var(--theme-color01);
}
.instagram_heading_en::before {
  position: absolute;
  z-index: 1;
  content: "";
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0.64em;
  background: var(--theme-color01);
}
.instagram_heading_jp {
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
  letter-spacing: 0.05em;
  color: var(--theme-color04);
}
.instagram_content {
  padding: 30px 30px 10px;
  /*border: 1px solid #c5ae97;*/
  border-radius: 2rem 0.2rem 2rem 0.2rem;
  background: var(--theme-color01);
}

/*================================
ノートPC 1366px～0px
================================*/
@media (max-width: 1366px) {
  /*------------------------------*/
  /*メインビジュアル　キャッチコピー*/
  /*------------------------------*/
  .mv_title {
    font-size: 3.4rem;
  }
}

/*================================
TABLET横 1080px～0px
================================*/
@media (max-width: 1080px) {
  /*================================
	共通パーツ
	================================*/

  /*バナー*/
  /*------------------------------*/
  .bnr_group {
  }
  .bnr_item {
  }
  .bnr_item a {
  }

  /*================================
	メインビジュアル
	================================*/
  #main-visual {
  }
  .mv_content {
  }

  /*------------------------------*/
  /*メインビジュアル　キャッチコピー*/
  /*------------------------------*/
  .mv_catchcopy {
  }
  .mv_logo {
    max-width: 100%;
  }
  .mv_catchcopy_group {
    /*others*/
    max-width: 100%;
  }
  .mv_title {
  }
  .mv_text {
  }

  /*------------------------------*/
  /*メインビジュアル　写真*/
  /*------------------------------*/
  .mv_pic {
  }
  .mv_pic::after {
  }

  /*スライダー設定*/

  /*縦書き設定*/
  .vertical {
  }

  /*モバイル検索のサムネイル画像対策
	--------------------------------*/
  #main-visual .thumbnail_img {
  }

  /*================================
	メインコンテンツ
	================================*/
  .main {
  }

  /*================================
	お知らせ・バナーなど
	================================*/
  .topics {
  }
  .topics .inner {
  }
  .topics_frame {
  }
  .topics_title {
  }
  .topics_text {
  }

  /*================================
	当院について・当院の特長・診療科目
	================================*/
  .introduction {
  }
  .introduction .inner {
  }
  .introduction .inner::after {
  }
  .intro_bg {
  }
  .intro_catchcopy {
  }
  /*写真*/
  /*------------------------------*/
  .intro_photo_group {
  }
  .intro_photo01 {
  }
  .intro_photo01_frame {
  }
  .intro_photo01_frame::before {
  }
  .intro_photo01_frame::after {
  }
  .intro_photo02 {
  }
  /*文章*/
  /*------------------------------*/
  .intro_frame {
  }
  .intro_frame_bg {
  }
  .intro_body {
  }
  .intro_heading {
  }
  .intro_heading_en {
  }
  .intro_heading_en::before {
  }
  .intro_heading_jp {
  }

  /*------------------------------*/
  /*左右反転*/
  /*------------------------------*/
  .introduction.-reverse {
  }
  .introduction.-reverse .inner {
  }
  .introduction.-reverse .intro_photo_group {
  }
  .introduction.-reverse .intro_photo02 {
  }
  .introduction.-reverse .intro_catchcopy {
  }

  /*================================
	医院イメージ画像
	================================*/
  .appearance {
  }
  .app_photo01 {
  }
  .app_photo01::before {
  }
  .app_photo02 {
  }

  /*================================
	診療内容
	================================*/
  .service {
  }
  .service::before {
  }
  .service .inner {
  }
  .service_heading {
  }
  .service_heading_en {
  }
  .service_heading_en::before {
  }
  .service_heading_jp {
  }
  .service_content {
  }
  .services_group {
  }
  .services_item {
  }
  .services_link {
  }
  .services_link::before {
  }
  .services_name {
  }
  .services_name::before {
  }

  /*================================
	お知らせ
	================================*/
  .news {
  }
  .news::before {
  }
  .news .inner {
  }
  .news_heading {
  }
  .news_heading_en {
  }
  .news_heading_en::before {
  }
  .news_heading_jp {
  }
  .news_content {
  }

  .news_scroll {
  }
  .news_list {
  }
  .news_list .date {
  }
  .news_list .article {
  }

  /*================================
	インスタグラム
	================================*/
  .instagram {
  }
  .instagram::before {
  }
  .instagram .inner {
  }
  .instagram_heading {
  }
  .instagram_heading_en {
  }
  .instagram_heading_en::before {
  }
  .instagram_heading_jp {
  }
  .instagram_content {
  }
}

/*================================
TABLET縦 834px～0px
================================*/
@media (max-width: 834px) {
  /*================================
	共通パーツ
	================================*/

  /*バナー*/
  /*------------------------------*/
  .bnr_group {
  }
  .bnr_item {
  }
  .bnr_item a {
  }

  /*================================
	メインビジュアル
	================================*/
  #main-visual {
  }
  .mv_content {
    flex-direction: column;
  }

  /*------------------------------*/
  /*メインビジュアル　キャッチコピー*/
  /*------------------------------*/
  .mv_catchcopy {
    /*flex*/
    justify-content: center;
    /*others*/
    width: 100%;
    min-width: auto;
    padding-top: 12rem;
  }
  .mv_logo {
  }
  .mv_catchcopy_group {
    /*flex*/
    justify-content: center;
  }
  .mv_title {
    font-size: 4rem;
  }
  .mv_text {
  }

  /*------------------------------*/
  /*メインビジュアル　写真*/
  /*------------------------------*/
  .mv_pic {
    z-index: -1;
    width: 100%;
    border-radius: 0;
  }
  .mv_pic::after {
  }

  /*スライダー設定*/

  /*縦書き設定*/
  .vertical {
  }

  /*モバイル検索のサムネイル画像対策
	--------------------------------*/
  #main-visual .thumbnail_img {
  }

  /*================================
	メインコンテンツ
	================================*/
  .main {
  }

  /*================================
	お知らせ・バナーなど
	================================*/
  .topics {
  }
  .topics .inner {
  }
  .topics_frame {
  }
  .topics_title {
  }
  .topics_text {
  }

  /*================================
	当院について・当院の特長・診療科目
	================================*/
  .introduction {
  }
  .introduction .inner {
    flex-direction: column;
  }
  .introduction .inner::after {
  }
  .intro_bg {
    padding-top: 0;
    height: 100%;
  }
  .intro_catchcopy {
  }
  /*写真*/
  /*------------------------------*/
  .intro_photo_group {
    /*flex*/
    align-items: center;
    flex-direction: row;
    width: 100%;
    /*others*/
    width: 96%;
    margin-left: auto;
    margin-right: auto;
  }
  .intro_photo01 {
    width: 84%;
  }
  .intro_photo01_frame {
  }
  .intro_photo01_frame::before {
  }
  .intro_photo01_frame::after {
  }
  .intro_photo02 {
    width: 30%;
    margin-top: 0;
    margin-right: 0;
    margin-left: -14%;
  }
  /*文章*/
  /*------------------------------*/
  .intro_frame {
    width: 100%;
    max-width: 600px;
    margin-top: -30px;
    margin-right: auto;
    margin-left: auto;
  }
  .intro_frame_bg {
  }
  .intro_body {
  }
  .intro_heading {
  }
  .intro_heading_en {
  }
  .intro_heading_en::before {
  }
  .intro_heading_jp {
  }

  /*------------------------------*/
  /*左右反転*/
  /*------------------------------*/
  .introduction.-reverse {
  }
  .introduction.-reverse .inner {
    flex-direction: column;
  }
  .introduction.-reverse .intro_photo_group {
    /*flex*/
    align-items: center;
    flex-direction: row-reverse;
    width: 100%;
    /*others*/
    width: 96%;
    margin-left: auto;
    margin-right: auto;
  }
  .introduction.-reverse .intro_photo02 {
    width: 30%;
    margin-top: 0;
    margin-left: 0;
    margin-right: -14%;
  }
  .introduction.-reverse .intro_catchcopy {
  }

  /*================================
	医院イメージ画像
	================================*/
  .appearance {
  }
  .app_photo01 {
  }
  .app_photo01::before {
  }
  .app_photo02 {
    width: 30%;
    margin-top: -10%;
  }

  /*================================
	診療内容
	================================*/
  .service {
  }
  .service::before {
  }
  .service .inner {
    align-items: center;
    flex-direction: column;
  }
  .service_heading {
    width: auto;
  }
  .service_heading_en {
  }
  .service_heading_en::before {
  }
  .service_heading_jp {
  }
  .service_content {
    width: 100%;
  }
  .services_group {
    margin: auto;
  }
  .services_item {
  }
  .services_link {
  }
  .services_link::before {
  }
  .services_name {
  }
  .services_name::before {
  }

  /*================================
	お知らせ
	================================*/
  .news {
  }
  .news::before {
  }
  .news .inner {
    align-items: center;
    flex-direction: column;
  }
  .news_heading {
    width: auto;
  }
  .news_heading_en {
  }
  .news_heading_en::before {
  }
  .news_heading_jp {
  }
  .news_content {
    width: 100%;
  }

  .news_scroll {
  }
  .news_list {
  }
  .news_list .date {
  }
  .news_list .article {
  }

  /*================================
	施設基準
	================================*/
  .facility_standards_frame_bg {
    max-width: 100%;
    padding: 16px;
  }
  .facility_standards_group {
    flex-flow: column wrap;
  }
  .facility_standards_item {
    width: 100%;
  }

  /*================================
	インスタグラム
	================================*/
  .instagram {
  }
  .instagram::before {
  }
  .instagram .inner {
  }
  .instagram_heading {
  }
  .instagram_heading_en {
  }
  .instagram_heading_en::before {
  }
  .instagram_heading_jp {
  }
  .instagram_content {
  }
}

/*================================
SP表示 667px～0px
================================*/
@media (max-width: 667px) {
  /*================================
	共通パーツ
	================================*/

  /*バナー*/
  /*------------------------------*/
  .bnr_group {
    flex-direction: column;
  }
  .bnr_item {
  }
  .bnr_item a {
  }

  /*================================
	メインビジュアル
	================================*/
  #main-visual {
  }
  .mv_content {
  }

  /*------------------------------*/
  /*メインビジュアル　キャッチコピー*/
  /*------------------------------*/
  .mv_catchcopy {
    /*others*/
    padding-right: 2rem;
    padding-top: 10rem;
    padding-left: 2rem;
  }
  .mv_logo {
  }
  .mv_catchcopy_group {
    /*------------------------------
		↓↓↓↓ min-heightの設定 ↓↓↓↓
		------------------------------*/
    /*------------------------------
		min-height: calc(4rem*〇 + 3rem);
		〇に.mv_titleの一行分の文字数を入れる
		------------------------------
		4remは.mv_titleの文字サイズ
		3remは.mv_catchcopy_groupのpadding-top
		------------------------------*/
    /*min-height: calc(4rem*9 + 3rem);*/
    /*------------------------------
		↑↑↑↑ min-heightの設定 ↑↑↑↑
		------------------------------*/
  }
  .mv_title {
    font-size: 3.2rem;
  }
  .mv_text {
    padding-top: 2rem;
  }

  /*------------------------------*/
  /*メインビジュアル　写真*/
  /*------------------------------*/
  .mv_pic {
    height: 39rem; /*45rem*/
    /*1枚だけ画像表示する場合*/
    background-position: center top;
    background-image: url(../img/top/mv_img01_sp.webp?4);
  }
  .mv_pic::after {
    display: none;
  }

  /*スライダー設定
  .swiper-slide {
    background-position: center top;
  }
  .swiper-slide.-slide01 {
    background-image: url(../img/top/mv_img01_sp.webp?4);
  }
  .swiper-slide.-slide02 {
    background-image: url(../img/top/mv_img02_sp.webp?4);
  }
  .swiper-slide.-slide03 {
    background-image: url(../img/top/mv_img03_sp.webp?4);
  }
  .swiper-slide.-slide04 {
    background-image: url(../img/top/mv_img04_sp.webp?4);
  }
  .swiper-slide.-slide05 {
    background-image: url(../img/top/mv_img05_sp.webp?4);
  }
  */

  /*縦書き設定*/
  .vertical {
  }

  /*モバイル検索のサムネイル画像対策
	--------------------------------*/
  #main-visual .thumbnail_img {
  }

  /*================================
	メインコンテンツ
	================================*/
  .main {
  }

  /*================================
	お知らせ・バナーなど
	================================*/
  .topics {
  }
  .topics .inner {
  }
  .topics_frame {
  }
  .topics_title {
  }
  .topics_text {
  }

  /*================================
	当院について・当院の特長・診療科目
	================================*/
  .introduction {
  }
  .introduction .inner {
  }
  .introduction .inner::after {
    height: 120px;
  }
  .intro_bg {
    left: 10px;
    width: calc(100% - 20px);
    border-radius: 20px 0 20px 0;
  }
  .intro_catchcopy {
    display: none;
  }
  /*写真*/
  /*------------------------------*/
  .intro_photo_group {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
  .intro_photo01 {
    width: 90%;
  }
  .intro_photo01_frame {
    border-radius: 20px 0 20px 0;
    aspect-ratio: 8/6;
  }
  .intro_photo01_frame::before {
    border-radius: 20px 0 20px 0;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.5) inset;
  }
  .intro_photo01_frame::after {
    left: 4px;
    top: 4px;
    width: calc(100% - (4px * 2));
    height: calc(100% - (4px * 2));
    border-radius: 16px 0 16px 0;
  }
  .intro_photo02 {
    width: 32%;
    margin-left: auto;
    margin-top: -16vw;
  }
  /*文章*/
  /*------------------------------*/
  .intro_frame {
    margin-top: 20px;
  }
  .intro_frame_bg {
    padding: 40px 30px;
  }
  .intro_body {
  }
  .intro_heading {
  }
  .intro_heading_en {
    font-size: 4.6rem;
  }
  .intro_heading_jp {
    font-size: 2.4rem;
  }

  /*------------------------------*/
  /*左右反転*/
  /*------------------------------*/
  .introduction.-reverse {
  }
  .introduction.-reverse .inner {
  }
  .introduction.-reverse .intro_photo_group {
    width: 100%;
    flex-direction: column;
    align-items: flex-end;
  }
  .introduction.-reverse .intro_photo02 {
    width: 32%;
    margin-right: auto;
    margin-top: -16vw;
  }
  .introduction.-reverse .intro_catchcopy {
  }

  /*================================
	医院イメージ画像
	================================*/
  .appearance {
  }
  .app_photo01 {
    padding-top: 50%;
    border-radius: 20px 0 20px 0;
  }
  .app_photo01::before {
    height: calc(100% - 8px);
    top: 4px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
  }
  .app_photo02 {
    width: 40%;
    margin-top: -16%;
    margin-right: 6%;
  }

  /*================================
	診療内容
	================================*/
  .service {}
  .service::before {}
  .service .inner {}
  .service_heading {}
  .service_heading_en {
		font-size: 4.6rem;
  }
  .service_heading_en::before {}
  .service_heading_jp {
    font-size: 2.4rem;
  }
  .service_content {}
  .services_group {
    gap: 20px;
  }
  .services_item {
    width: 100%;
  }
	.services_link {
		height: auto;
		padding: 16px 20px;
		background-position: left 10px center;
	}
	.services_link::before {
		background-position: left 10px center;
	}
  .services_name {
		padding-bottom: 0;
		font-size: 2.2rem;
	}
  .services_name::before {
		display: none;
	}

  /*================================
	お知らせ
	================================*/
  .news {
  }
  .news::before {
  }
  .news .inner {
  }
  .news_heading {
  }
  .news_heading_en {
    font-size: 4.6rem;
  }
  .news_heading_en::before {
  }
  .news_heading_jp {
    font-size: 2.4rem;
  }
  .news_content {
  }

  .news_scroll {
  }
  .news_list {
  }
  .news_list .date {
    width: 100%;
    float: none;
  }
  .news_list .article {
    margin-left: 0;
  }

  /*================================
	施設基準
	================================*/
	.facility_standards_heading {
		font-size: 2.4rem;
	}

  /*================================
	インスタグラム
	================================*/
  .instagram {
  }
  .instagram::before {
  }
  .instagram .inner {
  }
  .instagram_heading {
  }
  .instagram_heading_en {
    font-size: 4.6rem;
  }
  .instagram_heading_en::before {
  }
  .instagram_heading_jp {
    font-size: 2.4rem;
  }
  .instagram_content {
    overflow-y: scroll;
    height: 600px;
    padding: 16px 16px 0;
  }
}
