@charset "UTF-8";
/*
	Filename: common
	Version: 1.0.1
*/
/*-----------------------------------------------------
	color
------------------------------------------------------*/
:root {
  --text-color: #693111;
  --main-color: #DC6033;
	--sub-color: #03904A;
}
/*-----------------------------------------------------
	Typography
------------------------------------------------------*/
em {
	font-weight: bold;
	font-style: normal;
}
address {
	font-style: normal;
}
/*-----------------------------------------------------
	Elements
------------------------------------------------------*/
body {
	word-wrap: break-word;
	color: var(--text-color);
}
ul li {
	list-style-type: none;
}
ol li {
	list-style-type: decimal;
}
img {
	vertical-align: bottom;
}
iframe {
	width: 100%;
}

/*-----------------------------------------------------
	Link
------------------------------------------------------*/
a {
	text-decoration: none;
	color: var(--text-color);
	transition: all .25s;
}
a > img {
	transition: all .25s;
}
a:hover > img, a:hover{
	opacity: 0.7;
}
a[href^="tel:"] {
  pointer-events: none;
}
.no_link {
  pointer-events: none;
}
/*-----------------------------------------------------
	haeder
------------------------------------------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11;
  transition: .5s;
	width: 100%;
	height: 94px;
	background: #FFFFF8;
	border-top: 5px solid var(--main-color);
}
.header_logo {
  position: absolute;
  top: 10px;
  left: 20px;
	z-index: 11;
}
.header_logo img {
  width: 340px;
  height: auto;
}
.header_nav {
  position: absolute;
  top: 33px;
  right: 40px;
  z-index: 10;
  width: 100%;
}
.header_nav ul.flex {
  align-items: center;
	justify-content: flex-end;
	gap: 40px;
}
.header_nav ul.flex li {
  text-align: center;
}
.header_nav ul.flex li.ec a {
  position: relative;
	padding-right: 30px;
}
.header_nav ul.flex li.ec a::after {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
  width: 23px;
  height: 23px;
  background: url("../img/common/cart.svg") no-repeat center center;
  background-size: cover;
}
.header_nav ul.flex li a {
  font-size: 18px;
  font-weight: 700;
}
.nav_hide {
	display: block;
}
@media screen and (max-width: 1550px) {
	.header_logo {
		position: absolute;
		top: 10px;
		left: 20px;
		z-index: 11;
	}
	.header_logo img {
		width: 280px;
	}
	.header_nav ul.flex li a {
		font-size: 16px;
	}
}
@media screen and (max-width: 1150px) {
	.header_logo {
		top: 13px;
		left: 20px;
	}
	.header_logo img {
		width: 200px;
	}
	.header_nav {
		position: absolute;
		top: 33px;
		right: 20px;
		z-index: 10;
		width: 100%;
	}
	.header_nav ul.flex {
		gap: 20px;
	}
	.header_nav ul.flex li a {
		font-size: 14px;
	}
}
@media screen and (min-width: 901px) {
	.fat-nav, .fat-nav ul, .fat-nav__wrapper .header_logo {
		display: none;
	}
}
@media screen and (max-width: 900px) {
	.header_nav {
		top: 18px;
		right: 70px;
		width: 60%;
	}
	.header_nav ul.flex li a {
		font-size: 18px;
	}
	.nav_hide {
		display: none;
	}
	header {
		height: 61px;
	}
	.header_logo {
		top: 4px;
		left: 10px;
	}
	.header_logo img {
		width: 160px;
		height: auto;
	}
	.web_icon {
		display: block;
		position: fixed;
		top: 10px;
		right: 73px;
		z-index: 10;
	}
	.web_icon img {
		width: 100%;
		height: auto;
	}
	/* SPメニュー */
  .hamburger {
    width: 56px;
    height: 56px;
    display: block;
    position: fixed;
    top: 5px;
    right: 0;
    z-index: 10002;
    padding: 0;
    box-sizing: border-box;
    touch-action: manipulation;
  }
  .hamburger__icon {
    position: relative;
    margin-top: 25px;
  }
  .hamburger__icon, .hamburger__icon::before, .hamburger__icon::after {
    width: 30px;
    height: 2px;
		position: absolute;
    top: 0;
		right: 12px;
    display: block;
    background-color: var(--text-color);
    transition-property: background-color, transform;
    transition-duration: 0.4s;
  }
  .hamburger__icon::before, .hamburger__icon::after {
    content: "";
    right: 0;
  }
  .hamburger__icon::before {
		width: 30px;
    top: -10px;
  }
  .hamburger__icon::after {
		width: 30px;
    top: 10px;
  }
  .hamburger.active {
    right: 0;
  }
  .hamburger.active .hamburger__icon:before, .hamburger.active .hamburger__icon:after {
		width: 30px;
    height: 2px;
  }
	.hamburger.active .hamburger__icon {
		background-color: transparent;
  }
  .hamburger.active .hamburger__icon:before {
    transform: translateY(10px) rotate(45deg);
  }
  .hamburger.active .hamburger__icon:after {
    transform: translateY(-10px) rotate(-45deg);
  }
  .fat-nav {
    top: 0;
    left: 0;
    z-index: 9999;
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .fat-nav__wrapper {
    position: relative;
    top: 0;
    left: 0;
    display: table;
    table-layout: fixed;
    width: 100%;
    height: 100%;
    padding: 104px 24px 24px;
    background: #fff;
    background-size: cover;
  }
  .fat-nav .header_logo {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
		z-index: 10;
    width: 100%;
		height: 61px !important;
		background: #fffff8;
		border-top: 5px solid var(--main-color);
  }
  .fat-nav .header_logo a {
    display: block;
    padding: 4px 10px 11px;
  }
  .fat-nav .header_logo a:hover {
    opacity: 1;
  }
	.fat-nav ul {
		justify-content: center;
	}
  .fat-nav li {
    width: 100%;
		margin-bottom: 24px;
		padding-bottom: 24px;
		border-bottom: 2px dashed var(--main-color);
  }
	.fat-nav li a {
    font-size: 18px;
		font-weight: 700;
    line-height: 1.7;
    color: var(--text-color);
  }
}


/*-----------------------------------------------------
	midasi
------------------------------------------------------*/
.midasi_01 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
	text-align: center;
}
.midasi_01 span {
  display: block;
	margin-bottom: 10px;
  font-size: 18px;
	color: var(--main-color);
}
@media screen and (max-width: 750px) {
	.midasi_01 {
		font-size: 28px;
	}
	.midasi_01 span {
		font-size: 14px;
	}
}
/*-----------------------------------------------------
	ボタン
------------------------------------------------------*/
.link_more {
  display: inline-block;
	justify-content: center;
	align-items: center;
	gap: 5px;
  position: relative;
  padding: 10px 30px;
	background: var(--main-color);
	border: 1px solid var(--main-color);
	box-shadow: 2px 3px 0px 0px #BB471D;
	border-radius: 23px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
	color: #fff;
  transition: all 0.2s;
}
.link_more:hover {
	background: #BB471D;
	box-shadow: 2px 3px 0px 0px var(--main-color);
	opacity: 1;
}
@media screen and (max-width: 750px) {
	.link_more {
		width: 240px;
		padding: 10.5px 22px;
		font-size: 14px;
	}
}

/*-----------------------------------------------------
	Layout
------------------------------------------------------*/
.flex {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
.wrap {
  width: 1160px;
	max-width: 100%;
  margin: 0 auto;
}
.center {
  text-align: center;
}
.right {
  text-align: right;
}
.left {
  text-align: left;
}
@media screen and (max-width: 1240px) {
  .wrap {
    width: calc(100% - 80px);
  }
}
@media screen and (max-width: 750px) {
  .wrap {
    width: calc(100% - 32px);
  }
	.order1 {
		order: 1;
	}
	.order2 {
		order: 2;
	}
	.order3 {
		order: 3;
	}
	.order4 {
		order: 4;
	}
}

/*-----------------------------------------------------
	#page_mv
------------------------------------------------------*/
#page_mv {
  position: relative;
  z-index: 0;
	width: calc(100% - 96px);
	height: 495px;
	margin-bottom: 92px;
	margin-left: 96px;
	padding-top: 114px;
}
#page_mv h2 {
	height: 100%;
  position: absolute;
  top: calc(50% + 57px);
  left: -57px;
  transform: translateY(-50%);
	font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
  font-size: 15px;
	font-weight: 500;
  letter-spacing: 0.2em;
	text-align: center;
  writing-mode: vertical-rl;
  text-orientation: upright;
}
#page_mv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
	border-radius: 50px 0 0 50px;
}
#page_mv .page_title {
  position: absolute;
	top: calc(50% + 57px);
	left: 80px;
	transform: translateY(-50%);
  z-index: 2;
  width: calc(100% - 80px);
}
#page_mv .page_title .midasi {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
}
#page_mv .page_title .midasi span {
  display: block;
	margin-top: 20px;
  font-size: 16px;
	font-weight: 500;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1000px) {
	#page_mv {
		padding-top: 56px;
	}
	#page_mv h2 {
		top: calc(50% + 28px);
	}
	#page_mv .page_title {
		top: calc(50% + 28px);
		left: 50px;
		width: calc(100% - 50px);
	}
}
@media screen and (max-width: 750px) {
	#page_mv {
		width: calc(100% - 50px);
		height: 97.333vw;
		margin-bottom: 56px;
		margin-left: 50px;
	}
	#page_mv h2 {
		top: auto;
		bottom: 0;
		left: -32px;
		transform: none;
		height: auto;
		font-size: 12px;
	}
	#page_mv .page_title {
		left: 16px;
		width: calc(100% - 32px);
	}
	#page_mv .page_title .midasi {
		font-size: 24px;
		line-height: 1.4;
	}
	#page_mv .page_title .midasi span {
		margin-top: 10px;
		font-size: 14px;
	}
}
/*-----------------------------------------------------
	.main
------------------------------------------------------*/
.main {
  width: 960px;
  margin: 0 auto;
	padding-bottom: 100px;
}
@media screen and (max-width: 1040px) {
  .main {
    width: calc(100% - 80px);
  }
}
@media screen and (max-width: 750px) {
  .main {
    width: calc(100% - 40px);
		padding-bottom: 80px;
  }
  .wp-block-spacer {
    max-height: 30px !important;
  }
}

.main a {
  text-decoration: underline;
}
.main hr {
  display: block;
  height: 1px;
  border: 0;   
  border-top: 1px solid #E7EEF0;
  margin: 3em 0;
  padding: 0;
}
.main mark {
  font-style: normal;
  font-weight: 400;
}
.main h2 {
  position: relative;
  margin-bottom: 64px;
	padding-bottom: 25px;
	border-bottom: 1px solid #E7EEF0;
	font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
.main h2::after {
  content: "";
  display: block;
  position: absolute;
	bottom: -1px;
	left: 0;
	z-index: 1;
  width: 80px;
  height: 1px;
  background: #175BA5;
}
.main h3 {
  position: relative;
  margin-bottom: 40px;
	padding-left: 20px;
	font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.main h3::before {
  content: "";
  display: block;
  position: absolute;
	top: 0;
	left: 0;
  width: 4px;
  height: 100%;
  background: #175BA5;
	border-radius: 10px;
}
.main h4 {
  margin-bottom: 40px;
	font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.04em;
	color: #175BA5;
}
.main h5 {
  margin-bottom: 40px;
	font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
.main p {
  margin-bottom: 64px;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.02em;
}
.main ul, .main ol {
  margin-bottom: 60px;
}
.main ul li {
  margin-bottom: 5px;
  margin-left: 20px;
  list-style-type: disc;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.02em;
}
.main ol li {
  margin-bottom: 5px;
  margin-left: 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.02em;
}
.main figure {
  margin-bottom: 40px;
}
.main .wp-element-caption {
  font-size: 13px;
}
.main figure img {
  max-width: 100%;
  height: auto;
	border-radius: 30px;
}
.table_wrap {
  width: 100%;
  margin-bottom: 30px;
  padding-top: 10px;
}
.main .def table {
  width: 100%;
}
.main .w25 table tr:first-of-type td:first-child {
  width: 25%;
}
.main .def table tr:first-of-type td {
  position: relative;
  padding: 20px;
  background: #E7EEF0;
	border: 1px solid #E7EEF0;
	border-right: 1px solid #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  line-height: 1.6;
  letter-spacing: 0.1em;
  vertical-align: middle;
}
.main .def table tr:first-of-type td:last-child {
	border-right: 1px solid #E7EEF0;
}
.main .def table tr:not(:first-of-type) td {
  padding: 20px;
	background: #fff;
  border: 1px solid #E7EEF0;
	font-family: "游ゴシック", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  line-height: 1.6;
  letter-spacing: 0.08em;
  vertical-align: middle;
}
.main .price table {
  width: 100%;
}
.main .price table tr:first-of-type td, .main .price table tr:first-of-type td:first-child {
  position: relative;
  padding: 20px;
  background: #E7EEF0;
	border: 1px solid #E7EEF0;
	border-right: 1px solid #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  line-height: 1.6;
  letter-spacing: 0.1em;
  vertical-align: middle;
}
.main .price table tr td:first-child {
  width: 70%;
  background: #fff;
	text-align: left;
}
.main .price table tr td {
  padding: 20px;
	background: #fff;
  border: 1px solid #E7EEF0;
	font-family: "游ゴシック", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  line-height: 1.6;
  letter-spacing: 0.08em;
  vertical-align: middle;
}
@media screen and (max-width: 750px) {
	.main h2 {
		margin-bottom: 40px;
		padding-bottom: 20px;
		font-size: 26px;
		line-height: 1.4;
		letter-spacing: 0.02em;
	}
	.main h2::after {
		bottom: -1px;
		width: 40px;
	}
	.main h3 {
		margin-bottom: 32px;
		padding-left: 11px;
		font-size: 20px;
		line-height: 1.4;
		letter-spacing: 0.04em;
	}
	.main h3::before {
		width: 3px;
	}
	.main h4 {
		margin-bottom: 32px;
		font-size: 18px;
		line-height: 1.4;
		color: #175BA5;
	}
	.main h5 {
		margin-bottom: 32px;
		font-size: 16px;
		line-height: 1.4;
	}
	.main p {
		font-size: 15px;
		font-weight: 500;
		line-height: 1.8;
	}
	.main ul li {
		margin-bottom: 5px;
		font-size: 15px;
		line-height: 1.5;
	}
	.main ol li {
		margin-bottom: 5px;
		font-size: 15px;
		line-height: 1.5;
	}
  .main figure {
    margin-bottom: 32px;
  }
  .main .wp-element-caption {
    font-size: 12px;
  }
  .table_wrap {
    margin-bottom: 20px;
    padding-top: 10px;
    overflow-x: auto;
    white-space: nowrap;
  }
	.main .table_wrap .def table {
    width: auto;
  }
	.main .def table {
    margin-bottom: 30px;
  }
  .main .def table tr td:first-child {
    padding: 15px 10px;
    font-size: 14px;
  }
  .main .def table tr td {
    padding: 15px 10px;
    font-size: 13px;
  }
  .main table.def_table tr td {
    padding: 15px 10px;
  }
  .main .price table {
    margin-bottom: 30px;
  }
  .main .price table tr td:first-child {
    width: 60%;
    padding: 15px 10px;
    font-size: 14px;
  }
  .main .price table tr td {
    padding: 15px 10px;
    font-size: 13px;
  }
}

/*-----------------------------------------------------
	#trouble
------------------------------------------------------*/
#trouble {
  padding: 102px 0;
	text-align: center;
}
body.page-template-trouble #trouble {
	padding: 0 0 102px;
}
#trouble h2 {
  margin-bottom: 72px;
	font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
  font-size: 32px;
  font-weight: 600;
	line-height: 1.7;
  letter-spacing: 0.04em;
}
#trouble .wrap {
	gap: 64px 48px;
  width: 1085px;
}
.trouble_child {
	width: calc((100% - 96px) / 3);
}
.trouble_child img {
	width: 100%;
	margin-bottom: 24px;
	border-radius: 20px;
}
.trouble_child p {
	font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
  font-size: 17px;
  font-weight: 500;
	line-height: 1.3;
}
@media screen and (max-width: 1165px) {
	#trouble .wrap {
		gap: 48px 24px;
		width: calc(100% - 80px);
	}
	.trouble_child {
		width: calc((100% - 48px) / 3);
	}
}
@media screen and (max-width: 900px) {
	.trouble_child {
		width: calc((100% - 24px) / 2);
	}
}
@media screen and (max-width: 750px) {
	#trouble {
		padding: 72px 0 98px;
	}
	body.page-template-trouble #trouble {
		padding: 0 0 98px;
	}
	#trouble h2 {
		margin-bottom: 40px;
		font-size: 24px;
	}
	#trouble .wrap {
		gap: 32px 18px;
		width: calc(100% - 40px);
	}
	.trouble_child {
		width: calc((100% - 18px) / 2);
	}
	.trouble_child img {
		margin-bottom: 16px;
	}
	.trouble_child p {
		font-size: 14px;
		letter-spacing: -0.09em;
	}
}
/*-----------------------------------------------------
	#treatment
------------------------------------------------------*/
#treatment {
	position: relative;
	z-index: 0;
  padding: 35px 0 98px;
	overflow: hidden;
}
body.page-template-medical #treatment {
	padding: 0 0 98px;
}
#treatment .bg_text {
	top: -35px;
}
#treatment::after {
  content: "";
  display: block;
  position: absolute;
	top: 288px;
	left: 0;
	z-index: -1;
  width: 100%;
  height: 100%;
  background: #F7F7F8;
}
#treatment h2 {
	margin-bottom: 100px;
}
body.page-template-medical #treatment .bg_text, body.page-template-medical #treatment::after, body.page-template-medical #treatment h2 {
	display: none;
}
#treatment .wrap {
	gap: 56px 24px;
}
.treatment_child {
	width: calc((100% - 96px) / 5);
	text-align: center;
}
.treatment_child img {
	max-width: 100%;
	margin-bottom: 20px;
}
.treatment_child p {
	font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
  font-size: 16px;
  font-weight: 500;
	line-height: 1.5;
	color: #0E3274;
}
@media screen and (max-width: 1240px) {
	#treatment .wrap {
		justify-content: center;
	}
	.treatment_child {
		width: calc((100% - 72px) / 4);
	}
}
@media screen and (max-width: 1000px) {
	#treatment .bg_text {
		top: 35px;
		left: 50%;
		transform: translateX(-50%);
	}
	.treatment_child {
		width: calc((100% - 48px) / 3);
	}
}
@media screen and (max-width: 750px) {
	#treatment {
		padding: 65px 0 56px;
	}
	body.page-template-medical #treatment {
		padding: 0 0 56px;
	}
	#treatment .bg_text {
		top: -35px;
	}
	#treatment::after {
		top: 288px;
	}
	#treatment h2 {
		margin-bottom: 65px;
	}
	#treatment .wrap {
		gap: 24px 16px;
	}
	.treatment_child {
		width: calc((100% - 32px) / 3);
	}
	.treatment_child img {
		margin-bottom: 12px;
	}
	.treatment_child p {
		font-size: 14px;
		line-height: 1.4;
	}
}

/*-----------------------------------------------------
	#news
------------------------------------------------------*/
#news {
	margin-top: 40px;
  padding-top: 80px;
	background: #fff;
}
@media screen and (max-width: 1150px) {
	#news {
		margin-top: 170px;
	}
}
#news .wrap {
	justify-content: space-between;
}
#news h2 {
	margin-bottom: 83px;
}
#news h2.midasi_01::after {
	display: none;
}
.news_l {
  position: relative;
  width: 20.6%;
}
.news_r {
  width: 75.8%;
}
.news_list {
	align-items: center;
  position: relative;
  padding: 23px 0;
  border-bottom: 1px solid #E7EEF0;
}
.news_list:last-of-type {
  margin-bottom: 0;
}
.date_category {
  justify-content: flex-start;
  align-items: center;
	width: 236px;
}
.date {
  margin-right: 16px;
	font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
}
.category span {
  display: inline-block;
  padding: 3px 5px;
	border: 1px solid #3B8BD0;
	border-radius: 20px;
	font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
  font-size: 12px;
  font-weight: 500;
	line-height: 1;
  letter-spacing: 0.1em;
	text-align: center;
	color: #3B8BD0;
}
.news_title {
	width: calc(100% - 236px);
}
.news_title p {
	font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1100px) {
  .news_l {
		position: relative;
    width: 100%;
		margin-bottom: 32px;
  }
	#news h2 {
		margin-bottom: 0;
	}
	.news_l .link_more {
		position: absolute;
		top: 30px;
		right: 0;
	}
  .news_r {
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
	#news {
		margin-top: 65px;
		padding-top: 40px;
		padding-bottom: 100px;
	}
  .news_l {
    width: 100%;
    margin-bottom: 16px;
  }
	.news_l .link_more {
    width: 125px;
  }
	.news_list {
		padding: 16.5px 0;
	}
	.date_category {
		width: 100%;
		margin-bottom: 16px;
	}
	.date {
		margin-right: 8px;
		font-size: 14px;
	}
	.category span {
		font-size: 11px;
	}
	.news_title {
		width: 100%;
	}
	.news_list p {
		font-size: 14px;
	}
}
/*-----------------------------------------------------
	ページネーション
------------------------------------------------------*/
.pagination {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 120px;
}
a.page-numbers, .pagination .current {
  display: block;
  width: 56px;
  height: 56px;
  margin: 0 10px;
	padding: 18px 5px;
  background: #fff;
	border: 1px solid #363433;
  border-radius: 50%;
  font-family: "Cormorant Infant", serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
	text-decoration: none;
  text-align: center;
  color: #363433;
}
span.page-numbers.dots {
  margin-right: 10px;
  margin-left: 10px;
  font-size: 14px;
}
.pagination .current, a.page-numbers:hover {
	background: #363433;
	border: 1px solid #363433;
	color: #fff;
  opacity: 1;
}
a.page-numbers.next, a.page-numbers.prev {
  position: relative;
  width: 27.78px;
  height: 30px;
  margin: 0 10px;
  background: #B2A07E;
  border: 1px solid #B2A07E;
}
a.page-numbers.next {
  margin-right: 0;
}
a.page-numbers.prev {
  margin-left: 0;
}
a.page-numbers.next img, 
a.page-numbers.prev img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
a.page-numbers.prev img {
  transform: translate(-50%, -50%) scaleX(-1);
}
a.page-numbers.next:hover, a.page-numbers.prev:hover {
	background: #B2A07E;
  opacity: .6;
}
@media screen and (max-width: 750px) {
  .pagination {
    margin-bottom: 80px;
  }
}

/*-----------------------------------------------------
	cv
------------------------------------------------------*/
.cv {
	width: 100%;
	height: 300px;
  background: linear-gradient(to top left, #1E4E90 50%, #265799 50%);
}
.cv .wrap {
	width: 940px;
}
.cv_top {
	align-items: center;
	gap: 21px;
}
.cv_photo {
	position: relative;
	top: -40px;
	width: 226px;
	padding-left: 41px;
}
.cv_title {
	position: relative;
	padding-bottom: 40px;
	text-align: center;
}
.midasi_line {
  display: inline-block;
  position: relative;
  margin: 0 auto;
	font-family: "Zen Old Mincho", serif;
	font-size: 32px;
  font-weight:700;
	line-height: 1.5;
  letter-spacing: 0;
  color: #fff;
  text-align: center;
}
.midasi_line::before,
.midasi_line::after {
  content:"";
  position:absolute;
  top: calc(50% + 5px);
  width: 20px;
	height: 26px;
	background: url("../img/common/midasi_line.svg") no-repeat center center;
	background-size: cover;
  transform-origin:center;
}
.midasi_line::before {
  left: -34px;
  transform: translateY(-50%) rotate(0deg);
}
.midasi_line::after {
  right: -34px;
  transform: translateY(-50%) rotate(0deg) scaleX(-1);
}
.cv_bottom {
	justify-content: space-between;
	margin-top: -30px;
}
.cv_tel {
	width: 47.8%;
	background: #fff;
	border: 3px solid #1EADDD;
	border-radius: 12px;
	box-shadow: 0px 8px 0px 0px #3095B7;
	text-align: center;
}
.cv_tel a {
	display: block;
	padding: 7.5px;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.7;
	letter-spacing: 0.06em;
  color: #1EADDD;
}
.cv_tel span {
	position: relative;
	padding-left: 32px;
	font-family: "Zen Old Mincho", serif;
	font-size: 32px;
  font-weight: 700;
	line-height: 1;
  letter-spacing: 0.11em;
}
.cv_tel span::after {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
  width: 27px;
  height: 27px;
  background: url("../img/common/cv_tel.svg") no-repeat center center;
  background-size: cover;
}
.cv_web {
	width: 47.8%;
	background: #1EADDD;
	border: 3px solid #1EADDD;
	border-radius: 12px;
	box-shadow: 0px 8px 0px 0px #3095B7;
	text-align: center;
}
.cv_web a {
	display: block;
	padding: 24px;
}
.cv_web span {
	position: relative;
	padding-left: 34px;
	font-family: "Zen Old Mincho", serif;
	font-size: 24px;
  font-weight: 700;
	line-height: 1;
  letter-spacing: 0.11em;
	color: #fff;
}
.cv_web span::after {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: url("../img/common/cv_web.svg") no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 1020px) {
	.cv .wrap {
		width: 100%;
	}
	.cv_bottom {
		padding: 0 20px;
	}
}
@media screen and (max-width: 750px) {
	.cv {
		display: none;
	}
}
/*-----------------------------------------------------
	hour
------------------------------------------------------*/
.top_hour, .access_hour {
	box-shadow: 0px 2px 48px 0px rgba(27,53,95,.08);
	font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
}
.hour {
  width: 100%;
  margin-bottom: 12px;
  text-align: center;
}
.hour th {
  padding-bottom: 15px;
  border-bottom: 1px solid #E1E3E5;
  font-size: 16px;
  font-weight: 500;
	letter-spacing: 0.08em;
	text-align: center;
}
.hour tbody tr th:first-of-type {
  width: 28.5%;
  text-align: left;
}
.hour tbody tr td:first-of-type {
  font-size: 15px;
  text-align: left;
}
.hour tbody tr td:first-of-type span {
	display: block;
	margin-top: 5px;
  font-size: 11px;
}
.hour td {
  padding: 16px 0 14px;
  border-bottom: 1px solid #E1E3E5;
  font-size: 16px;
	font-weight: 500;
  vertical-align: middle;
	text-align: center;
}
.hour td em, .top_hour p span, .access_hour p span {
  color: #6DAFD6;
}
.top_hour p, .access_hour p {
	font-size: 12px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.08em;
}
@media screen and (max-width: 1550px) {
	.hour {
		margin-bottom: 0.774vw;
	}
	.hour th {
		padding-bottom: 0.968vw;
		font-size: 1.032vw;
	}
	.hour tbody tr th:first-of-type {
		width: 28.5%;
	}
	.hour tbody tr td:first-of-type {
		font-size: 0.968vw;
	}
	.hour tbody tr td:first-of-type span {
		margin-top: 0.323vw;
		font-size: 0.71vw;
	}
	.hour td {
		padding: 1.032vw 0 0.903vw;
		font-size: 1.032vw;
	}
	.top_hour p, .access_hour p {
		font-size: 0.774vw;
	}
}
@media screen and (max-width: 1150px) {
	.hour {
		width: 100%;
		margin-bottom: 12px;
		text-align: center;
	}
	.hour th {
		padding-bottom: 15px;
		border-bottom: 1px solid #E1E3E5;
		font-size: 16px;
		font-weight: 500;
		letter-spacing: 0.08em;
		text-align: center;
	}
	.hour tbody tr th:first-of-type {
		width: 28.5%;
		text-align: left;
	}
	.hour tbody tr td:first-of-type {
		font-size: 15px;
		text-align: left;
	}
	.hour tbody tr td:first-of-type span {
		display: block;
		margin-top: 5px;
		font-size: 11px;
	}
	.hour td {
		padding: 16px 0 14px;
		border-bottom: 1px solid #E1E3E5;
		font-size: 16px;
		font-weight: 500;
		vertical-align: middle;
		text-align: center;
	}
	.top_hour p, .access_hour p {
		font-size: 12px;
		font-weight: 500;
		line-height: 1.5;
		letter-spacing: 0.08em;
	}
}
@media screen and (max-width: 750px) {
  .access_hour {
    width: 100%;
    padding: 30px;
  }
  .hour {
    width: 100%;
    margin-bottom: 15px;
  }
  .hour th {
    padding-bottom: 20px;
    font-size: 11px;
  }
  .hour tbody tr th:first-of-type {
    width: 15%;
  }
  .hour tbody tr td:first-of-type {
    font-size: 13px;
  }
  .hour td {
    padding: 15px 0;
  }
}
/*-----------------------------------------------------
	footer
------------------------------------------------------*/
.footer_nav {
	padding: 30px 40px;
}
.footer_nav ul.flex {
  align-items: center;
	justify-content: center;
	gap: 40px;
}
.footer_nav ul.flex li {
  text-align: center;
}
.footer_nav ul.flex li.ec a {
  position: relative;
	padding-right: 30px;
}
.footer_nav ul.flex li.ec a::after {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
  width: 23px;
  height: 23px;
  background: url("../img/common/cart.svg") no-repeat center center;
  background-size: cover;
}
.footer_nav ul.flex li a {
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 1350px) {
	.footer_nav {
		padding: 30px 40px;
	}
	.footer_nav ul.flex {
		gap: 20px;
	}
	.footer_nav ul.flex li a {
		font-size: 14px;
	}
}
@media screen and (max-width: 750px) {
	.footer_nav {
		padding: 30px 20px;
	}
}
footer {
	padding: 60px 20px;
	background: var(--sub-color);
	text-align: center;
	color: #fff;
}
footer a {
	color: #fff;
}
footer h2 {
	margin-bottom: 30px;
	font-size: 20px;
}
footer address {
	margin-bottom: 30px;
	font-size: 16px;
	line-height: 1.7;
}
footer small {
	font-size: 12px;
}
@media screen and (max-width: 750px) {
	footer h2 {
		font-size: 18px;
	}
	footer address {
		font-size: 14px;
	}
}
/*-----------------------------------------------------
	others
------------------------------------------------------*/
.ani {
  visibility: hidden;
}
.no-js .ani {
  visibility: visible;
}
.tb {
	display: none !important;
}
.sp {
	display: none !important;
}

/*---------------------------------------------------------------------------------------------------------------------------------------------------------------
	~750px SP
----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 750px) {
	/*-----------------------------------------------------
		Elements
	------------------------------------------------------*/	
  img {
    max-width: 100%;
    height: auto;
  }
	/*-----------------------------------------------------
		Elements
	------------------------------------------------------*/
	body {
		word-wrap: break-word;
	}
	a[href^="tel:"] {
		pointer-events: auto;
	}
	/*-----------------------------------------------------
		others
	------------------------------------------------------*/
	.tb {
		display: block !important;
	}
	.pc {
		display: none !important;
	}
}

@media screen and (max-width: 414px) {
  .tb {
		display: none !important;
	}
  .sp {
		display: block !important;
	}
}
