<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
* {
  box-sizing: border-box;
}

:root {
  --primary-color:#066ED4;
  --unit: 1rem;
  --small: 240px;
}

.Poppins {
  font-family: "Poppins", sans-serif;
  font-display: swap;
}

/*/////////// base ////////////*/
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-display: swap;
  font-size: var(--unit);
  line-height: 1.2;
  color: #000;
  background: #FFF none no-repeat 0 0 scroll;
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
}

.font_large {
  font-size: 114%;
}

.red {
  color: #FF0000;
}

.align_center {
  text-align: center;
}

.banner {
  width: 100%;
  padding: 40px 0px;
}
.banner ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 100%;
}
.banner ul li {
  width: 48%;
}
.banner ul li .cover {
  overflow: hidden;
  cursor: pointer;
}
.banner ul li .cover img {
  width: 100%;
  transition-duration: 0.5s;
  z-index: 1;
}
.banner ul li a {
  display: block;
}
.banner ul li a:hover img {
  transform: scale(1.1);
  transition-duration: 0.5s;
}

.img__border {
  box-sizing: border-box;
  padding: 3px;
  border: 1px solid #CCC;
}

.fixed__bottom_banner {
  display: none;
}

.main__content {
  padding: 20px 0px 50px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.main__content .page_left {
  width: 25%;
}
.main__content .page_left .side__nav {
  position: sticky;
  top: 0px;
  padding-top: 30px;
}
.main__content .page_left .side__nav .nav__item {
  width: 100%;
  display: block;
  padding: 15px 15px 15px 20px;
  box-sizing: border-box;
  position: relative;
  text-align: left;
  transition: 0.5s all;
}
.main__content .page_left .side__nav .nav__item:hover {
  color: #FFF;
  background: #2A5B88;
}
.main__content .page_left .side__nav .nav__item:hover a {
  color: #FFF;
}
.main__content .page_left .side__nav .nav__item:before {
  content: "\f105";
  font-family: FontAwesome;
  position: absolute;
  left: 5px;
  top: 15px;
}
.main__content .page_left .side__nav .active:before {
  content: "\f107";
  font-family: FontAwesome;
  position: absolute;
  left: 5px;
  top: 15px;
}
.main__content .page_left .side__nav .parent + ul {
  display: none;
}
.main__content .page_left .side__nav .sub_nav__item {
  padding: 3px 3px 3px 33px;
  margin-bottom: 2px;
  position: relative;
  text-align: left;
  line-height: 1.6;
  transition: 0.5s all;
}
.main__content .page_left .side__nav .sub_nav__item:hover {
  color: #FFF;
  background: #2A5B88;
}
.main__content .page_left .side__nav .sub_nav__item:hover a {
  color: #FFF;
}
.main__content .page_left .side__nav .sub_nav__item:before {
  content: "・";
  position: absolute;
  left: 15px;
  top: 0px;
}
.main__content .page_left .side__nav .link__active {
  color: #FFF;
  background: #2A5B88;
}
.main__content .page_left .active {
  padding-top: 180px;
}
.main__content .page_left .nav__ttl {
  border-bottom: 1px solid #CCC;
  font-size: 204%;
  padding-bottom: 28px;
  margin-bottom: 20px;
}
.main__content .page_right {
  width: 73%;
  padding-top: 30px;
}
.main__content .page_right .content__indent {
  box-sizing: border-box;
  padding-left: 40px;
}

.page_sub__ttl {
  font-size: 174%;
  padding: 2px 0px 0px 40px;
  margin-bottom: 30px;
  color: #758AC5;
  background: url("../img/circle.png") no-repeat left 0px;
}

.local_ttl {
  margin-bottom: 20px;
  position: relative;
  font-size: 164%;
  color: #758AC5;
}

.small_ttl {
  margin-bottom: 30px;
  position: relative;
  font-size: 124%;
  color: #000;
  padding-left: 20px;
}
.small_ttl:before {
  background: #2A5B88;
  content: "";
  display: inline-block;
  position: absolute;
  left: 0px;
  top: -4px;
  width: 4px;
  height: 30px;
  vertical-align: 10px;
}
.small_ttl span {
  font-size: 74%;
}

.cap {
  background: #F3F7F9;
  color: #758AC5;
  text-align: center;
  font-weight: bold;
  font-size: 134%;
  padding: 20px;
  box-sizing: border-box;
}

.sm__tbl__500 {
  max-width: 500px;
}

.sm__tbl__760 {
  max-width: 760px;
}

.basic_tbl, .new_line__tbl {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0px;
  box-sizing: border-box;
}
.basic_tbl tr, .new_line__tbl tr {
  width: 100%;
}
.basic_tbl th, .basic_tbl td, .new_line__tbl th, .new_line__tbl td {
  box-sizing: border-box;
  border: 1px solid #CCCCCC;
  text-align: center;
  padding: 10px;
}
.basic_tbl th p, .basic_tbl td p, .new_line__tbl th p, .new_line__tbl td p {
  line-height: 1.6;
}
.basic_tbl th, .new_line__tbl th {
  background: #F3F7F9;
  font-size: 114%;
}

.cap__list_items {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cap__list_items .box {
  width: 48%;
}
.cap__list_items .left {
  background: #F3F7F9;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.cap__list_items .left .sub_ttl {
  color: #758AC5;
  font-size: 144%;
  padding: 20px;
  box-sizing: border-box;
}
.cap__list_items .left .sub_ttl span {
  font-size: 70%;
}
.cap__list_items .right {
  width: 100%;
}
.cap__list_items .right .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cap__list_items .right .list li {
  padding-left: 18px;
  margin-bottom: 10px;
  position: relative;
  width: 48%;
  box-sizing: border-box;
  text-align: left;
  font-size: 108%;
}
.cap__list_items .right .list li:before {
  content: "\f192";
  font-display: swap;
  font-family: FontAwesome;
  position: absolute;
  left: 0px;
  top: 3px;
  color: #758AC5;
  font-size: 70%;
}
.cap__list_items .right .list li:last-child {
  margin-bottom: 0px;
}

.list__group .box {
  border: 1px solid #CCCCCC;
  counter-increment: section;
  margin-bottom: 30px;
}
.list__group .box:last-child {
  margin-bottom: 0px;
}
.list__group .box .sub_ttl {
  background: #F3F7F9;
  border-bottom: 1px solid #CCCCCC;
  padding: 10px 10px 10px 10px;
  position: relative;
  box-sizing: border-box;
  font-size: 134%;
}
.list__group .box .sub_ttl span {
  font-size: 74%;
}
.list__group .box .txt {
  box-sizing: border-box;
  padding: 10px;
}
.list__group .box ul {
  box-sizing: border-box;
  padding: 10px;
}
.list__group .box ul li {
  padding-left: 18px;
  margin-bottom: 2px;
  position: relative;
  text-align: left;
  line-height: 1.6;
}
.list__group .box ul li:before {
  content: "・";
  position: absolute;
  left: 0px;
  top: 0px;
}
.list__group .box ul li:last-child {
  margin-bottom: 0px;
}

.number_list__group .box {
  border: 1px solid #CCCCCC;
  counter-increment: section;
  margin-bottom: 30px;
}
.number_list__group .box:last-child {
  margin-bottom: 0px;
}
.number_list__group .box .sub_ttl {
  background: #F3F7F9;
  border-bottom: 1px solid #CCCCCC;
  padding: 10px 10px 10px 45px;
  position: relative;
  box-sizing: border-box;
  font-size: 134%;
}
.number_list__group .box .sub_ttl:before {
  content: counter(section) ".";
  font-weight: 500;
  position: absolute;
  left: 15px;
  top: 10px;
}
.number_list__group .box .txt {
  box-sizing: border-box;
  padding: 10px;
}

footer address {
  text-align: center;
  padding: 40px 0px;
  width: 100%;
  display: block;
}
footer address span {
  font-size: 124%;
  display: inline-block;
  padding-bottom: 10px;
}
footer .copy {
  color: #999999;
  font-size: 94%;
  text-align: center;
  margin-bottom: 40px;
}
footer .bottom__link {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  padding-top: 20px;
}
footer .bottom__link li {
  position: relative;
  text-align: center;
  margin-right: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
footer .bottom__link li:last-child {
  margin-right: 0px;
  padding-right: 0px;
}
footer .bottom__link li:not(:last-child):after {
  content: "";
  position: absolute;
  right: 0px;
  top: 0px;
  width: 1px;
  background: #CCC;
  height: 100%;
}
footer .sub__link {
  position: relative;
  width: 100%;
  min-height: 220px;
  z-index: 1;
}
footer .sub__link:after {
  content: "";
  background: #F3F1EB;
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 80%;
  height: 70%;
  border-radius: 20px 0px 0px 0px;
  z-index: -1;
}
footer .sub__link ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  z-index: 1;
  padding-top: 30px;
  box-sizing: border-box;
}
footer .sub__link ul li {
  width: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s all;
}
footer .sub__link ul li:hover {
  opacity: 0.7;
}
footer .sub__link ul li:hover a {
  color: #758AC5;
}
footer .sub__link ul li a {
  display: block;
  transition: 0.5s all;
}
footer .sub__link ul li p {
  padding-top: 20px;
  font-weight: bold;
}
footer .footer_content {
  width: 100%;
  box-sizing: border-box;
  padding-bottom: 50px;
  background: #E0E7EF;
  position: relative;
  z-index: 1;
}
footer .footer_content .logo img {
  max-width: 80%;
}
footer .footer_content .pagetop {
  position: absolute;
  right: 20px;
  bottom: 10px;
  width: 120px;
  text-align: center;
  color: #609BC8;
  z-index: 2;
}
footer .footer_content .pagetop a {
  display: block;
  color: #609BC8;
}
footer .footer_content .pagetop p {
  padding-top: 10px;
}
footer .footer_content .link {
  width: 100%;
}
footer .footer_content .link ul {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 20px;
}
footer .footer_content .link ul:before {
  content: "";
  display: block;
  width: 32%;
  height: 0;
  order: 1;
}
footer .footer_content .link ul .icon:before {
  content: url("../img/link.png");
  width: 20px;
  height: 17px;
  right: 10px;
  top: 13px;
  position: absolute;
}
footer .footer_content .link ul li {
  margin-bottom: 15px;
  width: 32%;
}
footer .footer_content .link ul li a {
  background: #FFF;
  border: 1px solid #CCC;
  padding: 15px 15px 15px 30px;
  position: relative;
  display: block;
  font-size: 94%;
  box-sizing: border-box;
  transition: 0.5s all;
}
footer .footer_content .link ul li a:hover {
  opacity: 0.6;
}
footer .footer_content .link ul li a:after {
  content: "●";
  left: 10px;
  top: 13px;
  position: absolute;
}
footer .footer_content .link ul li:nth-child(1n) a:after {
  color: #69CFED;
}
footer .footer_content .link ul li:nth-child(2n) a:after {
  color: #A6DD00;
}
footer .footer_content .link ul li:nth-child(3n) a:after {
  color: #F7A2A4;
}
footer .footer_content .link ul li:nth-child(4n) a:after {
  color: #99B3FF;
}
footer .footer_content .link ul li:nth-child(5n) a:after {
  color: #F4AAD3;
}
footer .footer_content .link ul li:nth-child(6n) a:after {
  color: #3C81BF;
}
footer .footer_content .link ul li:nth-child(7n) a:after {
  color: #FFA953;
}
footer .footer_content .link ul li:nth-child(8n) a:after {
  color: #AEAEFF;
}

.top__news {
  background: #F3F7F9;
  width: 100%;
  box-sizing: border-box;
  padding: 30px 0px;
  margin-top: 40px;
}
.top__news .content {
  margin-bottom: 20px;
}
.top__news .content .news {
  border-top: 1px solid #CCC;
  width: 100%;
  display: none;
}
.top__news .content .news .list_item {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  border-bottom: 1px solid #CCC;
  padding: 15px 0px;
  box-sizing: border-box;
}
.top__news .content .news .list_item .date {
  width: 15%;
  margin-right: 3%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.top__news .content .news .list_item .cat {
  width: 15%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 3%;
}
.top__news .content .news .list_item .cat a {
  display: block;
  border-radius: 40px;
  padding: 7px 0px;
  box-sizing: border-box;
  text-align: center;
  width: 100%;
}
.top__news .content .news .list_item .cat .important {
  background: #FF0000;
  color: #FFF;
}
.top__news .content .news .list_item .cat .normal {
  color: #758AC5;
  border: 1px solid #CCC;
  background: #FFF;
}
.top__news .content .news .list_item .txt {
  text-align: left;
}
.top__news .content .news .list_item .txt a {
  text-decoration: underline;
  color: #758AC5;
}
.top__news .show {
  display: block !important;
}
.top__news .tab_active {
  color: #FFF !important;
}
.top__news .tab_active:after {
  opacity: 1 !important;
}
.top__news .tab_active:before {
  opacity: 1 !important;
}
.top__news .tab__area {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-bottom: 30px;
}
.top__news .tab__area .sub_ttl {
  color: #758AC5;
  font-size: 134%;
  padding: 20px 0px;
}
.top__news .tab__area .outer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 60%;
}
.top__news .tab__area .outer ul {
  border-radius: 10px;
  display: flex;
  width: 100%;
  justify-content: flex-end;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px;
}
.top__news .tab__area .outer ul li {
  position: relative;
  background: #FFF;
  cursor: pointer;
  color: #758AC5;
  padding: 20px;
  text-align: center;
  width: 20%;
  z-index: 1;
}
.top__news .tab__area .outer ul li:hover a {
  color: #FFF;
}
.top__news .tab__area .outer ul li:hover a:after, .top__news .tab__area .outer ul li:hover a:before {
  opacity: 1;
}
.top__news .tab__area .outer ul li a {
  color: #758AC5;
  z-index: 2;
}
.top__news .tab__area .outer ul li a:before {
  content: "";
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  z-index: -1;
  border-radius: 10px;
  width: 90%;
  height: 90%;
  background: #353A3E;
  transition: 0.5s all;
}
.top__news .tab__area .outer ul li a:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #353A3E transparent transparent transparent;
  position: absolute;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  bottom: 0px;
  transition: 0.5s all;
  opacity: 0;
}
.top__news .tab__area .outer ul li:not(:last-child):after {
  content: "";
  background: #E8E9EB;
  position: absolute;
  top: 10%;
  right: 0px;
  width: 1px;
  height: 80%;
}

.top__medical_center {
  width: 100%;
  box-sizing: border-box;
  position: relative;
  min-height: 400px;
  margin-top: 40px;
}
.top__medical_center:before {
  content: "";
  width: 100%;
  height: 230px;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: -1;
  background: #95e4ff;
  background: linear-gradient(90deg, #95e4ff 0%, #2693ff 96%);
}
.top__medical_center .sub_ttl {
  font-size: 174%;
  text-align: center;
  padding: 30px 0px;
  color: #FFF;
}
.top__medical_center ul {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.top__medical_center ul li {
  width: 22%;
}
.top__medical_center ul li .cover {
  overflow: hidden;
  cursor: pointer;
}
.top__medical_center ul li .cover img {
  width: 100%;
  transition-duration: 0.5s;
  z-index: 1;
}
.top__medical_center ul li a {
  display: block;
}
.top__medical_center ul li a:hover img {
  transform: scale(1.1);
  transition-duration: 0.5s;
}
.top__medical_center ul li .box {
  background: #F3F7F9;
  padding: 10px;
  box-sizing: border-box;
}
.top__medical_center ul li .box h3 {
  color: #758AC5;
  font-size: 114%;
  margin-bottom: 10px;
}

.top__sub_link {
  width: 100%;
  margin-top: -100px;
  position: relative;
  z-index: 1;
}
.top__sub_link .outer {
  width: 1300px;
  margin: 0px auto;
}
.top__sub_link .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.top__sub_link .list .list_item {
  width: 15%;
  border-radius: 10px;
  background: #FFF;
  border: 1px solid #e8e8e8;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.top__sub_link .list .list_item:not(:last-child) {
  cursor: pointer;
}
.top__sub_link .list .list_item div {
  padding: 0px 10px;
  box-sizing: border-box;
}
.top__sub_link .list .list_item div figcaption {
  padding-top: 10px;
  font-size: 124%;
}
.top__sub_link .list .active {
  background: #6F9EC2;
  border: 1px solid #6F9EC2;
}
.top__sub_link .list .active div figcaption {
  color: #FFF;
}
.top__sub_link .content .box {
  width: 100%;
  background: #6F9EC2;
  padding: 30px;
  border-radius: 10px;
  margin-top: 30px;
  box-sizing: border-box;
  display: none;
}
.top__sub_link .content .box p {
  color: #FFF;
}
.top__sub_link .content .box p a {
  color: #FFF;
  display: block;
  position: relative;
  box-sizing: border-box;
  padding-left: 20px;
  font-size: 114%;
}
.top__sub_link .content .box p a:before {
  content: "&gt;";
  position: absolute;
  left: 0px;
  color: #FFF;
  top: 0px;
}
.top__sub_link .content .box dl {
  padding-left: 20px;
  width: 100%;
  display: grid;
  box-sizing: border-box;
  grid-template-columns: repeat(auto-fit, 30%);
  grid-row-gap: 20px;
  grid-column-gap: 10px;
}
.top__sub_link .content .box dl dt a {
  color: #FFF;
  display: block;
  position: relative;
  box-sizing: border-box;
  padding-left: 20px;
  font-size: 114%;
}
.top__sub_link .content .box dl dt a:before {
  content: "・";
  position: absolute;
  left: 0px;
  color: #FFF;
  top: 0px;
}
.top__sub_link .content .box ul {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, 30%);
  grid-row-gap: 20px;
  grid-column-gap: 10px;
}
.top__sub_link .content .show {
  display: block;
}

.breadcrumb {
  margin-top: 130px;
  padding: 50px 50px 20px 20px;
  box-sizing: border-box;
  color: #888888;
}
.breadcrumb a {
  color: #888888;
}

.main__img {
  background: url("../img/main_img.jpg") no-repeat 0px 0px;
  background-size: cover;
background-position:center;
  height: 700px;
  width: 100%;
  padding-top: 100px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main__img .sub_ttl {
  width: 100%;
}
.main__img .sub_ttl h1 {
  color: #FFF;
  font-size: 324%;
  text-shadow: 0px 1px 11px rgba(105, 133, 213, 0.95);
  font-weight: 500;
  width: 100%;
  text-align: center;
}

.sedond_bg {
/*   background: url("../img/second.png") no-repeat 0px 0px; */
  background-size: cover;
  position: relative;
	background:#233a9d;
}

.second_main_img {
  width: 100%;
  height: 200px;
  box-sizing: border-box;
  background-size: cover;
  position: relative;
}
.second_main_img .second_text_area {
  position: absolute;
  left: 50%;
  top: 120px;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
}
.second_main_img .second_text_area .main__ttl {
  font-size: 244%;
  color: #fff;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.6);
}

.top__main_lead {
  text-align: center;
  width: 100%;
  font-size: 184%;
  padding: 50px 20px;
  box-sizing: border-box;
  font-weight: normal;
  line-height: 1.9;
}

.top__fixed_link {
  position: absolute;
  right: 0px;
  top: 30px;
  z-index: 2;
}
.top__fixed_link ul li {
  display: block;
  position: relative;
  border-radius: 10px 0px 0px 10px;
  transition: 0.5s all;
  margin-bottom: 20px;
}
.top__fixed_link ul li:hover {
  opacity: 0.7;
}
.top__fixed_link ul li:nth-child(1n) {
  background: #f4aad3;
  letter-spacing: 0.8em;
}
.top__fixed_link ul li:nth-child(2n) {
  background: #3c81bf;
  font-size: 84%;
  letter-spacing: 0em;
}
.top__fixed_link ul li:nth-child(2n) div {
  height: 220px;
  padding-top: 40px;
}
.top__fixed_link ul li:nth-child(3n) {
  background: #ffa953;
  letter-spacing: 0.2em;
}
.top__fixed_link ul li:nth-child(3n) div {
  height: 220px;
  padding-top: 50px;
}
.top__fixed_link ul li:nth-child(4n) {
  background: #aeaeff;
  letter-spacing: 0.4em;
}
.top__fixed_link ul li:nth-child(4n) div {
  height: 220px;
  padding-top: 65px;
}
.top__fixed_link ul li a {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  height: 220px;
  width: 40px;
  box-sizing: border-box;
  color: #FFF;
}
.top__fixed_link ul li a div {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  display: inline;
  transform: translate(-50%, -50%);
  writing-mode: vertical-rl;
}

.main__area {
  background: #f6f5f2;
}

.cost .w1000 {
  max-width: 1000px;
}
.cost .w600 {
  max-width: 600px;
}
.cost table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0px;
  box-sizing: border-box;
}
.cost table tr {
  width: 100%;
}
.cost table th, .cost table td {
  box-sizing: border-box;
  border: 1px solid #CCCCCC;
  text-align: center;
  padding: 20px;
  vertical-align: middle;
}
.cost table th .small, .cost table td .small {
  font-size: 84%;
}
.cost table th .blue, .cost table td .blue {
  color: #758AC5;
}
.cost table th {
  background: #F3F7F9;
  font-size: 114%;
  font-weight: normal;
}
.cost table td {
  background: #FFF;
}
.cost table .left {
  text-align: left;
}
.cost .noborder {
  border-top: none;
  border-right: none;
  border-bottom: none;
  background: transparent;
  text-align: left;
}

.calender {
  background: #FFF;
  padding: 30px 0px;
  box-sizing: border-box;
  width: 100%;
}
.calender .sub_ttl {
  text-align: center;
  color: #758AC5;
  font-size: 174%;
  margin-bottom: 30px;
  font-weight: normal;
}
.calender table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0px;
  box-sizing: border-box;
}
.calender table tr {
  width: 100%;
}
.calender table th, .calender table td {
  box-sizing: border-box;
  border: 1px solid #CCCCCC;
  text-align: center;
  padding: 20px;
  vertical-align: middle;
}
.calender table th .small, .calender table td .small {
  font-size: 84%;
}
.calender table th .blue, .calender table td .blue {
  color: #758AC5;
}
.calender table th {
  background: #F3F7F9;
  font-size: 114%;
  font-weight: normal;
}

.center__link {
  width: 100%;
  padding: 30px 0px;
  box-sizing: border-box;
  background: #E0E7EF;
}
.center__link ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
.center__link ul li {
  position: relative;
}
.center__link ul li a {
  box-sizing: border-box;
  padding: 0px 20px;
}
.center__link ul li a:hover {
  text-decoration: underline;
}
.center__link ul li:not(:last-child):after {
  content: "";
  position: absolute;
  right: 0px;
  top: 0px;
  width: 1px;
  background: #000000;
  height: 100%;
}

.top__feature_list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.top__feature_list ul li {
  width: 32%;
  margin-bottom: 30px;
}
.top__feature_list ul li .cover img {
  width: 100%;
  transition-duration: 0.5s;
  z-index: 1;
}
.top__feature_list ul li a {
  display: block;
}
.top__feature_list ul li a:hover img {
  transition-duration: 0.5s;
  opacity: 0.7;
}
.top__feature_list ul li a:hover p {
  text-decoration: underline;
}
.top__feature_list ul li a p {
  background: url("../img/arrow-s.png") no-repeat 10px 14px;
  box-sizing: border-box;
  padding: 10px 0px 0px 30px;
  font-size: 124.5%;
}
.top__feature_list ul li img {
    border-radius: 15px;
}
.top__feature {
  background: #FFF;
  padding: 20px 50px;
  box-sizing: border-box;
  border-radius: 20px;
  margin-bottom: 50px;
  width: 100%;
}
.top__feature .outer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.top__feature .outer .inner {
  width: 48%;
}
.top__feature .outer .inner ul li {
  border-bottom: 1px solid #CCC;
  position: relative;
  background: url("../img/arrow.png") no-repeat 10px 3px;
  box-sizing: border-box;
  padding: 0px 0px 15px 30px;
  font-size: 137.5%;
  margin-bottom: 15px;
}
.top__feature .outer .inner .sub_ttl {
  text-align: center;
  color: #758AC5;
  font-size: 174%;
  margin-bottom: 30px;
  font-weight: normal;
}

/*  アニメーションスタイル
-------------------------------------------*/
.bg-open-right {
  position: relative;
  z-index: 0;
}
.bg-open-right::after {
  content: "";
  background: #2b2d42;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  transition: left 1s ease-in-out;
}
.bg-open-right.is-show::after {
  left: 100vw;
}
.calender table th a, .calender table td a{
	color: #758AC5;
    text-decoration: underline;	
}
.bg-open-left {
  position: relative;
  z-index: 0;
}
.bg-open-left::after {
  content: "";
  background: #2b2d42;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  transition: right 1s ease-in-out;
}
.bg-open-left.is-show::after {
  right: 100vw;
}

.slide-left {
  position: relative;
  left: 100vw;
  transition: left 860ms ease-in-out;
}
.slide-left.is-show {
  left: 0;
}

.slide-right {
  position: relative;
  right: 100vw;
  transition: right 860ms ease-in-out;
}
.slide-right.is-show {
  right: 0;
}

.slide-up {
  position: relative;
  top: 10%;
  opacity: 0;
  transition: top 860ms, opacity 1s;
}
.slide-up.is-show {
  top: 0;
  opacity: 1;
}

.yumincho {
  font-display: swap;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
}

.mincho {
  font-display: swap;
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
}

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

.close {
  animation: anim 0.8s forwards;
  animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  pointer-events: none;
}

@keyframes anim {
  0% {
    height: 100vh;
  }
  100% {
    height: 0px;
  }
}
@keyframes anim_tate {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-50px);
    opacity: 0;
  }
}
.content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.content .main {
  width: 100%;
}

.img_w100 {
  width: 100%;
}

.img_max100 {
  max-width: 100%;
}

.clearfix, .wrapper, .main_wrapper {
  *zoom: 1;
}
.clearfix:after, .wrapper:after, .main_wrapper:after {
  content: "";
  display: table;
  clear: both;
}

a {
  text-decoration: none;
  color: #000;
}

p {
  line-height: 1.6;
}

strong {
  font-weight: 700;
  font-size: 104%;
}

.pt_20 {
  padding-top: 20px;
}

.mr_0 {
  margin-right: 0px !important;
}

.mt_10 {
  margin-top: 10px;
}

.mt_20 {
  margin-top: 20px;
}

.mt_30 {
  margin-top: 30px;
}

.mt_40 {
  margin-top: 40px;
}

.mt_60 {
  margin-top: 60px;
}

.mb_10 {
  margin-bottom: 10px;
}

.mb_20 {
  margin-bottom: 20px;
}

.mb_30 {
  margin-bottom: 30px;
}

.mb_40 {
  margin-bottom: 40px;
}

.mb_60 {
  margin-bottom: 60px;
}

strong {
  font-weight: 700;
}

sup {
  font-size: 54%;
}

.pc_none {
  display: none;
}

@keyframes vertical {
  0% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}
.pagetop_icon {
  text-align: center;
  padding: 30px 0px 30px;
}
.pagetop_icon a {
  display: block;
  color: #758AC5;
}

.center {
  text-align: center;
}

.align_right {
  text-align: right;
}

.sm_font {
  font-size: 74%;
}

.align_left {
  text-align: left !important;
}

.map {
  width: 100%;
  height: 700px;
  margin-bottom: 30px;
}

.content_block {
  padding: 50px 0px 40px;
}

.sub__wrap {
  max-width: 1300px;
  box-sizing: border-box;
  margin: 0px auto;
  width: 100%;
  padding: 0px 20px;
}

.small__wrap {
  max-width: 760px;
  box-sizing: border-box;
  margin: 0px auto;
  width: 100%;
  padding: 0px 20px;
}

.point {
  background: #f5f7fa;
  padding: 20px;
  box-sizing: border-box;
  line-height: 1.5;
}
.point .sub_ttl {
  font-size: 154%;
  text-align: center;
  color: #2b2d42;
}
.point .sub_ttl span {
  font-size: 60%;
}

.common_btn {
  max-width: 400px;
  width: 80%;
  display: block;
  padding: 20px 0px 20px 0px;
  line-height: 1;
  box-sizing: border-box;
  text-decoration: none;
  transition: 0.5s all;
  position: relative;
  text-align: center;
  font-size: 700;
  margin: 0px auto;
  font-size: 114%;
  color: #FFF;
  background: #758AC5;
}
.common_btn:hover {
  opacity: 0.7;
}

.sm_common_btn {
  max-width: 240px;
  width: 80%;
  display: block;
  padding: 10px 0px 10px 0px;
  line-height: 1;
  box-sizing: border-box;
  text-decoration: none;
  transition: 0.5s all;
  position: relative;
  text-align: center;
  font-size: 700;
  border: 1px solid #888888;
  margin: 0 0 0 auto;
  font-size: 104%;
}
.sm_common_btn:before {
  content: "";
  position: absolute;
  top: 17px;
  left: -25px;
  height: 1px;
  background: #888888;
  width: 50px;
  transition: 0.5s all;
}
.sm_common_btn:hover:before {
  left: 0px;
}
.sm_common_btn:hover {
  opacity: 0.7;
}

.list__button {
  display: grid;
  gap: 2.6666666667%;
  grid-template-columns: repeat(4, 23%);
  width: 100%;
}
.list__button li a {
  display: block;
  background: #F3F7F9;
  border-top: 3px solid #758AC5;
  border-left: 1px solid #CCC;
  border-right: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
  padding: 15px 15px 15px 32px;
  margin-bottom: 2px;
  position: relative;
  font-weight: bold;
  transition: 0.5s all;
}
.list__button li a:before {
  content: "&gt;";
  position: absolute;
  left: 7px;
  color: #888888;
  top: 14px;
  font-weight: normal;
}
.list__button li a:hover {
  background: #758AC5;
  color: #FFF;
}

.img__ttl_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.img__ttl_list li {
  border-top: 3px solid #758AC5;
  border-left: 1px solid #CCC;
  border-right: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
  box-sizing: border-box;
  width: 32%;
  margin-bottom: 30px;
}
.img__ttl_list li:before {
  content: "";
  display: block;
  width: 32%;
  height: 0;
  order: 1;
}
.img__ttl_list li .inner {
  padding: 10px;
  box-sizing: border-box;
  width: 100%;
}
.img__ttl_list li .inner p {
  padding-left: 18px;
  margin-bottom: 2px;
  position: relative;
  text-align: left;
  line-height: 1.6;
  font-weight: bold;
}
.img__ttl_list li .inner p:before {
  content: "&gt;";
  position: absolute;
  left: 0px;
  color: #888888;
  top: 0px;
  font-weight: normal;
}
.img__ttl_list li .inner .cover {
  margin: 0 auto 20px;
  overflow: hidden;
  cursor: pointer;
}
.img__ttl_list li .inner .cover:hover img {
  transform: scale(1.1);
  transition-duration: 0.5s;
}
.img__ttl_list li .inner .cover img {
  width: 100%;
  transition-duration: 0.5s;
  z-index: 1;
}
.img__ttl_list li a {
  display: block;
  transition: 0.5s all;
}
.img__ttl_list li a:hover {
  opacity: 0.7;
}
.img__ttl_list li a:hover {
  text-decoration: underline;
}

.img_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
.img_list li {
  background: #fff;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  box-sizing: border-box;
  position: relative;
  margin-bottom: 25px;
  padding: 10px;
  width: 100%;
  width: 22%;
  text-align: center;
}
.img_list li p {
  font-size: 104%;
  font-weigh: bold;
  padding-top: 10px;
}
.img_list li a {
  display: block;
}

.itemlist_dl {
  margin-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.itemlist_dl:after {
  display: block;
  content: "";
  width: 32%;
}
.itemlist_dl dt {
  width: 32%;
  padding-left: 18px;
  margin-bottom: 2px;
  position: relative;
  text-align: left;
  line-height: 1.6;
  box-sizing: border-box;
}
.itemlist_dl dt:before {
  content: "・";
  position: absolute;
  left: 0px;
  top: 0px;
}
.itemlist_dl dt:last-child {
  margin-bottom: 0px;
}
.itemlist_dl dt span {
  display: inline-block;
  background: #333;
  color: #FFF;
  padding: 2px 10px;
}
.itemlist_dl dt a {
  text-decoration: underline;
}

.itemlist_squre {
  display: flex;
  flex-wrap: wrap;
}
.itemlist_squre li {
  padding: 20px 30px;
  text-align: center;
  font-size: 108%;
  margin-right: 30px;
  border: 1px solid #2b2d42;
  margin-bottom: 25px;
}

.itemlist {
  margin-bottom: 15px;
}
.itemlist li {
  padding-left: 18px;
  margin-bottom: 2px;
  position: relative;
  text-align: left;
  line-height: 1.6;
}
.itemlist li:before {
  content: "・";
  position: absolute;
  left: 0px;
  top: 0px;
}
.itemlist li:last-child {
  margin-bottom: 0px;
}
.itemlist li span {
  display: inline-block;
  background: #333;
  color: #FFF;
  padding: 2px 10px;
}
.itemlist li a {
  text-decoration: underline;
}

.list_dot_circle {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.list_dot_circle li {
  padding-left: 18px;
  margin-bottom: 10px;
  position: relative;
  width: 48%;
  box-sizing: border-box;
  text-align: left;
  font-size: 108%;
}
.list_dot_circle li:before {
  content: "\f192";
  font-display: swap;
  font-family: FontAwesome;
  position: absolute;
  left: 0px;
  top: 3px;
  color: #758AC5;
  font-size: 70%;
}
.list_dot_circle li:last-child {
  margin-bottom: 0px;
}
.list_dot_circle li a {
  text-decoration: underline;
}

.list__circle {
  margin-bottom: 15px;
}
.list__circle li {
  padding-left: 18px;
  margin-bottom: 10px;
  position: relative;
  text-align: left;
}
.list__circle li:before {
  content: "\f192";
  font-display: swap;
  font-family: FontAwesome;
  position: absolute;
  left: 0px;
  top: 3px;
  color: #758AC5;
  font-size: 70%;
}
.list__circle li:last-child {
  margin-bottom: 0px;
}
.list__circle li a {
  text-decoration: underline;
}
.list__circle li span {
  display: inline-block;
  background: #333;
  color: #FFF;
  padding: 2px 10px;
}

.checklist li {
  padding-left: 32px;
  margin-bottom: 15px;
  position: relative;
  width: 100% !important;
  box-sizing: border-box;
  font-size: 124%;
  line-height: 1.6;
  text-align: left;
}
.checklist li:before {
  content: "\f00c";
  font-display: swap;
  font-family: FontAwesome;
  position: absolute;
  left: 0px;
  top: 0px;
  color: #758AC5;
}
.checklist li:last-child {
  margin-bottom: 0px;
}

.list__notice {
  width: 100%;
}
.list__notice ul {
  border-top: 1px solid #CCC;
  width: 100%;
}
.list__notice ul li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  border-bottom: 1px solid #CCC;
  padding: 20px 0px;
  font-size: 108%;
}
.list__notice ul li .day {
  width: 30%;
  font-weight: bold;
  color: #758AC5;
}
.list__notice ul li .txt {
  width: 70%;
}

.number_list li {
  counter-increment: section;
  font-size: 100%;
  display: block;
  margin-bottom: 8px;
  padding-left: 30px;
  position: relative;
}
.number_list li:before {
  content: counter(section) ".";
  font-weight: 500;
  position: absolute;
  left: 0px;
  top: 0px;
}

.header {
  position: fixed;
  background: #FFF;
  z-index: 100;
  left: 0px;
  top: 0px;
  width: 100%;
  transition: 0.5s all;
  background: transparent;
}
.header .tagline {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 100%;
  transition: 0.5s all;
  position: relative;
  background: #FFF;
/*  padding-bottom: 15px;*/
}
.header .tagline .nav_box {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.header .tagline .nav_box .outer {
  width: 100%;
}
.header .tagline .nav_box .outer .nav {
  width: 100%;
  padding-top: 10px;
}
.header .tagline .nav_box .outer .nav ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
}
.header .tagline .nav_box .outer .nav ul li:not(:last-child) a:after {
  content: "";
  background: #CCC;
  position: absolute;
  top: 0px;
  right: 0px;
  width: 1px;
  height: 100%;
}
.header .tagline .nav_box .outer .nav ul li:last-child {
  margin-right: 30px;
}
.header .tagline .nav_box .outer .nav ul li a {
  padding: 3px 20px;
  box-sizing: border-box;
  position: relative;
  display: block;
  transition: 0.5s all;
}
.header .tagline .nav_box .outer .nav ul li a:hover {
  color: #758AC5;
}
.header .tagline .nav_box .outer .info {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  padding-top: 10px;
  padding-right: 20px;
}
.header .tagline .nav_box .outer .info .tel ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.header .tagline .nav_box .outer .info .tel ul .button {
  background: #758AC5;
  display: block;
  color: #FFF;
  padding: 2px 8px;
  margin: 5px 10px 0px 10px;
}
.header .tagline .nav_box .outer .info .tel ul .number {
  color: #2A5B88;
  font-size: 150%;
  font-weight: bold;
}
.header .tagline .nav_box .outer .info .time {
  background: #DAF0FA;
  height: 34px;
  padding: 3px;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.header .tagline .nav_box .outer .info .time .reserve {
  border: 1px solid #707070;
  background: #FFF;
  font-size: 90%;
  margin-left: 30px;
  padding: 1px 2px;
  box-sizing: border-box;
}
.header .tagline .nav_box .outer .info .time .sub_ttl dl {
  box-sizing: border-box;
  display: flex;
}
.header .tagline .nav_box .outer .info .time .sub_ttl dl dt {
  background: #7F9FFB;
  padding: 4px;
  box-sizing: border-box;
  color: #FFF;
  height: 28px;
}
.header .tagline .nav_box .outer .info .time .sub_ttl dl dd {
  font-size: 90%;
  padding: 6px 4px 4px 4px;
  box-sizing: border-box;
}
.header .tagline .nav_box .logo {
  width: 300px;
  padding: 10px 0px 5px 10px;
  box-sizing: border-box;
}

.fixed {
  box-sizing: border-box;
  box-shadow: 5px 5px 5px 5px rgba(0, 0, 0, 0.5);
}

.page__copy {
  font-size: 138%;
  text-align: center;
  line-height: 1.7;
  margin-bottom: 40px;
}

header {
  background: #FFF;
}

.wrapper, .main_wrapper {
  width: 1300px;
  margin: 0px auto;
}

.ttl {
  text-align: center;
  position: relative;
  line-height: 1.5;
  font-size: 240%;
  color: transparent;
  -webkit-background-clip: text;
  margin: 0px auto 30px;
}
.ttl span {
  display: inline-block;
}
.ttl .jp {
  font-size: 50%;
  color: #000;
}

.number_ttl {
  position: relative;
  font-size: 108%;
  padding: 0px 0px 0px 35px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.number_ttl span {
  display: block;
  position: absolute;
  top: -1px;
  left: 0px;
  background: #EEE;
  color: #000;
  padding: 1px 7px;
  font-size: 90%;
}

.img__link ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.img__link ul li {
  width: 32%;
  position: relative;
  margin-bottom: 30px;
  transition: 0.5s all;
}
.img__link ul li .btn {
  width: 100%;
  background: #2A5B88;
  color: #FFF;
  padding: 20px;
  box-sizing: border-box;
  display: block;
  transition: 0.5s all;
  position: relative;
}
.img__link ul li .btn:hover {
  opacity: 0.7;
}
.img__link ul li .btn:hover:after {
  right: 5px;
  transition: 0.5s all;
}
.img__link ul li .btn:after {
  content: "\f105";
  font-family: FontAwesome;
  font-display: swap;
  position: absolute;
  color: #FFF;
  right: 10px;
  font-size: 184%;
  top: 12px;
}
.img__link ul li p {
  width: 100%;
  padding-top: 20px;
}
.img__link ul li figure {
  text-align: center;
}
.img__link ul li img {
  object-fit: cover;
  height: 300px;
}

.point {
  background: #fff;
  padding: 30px;
  position: relative;
  margin-bottom: 25px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.large__column {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.large__column .l {
  width: 75%;
}
.large__column .s {
  width: 20%;
}
.large__column .g {
  width: 60%;
}
.large__column .m {
  width: 35%;
}

.column_2_1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.column_2_1 .l {
  width: 50%;
}
.column_2_1 .s {
  width: 23%;
}

.half__column {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.half__column .box {
  width: 48%;
  margin-bottom: 25px;
}

.three__column {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.three__column:before {
  content: "";
  display: block;
  width: 32%;
  height: 0;
  order: 1;
}
.three__column .box {
  width: 32%;
  margin-bottom: 25px;
}

.alert li {
  padding-left: 18px;
  position: relative;
  text-align: left;
  line-height: 1.5;
}
.alert li:before {
  content: "※";
  position: absolute;
  left: 0px;
  top: 0px;
}
.alert li:last-child {
  margin-bottom: 0px;
}

.flex__tbl table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0px;
  box-sizing: border-box;
}
.flex__tbl table tr {
  width: 100%;
}
.flex__tbl table th, .flex__tbl table td {
  box-sizing: border-box;
  border: 1px solid #B3B3B3;
}
.flex__tbl table th a, .flex__tbl table td a {
  color: #758AC5;
  text-decoration: underline;
}
.flex__tbl table tbody {
  text-align: left;
}
.flex__tbl table tbody th {
  background-color: #E6E6E6;
  vertical-align: middle;
  padding: 20px 8px;
  font-size: 94%;
}
.flex__tbl table tbody td {
  background: white;
  line-height: 1.7;
  vertical-align: middle;
  padding: 8px;
  font-size: 84%;
}
.flex__tbl table tbody td p {
  line-height: 1.6;
}
.flex__tbl table .unique {
  background-color: #CCC;
}

.header_pc_none {
  display: none;
}

.header_middle {
  display: none;
}


/*////////////
 * logo
 * ////////////*/
.logo_area {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
}
.logo_area .pic {
    margin-right: 10px;
    width: 66px;
    max-width: 20%;
}
.logo_area .txt{
	width:80%;
}
.logo_area .txt h1 {
	font-size: 108%;
	white-space: nowrap;
}
.logo_area .txt span {
	display: block;
	margin-top: 5px;
	font-size: 25px;
	color:#233a9d;
}

/*-------------------
 * 下層追加
 * --------------------*/
.bg__line_ttl {
  font-size: 150%;
  color: #fff;
  background: #758AC5;
  display: inline-block;
  padding: 10px 0 5px;
  text-align: center;
  margin-bottom: 20px;
  width: 100%;
}

.list_box_area .bg__line_ttl {
  width: 35%;
}

.list_box_area .box {
  background: #fff;
  padding: 30px 40px 30px 100px;
  position: relative;
  margin-bottom: 25px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.list_box_area .box .inner_box {
  position: relative;
}

.list_box_area .box:before {
  content: "\f105";
  font-family: "FontAwesome";
  color: #758AC5;
  font-size: 130%;
  position: absolute;
  left: 50px;
  top: 30px;
}

.inner_ttl {
  font-size: 137%;
  font-weight: 600;
  color: #758AC5;
}

.bg__w_box {
  background: #fff;
  padding: 50px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

@media screen and (max-width: 1400px) {
  .second_main_img .second_text_area {
    top: 110px;
  }
}
@media screen and (max-width: 1299px) {
  .second_main_img .second_text_area {
    top: 115px;
  }
}
@media screen and (max-width: 1279px) {
  .second_main_img .second_text_area {
    top: 110px;
  }
  .header_pc_none {
    display: block;
  }

  .header_none {
    display: none;
  }

  .header .header_middle {
    display: block;
    width: 50%;
  }
  .header .header_middle .tel {
    display: flex;
    justify-content: flex-end;
    padding: 30px 50px 0px 0px;
  }
  .header .header_middle .tel dl {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    color: #758AC5;
    font-weight: 700;
    margin-bottom: 5px;
    width: 100%;
    max-width: 380px;
  }
  .header .header_middle .tel dl dd {
    width: 100%;
    font-size: 174%;
    text-align: right;
    padding-right: 20px;
    box-sizing: border-box;
  }

  /*ハンバーガーメニュー*/
  #nav-drawer {
    position: relative;
    background: #0059B2;
    text-align: center;
  }

  .nav-unshown {
    display: none;
  }

  #nav-open {
    display: inline-block;
    width: 30px;
    height: 30px;
    vertical-align: middle;
    position: fixed;
    padding: 10px;
    right: 30px;
    top: 20px;
    z-index: 1001;
  }

  #nav-open span {
    position: absolute;
    height: 3px;
    /*線の太さ*/
    width: 30px;
    /*長さ*/
    background: #666;
    display: block;
    content: "";
    cursor: pointer;
    -webkit-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  }

  #nav-open span:nth-of-type(1) {
    top: 13px;
  }

  #nav-open span:nth-of-type(2) {
    top: 23px;
  }

  #nav-open span:nth-of-type(3) {
    top: 33px;
  }

  #nav-open.active span:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(-45deg);
    transform: translateY(10px) rotate(-45deg);
    background: #707070;
  }

  #nav-open.active span:nth-of-type(2) {
    opacity: 0;
  }

  #nav-open.active span:nth-of-type(3) {
    -webkit-transform: translateY(-10px) rotate(45deg);
    transform: translateY(-10px) rotate(45deg);
    background: #707070;
  }

  #nav-close {
    display: none;
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0;
    transition: 0.3s ease-in-out;
  }

  #nav-content {
    position: fixed;
    top: 115px;
    right: 0;
    z-index: 1001;
    width: 40%;
    height: 100%;
    background: white;
    transition: 0.3s ease-in-out;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-overflow-scrolling: touch;
  }
  #nav-content .container {
    padding: 20px;
    height: 85%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
  }
  #nav-content .container .tel_sp {
    display: none;
  }
  #nav-content .container .button {
    background: #758AC5;
    display: block;
    color: #FFF;
    padding: 2px 8px;
    margin: 10px 0px;
  }
  #nav-content .container .info {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
  }
  #nav-content .container .info .time {
    background: #DAF0FA;
    height: 34px;
    padding: 3px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 100%;
  }
  #nav-content .container .info .time .reserve {
    border: 1px solid #707070;
    background: #FFF;
    font-size: 90%;
    margin-left: 5px;
    padding: 1px 2px;
    box-sizing: border-box;
  }
  #nav-content .container .info .time .sub_ttl dl {
    box-sizing: border-box;
    display: flex;
  }
  #nav-content .container .info .time .sub_ttl dl dt {
    background: #7F9FFB;
    padding: 4px;
    box-sizing: border-box;
    color: #FFF;
    height: 28px;
  }
  #nav-content .container .info .time .sub_ttl dl dd {
    font-size: 90%;
    padding: 6px 4px 4px 4px;
    box-sizing: border-box;
  }
  #nav-content .nav {
    border-top: 1px solid #CCC;
    width: 100%;
  }
  #nav-content .nav .icon {
    position: absolute;
    width: 14px;
    height: 14px;
    top: 26px;
    right: 10px;
  }
  #nav-content .nav .icon span {
    display: inline-block;
    transition: all 0.3s;
    box-sizing: border-box;
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #000;
  }
  #nav-content .nav .icon span:nth-of-type(2) {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
  }
  #nav-content .nav .is-active span:nth-of-type(1) {
    display: none;
  }
  #nav-content .nav .is-active span:nth-of-type(2) {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
  }
  #nav-content .nav .parent + ul {
    display: none;
  }
  #nav-content .nav .link_icon_1 {
    background: url("../img/icon-1.png");
    background-repeat: no-repeat;
    background-position: 5px 10px;
    padding: 10px 0px 20px 30px;
    font-weight: bold;
  }
  #nav-content .nav .link_icon_2 {
    background: url("../img/icon-2.png");
    background-repeat: no-repeat;
    background-position: 5px 10px;
    padding: 10px 0px 20px 30px;
    font-weight: bold;
  }
  #nav-content .nav .link_icon_3 {
    background: url("../img/icon-3.png");
    background-repeat: no-repeat;
    background-position: 5px 10px;
    padding: 10px 0px 20px 30px;
    font-weight: bold;
  }
  #nav-content .nav .link_icon_4 {
    background: url("../img/icon-4.png");
    background-repeat: no-repeat;
    background-position: 5px 10px;
    padding: 10px 0px 20px 30px;
    font-weight: bold;
  }
  #nav-content .nav .link_icon_5 {
    background: url("../img/icon-5.png");
    background-repeat: no-repeat;
    background-position: 15px 10px;
    padding: 10px 0px 20px 30px;
    font-weight: bold;
  }
  #nav-content .nav .sub__cat {
    width: 100%;
  }
  #nav-content .nav .sub__cat .sub__list_item {
    width: 100%;
    display: block;
    padding: 15px 15px 15px 70px;
    box-sizing: border-box;
    position: relative;
    text-align: left;
    border-bottom: 1px solid #CCC;
  }
  #nav-content .nav .sub__cat .sub__list_item:before {
    content: "&gt;";
    position: absolute;
    left: 50px;
    top: 13px;
  }
  #nav-content .nav .sub__cat .sub__list_item + ul li {
    width: 100%;
    display: block;
    padding: 10px 15px 10px 80px;
    box-sizing: border-box;
    position: relative;
    text-align: left;
    border-bottom: 1px solid #CCC;
  }
  #nav-content .nav .sub__cat .sub__list_item + ul li:before {
    content: "・";
    position: absolute;
    left: 60px;
    top: 9px;
  }
  #nav-content .nav .list_item {
    border-bottom: 1px solid #CCC;
    width: 100%;
    display: block;
    padding: 15px 15px 15px 50px;
    box-sizing: border-box;
    position: relative;
    text-align: left;
  }
  #nav-content .link {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    font-size: 80%;
    padding: 20px 0px;
  }
  #nav-content .link li {
    width: 32%;
    background: #758AC5;
    text-align: center;
    color: #FFF;
    transition: 0.5s all;
  }
  #nav-content .link li a {
    padding: 5px 0px;
    box-sizing: border-box;
    display: block;
    color: #FFF;
  }
  #nav-content .link li a:hover {
    opacity: 0.7;
  }
  #nav-content .form {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  #nav-content .form .outer {
    width: 48%;
  }
  #nav-content .form .outer .font_size {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    height: 38px;
    font-size: 84%;
  }
  #nav-content .form .outer .font_size .size {
    background: #82a6c6;
    width: 49%;
    color: #FFF;
  }
  #nav-content .form .outer .font_size .large {
    background: #FFF;
    width: 24%;
    cursor: pointer;
    border: 1px solid #CCCCCC;
  }
  #nav-content .form .outer .font_size .normal {
    background: #478ac7;
    width: 24%;
    color: #FFF;
    cursor: pointer;
  }
  #nav-content .form .outer .font_size li {
    text-align: center;
    padding: 10px 0px;
  }
  #nav-content .form .outer input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 6px;
    border: 1px solid #999;
  }
  #nav-content .form .outer .searchForm {
    position: relative;
  }
  #nav-content .form .outer .searchForm-input {
    width: 100%;
  }
  #nav-content .form .outer .searchForm-submit {
    position: absolute;
    width: 38px;
    height: 38px;
    top: calc(50% - 19px);
    right: 0;
    border-radius: 0 4px 4px 0;
    background: #6b96bc;
  }
  #nav-content .form .outer .searchForm-submit::before {
    position: absolute;
    content: "";
    width: 15px;
    height: 15px;
    top: calc(50% - 9px);
    left: calc(50% - 9px);
    border-radius: 50%;
    box-shadow: 0 0 0 2px #fff;
  }
  #nav-content .form .outer .searchForm-submit::after {
    position: absolute;
    content: "";
    width: 8px;
    height: 6px;
    top: calc(50% + 6px);
    left: calc(50% + 2px);
    border-top: solid 2px #fff;
    transform: rotate(45deg);
  }

  /*チェックが入ったらもろもろ表示*/
  #nav-input:checked ~ #nav-close {
    display: block;
    /*カバーを表示*/
    opacity: 0.5;
  }

  /*チェックが入ったらもろもろ表示*/
  #nav-input:checked ~ #nav-close {
    display: block;
    /*カバーを表示*/
    opacity: 0.5;
  }

  #nav-input:checked ~ #nav-content {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    /*中身を表示（右へスライド）*/
    box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
  }

  .main__content .page_left .active {
    padding-top: 140px;
  }

  .top__sub_link .outer {
    width: 100%;
    padding: 0px 45px;
    box-sizing: border-box;
  }

  .breadcrumb {
    margin-top: 94px;
  }

  .header .tagline .nav_box .logo {
    max-width: 250px;
  }
}
@media screen and (max-width: 1300px) {
  .sub__wrap, .wrapper, .main_wrapper {
    width: 100%;
    padding: 0px 15px;
    box-sizing: border-box;
  }

  .header .tagline .nav_box {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .header .tagline .nav_box .outer {
    width: 100%;
  }
  .header .tagline .nav_box .outer .nav {
    width: 100%;
    padding-top: 10px;
  }
  .header .tagline .nav_box .outer .nav ul {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
  }
  .header .tagline .nav_box .outer .nav ul li:not(:last-child) a:after {
    content: "";
    background: #CCC;
    position: absolute;
    top: 0px;
    right: 0px;
    width: 1px;
    height: 100%;
  }
  .header .tagline .nav_box .outer .nav ul li:last-child {
    margin-right: 30px;
  }
  .header .tagline .nav_box .outer .nav ul li a {
    padding: 3px 10px;
  }
  .header .tagline .nav_box .outer .info {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    padding-top: 20px;
    padding-right: 20px;
  }
  .header .tagline .nav_box .outer .info .tel ul .number {
    color: #2A5B88;
    font-size: 154%;
    font-weight: bold;
  }
  .header .tagline .nav_box .logo {
    width: 32%;
    padding: 20px 0px 0px 10px;
    box-sizing: border-box;
  }

  .fixed_header {
    background: #FFF;
    z-index: -1;
    opacity: 0;
    display: none;
  }
  .fixed_header .tagline nav ul li a {
    color: #000;
  }
}

.scroll_move {
    padding-top: 160px;
    margin-top: -160px;
}
/*////////footer 追加////////*/ 

footer .footer_content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}
footer .footer_content .pagetop {
  position: fixed;
  right: 20px;
  bottom: 0px;
  width: 120px;
  text-align: center;
  color: #609BC8;
  z-index: 2;
}
footer .footer_content .pagetop a {
  display: block;
  color: #609BC8;
}
footer .footer_content .pagetop p {
  padding-top: 10px;
}
footer .footer_content .left {
  width: 30%;
  box-sizing: border-box;
  padding: 30px;
  background: #E0E7EF;
}
footer .footer_content .left ul {
  padding-top: 20px;
	text-align:center;
}
footer .footer_content .left ul .icon:before {
  content: url("../img/link.png");
  width: 20px;
  height: 17px;
  right: 10px;
  top: 13px;
  position: absolute;
}
footer .footer_content .left ul li {
  margin-bottom: 15px;
  width: 100%;
}
footer .footer_content .left ul li a {
  background: #FFF;
  border: 1px solid #CCC;
  padding: 2px;
  position: relative;
  display: inline-block;
  font-size: 94%;
}

footer .footer_content .right {
  width: 70%;
  box-sizing: border-box;
  padding: 30px 30px 0px 30px;
  background: #F3F7F9;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .footer_content .right .outer {
  width: 50%;
  padding-right: 30px;
  box-sizing: border-box;
  position: relative;
}
footer .footer_content .right .outer:first-child {
  border-right: 1px solid #CCC;
}
footer .footer_content .right .outer:last-child {
  padding-left: 30px;
}
footer .footer_content .right .outer .icon {
  position: absolute;
  width: 14px;
  height: 14px;
  top: 26px;
  right: 10px;
}
footer .footer_content .right .outer .icon span {
  display: inline-block;
  transition: all 0.3s;
  box-sizing: border-box;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #000;
}
footer .footer_content .right .outer .icon span:nth-of-type(2) {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}
footer .footer_content .right .outer .is-active span:nth-of-type(1) {
  display: none;
}
footer .footer_content .right .outer .is-active span:nth-of-type(2) {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}
footer .footer_content .right .outer .parent + ul {
  display: none;
}
footer .footer_content .right .outer .list_item {
  border-bottom: 1px solid #CCC;
  padding: 20px 20px 10px 10px;
  box-sizing: border-box;
  display: block;
  position: relative;
}
footer .footer_content .right .outer .active {
  background: #FFF;
}
footer .footer_content .right .outer .sub__cat {
  width: 100%;
  background: #FFF;
}
footer .footer_content .right .outer .sub__cat .sub__list_item {
  width: 100%;
  display: block;
  padding: 15px 15px 15px 30px;
  box-sizing: border-box;
  position: relative;
  text-align: left;
}
footer .footer_content .right .outer .sub__cat .sub__list_item:before {
  content: "&gt;";
  position: absolute;
  left: 15px;
  top: 13px;
}
footer .footer_content .right .outer .sub__cat .sub__list_item + ul li {
  width: 100%;
  display: block;
  padding: 10px 15px 10px 40px;
  box-sizing: border-box;
  position: relative;
  text-align: left;
}
footer .footer_content .right .outer .sub__cat .sub__list_item + ul li a {
  color: #000;
}
footer .footer_content .right .outer .sub__cat .sub__list_item + ul li:before {
  content: "・";
  position: absolute;
  left: 25px;
  top: 9px;
}
footer .footer_content .right .logo_area .txt h1 {
    font-size: 100%;
    white-space: nowrap;
}
footer .footer_content .right .logo_area .txt span {
    font-size: 2.0vw; 
}
.footer_logo_area{
    font-size: 0.8vw; 
}
footer .footer_logo_area .txt h1{
	font-size:95%;
}
/*////////////*/
footer .f_adr {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
}
.f_adr span:last-child {
    margin-left: 10px;
}
@media screen and (max-width: 1279px) {

  footer .footer_content {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
  }
  footer .footer_content .left {
    width: 100%;
    box-sizing: border-box;
    padding: 30px;
    background: #E0E7EF;
  }
  footer .footer_content .left figure {
    width: 100%;
  }
  footer .footer_content .left ul {
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  footer .footer_content .left ul:before {
    content: "";
    display: block;
    width: 32%;
    height: 0;
    order: 1;
  }
  footer .footer_content .left ul .icon:before {
    content: url("../img/link.png");
    width: 20px;
    height: 17px;
    right: 10px;
    top: 13px;
    position: absolute;
  }
  footer .footer_content .left ul li {
    margin-bottom: 15px;
    width: 32%;
  }
	footer .footer_content .right{
		display:none;
	}
	footer .footer_content .logo_area .txt span{
		font-size:200%;
	}
	.footer_logo_area{
		font-size: 1.2vw;
	}
	.logo_area .txt span {
    font-size: 25px;
}

  }
.works__area .cost table{
	max-width:960px;
	margin:auto;
}
.works__area .alert li {
    max-width: 960px;
    margin: auto;
}</pre></body></html>