@charset "utf-8";

/*
theme Name: 川野病院
Author: Nakamura
Description: original theme
version： 1.0.0
*/

:root {
  --color-blue: rgb(15,146,210);
  --color-lightblue: rgb(234, 247, 253);
  --color-bluegray: rgb(217, 231, 245);
  --color-pink: rgb(249, 216, 214);
  --color-green: rgb(80, 173, 133);
  --color-red: rgb(227, 62, 50);
}

.h_mobile {
  display: none;
}

/* .h_pc {
  display: flex;
} */

@media (max-width: 767px) {
/* @media (max-width: 1200px) { */
  .h_mobile {
	display: flex;
  }

  .h_pc {
	display: none;
  }
}

.mobile {
  display: none;
}

@media print, screen and (min-width: 768px) {
	.sp{
		display: none;
	}
}
@media screen and (max-width: 767px) {
	.mobile {
		display: flex;
	}
	.pc {
		display: none;
	}
}

/*cssのリセット*/
html, body, div, span, a, object, iframe, h1, h2, h3, h4, h5, h6, p,
blockquote, pre, abbr, address, cite, code, del, dfn, em, img,
ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd,
ol, ul, li, fieldset, form, label, legend, table, caption,
tbody, tfoot, thead, tr, th, td, article, aside, canvas, details,
figcaption, figure, footer, header, hgroup, menu, nav, section,
summary, time, mark, audio, video {
	font-size: 100%;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
	border: 0;
	outline: 0;
	background: transparent;
	box-sizing: border-box;
}

body {
  line-height: 1;
  min-width: 1280px;
}

@media screen and (max-width: 767px) {
  body{
	min-width:initial;
  }
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  width: 100%;
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

a {
  color: black;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

a:hover {
  color: black;
  text-decoration: none;
}

ins {
  text-decoration: none;
  color: #000;
  background-color: #ff9;
}

mark {
  font-weight: bold;
  font-style: italic;
  color: #000;
  background-color: #ff9;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  cursor: help;
  border-bottom: 1px dotted;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

hr {
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
  border: 0;
  border-top: 1px solid #ccc;
}

/* フォント
-------------------------*/
html {
  font-size: 62.5%;
  font-weight: 400;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.7rem;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  color: #333;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  color: #000;
}

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

@media screen and (max-width: 767px) {
	body {
		font-size: 1.4rem;
	}
}
@media screen and (max-width: 360px) {
	body {
		font-size: 1.3rem;
	}
}

/* wrap
-------------------------*/
.wrap{
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}
.wrap1100{
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
}

/* btn
-------------------------*/
.btn{
	width: 400px;
	margin: auto;
	text-align: center;
	list-style: none;
}
.btn a{
	position: relative;
	text-decoration: none;
	font-size: 2.2rem;
	font-weight: 500;
	padding: 1.8rem 1.5rem;
	border-radius: 100px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
}
.btn_bl a{
	color: #fff;
	background: var(--color-blue);
}
.btn_wh a{
	color: var(--color-blue);
	border: 1px solid var(--color-blue);
}
.btn a::after{
	position: absolute;
	right: 2.5rem;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: '\f105';
	font-size: 2.4rem;
	color: white;
}
.btn_wh a::after{
	color: var(--color-blue);
}
@media print, screen and (min-width: 768px) {
	.btn a{
		-webkit-transition: 0.3s ease-in-out;
		transition: 0.3s ease-in-out;
	}
	.btn_bl a:hover{
		background: var(--color-green);
	}
	.btn_wh a:hover{
		color: #fff;
		background: var(--color-blue);
	}
	.btn_wh a:hover::after{
		color: #fff;
	}
}
@media screen and (max-width: 767px) {
	.btn{
		width: 100%;
	}
	.btn a{
		font-size: 1.5rem;
	}
	.btn a::after{
		right: 2rem;
		font-size: 2rem;
	}
}

/*---------------------------------------------------------
  ヘッダー
---------------------------------------------------------*/
.sitename {
		width: 330px;
		margin-left: 3rem;
	}
	.sitename a{
		height: 100%;
		display: flex;
		align-items: center;
	}
	@media screen and (max-width: 767px) {
		header .sitename{
			position: absolute;
			width: 220px;
			top: 5px;
			left: 2.5%;
			margin: 0;
		}
	}
	@media screen and (max-width: 360px) {
		header .sitename{
			top: 12px;
			width: 180px;
		}
	}

@media print, screen and (min-width: 768px) {
	header{
		display: flex;
		justify-content: space-between;
		align-items: stretch;
	}
	.header__nav{
		display: flex;
		justify-content: space-between;
	}
	.gnav{
		padding-right: 4rem;
	}
	/* gnav__sub */
	.gnav__sub{
		display: flex;
		justify-content: flex-end;
		list-style: none;
		margin: 1.8rem 0 .5rem;
		}
		.gnav__sub li{
			font-size: 1.5rem;
			margin-left: 2rem;
		}
		.gnav__sub li a::before {
			color: var(--color-blue);
			font-family: 'Font Awesome 5 Free';
			font-weight: 900;
			content: '\f138';
			margin-right: .5rem;
		}
	.gnav__main{
		display: flex;
		list-style: none;
		}
		.gnav__main li{
			position: relative;
			font-weight: 700;
			margin-left: 3rem;
		}
      .gnav__main a{
         display: block;
      }
		.gnav__main li.menu-item-full{
			position: static;
		}
		.gnav__main > li > a,
		.gnav__main li.menu-item-full span{
			position: relative;
			display: block;
			white-space: nowrap;
			padding: 1rem 0 1.8rem;
			cursor: pointer;
		}
		.gnav__main > li >a::after,
		.gnav__main li.menu-item-full span::after{
			position: absolute;
			left: 0;
			bottom: 0;
			display: block;
			width: 0;
			height: 2px;
			content: "";
			background: var(--color-blue);
			transition: 0.5s;
		}
		.gnav__main > li.open a::after,
		.gnav__main li.open span::after{
			width: 100%;
		}
		@media (hover: hover) {
			.gnav__main > li > a:hover,
			.gnav__main li.menu-item-full span:hover{
				color: var(--color-blue);
			}
			.gnav__main > li > a:hover::after,
			.gnav__main li.menu-item-full span:hover::after{
				width: 100%;
			}
		}
		/* 小サイズ */
		.gnav__main .sub-menu-wrap{
			display: none;
			position: absolute;
			left: 0;
			z-index: 3;
			background: #fff;
			box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
		}
      .gnav__main .sub-menu-wrap li{
         list-style: none;
      }
		.gnav__main .sub-menu-wrap{
			width: 30rem;
			padding: 2rem 2.5rem 3rem;
		}
		/* 大サイズ */
		.gnav__main .menu-item-full > a + .sub-menu-wrap{
			right: 0;
			margin: auto;
			width: 1000px;
			padding: 2rem 4rem 4rem;
		}
		.gnav__main .menu-item-full  > a + .sub-menu-wrap > .inner > .gnav__list{
			display: flex;
		}
		.gnav__main .menu-item-full .menu-item-ttl{
			width: 50%;
			padding: 0 20px;
		}
		.gnav__main .sub-menu-wrap .menu-item-ttl>a{
			font-weight: 700;
			font-size: 1.1em;
			padding-bottom: 8px;
			margin-bottom: 5px;
			color: var(--color-blue);
			border-bottom: 2px solid var(--color-blue);
			pointer-events: none;
		}
		.gnav__main .sub-menu-wrap .menu-item-ttl>a::before{
         font-family: 'Font Awesome 5 Free';
			font-weight: 900;
			content: '\f0d7';
		}
      .gnav__main .menu-item-full .menu-item-ttl .sub-menu-wrap{
         width: 100%;
         position: static;
         display: block;
         background: none;
         padding: 0;
         box-shadow: none;
      }
		.gnav__main .menu-item-full .menu-item-ttl .sub-menu-wrap ul{
			column-count: 2;
		}

		/* パネル内メニュー */
		.gnav__main .sub-menu-wrap li{
			list-style: none;
			padding: 0;
			margin: 0;
		}
		.gnav__main li .sub-menu-wrap a{
			font-weight: 400;
			font-size: .95em;
			padding: 1.5rem 0;
			border-bottom: 1px solid #eee;
		}
		.gnav__main li .sub-menu-wrap a::before{
			color: var(--color-blue);
			font-family: 'Font Awesome 5 Free';
			font-weight: 900;
			content: '\f105';
			margin-right: 1rem;
		}
		.gnav__main li .sub-menu-wrap a::after{
			display: none;
		}
	.header__contact{
		background: var(--color-blue);
	}
	.header__contact a{
		width: 260px;
		color: #fff;
		display: flex;
		flex-wrap: wrap;
		align-content: center;
		justify-content: center;
		height: 100%;
		padding: 1rem 1.5rem;
		box-sizing: border-box;
	}
	.header__contact a .tel{
		width: 100%;
		font-family: 'Lato', sans-serif;
		font-size: 2.6rem;
		font-weight: 700;
		line-height: 1;
		padding: .3rem 0 .3rem 4.6rem;
		background: url(images/phone.png) no-repeat .5rem center;
		background-size: auto 100%;
	}
	.header__contact a .address{
		width: 100%;
		font-size: 1.4rem;
		text-align: center;
	}

}

@media screen and (max-width: 767px) {
	header{
		height: 60px;
		position: relative;
		border-bottom: 1px solid #eee;
	}
	.s-nav{
		position: absolute;
		right: 0;
		line-height: 1;
		text-align: center;
	}
	.s-nav a{
		display: block;
		color: var(--color-blue);
		width: 100%;
		height: 100%;
		padding-top: 1rem;
		box-sizing: border-box;
	}
	.s-nav span{
		text-align: center;
		font-size: 1.1rem;
		display: block;
		margin-top: .7rem;
	}
	.s-nav a::before,
	.s-nav_switch::before{
		font-family: 'Font Awesome 5 Free';
		font-weight: 900;
		font-size: 2.1rem;
/*        pointer-events: none;*/
	}
	.s-nav_access{
		position: absolute;
		right: 60px;
		width: 60px;
		height: 60px;
		border-left: 1px solid var(--color-blue) ;
	}
	.s-nav_access a::before{
		content: '\f3c5';
	}
	.s-nav_switch{
		cursor: pointer;
		position: absolute;
		right: 0;
		width: 60px;
		height: 60px;
		padding-top: 1rem;
		color: #fff;
		background: var(--color-blue);
	}
	.s-nav_switch::before{
		content: '\f0c9';
	}
	.s-nav_switch.active::before{
		content: '\f00d';
	}
	
	/*メニュー*/
	header .submenu{
		position: fixed;
		z-index: 100;
		opacity: 0;
		width: 100%;
		height: 100%;
		top: 6rem;
		left: 0;
		background: #fff;
		transition: all 0.3s;
		pointer-events: none;
		padding-bottom: 5rem;
	}
	body.fixed {
		position: fixed;
		width: 100%;
	}
	header .submenu.active {
		opacity: 1;
		z-index: 999;
		pointer-events: auto;
		overflow-y: scroll;
	}
	/*
	header .submenu-bnr{
		display: flex;
		align-items: stretch;
		justify-content: space-between;
		flex-wrap: wrap;
		padding: 1.5rem 2rem;
		border-bottom: 1px solid #eee;
	}
	header .submenu-bnr__item{
		width: 49%;
		border-radius: .5em;
		overflow: hidden;
	}
	header .submenu-bnr__item:nth-child(n+3){
		margin-top: .5em;
	}
	header .submenu-bnr__item a{
		display: flex;
		align-items: center;
		color: #fff;
		font-size: 1.3rem;
		height: 100%;
		padding: .5em 1em;
	}
	header .submenu-bnr__img{
		width: 30px;
	}
	header .submenu-bnr__name{
		padding-left: 1em;
		flex: 1;
	}
	*/
	header .submenu-nav{
		padding-bottom: 14rem;
	}
	header .submenu-nav li{
		position: relative;
		border-bottom: 1px solid #ddd;
	}
	header .submenu-nav a{
		position: relative;
		z-index: 1;
		display: block;
		padding: 1.4rem 2.4rem;
	}
	header .submenu-nav .sub-menu a{
		padding-left: 4rem;
	}
	header .submenu-nav .sub-menu.depth-1 a{
		padding-left: 6rem;
	}
	header .submenu-nav li.menu-item-ttl>a{
		pointer-events: none;
	}
	header .submenu-nav .sub-menu{
		display: none;
		background: #f6f6f6;
		border-top: 1px solid #ddd;
	}
	header .submenu-nav .sub-menu.depth-1{
		background: #e9e9e9;
	}
	header .submenu-nav li.menu-item-has-children>a {
		position: static;
		display: inline-block;
	}
	header .submenu-nav li.menu-item-has-children span{
		position: absolute;
		top: 0;
		right: 0;
		display: block;
		width: 100px;
		height: 100%;
	}
	header .submenu-nav li span::after{
		color: var(--color-blue);
		position: absolute;
		top: 1em;
		right: 2.5rem;
		font-family: 'Font Awesome 5 Free';
		font-weight: 900;
		font-size: 1.6rem;
		line-height: 1;
	}
	header .submenu-nav li:not(.menu-item-has-children) span::after{
		color: #aaa;
		content: '\f105';
	}
	header .submenu-nav li.menu-item-has-children > a+span::after{
		content: '\2b';
	}
	header .submenu-nav li.menu-item-has-children > a+span.on::after{
		content: '\f068';
	}
	
	header .submenu-nav li.head_none{
		display: none;
	}
	header .submenu-nav li:last-child{
		border-bottom: none;
	}
}







/*---------------------------------------------------------
コンテンツ
---------------------------------------------------------*/
.top_conts h1 {
	text-align: center;
	font-size: 3.4rem;
	font-weight: 700;
	margin-bottom: 3.5rem;
}
.top_conts h1 span {
  color: var(--color-blue);
  font-family: 'Lato', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 3rem;
}
.top_conts h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  border-radius: 4px;
  margin: 1.8rem auto 0;
  background-color: var(--color-blue);
}

@media print, screen and (min-width: 768px) {
  .top_conts {
	min-width: 1200px;
  }
}

@media (max-width: 767px) {
  .top_conts h1 {
	font-size: 2.2rem;
	font-weight: 700;
	margin-bottom: 2.5rem;
  }
  .top_conts h1 span {
	font-size: 1.4rem;
  }
  .top_conts h1::after {
	width: 58px;
	height: 3px;
	border-radius: 3px;
	margin: 12px auto 0;
  }
}


/*---------------------------------------------------------
	フッター
---------------------------------------------------------*/
.footer {
	padding: 11rem 0 8rem;
}
.footer__access {
	font-size: 1.5rem;
	width: 350px;
	}
	.footer .sitename{
		margin: 0;
	}
	.footer .actions-outer{
		width: 100%;
		display: block;
		text-align: center;
		font-size: .9em;
		padding: 2rem 3rem;
		margin: 2rem 0;
	}
	.footer .actions-number{
		font-size: 3.2rem;
}

@media print, screen and (min-width: 768px) {
	.footer {
		display: flex;
		justify-content: space-between;
	}
	.footer__nav {
		flex: 1;
		display: flex;
		justify-content: flex-end;
	}
	.footer__nav-box {
		list-style: none;
		width: 28%;
		padding: 0 1%;
		display: list-item;
	}
	.footer__nav-box:last-child{
		width: 33%;
	}
	.footer__nav-box a {
		position: relative;
		text-decoration: none;
		color: black;
		display: block;
		font-size: 1.6rem;
		font-weight: 900;
		padding-left: 1em;
	}
	.footer__nav-box li{
		list-style: none;
		margin-bottom: 1.5rem;
	}
	.footer__nav-box .sub-menu{
		margin: 1rem 0 3rem;
	}
	.footer__nav-box .sub-menu li{
		margin-left: 1em;
	}
	.footer__nav-box .sub-menu a{
		color: #333;
		font-size: .85em;
		font-weight: 400;
	}
	.footer__nav-box .sub-menu li.menu-item-ttl{
		margin-bottom: .5rem;
		background: #fff;
	}
	.footer__nav-box .sub-menu li.menu-item-ttl>a{
		font-weight: 700;
		padding: 0 2rem!important;
		pointer-events: none;
	}
	.footer__nav-box .sub-menu li.menu-item-ttl>a::before{
		color: var(--color-blue);
		font-family: 'Font Awesome 5 Free';
		font-weight: 900;
		font-size: 1.6rem;
		content: '\f0d7';
	}
	.footer__nav-box a::before {
		position: absolute;
		left: 0;
		font-family: 'Font Awesome 5 Free';
		font-weight: 900;
		color: gainsboro;
		content: '\f105';
		font-size: .9em;
	}
}
.copyright {
	color: #fff;
	font-size: .85em;
	text-align: center;
	padding: 1rem 0;
	background-color: var(--color-blue);
}
#pagetop {
	position: fixed;
	right: 2rem;
	bottom: 2rem;
	color: var(--color-blue);
	width: 80px;
	height: 80px;
	line-height: 80px;
	z-index: 1000;
	border: 1px solid var(--color-blue);
	background: #fff;
	border-radius: 80px;
	}
	#pagetop a{
	  display: block;
	  text-align: center;
	  font-size: 2.5rem;
	  color: var(--color-blue);
	}
	@media screen and (max-width: 767px) {
		#pagetop {
			width: 55px;
			height: 55px;
			line-height: 55px;
			right: 1.5rem;
			bottom: 10rem;
		}
		#pagetop a{
			font-size: 2rem;
		}
	}

	@media screen and (max-width: 767px) {
		.footer{
			padding: 6rem 0 5rem;
		}
		.footer .sitename{
			width: 250px;
			margin: auto auto 1rem;
		}
		.footer-address,
		.footer .closed-txt{
			font-size: .9em;
		}
		.footer .actions-outer{
			padding: 2rem;
			margin: 1rem 0;
			white-space: nowrap;
		}
		.footer .actions-number{
			font-size: 3rem;
			padding-left: 3.5rem;
			margin: 0;
		}
		.footer__access{
			width: 100%;
			padding: 0 2rem;
		}
		.footer__nav{
			margin-top: 4rem;
			border-top: 1px solid #ddd;
		}
		.footer__nav-box li{
			position: relative;
			border-bottom: 1px solid #ddd;
		}
		.footer__nav-box a{
			position: relative;
			z-index: 1;
			display: block;
			padding: 1.4rem 2.4rem;
		}
		.footer__nav-box .sub-menu a{
			padding-left: 4rem;
		}
		.footer__nav-box .sub-menu.depth-1 a{
			padding-left: 6rem;
		}
		.footer__nav-box li.menu-item-ttl>a{
			pointer-events: none;
		}
		.footer__nav-box li.menu-item-has-children span {
			position: absolute;
			top: 0;
			right: 0;
			display: block;
			width: 100px;
			height: 100%;
		}
		.footer__nav-box li span::after{
			color: var(--color-blue);
			position: absolute;
			top: 1em;
			right: 2.5rem;
			font-family: 'Font Awesome 5 Free';
			font-weight: 900;
			font-size: 1.6rem;
			line-height: 1;
		}
		.footer__nav-box li:not(.menu-item-has-children) span::after{
			color: #aaa;
			content: '\f105';
		}
		.footer__nav-box li.menu-item-has-children > a+span::after{
			content: '\2b';
		}
		.footer__nav-box li.menu-item-has-children > a+span.on::after{
			content: '\f068';
		}
		.footer__nav-box li.menu-item-has-children>a{
			position: static;
			display: inline-block;
		}
		.footer__nav-box .sub-menu{
			display: none;
			background: #f6f6f6;
			border-top: 1px solid #ddd;
		}
		.footer__nav-box .sub-menu li:last-child{
			border-bottom: none;
		}
		.footer__nav2-box{
			display: flex;
			flex-wrap: wrap;
			list-style: none;
			padding: 0 1.5rem;
			margin-top: 2rem;
		}
		.footer__nav2-box li{
			font-size: .9em;
			margin: .5em 1em .5em 0;
		}
		.footer__nav2-box li::before {
			color: #ccc;
			font-family: 'Font Awesome 5 Free';
			font-weight: 900;
			font-size: 1.5rem;
			margin-right: .2em;
			content: '\f105';
			pointer-events: none;
		}
		.copyright{
			margin-bottom: 6.5rem;
		}
}
	
#fixed-nav {
	left: 0;
	z-index: 1000;
	position: fixed;
	top: 30vh;
	}
	.fixed-nav-item{
		border-radius: 0 10px 10px 0;
		overflow: hidden;
	}
	.fixed-nav-item + div{
		margin-top: .3em;
	}
	.fixed-nav-item a{
		display: flex;
		align-items: center;
		align-content: center;
		flex-wrap: wrap;
		width: 120px;
		height: 140px;
		color: #fff;
		font-size: 1.4rem;
		font-weight: 600;
		text-align: center;
	}
	@media (hover: hover) {
		.fixed-nav-item:hover{
			opacity: .8;
		}
	}
	.fixed-nav-item img{
		display: block;
		margin: auto auto .7em;
		height: 42px;
	}
	.fixed-nav-item p{
		width: 100%;
		line-height: 1.4;
		font-size: 1.1em;
	}
	@media screen and (max-width: 1280px) {
		#fixed-nav {
			top: auto;
			bottom: 0;
			display: flex;
		}
		.fixed-nav-item{
			border-radius: 0;
		}
		.fixed-nav-item + div{
			margin: 0;
		}
		.fixed-nav-item a{
			width: 220px;
    	height: 110px;
		}
		.fixed-nav-item img{
			height: 35px;
			margin: auto auto .5em;
		}
	}
	@media screen and (max-width: 767px) {
		#fixed-nav{
			width: 100%;
			justify-content: space-between;;
		}
		.fixed-nav-item{
			width: 50%;
		}
		.fixed-nav-item a{
			width: 100%;
			height: 65px;
			padding: 0 1rem;
			flex-wrap: wrap;
			justify-content: center;
		}
		.fixed-nav-item img{
			margin: 0 1rem 0 0;
			height: 34px;
		}
		.fixed-nav-item p{
			width: auto;
			font-size: 1em;
			line-height: 1.3;
			text-align: left;
		}
	}
	@media screen and (max-width: 360px) {
		.fixed-nav-item a{
			padding: 0 .5rem;
		}
	}



/* margin設定 */
.mar_auto {
  margin: 0 auto;
}

.mar_0 {
  margin: 0;
}

.mar_t_0 {
  margin-top: 0;
}

.mar_r_0 {
  margin-right: 0;
}

.mar_b_0 {
  margin-bottom: 0;
}

.mar_l_0 {
  margin-left: 0;
}

.mar_5 {
  margin: 5px;
}

.mar_t_5 {
  margin-top: 5px;
}

.mar_r_5 {
  margin-right: 5px;
}

.mar_b_5 {
  margin-bottom: 5px;
}

.mar_l_5 {
  margin-left: 5px;
}

.mar_10 {
  margin: 10px;
}

.mar_t_10 {
  margin-top: 10px;
}

.mar_r_10 {
  margin-right: 10px;
}

.mar_b_10 {
  margin-bottom: 10px;
}

.mar_l_10 {
  margin-left: 10px;
}

.mar_15 {
  margin: 15px;
}

.mar_t_20 {
  margin-top: 20px;
}

.mar_r_20 {
  margin-right: 20px;
}

.mar_b_20 {
  margin-bottom: 20px;
}

.mar_l_20 {
  margin-left: 20px;
}

.mar_t_30 {
  margin-top: 30px;
}

.mar_r_30 {
  margin-right: 30px;
}

.mar_b_30 {
  margin-bottom: 30px;
}

.mar_l_30 {
  margin-left: 30px;
}

.mar_36 {
  margin: 36px;
}

.mar_t_50 {
  margin-top: 50px;
}

.mar_r_50 {
  margin-right: 50px;
}

.mar_b_50 {
  margin-bottom: 50px;
}

.mar_l_50 {
  margin-left: 50px;
}

.mar_t_80 {
  margin-top: 80px;
}

.mar_t_150 {
  margin-top: 150px;
}

/* padding設定 */
.pad_v_10 {
  padding: 10px 0;
}

.pad_v_20 {
  padding: 20px 0;
}

.pad_v_30 {
  padding: 30px 0;
}

.pad_0 {
  padding: 0;
}

.pad_t_0 {
  padding-top: 0;
}

.pad_r_0 {
  padding-right: 0;
}

.pad_b_0 {
  padding-bottom: 0;
}

.pad_l_0 {
  padding-left: 0;
}

.pad_5 {
  padding: 5px;
}

.pad_t_5 {
  padding-top: 5px;
}

.pad_r_5 {
  padding-right: 5px;
}

.pad_b_5 {
  padding-bottom: 5px;
}

.pad_l_5 {
  padding-left: 5px;
}

.pad_10 {
  padding: 10px;
}

.pad_t_10 {
  padding-top: 10px;
}

.pad_r_10 {
  padding-right: 10px;
}

.pad_b_10 {
  padding-bottom: 10px;
}

.pad_l_10 {
  padding-left: 10px;
}

.pad_20 {
  padding: 20px;
}

.pad_t_20 {
  padding-top: 20px;
}

.pad_r_20 {
  padding-right: 20px;
}

.pad_b_20 {
  padding-bottom: 20px;
}

.pad_l_20 {
  padding-left: 20px;
}

.pad_30 {
  padding: 30px
}

.pad_t_30 {
  padding-top: 30px;
}

.pad_r_30 {
  padding-right: 30px;
}

.pad_b_30 {
  padding-bottom: 30px;
}

.pad_l_30 {
  padding-left: 30px;
}

.pad_t_50 {
  padding-top: 50px;
}

/* border設定 */
.bor_t_1 {
  border-top: 1px solid #eee;
}

.bor_r_1 {
  border-right: 1px solid #eee;
}

.bor_b_1 {
  border-bottom: 1px solid #eee;
}

.bor_l_1 {
  border-left: 1px solid #eee;
}


/*--------------------------------------------
 mainvisual
--------------------------------------------*/
.mainvisual{
	position: relative;
	overflow: hidden;
}
/* .mainvisual::after{
	position: absolute;
	left: 0;
	bottom: -5px;
	z-index: -1;
	display: block;
	content: "";
	width: 100%;
	height: 30vh;
	background: #fef6e1;
} */

.blue {
  color: var(--color-blue);
}

.red {
  color: var(--color-red);
}

@media print, screen and (min-width: 768px) {
  .mainvisual .slide-container {
	display: flex;
	width: 100%;
  }
  .mainvisual .swiper-container {
	width: 200%;
	/* left: -10%; */
	padding-bottom: 50px;
	margin: 0;
  }

  .swiper-container-horizontal>.swiper-pagination-bullets {
	bottom: 0;
  }

  .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 6px !important;
  }

  .mainvisual .swiper-slide{
	max-height: 650px;
	overflow: hidden;
  }
  .mainvisual .swiper-slide img{
	object-fit: cover;
	width: 100%;
	max-height: 650px;
  }
  .mainvisual .swiper-pagination-bullet{
	width: 12px !important;
	height: 12px !important;
	margin: 0 5px;
  }
  .mainvisual .swiper-pagination-bullet-active {
	background-color: var(--color-blue) !important;
  }
  
  .catch{
	position: absolute;
	z-index: 100;
	bottom: 144px;
	left: 10%;
	font-weight: 500;
	color: black;
	font-size: 4rem;
	letter-spacing: 1px;
	font-family: 'Noto Serif JP', serif;
  }
  .catch_tit1{
	display: inline-block;
	padding: 0.2rem 1.2rem;
	background: rgba(255, 255, 255, 0.8);
	opacity: 0;
	animation: fadein .8s ease-in-out 2s 1 normal forwards;
  }
  .catch_tit2{
	margin-top: 16px;
	margin-left: 160px;
	padding: 0.2rem 0.9rem;
	background: rgba(255, 255, 255, 0.8);
	opacity: 0;
	animation: fadein .8s ease-in-out 3s 1 normal forwards;
  }
  
  .corona {
	position: absolute;
	right: 12rem;
	bottom: 8rem;
	z-index: 1;
  }
  
  .guide {
	width: 170px;
  }
  
  .guide-inner {
	text-align: center;
	padding-top: 83px;
  }
  
  .car {
	position: absolute;
	top: 57px;
	right: 26px;
  }
  
  .guide-inner>div.toho {
	margin-top: 69px;
  }
  
  .train {
	position: absolute;
	top: 264px;
	right: 30px;
  }
  
  .guide-inner div {
	text-orientation: upright;
	font-size: 17px;
	font-weight: 600;
	letter-spacing: 1px;
	margin: 4px auto;
	text-align: center;
  }

  div.guide-inner>div.kanbi>p {
	margin-top: 10px;
  }
  
  .guide-inner div p {
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	display: inline-block;
  }

  .text-combine {
	-webkit-text-combine: horizontal;
	-ms-text-combine-horizontal: all;
	text-combine-upright: all;
	position: absolute;
	right: 30px;
  }
  
  @-moz-document url-prefix() {
	.text-combine {
	  right: 28px;
	}
  }

  @keyframes fadein {
	0%	{ opacity: 0; }
	100%{ opacity: 1; }
  }
}

@media screen and (max-width: 767px) {
	.mainvisual .slide-container {
		height: 480px;
		margin-bottom: 2rem;
	}
	.swiper-container {
		height: 100%;
		padding-bottom: 36px !important;
	}
	.swiper-container-horizontal>.swiper-pagination-bullets {
		bottom: 0 !important;
	}
	.swiper-slide>img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.mainvisual .swiper-pagination-bullet {
		width: 9px !important;
		height: 9px !important;
		margin: 0 9px 0 0 !important;
	}

	.catch{
		position: absolute;
		z-index: 100;
		bottom: 24vh;
		left: 4%;
		font-weight: 500;
		color: black;
		font-size: 2rem;
		letter-spacing: 1px;
		font-family: 'Noto Serif JP', serif;
	}
	.catch_tit1{
		display: inline-block;
		padding: 0.1rem 1rem;
		background: rgba(255, 255, 255, 0.8);
		opacity: 0;
		animation: fadein .8s ease-in-out 2s 1 normal forwards;
	}
	.catch_tit2{
		margin-top: .8rem;
		margin-left: 7rem;
		padding: 0.1rem 0.8rem;
		background: rgba(255, 255, 255, 0.8);
		opacity: 0;
		animation: fadein .8s ease-in-out 3s 1 normal forwards;
	}
	@keyframes fadein {
		0%	{ opacity: 0; }
		100%{ opacity: 1; }
	  }

  .corona img {
	position: absolute;
	bottom: 12vh;
	right: 10px;
	width: 25vh;
	z-index: 1;
  }
}

@media (max-width: 600px) {
	.catch{
		font-size: 5vw;
	}
	.catch_tit2{
		margin-left: 16vw;
	}
}

@keyframes zoomOut {
  0% {
	transform: scale(1.1);
  }
  100% {
	transform: scale(1);
  }
}
.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img{
  animation: zoomOut 7s ease 0s;
  animation-fill-mode: both;
}
.swiper-slide {
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/*--------------------------------------------
 information
--------------------------------------------*/
.information{
	padding: 5rem 0 8rem;
	}
	.information-tit {
		font-size: 2.8rem;
		font-weight: 700;
		text-align: center;
	}
	.information-frame {
		text-align: center;
		border: 3px solid #eee;
		padding: 3.8rem 4rem;
		margin: 2.5rem auto 3rem;
	}
	.information-frame-inner {
		text-align: left;
		display: flex;
		justify-content: space-between;
	}
	.consultation-outer {
		width: 48%;
	}
	.consultation-box{
		display: flex;
		align-items: flex-start;
	}
	.consultation-box + dl{
		margin-top: 2rem;
	}
	.consultation-box dt{
		width: 120px;
		padding: .6rem 0;
		margin-right: 2.5rem;
		border-radius: 2rem;
		background-color: var(--color-lightblue);
		text-align: center;
	}
	.consultation-box dd{
		padding-top: .7rem;
	}
	.actions-outer {
		width: 48%;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		padding: 2rem 4rem;
		border-radius: 2.5rem;
		background-color: var(--color-lightblue);
	}
	.actions-tit {
		width: 100%;
		padding: .5rem 0;
		margin-bottom: 1rem;
		border-radius: 20px;
		text-align: center;
		background-color: white;
	}
	.actions-number {
		font-family: 'Lato', sans-serif;
		font-size: 3.5rem;
		font-weight: 700;
		line-height: 1;
		padding-left: 4rem;
		background: url(images/phone_blue.png) no-repeat left center;
		background-size: auto 100%;
		display: inline-block;
	}
	.actions-time{
		font-size: 1.6rem;
	}
	.information-ems {
		display: inline-block;
		border-radius: 20px;
		background-color: var(--color-pink);
		margin: 3rem auto 0;
		padding: .5em 1.5em;
	}
	.information_btn-wrap{
		display: flex;
		justify-content: center;
	}
	.information__btn{
		margin: 0 1em;
	}

	@media screen and (max-width: 767px) {
		.information{
			padding: 0 2rem 6rem;
		}
		.information-tit {
			font-size: 1.8rem;
		}
		.information-frame{
			padding: 2.5rem 2rem;
			margin: 2rem auto 3rem;
		}
		.information-frame-inner{
			display: block;
		}
		.consultation-outer{
			width: 100%;
		}
		.consultation-box{
			display: block;
		}
		.consultation-box dt{
			width: 100px;
			padding: 0.2rem 0;
		}
		.consultation-box dd {
			padding-top: 0.5rem;
		}
		.actions-outer{
			width: 100%;
			display: block;
			text-align: center;
			padding: 1.8rem 2rem 1.4rem;
			margin-top: 2rem;
			border-radius: .8rem;
		}
		.actions-tit{
			font-size: .95em;
			margin-bottom: 1rem;
		}
		.actions-number{
			display: inline-block;
			line-height: 1;
			font-size: 2.2rem;
			padding-left: 3rem;
		}
		.actions-time{
			font-size: .85em;
		}
		.information-ems {
			width: 100%;
			line-height: 1.4;
			font-size: .95em;
			margin: 1.6rem auto 0;
			padding: 0.8em 0;
			border-radius: 5rem;
		}
		.information_btn-wrap{
			display: block;
		}
		.information__btn{
			margin: 0;
		}
		.information__btn + div{
			margin-top: .5em;
		}
}

/*---------------------------------------------------------
	medical
---------------------------------------------------------*/
.medical {
	background-image: url(images/medical_background.jpg);
	background-size: cover;
	}
	.medical__inner {
		padding: 5rem 0 10rem;
		background-color: rgba(1, 129, 192, 0.07);
	}
	.medical__department {
		color: var(--color-blue);
		margin: 0 auto 10px;
		font-weight: 700;
		font-size: 1.1em;
		text-align: center;
	}
	.medical__message {
		text-align: center;
	}
	.medical__list {
		display: flex;
		align-items: flex-end;
		justify-content: space-between;
		margin: 40px auto 0;
	}
	.medical__list li{
		width: 48.5%;
		list-style: none;
	}
	.medical__list li a{
		border-radius: 17px;
		background-color: #fff;
		display: flex;
		align-items: center;
		padding: 3rem 3.5rem;
		box-shadow: 0px 10px 19px -6px rgba(0, 0, 0, 0.2);
	}
	@media (hover: hover) {
		.medical__list li a{
			-webkit-transition: 0.3s ease-in-out;
			transition: 0.3s ease-in-out;
		}
		.medical__list li a:hover {
			box-shadow: none;
		}
	}
	.medical__list li .text{
		padding-left: 3rem;
	}
	.medical__list-tit {
		font-size: 24px;
		font-weight: 500;
		padding-left: 3rem;
	}
	.medical__list-tit i{
		color: var(--color-blue);
		margin-right: 1rem;
	}

	@media screen and (max-width: 767px) {
		.medical__inner {
			padding: 3rem 2rem 7rem;
		}
		.medical__department{
			font-size: 1em;
		}
		.medical__message{
			font-size: 1.3rem;
		}
		.medical__list{
			display: block;
			width: 100%;
			margin: 2rem auto 0;
		}
		.medical__list li{
			width: 100%;
		}
		.medical__list li+li{
			margin-top: 1rem;
		}
		.medical__list li a{
			border-radius: 1rem;
			padding: 2rem 2.5rem;
		}
		.medical__list li a img{
			width: 22%;
		}
		.medical__list li .text{
			padding: 0;
		}
		.medical__list-tit{
			font-size: 1.7rem;
			padding-left: 2rem;
		}

	}


/*---------------------------------------------------------
	feature
---------------------------------------------------------*/
.feature {
	padding: 5rem 0 10rem;
	position: relative;
}
.badge {
	position: absolute;
	right: 39px;
	top: -39px;
	}

.feature__list {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	justify-content: space-between;
	max-width: 1100px;
	margin: 60px auto 50px;
	}
	.feature__item {
		position: relative;
		width: 48%;
	}
	.feature__item-img{
		width: 100%;
		position: relative;
	}
	.feature__item-img .number{
		position: absolute;
		bottom: -5rem;
		left: 2rem;
		font-family: 'Lato', sans-serif;
		font-size: 8rem;
		font-weight: 500;
		color: var(--color-blue);
	}
	.feature__frame-tit{
		font-size: 1.4em;
		line-height: 1.4em;
		text-align: center;
		margin: 3rem 0 2rem;
	}
	.feature__frame-tit span{
		font-size: .8em;
	}
	.feature__frame-text {
		width: 88%;
		font-size: .9em;
		margin: 0 auto;
	}
	.feature__frame-text p+p{
		margin-top: .6em;
	}
	.feature__frame-text p span{
		position: relative;
		padding-left: .8em;
	}
	.feature__frame-text p span::before{
		position: absolute;
		left: 0;
		top: .55em;
		content: "";
		width: 6px;
		height: 6px;
		border-radius: 6px;
		background: var(--color-blue);
	}
	.feature__frame-text p strong{
		color: var(--color-blue);
	}
	@media print, screen and (min-width: 768px) {
		.feature__item:nth-child(n+3){
			margin-top: 4rem;
		}
		.feature__item:nth-child(-n+2) .feature__frame-tit{
			height: 55px;
			display: flex;
			flex-wrap: wrap;
			align-items: center;
			justify-content: center;
			line-height: 1.3em;
			margin: 2rem 0 2rem;
		}
	}

	@media screen and (max-width: 767px) {
		.feature {
			padding: 5rem 0;
		}
		.badge {
			right: 11px;
			top: -32px;
			width: 106px;
			height: 106px;
		}
		.feature__list{
			display: block;
			margin: 3rem auto 4rem;
		}
		.feature__item{
			width: 100%;
		}
		.feature__item + div{
			margin-top: 5rem;
		}
		.feature__item-img .number{
			bottom: 4.5rem;
			left: 42%;
			font-size: 4.5rem;
			line-height: 1;
			z-index: 1;
		}
		.feature__item-img img{
			width: 100%;
		}
		.feature__frame{
			position: relative;
			left: 0;
			right: 0;
			top: -70px;
			margin: auto auto -70px;
			width: 90%;
			padding-top: 3rem;
			background: rgb(255, 255, 255, .88);
			border-radius: 1rem 1rem 0 0;
		}
		.feature__frame-tit{
			font-size: 1.3em;
			margin: 0 0 1rem;
		}
		.feature__btn{
			padding: 0 3rem;
		}
	}


/*---------------------------------------------------------
	symptoms
---------------------------------------------------------*/
.symptoms {
	padding: 5rem 0 8rem;
	background-color: var(--color-lightblue);
	}
	.symptoms h1{
		font-size: 3.2rem;
	}
	.symptoms__inner {
	  max-width: 900px;
	  border-radius: 18px;
	  background-color: white;
	  margin: 0 auto;
	  padding: 3rem 12px 3rem 134px;
	}
	.symptoms__list {
		list-style: none;
		padding-left: 0;
		column-count: 2;
	}
	.symptoms__item{
		position: relative;
		margin-top: 5px;
		padding-left: 3rem;
	}
	.symptoms__item::before{
		display: inline-block;
		content: "";
		position: absolute;
		top: 3px;
		left: 0;
		width: 21px;
		height: 18px;
		background: url(images/check.png);
		background-size: cover;
	}
	.symptoms__text {
		text-align: center;
		margin: 3rem 0;
	}

	@media screen and (max-width: 767px) {
		.symptoms {
			padding: 4rem 2rem 6rem;
		}
		.symptoms h1{
			font-size: 2.2rem;
		}
		.symptoms__inner {
			height: auto;
			border-radius: 1rem;
			padding: 1.5rem 2.5rem 2.5rem;
		}
		.symptoms__list {
			column-count: 1;
		}
		.symptoms__item {
			margin-top: 8px;
		}
		.symptoms-text {
			padding-top: 32px;
			padding-bottom: 66px;
		}
	}


/*---------------------------------------------------------
	news
---------------------------------------------------------*/
.news {
	padding: 9rem 0;
	margin-bottom: 10rem;
	background-color: var(--color-lightblue);
	}
	.news__inner{
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.news-title{
		width: 23%;
	}
	.news h1 {
		text-align: left;
		font-size: 3rem;
		margin-bottom: 2rem;
	}
	.news h1::after {
		display: none;
	}
	.news-btn{
		width: 100%;
	}
	.news-btn a {
		font-size: 17px;
		padding: 1.4rem 1.5rem;
		background: #fff;
	}
	.news-article {
	  width: 72%;
	  height: 270px;
	  overflow-y: scroll;
	}
	/*スクロールバー*/
	.news-article::-webkit-scrollbar {
		width: 7px;
	}
	.news-article::-webkit-scrollbar-track {
		background-color: rgb(217, 227, 239);
		border-radius: 7px;
	}
	.news-article::-webkit-scrollbar-thumb {
		background-color: var(--color-blue);
		border-radius: 7px;
	}
	.news-article::-webkit-scrollbar-thumb:hover {
		background-color:#255fac;
	}
	/*一覧*/
	.news__list{
		padding-right: 3rem;
	}
	.news-list__item a{
		padding: 2rem 1.5rem;
		line-height: 1.5;
		color: #050505;
		display: block;
		position: relative;
		text-decoration: none;
		border-bottom: 1px solid #ddd;
	}
	.news-list__item-date {
		font-size: .9em;
		margin-right: 1.2rem;
		display: inline-block;
	}
	.news-list__item-cat {
		font-size: .9em;
		display: inline-block;
		color: var(--color-blue);
	}
	.news-list__item-title {
		display: block;
		padding-top: .5rem;
	}
	@media (hover:hover) {
		.news-list__item a:hover .news-list__item-title {
			text-decoration: underline;
		}
	}

	@media screen and (max-width: 767px) {
		.news {
			width: 100%;
			margin: auto auto 8rem;
			padding: 3rem 2rem 8rem;
		}
		.news__inner{
			display: block;
		}
		.news-title{
			width: 100%;
			display: flex;
			align-items: center;
			justify-content: space-between;
			margin-bottom: 2rem;
		}
		.top_conts .news h1 {
			font-size: 2.2rem;
			line-height: 1.3;
			padding: 0;
			margin: 0;
		}
		.news-btn{
			width: auto;
			margin: 1.5rem 0 0;
		}
		.news-btn a{
			font-size: 1em;
			border: none;
			padding: 0 2rem 0 0;
			background: none;
		}
		.news .btn a::after{
			right: 0;
			font-size: 1.8rem;
		}
		.news-article {
			width: 100%;
			height: auto;
			overflow-y: hidden;
			margin: 0 auto;
			border-top: 1px solid rgb(217, 227, 239);
		}
		.news__list{
			padding: 0;
		}
		.news-list__item a{
			padding: 15px 10px 15px 10px;
		}

	}


/*---------------------------------------------------------
	banner
---------------------------------------------------------*/
.banner {
	position: relative;
	overflow: hidden;
	padding-bottom: 10rem;
	}
	.banner::after{
		position: absolute;
		left: 0;
		top: 15rem;
		z-index: -1;
		width: 100%;
		height: 100%;
		content: "";
		display: block;
		background-color: var(--color-lightblue);
	}
	.banner__inner {
		display: flex;
		align-items: flex-end;
		justify-content: space-between;
	}
	.banner__item{
		width: 48%;
	}
	.banner__item a{
		display: block;
		background: #fff;
		box-shadow: 0px 10px 19px -6px rgba(0, 0, 0, 0.1);
	}
	.banner__item-img {
		position: relative;
		overflow: hidden;
		width: 100%;
		height: 220px;
	}
	.banner__item-img img{
		width: 100%;
	}
	.banner__item-text{
		padding: 3rem 3.5rem;
		font-size: 2.2rem;
		font-weight: 500;
	}
	.banner__item-text i{
		color: var(--color-blue);
		margin-right: 1rem;
	}

	@media (hover: hover) and (pointer: fine) {
		a .banner__item-img img{
			transition: transform .6s ease;
		}
		a:hover .banner__item-img img{
			transform: scale(1.1);
		}
	}

	@media screen and (max-width: 767px) {
		.banner {
			padding: 0 2rem 6rem;
		}
		.banner::after{
			top: 8rem;
		}
		.banner__inner{
			display: block;
		}
		.banner__item{
			width: 100%;
		}
		.banner__item + .banner__item{
			margin-top: 2.5rem;
		}
		.banner__item-text{
			font-size: 1.7rem;
			line-height: 1;
			padding: 2rem 2.5rem;
		}
		.banner__item-img{
			height: auto;
		}
	}

/*---------------------------------------------------------
	about
---------------------------------------------------------*/
.about {
	font-size: 1.5rem;
	padding-top: 35rem;
	position: relative;
	}
	.about::after{
		position: absolute;
		left: 0;
		top: 0;
		z-index: -1;
		width: 100%;
		height: 80%;
		content: "";
		display: block;
		background: url('images/exterior.jpg') left top no-repeat;
		background-size: 100%;
	}
	.about__frame {
		border-radius: 15px;
		background-color: white;
		box-shadow: 0 10px 26px 0 rgba(69, 111, 163, .33);
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		padding: 7rem;
	}
	.about__info,
	.about__map{
		width: 46.5%;
	}
	.about__info h2 {
		font-size: 26px;
		padding-left: 18px;
		margin-bottom: 1.5rem;
		border-left: 4px solid var(--color-blue);
	}
	.about__text {
		margin-bottom: 1.5rem;
	}

.schedule_table{
		margin: 2rem 0;
		padding: 1rem 0;
		border-top: 1px solid rgb(217, 227, 239);
		border-bottom: 1px solid rgb(217, 227, 239);
	}
	.schedule_table table{
		width: 100%;
	}
	.schedule_table th,
	.schedule_table td{
		padding: .7rem 0;
		vertical-align: middle;
	}
	.schedule_table th {
		text-align: center;
		padding-right: 9px;
	}
	.schedule_table th.time {
		font-weight: 400;
	}
	.schedule_table td.day {
		font-weight: 900;
	}
	.schedule_table td {
		width: 46px;
		text-align: center;
	}
	.schedule_table tbody td {
	  color: var(--color-blue);
	}
	.caution-txt span {
	  color: var(--color-blue);
	}
.about__map iframe {
		width: 100%;
		height: 400px;
		border-radius: 25px;
	}
	.about__address {
		display: flex;
		align-items: center;
		justify-content: space-between;
		margin-top: 1.5rem;
	}
	.about__address a {
		display: block;
		font-size: 1.4rem;
		line-height: 1;
		padding: .8rem 1.5rem;
		text-decoration: none;
		color: var(--color-blue);
		border: 1px solid var(--color-blue);
		border-radius: 10rem;
	}

	@media screen and (max-width: 767px) {
		.about{
			font-size: 1.4rem;
			padding: 12em 1.8rem 0;
		}
		.about__frame{
			display: block;
			padding: 3rem 2.5rem;
			border-radius: 10px;
			box-shadow: 0 10px 20px 0 rgb(69 111 163 / 15%);
		}
		.about__info,
		.about__map{
			width: 100%;
		}
		.about__info h2{
			font-size: 2rem;
		}

		.schedule_table table{
			table-layout: fixed;
		}
		.schedule_table td{
			width: auto;
		}
		.schedule_table thead th,
		.schedule_table th.time{
			white-space: nowrap;
			width: 34%;
			padding-right: 0;
		}
		.schedule_table td.day{
			font-size: .9em;
		}
		.caution-txt,
		.closed-txt{
			font-size: .9em;
		}
		.about__map{
			margin-top: 3rem;
		}
		.about__map iframe{
			width: 100%;
			height: auto;
			aspect-ratio: 3/2;
			border-radius: 1rem;
		}
		.about__address{
			display: block;
			text-align: center;
		}
		.about__address a{
			width: 75%;
			padding: 1rem 1rem;
			margin: 1.5rem auto 0;
		}
	}


/*---------------------------------------------------------
ヘッダー用アコーディオン
---------------------------------------------------------*/
.toggle {
  display: none;
}

 .header-nav .option {
  position: relative;
  }
  .header-nav .title,
  .header-nav .content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
  }
  .header-nav .title {
  display: block;
  }
  .header-nav .title::after,
  .header-nav .title::before {
	content: "";
	position: absolute;
	right: 2em;
	top: 1em;
	width: 2px;
	height: 1.2em;
	background-color: var(--color-blue);
	transition: all 0.3s;
  }
  .header-nav .title::after {
  transform: rotate(90deg);
  }
  .header-nav .content {
  max-height: 0;
  overflow: hidden;
  }
  .header-nav .toggle:checked + .title + .content {
  max-height: 500px;
  transition: all 1.5s;
  }
  .header-nav .toggle:checked + .title::before {
  transform: rotate(90deg) !important;
  }




@media print {
  body {
	-webkit-print-color-adjust: exact;
	width: 1250px;
	zoom: 0.8;
  }
}