@charset "UTF-8";
/* 
.m-plus-1p-regular {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 400;
  font-style: normal;
}

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

	header

============================================================================*/
header {
  width: 100%;
  height: 210px;
  /* navのtopと同じ値にする */
  /*margin-bottom:80px; navのheightと同じ値にする */
  background-color: rgba(255, 255, 255, 0.8);
  position: fixed;
  z-index: 9999;
}

header .inner {
  position: relative;
  width: 1310px;
  height: inherit;
  box-sizing: border-box;
  margin: auto;
  padding-top: 0px;
}

.header_row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.header_left {
  width: 180px;
  margin-right: 30px;
}

/* ロゴ */
header .header_logo,
header .header_logo img {
  width: 100%;
  height: auto;
}

.header_right {
  flex: 1;
}

.header_item01 {
  padding-top: 2px;
}
.header_item01 h1 {
  position: relative;
  top: 0;
  left: 0;
}

.header_item02 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-top: 5px;
}

/* 住所 */
.header_info_ad {
  font-family: "Toppan Bunkyu Mincho R JIS2004", "Noto Serif JP", serif;
  color: #333333;
  font-size: 15px;
  line-height: 25px;
  letter-spacing: 0.05em;
  padding-left: 20px;
  position: relative;
}

.header_info_ad:before {
  position: absolute;
  top: -2px;
  bottom: 0;
  left: 0px;
  width: 15px;
  height: 20px;
  margin: auto;
  background-image: url(../images/map_icon.png);
  background-repeat: no-repeat;
  content: "";
}

/* ご予約・お問合せ */
.header_tel {
  font-family: "Cardo", serif;
  color: #0068b7;
  font-size: 26px;
  font-weight: 400;
  line-height: 25px;
  position: relative;
  top: 0px;
  letter-spacing: 0.08em;
  margin-left: 40px;
  padding-left: 33px;
}

.header_tel a {
  color: #0068b7;
}

/*.header_tel dt{
	font-weight:bold;
	font-size:13px;
}
.header_tel dd{
	position:relative;
	padding-left:25px;
	font-size:24.7px;
	letter-spacing:0.1em;
}*/
.header_tel:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0px;
  width: 22px;
  height: 22px;
  margin: auto;
  background-image: url("../images/tel_icon.png");
  background-repeat: no-repeat;
  content: "";
}

.header_tel dd a {
  color: #1f2774;
}

.header_item03 {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  padding-top: 20px;
}

.english_btn a {
  display: block;
}
.english_btn a img {
  width: auto;
  height: 53px;
}

.facebook_btn a {
  display: block;
}
.facebook_btn a img {
  width: auto;
  height: 53px;
}

.doctors_btn a {
  display: block;
}
.doctors_btn a img {
  width: auto;
  height: 53px;
}

.twitter_btn a {
  display: block;
}
.twitter_btn a img {
  width: auto;
  height: 53px;
}

.eng_btn a {
  width: 190px !important;
}

.clinic_name {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: bold;
}

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

	nav

============================================================================*/
nav {
  position: relative;
  top: 0;
  /* headerのheightと同じ値にする */
  width: 100%;
  height: 54px;
  /* headerのmargin-bottomと同じ値にする */
  /*background-color:rgba(255,255,255,0.5);*/
  z-index: 9990;
}

nav ul {
  /* width: 1200px; */
  height: inherit;
  margin: 0 auto;
  text-align: center;
  display: flex;
  justify-content: center;
}

nav li {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  height: inherit;
}

nav li a {
  display: table;
  padding: 0 20px;
  vertical-align: middle;
  /*line-height: 80px; 上下中央寄せのためにnavのheightと同じ値にする */
  text-align: center;
  font-family: "Toppan Bunkyu Mincho R JIS2004", "Noto Serif JP", serif;
  color: #333333;
  font-size: 17px;
  line-height: 25px;
}

nav li:last-child a {
  padding-right: 0;
}

nav li a:hover,
nav li.active2 a {
  color: #0068b7;
}

nav li a span {
  position: relative;
  display: block;
  font-family: "Cardo", serif;
  color: #0068b7;
  font-size: 10px;
  font-weight: 400;
  line-height: 25px;
}

/* 間のボーダー
nav li a::after{
    content: "";
    position: absolute;
    left: -1px;
	width:0;
	height:15px;
	top:0;
	bottom:0;
	margin:auto;
	border-right:1px dotted #ababab;
    font-weight: 100;
    color: #666;
    font-size: 13px;
}
nav li:first-child a::after{
	display:none;
}*/
/* ホバーのボーダー */
nav li a span::before {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  margin: auto;
  background-color: #5fccfb;
  transition: 0.15s ease-out;
  transform: scaleX(0);
  content: "";
  z-index: 1;
}

nav li a:hover span::before,
nav li.active2 a span::before {
  transform: scaleX(1);
}

/* ホバーで出てくるメニューを示すアイコン */
.nav_slidebtm {
  background-image: url(../images/arrow02.png);
  background-repeat: no-repeat;
  background-position: center bottom 10px;
  background-size: 8px;
}

/* ホバーで出てくるメニュー */
nav ul li div {
  position: absolute;
  display: none;
  width: 190%;
  top: 100%;
  left: -40%;
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
}

nav ul li div a {
  display: block;
  position: relative;
  padding: 13px 20px;
  border-bottom: 1px solid #f0f0f0;
  line-height: 1.4;
  text-align: center;
  font-size: 13px;
}

nav ul li div a::after,
nav ul li div a::before {
  display: none;
}

nav ul li div a:hover {
  background-color: #e7f8ff;
}

/* 矢印 */
.nav_arrow img {
  display: block;
  position: absolute;
  top: 0;
  right: 5%;
  bottom: 0;
  margin: auto;
  transition: 0.2s ease-in-out;
}

nav ul li div a:hover .nav_arrow img {
  right: 3%;
}

/* スクロールで追加されるクラス
nav.fixed{
	position:fixed;
	top:0;
	left:0;
	z-index: 10;
}*/
/*============================================================================

	#mainvisual

============================================================================*/
/* 下層ページのメインビジュアルの高さ、背景画像（トップページの高さはtop.css参照） */
#mainvisual {
  display: block;
  position: relative;
  height: 470px;
  background-image: url(../images/mainvisual_slide0.jpg);
  background-color: #f0f0f0;
  background-position: center;
  background-repeat: no-repeat;
}

#mainvisual .inner {
  display: table;
  position: relative;
  height: inherit;
  width: 1200px;
  margin: 0 auto;
  background-repeat: no-repeat;
}

#mainvisual span.headline {
  position: relative;
}

/* h1 */
.main_h1 {
  position: absolute;
  top: 300px;
  left: 0;
  right: 0;
  margin: auto;
}

.main_h1 h1 {
  position: static;
  font-size: 26px;
  font-family: "Toppan Bunkyu Mincho R JIS2004", "Noto Serif JP", serif;
  color: #333333;
  line-height: 30px;
  text-align: center;
  text-shadow: 0 0 10px #e3e1e1;
}

/* キャッチフレーズ */
.mainvisual_catch {
  position: absolute;
  top: 540px;
  left: 50%;
  transform: translateX(-50%);
}

.mainvisual_catch img {
  width: 630px;
  height: auto;
  filter: drop-shadow(0px 0px 10px #fff);
}

.mainvisual_catch p.headline {
  margin-bottom: 20px;
  line-height: 42px;
  color: #1f2774;
  font-size: 27px;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
}

.mainvisual_catch p {
  display: block;
  letter-spacing: 0.08em;
  font-size: 18.2px;
}

.mainvisual_banner {
  position: absolute;
  /* bottom: 50px;
    right: 10px;
    width: 300px; */
  bottom: 0px;
  right: -60px;
  z-index: 100;
}

.mainvisual_banner_staff {
  position: absolute;
  bottom: 80px;
  right: 10px;
  width: 300px;
}

.mainvisual_banner_contact {
  position: absolute;
  bottom: 50px;
  right: 10px;
  width: 300px;
}

.mainvisual_banner img {
  width: 100%;
}

/* 下層ページの見出し */
.mainvisual_headline {
  display: table-cell;
  padding-top: 140px;
  padding-bottom: 2px;
  letter-spacing: 0.15em;
  vertical-align: middle;
  text-align: center;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
}

/*.mainvisual_headline h2:before{
position: absolute;
    width: 450px;
    height: 450px;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    margin: auto;
    background: url(../images/h2_logo_bg.svg);
    z-index: 1;
    content: "";
    opacity: 0.7;
}*/
.mainvisual_headline span.headline {
  font-size: 33px;
  color: #333;
  font-family: "Shuei Yokobuto Min M", "Noto Serif JP", serif;
}

.mainvisual_headline p {
  font-size: 16px;
  font-family: "Cardo", serif;
  color: #0068b7;
  font-weight: 500;
}

/* 飾りの英語の棒
.mainvisual_headline p::before,
.mainvisual_headline p::after{
	position: relative;
	content:"-";
}
.mainvisual_headline p::before{
	left:-0.5em;
}
.mainvisual_headline p::after{
	right:-0.5em;
}*/
.text-light {
  text-shadow: 3px 3px 8px #ffffff, -3px 3px 8px #ffffff, 3px -3px 8px #ffffff, -3px -3px 8px #ffffff, 3px 0px 8px #ffffff, 0px 3px 8px #ffffff, -3px 0px 8px #ffffff, 0px -3px 8px #ffffff;
}

/* 背景変更用 */
#mainvisual.bg_doctor {
  background-image: url(../images/main_bg_doctor02.jpg);
  background-position: center 0%;
  background-size: cover;
}

#mainvisual.bg_medical {
  background-image: url(../images/main_bg_medical.jpg);
  background-position: center 0%;
  background-size: cover;
}

#mainvisual.bg_medical01 {
  background-image: url(../images/main_bg_medical01.jpg);
  background-position: center 0%;
  background-size: cover;
}

#mainvisual.bg_medical02 {
  background-image: url(../images/main_bg_medical02.jpg);
  background-position: center 0%;
  background-size: cover;
}

#mainvisual.bg_medical03 {
  background-image: url(../images/main_bg_medical03.jpg);
  background-position: center 0%;
  background-size: cover;
}

#mainvisual.bg_medical04 {
  background-image: url(../images/main_bg_medical04.jpg);
  background-position: center 0%;
  background-size: cover;
}

#mainvisual.bg_medical05 {
  background-image: url(../images/main_bg_medical05.jpg);
  background-position: center 0%;
  background-size: cover;
}

#mainvisual.bg_medical06 {
  background-image: url(../images/main_bg_medical06.jpg);
  background-position: center 0%;
  background-size: cover;
}

#mainvisual.bg_medical07 {
  background-image: url(../images/main_bg_medical07.jpg);
  background-position: center 0%;
  background-size: cover;
}

#mainvisual.bg_medical08 {
  background-image: url(../images/main_bg_medical08.jpg);
  background-position: center 0%;
  background-size: cover;
}

/* mainvisualを基準にする */
#mainvisual.bg_medical08 {
  position: relative;
}

/* テキストを絶対配置で中央へ */
#mainvisual.bg_medical08 .mainvisual_headline {
  position: absolute;
  top: 55%;
  /* ← ここで縦位置を微調整 */
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

/* テキスト装飾 */
#mainvisual.bg_medical08 .mainvisual_copy {
  margin: 0;
  font-family: "Toppan Bunkyu Mincho R JIS2004", "Noto Serif JP", serif;
  font-size: 32px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #333;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.85);
}

/* PCでは改行させない */
#mainvisual.bg_medical08 .sp-break {
  display: inline;
}

/* 640px以下 */
@media screen and (max-width: 640px) {
  #mainvisual.bg_medical08 .mainvisual_copy {
    font-size: 22px;
    line-height: 1.7;
  }
  #mainvisual.bg_medical08 .sp-break {
    display: block;
  }
}
@media screen and (max-width: 640px) {
  #mainvisual.bg_medical08 .mainvisual_headline {
    top: 48%;
    /* ← 55% → 48% に調整 */
  }
}
#mainvisual.bg_medical08 .mainvisual_copy {
  background: rgba(255, 255, 255, 0.59);
  padding: 0.8em 1.2em;
  display: inline-block;
  border-radius: 4px;
  text-shadow: none;
  /* すでにあれば消す */
}

#mainvisual.bg_news {
  background-image: url(../images/main_bg_news.jpg);
  background-position: center 0%;
  background-size: cover;
}

#mainvisual.bg_clinic {
  background-image: url(../images/main_bg_clinic.jpg);
  background-position: center 0%;
  background-size: cover;
}

#mainvisual.bg_access {
  background-image: url(../images/main_bg_access.jpg);
  background-position: center 0%;
  background-size: cover;
}

#mainvisual.bg_doctor02 {
  background-image: url(../images/main_bg_doctor02.jpg);
  background-position: center 0%;
  background-size: cover;
}

#mainvisual.bg_staff {
  background-image: url(../images/main_bg_staff.jpg);
  background-position: center 0%;
  background-size: cover;
}

#mainvisual.bg_voice {
  background-image: url(../images/main_bg_voice.jpg);
  background-position: center 0%;
  background-size: cover;
}

#mainvisual.bg_tour {
  background-image: url(../images/main_bg_tour.jpg);
  background-position: center 0%;
  background-size: cover;
}

#mainvisual.bg_recruit {
  background-image: url(../images/main_bg_recruit.jpg);
  background-position: center 0%;
  background-size: cover;
}

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

	#contents

==================================================================*/
main {
  display: block;
}

#container {
  padding-top: 0;
  padding-bottom: 0;
}

#contents {
  position: relative;
  width: auto;
  margin: 0 auto;
  padding-top: 0;
  padding-bottom: 50px;
}

#contents::after {
  display: block;
  clear: both;
  content: "";
}

#contents_left {
  float: left;
  width: 720px;
}

#contents_right {
  float: right;
  width: 280px;
  font-size: 15px;
  line-height: 1.6;
}

.right_medical h3 {
  text-align: center;
}

.right_medical h3 a {
  display: block;
  padding: 7px 0;
  background-color: #1f2774;
  color: #fff;
  font-weight: bold;
  font-size: 19px;
  transition: 0.1s ease-in-out;
}

.right_medical h3 a:hover {
  background-color: #e0d6ce;
  color: #1f2774;
}

.right_medical ul {
  padding: 10px;
  background-color: #f0f0f0;
}

.right_medical li {
  margin-bottom: 15px;
}

.right_medical li:last-child {
  margin-bottom: 0;
}

.right_medical img {
  width: 100%;
}

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

	$footer

============================================================================*/
footer {
  position: relative;
  width: 100%;
  background-color: #d4e3ee;
  background-image: url("../images/footer_bg_logo.png");
  background-position: bottom right;
  background-repeat: no-repeat;
}

/* フッターの医院概要 */
.footer_info .inner {
  display: flex;
  justify-content: space-between;
  width: 1200px;
  margin: 0 auto;
  padding: 100px 0 40px;
}

.footer_info_overview {
  width: 570px;
}

.footer_info_overview_logo,
.footer_info_overview_logo img {
  width: 434px;
  height: auto;
}

.footer_info_overview_logo {
  margin: 0 auto 27px;
  padding-bottom: 30px;
  border-bottom: #a2b9ca solid 1px;
}

.footer_info_overview dt {
  margin-bottom: 20px;
}

.footer_info_overview dd {
  margin-bottom: 12px;
  font-size: 13.5px;
}

.footer_info_overview dd:last-child {
  margin-bottom: 0;
}

.footer_info_overview_tel {
  text-align: center;
  margin: 0 0 11px;
}

.footer_info_email {
  margin-bottom: 10px;
  text-align: center;
}

.footer_info_email i {
  font-size: 18px;
  color: #0068b7;
}

.footer_info_email a {
  padding-left: 5px;
  font-family: "Cardo", serif;
  font-weight: 600;
  font-size: 17px;
  color: #0068b7;
}

.footer_info_email a:hover {
  color: #71caf1;
}

.footer_info_overview_tel a {
  /*padding-left:26px;
  background-image:url("../images/footer_tel_icon.png");
  background-size:29px;
  background-position:left 23px;
  background-repeat:no-repeat;*/
  font-family: "Cardo", serif;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #0068b7;
  font-size: 36px;
  font-weight: 400;
  position: relative;
  padding-left: 50px;
}

.footer_info_overview_tel a:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 13px;
  width: 29px;
  height: 29px;
  margin: auto;
  background-image: url("../images/footer_tel_icon.png");
  background-repeat: no-repeat;
  content: "";
}

.footer_info_overview_tel + div {
  font-family: "Toppan Bunkyu Mincho R JIS2004", "Noto Serif JP", serif;
  color: #333333;
  font-size: 16px;
  line-height: 25px;
  position: relative;
  text-align: center;
  margin-bottom: 42px;
}

.footer_info_overview_tel + div p {
  display: inline-block;
  letter-spacing: 0.05em;
  padding-left: 18px;
  position: relative;
}

.footer_info_overview_tel + div p:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 15px;
  height: 20px;
  margin: auto;
  background-image: url("../images/footer_map_icon.png");
  background-repeat: no-repeat;
  content: "";
}

.footer_info_fax {
  font-family: "Cardo", serif;
  font-weight: 600;
  font-size: 20px !important;
  color: #0068b7 !important;
}

/* 診療時間（医院案内、アクセス共通） */
.footer_info_sche {
  width: 570px;
  font-size: 14px;
  margin-top: 4px;
}

.schedule table {
  width: 100%;
  background-color: #fff;
  font-size: 17px;
  border: 1px solid #e5e5e5;
}

.schedule .tb01 th {
  padding: 15px 11px 13px 35px;
}

.top_news + .box1 .schedule + .schedule .tb01 th,
.schedule:nth-child(2) table th {
  padding: 15px 30px 13px 35px;
}

.schedule .tb01 td {
  padding: 15px 13px 13px 13px;
}

.schedule table tr:first-child th,
.schedule table tr:first-child td {
  padding-top: 9px;
  padding-bottom: 7px;
  font-weight: bold;
  background-color: #024d86;
  color: #fff;
}

.schedule table tr:nth-child(2) th,
.schedule table tr:nth-child(2) td,
.schedule table tr:nth-child(3) th,
.schedule table tr:nth-child(3) td,
.schedule table tr:nth-child(4) th,
.schedule table tr:nth-child(4) td {
  color: #024d86;
  letter-spacing: 0.1em;
}

.schedule:nth-child(2) table tr:first-child th,
.schedule:nth-child(2) table tr:first-child td {
  background-color: #3ac1fa;
  letter-spacing: 0.1em;
}

.schedule:nth-child(2) table tr:nth-child(2) th,
.schedule:nth-child(2) table tr:nth-child(2) td,
.schedule:nth-child(2) table tr:nth-child(3) th,
.schedule:nth-child(2) table tr:nth-child(3) td,
.schedule:nth-child(2) table tr:nth-child(4) th,
.schedule:nth-child(2) table tr:nth-child(4) td {
  color: #3ac1fa;
}

.schedule table tr:first-child td {
  font-weight: bold;
  color: #fff;
}

.schedule table td:last-child {
  padding-right: 25px;
}

.footer_info_sche .schedule {
  margin-bottom: 29px;
}

.schedule p {
  margin-left: 22px;
  margin-bottom: 2px;
}

.schedule p strong {
  color: #1f2774;
}

.schedule p:last-child {
  margin-bottom: 0;
}

.schedule_intro {
  margin-left: 0 !important;
  font-weight: bold;
}

.schedule_note {
  /*display: flex;
    justify-content: flex-end;*/
  letter-spacing: 0;
  text-align: left;
}

.top_news + .box1 .schedule_note li {
  display: block;
  font-weight: 600;
  /* color: #ffffff; */
}

.schedule_note li {
  display: block;
  font-weight: 600;
  color: #333;
}

.schedule_under {
  margin: 0 auto;
  max-width: 570px;
}

/* フッターのナビ */
.footer_navi .inner {
  width: 1200px;
  margin: 0 auto;
  padding: 60px 0 40px;
}

.footer_navi ul {
  position: relative;
  width: 100%;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 9999;
}

.footer_navi ul {
  width: 1200px;
  height: inherit;
  margin: 0 auto;
  text-align: center;
}

.footer_navi ul li {
  display: inline-table;
  position: relative;
  height: inherit;
}

.footer_navi ul li a {
  display: table-cell;
  padding: 0 29px;
  vertical-align: middle;
  line-height: 1.6;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
}

.footer_navi ul li a:hover,
.footer_navi ul li.active2 a {
  color: #1f2774;
}

.footer_navi ul li a span {
  position: relative;
  padding: 0 5px;
}

/* 間のボーダー */
.footer_navi ul li a::after {
  content: "";
  position: absolute;
  left: -1px;
  width: 0;
  height: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
  border-right: 1px dotted #ababab;
  font-weight: 100;
  color: #666;
  font-size: 13px;
}

.footer_navi ul li:first-child a::after {
  display: none;
}

/* ホバーのボーダー */
.footer_navi ul li a span::before {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  width: 100%;
  height: 1px;
  margin: auto;
  background-color: #3d4aa5;
  -webkit-transition-duration: 0.15s;
  transition-duration: 0.15s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  transform: scaleX(0);
  content: "";
  z-index: 1;
}

.footer_navi ul li a:hover span::before,
.footer_navi ul li.active2 a span::before {
  transform: scaleX(1);
}

/* ページトップ */
.pagetop,
.pagetop img {
  width: 60px;
  height: 60px;
}

.pagetop {
  position: fixed;
  right: 50px;
  bottom: 40px;
  width: 60px;
  height: 60px;
  text-align: center;
  cursor: pointer;
  z-index: 9999;
  opacity: 0.9;
}

.pagetop img {
  display: inline-block;
  position: relative;
  top: 0;
  /*transform: rotateY(180deg);*/
  transition: 0.3s ease-in-out;
}

.pagetop:hover img {
  top: -5px;
  padding-bottom: 5px;
  /*transform: rotateY(180deg);*/
  transform: translate(0, -20px);
}

.footer_map_box {
  width: 550px;
}

.footer_map_box div {
  width: 100%;
  height: 603px;
  padding: 0;
  margin: 0 auto 20px;
  border: none;
  position: relative;
  overflow: hidden;
}

.footer_map_box div iframe,
.access_map dd:nth-of-type(1) div iframe {
  vertical-align: bottom;
  border: 0;
  width: 100%;
  height: 100%;
}

.footer_map_box p {
  width: auto;
  background-color: rgba(255, 255, 255, 0.8);
  font-family: "Toppan Bunkyu Mincho R JIS2004", "Noto Serif JP", serif;
  color: #024d86;
  font-size: 18px;
  line-height: 25px;
  text-align: center;
  padding: 18px 10px;
}

.footer_map-heading {
  position: relative;
  margin-bottom: 20px;
  font-weight: normal;
  line-height: 1.5;
  text-align: center;
  font-family: "Toppan Bunkyu Mincho R JIS2004", "Noto Serif JP", serif;
  color: #333333;
  font-size: 28px;
  z-index: 2;
}

.footer_map-heading span {
  display: block;
  position: relative;
  letter-spacing: 1.1px;
  font-family: "Cardo", serif;
  color: #0068b7;
  font-size: 18px;
  font-weight: 400;
  line-height: 2;
  z-index: 2;
}

/* コピーライト */
.copy {
  padding-bottom: 45px;
  text-align: center;
}

.copy small {
  font-family: "Yu Mincho";
  color: #024d86;
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0;
}
