@charset "UTF-8";
/*
	Filename: common
	Version: 1.0.1
*/
/*-----------------------------------------------------
	Typography
------------------------------------------------------*/
em {
	font-weight: 700;
}
address {
	font-style: normal;
}
/*-----------------------------------------------------
	Elements
------------------------------------------------------*/
body {
	word-wrap: break-word;
}
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: #575C5D;
  transition: all .25s;
}
a > img {
  transition: all .25s;
}
a:hover > img, a:hover{
	opacity: 0.65;
}
a[href^="tel:"] {
  pointer-events: none;
}
.no_link {
  pointer-events: none;
}
/*-----------------------------------------------------
	haeder
------------------------------------------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 80px;
}
header.bg_black {
  background: linear-gradient(270deg, #F5F5F5 0%, #FFFFFF 14.42%, #E0EBF0 30.77%, #FFFFFF 44.23%, #F5F5F5 60.58%, #FFFFFF 72.12%, #E0EBF0 87.5%, #FFFFFF 100%);
}
.header_inner {
  position: relative;
}
.header_logo a {
  position: absolute;
  top: 8px;
  left: 45px;
  z-index: 2;
  display: block;
  width: 73px;
  height: 63px;
  background-image: url("../img/common/logo.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
}
.header_nav {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 100%;
  padding-right: 45px;
}
.header_nav ul.flex {
  align-items: center;
  justify-content: flex-end;
}
.header_nav ul.flex li a {
  position: relative;
  display: block;
  padding: 34px 15px;
  
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}
.header_nav ul.flex li.reserv {
  margin-right: 10px;
  margin-left: 25px;
}
.header_nav ul.flex li.reserv a, .header_nav ul.flex li.line a {
  position: relative;
  width: 140px;
  padding: 9px 30px 7px;
  border: 1px solid #fff;
  border-radius: 30px;
  font-size: 12px;
  text-align: left;
}
.header_nav ul.flex li.reserv a::after, .header_nav ul.flex li.line a::after {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
  width: 29px;
  height: 5px;
  background: url("../img/common/w_arrow.svg") no-repeat center center;
  background-size: cover;
}
.header_nav ul.flex li.reserv a:hover, .header_nav ul.flex li.line a:hover {
  opacity: 1;
  background: #fff;
  color: #6F8DAA;
}
.header_nav ul.flex li.reserv a:hover::after, .header_nav ul.flex li.line a:hover::after {
  background: url("../img/common/b_arrow.svg") no-repeat center center;
  background-size: cover;
}
.header_nav ul.flex li.has-child ul {
  display: none;
  position: absolute;
  top: 80px;
  left: 0;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 60vh;
  min-height: 500px;
  overflow-y: auto;
  padding: 40px;
  background: linear-gradient(270deg, #F5F5F5 0%, #FFFFFF 14.42%, #E0EBF0 30.77%, #FFFFFF 44.23%, #F5F5F5 60.58%, #FFFFFF 72.12%, #E0EBF0 87.5%, #FFFFFF 100%);
  transition: opacity 0.3s ease, visibility 0.3s ease;
  text-align: left;
}
.header_nav ul.flex li.has-child:hover > ul {
  display: block;
  opacity: 1;
  visibility: visible;
}
.header_nav ul.flex li.has-child ul li {
  position: relative;
  padding: 0 100px;
}
.header_nav ul.flex li.has-child ul li h3 {
  margin-bottom: 0;
  padding-bottom: 30px;
  border-bottom: 1px solid #B2BEBF;
  font-size: 18px;
  font-weight: 500;
}
.header_nav ul.flex li.has-child ul li a {
  color: #575C5D;
}
.header_nav ul.flex li.has-child ul li .mega {
  justify-content: flex-start;
  gap: 0 40px;
  position: relative;
  width: 100%;
}
.header_nav ul.flex li.has-child ul li .mega a {
  display: block;
  position: relative;
  width: calc((100% - 120px) / 4);
  padding-right: 30px;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.1em;
}
.header_nav ul.flex li.has-child ul li .mega a::after {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
  width: 29px;
  height: 5px;
  background: url("../img/common/black_arrow.svg") no-repeat center center;
  background-size: cover;
}
#sp-fixed-menu {
  display: none;
}
@media screen and (max-width: 1240px) {
  .header_nav ul.flex li a {
    padding: 34px 10px;
  }
  .header_nav ul.flex li.reserv {
    margin-left: 20px;
  }
  .header_nav ul.flex li.reserv a, .header_nav ul.flex li.line a {
    width: 110px;
    padding: 9px 15px 7px;
  }
  .header_nav ul.flex li.has-child ul li {
    padding: 0;
  }
}
@media screen and (min-width: 1061px) {
	.fat-nav, .fat-nav ul, .fat-nav__wrapper .header_logo, .nav_cv {
		display: none;
	}
}
@media screen and (max-width: 1060px) {
  header {
    height: 68px;
  }
  .header_nav {
    display: none;
  }
  .header_logo a {
    top: 6px;
    left: 20px;
    width: 64px;
    height: 55px;
  }
	/* SPメニュー */
  .hamburger {
    width: 40px ;
    height: 19px;
    display: block;
    position: fixed;
    top: 24.5px;
    right: 20px;
    z-index: 10002;
    padding: 0;
    box-sizing: border-box;
    touch-action: manipulation;
  }
  .hamburger__icon {
    position: relative;
    margin-top: 9px;
  }
  .hamburger__icon, .hamburger__icon::before, .hamburger__icon::after {
    width: 40px;
    height: 1px;
		position: absolute;
    top: 0;
		right: 0;
    display: block;
    background-color: #fff;
    transition-property: background-color, transform;
    transition-duration: 0.4s;
  }
  body.scrolled .hamburger__icon, body.scrolled .hamburger__icon::before, body.scrolled .hamburger__icon::after {
    background-color: #575C5D;
  }
  .hamburger__icon::before, .hamburger__icon::after {
    content: "";
    right: 0;
  }
  .hamburger__icon::before {
		width: 40px;
    top: -9px;
  }
  .hamburger__icon::after {
		width: 40px;
    top: 9px;
  }
	.hamburger.active .hamburger__icon {
    background-color: transparent;
  }
  .hamburger.active .hamburger__icon:before, .hamburger.active .hamburger__icon:after {
		width: 40px;
    height: 1px;
    background-color: #575C5D;
  }
  .hamburger.active .hamburger__icon:before {
    transform: translateY(9px) rotate(30deg);
  }
  .hamburger.active .hamburger__icon:after {
    transform: translateY(-9px) rotate(-30deg);
  }
  .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: absolute;
    top: 0;
    left: 0;
    display: table;
    table-layout: fixed;
    width: 100%;
    height: 100%;
    padding: 77px 100px 40px;
    background: linear-gradient(270deg, #F5F5F5 0%, #FFFFFF 14.42%, #E0EBF0 30.77%, #FFFFFF 44.23%, #F5F5F5 60.58%, #FFFFFF 72.12%, #E0EBF0 87.5%, #FFFFFF 100%);
  }
  .fat-nav .header_logo a {
    position: fixed;
    top: 6px;
    left: 20px;
    background-image: url("../img/common/b_logo.svg");
  }
  .fat-nav li a {
    display: block;
    position: relative;
    padding: 25px 30px 0 0;
    font-size: 16px;
    font-weight: 500;
    color: #575C5D;
    line-height: 1.8;
    letter-spacing: 0.1em;
  }
  .fat-nav li a::before {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% + 14px);
    right: 0;
    transform: translateY(-50%);
    width: 29px;
    height: 5px;
    background: url("../img/common/black_arrow.svg") no-repeat center center;
    background-size: cover;
  }
  .aco {
    cursor: pointer;
    position: relative;
    z-index: 1;
  }
  .aco a::before {
    display: none !important;
  }
  .aco::after {
    content: "＋" !important;
    display: block;
    position: absolute;
    top: calc(50% + 19px);
    right: 7px;
    z-index: 1;
    transform: translateY(-50%);
    padding: 0px 0 10px 7px;
    background: none !important;
    width: auto !important;
    height: auto !important;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #575C5D;
  }
  .aco.is-active::after {
    content: "ー" !important;
  }
  .fat-nav_menu_list {
    height: 0;
    overflow: hidden;
  }
  .aco.is-active + .fat-nav_menu_list {
    height: auto;
    margin-top: 25px;
  }
  .fat-nav_menu_list li {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 10px;
    margin-left: 16px;
  }
  .fat-nav_menu_list li a {
    display: block;
    margin-left: 16px;
    padding: 15px 0 10px;
    font-size: 14px;
  }
  .fat-nav_menu_list li a::before {
    display: none;
  }
  .fat-nav_menu_list li a:first-of-type {
    width: 100%;
    margin-right: 0;
    margin-left: 16px;
    border-bottom: none;
    font-size: 16px;
  }
  .fat-nav_menu_list li a:first-of-type::before {
    display: block;
    top: 50%;
  }
  .nav_cv {
    display: block;
    margin-top: 60px;
  }
  .nav_cv ul {
    justify-content: center;
    gap: 20px;
  }
  .nav_cv ul li a::before {
    display: none;
  }
  .nav_cv ul li a {
    display: block;
    width: 300px;
    padding: 13px 25px 10px 65px;
    border: 1px solid #575C5D;
    border-radius: 30px;
    font-size: 18px;
    text-align: left;
  }
  .nav_cv ul li a::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 59px;
    height: 9px;
    background: url("../img/common/black_arrow_long.svg") no-repeat center center;
    background-size: cover;
  }
}
@media screen and (max-width: 750px) {
  .fat-nav__wrapper {
    padding: 77px 40px 40px;
  }
  .nav_cv ul li {
    width: 100%;
    text-align: center;
  }
  .nav_cv ul li a {
    width: 280px;
    margin: 0 auto;
  }
  #sp-fixed-menu {
    display: none;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 99;
    width: 100%;
    padding: 10px;
    opacity: 0;
    transition: opacity 0.5s ease;
    background: #6F8DAA;
  }
  #sp-fixed-menu.show {
    display: block;
    opacity: 1;
  }
  #sp-fixed-menu ul {
    justify-content: space-between;
  }
  #sp-fixed-menu ul li a {
    display: block;
    padding: 23px 5px 23px 28px;
    border-radius: 100px;
    border: 1px solid #fff;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
  }
  #sp-fixed-menu ul li a span {
    position: relative;
  }
  #sp-fixed-menu ul li {
    width: 32%;
    text-align: center;
  }
  #sp-fixed-menu ul li a span::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: -19px;
    transform: translateY(-50%);
  }
  #sp-fixed-menu ul li:nth-of-type(1) a span::before {
    width: 13px;
    height: 14px;
    background: url("../img/common/float_tel_icon.svg") no-repeat center center;
    background-size: cover;
  }
  #sp-fixed-menu ul li:nth-of-type(2) a span::before {
    left: -24px;
    width: 17px;
    height: 16px;
    background: url("../img/common/float_web_icon.svg") no-repeat center center;
    background-size: cover;
  }
  #sp-fixed-menu ul li:nth-of-type(3) a span::before {
    left: -24px;
    width: 19px;
    height: 18px;
    background: url("../img/common/float_line_icon.svg") no-repeat center center;
    background-size: cover;
  }
}
/*-----------------------------------------------------
	haeder.fixed
------------------------------------------------------*/
header.fixed {
  background: linear-gradient(270deg, #F5F5F5 0%, #FFFFFF 14.42%, #E0EBF0 30.77%, #FFFFFF 44.23%, #F5F5F5 60.58%, #FFFFFF 72.12%, #E0EBF0 87.5%, #FFFFFF 100%);
  transition: .5s;
}
header.fixed .header_logo a,
header.bg_black .header_logo a 
{
  background-image: url("../img/common/b_logo.svg");
}
header.fixed .header_nav ul.flex li a,
header.bg_black .header_nav ul.flex li a {
  color: #575C5D;
}
header.fixed .header_nav ul.flex li.reserv a, header.fixed .header_nav ul.flex li.line a,
header.bg_black .header_nav ul.flex li.reserv a, header.bg_black .header_nav ul.flex li.line a
{
  border: 1px solid #575C5D;
}
header.fixed .header_nav ul.flex li.reserv a:hover, header.fixed .header_nav ul.flex li.line a:hover,
header.bg_black .header_nav ul.flex li.reserv a:hover, header.bg_black .header_nav ul.flex li.line a:hover
{
  background: #6F8DAA;
  border: 1px solid #6F8DAA;
  color: #fff;
}
header.fixed .header_nav ul.flex li.reserv a::after, header.fixed .header_nav ul.flex li.line a::after,
header.bg_black .header_nav ul.flex li.reserv a::after, header.bg_black .header_nav ul.flex li.line a::after
{
  background: url("../img/common/black_arrow.svg") no-repeat center center;
  background-size: cover;
}
header.fixed .header_nav ul.flex li.reserv a:hover::after, header.fixed .header_nav ul.flex li.line a:hover::after,
header.bg_black .header_nav ul.flex li.reserv a:hover::after, header.bg_black .header_nav ul.flex li.line a:hover::after
{
  background: url("../img/common/w_arrow.svg") no-repeat center center;
  background-size: cover;
}


/*-----------------------------------------------------
	midasi
------------------------------------------------------*/
.midasi_01 {
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
}
.midasi_01 span {
  display: block;
  margin-bottom: 24px;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.midasi_02 {
  font-size: 100px;
  font-weight: 200;
  letter-spacing: 0.1em;
  color: #B2BEBF;
}
.center {
  text-align: center;
}
@media screen and (max-width: 750px) {
  .midasi_02 {
    font-size: 80px;
  }
}
@media screen and (max-width: 500px) {
  .midasi_02 {
    font-size: 15.5vw;
  }
}
/*-----------------------------------------------------
	ボタン
------------------------------------------------------*/
.link_more_01 {
  position: relative;
  display: inline-block;
  padding-right: 40px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #575C5D;
}
.link_more_01:hover {
  opacity: 1;
}
.link_more_01::after {
  content: "";
  display: block;
  position: absolute;
	top: calc(50% + 0.5px);
	right: 0;
	transform: translateY(-50%);
  z-index: +1;
  width: 26px;
  height: 4px;
  background: url("../img/common/black_arrow.svg") no-repeat center center;
  background-size: cover;
}
.link_more_01:hover::after {
  opacity: 1;
}
.link_more_02 {
  display: block;
  position: relative;
  width: 300px;
  max-width: 100%;
  margin: 0 auto;
  padding: 16.5px 60px 16.5px 40px;
  background: #B2BEBF;
  border: 1px solid #B2BEBF;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.1em;
  text-align: center;
  transition: .3s;
}
.link_more_02:hover {
  background: #fff;
  color: #575C5D;
  transition: .3s;
}
.link_more_02::after {
  content: "";
  display: block;
  position: absolute;
	top: calc(50% + 0.5px);
	right: 20px;
	transform: translateY(-50%);
  width: 62px;
  height: 4px;
  background: url("../img/common/link_w_arrow.svg") no-repeat center center;
  background-size: cover;
}
.link_more_02:hover::after {
  background: url("../img/common/link_black_arrow.svg") no-repeat center center;
  background-size: cover;
}
.link_more_03 {
  display: block;
  position: relative;
  width: 300px;
  max-width: 100%;
  margin: 0 auto;
  padding: 15px 60px 15px 40px;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 100px;
  font-size: 24px;
  font-weight: 500;
  color: #575C5D;
  letter-spacing: 0.1em;
  text-align: center;
  transition: .3s;
}
.link_more_03:hover {
  background: #575C5D;
  color: #fff;
  transition: .3s;
}
.link_more_03::after {
  content: "";
  display: block;
  position: absolute;
	top: calc(50% + 0.5px);
	right: 20px;
	transform: translateY(-50%);
  width: 62px;
  height: 5px;
  background: url("../img/common/link_black_arrow.svg") no-repeat center center;
  background-size: cover;
}
.link_more_03:hover::after {
  width: 62px;
  height: 4px;
  background: url("../img/common/link_w_arrow.svg") no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 750px) {
}

/*-----------------------------------------------------
	Layout
------------------------------------------------------*/
.wrap {
  width: 1080px;
  margin: 0 auto;
}
@media screen and (max-width: 1140px) {
  .wrap {
    width: calc(100% - 60px);
  }
}
@media screen and (max-width: 750px) {
  .wrap {
    width: calc(100% - 50px);
  }
}

/*-----------------------------------------------------
	#page_mv
------------------------------------------------------*/
#page_mv {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 300px;
  border-bottom-left-radius: 400px;
}
#page_mv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-bottom-left-radius: 400px;
}
#page_mv .page_title {
  position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
  z-index: 2;
  width: 100%;
  padding-right: 100px;
  padding-left: 350px;
  font-size: 27px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.2em;
  color: #fff;
  text-align: left;
}
.aioseo-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  width: 60%;
  margin-bottom: 40px;
  padding: 17px 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}
.aioseo-breadcrumbs .aioseo-breadcrumb:last-of-type {
  font-weight: 700;
}
@media screen and (max-width: 1060px) {
  #page_mv .page_title {
    padding-right: 60px;
    padding-left: 150px;
  }
}
@media screen and (max-width: 800px) {
  .aioseo-breadcrumbs {
    width: 50%;
    padding-right: 50px;
  }
}
@media screen and (max-width: 750px) {
  #page_mv {
    height: 360px;
    border-bottom-left-radius: 100px;
  }
  #page_mv img {
    border-bottom-left-radius: 100px;
  }
  #page_mv .page_title {
    padding-right: 30px;
    padding-left: 30px;
  }
  .aioseo-breadcrumbs {
    width: 100%;
    padding-right: 0;
  }
}
/*-----------------------------------------------------
	.main
------------------------------------------------------*/
article {
  padding-bottom: 100px;
}
.main h1 {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #B2BEBF;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
.main .date {
  margin-bottom: 10px;
  
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #B2BEBF;
}
.main .category {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 60px;
}
.main .category span {
  display: inline-block;
  padding: 5px 20px;
  border: 1px solid #B2BEBF;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
}
.main a {
  color: #6F8DAA;
  text-decoration: underline;
}
.main a.link_more_02 {
  color: #fff;
}
.main a.link_more_02:hover {
  color: #575C5D;
}
.main hr {
  display: block;
  height: 1px;
  border: 0;   
  border-top: 1px solid #B2BEBF;
  margin: 3em 0;
  padding: 0;
}
.main h2 {
  margin-bottom: 40px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #6F8DAA;
}
.main h3 {
  position: relative;
  margin-bottom: 40px;
  padding-left: 36px;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
.main h3::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 26px;
  height: 3px;
  background: #A9C1D9;
}
.main h4 {
  display: inline-block;
  margin-bottom: 40px;
  padding: 0 10px;
  background: #E3EDF2;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  color: #6F8DAA;
  letter-spacing: 0.1em;
}
.main h5 {
  margin-bottom: 40px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
.main h6 {
  margin-bottom: 40px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
.main p {
  margin-bottom: 60px;
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
}
.main .mb20 {
  margin-bottom: 20px;
}
.main ul, .main ol {
  margin-bottom: 60px;
}
.main ul li {
  margin-bottom: 20px;
  margin-left: 20px;
  list-style-type: disc;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
.main ul li::marker {
  color: #6F8DAA;
}
.main ol li {
  margin-bottom: 20px;
  margin-left: 20px;
  list-style-type: decimal;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
.main figure {
  margin-bottom: 60px;
}
.main .wp-element-caption {
  font-size: 13px;
}
.main figure img {
  max-width: 100%;
  height: auto;
}
.main .table_wrap {
  width: 100%;
  margin-bottom: 30px;
  padding-top: 10px;
  overflow-x: auto;
  white-space: nowrap;
}
.main table {
  width: 100%;
  margin-bottom: 60px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.2em;
  text-align: left;
}
.main table tr th, .main table tr td {
  padding: 25px 15px;
  border: 1px solid #B2BEBF;
  vertical-align: middle;
}
.main table .bg_blue {
  background: #A4B7CA;
  color: #fff;
  text-align: center;
}
.main table .bg_green {
  background: #B2BEBF;
  color: #fff;
  text-align: center;
}
.main table .bg_glay {
  background: #F5F5F5;
  color: #6F8DAA;
  text-align: center;
}
.main table .border_r_w {
  border-right: 1px solid #fff;
}
.main table ul {
  margin-bottom: 0;
}
.main .normal table {
  width: 100%;
  font-size: 14px;
}
.main .normal table tr:nth-child(even) {
  background: #F5F5F5;
}
.main .normal table tr td:nth-of-type(1){
  width: 15%;
}
.main .normal table tr td:nth-of-type(2){
  width: 85%;
}

.main .price table {
  width: 100%;
  font-size: 14px;
}
.main .price table tr:nth-child(even) {
  background: #F5F5F5;
}
.main .price table tr td:nth-of-type(1){
  width: 85%;
}
.main .price table tr td:nth-of-type(2){
  width: 15%;
  text-align: right;
}
.main .parking {
  margin-bottom: 0;
}
.main .parking table {
  width: 100%;
  font-size: 14px;
}
.main .parking table tr td:nth-of-type(1){
  width: 77%;
}
.main .parking table tr td:nth-of-type(2){
  width: 23%;
  background: #F5F5F5;
  text-align: center;
}
.main ul.price_nav {
  display: flex;
	flex-direction: row;
	flex-wrap: wrap;
  align-items: stretch;
  gap: 10px;
}
.main ul.price_nav li {
  display: flex;
  flex-direction: column;
  width: calc((100% - 10px * 3) / 4);
  min-height: 70px;
  margin-bottom: 0;
  margin-left: 0;
  border: 1px solid #B2BEBF;
  list-style-type: none;
  text-align: left;
}
.main ul.price_nav li a {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 10px 20px;
  font-size: 14px;
  text-decoration: none;
}
.main ul.price_nav li a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%) rotate(90deg);
  width: 9px;
  height: 12px;
  background: url(../img/common/arrow_black_02.svg) no-repeat center center;
  background-size: cover;
}
#ez-toc-container {
  display: block;
  margin-bottom: 80px;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
}
.main ul.ez-toc-list {
  display: flex;
	flex-direction: row;
	flex-wrap: wrap;
  align-items: stretch;
  gap: 10px;
}
.main ul.ez-toc-list li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: calc((100% - 10px * 3) / 4);
  min-height: 70px;
  margin-bottom: 0;
  margin-left: 0;
  border: 1px solid #B2BEBF;
  list-style-type: none;
  text-align: left;
}
.main ul.ez-toc-list li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start; 
  position: relative;
  width: 100%;
  height: 100%;
  padding: 10px 20px;
  font-size: 14px;
  color: #575C5D;
  text-decoration: none;
}
.main ul.ez-toc-list li a:visited {
  color: #575C5D !important;
}
.main ul.ez-toc-list li a:hover {
  text-decoration: none !important;
}
.main ul.ez-toc-list li a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%) rotate(90deg);
  width: 9px;
  height: 12px;
  background: url(../img/common/arrow_black_02.svg) no-repeat center center;
  background-size: cover;
}

@media screen and (max-width: 1220px) {
  .main ul.price_nav li {
    width: calc((100% - 10px * 2) / 3);
  }
  .main ul.ez-toc-list li {
    width: calc((100% - 10px * 2) / 3);
  }
}
@media screen and (max-width: 750px) {
  article {
    padding-bottom: 80px;
  }
  .main h2 {
    font-size: 28px;
  }
  .main h3 {
    font-size: 22px;
  }
  .main h4 {
    font-size: 18px;
  }
  .main p {
    margin-bottom: 40px;
  }
  .main ul, .main ol {
    margin-bottom: 40px;
  }
  .main ul li {
    margin-bottom: 10px;
  }
  .main ol li {
    margin-bottom: 10px;
  }
  .main table {
    border-bottom: 1px solid #B2BEBF;
  }
  .main table tr th, .main table tr td {
    display: block;
    width: 100%;
    border-bottom: none;
  }
  .main table ul {
    margin-bottom: 0;
  }
  .main .normal table {
    width: 100%;
    font-size: 14px;
  }
  .main .normal table tr:nth-child(even) {
    background: none;
  }
  .main .normal table tr td:nth-of-type(1){
    width: 100%;
    background: #F5F5F5;
  }
  .main .normal table tr td:nth-of-type(2){
    width: 100%;
  }
  .main .price table {
    width: 100%;
    font-size: 14px;
  }
  .main .price table tr:nth-child(even) {
    background: none;
  }
  .main .price table tr td:nth-of-type(1){
    width: 100%;
    background: #F5F5F5;
  }
  .main .price table tr td:nth-of-type(2){
    width: 100%;
  }
  .main .parking table tr td:nth-of-type(1){
    width: 100%;
    background: #F5F5F5;
  }
  .main .parking table tr td:nth-of-type(2){
    width: 100%;
  }
  .main ul.price_nav li {
    width: calc((100% - 10px) / 2);
  }
  #ez-toc-container {
    margin-bottom: 60px;
  }
  .main ul.ez-toc-list li {
    width: calc((100% - 10px) / 2);
  }
}
/*-----------------------------------------------------
	menu_link
------------------------------------------------------*/
.menu_link {
  width: 84px;
  margin: 0 auto 40px;
}
.clinic_menu_header {
  align-items: center;
  margin-bottom: 40px;
  padding: 10px 20px;
  background: #F5F5F5;
}
.clinic_menu_header h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.menu_list {
  display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 20px 30px;
  margin-bottom: 60px;
}
.menu_list li {
	width: calc((100% - 60px) / 3);
}
.menu_list li a {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
  align-items: center;
  background: #fff;
  border: 1px solid #B2BEBF;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
.menu_list li a img {
	width: 70px;
  height: auto;
  margin-right: 20px;
}
@media screen and (max-width: 960px) {
  .menu_list li {
    width: calc((100% - 30px) / 2);
  }
}
@media screen and (max-width: 665px) {
  .menu_list {
    margin-bottom: 60px;
  }
  .menu_list li {
    width: 100%;
  }
}
/*-----------------------------------------------------
	#news
------------------------------------------------------*/
.news_list {
  display: block;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #B2BEBF;
}
.news_list:last-of-type {
  margin-bottom: 0;
}
.news_list .date {
  margin-bottom: 20px;
  
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #B2BEBF;
}
.news_list p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
/*-----------------------------------------------------
	#campaign
------------------------------------------------------*/
.campaign_list_wrap::after {
  display: block;
  content:"";
  width: 31.5%;
}
.campaign_list {
  display: block;
  width: 31.5%;
  margin-bottom: 30px;
}
.campaign_list img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border: 1px solid #B2BEBF;
}

@media screen and (max-width: 1000px) {
  .campaign_list_wrap::after {
    display: none;
  }
  .campaign_list {
    width: 48.5%;
  }
}
@media screen and (max-width: 750px) {
  .campaign_list {
    width: 100%;
  }
  .campaign_list img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}
/*-----------------------------------------------------
	#case
------------------------------------------------------*/
.tab_list {
  display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 10px;
  width: 710px;
  margin: 60px auto 40px;
}
.tab_list_item {
  width: calc((100% - 50px) / 6);
  text-align: center;
}
.tab_list_link {
  display: block;
  padding: 10px;
  background: #fff;
  border: 1px solid #B2BEBF;
  font-size: 14px;
  font-weight: 500;
}
.tab_list_link.on, .tab_list_link:hover {
  background: #B2BEBF;
  color: #fff;
}
@media screen and (max-width: 900px) {
  .tab_list {
    width: 100%;
  }
  .tab_list_item {
    width: calc((100% - 20px) / 3);
  }
}
@media screen and (max-width: 750px) {
  .tab_list {
    margin: 40px auto;
  }
  .tab_list_item {
    width: calc((100% - 10px) / 2);
  }
}

.case_box {
  display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 30px;
  margin-bottom: 60px;
}
.case_box a {
  display: block;
  width: calc((100% - 60px) / 3);
}
.case_img {
  margin-bottom: 15px;
}
.before_after_img {
  width: 50%;
  text-align: center;
}
.before_after_img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.case_box h3 {
  margin-bottom: 15px;
  font-size: 17px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
}
.case_box p {
  font-size: 13px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1140px) {
  .before_after_img img {
    height: 17.544vw;
  }
}
@media screen and (max-width: 900px) {
  .case_box {
    gap: 10px;
  }
  .case_box a {
    width: calc((100% - 20px) / 2);
  }
  .before_after_img img {
    height: 25.556vw;
  }
}
@media screen and (max-width: 414px) {
  .case_box {
    gap: 30px 0;
    margin-bottom: 40px;
  }
  .case_box a {
    width: 100%;
  }
  .before_after_img img {
    height: 48.309vw;
  }
}
/*-----------------------------------------------------
	#column
------------------------------------------------------*/
.archive_column {
  justify-content: flex-start;
  gap: 30px;
  margin-bottom: 50px;
}
.column_link {
  width: calc((100% - 60px) / 3);
}
.column_link a .thumb {
  width: 100%;
  height: 240px;
  object-fit: cover;
  margin-bottom: 30px;
}
.column_link a p {
  margin-bottom: 20px;
  
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #B2BEBF;
}
.column_link a h3 {
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1000px) {
  .column_link {
    width: calc((100% - 30px) / 2);
  }
  .column_link a .thumb {
    height: 31.5vw;
  }
}
@media screen and (max-width: 750px) {
  #column .flex {
    gap: 60px;
    margin-bottom: 60px;
  }
  .column_link {
    width: 100%;
  }
  .column_link a .thumb {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}
/*-----------------------------------------------------
	ページネーション
------------------------------------------------------*/
.pagination {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 40px;
}
a.page-numbers, .pagination .current {
  display: block;
  margin: 0 3px;
	padding: 7px 9px;
	border: 1px solid #B2BEBF;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
	text-decoration: none;
  color: #6F8DAA;
}
span.page-numbers.dots {
  margin-right: 10px;
  margin-left: 10px;
  font-size: 14px;
}
.pagination .current, a.page-numbers:hover {
	background: #F5F5F5;
	border: 1px solid #B2BEBF;
	color: #6F8DAA;
  opacity: 1;
}
a.page-numbers.next, a.page-numbers.prev {
  position: relative;
  width: 27.78px;
  height: 30px;
  margin: 0 10px;
  background: #6F8DAA;
  border: 1px solid #6F8DAA;
  color: #fff;
}
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%);
  -webkit-transform: translate(-50%, -50%);
}
a.page-numbers.prev img {
  transform: translate(-50%, -50%) scaleX(-1);
  -webkit-transform: translate(-50%, -50%) scaleX(-1);
}
a.page-numbers.next:hover, a.page-numbers.prev:hover {
	background: #6F8DAA;
  opacity: .6;
}
@media screen and (max-width: 750px) {
  .pagination {
    margin-bottom: 80px;
  }
}
/*-----------------------------------------------------
	#concept
------------------------------------------------------*/
#concept {
  padding-bottom: 140px;
}
#concept .midasi_02 {
  margin-bottom: 80px;
}
.concept_inner {
  position: relative;
  z-index: 0;
  margin-bottom: 170px;
}
.concept_inner::after {
  content: "";
  display: block;
  position: absolute;
	top: 70px;
	right: 0;
  z-index: -1;
  width: 1000px;
  max-width: 81%;
  height: 100%;
  background: url("../img/home/concept_01.webp") no-repeat center center;
  background-size: cover;
}
@media screen and (min-width: 1801px) {
  .concept_inner::after {
    width: 70%;
  }
}
.concept_inner_02 {
  position: relative;
  z-index: 0;
  padding: 140px 0 110px;
}
.concept_inner_02::after {
  content: "";
  display: block;
  position: absolute;
	top: 0;
	left: 0;
  z-index: -1;
  width: 1000px;
  max-width: 81%;
  height: 100%;
  background: url("../img/home/concept_02.webp") no-repeat center center;
  background-size: cover;
}
@media screen and (min-width: 1801px) {
  .concept_inner_02::after {
    width: 70%;
  }
}
.concept_l, .concept_r {
  width: 655px;
  padding: 60px 60px 20px;
  background: #fff;
}
.concept_r {
  margin-left: 510px;
}
#concept h3 {
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
}
#concept h3 span {
  width: calc(100% - 50px);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #6F8DAA;
}
#concept h3 span.num {
  width: 50px;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
}
#concept p {
  margin-bottom: 40px;
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
}
#concept ul {
  display: flex;
	flex-direction: row;
	flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
#concept ul li {
  width: calc((100% - 20px) / 3);
}
#concept ul li a {
  display: block;
  padding: 10px 0;
  border: 1px solid #B2BEBF;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
}
#concept ul li a:hover {
  background: #F5F5F5;
}
#concept ul li a span {
  position: relative;
  padding-right: 15px;
}
#concept ul li a span::after {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
  width: 9px;
  height: 12px;
  background: url("../img/common/arrow_black_02.svg") no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 1140px) {
  .concept_r {
    margin-left: calc(100% - 570px);
  }
}
@media screen and (max-width: 750px) {
  #concept {
    padding-bottom: 80px;
  }
  #concept .midasi_02 {
    margin-bottom: 40px;
  }
  #concept img {
    width: 100%;
    margin-bottom: 40px;
  }
  .concept_inner {
    margin-bottom: 0;
  }
  .concept_inner::after,.concept_inner_02::after {
    display: none;
  }
  .concept_inner_02 {
    padding: 0;
  }
  .concept_l, .concept_r {
    width: 100%;
    margin-left: 0;
    padding: 0;
  }
  #concept h3 span {
    width: 100%;
  }
  #concept h3 span.num {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 500px) {
  #concept ul {
    margin-bottom: 0;
  }
  #concept ul li {
    width: 100%;
  }
  #concept ul li a {
    padding: 10px 20px;
    text-align: left;
  }
  #concept ul li a span {
    display: block;
    padding-right: 0;
  }
}

/*-----------------------------------------------------
	footer
------------------------------------------------------*/
footer {
  background: linear-gradient(270deg, #F5F5F5 0%, #FFFFFF 14.42%, #E0EBF0 30.77%, #FFFFFF 44.23%, #F5F5F5 60.58%, #FFFFFF 72.12%, #E0EBF0 87.5%, #FFFFFF 100%);
}
.footer_top {
  padding: 80px 0;
}
.footer_top h2 {
  margin-bottom: 40px;
}
.footer_top_l {
  width: 60%;
}
.footer_top_l dl {
  letter-spacing: 0.02em;
  line-height: 1.4;
}
.footer_top_l dl dt {
  width: 150px;
  padding: 20px 10px;
  border-bottom: 1px solid #B2BEBF;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  letter-spacing: 0.02em;
}
.footer_top_l dl dd {
  width: calc(100% - 170px);
  padding: 20px 10px;
  border-bottom: 1px solid #B2BEBF;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.footer_top_l dl dd a {
  color: #6F8DAA;
  text-decoration: underline;
}
.footer_top_l .footer_office_hours {
  margin-top: 40px;
}
.fc .fc-toolbar.fc-header-toolbar {
  background: none;
  border: 1px solid #B2BEBF;
}
.fc .fc-col-header-cell-cushion {
  padding: 10px 4px;
}
.fc .fc-toolbar-title {
  font-size: 16px;
}
.fc .fc-button-primary, .fc .fc-button-primary:hover {
  background: none;
  border: none;
  color: #575C5D;
}
.fc .fc-scrollgrid-liquid {
  background: #fff;
}
.fc-scrollgrid-sync-inner {
}
thead .fc-scroller {
  overflow: hidden !important;
}
.fc-col-header-cell {
  font-size: 12px;
}
.fc .fc-daygrid-day-number {
  padding: 5px 10px;
}
.fc .fc-col-header-cell-cushion {
  font-size: 14px;
  font-weight: 400;
}
.fc .fc-daygrid-day.fc-day-today {
  background: none;
  border: 2px solid #B2BEBF;
}
.fc-daygrid-dot-event .fc-event-title {
  font-size: 11px;
  line-height: 1.2;
}
.fc-event-title,
.fc .fc-event-title {
  white-space: normal !important;   /* 折り返しOKに */
  overflow-wrap: break-word !important; /* 長い単語も折り返す */
  word-break: break-word !important;
}
.fc-daygrid-event {
  max-height: none !important;
  height: auto !important;
}
.fc-event,
.fc-event a {
  pointer-events: none !important;
  cursor: default !important;
  text-decoration: none !important;
  background: none !important;
  background-color: inherit !important;
  color: inherit !important;
  box-shadow: none !important;
  border-color: inherit !important;
	border: none;
}
.fc-h-event .fc-event-main {
	color: #575C5D;
}
.fc-event:hover,
.fc-event.fc-event:hover {
  background-color: inherit !important;
  background: none !important;
  opacity: 1;
}
.fc .fc-daygrid-event-harness:hover {
  background: none;
}
.fc-daygrid-event-dot, .fc-direction-ltr .fc-daygrid-event .fc-event-time {
  display: none;
}
.footer_top_r {
  width: 38%;
}
.footer_top_r img {
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}
.footer_top_r iframe {
  width: 100%;
  height: 400px;
}
@media screen and (max-width: 750px) {
  .footer_top_l {
    width: 100%;
    margin-bottom: 60px;
  }
  .footer_top_l dl dt {
    width: 90px;
  }
  .footer_top_l dl dd {
    width: calc(100% - 90px);
  }
  .footer_top_r {
    width: 100%;
  }
  .footer_top_r img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  footer iframe {
    height: 106.667vw;
  }
}

.footer_bottom {
  padding: 85px 0 100px;
  background: #575C5D;
  color: #fff;
  text-align: center;
}
.footer_logo img {
  width: 100px;
  height: auto;
}
.footer_bottom .flex {
  margin-top: 50px;
  margin-bottom: 75px;
}
.footer_bottom .flex .footer_bottom_nav {
  width: 30%;
  text-align: left;
}
.footer_bottom .flex .footer_bottom_nav:first-of-type li a, .footer_bottom .flex .footer_bottom_nav li:first-of-type a {
  font-size: 16px;
  font-weight: 700;
}
.footer_bottom .flex .footer_bottom_nav:first-of-type li,
.footer_bottom .flex .footer_bottom_nav li:first-of-type
{
  margin-bottom: 30px;
  margin-left: 0;
  list-style-type: none;
}
.footer_bottom_nav li {
  margin-bottom: 10px;
  margin-left: 20px;
  list-style-type: disc;
}
.footer_bottom_nav li a {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  line-height: 1.6;
}
.footer_bottom small {
  
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.1em;
  text-align: center;
}

@media screen and (max-width: 750px) {
  .footer_bottom .flex .footer_bottom_nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 30px;
  }
  .footer_bottom .flex .footer_bottom_nav li:first-of-type {
    width: 100%;
  }
  .footer_bottom_nav li, .footer_bottom .flex .footer_bottom_nav:first-of-type li {
    width: calc(48% - 20px);
  }
}

/*-----------------------------------------------------
	others
------------------------------------------------------*/
.ani {
  visibility: hidden;
}
.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;
	}
}
