@charset "UTF-8";

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

	初期設定

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

/* フォントデータの読み込み
************************************************************/
@font-face{
	font-family: 'AGaramondPro-Italic';
	src: url('../fonts/AGaramondPro-Italic.otf') format('opentype');
	font-weight: normal;
	font-style: normal;
}
@font-face{
	font-family: 'AGaramondPro-Regular';
	src: url('../fonts/AGaramondPro-Regular.otf') format('opentype');
	font-weight: normal;
	font-style: normal;
}


/* 基本設定
************************************************************/
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --text-color: #222;
  --main-color: #86c1cc;
  --sub-color: #599ec3;
  --bg-color: #f2f4f5;
  --border-color: #e0e0e0;
  --font-mincho: "Noto Serif JP", sans-serif;
  --font-en: 'AGaramondPro-Regular', serif;
  --font-en-mincho: 'AGaramondPro-Regular', "Noto Serif JP", serif;
}

body {
  position: relative;
  color: var(--text-color);
  font-size: 16px;
  font-weight: 500;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 2;
  letter-spacing: .025em;
  text-align: justify;
  word-wrap: break-word;
  background-color: #fff;
}

a {
  color: var(--main-color);
  text-decoration: none;
  transition: 0.5s;
}

a:hover {
  color: var(--sub-color);
}

::-moz-selection {
  background-color: var(--sub-color);
}

::selection {
  background-color: var(--sub-color);
}

strong {
  font-weight: bold;
}

body,
.header-navi.is-fixed,
.page-header,
.top-kv,
.header,
.footer {
  min-width: 1240px;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
dl,
p,
dt,
dd,
form,
select,
option,
address,
pre {
  padding: 0;
  margin: 0;
  -webkit-text-size-adjust: 100%;
}

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

iframe {
  max-width: 100%;
  vertical-align: top;
}

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

a img {
  border: none;
}

.head-wrap {
  position: relative;
}

@media print {
  html {
    -webkit-print-color-adjust: exact;
  }
  body {
    zoom: 80%;
  }
  .header-navi.is-fixed {
    position: inherit !important;
  }
  .fixed-contact {
    display: none !important;
  }
}

[href^=tel]:hover {
  color: var(--main-color);
  cursor: default;
}

@media screen and (max-width: 640px) {
  html,
  body {
    min-height: 500px;
  }
  html {
    margin-top: 0 !important;
  }
  body {
    font-size: 16px;
  }
  body,
  .page-header,
  .top-kv,
  .header,
  .footer,
  .header-navi .navi-content {
    min-width: 100%;
  }
  body,
  .page-header,
  .top-kv,
  .header-navi.is-fixed,
  .header,
  .footer {
    width: 100%;
    min-width: 100%;
  }
}


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

	ショートコード

===============================================================================*/
._pc {}
._sp {display: none !important;}
._pc-inline {display: inline !important;}
._sp-inline {display: none !important;}

._left {text-align: left !important}
._center {text-align: center !important}
._right {text-align: right !important}

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

._bold {font-weight: 700 !important}

br._sp-inline+br,
br._pc-inline+br,
br._sp+br,
br._pc+br {
  display: none;
}

@media screen and (max-width: 640px) {
  ._pc {display: none !important;}
  ._sp {display: block !important;}
  ._pc-inline {display: none !important;}
  ._sp-inline {display: inline !important;}
}


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

  ヘッダー関連

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

/* サイトタイトル
************************************************************/
.site-title {
  position: absolute;
  top: 29px;
  right: 0;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .05em;
  text-shadow: 0 0 5px rgba(26, 26, 26, .6), 0 -1px 5px rgba(26, 26, 26, .6);
}

@media screen and (max-width: 640px) {
  .site-title {
    position: unset;
    padding: 10px 6%;
    color: var(--text-color);
    line-height: 1.6;
    text-align: center;
    text-shadow: none;
    background: var(--bg-color);
  }
}


/* ヘッダー
************************************************************/
.header {
  width: 100%;
  height: 210px;
  background: #fff;
}
@media print, screen and (min-width: 641px) {
  .header {
    position: absolute;
    top: 0;
    left: 0;
    background: none;
    z-index: 2;
  }
}
.header .inner {
  position: relative;
  width: 1200px;
  height: auto;
  margin: auto;
}

.header-logo {
  position: absolute;
  top: 29px;
  box-sizing: border-box;
  z-index: 9;
}
.header-logo a {
  display: block;
  max-width: 420px;
  height: auto;
}
.header-logo img {
  width: 328px;
  height: auto;
}

.header-address {
  display: flex;
  justify-content: flex-end;
  width: 765px;
  margin: 0 0 20px auto;
}
.header-address dl {
  margin-top: 58px;
  line-height: 1.2;
  text-align: right;
}
.header-address dl .address {
  position: relative;
  margin-bottom: 18px;
  color: #fff;
  font-size: 13px;
  line-height: 1;
  letter-spacing: .05em;
  text-shadow: 0 0 5px rgba(26, 26, 26, .6), 0 -1px 5px rgba(26, 26, 26, .6);
}
.header-address dl .address:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -36px;
  width: 30px;
  height: 30px;
  background: url('../images/address_icon02.png') no-repeat center/cover;
  transform: translateY(-50%);
}
.header-address dl .address span {
  margin-right: 6px;
}
.header-address dl .tel {
  display: inline-block;
  position: relative;
  left: 2px;
  color: #fff;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  font-family: var(--font-en);
  line-height: 1.11111111111;
  letter-spacing: .05em;
  text-shadow: 0 0 5px rgba(26, 26, 26, .6), 0 -1px 5px rgba(26, 26, 26, .6);
  vertical-align: middle;
}
.header-address dl .tel:before {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  left: -56px;
  width: 50px;
  height: 50px;
  background: url('../images/tel_icon.png') no-repeat center / cover;
  transform: translateY(-50%);
}

@media screen and (max-width: 640px) {
  .header {
    display: none;
  }
}


/* 固定CTA（PC）
************************************************************/
.fixed-contact {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
  position: fixed;
  top: -30px;
  right: 0;
  width: 85px;
  height: 100%;
  z-index: 11;
}
.fixed-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  padding: 20px 10px 20px;
  margin-bottom: 10px;
  color: #fff;
  font-size: 19px;
  font-family: var(--font-mincho);
  line-height: 1;
  letter-spacing: .2em;
  text-shadow: none;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  background: #86c1cc url('../images/fix_yoyaku_logo.png') no-repeat left -30px top 72px/ 166px auto;
}
.fixed-contact a:last-child {
  margin-bottom: 0;
}
.fixed-contact a:hover {
  background: #4ba8b9 url('../images/fix_yoyaku_logo.png') no-repeat left -30px top 72px/ 166px auto;
}
.fixed-contact a:before {
  content: "";
  position: absolute;
  top: 0;
  left: -5px;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: -1;
}
.fixed-contact a:after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-top: 0;
  border-radius: 50%;
  background: #fff url('../images/btn_arrow02.png') no-repeat center/11px auto;
}
.fixed-contact a i {
  margin-bottom: 5px;
}
.fixed-contact a.web span {
  width: 37px;
  height: 37px;
  margin-bottom: 19px;
  background: url('../images/fix_yoyaku.png') no-repeat center/cover;
}
.fixed-contact a.sns {
  padding: 18px 10px 14px;
  color: #fff;
  font-size: 35px;
  font-weight: 500;
  background: #86c1cc;
}
.fixed-contact a.sns:hover {
  background: #4ba8b9;
}
.fixed-contact a.sns:after {
  content: none;
}
.fixed-contact a.sns i {
  margin-bottom: 0;
}
.fixed-contact a.interview {
  font-size: 14px;
}

@media screen and (max-width: 1470px) {
	.fixed-contact a {
		padding: 10px;
		font-size: 16px;
	}
	.fixed-contact a:after {
		width: 30px;
		height: 30px;
	}
	.fixed-contact a.web span {
		width: 26px;
		height: 26px;
	}
}


/* ヘッダーナビ
************************************************************/
@media print, screen and (min-width: 641px) {
  .header-navi :is(.navi-toggle, .button-list, .sns-list) {
    display: none;
  }
  .header-navi {
    position: absolute;
    top: 161px;
    width: 100%;
    z-index: 10;
  }
  .header-navi .navi-wrap {
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  .header-navi .menu-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
  }
  .header-navi .menu-list > li {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .header-navi .menu-list > li > .title {
    display: block;
    position: relative;
    padding-bottom: 10px;
    color: #fff;
    font-size: 16px;
    font-family: var(--font-mincho);
    line-height: 1;
    letter-spacing: .05em;
    text-align: center;
    text-shadow: 0 0 5px rgba(26, 26, 26, .6), 0 -1px 5px rgba(26, 26, 26, .6);
    transition: 0.15s ease-out;
    z-index: 2;
  }
  .header-navi .menu-list > li > .title::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5px;
    width: 100%;
    height: 1px;
    margin: auto;
    background-color: var(--main-color);
    transition: 0.15s ease-out;
    transform: scaleX(0);
    z-index: 1;
  }
  .header-navi .menu-list > li:not(:first-of-type) > .title:after {
    content: "";
    position: absolute;
    top: 7px;
    left: -32px;
    width: 1px;
    height: 20px;
    background: #fff;
    box-shadow: 0 0 5px rgba(26, 26, 26, .6), 0 -1px 5px rgba(26, 26, 26, .6);
    transform: rotate(25deg);
  }
  .header-navi .menu-list > li > .title:hover {
    color: #fff;
    filter: brightness(1.3);
    opacity: .8;
  }
  .header-navi .menu-list > li > .title:hover::before {
    transform: scaleX(1);
  }
  .header-navi .menu-list > li > .title .en {
    display: block;
    padding-top: 10px;
    color: #fff;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    font-family: var(--font-en);
    line-height: 1;
    letter-spacing: .05em;
  }
  .header-navi .menu-list > li > .sp-title:not(.title) {
    display: none;
  }
  .header-navi.is-fixed {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    bottom: auto;
    width: 100%;
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 1px 15px rgba(0, 0, 0, .1);
  }
  .header-navi.is-fixed .menu-list {
    width: 1200px;
  }
  .header-navi.is-fixed .menu-list > li > .title {
    color: var(--text-color);
    text-shadow: none;
  }
	.header-navi.is-fixed .menu-list > li > .title:hover {
		color: var(--sub-color);
	}
  .header-navi.is-fixed .menu-list > li:not(:first-of-type) .title:after {
    background: #444;
    box-shadow: none;
  }
  .header-navi.is-fixed .menu-list > li .title .en {
    color: var(--main-color);
  }
  .header-navi .menu-list > li.has-child .sub-menu {
    display: none;
    flex-wrap: wrap;
    position: absolute;
    top: 100%;
    left: 0%;
    width: 580px;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 9999;
  }
  .header-navi .menu-list > li.has-child .sub-menu::before,
  .header-navi .menu-list > li.has-child .sub-menu::after {
    content: "";
    display: block;
    position: absolute;
    background-color: var(--border-color);
    z-index: 1;
  }
  .header-navi .menu-list > li.has-child .sub-menu::before {
    top: 0;
    left: 0;
    right: 0;
    width: 1px;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .header-navi .menu-list > li.has-child .sub-menu::after {
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
  }
  .header-navi .menu-list > li.has-child:hover .sub-menu,
  .header-navi .menu-list > li.has-child:focus-within > .sub-menu {
    display: flex;
  }
  .header-navi .menu-list > li.has-child .sub-menu a {
    display: flex;
    align-items: center;
    position: relative;
    width: 50%;
    padding: 12px 20px;
    color: #4BA8B9 !important;
    font-size: 16px;
    font-family: var(--font-mincho);
    line-height: 1.4;
    border-bottom: 1px solid var(--border-color);
  }
  .header-navi .menu-list > li.has-child .sub-menu a:hover {
    background-color: #fff;
  }
}

@media screen and (max-width: 640px) {
  .header-navi {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 10000;
  }
  .header-navi .logo {
    width: calc(100% - 55px);
  }
  .header-navi .logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 55px;
    padding: 2px 5px;
  }
  .header-navi .logo img {
    width: auto;
    max-height: 100%;
  }
  .header-navi .navi-wrap {
    position: fixed;
    top: 0;
    right: -80%;
    width: 80%;
    height: 100%;
    padding: 15px;
    line-height: 1.6;
    background: var(--main-color);
    overflow: hidden;
    transition: right 0.6s cubic-bezier(.19, 1, .22, 1);
    z-index: 2;
  }
  body.is-navi .header-navi .navi-wrap {
    right: 0;
    overflow-y: scroll;
    overscroll-behavior-y: none;
  }
  .header-navi .navi-wrap,
  .header-navi .navi-wrap a {
    color: #fff;
  }
  .header-navi .navi-wrap a {
    display: block;
  }
  .header-navi .menu-list > li {
    border-bottom: 1px solid #fff;
  }
  .header-navi .menu-list > li:first-child {
    border-top: 1px solid #fff;
  }
  .header-navi .menu-list > li > .title,
  .header-navi .menu-list > li > .sp-title {
    padding: 15px 10px;
    font-family: var(--font-mincho);
  }
  .header-navi .menu-list > li > .title .en {
    display: none !important;
  }
  .header-navi .menu-list > li.has-child {
    cursor: pointer;
  }
  .header-navi .menu-list > li.has-child > .title {
    display: none;
  }
  .header-navi .menu-list > li.has-child > .sp-title {
    position: relative;
  }
  .header-navi .menu-list > li.has-child > .sp-title::before {
    content: "\f067";
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: auto;
    height: auto;
    margin: auto;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    border: none;
  }
  .header-navi .menu-list > li.has-child.is-active > .sp-title::before {
    content: "\f068";
  }
  .header-navi .menu-list > li.has-child .sub-menu {
    display: none;
    padding-left: 15px;
    padding-bottom: 10px;
    opacity: 0;
    visibility: hidden;
    transition: height 0.5s cubic-bezier(.19, 1, .22, 1);
  }
  .header-navi .menu-list > li.has-child.is-active .sub-menu {
    opacity: 1;
    visibility: visible;
  }
  .header-navi .menu-list > li.has-child .sub-menu a {
    padding: 5px 10px 5px 1.2em;
    color: #fff;
    font-family: var(--font-mincho);
    text-indent: -1.2em;
  }
  .header-navi .menu-list > li.has-child .sub-menu a::before {
    content: "\f105";
    margin-right: 10px;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
  }
  .header-navi .button-list > li {
    margin-top: 5px;
  }
  .header-navi .button-list > li a {
    padding: 10px 15px;
    color: var(--main-color);
    font-family: var(--font-mincho);
    background: #fff;
  }
  .header-navi .button-list > li a i {
    margin-right: 5px;
    letter-spacing: 0;
  }
  .header-navi .sns-list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .header-navi .sns-list li {
    width: calc((100% - 10px) / 3);
  }
  .header-navi .sns-list li a {
    padding-top: 7px;
    padding-bottom: 3px;
    color: var(--main-color);
    font-size: 12px;
    text-align: center;
    border-radius: 5px;
    background-color: #fff;
  }
  .header-navi .sns-list li a i {
    display: block;
    margin-bottom: 3px;
    font-size: 18px;
    letter-spacing: 0;
  }
}


/* ハンバーガーメニュー
************************************************************/
@media screen and (max-width: 640px) {
  body.is-navi {
    overflow: hidden;
  }

  .navi-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    z-index: 10;
  }
  body.is-navi .navi-overlay {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .navi-toggle {
    position: relative;
    right: 0;
    width: 55px;
    padding: 0;
    margin: 0;
    color: #fff;
    text-align: center;
    border: none;
    background: var(--main-color);
    transition: right 0.6s cubic-bezier(.19, 1, .22, 1);
  }
  .navi-toggle span {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    width: 35px;
    height: 2px;
    margin: auto;
    background: #fff;
    opacity: 1;
    transition: all 0.6s cubic-bezier(.19, 1, .22, 1);
  }
  .navi-toggle span:nth-of-type(1) {
    top: 10px;
  }
  .navi-toggle span:nth-of-type(2) {
    top: 20px;
  }
  .navi-toggle span:nth-of-type(3) {
    top: 30px;
  }
  .navi-toggle i {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5px;
    margin: auto;
    font-size: 12px;
    font-style: normal;
    font-weight: bold;
    letter-spacing: 0.1em;
  }
  .navi-toggle.is-active {
    right: 80%;
  }
  .navi-toggle.is-active span:nth-of-type(1) {
    top: 20px;
    transform: rotate(225deg);
  }
  .navi-toggle.is-active span:nth-of-type(2) {
    opacity: 0;
  }
  .navi-toggle.is-active span:nth-of-type(3) {
    top: 20px;
    transform: rotate(-225deg);
  }
}


/* 固定CTA（SP）
************************************************************/
@media print, screen and (min-width: 641px) {
  .fixed-contact-sp {
    display: none;
  }
}

@media screen and (max-width: 640px) {
  .fixed-contact-sp {
    display: block;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 52px;
    background-color: #fff;
    z-index: 9;
  }
  .fixed-contact-sp ul {
    display: flex;
    justify-content: center;
    height: 100%;
    background: #fff;
  }
  .fixed-contact-sp ul li {
    width: -webkit-fill-available;
    width: -moz-available;
    width: stretch;
    text-align: center;
    box-sizing: border-box;
  }
  .fixed-contact-sp ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100%;
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    font-family: var(--font-mincho);
    line-height: 1.3;
    background-color: var(--main-color);
  }
  .fixed-contact-sp ul li:nth-child(2) a,
  .fixed-contact-sp ul li:nth-child(4) a {
    background-color: var(--main-color);
    opacity: 0.8;
  }
  .fixed-contact-sp ul li a:hover {
    color: #fff;
  }
  .fixed-contact-sp ul li a i {
    margin-right: 5px;
  }
}


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

  フッター関連

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

/* ページトップ
************************************************************/
.pagetop {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 110px;
  height: 110px;
  padding-top: 23px;
  text-align: center;
  border: 1px solid #94bac1;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  transition: 0.5s ease-in-out;
  z-index: 12;
}
.pagetop p {
  color: #4ba8b9;
  font-style: normal;
  font-weight: 600;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: .1em;
}
.pagetop p i {
  display: block;
  width: 30px;
  margin: 0 auto 12px;
  color: #fff;
  font-size: 15px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  background: #86c1cc;
}

@media (hover:hover) {
  .pagetop:hover {
    background: #86c1cc;
    transform: translate(0, -10px);
  }
  .pagetop:hover p {
    color: #fff;
  }
  .pagetop:hover p i {
    color: #4ba8b9;
    background: #fff;
  }
}

@media screen and (max-width: 640px) {
  .pagetop {
    left: auto;
    right: 10px;
    bottom: 60px;
    width: 50px;
    height: 50px;
    padding-top: 5px;
    margin: auto;
  }
  .pagetop p {
    margin-top: 0;
    font-size: 9px;
  }
  .pagetop p i {
    width: 20px;
    height: 20px;
    margin-bottom: 2px;
    font-size: 10px;
    line-height: 20px;
  }
}


/* フッター
************************************************************/
.footer {
  position: relative;
  width: 100%;
  background: #f2f4f5;
}
@media print, screen and (min-width: 641px) {
  .footer-inner {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 640px) {
  .footer-inner {
    padding-left: 5%;
    padding-right: 5%;
    padding-bottom: 40px;
  }
}

.footer-information {
  padding: 110px 0 50px;
}
@media print, screen and (min-width: 641px) {
  .footer-information {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}

.footer-information .content-left {
  width: 50%;
  box-sizing: border-box;
}

.footer-information .content-left .logo {
  margin: 0 0 25px;
  text-align: center;
}
.footer-information .content-left .logo img {
  width: 100%;
  max-width: 360px;
  height: auto;
}

.footer-address {
  width: 83.3333333333%;
  padding: 10px 29px 10px 48px;
  margin: 0 auto;
  margin-bottom: 13px;
  line-height: 1.875;
  letter-spacing: .025em;
  text-align: center;
  background: #fff;
}
.footer-address span {
  margin-right: 10px;
}

.footer-tel {
  padding-left: 8px;
  margin-bottom: 23px;
  text-align: center;
}
.footer-tel a {
  color: #4ba8b9;
  font-size: 39.6px;
  font-style: normal;
  font-weight: 400;
  font-family: var(--font-en);
  line-height: 1.11111111111;
  letter-spacing: .05em;
}
.footer-tel a span {
  display: inline-block;
  position: relative;
  top: 10px;
  width: 44px;
  height: 44px;
  margin-right: 12px;
  background: url('../images/tel_icon02.png') no-repeat center / cover;
}

.footer-information .schedule-table table tr:first-of-type {
  background: none;
}

.footer-information .content-right {
  width: 520px;
}

.footer-information .content-right .map {
  position: relative;
}
.footer-information .content-right .map iframe {
  width: 100%;
  height: 400px;
  margin-bottom: 20px;
}

.footer-information .content-right .access ul {
  padding: 11px 0 9px;
  border-radius: 5px;
  background: #86c1cc;
}
.footer-information .content-right .access ul li {
  color: #fff;
  line-height: 1.875;
  letter-spacing: .025em;
  text-align: center;
}
.footer-information .content-right .access ul li:not(:last-of-type) {
  margin-bottom: 10px;
}

@media screen and (max-width: 640px) {
  .footer-information {
    padding: 40px 20px 40px;
  }
  .footer-information .content-left {
    width: 100%;
    padding: 0;
    margin-bottom: 30px;
  }
  .footer-information .content-left .logo {
    width: 90%;
    margin: 0 auto 40px;
  }
  .footer-address {
    width: 100%;
    padding: 10px 15px;
    font-size: 15px;
    text-align: left;
  }
  .footer-address span {
    display: block;
    margin: 0;
  }
  .footer-tel {
    margin-bottom: 23px;
  }
  .footer-tel a {
    font-size: 35px;
    text-align: left;
  }
  .footer-information .content-right {
    width: 100%;
  }
  .footer-information .content-right .map iframe {
    height: 250px;
  }
  .footer-information .content-right .access ul li {
    padding: 5px 10px 5px 20px;
    font-size: 4vw;
    line-height: 1.6;
    text-align: left;
  }
}

.footer-banner {
  padding: 70px 0 50px;
}
.footer-banner .footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-banner .heading-02.-style-01 {
  padding: 110px 0 0 0;
  margin: 0;
}
.footer-banner .heading-02.-style-01:before {
  top: 16px;
  font-size: 70px;
}
.footer-banner .banner-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  width: 74.1666666667%;
}
.footer-banner .banner-list li {
  width: 270px;
}
.footer-banner .banner-list li a {
  display: block;
  pointer-events: all;
  transition: 0.2s;
}
.footer-banner .banner-list li a span {
  display: block;
  padding: 20px 10px;
  text-align: center;
  border: 1px solid #ccc;
  background-color: #ececec;
  pointer-events: none;
  transition: 0.2s;
}
.footer-banner .banner-list li a img {
  pointer-events: none;
  transition: 0.2s;
}
.footer-banner .banner-list li a:hover {
  color: var(--text-color);
}
.footer-banner .banner-list li a:hover span {
  background-color: #ccc;
}
.footer-banner .banner-list li a:hover img {
  opacity: 0.8;
}

@media screen and (max-width: 640px) {
  .footer-banner .footer-inner {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
  .footer-banner .heading-02.-style-01 {
    padding: 0;
  }
  .footer-banner .banner-list {
    width: 100%;
    gap: 12px 0;
  }
  .footer-banner .banner-list li {
    width: 80%;
    margin: 0 auto;
  }
}

.footer-navi {
  background-color: #94bac1;
}
.footer-navi .footer-inner {
  padding: 70px 0 45px;
}
.footer-navi a {
  padding-left: 16px;
  color: #fff;
  font-size: 15px;
  font-family: var(--font-mincho);
  line-height: 2.33333333333;
  letter-spacing: .075em;
}
.footer-navi a:after {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}

@media (hover: hover) {
  .footer-navi a {
    transition: color .15s ease-out;
  }
  .footer-navi a:hover {
    opacity: .8;
  }
}

@media print, screen and (min-width: 641px) {
  .footer-navi .footer-inner {
    display: flex;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-navi .menu-01 {
    width: 20%;
  }
  .footer-navi .menu-01 > li:not(:last-child) {
    margin-bottom: 10px;
  }
  .footer-navi .menu-02 {
    width: 80%;
    padding-left: 40px;
  }
}

.footer-navi .menu-01 a,
.footer-navi .menu-02 a {
  display: inline-block;
  position: relative;
  vertical-align: top;
}

@media (hover: hover) {
  .footer-navi .menu-01 a::before,
  .footer-navi .menu-02 a::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    margin: auto;
    background-color: #fff;
    transition: transform .15s ease-out;
    transform: scaleX(0);
    z-index: 1;
  }
  .footer-navi .menu-01 a:hover::before,
  .footer-navi .menu-02 a:hover::before {
    transform: scaleX(1);
  }
}

.footer-navi .menu-02 > li:not(:last-child) {
  margin-bottom: 25px;
}
.footer-navi .menu-02 > li .column {
  padding-left: 15px;
}
.footer-navi .menu-02 > li .column:not(:last-child) {
  margin-bottom: 15px;
}
.footer-navi .menu-02 > li .title {
  position: relative;
  padding-left: 16px;
  color: #fff;
  font-size: 15px;
  font-family: var(--font-mincho);
  line-height: 2.33333333333;
  letter-spacing: .075em;
}
.footer-navi .menu-02 > li .title:not(:has(> a)):after {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}
.footer-navi .menu-02 > li .column .sub-menu {
  padding-left: 0;
}
.footer-navi .menu-02 > li .sub-menu {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0 10px;
  padding-left: 15px;
}
.footer-navi .menu-02 > li .sub-menu li {
  display: flex;
  align-items: baseline;
  width: calc((100% - 20px) / 3);
  font-size: 90%;
}
.footer-navi .menu-02 > li .sub-menu li a:after {
  content: "-";
  top: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
}

@media screen and (max-width: 640px) {
  .footer-navi .footer-inner {
    padding: 16px 5% 18px;
  }
  .footer-navi a:after {
    top: 6px;
  }
  .footer-navi .menu-01 a,
  .footer-navi .menu-02 a {
    margin-bottom: 20px;
    line-height: 1.4;
  }
  .footer-navi .menu-01 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-bottom: 10px;
  }
  .footer-navi .menu-01 > li {
    width: calc((100% - 20px) / 2);
  }
  .footer-navi .menu-02 > li .column {
    padding-left: 0;
  }
  .footer-navi .menu-02 > li .sub-menu {
    gap: 0 20px;
  }
  .footer-navi .menu-02 > li .sub-menu li {
    width: calc((100% - 20px) / 2);
  }
}

.footer-sns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 13px;
  padding-top: 20px;
  padding-bottom: 20px;
  line-height: 1;
  text-align: center;
  background: #94bac1;
}
.footer-sns li a {
  color: #fff;
}
@media (hover: hover) {
  .footer-sns li a:hover {
    color: var(--sub-color);
  }
}
.footer-sns li a i {
  font-size: 30px;
  letter-spacing: 0;
}

.footer-copyright {
  padding: 10px 0 52px;
  text-align: center;
  background-color: #94bac1;
}
.footer-copyright small {
  color: #fff;
  font-size: 12px;
  font-family: var(--font-mincho);
  line-height: 1;
  letter-spacing: .2em;
}
@media screen and (max-width: 640px) {
  .footer-copyright {
    padding: 7px 0 65px;
    margin-top: 0;
  }
}


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

	メインエリア

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

/* 下層ページタイトル
************************************************************/
.page-header {
  display: block;
  position: relative;
  height: 180px;
  overflow: hidden;
}
@media print, screen and (min-width: 641px) {
  .page-header {
    height: 400px;
  }
}
.page-header:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .1);
  z-index: 1;
}
.page-header .bg img {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  min-height: 100%;
  margin: auto;
  object-fit: cover;
  overflow: hidden;
  z-index: -1;
}
.page-header .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 1200px;
  height: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 640px) {
  .page-header {
    height: 160px;
    margin-top: 55px;
  }
  .page-header .inner {
    width: 100%;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.page-title {
  text-align: center;
  text-shadow: 0 0 5px rgba(26, 26, 26, .6), 0 -1px 5px rgba(26, 26, 26, .6);
}
@media print, screen and (min-width: 641px) {
  .page-title {
    margin-top: 120px;
  }
}
.page-title .title {
  position: relative;
  color: #fff;
  font-size: 200%;
  font-weight: bold;
  font-family: var(--font-mincho);
  line-height: 1.5;
  letter-spacing: 0.2em;
  z-index: 1;
}

@media screen and (max-width: 640px) {
  .page-title .title {
    font-size: 150%;
  }
}


/* コンテンツエリア
************************************************************/
.page-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  width: 1200px;
  margin: auto;
  background: #fff;
  z-index: 1;
}
.page-content main {
  width: 100%;
  padding: 30px 0;
}

@media screen and (max-width: 640px) {
  .page-content {
    display: block;
    width: 100%;
    padding: 20px 0 0;
  }
  .page-content main {
    width: 100%;
    padding: 0 20px 0;
    margin-bottom: 40px;
  }
}

.section-inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 640px) {
  .section-inner {
    padding-left: 5.3%;
    padding-right: 5.3%;
  }
}


/* パンくずリスト
************************************************************/
.breadcrumb {
  width: 100%;
  margin: 0 0 50px 0;
}
.breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  list-style: none;
  counter-reset: unset;
}
.breadcrumb ul li {
  position: relative;
  padding-right: 20px;
  margin: 0;
  line-height: 1.5;
}
.breadcrumb ul li:last-child {
  display: inline-block;
  position: relative;
  width: auto;
  padding-right: 0;
  margin-right: 0;
}
.breadcrumb ul li::before {
  content: "›";
  position: absolute;
  top: 50%;
  left: unset;
  right: 0;
  width: 20px;
  height: 16px;
  padding: 0;
  margin: 0;
  color: inherit;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  border: none;
  border-radius: none;
  background: none;
  transform: translateY(-50%);
}
.breadcrumb ul li:last-child::before {
  content: normal;
}
.breadcrumb ul li a {
  display: inline-block;
  position: relative;
  width: auto;
}

@media screen and (max-width: 640px) {
  .breadcrumb {
    position: static;
    font-size: 12px;
  }
}


/* セクションリンク
************************************************************/
.section-links {
  position: relative;
  margin: 0 0 80px;
}
.section-links ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.section-links ul li {
  display: flex;
  align-items: center;
  align-content: flex-start;
  justify-content: space-between;
  position: relative;
  width: 49%;
  margin: 0 0 10px;
}
.section-links ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 10px;
  color: #4BA8B9;
  font-weight: bold;
  font-family: var(--font-mincho);
  text-align: center;
  border: 1px solid var(--main-color);
  vertical-align: middle;
  transition: 0.1s ease-in-out;
}
.section-links ul li a:hover {
  color: #fff;
  background-color: var(--main-color);
}
.section-links ul li i {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  margin: auto;
}

@media screen and (max-width: 640px) {
  .section-links ul li {
    width: 100%;
    margin: 0 0 10px;
  }
}


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

	パーツ・コンポーネント

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

/* 見出し
************************************************************/
.heading-02.-style-01 {
  display: table;
  position: relative;
  padding: 128px 0 0;
  margin: 0 auto 69px;
  font-size: 23px;
  font-family: var(--font-mincho);
  line-height: 1;
  letter-spacing: .1em;
  text-align: center;
}
.heading-02.-style-01:before {
  content: attr(data-title);
  position: absolute;
  top: 0;
  left: 50%;
  color: #86c1cc;
  font-size: 90px;
  font-style: normal;
  font-weight: 400;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: .05em;
  transform: translateX(-50%);
}

@media screen and (max-width: 640px) {
  .heading-02.-style-01 {
    padding-top: 25vw !important;
    font-size: 6vw !important;
  }
  .heading-02.-style-01:before {
    top: 0 !important;
    left: 50% !important;
    font-size: 18vw !important;
  }
}

.heading-02.-style-02 {
  position: relative;
  padding: 0 0 8px;
  margin: 0 0 20px;
  font-size: 160%;
  font-family: var(--font-mincho);
  line-height: 1.4;
  border-bottom: 2px solid var(--border-color);
}
.heading-02.-style-02.-mg-sm {
  margin: 0 0 10px;
}
.heading-02.-style-02.-fz-sm {
  font-size: 150%;
}
.heading-02.-style-02:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  width: 20%;
  border-bottom: 2px solid var(--main-color);
}

.heading-03 {
  display: table;
  padding: 0 0 4px;
  margin: 0 0 20px;
  font-size: 130%;
  font-family: var(--font-mincho);
  line-height: 1.4;
  border-bottom: 1px solid var(--main-color);
}

.heading-04 {
  clear: both;
  position: relative;
  margin: 0 0 5px;
  color: #4BA8B9;
  font-size: 125%;
  font-family: var(--font-mincho);
  line-height: 1.6;
}


/* 箇条書きリスト
************************************************************/
ul.-style-01 {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 20px;
  margin: 0 0 15px;
  background-color: var(--bg-color);
}
ul.-style-01:after {
  content: "";
  display: block;
  clear: both;
}
ul.-style-01 li {
  display: inline-block;
  position: relative;
  margin: 0 10px 10px 40px;
  border-bottom: 1px dotted var(--border-color);
  list-style-type: none;
}
ul.-style-01 li:before {
  content: "\f00c";
  display: block;
  position: absolute;
  left: -23px;
  color: var(--main-color);
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
}

@media screen and (max-width: 640px) {
  ul.-style-01 {
    padding: 6%;
  }
}


/* 番号リスト
************************************************************/
ol {
  margin: 0;
  padding: 0;
  counter-reset: number;
  list-style: none;
}
ol li {
  margin: 0 0 10px 30px;
  list-style-type: none;
  position: relative;
}
ol li:last-of-type {
  margin: 0 0 0 30px;
}
ol li:before {
  padding: 2px 8px;
  border-radius: 2%;
  color: var(--sub-color);
  counter-increment: number;
  content: counter(number) ".";
  font-weight: bold;
  left: -30px;
  position: absolute;
}


/* ボタン-01
************************************************************/
.more-button.-style-01 a {
  display: inline-block;
  position: relative;
  padding: 17px 71.5px 15px 42.5px;
  margin: 10px 0;
  color: #86c1cc;
  font-style: normal;
  font-weight: 600;
  font-family: var(--font-en-mincho);
  line-height: 1.5;
  letter-spacing: .1em;
  text-align: left;
  border-top: 1px solid #86c1cc;
  border-bottom: 1px solid #86c1cc;
  transition: 0.2s ease-in-out;
}
.more-button.-style-01 a:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 33px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #86c1cc url('../images/btn_arrow01.png') no-repeat center/11px auto;
  transition: 0.2s ease-in-out;
  transform: translateY(-50%);
}

@media (hover:hover) {
  .more-button.-style-01 a:hover {
    filter: brightness(1.1);
  }
  .more-button.-style-01 a:hover::before {
    transform: translate(6px, -50%);
  }
}

.more-button.-style-01 a i {
  margin: 0 0 0 10px;
}

@media screen and (max-width: 641px) {
  .more-button.-style-01 a {
    padding: 17px 50px 15px 25px;
  }
  .more-button.-style-01 a:before {
    right: 3px;
    width: 20px;
    height: 20px;
    background: #86c1cc url('../images/btn_arrow01.png') no-repeat center/9px auto;
  }
}

.more-button.-style-01.-map {
  margin-top: 23px;
  text-align: center;
}
.more-button.-style-01.-map a {
  padding: 16px 74px 16px 83px;
  margin: 0;
  font-size: 17px;
  line-height: 1.43529411765;
  letter-spacing: .1em;
}
.more-button.-style-01.-map a:after {
  content: "\f279";
  position: absolute;
  top: 50%;
  left: 41px;
  font-size: 20px;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  transform: translateY(-50%);
}

@media screen and (max-width: 640px) {
  .more-button.-style-01.-map a {
    display: block;
    padding: 16px 47px;
    font-size: 100%;
    text-align: center;
  }
  .more-button.-style-01.-map a:before {
    right: 30px;
    width: 20px;
    height: 20px;
  }
  .more-button.-style-01.-map a:after {
    left: 27px;
  }
}


/* ボタン-02
************************************************************/
.more-button.-style-02 {
  margin: 30px auto 0;
  text-align: center;
}
.more-button.-style-02 a {
  display: inline-block;
  width: 30%;
  padding: 15px 10px;
  margin: 0 auto 10px;
  color: #4BA8B9;
  font-weight: bold;
  font-family: var(--font-en-mincho);
  letter-spacing: 1px;
  text-decoration: none;
  border: 1px solid var(--main-color);
  box-sizing: border-box;
}
.more-button.-style-02 a:hover {
  color: #fff;
  background: #4BA8B9;
}

@media screen and (max-width: 640px) {
  .more-button.-style-02 a {
    display: block;
    width: 88%;
  }
}


/* テーブル
************************************************************/
table {
  text-align: initial;
}
table th p,
table td p {
  margin: 0 !important;
}


/* 診療時間テーブル
************************************************************/
.schedule-table table {
  width: 100%;
  border-spacing: 0;
}
.schedule-table table th,
.schedule-table table td {
  padding: 5px 0;
  line-height: 1;
  border-bottom: 1px solid var(--border-color);
  vertical-align: middle;
}
.schedule-table table th {
  width: 29%;
  padding-left: 19px;
  font-weight: bold;
  text-align: center;
}
.schedule-table table td {
  padding-left: 3px;
  color: #599ec3;
  font-size: 18px;
  text-align: center;
}
.schedule-table table td:last-of-type {
  padding-right: 14px;
}
.schedule-table table td .close {
  color: #878787;
}
.schedule-table table tr:not(:first-of-type) th {
  font-size: 21px;
  font-style: normal;
  font-weight: 400;
  font-family: var(--font-en);
  letter-spacing: .025em;
}
.schedule-table table tr:first-of-type th,
.schedule-table table tr:first-of-type td {
  padding-top: 20px;
  padding-bottom: 20px;
  color: var(--text-color);
  font-size: 18px;
  font-family: var(--font-mincho);
  letter-spacing: .1em;
}
.schedule-table table tr:nth-of-type(2) th,
.schedule-table table tr:nth-of-type(2) td {
  padding-top: 22px;
  padding-bottom: 8px;
  border-bottom: none;
}
.schedule-table table tr:last-of-type th,
.schedule-table table tr:last-of-type td {
  padding-top: 15px;
  padding-bottom: 26px;
}

.schedule-table .note {
  margin-top: 21.5px;
}
.schedule-table .note p {
  color: #d44141;
  font-size: 16px;
  line-height: 2.1875;
  letter-spacing: .025em;
  text-align: center;
}

@media screen and (max-width: 640px) {
  .schedule-table table th,
  .schedule-table table td {
    padding: 20px 0 !important;
    font-size: 4.5vw !important;
  }
  .schedule-table .note {
    margin-top: 15px;
  }
  .schedule-table .note p {
    text-align: left;
  }
}


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

	汎用レイアウト

===============================================================================*/
._text-box {
  position: relative;
  margin: 0 0 80px;
}
._text-box p {
  margin-bottom: 1em;
}
._text-box p:last-child {
  margin-bottom: 0;
}

.section-type-01,
.section-type-02 {
  position: relative;
  margin: 0 0 80px;
}

.section-type-01 h2:nth-child(n+2) {
  margin-top: 2em;
}
.section-type-01 h3:nth-child(n+2),
.section-type-01 h4:nth-child(n+2) {
  margin-top: 1.5em;
}

.section-type-01 p {
  margin-bottom: 1em;
}
.section-type-01 p:last-child {
  margin-bottom: 0;
}

.section-type-01 ._text-box-02 {
  margin: 60px auto 0;
  text-align: left;
}
.section-type-01 ._text-box-02 .heading-02.-style-02 {
  font-family: var(--font-en-mincho);
}
.section-type-01 ._text-box-02 .heading-03 {
  margin: 30px 0 20px;
  font-family: var(--font-en-mincho);
}
.section-type-01 ._text-box-02 p {
  padding: 0;
  margin: 0 auto 10px;
}
@media screen and (max-width: 640px) {
  .section-type-01 ._text-box-02 {
    margin: 0 auto 0;
  }
  .section-type-01 ._text-box-02.-sp-mgt {
    margin: 60px auto 0;
  }
  .section-type-01 ._text-box-02 .heading-02.-style-02.-fz-sm {
    font-size: 130%;
  }
}

.section-type-02 ._text-box {
  margin-bottom: 0;
}
.section-type-02 h2 {
  margin-top: 0;
}
.section-type-02 h3 {
  margin: 0 0 20px;
}

._layout-01-box {
  position: relative;
  margin: 0 0 15px;
}
._layout-01-box:before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  border-top: 1px solid var(--border-color);
}
._layout-01-box .item {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  margin: 5px 0;
}
._layout-01-box .item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  border-top: 1px solid var(--border-color);
}
._layout-01-box .item .title {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 30%;
  color: #4BA8B9;
  font-size: 120%;
  font-weight: bold;
  font-family: var(--font-mincho);
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
  background-color: var(--bg-color);
}
._layout-01-box .item .title em {
  display: block;
  width: 100%;
  color: var(--sub-color);
  font-size: 150%;
  font-weight: normal;
  font-family: "Times New Roman", Times, serif;
  font-family: var(--font-en);
  line-height: 1;
}
._layout-01-box .item .title span {
  font-size: 75%;
}
._layout-01-box .item .text-content {
  width: 70%;
  padding: 3%;
}

@media screen and (max-width: 640px) {
  ._layout-01-box .item {
    display: block;
  }
  ._layout-01-box .item .title {
    width: 100%;
  }
  ._layout-01-box .item .text-content {
    width: 100%;
  }
  ._layout-01-box .item .text-content img {
    display: block;
    width: 70%;
    margin: 0 auto;
  }
}


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

	お知らせ関連

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

/* お知らせ一覧
************************************************************/
.archives-news .news-list > li {
  padding: 30px 0;
  border-bottom: 1px solid var(--border-color);
}
.archives-news .news-list > li .meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.archives-news .news-list > li .meta .date {
  margin-right: 1em;
}
.archives-news .news-list > li .meta .category {
  display: inline-block;
  min-width: 110px;
  padding: 0 10px;
  color: #fff;
  text-align: center;
  background-color: #A6CEC4FF;
}
.archives-news .news-list > li .title {
  position: relative;
  padding: 0 0 8px;
  margin: 20px 0 10px;
  font-size: 140%;
  font-family: var(--font-mincho);
  line-height: 1.4;
}


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

	クリニック紹介

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

/* 医院概要
************************************************************/
.clinic-information {
  position: relative;
  margin: 0 0 80px;
}
.clinic-information .information-list {
  width: 100%;
}
.clinic-information .information-list dl {
  display: flex;
}
.clinic-information .information-list dl dt {
  width: 20%;
  padding: 15px;
  font-weight: bold;
  border-bottom: 1px dotted var(--border-color);
}
.clinic-information .information-list dl dd {
  width: 80%;
  padding: 15px;
  border-bottom: 1px dotted var(--border-color);
}

@media screen and (max-width: 640px) {
  .clinic-information .information-list dl {
    display: block;
  }
  .clinic-information .information-list dl dt {
    width: 100%;
    padding: 15px 0 0;
    border-bottom: none;
  }
  .clinic-information .information-list dl dd {
    width: 100%;
    padding: 0 0 15px;
  }
  .clinic-information .schedule-table table th,
  .clinic-information .schedule-table table td {
    font-size: 12px;
  }
}


/* 設備ギャラリー
************************************************************/
.clinic-gallery {
  position: relative;
  margin: 0 0 80px;
}
.clinic-gallery .gallery-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 2%;
}
.clinic-gallery .gallery-list .item {
  width: 32%;
  margin-bottom: 15px;
  background: var(--bg-color);
}
.clinic-gallery .gallery-list .item .image {
  background-color: var(--bg-color);
  overflow: hidden;
}
.clinic-gallery .gallery-list .item .image img {
  display: block;
  max-height: 260px;
  margin: 0 auto;
}
.clinic-gallery .gallery-list .item dd {
  padding: 15px;
}
.clinic-gallery .gallery-list .item dd h3 {
  display: table;
  font-size: 20px;
  font-weight: bold;
}

@media screen and (max-width: 640px) {
  .clinic-gallery .gallery-list {
    display: block;
  }
  .clinic-gallery .gallery-list .item {
    width: 100%;
    margin-bottom: 20px;
  }
  .clinic-gallery .gallery-list .item .image img {
    max-height: 390px;
  }
}