@charset "UTF-8";
/* ------
  - *基本設定
  - *パンくずリスト
  - *ページ内リンク
  - *ページャー
  - *書式設定
  - *タイトル
  - *メインビジュアル
  - *医院案内
  - *医師紹介
  - *アクセス
  - *ブログ
  - *404
------ */
@import url("variables.css");
/*==========================================
mixin
==========================================*/
/* ==================================================================================================================================

  *基本設定

================================================================================================================================== */
main section {
  margin-bottom: 80px;
}
main section .inner {
  max-width: 1100px;
}

/* ----- 1カラム用 ------ */
.breadcrumb .inner,
.page_links .inner,
.blog_wrap {
  max-width: 1100px;
}

/* ----- 2カラム用 ------ */
/* .breadcrumb .inner , .blog_wrap{
  max-width: 1200px;
}

main .wrapper {
  display: flex;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto 80px;
}

main .contents {
  width: 75%;
}
*/
/* ==============================================
  *SP 基本設定
============================================== */
@media screen and (max-width: 640px) {
  .inner {
    width: 100%;
    margin: auto;
    padding: 0 20px;
  }
  /* ----- 2カラム用 ------ */
  /* main .wrapper {
    flex-flow: column;
    gap: 0;
    margin-bottom: 80px;
  }

  main .contents {
    width: 100%;
  } */
}
/* ==================================================================================================================================

  *パンくずリスト

================================================================================================================================== */
.breadcrumb {
  margin: 30px auto !important;
}

.breadcrumb_list {
  counter-reset: unset;
  display: flex;
  flex-wrap: wrap;
  gap: 5px 0;
}
.breadcrumb_list li {
  position: relative;
  margin: 0;
  padding: 0;
  line-height: 1.5;
}
.breadcrumb_list li::after {
  content: "\f054";
  position: relative;
  top: -1px;
  padding: 0 10px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 70%;
}
.breadcrumb_list li.parent:has(~ .parent)::after, .breadcrumb_list li.child:has(~ .child)::after, .breadcrumb_list li.grandchild:has(~ .grandchild)::after {
  content: ",";
  position: relative;
  top: 0;
  padding: 0 5px;
  font-family: inherit;
  font-weight: normal;
  font-size: 100%;
}
.breadcrumb_list li:last-of-type::after {
  display: none;
}

/* 親、子、孫が複数ある場合、最後以外にカンマを表示 */
/* 最後の要素の矢印を消す */
/* ==============================================
  *SP パンくずリスト
============================================== */
@media screen and (max-width: 640px) {
  .breadcrumb {
    font-size: 13px;
  }
}
/* ==================================================================================================================================

  *ページ内リンク

================================================================================================================================== */
.page_links {
  margin-bottom: 50px;
}
.page_links ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
}
.page_links li {
  position: relative;
  z-index: 1;
}
.page_links a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 10px 15px;
  background: var(--sub-color);
  border: 1px solid var(--sub-color);
  color: #ffffff;
  font-size: 95%;
  text-align: center;
  transition: color 0.2s, background 0.2s;
}
.page_links a:hover {
  background: #ffffff;
  color: var(--sub-color);
}

/* ----- 2列 ----- */
.twoLinks li {
  width: calc(50% - 5px);
}

/* ----- 3列 ----- */
.threeLinks li {
  width: calc(33.3333333333% - 6.6666666667px);
}

/* ==============================================
  *SP ページ内リンク
============================================== */
@media screen and (max-width: 640px) {
  .page_links {
    margin-bottom: 40px;
  }
  /* ----- 2列 ----- */
  .twoLinks li,
  .threeLinks li {
    width: 100%;
  }
  /* ----- 3列 ----- */
}
/* ==================================================================================================================================

  *ページャー

================================================================================================================================== */
.pager {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin: 30px auto 0;
  font-size: 15px;
}

/* ----- ページャーのボタン ----- */
.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 0 0 1px 2px;
  background: #d7d7d7;
  border-radius: 50%;
  color: #ffffff;
  line-height: 1;
}

/* リンクの場合  */
a.page-numbers.prev, a.page-numbers.next {
  padding: 0 0 5px 1px;
  font-size: 170%;
}
a.page-numbers:hover {
  background: #929292;
  color: #ffffff;
}

/* 開いているページ */
.page-numbers.current {
  background: var(--main-color);
  color: #ffffff;
}

/* ==================================================================================================================================

  *サイドバー

================================================================================================================================== */
.sidebar {
  z-index: 3;
  flex-shrink: 0;
  width: 25%;
}

.side_box {
  padding: 20px;
  background: var(--bg-color);
}
.side_box:not(:last-of-type) {
  margin-bottom: 30px;
}
.side_box .children {
  padding-left: 10px;
}
.side_box a {
  color: var(--text-color);
}
.side_box a:hover {
  color: var(--main-color);
}

.side_title {
  position: relative;
  z-index: 1;
  margin-bottom: 15px;
  padding: 0 0 5px 5px;
  border-bottom: solid 2px var(--main-color);
  font-weight: bold;
  font-size: 110%;
  line-height: 1.5;
  text-align: left;
}
.side_title i {
  margin-right: 10px;
  color: var(--main-color);
}

/* ----- サイドバー（診療案内） ----- */
.sidebar .medical li {
  padding: 10px 15px;
  border-bottom: 1px solid var(--line-color);
}

@media screen and (max-width: 640px) {
  .sidebar {
    width: 100%;
    margin: 0;
    padding: 0 20px;
  }
  .side_box:not(:last-of-type) {
    margin-bottom: 20px;
  }
}
/* ==================================================================================================================================

  *書式設定

================================================================================================================================== */
.mtem {
  margin-top: 2em;
}

.mbem {
  margin-bottom: 1em;
}

/* 段落余白 */
main .inner > *:not(h1, h2, h3, h4, h5) {
  margin-bottom: 2em;
}
main .inner > *:not(h1, h2, h3, h4, h5):last-child {
  margin-bottom: 0;
}

/* ----- text ----- */
.text {
  position: relative;
}
.text > *:not(h1, h2, h3, h4, h5, h6) {
  margin-bottom: 2em;
}
.text > *:not(h1, h2, h3, h4, h5, h6):last-child {
  margin-bottom: 0;
}

/* ==================================================================================================================================

  *タイトル

================================================================================================================================== */
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  z-index: 1;
  margin-top: 50px;
  line-height: 1.75;
}

h2:first-of-type,
h2 + h3 {
  margin-top: 0;
}

h3 + h4,
h4 + h5,
h5 + h6 {
  margin-top: 0;
}

h2 {
  margin-bottom: 25px;
  padding: 10px 0px 7px 60px;
  color: var(--main-color);
  font-size: 150%;
  border-bottom: 1px solid var(--main-color);
  font-family: "ten-mincho", serif;
  position: relative;
}
h2::before {
  content: "";
  position: absolute;
  background: url(../images/clover_img03.png) no-repeat;
  background-size: contain;
  width: 55px;
  height: 55px;
  margin-right: 15px;
  left: 0;
  top: -2px;
}

h3 {
  width: fit-content;
  margin-bottom: 20px;
  padding: 5px 20px;
  font-size: 125%;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(0deg, rgba(100, 153, 197, 0.8) 0%, rgba(100, 187, 197, 0.8) 100%);
  font-family: "ten-mincho", serif;
}

h4 {
  margin-bottom: 17px;
  color: var(--sub-color);
  font-size: 125%;
  font-family: "ten-mincho", serif;
  width: fit-content;
}
h4::before {
  content: "";
  display: inline-block;
  background-color: var(--sub-color);
  width: 5px;
  height: 30px;
  vertical-align: middle;
  margin-right: 10px;
  position: relative;
  top: -2px;
}

h5 {
  margin-bottom: 15px;
  font-size: 110%;
}

/* ==================================================================================================================================

  *メインビジュアル

================================================================================================================================== */
.mainvisual {
  position: relative;
  z-index: 1;
  background: var(--main-color);
  overflow: hidden;
}
.mainvisual .mainvisual_bg {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
}
.mainvisual .mainvisual_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.mainvisual .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 230px;
  padding: 50px 0;
}

/* ----- 下層ページの見出し ----- */
.main_headline {
  color: var(--text-color);
  font-size: 200%;
  line-height: 1.5;
  text-align: center;
  filter: drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 10px #ffffff) drop-shadow(0 0 10px #ffffff) drop-shadow(0 0 15px #ffffff) drop-shadow(0 0 15px #ffffff);
}

/* ==============================================
  *SP メインビジュアル
============================================== */
@media screen and (max-width: 640px) {
  .mainvisual .inner {
    min-height: 180px;
    padding: 30px 20px;
  }
  /* ----- 下層ページの見出し ----- */
  .main_headline {
    font-size: 150%;
  }
}
/* ==================================================================================================================================

  *医院案内

================================================================================================================================== */
.clinic_desc {
  width: 100%;
}
.clinic_desc dl {
  display: flex;
}
.clinic_desc dt {
  width: 20%;
  padding: 15px;
  border-bottom: 1px dotted var(--line-color);
  font-weight: bold;
}
.clinic_desc li:first-child dt {
  padding-top: 0;
}
.clinic_desc dd {
  width: 80%;
  padding: 15px;
  border-bottom: 1px dotted var(--line-color);
}
.clinic_desc dd .zipcode {
  margin-right: 10px;
}
.clinic_desc li:first-child dd {
  padding-top: 0;
}

.facilities_list {
  display: flex;
  flex-flow: wrap;
  gap: 20px;
}

.facilities_item {
  width: calc(33.3333333333% - 13.3333333333px);
  background: var(--bg-color);
}
.facilities_item dd {
  padding: 15px 20px;
}
.facilities_item dd p {
  padding-top: 5px;
}
.facilities_item h3 {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 125%;
}
.facilities_item h3::before, .facilities_item h3::after {
  display: none;
}
.facilities_item.noimg {
  padding: 15px 20px;
}
.facilities_item.noimg p {
  margin-top: 5px;
}

/* ----- 画像がない時用 ----- */
/* ==============================================
  *SP 医院案内
============================================== */
@media screen and (max-width: 640px) {
  .clinic_desc dl {
    display: block;
  }
  .clinic_desc dt {
    width: 100%;
    padding: 15px 0 5px;
    border-bottom: none;
  }
  .clinic_desc li:first-child dt {
    padding-top: 0;
  }
  .clinic_desc dd {
    width: 100%;
    padding: 0 0 15px;
  }
  .facilities_item {
    width: 100%;
  }
}
/* ==================================================================================================================================

  *医師紹介

================================================================================================================================== */
.doctor_box:not(:last-child) {
  margin: 0;
  padding: 0 0 60px;
}
.doctor_box:not(:first-child) h2 {
  margin-top: 20px;
}

.doctor_flex {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.doctor_text {
  width: 100%;
}
.doctor_text > *:not(:first-child) {
  margin-top: 30px !important;
}

.doctor_name {
  text-align: right;
}
.doctor_name .position {
  font-size: 130%;
  font-family: "ten-mincho", serif;
}
.doctor_name .name {
  font-size: 150%;
  font-family: "ten-mincho", serif;
}

.doctor_img {
  flex-shrink: 0;
  width: 350px;
}

.doctor_career {
  margin-top: 30px;
}

.career_box {
  padding: 30px;
  background: var(--bg-color);
}
.career_box:not(:last-of-type) {
  margin-bottom: 20px;
}
.career_box h3 {
  margin: 0 0 5px;
  padding: 0;
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 140%;
}
.career_box h3::before, .career_box h3::after {
  display: none;
}
.career_box dl {
  display: flex;
  gap: 10px;
  border-bottom: 1px dashed var(--line-color);
}
.career_box dl > * {
  padding: 10px 20px;
}
.career_box dt {
  width: 15%;
}
.career_box li {
  padding: 10px 20px;
  border-bottom: 1px dashed var(--line-color);
}

/* 日付あり */
/* 日付なし */
/* フリーエリア */
.doctor_freearea {
  margin-top: 30px;
}

/* ==============================================
  *SP 医師紹介
============================================== */
@media screen and (max-width: 640px) {
  .doctor_flex {
    flex-flow: column;
    gap: 30px;
  }
  .doctor_img {
    order: -1;
    width: 100%;
    margin: 0 auto;
  }
  .career_box {
    padding: 20px 25px;
  }
  .career_box h3 {
    margin: 0;
  }
  .career_box dl {
    flex-flow: column;
    gap: 0;
  }
  .career_box dl > * {
    padding: 10px;
  }
  .career_box dt {
    width: 100%;
    padding: 10px 10px 5px;
  }
  .career_box dd {
    width: 100%;
    padding: 5px 10px 10px;
  }
  .career_box li {
    padding: 10px;
  }
  /* 日付あり */
  /* 日付なし */
}
/* ==================================================================================================================================

  *アクセス

================================================================================================================================== */
/* ----- MAP ----- */
.access .googlemap iframe {
  width: 100%;
  height: 400px;
}
.access .illustmap {
  width: 100%;
  height: fit-content;
  text-align: center;
}

/* イラストマップのみ */
/* 両方を表示する時 */
.mapflex {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
  margin-bottom: 30px;
}
.mapflex > * {
  display: flex;
  flex-grow: 1;
  align-items: stretch;
  width: calc(50% - 10px) !important;
}
.mapflex > .googlemap {
  position: relative;
  z-index: 1;
  flex-shrink: 1;
  width: calc(50% - 20px);
  height: auto;
}
.mapflex > .googlemap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ----- 住所 ----- */
.access .location {
  position: relative;
  z-index: 1;
  padding: 0 0 0 40px;
  font-weight: bold;
}
.access .location::before {
  content: "\f3c5";
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  padding: 0 0 0 2px;
  background: var(--main-color);
  border-radius: 50%;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #ffffff;
  font-size: 13px;
}
.access span {
  display: inline-block;
  margin-right: 10px;
}
.access .btn01 {
  text-align: center;
}

/* ----- ルート案内 ----- */
.route_list {
  display: flex;
  flex-flow: wrap;
  gap: 50px 30px;
}

.route_item {
  width: calc(50% - 15px);
}
.route_item > *:not(:last-child) {
  margin-bottom: 1em;
}

.route_title {
  position: relative;
  z-index: 1;
  min-height: 30px;
  padding: 0 0 0 40px;
  font-size: 110%;
}
.route_title .number {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background: var(--main-color);
  color: #ffffff;
  line-height: 1;
}

/* ==============================================
  *SP アクセス
============================================== */
@media screen and (max-width: 640px) {
  .mapflex > * {
    width: 100% !important;
  }
  /* ----- ルート案内 ----- */
  .route_list {
    gap: 30px;
  }
  .route_item {
    width: 100%;
  }
}

/* ==================================================================================================================================

  *症例

================================================================================================================================== */
.case {
  margin-bottom: 80px!important;
}
.case_list {
  display: flex;
  flex-flow: wrap;
  gap: 20px;
  margin-bottom: 50px;
  justify-content: space-evenly;
  margin-bottom: 20px !important;
}

.case_item {
  display: flex;
  flex-flow: column;
  width: calc(100% / 4 - 15px);
  height: auto;
  justify-content: center;
}

.case_img_wrap{
  position: relative;
}

.case_num {
  margin: 0 0 0 !important;
  font-size: 20px;
  position: absolute;
  bottom: 0;
}

.case_num span {
  color: #ffffff;
  font-family: var(--sub-font);
  font-weight: 400;
  font-style: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--main-color);
  padding: 0 10px;
  border-radius: 0 10px 0 0;  
}

.case_inner {
  display: flex;
  flex-flow: column;
  height: 100%;
  padding: 20px;
  background: var(--bg-color);
}

.case_inner > *:not(:last-child) {
  margin-bottom: 30px;
}

.case_title {
  display: flex;
  flex-flow: column;
  justify-content: center;
  min-height: 70px;
  margin-bottom: 15px !important;
}

.case_title h3 {
  color: var(--main-color);
  font-size: 120%;
  line-height: 1.75;
  text-align: center;
  font-family: var(--main-font);
  font-weight: 400;
  font-style: normal;  
}
.case_sub {
  color: var(--main-color);
  font-size: 120%;
  line-height: 1.5;
  font-family: var(--main-font);
  font-weight: 400;
  font-style: normal;
  margin-bottom: 10px;
}

@media screen and (max-width: 640px) {
.case::before{
  left: 10px;
    top: -30px;
    width: 110px;
    height: 91px;
}  
.case .inner {
    padding-top: 10px;
}

.case .inner::before{
    background: url(../images/bg_case_sp.jpg);
    background-size: cover;
    width: 100%;
    height: 99%;
    top: 35px;
}

  .case_list {
    gap: 0;
  }
	
  .case_list.case_list_img,
  .case_list.case_list_txt{
	margin-bottom: 20px;
  }
	
  .case_list.case_list_txt{
	gap: 10px;
  }
	
  .case_list_txt .case_title h3 {
	display: block;
    width: 80%;
    margin: 0 auto;
  }

  .case_item {
    width: 100%;
  }
	
  .case_list_txt .case_item{
	position:relative;
  }
	
  .case_list_txt .case_num,
  .case_list_img .case_num{
	bottom: auto;
	top: 0;
  }
	
  .case_list_txt .case_num span,
  .case_list_img .case_num span{
	border-radius: 0 0 10px 0;
  }
	
  .case_list_img .case_item{
    width: calc(50%);
  }

  .case_title {
    min-height: auto;
    margin-bottom: 15px !important;
  }
	
  .case_inner {
  	padding: 40px 40px 30px;
  }

}


/* ==================================================================================================================================

  *ブログ

================================================================================================================================== */
/* ----- 共通 ----- */
.blog_wrap {
  display: flex;
  gap: 50px;
  margin: 0 auto 80px;
  padding: 0;
}
.blog_wrap .inner {
  width: 75%;
  margin: 0;
  padding: 0;
}
.blog_wrap .contents {
  display: flex;
  flex-flow: wrap;
  gap: 30px 20px;
  width: 100%;
  margin: 0 !important;
}

/* 日付 */
.blog_date {
  margin-bottom: 5px;
  font-size: 13px;
  line-height: 1.5;
}
.blog_date::before {
  content: "\f073";
  display: inline-block;
  margin-right: 7px;
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  color: var(--main-color);
}

/* カテゴリー */
.blog_categorys {
  display: flex;
  flex-flow: wrap;
  gap: 0 5px;
  margin-bottom: 20px;
  line-height: 1.5;
}
.blog_categorys a {
  display: inline-block;
  font-size: 13px;
  line-height: 1.5;
}
.blog_categorys a::before {
  content: "\f02b";
  position: relative;
  top: 1px;
  display: inline-block;
  margin-right: 5px;
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
}

/* ----- サイドバ（サムネイル付き） ----- */
.blog_list_thum {
  display: flex;
  flex-flow: column;
}
.blog_list_thum li {
  padding: 15px 0;
}
.blog_list_thum li:first-child {
  padding-top: 0;
}
.blog_list_thum li:last-child {
  padding-bottom: 0;
}
.blog_list_thum li:not(:last-child) {
  border-bottom: 1px dashed var(--line-color);
}
.blog_list_thum li a {
  display: flex;
  gap: 10px;
  color: var(--text-color);
  font-size: 95%;
  line-height: 1.75;
}
.blog_list_thum li a:hover {
  color: var(--main-color);
}

/* サムネイル */
.blog_item_thum {
  float: none;
  display: block;
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  overflow: hidden;
}
.blog_item_thum img {
  float: none;
  display: block;
  width: auto;
  min-height: 100%;
  margin: 0;
  object-fit: cover;
  transition: transform 0.2s;
}

.blog_item a:hover img {
  transform: scale(1.1);
}

/* タイトル */
.blog_item_title {
  padding: 5px 0;
}

/* カテゴリー */
.side_blog_category a {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0 0 0 15px;
  color: var(--text-color);
}
.side_blog_category a :hover {
  color: var(--main-color);
}
.side_blog_category a::before {
  content: "-";
  position: absolute;
  top: 0;
  left: 0;
}

/* ----- アーカイブページ ----- */
.blog_box {
  display: flex;
  flex-flow: column;
  width: calc(33.3333333333% - 13.3333333333px);
  height: auto;
  background-color: #ffffff;
  border: solid 1px var(--line-color);
}
.blog_box .thumbnail {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  border-bottom: solid 1px var(--line-color);
  text-align: center;
}
.blog_box .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 13/9;
}

/* サムネイル */
.blog_inner {
  display: flex;
  flex-flow: column;
  height: 100%;
  padding: 15px 15px 20px;
  border-top: none;
}

/* 見出し */
.blog_box h2.blog_title {
  margin: 0 0 15px;
  padding: 0;
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 110%;
}
.blog_box h2.blog_title:before, .blog_box h2.blog_title:after {
  display: none;
}
.blog_box .btn01 {
  margin-top: auto;
  text-align: center;
}
.blog_box .btn01 > * {
  min-width: auto;
}

/* ----- 記事ページ ----- */
.blog_single_box {
  width: 100%;
}
.blog_single_box .thumbnail {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto 30px;
  text-align: center;
}

/* サムネイル */
#index {
  margin: 0 0 30px;
  padding: 20px;
  background: var(--bg-color);
}
#index .index_title {
  margin: 0 0 0;
  font-weight: bold;
  font-size: 110%;
}
#index a {
  color: var(--text-color);
}
#index a:hover {
  color: var(--main-color);
}
#index .index_h2 {
  position: relative;
  z-index: 1;
  padding: 5px 0 5px 20px;
  font-weight: bold;
  color: var(--text-color);
  font-size: 110%;
}
#index .index_h2::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  display: block;
  width: 8px;
  height: 8px;
  background: var(--main-color);
}
#index .index_h3 {
  position: relative;
  z-index: 1;
  padding: 5px 0 5px 25px;
}
#index .index_h3::before {
  content: "-";
  position: absolute;
  top: 5px;
  left: 10px;
}

.blog_single_box .blog_text > *:not(h1, h2, h3, h4, h5) {
  margin-bottom: 2em;
}
.blog_single_box .blog_text > *:not(h1, h2, h3, h4, h5):last-child {
  margin-bottom: 2em;
}

/* ==============================================
  *SP ブログ
============================================== */
@media screen and (max-width: 640px) {
  /* ----- 共通 ----- */
  .blog_wrap {
    flex-flow: column;
    gap: 70px;
    width: 100%;
  }
  .blog_wrap .inner {
    width: 100%;
    padding: 0 20px;
  }
  /* ----- アーカイブページ ----- */
  .blog_box {
    width: 100%;
  }
  .blog_box .thumbnail {
    height: auto;
    min-height: auto;
  }
  .blog_box .thumbnail img {
    width: 100%;
    height: auto;
  }
  /* サムネイル */
}
/* ==================================================================================================================================

404

================================================================================================================================== */
.error404 main > .inner {
  padding: 20px 0 80px;
}
.error404 main p {
  text-align: center;
}

/* ==============================================
  *SP 404
============================================== */
@media screen and (max-width: 640px) {
  .error404 main > .inner {
    padding: 0px 20px 60px;
  }
}
/* ==================================================================================================================================

  *リスト、フレーム関連

================================================================================================================================== */
.list03_bg,
.list03.list_inline,
.list03_bg.list_inline .list04_bg,
.list04.list_inline,
.list04_border.list_inline,
.list04_bg.list_inline {
  background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url(../images/bg_greeting.jpg) no-repeat;
  background-size: cover;
  background-color: rgba(255, 255, 255, 0.5);
  background-blend-mode: lighten;
}

.frame02 {
  background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url(../images/bg_greeting.jpg) no-repeat;
  background-size: cover;
  background-color: rgba(255, 255, 255, 0.5);
  background-blend-mode: lighten;
}

.frame02 {
  padding: 35px;
}
.frame02 > * {
  margin-top: 0;
}
.frame02 .circle li:before {
  font-family: "ten-mincho", serif;
  font-weight: 500;
}

/* ==================================================================================================================================

  *layout01

================================================================================================================================== */
.layout01 .layout_title {
  font-family: "ten-mincho", serif;
}
.layout01 .layout_box {
  background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url(../images/bg_greeting.jpg) no-repeat;
  background-size: cover;
  background-color: rgba(255, 255, 255, 0.5);
  background-blend-mode: lighten;
}
.layout01 .layout_sub_title {
  font-family: "ten-mincho", serif;
  background: var(--sub-color);
}

/* ==================================================================================================================================

  *layout02

================================================================================================================================== */
.layout02 .layout_left {
  font-family: "ten-mincho", serif;
  text-align: center;
  font-size: 120%;
}
.layout02 .layout_box {
  border-top: 1px solid #c6dbed;
  border-bottom: 1px solid #c6dbed;
}

/* ==================================================================================================================================

  *layout011

================================================================================================================================== */
.layout11{
  position: relative;
  margin-bottom: 10px!important;
}
.layout11_box{
  padding: 8px;
}
[class^="layout11_image"] p{
  margin-bottom: 0;
}
[class^="layout11_image"] img{
  width: 100%;
  height: auto;
}
[class^="layout11_text"]{
  margin-top: 8px;
}
[class^="layout11_text"] dl{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
[class^="layout11_text"] dl dt{
  background: var(--main-color);
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 12px;
  border: 1px solid var(--main-color);
  width: 20%;
  margin-bottom: 2px;
}
[class^="layout11_text"] dl dd{
  padding: 12px;
  background: #fff;
  border: 1px solid var(--main-color);
  width: 80%;
  margin-bottom: 2px;
}
[class^="layout11_text"] .desc{
  background: #fff;
  border: 1px solid var(--main-color);
  padding: 16px;
}
[class^="layout11_text"] .desc p{
  margin-bottom: 0;
}
/* layout11 ver.1 */
.layout11_text01 dl dt{
  margin-left: 0;
}
/* layout11 ver.2 */
.layout11_image02{
  display: flex;
  justify-content: space-between;
}
.layout11_image02 span{
  position: relative;
  display: block;
  width: 47%;
}
/* 画像上にオーバーレイテキスト追加 */
.layout11_image02 span:first-child::before {
  content: "Before";
  position: absolute;
  top: 10px;
  left: 10px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5); /* 半透明背景 */
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: bold;
}

.layout11_image02 span:last-child::after {
  content: "After";
  position: absolute;
  top: 10px;
  left: 10px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5); /* 半透明背景 */
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: bold;
}

.layout11_image02 span:last-child::before{
  position: absolute;
  top: 0;
  bottom: 0;
  left: -42px;
  margin: auto;
  display: flex;
  align-items: center;
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 24px;
  color: var(--main-color);
  line-height: 1;
}
.layout11_text02 dl{
  width: 100%;
}
.layout11_text02 dl dt{
  margin-left: 2px;
  margin-bottom: 2px;
  width: 15%;
}
.layout11_text02 dl dt:nth-of-type(odd){
  margin-left: 0;
}
.layout11_text02 dl dd{
  width: calc(35% - 1px);
}
.layout11_text02 .desc{
  width: 100%;
}

@media screen and (max-width: 640px) {
  [class^="layout11_text"] dl dt,
  [class^="layout11_text"] dl dd{
      margin-left: 0;
      width: 100%;
  }
  [class^="layout11_text"] dl dt{
      margin-bottom: 0;
  }
  [class^="layout11_text"] dl dd{
      margin-bottom: 10px;
  }
  .layout11_image02{
      flex-wrap: wrap;
  }
  .layout11_image02 span{
      width: 100%;
  }
  .layout11_image02 span:last-child{
      margin-top: 40px;
  }
  .layout11_image02 span:last-child::before{
      top: -32px;
      bottom: auto;
      left: 0;
      right: 0;
      justify-content: center;
      content: "\f078";
  }
}

/* ==================================================================================================================================

  *テーブル装飾

================================================================================================================================== */
table th {
  font-family: "ten-mincho", serif;
  font-size: 120%;
  font-weight: 500;
}

.tb_type1 td .list03 {
  text-align: left;
}

/* ==================================================================================================================================

  *流れ、flow

================================================================================================================================== */
.flow {
  background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url(../images/bg_greeting.jpg) no-repeat;
  background-size: cover;
  background-color: rgba(255, 255, 255, 0.5);
  background-blend-mode: lighten;
}
.flow .flow_box span {
  font-family: "ten-mincho", serif;
}
.flow .flow_title {
  font-family: "ten-mincho", serif;
  color: var(--main-color);
}
.flow .sub_title1 {
  width: fit-content;
  font-family: "ten-mincho", serif;
  color: #fff;
  padding: 5px 20px;
  background-color: var(--main-color);
  font-size: 120%;
}
.flow .sub_title2 {
  width: fit-content;
  font-family: "ten-mincho", serif;
  color: var(--sub-color);
  font-size: 110%;
  margin-bottom: 0.6em;
  border-bottom: 1px dotted var(--sub-color);
}

/* ==============================================
  その他
============================================== */
.page_links li a {
  font-family: "ten-mincho", serif;
  font-weight: 400;
  font-size: 100%;
}

.wrap1 img {
  width: 80%;
}
@media screen and (max-width: 480px) {
  .wrap1 img {
    width: 100%;
  }
}

.date01 {
  width: 450px;
}
@media screen and (max-width: 480px) {
  .date01 {
    width: 100%;
  }
}

.main_headline {
  font-family: "ten-mincho", serif;
}

.font_red {
  color: rgb(201, 0, 0);
}

.wrap2 {
  background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url(../images/bg_greeting.jpg) no-repeat;
  background-size: cover;
  background-color: rgba(255, 255, 255, 0.5);
  background-blend-mode: lighten;
  padding: 30px 0;
}
@media screen and (max-width: 480px) {
  .wrap2 {
    padding: 30px 15px;
  }
}
.wrap2 img {
  width: 80%;
}
@media screen and (max-width: 480px) {
  .wrap2 img {
    width: 100%;
  }
}

@media screen and (min-width: 481px) {
  .lay01_col {
    display: flex;
  }
  .lay01_col .layout_box {
    flex-direction: column;
    width: 25%;
  }
  .lay01_col .layout_box:not(:last-of-type) {
    margin-bottom: 0;
  }
  .lay01_col .layout_img {
    width: 100%;
  }
}

.dental_loan {
  max-width: 600px;
}
@media screen and (max-width: 480px) {
  .dental_loan {
    max-width: 100%;
  }
}
.dental_loan a {
  width: fit-content;
}

@media screen and (max-width: 480px) {
  .mov1 {
    max-height: 200px;
  }
}
/* ==================================================================================================================================

  *faq

================================================================================================================================== */
.faq dl {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.faq dt div::before {
  font-family: "ten-mincho", serif;
  top: 18px !important;
}
.faq dd div::before {
  font-family: "ten-mincho", serif;
  top: 18px !important;
}

/* ==================================================================================================================================

  *その他

================================================================================================================================== */
.quote {
    display: block;
    font-size: 80%;
    line-height: 1.2;
    letter-spacing: .05em;
}