@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;600;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Serif+JP:wght@400;600&display=swap");

/* アニメーションベンダープレフィックス込み指定 */
/* アニメーションベンダープレフィックス込み指定 */
html {
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1.6;
  letter-spacing: 0.1rem;
  color: #505050;
}

body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

#contents {
  overflow: hidden;
}

a {
  color: #8cc1ed;
  text-decoration: none;
}

img {
  max-width: 100%;
}

#loader {
  width: 100%;
  height: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

header {
  width: 100%;
  background: #fff;
  position: absolute;
  z-index: 11;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

@media all and (max-width: 896px) {
  header {
    top: 0;
    left: 0;
  }
}

header #header {
  width: 1600px;
  max-width: 100%;
  margin: auto;
  height: 110px;
  padding: 0 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

@media all and (max-width: 1200px) {
  header #header {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media all and (max-width: 639px) {
  header #header {
    height: auto;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0.5rem 1rem;
  }
}

header #header #logo {
  /* width: 160px; */
  width: 250px;
}

@media all and (max-width: 639px) {
  header #header #logo {
    /* width: 70px; */
    width: 190px;
  }
}

header #header #logo a {
  display: block;
}

header #header .head_contact {
  margin-bottom: 0.125rem;
}

@media all and (max-width: 896px) {
  header #header .head_contact {
    display: none;
  }
}

header #header .head_contact .head_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

header #header .head_contact .head_link li {
  margin: 0 0.5rem;
}

header #header .head_contact .head_link .head_tel a {
  font-size: 1.5rem;
  color: #fff;
}

header #header .head_contact .head_link .head_tel a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f87b";
  font-weight: 900;
  margin-right: 5px;
}

header #header .head_contact .head_link .head_web {
  width: 180px;
}

header #header .head_contact .head_link .head_web a {
  display: block;
  padding: 0.5rem 1rem;
  background: #7dc4ff;
  color: #fff;
  text-align: center;
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: 0.1em;
}

header #header .head_contact .head_link .head_web a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 5px;
}

header #header .head_contact .head_link .head_access {
  width: 180px;
}

header #header .head_contact .head_link .head_access a {
  display: block;
  padding: 0.5rem 1rem;
  background: #505050;
  color: #fff;
  text-align: center;
}

header #header .head_contact .head_link .head_access a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f3c5";
  font-weight: 900;
  margin-right: 5px;
}

header.fixed {
  background: #fff;
  border-bottom: 1px solid #c6e5ff;
  position: fixed;
  top: 0;
  left: 0;
}

header.fixed #header {
  height: 70px;
}

@media all and (max-width: 896px) {
  header.fixed #header {
    width: auto;
    height: auto;
  }
}

@-webkit-keyframes navAnim {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes navAnim {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

#nav_menu {
  position: relative;
  z-index: 20;
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
}

@media all and (max-width: 896px) {
  #nav_menu nav {
    width: 100%;
    height: 100%;
    padding: 6rem 2rem 0;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
    background: rgba(255, 255, 255, 0.95);
    z-index: 98;
    will-change: transform;
  }
}

#nav_menu nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#nav_menu nav ul.mega {
  position: relative;
  z-index: 10;
}

@media all and (max-width: 896px) {
  #nav_menu nav ul {
    display: block;
  }
}

#nav_menu nav ul li {
  text-align: center;
}

@media all and (max-width: 896px) {
  #nav_menu nav ul li {
    border-bottom: 1px solid #7dc4ff;
  }
}

#nav_menu nav ul li a {
  display: block;
  padding: 0.5rem 1rem;
  color: #505050;
  position: relative;
  z-index: 1;
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
}

@media all and (max-width: 896px) {
  #nav_menu nav ul li a {
    display: inline-block;
    color: #7dc4ff;
  }
}

#nav_menu nav ul li a span {
  display: block;
  text-align: center;
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: 0.1em;
  font-size: 12px;
}

#nav_menu nav ul li a:before {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  opacity: 0;
  background: #7dc4ff;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

#nav_menu nav ul li a:hover:before {
  width: 2rem;
  opacity: 1;
}

#nav_menu nav ul li.dropdown {
  position: relative;
  z-index: 1;
}

#nav_menu nav ul li.dropdown ul {
  display: block;
  width: 100%;
  padding: 0 1rem 1rem;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  background-color: #7dc4ff;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

@media all and (max-width: 896px) {
  #nav_menu nav ul li.dropdown ul {
    display: none;
    position: static;
    opacity: 1;
    visibility: visible;
    -webkit-transition: none;
    transition: none;
    -webkit-transform: none;
    transform: none;
    padding: 0;
  }
}

#nav_menu nav ul li.dropdown ul:before {
  content: "";
  display: block;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #7dc4ff;
  border-left: 10px solid transparent;
  position: absolute;
  top: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media all and (max-width: 896px) {
  #nav_menu nav ul li.dropdown ul:before {
    display: none;
    -webkit-transform: none;
    transform: none;
  }
}

#nav_menu nav ul li.dropdown ul li a {
  color: #fff;
  border-bottom: 1px solid #fff;
}

#nav_menu nav ul li.dropdown:hover ul {
  opacity: 1;
  visibility: visible;
}

#nav_menu nav ul li.dropdown .drop_arw {
  display: none;
}

@media all and (max-width: 896px) {
  #nav_menu nav ul li.dropdown .drop_arw {
    display: block;
    position: absolute;
    top: 24px;
    right: 1rem;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

#nav_menu nav ul li.dropdown .drop_arw:before {
  font-family: "Font Awesome 5 Free";
  content: "\f13a";
  font-weight: 900;
}

#nav_menu nav ul li.dropdown.open .drop_arw {
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

@media all and (max-width: 896px) {
  #nav_menu nav ul li.mega_menu {
    position: relative;
  }
}

#nav_menu nav ul li.mega_menu:hover>a {
  background: #7dc4ff;
  color: #fff;
}

@media all and (max-width: 896px) {
  #nav_menu nav ul li.mega_menu:hover>a {
    background: transparent;
    color: #7dc4ff;
  }
}

#nav_menu nav ul li.mega_menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  padding: 1rem;
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  background-color: #7dc4ff;
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
  z-index: 1;
}

@media all and (max-width: 896px) {
  #nav_menu nav ul li.mega_menu ul {
    display: none;
    position: static;
    opacity: 1;
    visibility: visible;
    -webkit-transition: none;
    transition: none;
    -webkit-transform: none;
    transform: none;
    padding: 0;
  }
}

#nav_menu nav ul li.mega_menu ul li {
  width: calc(100%/3);
  -webkit-box-flex: inherit;
  -ms-flex: inherit;
  flex: inherit;
}

@media all and (max-width: 896px) {
  #nav_menu nav ul li.mega_menu ul li {
    width: auto;
  }
}

#nav_menu nav ul li.mega_menu ul li a {
  color: #fff;
  border-bottom: 1px solid #fff;
}

#nav_menu nav ul li.mega_menu:hover ul {
  opacity: 1;
  visibility: visible;
}

#nav_menu nav ul li.mega_menu .drop_arw {
  display: none;
}

@media all and (max-width: 896px) {
  #nav_menu nav ul li.mega_menu .drop_arw {
    display: block;
    position: absolute;
    top: 24px;
    right: 1rem;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

#nav_menu nav ul li.mega_menu .drop_arw:before {
  font-family: "Font Awesome 5 Free";
  content: "\f13a";
  font-weight: 900;
}

#nav_menu nav ul li.mega_menu.open .drop_arw {
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

#nav_menu #nav_toggle {
  display: none;
  width: 2rem;
  height: 1.5rem;
  padding: 0.5rem;
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 99;
}

#nav_menu #nav_toggle span {
  display: inline-block;
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
}

#nav_menu #nav_toggle span:nth-of-type(1) {
  top: 0;
  left: 0;
}

#nav_menu #nav_toggle span:nth-of-type(2) {
  top: 50%;
  left: 0;
}

#nav_menu #nav_toggle span:nth-of-type(3) {
  top: 100%;
  left: 0;
}

#nav_menu #nav_toggle:before {
  content: "";
  display: block;
  width: 3rem;
  height: 3rem;
  background: #7dc4ff;
  position: absolute;
  top: -0.75rem;
  left: -0.5rem;
}

@media all and (max-width: 896px) {
  #nav_menu #nav_toggle {
    display: block;
  }
}

#nav_menu.open nav {
  opacity: 1;
  visibility: visible;
  -webkit-animation: navAnim .7s;
  animation: navAnim .7s;
}

#nav_menu.open #nav_toggle span:nth-of-type(1) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-135deg);
  transform: translateY(-50%) rotate(-135deg);
}

#nav_menu.open #nav_toggle span:nth-of-type(2) {
  width: 0;
  opacity: 0;
}

#nav_menu.open #nav_toggle span:nth-of-type(3) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(135deg);
  transform: translateY(-50%) rotate(135deg);
}

main {
  margin-top: 110px;
  background: #fff;
}

@media all and (max-width: 639px) {
  main {
    margin-top: 0;
  }
}

footer {
  position: relative;
  background: #fff;
}

@media all and (max-width: 639px) {
  footer {
    padding-bottom: 60px;
  }
}

@media all and (max-width: 639px) {
  footer #footer {
    margin-bottom: 0;
  }
}

footer #footer .foot_left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 40px;
}

@media all and (max-width: 639px) {
  footer #footer .foot_left {
    padding: 40px 10px;
  }
}

footer #footer .flogo {
  width: 200px;
  /* width: 100px; */
  margin-bottom: 20px;
}

footer #footer .flogo a {
  font-size: 1.5rem;
  color: #7dc4ff;
}

footer #footer .flogo a span {
  display: block;
  font-size: 1rem;
}

footer .copyright {
  text-align: center;
  padding: 1rem;
  background: #7dc4ff;
  color: #fff;
}

footer .copyright a {
  color: #fff;
}

footer .f_navi {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  text-align: center;
}

@media all and (max-width: 639px) {
  footer .f_navi {
    display: none;
  }
}

footer .f_navi li {
  width: 33%;
  margin-bottom: 0.5rem;
  -webkit-transform: rotate(0.1deg);
  transform: rotate(0.1deg);
}

footer .f_navi li a {
  color: #505050;
}

.sch_tbl {
  width: 100%;
  table-layout: fixed;
  text-align: center;
}

.sch_tbl thead {
  border-bottom: 1px solid #505050;
}

.sch_tbl thead th {
  padding: 0.5rem 0;
}

.sch_tbl thead th:first-child {
  width: 40%;
}

.sch_tbl tbody th,
.sch_tbl tbody td {
  padding: 0.5rem 0 0.25rem;
}

.sch_tbl tbody th {
  width: 40%;
}

.company_tbl {
  width: 100%;
  table-layout: fixed;
}

.company_tbl th,
.company_tbl td {
  padding: 1rem;
  border-bottom: 1px solid #7dc4ff;
}

.company_tbl th {
  width: 30%;
  border-bottom: 1px solid #c6e5ff;
  text-align: left;
}

.company {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 5px;
}

@media all and (max-width: 639px) {
  .company {
    font-size: 12px;
  }
}

.company th,
.company td {
  padding: 15px 10px;
  vertical-align: middle;
}

.company th {
  width: 25%;
  position: relative;
  background: #7dc4ff;
  color: #fff;
  font-weight: bold;
}

@media all and (max-width: 639px) {
  .company th {
    width: 31%;
  }
}

.company th::after {
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: #f9f9f9;
  border-width: 10px;
  border-left-color: #7dc4ff;
  margin-top: -10px;
}

.company td {
  background: #f9f9f9;
  padding-left: 20px;
}

.rec_tbl {
  width: 100%;
  table-layout: fixed;
}

.rec_tbl th,
.rec_tbl td {
  padding: 0.5rem;
  border: 1px solid #ddd;
}

@media all and (max-width: 639px) {

  .rec_tbl th,
  .rec_tbl td {
    width: 100%;
    display: block;
    font-size: 13px;
  }
}

.rec_tbl th {
  width: 30%;
  text-align: left;
  background: #7dc4ff;
  color: #fff;
}

@media all and (max-width: 639px) {
  .rec_tbl th {
    width: 100%;
    text-align: center;
  }
}

@media all and (max-width: 639px) {
  .rec_tbl td {
    margin-bottom: 0.5rem;
  }
}

.ifno_contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem 0;
}

.ifno_contact li {
  width: 300px;
}

@media all and (max-width: 639px) {
  .ifno_contact li {
    width: 100%;
    text-align: center;
  }
}

.ifno_contact .ifno_tel a {
  font-size: 1.5rem;
}

.ifno_contact .ifno_tel a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f87b";
  font-weight: 900;
  margin-right: 5px;
}

@media all and (max-width: 639px) {
  .ifno_contact .ifno_tel {
    margin-bottom: 1rem;
  }
}

.ifno_contact .ifno_web {
  width: 180px;
}

.ifno_contact .ifno_web a {
  display: block;
  padding: 0.5rem 1rem;
  background: #7dc4ff;
  color: #fff;
  text-align: center;
}

.ifno_contact .ifno_web a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f073";
  font-weight: 900;
  margin-right: 5px;
}

.ifno_contact .ifno_mail a {
  display: block;
  padding: 0.5rem 1rem;
  background: #8eb3e2;
  color: #fff;
  text-align: center;
}

@media all and (max-width: 639px) {
  .ifno_contact .ifno_mail a {
    width: 300px;
  }
}

.ifno_contact .ifno_mail a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 5px;
}

.ifno_address {
  margin-bottom: 1rem;
}

.ifno_address span:before {
  font-family: "Font Awesome 5 Free";
  content: "\f3c5";
  font-weight: 900;
  margin-right: 5px;
}

.ifno_access span {
  font-size: 1.25rem;
}

@media all and (max-width: 639px) {
  .ifno_access span {
    font-size: 1rem;
  }
}

.ifno_access span:before {
  font-family: "Font Awesome 5 Free";
  content: "\f238";
  font-weight: 900;
  margin-right: 5px;
}

.gmap {
  width: 100%;
  position: relative;
  padding-top: calc(1/3*100%);
}

.gmap iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.gmap2 {
  width: 100%;
  position: relative;
  padding-top: calc(1/2*100%);
}

.gmap2 iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#mainvisual {
  width: 100%;
  height: calc(100vh - 110px);
  position: relative;
}

@media all and (max-width: 896px) {
  #mainvisual {
    height: 70vh;
  }
}

#mainvisual #main_catch {
  position: absolute;
  top: 50%;
  left: 5%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 10;
  font-size: 1.25rem;
  color: #fff;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  overflow: hidden;
}

@media all and (max-width: 896px) {
  #mainvisual #main_catch {
    font-size: 1rem;
  }
}

#mainvisual #main_catch .main_text {
  font-family: "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-size: 2.5rem;
}

@media all and (max-width: 896px) {
  #mainvisual #main_catch .main_text {
    font-size: 1.5rem;
  }
}

#mainvisual #main_catch .main_logo {
  display: inline-block;
  width: 300px;
  margin-top: 1rem;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

@media all and (max-width: 639px) {
  #mainvisual #main_catch .main_logo {
    width: 240px;
  }
}

#mainvisual #mainvisual_img {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

#mainvisual #mainvisual_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

#mainvisual #mainvisual_front {
  width: 55%;
  height: 100%;
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
  -webkit-transform: matrix(1, 0, -0.3, 1, 0, 0);
  transform: matrix(1, 0, -0.3, 1, 0, 0);
  z-index: 5;
  position: absolute;
  top: 0;
  left: 0;
}

#mainvisual #mainvisual_front:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(90%, rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0.8)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 90%, rgba(0, 0, 0, 0.8) 100%);
  position: absolute;
  top: 0;
  left: 0;
}

#topSlider .swiper-slide {
  position: relative;
}

#topSlider .swiper-slide:before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  right: 0;
  top: 0;
  background-position: 50%;
  background-size: cover;
  background: rgba(0, 0, 0, 0.3);
}

#topSlider .swiper-slide .catch_container {
  position: absolute;
  top: 55%;
  left: 10%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 10;
  font-size: 1.25rem;
  color: #fff;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  overflow: hidden;
}

@media all and (max-width: 896px) {
  #topSlider .swiper-slide .catch_container {
    left: 5%;
  }
}

#topSlider .swiper-slide .catch_container .main_text {
  font-family: "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-size: 3rem;
  text-shadow: 0 2px 8px #000;
}

@media all and (max-width: 896px) {
  #topSlider .swiper-slide .catch_container .main_text {
    font-size: 1.35rem;
  }
}

#topSlider .swiper-slide .slide_catch {
  opacity: 0;
  display: inline-block;
  overflow: hidden;
}

#topSlider .swiper-slide.swiper-slide-prev .slide_catch,
#topSlider .swiper-slide.swiper-slide-active .slide_catch,
#topSlider .swiper-slide.swiper-slide-duplicate-active .slide_catch {
  -webkit-animation-name: fadeDown;
  animation-name: fadeDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  opacity: 1 !important;
}

#topSlider .slide-img {
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
  height: calc(100vh - 110px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

@media all and (max-width: 639px) {
  #topSlider .slide-img {
    height: 70vh;
  }
}

.container {
  width: 1200px;
  max-width: 100%;
  margin: auto;
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

@media all and (max-width: 1200px) {
  .container {
    padding: 100px 1rem;
  }
}

@media all and (max-width: 639px) {
  .container {
    padding: 50px 1rem;
  }
}

.container2 {
  width: 100%;
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

@media all and (max-width: 639px) {
  .container2 {
    padding: 50px 1rem;
  }
}

.container2.type2 {
  padding: 0;
}

@media all and (max-width: 639px) {
  .container2.type2 {
    padding: 50px 1rem;
  }
}

.container3 {
  width: 1600px;
  max-width: 100%;
  margin: auto;
  padding: 100px 1rem;
  margin: auto;
  position: relative;
  z-index: 1;
}

@media all and (max-width: 639px) {
  .container3 {
    padding: 50px 1rem;
  }
}

.container3.type2 {
  padding: 0 1rem 100px;
}

.container4 {
  width: calc(100% - 100px);
  max-width: 100%;
  padding: 100px 1rem;
  margin: auto;
  position: relative;
  z-index: 1;
}

@media all and (max-width: 639px) {
  .container4 {
    width: 100%;
    padding: 50px 1rem;
  }
}

.container4.type2 {
  padding: 0 1rem;
}

@media all and (max-width: 639px) {
  .container4.type2 {
    padding: 0;
  }
}

.box {
  padding: 4rem;
  background: #fff;
}

@media all and (max-width: 639px) {
  .box {
    padding: 1rem;
  }
}

.box.pd0 {
  padding: 0;
}

.box2 {
  max-width: 80%;
  margin: auto;
  padding: 2rem;
}

@media all and (max-width: 639px) {
  .box2 {
    max-width: 100%;
    padding: 1rem;
  }
}

.box2.type2 {
  max-width: 100%;
}

.box3 {
  padding: 2rem;
  background: #fff;
  border: 2px solid #7dc4ff;
  position: relative;
  -webkit-box-shadow: 10px 10px 0 0 white;
  box-shadow: 10px 10px 0 0 white;
}

@media all and (max-width: 639px) {
  .box3 {
    padding: 1rem;
  }
}

.box4 {
  max-width: 80%;
  margin: auto;
  padding: 2rem;
  border: 2px solid #7dc4ff;
}

@media all and (max-width: 639px) {
  .box4 {
    max-width: 100%;
    padding: 1rem;
  }
}

.box4.type2 {
  max-width: 100%;
}

.h_ttl {
  font-size: 1.25rem;
  color: #7dc4ff;
  margin-bottom: 4rem;
}

@media all and (max-width: 639px) {
  .h_ttl {
    margin-bottom: 1.5rem;
  }
}

.h_ttl .en {
  display: inline-block;
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: 0.1em;
  font-size: 4rem;
  letter-spacing: 0.125rem;
  color: #7dc4ff;
}

@media all and (max-width: 639px) {
  .h_ttl .en {
    font-size: 3rem;
  }
}

.h_ttl .ja {
  display: block;
  color: #505050;
}

.h_ttl.greet_ttl {
  margin: 0 100px;
  margin-bottom: -100px;
}

@media all and (max-width: 639px) {
  .h_ttl.greet_ttl {
    margin: 0;
    margin-bottom: 40px;
  }
}

.h_ttl.greet_ttl .ja {
  font-size: 3rem;
}

.h_ttl.white {
  color: #fff;
}

.h_ttl.white .en {
  color: #fff;
  background: none;
}

.h_ttl.white .en:first-letter {
  color: #fff;
}

.h_ttl.white .ja {
  color: #fff;
}

.h_ttl_big {
  font-size: 2.5rem;
  color: #505050;
}

@media all and (max-width: 639px) {
  .h_ttl_big {
    font-size: 1.5rem;
  }
}

.h_ttl_big2 {
  font-size: 1.5rem;
}

.h_ttl_big2:first-letter {
  font-size: 2rem;
  color: #7dc4ff;
}

.h_ttl_s {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.h_ttl_s span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.h_ttl_s span:before {
  content: "";
  display: block;
  width: 6px;
  height: 24px;
  background: #7dc4ff;
  margin-right: 5px;
}

.h_ttl_s2 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.h_ttl_s2 span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.h_ttl_s2 span:before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 3px;
  background: #7dc4ff;
  margin-right: 0.5rem;
}

.h_ttl_s2.type2 {
  font-size: 1.25rem;
}

.h_ttl_line {
  font-size: 1.5rem;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #7dc4ff;
}

@media all and (max-width: 639px) {
  .h_ttl_line {
    font-size: 1.125rem;
  }
}

.a_ttl {
  font-size: 2.5rem;
  padding: 0.5rem 1rem;
  background: #7dc4ff;
  color: #fff;
  margin-bottom: 1rem;
}

@media all and (max-width: 639px) {
  .a_ttl {
    font-size: 1.25rem;
  }
}

.num_ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1rem;
}

.num_ttl span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: #7dc4ff;
  border-radius: 50%;
  margin-right: 0.25rem;
  color: #fff;
}

.feature_ttl {
  margin: 20px 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: #505050;
  text-align: center;
  letter-spacing: 0.25rem;
}

@media all and (max-width: 639px) {
  .feature_ttl {
    font-size: 1.25rem;
  }
}

.feature_ttl span {
  font-size: 4rem;
  color: #7dc4ff;
}

.feature_ttl p {
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: 0.1em;
  color: #7dc4ff;
  font-size: 1.25rem;
}

.half_ttl {
  font-size: 4rem;
  text-align: center;
  margin-top: -80px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #7dc4ff;
}

.half_ttl .en {
  display: block;
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: 0.1em;
  color: #7dc4ff;
}

.half_ttl .ja {
  display: block;
  font-size: 1.25rem;
  color: #505050;
}

.ttl_margin {
  margin-top: 80px;
}

.mtext1 {
  font-size: 1.25rem;
}

@media all and (max-width: 639px) {
  .mtext1 {
    font-size: 1.125rem;
  }
}

.mtext2 {
  font-size: 1.5rem;
}

@media all and (max-width: 639px) {
  .mtext2 {
    font-size: 1.25rem;
  }
}

.mtext3 {
  font-size: 2rem;
}

@media all and (max-width: 639px) {
  .mtext3 {
    font-size: 1.5rem;
  }
}

.bold {
  font-weight: 600;
}

.color1 {
  color: #7dc4ff;
}

.list_disc li {
  padding: 5px 0;
  border-bottom: 1px dashed #ccc;
}

.list_disc li:not(:last-of-type) {
  margin-bottom: 5px;
}

.list_disc li:before {
  content: "●";
  margin-right: 5px;
  color: #8eb3e2;
  font-size: 0.5rem;
}

@media all and (max-width: 639px) {
  .list_disc li {
    font-size: 12px;
  }
}

.list_disc.type2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.list_disc.type2 li {
  width: 48%;
  padding-left: 1rem;
  text-indent: -1rem;
  margin-bottom: 1rem;
}

.list_check.type1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.list_check.type1 li {
  background: #fefefe;
  padding: 12px 8px;
  width: 48%;
}

.list_check.type1 li:nth-child(2n) {
  margin-left: 4%;
}

@media all and (max-width: 639px) {
  .list_check.type1 li {
    width: 95%;
    margin: 0 auto 5px;
  }

  .list_check.type1 li:nth-child(2n) {
    margin-left: auto;
  }
}

.list_check li {
  padding: 4px;
  margin-bottom: 5px;
}

.list_check li span {
  font-weight: normal;
  font-size: 0.9em;
  display: block;
  padding: 10px;
  background: rgba(255, 250, 246, 0.2);
  margin-top: 10px;
}

.list_check li a {
  color: #7dc4ff;
  border-bottom: 1px dotted #7dc4ff;
}

.list_check li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: 900;
  margin-right: 10px;
  color: #7dc4ff;
}

@media all and (max-width: 639px) {
  .list_check li {
    width: 98%;
    margin: 0 auto 10px;
    font-size: 1.3rem;
  }
}

.news_dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 2rem;
}

@media all and (max-width: 639px) {
  .news_dl {
    padding: 1rem;
  }
}

.news_dl .h_ttl {
  width: 220px;
  text-align: center;
}

@media all and (max-width: 639px) {
  .news_dl .h_ttl {
    width: 100%;
  }
}

.news_dl .news_inner {
  width: calc(100% - 240px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 2rem;
  background: #fff;
}

@media all and (max-width: 639px) {
  .news_dl .news_inner {
    width: 100%;
  }
}

.news_dl .news_inner dt {
  width: 80px;
  margin-bottom: 1rem;
}

.news_dl .news_inner dt span {
  display: inline-block;
  padding: 0.25rem;
  font-size: 0.5rem;
  text-align: center;
  border: 1px solid #7dc4ff;
  color: #7dc4ff;
}

.news_dl .news_inner dd {
  width: calc(100% - 100px);
  margin-left: 1rem;
  margin-bottom: 1rem;
}

@media all and (max-width: 639px) {
  .news_dl .news_inner dd {
    width: 100%;
    margin-left: 0;
  }
}

.list_dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.list_dl dt {
  width: 160px;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #505050;
}

.list_dl dd {
  width: calc(100% - 160px);
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #505050;
}

.list_dl2 dt {
  color: #7dc4ff;
  font-size: 1.125rem;
  margin-bottom: 10px;
}

.list_dl2 dt .num {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background: #e3f2ff;
  text-align: center;
  line-height: 2rem;
  color: #fff;
  margin-right: 10px;
}

.list_dl2 dd {
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e3f2ff;
}

.list_dl2 dd:last-of-type {
  border-bottom: 0;
}

.list_dl3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 20px;
  background: #fafafa;
}

.list_dl3 dt {
  width: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 2rem;
  color: #7dc4ff;
}

.list_dl3 dd {
  width: calc(100% - 100px);
}

.list_dl4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: #fafafa;
  padding: 10px;
}

.list_dl4 dt {
  width: 140px;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-bottom: 1px solid #ddd;
}

.list_dl4 dd {
  width: calc(100% - 140px);
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

.circle_txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 40px;
}

.circle_txt span {
  display: inline-block;
  position: relative;
  color: #fff;
  margin: 0 10px;
  font-weight: 600;
  z-index: 1;
}

.circle_txt span:before {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #7dc4ff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
}

.num_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px dashed #333;
}

.num_list .circle_txt {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 0;
}

.num_list dd {
  padding-left: 15px;
}

.top_contents_box a {
  display: block;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  position: relative;
}

.top_contents_box a .top_contents_img {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.top_contents_box a .top_contents_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.top_contents_box a .top_contents_txt {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
}

@media all and (max-width: 639px) {
  .top_contents_box a .top_contents_txt {
    margin: auto;
  }
}

.top_contents_box a .top_contents_txt .top_contents_ttl {
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.top_contents_box a .top_contents_txt .top_contents_body {
  font-size: 2.5rem;
  color: #fff;
  line-height: 1;
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: 0.1em;
}

.top_contents_box a .top_contents_txt .top_btn {
  width: 160px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid #fff;
  color: #fff;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: 0.1em;
}

.top_contents_box a .top_contents_txt .top_btn svg {
  fill: #fff;
}

.top_contents_box a:hover .top_contents_img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.top_contents_box a:hover .top_btn {
  width: 170px;
}

.top_blog_box a {
  display: block;
  background: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.top_blog_box a .top_blog_img {
  width: 100%;
  overflow: hidden;
}

.top_blog_box a .top_blog_img img {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.top_blog_box a .top_blog_ttl {
  padding: 1rem 1rem 0;
  font-weight: 600;
}

.top_blog_box a .blog_date {
  padding: 0 1rem 1rem;
}

.top_blog_box a .blog_date span {
  display: inline-block;
  font-size: 0.75rem;
}

.top_blog_box a:hover {
  -webkit-box-shadow: 0 1px 2px -1px #ccc;
  box-shadow: 0 1px 2px -1px #ccc;
}

.top_blog_box a:hover .top_blog_img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.top_service {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 100px;
}

.top_service .top_service_inner {
  width: 33%;
}

@media all and (max-width: 639px) {
  .top_service .top_service_inner {
    width: 100%;
    margin-bottom: 120px;
  }

  .top_service .top_service_inner:last-of-type {
    margin-bottom: 0;
  }
}

.top_service .top_service_inner a {
  display: block;
  position: relative;
}

.top_service .top_service_inner a figure {
  height: 320px;
  overflow: hidden;
}

.top_service .top_service_inner a figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.top_service .top_service_inner a:hover figure img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.top_service .top_service_inner a:hover .top_btn {
  width: 170px;
}

.top_service .top_service_inner .top_service_text {
  width: 80%;
  padding: 2rem;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #fff;
  color: #7dc4ff;
  font-size: 1.25rem;
}

.top_service .top_service_inner .top_service_text .h_ttl_line {
  color: #505050;
  margin-bottom: 1rem;
}

.top_service .top_service_inner .top_service_text .top_btn {
  width: 160px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid #7dc4ff;
  color: #7dc4ff;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: 0.1em;
  font-size: 1rem;
}

.top_service .top_service_inner .top_service_text .top_btn svg {
  fill: #7dc4ff;
}

.flx {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flx2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flx2 .flx_in {
  width: 48%;
}

@media all and (max-width: 639px) {
  .flx2 .flx_in {
    width: 100%;
  }
}

@media all and (max-width: 639px) {
  .flx2 .flx_in:last-of-type {
    margin-bottom: 0;
  }
}

.flx2.type2 .flx_in {
  width: 40%;
}

@media all and (max-width: 639px) {
  .flx2.type2 .flx_in {
    width: 100%;
  }
}

.flx2.type2 .flx_in:nth-of-type(2) {
  width: 55%;
}

@media all and (max-width: 639px) {
  .flx2.type2 .flx_in:nth-of-type(2) {
    width: 100%;
  }
}

.flx2.type3 .flx_in {
  width: 55%;
}

@media all and (max-width: 639px) {
  .flx2.type3 .flx_in {
    width: 100%;
  }
}

.flx2.type3 .flx_in:nth-of-type(2) {
  width: 40%;
}

@media all and (max-width: 639px) {
  .flx2.type3 .flx_in:nth-of-type(2) {
    width: 100%;
  }
}

.flx2.type4 .flx_in {
  width: 77%;
}

@media all and (max-width: 639px) {
  .flx2.type4 .flx_in {
    width: 100%;
  }
}

.flx2.type4 .flx_in:nth-of-type(2) {
  width: 20%;
}

@media all and (max-width: 639px) {
  .flx2.type4 .flx_in:nth-of-type(2) {
    width: 100%;
  }
}

.flx3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flx3 .flx_in {
  width: 31%;
}

@media all and (max-width: 639px) {
  .flx3 .flx_in {
    width: 100%;
  }
}

@media all and (max-width: 1200px) {
  .flx3.type2 .flx_in {
    width: 48%;
  }
}

.flx4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flx4 .flx_in {
  width: 23%;
}

@media all and (max-width: 639px) {
  .flx4 .flx_in {
    width: 48%;
  }
}

.flx6 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flx6 .flx_in {
  width: 15%;
}

@media all and (max-width: 639px) {
  .flx6 .flx_in {
    width: 48%;
  }
}

@media all and (max-width: 639px) {
  .flx_in {
    margin-bottom: 1.5rem;
  }
}

.r_reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.ai_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ai_start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.ai_end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.jc_center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.jc_between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.month_box {
  padding: 20px;
  margin: 1rem calc((100% - (31%*3))/6);
  background: #fff;
  -webkit-box-shadow: 0 5px 10px -10px #505050;
  box-shadow: 0 5px 10px -10px #505050;
  border-radius: 10px;
}

.bg_main {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0.6)), to(rgba(255, 255, 255, 0.6))), url(../img/main_bg.jpg) no-repeat center/cover;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url(../img/main_bg.jpg) no-repeat center/cover;
  position: relative;
  z-index: 1;
}

.bg_main.minus {
  margin-top: -200px;
  padding-top: 200px;
  z-index: 0;
}

.bg_main.minus2 {
  margin-top: -100px;
  z-index: 0;
}

@media all and (max-width: 639px) {
  .bg_main.minus2 {
    padding-top: 20px;
    margin-top: -40px;
  }
}

.bg_main2 {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0.8))), url(../img/contact_bg.jpg) no-repeat center/cover;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../img/contact_bg.jpg) no-repeat center/cover;
  position: relative;
  z-index: 1;
}

.bg_main2.minus {
  margin-top: -200px;
  padding-top: 200px;
  z-index: 0;
}

.bg_main2.minus2 {
  margin-top: -100px;
  z-index: 0;
}

@media all and (max-width: 639px) {
  .bg_main2.minus2 {
    padding-top: 20px;
    margin-top: -40px;
  }
}

.bg_gray {
  background: #fafafa;
}

.bg_gray.bg_right {
  background: -webkit-gradient(linear, right top, left top, color-stop(85%, #fafafa), color-stop(85%, transparent));
  background: linear-gradient(to left, #fafafa 85%, transparent 85%);
}

.bg_gray.bg_left {
  background: -webkit-gradient(linear, left top, right top, color-stop(85%, #fafafa), color-stop(85%, transparent));
  background: linear-gradient(to right, #fafafa 85%, transparent 85%);
}

.bg_gray.minus {
  margin-top: -100px;
}

.bg_white {
  background: #fff;
}

.bg_white.bg_left {
  background: -webkit-gradient(linear, left top, right top, color-stop(85%, #fff), color-stop(85%, transparent));
  background: linear-gradient(to right, #fff 85%, transparent 85%);
}

.bg_white.minus {
  margin-top: -100px;
}

.bg_blue {
  background: white;
}

.bg_beige {
  background: #fffaf6;
}

.bg_beige.bg_right {
  background: -webkit-gradient(linear, right top, left top, color-stop(85%, #fffaf6), color-stop(85%, transparent));
  background: linear-gradient(to left, #fffaf6 85%, transparent 85%);
}

.bg_beige.bg_left {
  background: -webkit-gradient(linear, left top, right top, color-stop(85%, #fffaf6), color-stop(85%, transparent));
  background: linear-gradient(to right, #fffaf6 85%, transparent 85%);
}

.bg_img1 {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0.6)), to(rgba(255, 255, 255, 0.6))), url(../img/h_ptn.png);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url(../img/h_ptn.png);
}

.bg_skew {
  position: relative;
}

.bg_skew:before,
.bg_skew:after {
  content: '';
  display: block;
  width: 25%;
  height: 200%;
  background: #fafafa;
  -webkit-transform: matrix(1, 0, -0.3, 1, 0, 0);
  transform: matrix(1, 0, -0.3, 1, 0, 0);
  position: absolute;
  top: 0;
  z-index: -1;
}

@media all and (max-width: 896px) {

  .bg_skew:before,
  .bg_skew:after {
    width: 100%;
  }
}

.bg_skew:before {
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
  left: 0;
}

@media all and (max-width: 896px) {
  .bg_skew:before {
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: none;
    transform: none;
  }
}

.bg_skew:after {
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
  right: 0;
}

@media all and (max-width: 896px) {
  .bg_skew:after {
    display: none;
  }
}

.pos_z {
  position: relative;
  z-index: 1;
}

.ov_h {
  overflow: hidden;
}

.lh2 {
  line-height: 2;
}

.greet_box {
  width: 1600px;
  max-width: 100%;
  padding: 0 1rem;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media all and (max-width: 896px) {
  .greet_box {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.greet_box .greet_txt {
  width: calc(50% + 90px);
  padding-top: 150px;
}

@media all and (max-width: 896px) {
  .greet_box .greet_txt {
    width: 100%;
    padding-top: 0px;
  }
}

.greet_box .greet_txt .greet_txt_inner {
  position: relative;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 842px;
  padding: 50px calc(7.3% + 178px) 50px 7.3%;
  color: #fff;
  overflow: hidden;
}

@media all and (max-width: 896px) {
  .greet_box .greet_txt .greet_txt_inner {
    height: auto;
    padding: 20px;
  }
}

.greet_box .greet_txt .greet_txt_inner .greet_txt_inner_bg {
  position: absolute;
  top: -200px;
  left: 0;
  z-index: -1;
  width: 100vw;
  min-width: 1280px;
  height: 1100px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0.8))), url(../img/greet_bg.jpg) no-repeat center/cover;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../img/greet_bg.jpg) no-repeat center/cover;
}

.greet_box .greet_img {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  height: 842px;
  margin: 0 0 0 -178px;
  overflow: hidden;
  position: relative;
}

@media all and (max-width: 896px) {
  .greet_box .greet_img {
    height: 300px;
    margin: 0;
  }
}

.greet_box .greet_img img {
  position: absolute;
  top: -50px;
  right: 0;
  width: 100vw;
  min-width: 1280px;
  height: 1100px;
  -o-object-fit: cover;
  object-fit: cover;
}

@media all and (max-width: 896px) {
  .greet_box .greet_img img {
    position: static;
    min-width: auto;
    height: 100%;
  }
}

.top_about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.top_about .top_about_img {
  width: 50%;
}

@media all and (max-width: 639px) {
  .top_about .top_about_img {
    width: 100%;
  }
}

.top_about .top_about_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.top_about .top_about_body {
  width: 50%;
  padding: 3rem;
}

.top_about .top_about_body .h_ttl {
  margin-bottom: 2rem;
}

.top_about .top_about_body .list_disc {
  margin-bottom: 2rem;
}

@media all and (max-width: 639px) {
  .top_about .top_about_body {
    width: 100%;
    padding: 40px 10px;
  }
}

.top_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.top_wrap .top_inner {
  width: 31%;
  -webkit-filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.3));
  filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.3));
}

@media all and (max-width: 639px) {
  .top_wrap .top_inner {
    width: 100%;
    margin-bottom: 2rem;
  }
}

.top_wrap .top_inner a {
  display: block;
}

.top_wrap .top_inner a figure {
  -webkit-clip-path: polygon(95% 0, 100% 50%, 95% 100%, 0% 100%, 5% 50%, 0% 0%);
  clip-path: polygon(95% 0, 100% 50%, 95% 100%, 0% 100%, 5% 50%, 0% 0%);
  overflow: hidden;
  position: relative;
}

.top_wrap .top_inner a figure figcaption {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(125, 196, 255, 0.8);
  text-align: center;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}

.top_wrap .top_inner a figure figcaption h3 {
  color: #fff;
  mix-blend-mode: difference;
}

.top_wrap .top_inner a figure figcaption h3 span {
  display: block;
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: 0.1em;
  font-size: 2rem;
}

.top_wrap .top_inner a img {
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}

.top_wrap .top_inner a:hover figcaption {
  background: rgba(125, 196, 255, 0.3);
}

.top_wrap .top_inner a:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.t_shadow {
  text-shadow: 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 10px #fff, 0px 0px 10px #fff, 0px 0px 15px #fff, 0px 0px 15px #fff;
}

.pick_ico_img {
  width: 100px;
  margin: auto;
}

.pick_ico_img img {
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
}

.pick_ico_img:hover img {
  -webkit-transform: translateY(-5%);
  transform: translateY(-5%);
}

.pick_txt {
  padding: 1rem;
}

.slide_list {
  position: relative;
  display: none;
  padding-bottom: 1rem;
}

.slide_list li {
  -webkit-filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.3));
  filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.3));
  margin-right: 1%;
}

.slide_list li p {
  display: none;
}

.slide_list li img {
  width: auto;
  height: 260px;
  border-radius: 15px 0 15px 0;
}

@media all and (max-width: 639px) {
  .slide_list li img {
    height: 180px;
  }
}

#page_ttl {
  position: relative;
  padding: 160px 0 100px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.3))), url(../img/1.jpg) center;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/1.jpg) center;
}

@media all and (max-width: 639px) {
  #page_ttl {
    padding: 100px 0 40px;
    margin-top: 73px;
  }
}

#page_ttl.page_1 {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0.5))), url(../img/page_1.jpg) center;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url(../img/page_1.jpg) center;
}

#page_ttl.page_2 {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0.5))), url(../img/page_2.jpg) center;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url(../img/page_2.jpg) center;
}

#page_ttl.page_3 {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0.5))), url(../img/page_3.jpg) center;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url(../img/page_3.jpg) center;
}

#page_ttl.page_4 {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0.5))), url(../img/page_4.jpg) center;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url(../img/page_4.jpg) center;
}

#page_ttl .page_head {
  width: 1600px;
  max-width: 100%;
  margin: auto;
  padding: 0 1rem;
  color: #fff;
  overflow: hidden;
}

#page_ttl .page_head .en {
  font-size: 5rem;
  display: inline-block;
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: 0.1em;
  line-height: 1.2;
}

@media all and (max-width: 639px) {
  #page_ttl .page_head .en {
    font-size: 4rem;
  }
}

#page_ttl .page_head .ja {
  display: inline-block;
  font-size: 1.25rem;
  color: #fff;
}

@media all and (max-width: 639px) {
  #page_ttl .page_head .ja {
    font-size: 1.5rem;
    color: #fff;
  }
}

.srv_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-bottom: 150px;
  position: relative;
}

@media all and (max-width: 896px) {
  .srv_box {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 60px;
  }
}

.srv_box .srv_img {
  width: 50%;
  position: relative;
}

@media all and (max-width: 896px) {
  .srv_box .srv_img {
    width: 100%;
  }
}

.srv_box .srv_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.srv_box .srv_body {
  width: 760px;
  max-width: calc(50% - 20px);
  padding: 0;
  margin: 70px 0 0 -80px;
  background: #fff;
  position: relative;
}

@media all and (max-width: 896px) {
  .srv_box .srv_body {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
}

.srv_box .srv_body .srv_inner {
  padding: 70px 13% 80px;
}

@media all and (max-width: 896px) {
  .srv_box .srv_body .srv_inner {
    padding: 40px 1rem;
  }
}

.srv_box .srv_body .srv_inner .label {
  width: 160px;
  height: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 20px;
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: 0.1em;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: .3em;
  background: #7dc4ff;
}

.srv_box .srv_body .srv_inner .title {
  margin-bottom: 30px;
  font-size: 2rem;
}

.srv_box:nth-of-type(odd) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.srv_box:nth-of-type(odd) .srv_body {
  margin-right: -80px;
  margin-left: 0;
}

@media all and (max-width: 896px) {
  .srv_box:nth-of-type(odd) .srv_body {
    margin-right: 0;
  }
}

.srv_box:last-of-type {
  margin-bottom: 0;
}

.biography {
  margin-top: 40px;
}

.gallery_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.gallery_list li {
  width: 31%;
  margin-bottom: 2rem;
  margin-right: calc((100% - (31%*3)) / 2);
}

@media all and (max-width: 639px) {
  .gallery_list li {
    width: 100%;
    margin-right: 0;
  }
}

.gallery_list li:nth-of-type(3n) {
  margin-right: 0;
}

.gallery_list li span {
  display: block;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.gallery_list li span img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.gallery_list li span:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.gallery_list li p {
  margin-top: 1rem;
}

.rec_box {
  margin-bottom: 3rem;
}

@media all and (max-width: 639px) {
  .rec_box {
    margin-bottom: 1.5rem;
  }
}

.link {
  margin-top: 1rem;
}

.link a {
  text-decoration: underline;
}

.form {
  margin: 0 auto;
  width: 90%;
}

.form dl dt {
  float: left;
  width: 280px;
  padding-top: 20px;
  font-weight: 600;
}

@media all and (max-width: 639px) {
  .form dl dt {
    float: none;
  }
  #contact .form-contents {
    padding: 20px 15px;
  }
}

#contact .form-contents dd:not(.pattern-exclusion) input.textarea {
  height: 50px;
}

.form dl dt span,
#contact .form-pattern-2 dl dt:not(.pattern-exclusion) span.required::before {
  color: #fff;
  background: #7dc4ff;
  padding: 5px 8px;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 20px;
  position: relative;
  top: -2px;
}

.form dl dt span.nini {
  background: #aaa;
  color: #111;
}

.form dl dd {
  padding-left: 280px;
  padding-bottom: 20px;
  padding-top: 23px;
  line-height: 1.5;
  border-bottom: 1px dotted #cccccc;
}

.form dl dd:last-child {
  border-bottom: none;
}

@media all and (max-width: 639px) {
  .form dl dd {
    padding-left: 0;
  }
}

.form .textarea,
.form textarea {
  border: 0;
  padding: 15px;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
  background: #f0f0f0;
}

.form .textarea02 {
  width: 48.5%;
  margin-right: 3%;
}

.form .textarea02:last-child {
  margin-right: 0;
}

.form .textarea03 {
  width: 20%;
  margin-right: 1%;
}

@media all and (max-width: 639px) {
  .form .textarea03 {
    width: 50%;
  }
}

.form button,
#contact .form-pattern-2 .submit-btn {
  cursor: pointer;
  display: block;
  color: #fff;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  border: 1px solid #7dc4ff;
  font-weight: 600;
  padding: 12px 5px;
  margin: 0 auto;
  width: 250px;
  background: #7dc4ff;
  border-radius: 25px;
}

.form button:hover,
#contact .form-pattern-2 .submit-btn:hover {
  background: #fff;
  color: #7dc4ff;
}

#contact .form-pattern-2 .submit-btn::before {
  transition: all .2s ease-in-out 0s;
}

#contact .form-pattern-2 .submit-btn:hover::before {
  background: #7dc4ff;
}

.form button:before {
  font-weight: normal;
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 10px;
}

.form .select-wrap {
  position: relative;
  overflow: hidden;
  display: inline-block;
  min-width: 192px;
  min-width: 12em;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  color: #333;
}

.form .select-wrap select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  z-index: 2;
  display: block;
  width: 200%;
  width: -webkit-calc(100% + 5em);
  margin: 0;
  padding: 11px 35px 11px 11px;
  padding: 0.6875rem 2.1875rem 0.6875rem 0.6875rem;
  background: transparent;
  border: 0;
  outline: none;
  line-height: 1.5;
}

.form .entypo-down-open-mini:before {
  font-family: "FontAwesome";
  content: "\f0ab";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 12px;
  right: 0.75rem;
  margin-top: -8px;
  margin-top: -0.5rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  color: #7dc4ff;
}

.form label.radio_text {
  cursor: pointer;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
  padding-left: 20px;
  display: inline-block;
}

.form label.radio_text:before {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 1px solid #ccc;
  border-radius: 50%;
  left: 0px;
  top: 2px;
  content: "";
  z-index: 3;
}

.form label.radio_text:after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 100%;
  left: 2px;
  top: 4px;
  background-color: #7dc4ff;
  z-index: 1;
}

.form label.radio_text input[type="radio"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 2;
  width: 20px;
  height: 20px;
  left: -23px;
  top: 0px;
  margin: 0px;
  -webkit-box-shadow: 20px -1px #fff;
  box-shadow: 20px -1px #fff;
}

.form label.radio_text input[type="radio"]:checked {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.form label.radio_text input[type="radio"]:focus {
  opacity: 0.2;
  -webkit-box-shadow: 20px -1px #eeebda;
  box-shadow: 20px -1px #eeebda;
}

.form label.checkbox_text {
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  margin: 0 20px 5px 0;
  overflow: hidden;
  display: inline-block;
}

.form label.checkbox_text:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0px;
  top: 0;
  border: 1px solid #ccc;
  z-index: 3;
  padding: 1px;
}

.form label.checkbox_text:after {
  content: "";
  position: absolute;
  top: 40%;
  left: 5px;
  display: block;
  margin-top: -9px;
  width: 8px;
  height: 12px;
  border-right: 3px solid #7dc4ff;
  border-bottom: 3px solid #7dc4ff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 1;
}

@media all and (max-width: 639px) {
  .form label.checkbox_text:after {
    margin-top: -18px;
  }
}

.form label.checkbox_text input[type="checkbox"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  left: -40px;
  width: 20px;
  height: 20px;
  display: block;
  -webkit-box-shadow: 41px 0px #fff;
  box-shadow: 41px 0px #fff;
  z-index: 2;
  margin: 0px;
  padding: 0px;
}

.form label.checkbox_text input[type="checkbox"]:checked {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.form label.checkbox_text input[type="checkbox"]:checked:focus {
  -webkit-box-shadow: 40px 0px #666;
  box-shadow: 40px 0px #666;
  opacity: 0.1;
}

.form label.checkbox_text input[type="checkbox"]:focus {
  -webkit-box-shadow: 41px 0px #eee;
  box-shadow: 41px 0px #eee;
}

.form input[type="text"],
.form textarea {
  font-size: 16px;
}

@media all and (max-width: 639px) {

  .form input[type="text"],
  .form textarea {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    margin-left: -5px;
  }
}

.accordion dt,
.accordion dd {
  position: relative;
  padding: 1em;
}

.accordion dt {
  background: #fff;
  font-size: 1.2em;
  font-weight: 600;
  border-top: 1px dotted #111;
  border-bottom: 1px dotted #111;
  color: #111;
}

@media all and (max-width: 639px) {
  .accordion dt {
    font-size: 1rem;
  }
}

.accordion dd {
  height: 400px;
  padding: 15px;
  background: #fff;
  color: #333;
  border-bottom: 1px dotted #111;
  overflow-y: auto;
}

#modal_bg {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 80;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

#modal_bg #modal_inner {
  padding: 40px;
  background: #7dc4ff;
}

#modal_bg #modal_inner .modal_img {
  width: 100px;
  margin: auto;
}

#modal_bg #modal_inner .modal_txt {
  color: #fff;
}

#modal_bg #modal_inner #modal_close {
  position: relative;
  text-align: center;
  margin-top: 40px;
}

#modal_bg #modal_inner #modal_close span {
  font-size: 2rem;
  color: #fff;
}

#modal_bg.active {
  opacity: 1;
  visibility: visible;
}

@media all and (max-width: 639px) {
  #modal_bg .flx3 .flx_in {
    width: 48%;
  }
}

#modal_toggle {
  text-align: center;
}

#modal_toggle span {
  display: inline-block;
  font-size: 1.5rem;
  background: #7dc4ff;
  color: #fff;
  padding: 2rem 6rem;
  cursor: pointer;
}

@media all and (max-width: 639px) {
  #modal_toggle span {
    font-size: 1.25rem;
    padding: 1rem 2rem;
  }
}

#modal_toggle span:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0da";
  font-weight: 900;
  margin-right: 5px;
}

.btn01 {
  text-align: center;
}

.btn01 a {
  width: 360px;
  min-width: 270px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 1rem;
  margin: auto;
  color: #7dc4ff;
  border: 1px solid #7dc4ff;
  position: relative;
}

@media all and (max-width: 639px) {
  .btn01 a {
    width: 320px;
    font-size: 0.875rem;
    padding: 1rem 2rem;
  }
}

.btn01 a svg {
  position: absolute;
  top: 50%;
  right: 14px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

#sp_menu {
  width: 100%;
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 88;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

#sp_menu.fixed {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

@media all and (max-width: 896px) {
  #sp_menu {
    display: block;
  }
}

#sp_menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#sp_menu ul li {
  width: 33%;
}

#sp_menu ul li a {
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: 0.1em;
  text-align: center;
  display: block;
  padding: 0.25rem;
  background: #7dc4ff;
  color: #fff;
}

#sp_menu ul li a span {
  display: block;
  text-align: center;
}

.top_bnr {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(125, 196, 255, 0.8)), to(rgba(125, 196, 255, 0.8))), url(../img/bnr_bg.jpg) center;
  background: linear-gradient(0deg, rgba(125, 196, 255, 0.8), rgba(125, 196, 255, 0.8)), url(../img/bnr_bg.jpg) center;
  padding: 5rem 1rem;
  text-align: center;
}

.top_bnr img {
  -webkit-filter: drop-shadow(2px 2px 2px #505050);
  filter: drop-shadow(2px 2px 2px #505050);
}

.flow_box {
  padding: 20px;
}

.bdr {
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e3f2ff;
}

.blog_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.blog_wrap .blog_main {
  width: 78%;
}

@media all and (max-width: 896px) {
  .blog_wrap .blog_main {
    width: 100%;
  }
}

.blog_wrap .blog_side {
  width: 20%;
}

@media all and (max-width: 896px) {
  .blog_wrap .blog_side {
    width: 100%;
  }
}

.blog_wrap .blog_side .archive:before {
  font-family: "Font Awesome 5 Free";
  content: "\f03a";
  font-weight: 900;
  margin-right: 5px;
}

.tab:hover {
  cursor: pointer;
}

.content {
  display: none;
}

.content.is-show {
  display: block;
}

.pc {
  display: block;
}

@media all and (max-width: 639px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}

@media all and (max-width: 639px) {
  .sp {
    display: block;
  }
}

@-webkit-keyframes zoom-in {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(1.12);
    transform: scale(1.12);
  }
}

@keyframes zoom-in {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(1.12);
    transform: scale(1.12);
  }
}

.thanks {
  width: 700px;
  max-width: 100%;
  padding: 2rem;
  margin: auto;
  border: 3px solid #505050;
  -webkit-box-shadow: 0 0 0 8px rgba(125, 196, 255, 0.8);
  box-shadow: 0 0 0 8px rgba(125, 196, 255, 0.8);
}

#page_top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  opacity: 0;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
}

@media all and (max-width: 639px) {
  #page_top {
    bottom: 70px;
  }
}

#page_top a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #8eb3e2;
  border-radius: 5px;
  width: 60px;
  height: 60px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.6rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#page_top a:hover {
  background: #777;
}

#page_top.UpMove {
  -webkit-animation: UpAnime 0.5s forwards;
  animation: UpAnime 0.5s forwards;
}

@-webkit-keyframes UpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes UpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.catch_wrap {
  overflow: hidden;
}

.catch_anim {
  opacity: 0;
  display: inline-block;
  overflow: hidden;
}

.catch_anim.on {
  -webkit-animation-name: fadeDown;
  animation-name: fadeDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  opacity: 1 !important;
}

.catch_anim2 {
  opacity: 0;
  display: inline-block;
  overflow: hidden;
}

.catch_anim2.on {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
}

@-webkit-keyframes fadeDown {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeDown {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.slide_anim {
  opacity: 0;
  display: inline-block;
  overflow: hidden;
}

.slide_anim.on {
  -webkit-animation-name: maskIn;
  animation-name: maskIn;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  position: relative;
  opacity: 1 !important;
}

.slide_anim.on:before {
  -webkit-animation-name: maskOut;
  animation-name: maskOut;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.slide_anim:before {
  background: #fff;
}

@-webkit-keyframes maskIn {
  from {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes maskIn {
  from {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes maskOut {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(101%);
    transform: translateX(101%);
  }
}

@keyframes maskOut {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(101%);
    transform: translateX(101%);
  }
}

.feature-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 50px;
}

.feature-list>li {
  position: relative;
  margin-bottom: 100px;
  width: 45%;
  -webkit-filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.3));
  filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.3));
}

@media all and (max-width: 639px) {
  .feature-list>li {
    width: 100%;
    margin: 0 auto 35px;
  }
}

.feature-list>li:nth-child(2n) {
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
}

@media all and (max-width: 639px) {
  .feature-list>li:nth-child(2n) {
    -webkit-transform: none;
    transform: none;
  }
}

.feature-list>li .feature-inner {
  width: 100%;
  height: 100%;
  background: #fff;
  overflow: hidden;
  position: relative;
  -webkit-clip-path: polygon(95% 0, 100% 50%, 95% 100%, 0% 100%, 5% 50%, 0% 0%);
  clip-path: polygon(95% 0, 100% 50%, 95% 100%, 0% 100%, 5% 50%, 0% 0%);
}

.feature-list>li figure {
  width: 100%;
}

.feature-list>li figure img {
  width: 100%;
}

@media all and (max-width: 639px) {
  .feature-list>li figure {
    width: 100%;
    height: 250px;
  }
}

.feature-list>li .feature-num {
  display: block;
  position: absolute;
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: 0.1em;
  font-size: 2rem;
  left: 40px;
  top: 10px;
  z-index: 3;
  color: #8cc1ed;
}

@media all and (max-width: 639px) {
  .feature-list>li .feature-num {
    width: 100px;
  }
}

.feature-list>li .feature-txt {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  font-size: 1.5rem;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

@media all and (max-width: 639px) {
  .feature-list>li .feature-txt {
    padding: 25px 15px;
    font-size: 1.2rem;
  }
}

.feature-list>li .feature-title {
  font-size: 1.25rem;
  line-height: 1.4;
  color: #505050;
  margin-bottom: 10px;
}

@media all and (max-width: 639px) {
  .feature-list>li .feature-title {
    font-size: 1.4rem;
  }
}

@media all and (max-width: 639px) {
  .feature-list {
    padding: 0 10px;
  }
}

.feature_num {
  width: 120px;
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #7dc4ff;
  color: #fff;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1.2;
}

.feature_num span {
  display: block;
  color: #fff;
  font-size: 1rem;
}

.feature_num.type2 {
  background: rgba(255, 255, 255, 0.8);
  color: #505050;
  border: 2px solid #505050;
}

.feature_num.type3 {
  position: static;
  -webkit-transform: none;
  transform: none;
  margin-left: auto;
}

.feature_bnr3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 80px;
}

.feature_bnr3 .feature_bnr3_box {
  width: 48%;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

@media all and (max-width: 1200px) {
  .feature_bnr3 .feature_bnr3_box {
    width: 48%;
  }
}

@media all and (max-width: 896px) {
  .feature_bnr3 .feature_bnr3_box {
    width: 100%;
    padding: 1rem;
    margin-bottom: 2rem;
  }
}

.feature_bnr3 .feature_bnr3_box:before {
  content: "";
  display: block;
  width: 100%;
  height: 90%;
  background: #fafafa;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.feature_bnr3 .feature_bnr3_box.type2 {
  width: 32%;
}

@media all and (max-width: 1200px) {
  .feature_bnr3 .feature_bnr3_box.type2 {
    width: 48%;
  }
}

@media all and (max-width: 896px) {
  .feature_bnr3 .feature_bnr3_box.type2 {
    width: 100%;
    padding: 1rem;
    margin-bottom: 2rem;
  }
}

.feature_bnr3 .feature_bnr3_box.type2:before {
  background: #fffaf6;
}

.feature_bnr3 .feature_bnr3_box .feature_bnr_img img {
  width: 100%;
}

.feature_bnr3 .feature_bnr3_box .feature_bnr_txt {
  padding: 20px 0;
  margin-top: -80px;
  position: relative;
}

.feature_bnr3 .feature_bnr3_box .feature_bnr_txt .feature_num {
  margin-left: 10px;
  margin-bottom: 10px;
}

.feature_bnr3 .feature_bnr3_box .feature_bnr_txt .h_ttl_big {
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.feature_bnr3 .feature_bnr3_box.type2 .feature_num {
  background: rgba(255, 255, 255, 0.8);
  color: #505050;
  border: 2px solid #505050;
}

.feature_bnr3 .btn01 a {
  padding: 1rem 6rem;
}

.contact_sec {
  color: #fff;
  text-align: center;
}

.contact_sec a {
  color: #fff;
}

.contact_sec .contact_sec_tel a {
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: 0.1em;
  font-size: 2rem;
}

.contact_sec .contact_sec_tel a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f87b";
  font-weight: 900;
  margin-right: 5px;
}

.contact_sec .contact_sec_tel+p {
  margin-bottom: 2rem;
}

@media all and (max-width: 639px) {
  .contact_sec .contact_sec_tel+p {
    font-size: 0.875rem;
  }
}

.contact_sec .contact_sec_mail {
  width: 380px;
  margin: 0 0.5rem;
}

@media all and (max-width: 639px) {
  .contact_sec .contact_sec_mail {
    width: 270px;
    margin: 0 0 1rem;
  }
}

.contact_sec .contact_sec_mail a {
  display: block;
  padding: 1rem 3rem;
  border: 1px solid #fff;
  font-size: 1.25rem;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

@media all and (max-width: 639px) {
  .contact_sec .contact_sec_mail a {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

.contact_sec .contact_sec_mail a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 5px;
}

.contact_sec .contact_sec_mail a:hover {
  background: rgba(255, 255, 255, 0.8);
  color: #7dc4ff;
}

.line_anim {
  position: absolute;
  width: 625px;
  height: 640px;
  margin: auto;
  opacity: .2;
}

.line_anim.item1 {
  top: 250px;
  right: 70.5%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.line_anim.item2 {
  top: 250px;
  left: 75%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.line_anim_box1 {
  padding-right: 43px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.line_anim_box1>span {
  position: relative;
  display: block;
  width: 1px;
  background: #5a5a5a;
  margin-right: 41px;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
}

.line_anim_box1>span:nth-of-type(1) {
  height: 568px;
  top: 70px;
}

.line_anim_box1>span:nth-of-type(2) {
  height: 568px;
  top: 56px;
}

.line_anim_box1>span:nth-of-type(3) {
  height: 469px;
  top: 84px;
}

.line_anim_box1>span:nth-of-type(4) {
  height: 469px;
  top: 98px;
}

.line_anim_box1>span:nth-of-type(5) {
  height: 469px;
}

.line_anim_box1.pt2>span {
  background: #f1f1f1;
}

.line_anim_box2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 25px;
}

.line_anim_box2>span {
  position: relative;
  display: block;
  height: 1px;
  background: #5a5a5a;
  margin-bottom: 44px;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}

.line_anim_box2>span:nth-of-type(1) {
  width: 400px;
  left: 50px;
}

.line_anim_box2>span:nth-of-type(2) {
  width: 400px;
  left: 100px;
}

.line_anim_box2>span:nth-of-type(3) {
  width: 400px;
  left: 57px;
}

.line_anim_box2>span:nth-of-type(4) {
  width: 470px;
  left: 0;
}

.line_anim_box2>span:nth-of-type(5) {
  width: 470px;
  left: 70px;
}

.line_anim_box2>span:nth-of-type(6) {
  width: 470px;
  left: 57px;
}

.line_anim_box2>span:nth-of-type(7) {
  width: 526px;
  left: 100px;
}

.line_anim_box2.pt2>span {
  background: #f1f1f1;
}

.line_anim_box1,
.line_anim_box2 {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.line_anim.active .line_anim_box1>span {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.line_anim.active .line_anim_box2>span {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.line_anim.active span {
  -webkit-transition-duration: 3s;
  transition-duration: 3s;
  -webkit-transition-timing-function: cubic-bezier(0.08, 0.92, 0.35, 1);
  transition-timing-function: cubic-bezier(0.08, 0.92, 0.35, 1);
}

.line_anim.active span:nth-of-type(1) {
  -webkit-transform-origin: 38% 38%;
  transform-origin: 38% 38%;
  -webkit-transition-delay: .4s;
  transition-delay: .4s;
}

.line_anim.active span:nth-of-type(2) {
  -webkit-transform-origin: 60% 60%;
  transform-origin: 60% 60%;
  -webkit-transition-delay: .6s;
  transition-delay: .6s;
}

.line_anim.active span:nth-of-type(3) {
  -webkit-transform-origin: 70% 70%;
  transform-origin: 70% 70%;
  -webkit-transition-delay: .5s;
  transition-delay: .5s;
}

.line_anim.active span:nth-of-type(4) {
  -webkit-transform-origin: 42% 42%;
  transform-origin: 42% 42%;
  -webkit-transition-delay: .4s;
  transition-delay: .4s;
}

.line_anim.active span:nth-of-type(5) {
  -webkit-transform-origin: 60% 60%;
  transform-origin: 60% 60%;
  -webkit-transition-delay: .6s;
  transition-delay: .6s;
}

.line_anim.active span:nth-of-type(6) {
  -webkit-transform-origin: 36% 36%;
  transform-origin: 36% 36%;
  -webkit-transition-delay: .4s;
  transition-delay: .4s;
}

.line_anim.active span:nth-of-type(7) {
  -webkit-transform-origin: 45% 45%;
  transform-origin: 45% 45%;
  -webkit-transition-delay: .5s;
  transition-delay: .5s;
}

.svg_wrap {
  position: absolute;
  z-index: -9999;
}

.property_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.property_box>li {
  width: calc(100% / 3 - 30px);
  background: #f4f4f4;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 1em;
  overflow: hidden;
  position: relative;
  margin: 0 15px 3em;
}

.property_box>li:hover .img>img {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
  transform: translate(-50%, -50%) scale(1.1);
}

.property_box>li:hover .btn {
  color: #fff;
  background: #7dc4ff;
  border: 2px solid #7dc4ff;
}

.property_box>li>a {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
}

.property_box .img {
  overflow: hidden;
  position: relative;
  height: 0;
  padding-top: 62%;
  margin-bottom: 10px;
}

.property_box .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: 1.5s;
  transition: 1.5s;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.property_box .info {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 1;
}

.property_box .info .cat {
  display: inline-block;
  background: #7dc4ff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 7px 10px 4px;
  color: #fff;
}

.property_box .info .day {
  text-align: right;
  display: inline-block;
  margin-right: 10px;
}

.property_box .ttl {
  font-size: 18px;
  margin-bottom: 5px;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.property_box .btn {
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  margin-top: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 8px;
  border-radius: 4px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  background: #fff;
  color: #7dc4ff;
  border: 2px solid #7dc4ff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media screen and (max-width: 768px) {
  .property_box>li {
    width: 100%;
    display: block;
    padding: 10px;
    margin: 0 auto 3em;
  }

  .property_box>li:hover .img img {
    -webkit-transform: scale(1.1) translate(-50%, -50%);
    transform: scale(1.1) translate(-50%, -50%);
  }

  .property_box>li:hover .btn {
    background: #fff;
    color: #7dc4ff;
    border: 2px solid #7dc4ff;
  }

  .property_box .img {
    width: 100%;
    height: 0;
    padding-top: 72%;
    margin-bottom: 10px;
  }

  .property_box .img img {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .property_box .data {
    width: 100%;
  }

  .property_box .ttl {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .property_box .btn {
    font-size: 15px;
    color: #fff;
    background: #7dc4ff;
    border: 2px solid #7dc4ff;
  }
}

.data_tbl {
  width: 100%;
  background: #fff;
  font-size: 14px;
  line-height: 1.5;
}

.data_tbl.ptn_02 tbody {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.data_tbl.ptn_02 tr {
  width: 48%;
  padding: 12px 0px;
}

.data_tbl tr {
  border-bottom: solid 1px #ccc;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.data_tbl tr.full {
  width: 100%;
  border: none;
}

.data_tbl tr.full th {
  display: none;
}

.data_tbl tr.full td {
  padding-left: 0;
}

.data_tbl tr.long {
  width: 100%;
}

.data_tbl th {
  font-size: 12px;
  text-align: left;
  vertical-align: middle;
  font-weight: 500;
  width: 80px;
  position: relative;
  padding: 8px 8px;
}

/* .data_tbl th:before {
  content: "";
  height: 20px;
  width: 1px;
  background: #ccc;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
} */
.data_tbl th span {
  font-size: 12px;
  font-weight: normal;
}

.data_tbl td {
  padding: 6px 0;
  padding-left: 15px;
  border: 0px solid #aaa;
  vertical-align: middle;
}

.data_tbl .price {
  font-size: 16px;
  font-weight: 700;
  color: #d41414;
}

@media screen and (max-width: 480px) {
  .data_tbl {
    font-size: 13px;
  }

  .data_tbl.ptn_02 tr {
    width: 100%;
    padding: 3px 0;
  }

  .data_tbl tr {
    padding: 10px 0px;
  }

  .data_tbl tr.full {
    font-size: 14px;
  }

  .data_tbl th {
    width: 55px;
    font-size: 12px;
    padding-right: 5px;
  }

  .data_tbl td {
    padding-left: 10px;
  }

  .data_tbl .price {
    font-size: 16px;
  }
}

@media all and (max-width: 896px) {

  .prlx,
  .prlx2,
  .prlx3 {
    -webkit-transform: none !important;
    transform: none !important;
    background-position: bottom !important;
  }
}

.top_works {
  width: 32%;
}

@media all and (max-width: 896px) {
  .top_works {
    width: 100%;
  }
}

.top_works figure {
  margin-bottom: 1rem;
}

.top_works .h_ttl_s {
  font-size: 1rem;
}

.top_works_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.top_works_list dt {
  width: 120px;
  padding: 5px;
  background: #fafafa;
  border: 1px solid #ccc;
}

.top_works_list dt:nth-of-type(n+2) {
  border-top: 0;
}

.top_works_list dd {
  width: calc(100% - 120px);
  padding: 5px;
  border: 1px solid #ccc;
  border-left: 0;
}

.top_works_list dd:nth-of-type(n+2) {
  border-top: 0;
}

.works_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.works_list dt {
  width: 50%;
  padding: 1rem 0.5rem;
  background: #fafafa;
  border-bottom: 1px solid #ccc;
}

.works_list dt:first-of-type {
  border-top: 1px solid #ccc;
}

@media all and (max-width: 896px) {
  .works_list dt {
    width: 100%;
  }
}

.works_list dd {
  width: 50%;
  padding: 1rem 0.5rem;
  border-bottom: 1px solid #ccc;
}

.works_list dd:first-of-type {
  border-top: 1px solid #ccc;
}

@media all and (max-width: 896px) {
  .works_list dd {
    width: 100%;
  }
}

#side_menu {
  width: 200px;
  position: fixed;
  top: 70%;
  right: -140px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

@media all and (max-width: 639px) {
  #side_menu {
    width: 150px;
    right: -90px;
  }
}

#side_menu li a {
  display: block;
  padding: 1rem;
  background: #c6e5ff;
  color: #fff;
  text-align: center;
}

@media all and (max-width: 639px) {
  #side_menu li a {
    font-size: 0.75rem;
  }
}

#side_menu li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0da";
  font-weight: 900;
  margin-right: 5px;
}

#side_menu #side_toggle {
  width: 60px;
  padding: 0.5rem;
  background: #c6e5ff;
  text-align: center;
  color: #fff;
}

#side_menu #side_toggle:before {
  display: block;
  content: 'OPEN';
  font-size: 0.5rem;
}

#side_menu.on {
  right: 0;
}

#side_menu.on #side_toggle:before {
  content: 'CLOSE';
}

.bg_map {
  width: 1020px;
  max-width: 100%;
  margin: auto;
  position: relative;
}

.bg_map:before {
  content: "";
  width: 100%;
  height: 80%;
  background: url(../img/bg_map.svg) no-repeat right/contain;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.bg_map .map_box {
  max-width: 50%;
}

@media all and (max-width: 639px) {
  .bg_map .map_box {
    max-width: 100%;
  }
}

.recruit_main figure {
  position: relative;
  z-index: -1;
}

.recruit_main figure:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  position: absolute;
  top: 0;
  left: 0;
}

@media all and (max-width: 639px) {
  .recruit_main figure:before {
    display: none;
  }
}

.recruit_main .recruit_body {
  margin-top: -500px;
}

@media all and (max-width: 639px) {
  .recruit_main .recruit_body {
    margin-top: 20px;
  }
}

.recruit_main .box3 {
  -webkit-box-shadow: none;
  box-shadow: none;
}