@charset "UTF-8";
/*
	Filename: common
	Version: 1.0.1
*/
/*-----------------------------------------------------
	Typography
------------------------------------------------------*/
em {
	font-weight: bold;
}
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: #434343;
	transition: all .25s;
}
a > img {
	transition: all .25s;
}
a:hover > img, a:hover{
	opacity: 0.65;
}
.no_link {
  pointer-events: none;
}
/*-----------------------------------------------------
	haeder
------------------------------------------------------*/
header {
  position: fixed;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 100px;
  padding: 10px 0;
  background: rgba(255,255,255,.95);
}
.header_logo {
  position: absolute;
  top: 20px;
  left: 0;
	padding-right: 19px;
	padding-bottom: 9px;
	padding-left: 14px;
	background: #fff;
	border-radius: 0 0 20px 0;
}
.header_logo a {
  display: block;
  width: 148px;
  height: 190px;
  background: url("../img/common/logo.png") center center no-repeat;
  font-size: 0;
}
.header_nav {
  position: absolute;
  top: 10px;
  right: 0;
}
.header_nav ul {
  justify-content: flex-end;
  align-items: center;
}
.header_nav ul li {
  position: relative;
  text-align: center;
}
.header_nav ul li a {
  display: inline-block;
  margin-right: 40px;
  padding: 30px 0;
  font-size: 16px;
  color: #434343;
}
.header_nav ul li.has-child ul {
  justify-content: space-between;
  position: absolute;
  top: 60px;
  left: calc(50% - 16px);
  transform: translateX(-50%);
  z-index: 4;
  width: 526px;
  padding: 20px 40px 10px;
  background:#fff;
  border: 1px solid #D6D6D6;
  display: none;
  visibility: hidden;
  opacity: 0;
  transition: all .3s;
}
.header_nav ul li.has-child ul::before {
  content: "";
  display: block;
  position: absolute;
	top: -9px;
	left: 50%;
	transform: translateX(-50%);
  width: 9px;
  height: 9px;
  background: url("../img/common/mega_arrow.png") no-repeat center center;
  background-size: cover;
}
.header_nav ul li.has-child:hover > ul {
  visibility: visible;
  opacity: 1;
  display: flex;
}
.header_nav ul li.has-child ul li {
  position: relative;
  width: 47%;
  margin-bottom: 20px;
  border-bottom: 1px solid #ccc;
  text-align: left;
}
.header_nav ul li.has-child ul li::after {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url("../img/common/arrow_orange.png") no-repeat center center;
  background-size: cover;
}
.header_nav ul li.has-child ul li a {
  display: block;
  margin-right: 0;
  padding: 0;
  font-size: 13px;
  line-height: 2.5;
}
ul li.tel a {
  position: relative;
  margin-right: 20px;
  padding-left: 30px;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
}
ul li.tel a::after {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
  width: 1px;
  height: 24px;
  background: #434343;
}
ul li.tel a span {
  font-size: 14px;
}
ul li.line a {
  position: relative;
  width: 90px;
  height: 80px;
  margin-right: 4px;
  padding-top: 38px;
  background: #03C755;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}
ul li.line a::after {
  content: "";
  display: block;
  position: absolute;
	top: 6px;
	left: 50%;
	transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: url("../img/common/line_icon.png") no-repeat center center;
  background-size: cover;
}
ul li.web a {
  position: relative;
  width: 90px;
  height: 80px;
  margin-right: 10px;
  padding-top: 44px;
  background: #0B2D80;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}
ul li.web a::after {
  content: "";
  display: block;
  position: absolute;
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
  width: 20px;
  height: 21px;
  background: url("../img/common/web_icon.png") no-repeat center center;
  background-size: cover;
}
ul li.web.is-color1 a {
	background-color: #5697b3;
}
/*-----------------------------------------------------
	haeder.fixed
------------------------------------------------------*/
header.fixed .header_logo {
  top: 20px;
  left: 14px;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
	background: none;
	border-radius: 0;
}
header.fixed .header_logo a {
	width: 188px;
	height: 61px;
	background: url("../img/common/w_logo.png") center center no-repeat;
	background-size: cover;
}

@media screen and (max-width: 1550px) {
  .header_nav {
    position: absolute;
    top: 10px;
    right: 0;
  }
  .header_nav ul li a {
    margin-right: 20px;
    font-size: 14px;
  }
  ul li.tel a {
    position: relative;
    margin-right: 23px;
    padding-left: 15px;
    font-size: 18px;
  }
  ul li.tel a::after {
    width: 1px;
    height: 22px;
  }
  ul li.tel a span {
    font-size: 13px;
  }
  ul li.line a {
    margin-right: 4px;
  }
  ul li.web a {
    margin-right: 10px;
  }
}
@media screen and (max-width: 1280px) {
  .header_nav ul li a {
    margin-right: 10px;
  }
}
@media screen and (min-width: 1081px) {
	.fat-nav, .fat-nav ul, .hum_logo, .fat-nav_bottom, .sp_insta {
		display: none;
	}
}
@media screen and (max-width: 1080px) {
  .header_nav {
    display: none;
  }
  header {
    height: 80px;
    padding: 16px;
  }
  .header_logo, header.fixed .header_logo {
    top: 9.5px;
    left: 10px;
		padding-right: 0;
		padding-bottom: 0;
		padding-left: 0;
		border-radius: 0;
  }
  .header_logo a, header.fixed .header_logo a {
    width: 188px;
    height: 61px;
    background: url("../img/common/w_logo.png") center center no-repeat;
		background-size: cover;
  }
	/* SPメニュー */
  .hamburger {
    width: 50px ;
    height: 50px;
    display: block;
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 10002;
    padding: 0;
    background: #0B2D80;
    border-radius: 50%;
    box-sizing: border-box;
    touch-action: manipulation;
  }
  .hamburger__icon {
    position: relative;
    margin-top: 5px;
  }
  .hamburger__icon, .hamburger__icon::before, .hamburger__icon::after {
    width: 14px;
    height: 1px;
		position: absolute;
    top: 19px;
		right: 18px;
    display: block;
    background-color: #fff;
    transition-property: background-color, transform;
    transition-duration: 0.4s;
  }
  .hamburger__icon::before, .hamburger__icon::after {
    content: "";
    right: 0;
  }
  .hamburger__icon::before {
		width: 14px;
    top: -5px;
  }
  .hamburger__icon::after {
		width: 14px;
    top: 5px;
  }
  .hamburger.active {
    right: 15px;
  }
	.hamburger.active .hamburger__icon {
    background-color: transparent;
  }
  .hamburger.active .hamburger__icon:before, .hamburger.active .hamburger__icon:after {
		width: 14px;
    height: 1px;
    background-color: #fff;
  }
  .hamburger.active .hamburger__icon:before {
    transform: translateY(5px) rotate(45deg);
  }
  .hamburger.active .hamburger__icon:after {
    transform: translateY(-5px) 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;
    -webkit-overflow-scrolling: touch;
  }
  .fat-nav__wrapper {
    position: relative;
    top: 80px;
    right: -50%;
    display: table;
    table-layout: fixed;
    width: 100%;
    height: calc(100% - 80px);
    background: url("../img/common/sp_hum_bg.webp") no-repeat center center;
    background-size: cover;
    padding: 45px 30px 80px;
    transition: right .4s cubic-bezier(.19,1.000,.22,1.000);
  }
  .fat-nav.active .fat-nav__wrapper {
    right: 0;
  }
  .hum_logo {
    position: absolute;
    top: 16px;
    left: 16px;
  }
  .hum_logo img {
    width: 200px;
    height: 50px;
  }
  .fat-nav ul.flex li {
    width: 48%;
    position: relative;
    margin-bottom: 30px;
    border-bottom: 1px solid #fff;
    list-style-type: none;
    text-align: left;
  }
  .fat-nav li a {
    display: block;
    padding-bottom: 12px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
    text-decoration: none;
  }
  .aco {
    cursor: pointer;
		position: relative;
    z-index: 1;
  }
  .aco::after {
    content: "＋" !important;
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    padding: 0px 0 10px 20px;
    background: none !important;
    width: auto !important;
    height: auto !important;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
  }
  .aco.is-active::after {
    content: "ー" !important;
  }
  .fat-nav_menu_list {
		display: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    height: 0;
    overflow: hidden;
  }
  .aco.is-active + .fat-nav_menu_list {
    height: auto;
  }
  .fat-nav_menu_list li {
    width: 47%;
    padding-left: 10px;
    border-bottom: none;
  }
  .fat-nav_menu_list li a {
    position: relative;
    font-size: 13px;
    line-height: 1.6;
  }
  .fat-nav_menu_list li a::before {
    content: "-";
    margin-right: 5px;
  }
  .fat-nav_bottom {
    margin-top: 30px;
    color: #fff;
    text-align: center;
  }
  .fat-nav_bottom h2 {
    margin-bottom: 30px;
  }
  .fat-nav_bottom h2 span {
    position: relative;
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    color: #fff;
    text-align: center;
  }
  .fat-nav_bottom h2 span::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background: #fff;
  }
  .fat-nav_bottom address {
    margin-bottom: 40px;
    font-size: 14px;
    line-height: 1.6;
  }
  .fat-nav_bottom a {
    font-size: 24px;
    color: #fff;
    line-height: 1.6;
  }
}

@media screen and (max-width: 750px) {
  #sp-fixed-menu {
    width: 100%;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 99;
    padding: 0 10px;
    background: #fff;
  }
  #sp-fixed-menu li {
    width: 32%;
    margin-top: -25px;
    margin-bottom: 10px;
    text-align: center;
  }
  #sp-fixed-menu li a {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    margin-right: 0;
    padding: 10px 10px;
    background: #0B2D80;
    border: 1px solid #fff;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
  }
  #sp-fixed-menu li a span {
    position: relative;
  }
  #sp-fixed-menu li.fix_tel a span::before {
    content: "";
    display: block;
    width: 25px;
    height: 25px;
    margin: 0 auto 5px;
    background: url("../img/common/fix_tel.png") no-repeat center center;
    background-size: cover;
  }
  #sp-fixed-menu li.fix_web a span::before {
    content: "";
    display: block;
    width: 25px;
    height: 25px;
    margin: 0 auto 5px;
    background: url("../img/common/fix_web.png") no-repeat center center;
    background-size: cover;
  }
  #sp-fixed-menu li.fix_line a {
    background: #03C755;
  }
  #sp-fixed-menu li.fix_line a span::before {
    content: "";
    display: block;
    width: 25px;
    height: 25px;
    margin: 0 auto 5px;
    background: url("../img/common/fix_line.png") no-repeat center center;
    background-size: cover;
  }
}

/*-----------------------------------------------------
	midasi
------------------------------------------------------*/
.midasi_01 {
  margin-bottom: 40px;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-align: center;
}
.midasi_01 span {
  display: inline-block;
  position: relative;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #0B2D80;
  letter-spacing: 0;
}
.midasi_02 {
  margin-bottom: 66px;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}
.midasi_03 {
  font-size: 38px;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
  text-align: center;
}
.center {
  text-align: center;
}
@media screen and (max-width: 750px) {
  .midasi_01 {
    margin-bottom: 30px;
    font-size: 28px;
  }
  .midasi_01 span {
    font-size: 14px;
  }
  .midasi_02 {
    margin-bottom: 30px;
    font-size: 26px;
  }
}

/*-----------------------------------------------------
	ボタン
------------------------------------------------------*/
.link_btn {
  display: block;
  position: relative;
  width: 201px;
  margin: 0 auto;
  padding: 17px 10px;
  background: #0B2D80;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-align: center;
}
.link_btn::after {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	right: 14px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
  z-index: 1;
  width: 17px;
  height: 17px;
  background: url("../img/common/arrow.png") no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 750px) {
  .link_btn {
    width: 200px;
    padding: 12px 14px;
    font-size: 14px;
  }
}
/*-----------------------------------------------------
	.cv
------------------------------------------------------*/
.cv {
  padding: 80px 0;
  background: url("../img/home/cv_bg.webp") no-repeat center center;
  background-size: cover;
}
.cv .flex {
	justify-content: center;
  align-items: center;
	gap: 20px;
}
.cv_btn {
  display: block;
  position: relative;
  width: 32%;
  padding: 45px 0 45px 45px;
  background: #fff;
  font-size: 28px;
  font-weight: 500;
  text-align: center;
}
.cv_btn span {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
}
.cv_btn::before {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	left: 34px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
  width: 54px;
  height: 54px;
}
.cv_tel {
  padding: 32px 0 32px 35px;
}
.cv_tel::before {
  background: url("../img/home/cv_tel.png") no-repeat center center;
  background-size: cover;
}
.cv_web::before {
  background: url("../img/home/cv_web.png") no-repeat center center;
  background-size: cover;
}
.cv_line::before {
  background: url("../img/home/cv_line.png") no-repeat center center;
  background-size: cover;
}
.cv_web::after, .cv_line::after {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	right: 30px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
  width: 11px;
  height: 18px;
  background: url("../img/common/arrow_03.png") no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 1166px) {
  .cv_btn {
    padding: 3.859vw 0 3.859vw 3.859vw;
    font-size: 2.401vw;
  }
  .cv_btn span {
    margin-bottom: 0.858vw;
    font-size: 1.372vw;
  }
  .cv_btn::before {
    left: 2.916vw;
    width: 4.631vw;
    height: 4.631vw;
  }
  .cv_tel {
    padding: 2.744vw 0 2.744vw 3.002vw;
  }
  .cv_web::after, .cv_line::after {
    right: 2.573vw;
    width: 0.943vw;
    height: 1.544vw;
  }
}
@media screen and (max-width: 750px) {
  .cv {
    padding: 40px 0 30px;
  }
  .cv_btn {
    width: 100%;
    margin-bottom: 10px;
    padding: 30px 0 30px 30px;
    font-size: 24px;
  }
  .cv_btn span {
    font-size: 14px;
  }
  .cv_btn::before {
    left: 20px;
    width: 40px;
    height: 40px;
  }
  .cv_tel {
    padding: 20px 0 20px 20px;
  }
  .cv_web::after, .cv_line::after {
    right: 20px;
    width: 11px;
    height: 18px;
  }
}
/*-----------------------------------------------------
	Layout
------------------------------------------------------*/
.wrap {
  width: 1126px;
  margin: 0 auto;
}
@media screen and (max-width: 1166px) {
  .wrap {
    width: calc(100% - 40px);
  }
}
/*-----------------------------------------------------
	下層
------------------------------------------------------*/
/*-----------------------------------------------------
	#page_mv
------------------------------------------------------*/
#page_mv {
  width: 100%;
  margin-top: 100px;
  padding: 70px 20px;
  background: #0B2D80;
}
@media screen and (max-width: 1080px) {
  #page_mv {
    margin-top: 80px;
  }
}
/*-----------------------------------------------------
	#breadcrumbs
------------------------------------------------------*/
#breadcrumbs .wrap {
  position: relative;
	padding: 12px 0;
}
#breadcrumbs ul li {
	display: inline-block;
	font-size: 12px;
}
#breadcrumbs ul li::after {
	margin: 0 5px;
	content: "\f105";
	font-family: "Font Awesome 5 Free";
	font-weight: bold;
}
#breadcrumbs ul li:last-of-type::after {
	display: none;
}
#breadcrumbs ul li a {
	color: #434343;
}
#breadcrumbs ul li a:hover {
	color: #0B2D80;
}
@media screen and (max-width: 750px) {
  #breadcrumbs ul li {
    font-size: 11px;
  }
}
/*-----------------------------------------------------
	.main
------------------------------------------------------*/
.main {
  margin-top: 40px;
}
.blue_bg {
  background: rgba(11,45,128,.1);
}
.main .wp-block-group__inner-container, .main .wrap {
  width: 880px;
  margin: 0 auto;
  padding: 100px 20px;
}
.main .wp-block-group:first-of-type .wp-block-group__inner-container {
  padding-top: 0;
}
@media screen and (max-width: 920px) {
  .main .wp-block-group__inner-container, .main .wrap {
    width: 100%;
  }
}
.main p.link_btn {
	display: inline-block;
	width: auto;
	min-width: 220px;
	padding: 0;
}
.main p.link_btn a {
	display: inline-block;
	padding: 17px 40px 17px 20px;
  color: #fff;
}
.main h1 {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid #333;
  font-size: 30px;
  font-weight: 700;
}
.main .date {
  margin-bottom: 50px;
  font-size: 16px;
}
.main h2 {
  position: relative;
  width: fit-content;
  margin: 0 auto 55px;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
}
.main h2::after {
  content: "";
  display: block;
  position: absolute;
	bottom: -15px;
	left: 0;
  width: 100%;
  height: 1px;
  background: #1A2F38;
}
.main h3 {
  position: relative;
  margin-bottom: 24px;
  padding-left: 28px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.6;
}
.main h3::before {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
  width: 20px;
  height: 2px;
  background: #0B2D80;
}
.main h4 {
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid #707070;
  font-size: 18px;
  font-weight: 500;
	line-height: 1.6;
}
.main h5 {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 500;
}
.main h6 {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 500;
}
.main ul, .main ol {
  margin-bottom: 30px;
}
.main ul li {
  margin-bottom: 10px;
  margin-left: 20px;
  list-style-type: disc;
  font-size: 16px;
  line-height: 1.6;
}
.main ol {
  counter-reset: number;
  margin-bottom: 10px;
}
.main ol li {
  position: relative;
  margin-bottom: 20px;
  padding-left: 42px;
  list-style-type: none !important;
  font-size: 16px;
  line-height: 1.6;
}
.main ol li::before{
  position: absolute;
  counter-increment: number;
  content: counter(number);
  display: inline-block;
  background: #0B2D80;
  color: #fff;
  font-size: 14px;
  border-radius: 50%;
  left: 0;
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.main p {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.6;
}
.main figure {
  margin-bottom: 32px;
}
.main figure img {
  max-width: 100%;
  height: auto;
}
.table_wrap {
  width: 100%;
  margin-bottom: 30px;
  padding-top: 10px;
  overflow-x: auto;
  white-space: nowrap;
}
.main table {
  width: 100%;
  margin-bottom: 10px;
}
.main table tr th {
  padding: 16px;
  background: #0B2D80;
  border-bottom: 1px solid #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: #fff;
  vertical-align: middle;
}
.main table tr td {
  padding: 16px;
  background: #FAFAFA;
	border: none;
  border-bottom: 1px solid #CCCCCC;
  font-size: 16px;
  line-height: 1.6;
  vertical-align: middle;
}
.main table tr:last-child td {
  border-bottom: none;
}
.main .price table {
	width: 100%;
  margin-bottom: 10px;
}
.main .price table tr:first-of-type td {
  background: #0B2D80;
  border: 1px solid #0B2D80;
	border-right: 1px solid #fff;
  font-weight: 500;
  color: #fff;
}
.main .price table tr:first-of-type td:first-child {
  width: 70%;
	text-align: center;
}
.main .price table tr:first-of-type td:last-child {
  border-right: 1px solid #0B2D80;
}
.main .price table tr td {
  padding: 16px;
  background: #FAFAFA;
  border-bottom: 1px solid #CCCCCC;
  font-size: 16px;
  line-height: 1.6;
  vertical-align: middle;
}
.main .price table tr:last-child td {
  border-bottom: 1px solid #0B2D80;
}

.main table tr th p {
  margin-bottom: 0;
  font-size: 16px;
}
.main table tr td p {
  margin-bottom: 0;
  font-size: 16px;
}
strong.small {
	font-weight: 500;
	font-size: 12px;
}
@media screen and (max-width: 750px) {
  .main .wp-block-group__inner-container, .main .wrap {
    width: 100%;
    padding: 20px;
  }
  .main h1 {
    font-size: 25px;
  }
  .main .date {
    font-size: 14px;
  }
  .main h2 {
    margin-bottom: 40px;
  }
  .main h2 mark {
    font-size: 30px;
  }
  .main h3 {
    margin-bottom: 30px;
    font-size: 22px;
  }
  .main h4 {
    font-size: 20px;
  }
  .main h5 {
    font-size: 18px;
  }
  .main h6 {
    font-size: 16px;
  }
  .main ul, .main ol {
    margin-bottom: 30px;
  }
  .main ul li {
    font-size: 14px;
  }
  .main ol li {
    font-size: 14px;
  }
  .main p {
    font-size: 14px;
  }
  .main figure {
    margin-bottom: 10px;
  }
	.main .table_scroll {
		width: 100%;
		overflow-x: auto;
	}
	.main .table_scroll table {
		min-width: 880px;
	}
  .main table {
    width: 100%;
    margin-bottom: 50px;
  }
  .main table tr th {
    font-size: 14px;
  }
  .main table tr td {
    font-size: 14px;
  }
  .main table tr th p {
    margin-bottom: 0;
    font-size: 14px;
  }
  .main table tr td p {
    margin-bottom: 0;
    font-size: 14px;
  }
	.main .price table tr td {
		padding: 16px 10px;
		font-size: 14px;
	}
}
.hour {
	width: 100%;
}
.hour table {
	width: 100%;
	margin-bottom: 10px;
}
.hour table th {
	width: auto !important;
	padding-top: 12px;
  padding-bottom: 12px;
  font-size: 16px;
  font-weight: 400;
	line-height: 1.3;
	letter-spacing: 0.04em;
	text-align: center;
}
.hour table tbody tr th:first-of-type {
  width: 110px !important;
	padding: 16px !important;
	text-align: center !important;
}
.hour table tr td:first-child {
  font-size: 16px;
  font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0.04em;
	color: var(--text-color);
	text-align: center !important;
}
.hour table tbody tr td {
	padding-top: 12px !important;
	padding-right: 0 !important;
  padding-bottom: 12px !important;
	padding-left: 0 !important;
  border-top: 1px solid var(--text-color);
  font-size: 14px;
  font-weight: 500;
	line-height: 1.3;
	letter-spacing: 0.04em;
  vertical-align: middle;
	color: var(--main-color);
	text-align: center;
}
@media screen and (max-width: 750px) {
	.hour {
		width: 100% !important;
	}
	.hour table {
		width: 100% !important;
	}
	.hour table th {
		padding: 10px !important;
		font-size: 12px !important;
	}
	.hour table tbody tr th:first-of-type {
		width: 82px !important;
		padding: 10px !important;
	}
	.hour table tr td:first-child {
		font-size: 12px !important;
	}
	.hour table tbody tr td {
		font-size: 12px !important;
	}
}


#ez-toc-container {
  display: block;
	width: 880px !important;
	max-width: 100%;
	margin: 0 auto 40px;
  padding: 30px;
  background: #FFF !important;
  border: none !important;
  box-shadow: none;
  border-radius: 10px;
}
div#ez-toc-container .ez-toc-title {
	display: block !important;
	margin: 0 auto 10px;
	font-size: 24px;
	font-weight: 700;
	color: #0B2D80 !important;
	text-align: center !important;
}

.main ul.ez-toc-list li {
	list-style: disc !important;
	margin-bottom: 10px !important;
	border-bottom: 1px solid #D3D3D3;
}
.main ul.ez-toc-list li ul {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 0 10px;
}
.main ul.ez-toc-list li ul li {
	width: calc((100% - 10px) / 2);
	margin-bottom: 0 !important;
	border-bottom: none;
}
.main ul.ez-toc-list li a {
	display: block !important;
	padding: 10px 0;
	font-size: 16px !important;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0.1em;
	color: #434343 !important;
}
.main ul.ez-toc-list li a:visited {
  color: #434343 !important;
}
.main ul.ez-toc-list li a:hover {
  text-decoration: none !important;
}
@media screen and (max-width: 750px) {
	#ez-toc-container {
		width: 100% !important;
		margin: 0 auto 60px;
		padding: 40px 20px;
	}
	div#ez-toc-container .ez-toc-title {
		font-size: 20px;
	}
	.main ul.ez-toc-list li a {
		font-size: 14px !important;
	}
}
/*-----------------------------------------------------
	ページネーション
------------------------------------------------------*/
.pagination {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 80px 0 40px;
}
a.page-numbers, .pagination .current {
  display: block;
  margin: 0 5px;
	padding: 10px;
	background: #fff;
	border: 1px solid #2C231E;
  border-radius: 4px;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
	text-decoration: none;
}
span.page-numbers.dots {
  margin-right: 10px;
  font-size: 16px;
}
.pagination .current, a.page-numbers:hover {
	background: #2C231E;
	border: 1px solid #2C231E;
	color: #fff;
}
a.page-numbers.next, a.page-numbers.prev {
  display: none;
}
a.page-numbers.next, a.page-numbers.next:hover, a.page-numbers.prev, a.page-numbers.prev:hover {
	background: none;
	border: none;
}
a.page-numbers.next:hover, a.page-numbers.prev:hover {
  color: #2C231E;
}
@media screen and (max-width: 750px) {
  .pagination {
    margin: 60px 0 0;
  }
  a.page-numbers, .pagination .current {
    margin: 0 4px;
    font-size: 13px;
  }
  span.page-numbers.dots {
    margin-right: 9px;
    font-size: 13px;
  }
}
/*-----------------------------------------------------
	#menu_list
------------------------------------------------------*/
#menu_list {
  padding-bottom: 100px;
}
#menu_list .link_btn {
	margin-top: 30px;
}
#menu_list .flex::before {
  display: block;
  content: "";
  order: 1;
  width: 23%;
}
#menu_list .flex::after {
  display: block;
  content: "";
  width: 23%;
}
.menu_link {
  position: relative;
  display: block;
  width: 23%;
  height: 200px;
  margin-bottom: 30px;
  background: #F4F7FF;
  border: 1px solid #0B2D80;
  border-radius: 6px;
  text-align: center;
}
#menu_list .flex .menu_link:hover {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 1;
}
#menu_list .flex .menu_link:nth-of-type(1):hover {
  background-image: url("../img/common/menu_list_01+.webp");
}
#menu_list .flex .menu_link:nth-of-type(2):hover {
  background-image: url("../img/common/menu_list_02++.webp");
}
#menu_list .flex .menu_link:nth-of-type(3):hover {
  background-image: url("../img/common/menu_list_03++.webp");
}
#menu_list .flex .menu_link:nth-of-type(4):hover {
  background-image: url("../img/common/menu_list_04++.webp");
}
#menu_list .flex .menu_link:nth-of-type(5):hover {
  background-image: url("../img/common/menu_list_05++.webp");
}
#menu_list .flex .menu_link:nth-of-type(6):hover {
  background-image: url("../img/common/menu_list_06+.webp");
}
#menu_list .flex .menu_link:nth-of-type(7):hover {
  background-image: url("../img/common/menu_list_07+.webp");
}
#menu_list .flex .menu_link:nth-of-type(8):hover {
  background-image: url("../img/common/menu_list_08+.webp");
}
#menu_list .flex .menu_link:nth-of-type(9):hover {
  background-image: url("../img/common/menu_list_09+.webp");
}
#menu_list .flex .menu_link:nth-of-type(10):hover {
  background-image: url("../img/common/menu_list_010+.webp");
}
#menu_list .flex .menu_link:nth-of-type(11):hover {
  background-image: url("../img/common/menu_list_011+.webp");
}
#menu_list .flex .menu_link:nth-of-type(12):hover {
  background-image: url("../img/common/menu_list_012+.webp");
}
#menu_list .flex .menu_link:nth-of-type(13):hover {
  background-image: url("../img/common/menu_list_013+.webp");
}
#menu_list .flex .menu_link:nth-of-type(14):hover {
  background-image: url("../img/common/menu_list_014+.webp");
}
#menu_list .flex .menu_link:nth-of-type(15):hover {
  background-image: url("../img/common/menu_list_015+.webp");
}
#menu_list .flex .menu_link:nth-of-type(16):hover {
  background-image: url("../img/common/menu_list_016+.webp");
}
.menu_link h2 {
  position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
  width: 100%;
  font-size: 24px;
  font-weight: 500;
	line-height: 1.4;
}
.menu_link h2 span {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  color: #0B2D80;
}
.menu_link:hover h2, .menu_link:hover h2 span {
  color: #fff;
  opacity: 1;
}
.price_link {
  display: block;
  position: relative;
  width: 800px;
  max-width: 100%;
  margin: 60px auto 0;
  padding: 60px 10px;
  background: #0B2D80;
  border-radius: 6px;
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  line-height: 1.6;
  text-align: center;
}
.price_link::after {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	right: 40px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
  width: 34px;
  height: 34px;
  background: url("../img/common/arrow_04.png") no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 1080px) {
  .menu_link {
    width: 49%;
    height: 200px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 840px) {
  .price_link {
    width: calc(100% - 40px);
  }
}
@media screen and (max-width: 750px) {
  #menu_list {
    padding-bottom: 92px;
  }
  #menu_list .flex::before {
    display: none;
  }
  #menu_list .flex::after {
    display: none;
  }
  .menu_link {
    height: 140px;
    margin-bottom: 10px;
  }
  .menu_link h2 {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    -webkit-transform: none;
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 20px;
    text-align: center;
  }
  .menu_link h2 span {
    font-size: 2vw;
  }
  .menu_link p {
    position: relative;
    bottom: 0;
    width: 100%;
  }
  .menu_link p span {
    font-size: 11px;
    line-height: 1.4;
  }
  .menu_link p span::after {
    width: 30px;
  }
  .price_link {
    margin: 60px auto;
    padding: 30px 20px;
    font-size: 20px;
    text-align: left;
  }
  .price_link::after {
    top: auto;
    bottom: 10px;
    right: 10px;
    transform: none;
    -webkit-transform: none;
  }
}
/*-----------------------------------------------------
	#news
------------------------------------------------------*/
#news {
  padding: 100px 0 20px;
}
#news .wrap {
  width: 980px;
  margin: 0 auto 80px;
}
.news_l {
  width: 20.6%;
}
.news_l h2 {
  margin-bottom: 25px;
  text-align: left;
}
.news_r {
  width: 71%;
  padding-top: 20px;
}
.news_r dl {
  -webkit-box-align: center;
  align-items: center;
  position: relative;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #D6D6D6;
}
.news_r dl:last-of-type {
  margin-bottom: 0;
}
.news_r dl::after {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
  z-index: 1;
  width: 7px;
  height: 11px;
  background: url("../img/common/arrow_02.png") no-repeat center center;
  background-size: cover;
}
.news_r dl dt {
  position: relative;
  width: 16.66666666666667%;
  padding: 0 10px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
}
.news_r dl dd {
  position: relative;
  width: 83.33333333333333%;
  padding: 0 40px 0 20px;
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (max-width: 1020px) {
  #news .wrap {
    width: calc(100% - 40px);
  }
  .news_l {
    width: 100%;
    text-align: right;
  }
  .news_l h2 {
    margin-bottom: 0;
  }
  .news_l .link_btn {
    display: inline-block;
    position: relative;
    top: -40px;
  }
  .news_r {
    width: 100%;
    padding-top: 0;
  }
}
@media screen and (max-width: 750px) {
  #news {
    padding: 60px 0;
  }
  .news_r dl dt {
    width: 25%;
    padding: 0 10px 0 0;
    font-size: 12px;
    text-align: left;
  }
  .news_r dl dd {
    width: 75%;
  }
}

/*-----------------------------------------------------
	#f_access
------------------------------------------------------*/
#f_access {
  padding: 100px 0;
}
#f_access h2 {
  text-align: left;
}
.access_information {
  width: 46%;
}
.access_information dl {
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #D6D6D6;
  font-size: 18px;
  text-align: left;
}
.access_information dl:first-of-type {
  padding-top: 0;
}
.access_information dl dt {
  width: 18%;
  font-weight: 700;
  line-height: 1.6;
}
.access_information dl dd {
  width: 82%;
  line-height: 1.6;
}
.access_information dl dd strong {
  margin-right: 10px;
  font-weight: 500;
}
.access_information dl dd span {
  font-size: 14px;
}
.access_information a {
  display: inline-block;
  margin-top: 30px;
}
.access_map {
  width: 50%;
}
.access_map iframe {
  width: 100%;
  height: 100%;
}
.access_bottom {
	align-items: center;
	width: 940px;
	margin: 60px auto 0;
	padding: 10px;
	background: #fff;
}
.access_bottom_l {
	width: 50%;
	padding-left: 50px;
}
.access_bottom_l p {
	font-size: 18px;
	font-weight: 500;
	line-height: 1.95;
}
.access_bottom_r {
	width: 50%;
	padding-left: 50px;
}
.access_bottom_r img {
	width: 100%;
}
@media screen and (max-width: 1080px) {
  .access_information dl dt {
    width: 28%;
  }
  .access_information dl dd {
    width: 72%;
  }
	.access_bottom {
		width: 100%;
	}
	.access_bottom_l {
		padding-left: 20px;
	}
	.access_bottom_r {
		padding-left: 20px;
	}
}
@media screen and (max-width: 750px) {
  #f_access {
    padding: 80px 0 0;
  }
  #f_access .wrap {
    width: 100%;
  }
  .access_information {
    width: 100%;
    margin-bottom: 30px;
    padding: 0 20px;
  }
  .access_information dl {
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 15px;
  }
  .access_information dl:first-of-type {
    padding-top: 0;
  }
  .access_information dl dt {
    width: 22%;
  }
  .access_information dl dd {
    width: 78%;
  }
  .access_information dl dd span {
    font-size: 12px;
  }
  .access_information a {
    display: block;
    margin-top: 20px;
  }
  .access_map {
    width: 100%;
  }
  .access_map iframe {
    width: 100%;
    height: 350px;
  }
	.access_bottom {
		margin: 40px auto 0;
		padding: 30px 20px 20px;
	}
	.access_bottom_l {
		width: 100%;
		margin-bottom: 20px;
		padding-left: 0;
	}
	.access_bottom_l p {
		font-size: 14px;
		text-align: center;
	}
	.access_bottom_r {
		width: 100%;
		padding-left: 0;
	}
}

/*-----------------------------------------------------
	footer
------------------------------------------------------*/
footer {
  padding: 50px 20px 60px;
  text-align: center;
}
footer img {
  width: 112px;
}
footer ul.flex {
  -webkit-box-pack: center;
  justify-content: center;
  margin-top: 40px;
	gap: 15px 0;
}
footer ul li a {
  display: block;
  padding: 0 40px;
  border-right: 1px solid #434343;
  font-size: 16px;
  font-weight: 500;
}
footer ul li:first-child a {
  padding-left: 0;
}
footer ul li:last-child a {
  padding-right: 0;
  border-right: none;
}
@media screen and (max-width: 950px) {
  footer ul li a {
    padding: 0 20px;
  }
  footer ul li:first-child a {
    padding-left: 0;
  }
  footer ul li:last-child a {
    padding-right: 0;
    border-right: none;
  }
}
@media screen and (max-width: 750px) {
  footer {
    padding: 39px 20px 90px;
  }
  footer img {
    width: 200px;
  }
  footer ul.flex {
    margin-top: 30px;
	 gap: 0;
  }
  footer ul li {
    width: 33%;
    margin-bottom: 30px;
  }
  footer ul li a {
    padding: 0;
    font-size: 13px;
  }
  footer ul li:nth-of-type(3n) a {
    border-right: none;
  }
}
/*-----------------------------------------------------
	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;
	}
  /*-----------------------------------------------------
      pagetop
  ------------------------------------------------------*/
  .pageTop {
      margin: 30px auto 30px;
  }

	/*-----------------------------------------------------
		others
	------------------------------------------------------*/
	.tb {
		display: block !important;
	}
	.pc {
		display: none !important;
	}
}

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











/*-----------------------------------------------------
	contact関連
------------------------------------------------------*/

/* フォーム全体のスタイル */
.wpcf7 {
margin: auto;
}
/* ラベルのスタイル */
.wpcf7-form label {
display: block;
margin-bottom: 10px;
font-size: 16px;
color: #333333; /* ダークグレー */
}
/* 必須フィールドのラベルスタイル */
.wpcf7-form .required {
background-color: #ff0000; /* レッド */
color: white;
padding: 2px 5px;
border-radius: 3px;
margin-left: 10px;
font-size: 12px;
}

.wpcf7-list-item {
	    margin: 0;
	padding-right: 20px;
}

/* インプットフィールドのスタイル */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="email"]{
	margin-top: 5px;
width: 100%;
padding: 10px;
border: 1px solid #cccccc; /* ライトグレー */
border-radius: 5px;
margin-bottom: 10px;
font-size: 16px;
background-color: #ffffff; /* 白 */
}

/* インプットフィールドのスタイル */
.wpcf7-form textarea {
		margin-top: 5px;
width: 100%;
padding: 10px;
border: 1px solid #cccccc; /* ライトグレー */
border-radius: 5px;
margin-bottom: 10px;
font-size: 16px;
background-color: #ffffff; /* 白 */
}
/* テキストエリアのスタイル */
.wpcf7-form textarea {
height: 150px;
resize: vertical;
}
.wpcf7-form label {
	cursor: pointer;
}
/* 送信ボタンのスタイル */
.wpcf7-form input[type="submit"] {
background-color: #0B2D80; /* ブルー */
color: white;
cursor: pointer;
transition: background-color 0.3s ease;
border: none;
	
		font-size: 16px;
	padding: 10px 15px;
	display: block;
	margin: 0 auto;
	
	border-radius: 5px;
	
}
.wpcf7-form input[type="submit"]:hover {
background-color: #5697b3; /* 濃いブルー */
}
/* エラーメッセージと成功メッセージのスタイル */
.wpcf7-form .wpcf7-not-valid-tip {
color: red;
font-size: 14px;
}
.wpcf7-form .wpcf7-mail-sent-ok {
color: green;
font-size: 16px;
margin-bottom: 20px;
}
.cform {
	margin-bottom: 30px;
}

@media screen and (max-width: 750px) {
	table.cform tr th {
		display: block;
		width: 100%;
		text-align: left;
	}
	table.cform tr td {
		display: block;
		width: 100%;
	}
}
/*-----------------------------------------------------
	#asked_dentist
------------------------------------------------------*/
.width100 {
  width: 100%!important;
}
.main.ask  .wp-block-group__inner-container, .main.ask  .wrap {
  padding: 80px 0;
}
.main.ask .blue_bg {
  margin: 50px auto;
}
.main.ask .blue_bg .wp-block-group__inner-container {
  padding-left: 30px;
  padding-right: 30px;
}
.main.ask .blue_bg figure {
  max-width: 100%;
}
.main.ask h1 {
  margin-bottom: 50px;
  font-weight: 700;
}
.main.ask .wp-block-group:first-of-type .wp-block-group__inner-container {
  padding-top: 0;
}
@media screen and (max-width: 750px) {
  .main.ask  .wp-block-group__inner-container, .main.ask .wrap {
    padding: 40px 10px;
  }
  .main.ask .wrap:first-of-type {
    padding-top: 0!important;
  }
  .main.ask .blue_bg {
    margin: 25px auto;
  }
  .main.ask .blue_bg .wp-block-group__inner-container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .main.ask h1 {
    font-size: 25px;
    line-height: 1.5;
  }
  .main.ask h2 {
    font-size: 20px;
  }
  .main.ask p {
    font-size: 15px;
  }
}