@charset "UTF-8";
/* アニメーションベンダープレフィックス込み指定 */
/* アニメーションベンダープレフィックス込み指定 */
/********************/
body {
  color: #44433d;
  background: #fefefe;
  font-family: "Zen Kaku Gothic New", "YakuHanJP", Lato, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  font-weight: 500;
  position: relative;
  letter-spacing: 0.05em;
  display: flex;
  flex-direction: column;
}
body:before {
  position: fixed;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2;
  background: url(../img/body.jpg) repeat-y;
  opacity: 0.4;
  background-size: 100%;
}

a {
  color: #206cbb;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

#wrapper {
  overflow: hidden;
  flex: 1;
}

.subpage-wrapper {
  animation: fadein 2s;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
em {
  font-style: normal;
}

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

.bold {
  font-weight: 600;
}

h2,
h3,
h4 {
  line-height: 1.4;
  font-weight: 600;
}

.mincho {
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
  font-weight: 500 !important;
}

.eng-txt {
  font-family: "Comfortaa", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

.bigger {
  font-size: 1.8rem;
}
@media screen and (max-width: 639px) {
  .bigger {
    font-size: 1.25rem;
  }
}

.smaller {
  font-size: 13px;
  letter-spacing: 0;
}

.en-big {
  font-family: "Comfortaa", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
}

/* animation
----------------------------------*/
@keyframes view-zoomin {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes view-slideup {
  0% {
    opacity: 0;
    transform: translate(0, 35px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.animation {
  opacity: 0;
}

.slideup.on {
  opacity: 1;
  animation: view-slideup 0.65s cubic-bezier(0.2, 1, 0.2, 1);
}

.zoomin.on {
  opacity: 1;
  animation: view-zoomin 0.65s cubic-bezier(0.2, 1, 0.2, 1);
}

.loader {
  align-items: center;
  background: #fdfdfd;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
}
.loader::after {
  animation: loader 0.5s linear infinite;
  border: 1px solid #2478d1;
  border-radius: 50%;
  border-right: 1px solid rgba(36, 120, 209, 0.2);
  border-top: 1px solid rgba(36, 120, 209, 0.2);
  content: "";
  height: 70px;
  width: 70px;
}
.loader.off {
  display: none;
}

@keyframes loader {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes bound {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(10px);
  }
}
@keyframes yurayura {
  0%, 100% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(-5deg);
  }
}
/* header
----------------------------------*/
@keyframes hd-scrolled {
  0% {
    opacity: 0;
    transform: translate(0, -100%);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.gradient {
  background: linear-gradient(45deg, #ccc, #102777, #eee);
  background-size: 600% 600%;
  animation: anim-gradient 10s ease infinite;
}

@keyframes anim-gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
#l-header {
  width: 100%;
  transition: all 0.2s ease-in;
  position: absolute;
  top: 0;
  z-index: 200;
}
@media screen and (max-width: 1025px) {
  #l-header {
    top: 20px;
  }
}
#l-header.is-fixed {
  position: fixed;
  top: 20px;
}
#l-header.is-fixed .inner {
  background: #fefefe;
  border-radius: 60px;
  padding: 10px 40px;
}
#l-header.is-fixed .inner #logo .logo1 {
  display: none;
}
#l-header.is-fixed .inner #logo .logo2 {
  display: block;
}
#l-header.is-fixed .head-right .head-right_contact {
  display: none;
}
#l-header.is-fixed .head-right .head-right_contact .head-right_tel a {
  color: #fff;
}
#l-header.is-fixed .head-right .head-right_contact .head-right_tel a:hover {
  color: #57c4e0;
}
#l-header.is-fixed .inner #logo {
  width: 160px;
}
#l-header .inner {
  display: flex;
  flex-wrap: wrap;
  max-width: 98%;
  margin: 0 auto;
  padding: 20px;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1025px) {
  #l-header .inner {
    min-width: initial;
    padding: 0;
    box-shadow: none;
    background: transparent;
  }
}
#l-header .inner #logo {
  width: 220px;
}
#l-header .inner #logo .logo2 {
  display: none;
}
#l-header .head-right {
  margin-left: auto;
}
#l-header .head-right_contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  margin-left: auto;
  margin-bottom: 20px;
}
#l-header .head-right_tel a {
  padding: 8px 20px 8px 20px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.1;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  display: block;
  border-radius: 30px;
  height: 47px;
  display: flex;
  align-items: center;
  background: linear-gradient(-90deg, #174c93 0%, #2478d1 27%, #57c4e0 55%, #88e0ef 100%);
}
#l-header .head-right_tel a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 6px;
  font-size: 0.9em;
}
#l-header .head-right_tel a:hover {
  opacity: 0.6;
}
#l-header .head-right_mail {
  margin-left: 15px;
}
#l-header .head-right_mail a {
  padding: 8px 20px 8px 45px;
  position: relative;
  color: #fefefe;
  display: block;
  border-radius: 30px;
  height: 47px;
  display: flex;
  align-items: center;
  background: #44433d;
}
#l-header .head-right_mail a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
}
#l-header .head-right_mail a:hover {
  opacity: 0.6;
}

#header_nav {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 60px;
  padding: 10px 40px;
}
@media screen and (max-width: 896px) {
  #header_nav {
    display: none;
  }
}
.is-fixed #header_nav {
  padding: 0;
}
.is-fixed #header_nav ul li a {
  color: #44433d;
  text-shadow: none;
  filter: none;
}
.is-fixed #header_nav ul li a span {
  color: #44433d;
}
.is-fixed #header_nav ul li a.active span, .is-fixed #header_nav ul li a:hover span {
  color: #195390;
}
#header_nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
#header_nav ul li {
  position: relative;
}
#header_nav ul li a {
  display: block;
  position: relative;
  line-height: 1.5;
  font-size: 1.7rem;
  padding: 10px 0;
  color: #44433d;
  font-weight: 600;
  text-align: center;
}
#header_nav ul li a span {
  display: block;
  font-size: 1.3rem;
  font-family: "Comfortaa", sans-serif;
  font-weight: 700;
  color: #57c4e0;
  position: relative;
}
#header_nav ul li a:after {
  position: absolute;
  content: "";
  width: 0;
  height: 3px;
  background: #88e0ef;
  left: 0;
  bottom: -2px;
  transition: 0.2s width ease-in;
}
#header_nav ul li a:hover span, #header_nav ul li a.active span {
  color: #88e0ef;
}
#header_nav ul li a:hover:after, #header_nav ul li a.active:after {
  width: 20px;
}
#header_nav .dropdown {
  display: none;
  position: absolute;
  left: -30px;
  top: 45x;
  z-index: 999;
  padding-top: 20px;
}
#header_nav .dropdown.drop-last {
  left: auto;
  right: -80px;
}
#header_nav .dropdown .dropdown-ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 8px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(5px);
  padding: 15px;
}
#header_nav .dropdown .dropdown-li {
  border-right: 0;
  background: #102777;
  width: 130px;
}
#header_nav .dropdown .dropdown-li a {
  display: block;
  width: 100%;
  padding: 12px 10px;
  color: #fff;
  font-size: 1.3rem;
  letter-spacing: 0;
}
#header_nav .dropdown .dropdown-li a .footer-only {
  display: none;
}
#header_nav .dropdown .dropdown-li a:hover {
  color: #102777;
}
#header_nav .dropdown .dropdown-li a:after {
  display: none;
}

/* page-top
----------------------------------*/
#page-top {
  position: fixed;
  bottom: 10px;
  right: 7px;
  z-index: 250;
}
#page-top a {
  display: block;
  color: #44433d;
  font-size: 1.2rem;
  text-align: center;
  font-family: "Comfortaa", sans-serif;
  font-weight: 700;
  letter-spacing: 1;
  letter-spacing: 0em;
}
#page-top a i {
  display: block;
  font-size: 3rem;
}
#page-top a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 639px) {
  #page-top a {
    font-size: 1.2rem;
  }
  #page-top a i {
    font-size: 2.5rem;
  }
}

/* swiper
----------------------------------*/
@keyframes zoom-in {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.12);
  }
}
.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {
  animation: zoom-in 11s linear 0s 1 normal both;
}

#slideshow {
  position: relative;
  margin-inline: auto;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
}
#slideshow:before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  left: -100px;
  top: 0;
  background: url(../img/mv_deco01.png) no-repeat left top/contain;
  z-index: 10;
}
#slideshow:after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  right: -100px;
  bottom: 0;
  background: url(../img/mv_deco02.png) no-repeat right bottom/contain;
  z-index: 10;
}
#slideshow .swiper-slide {
  position: relative;
}
#slideshow .swiper-slide:before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  right: 0;
  top: 0;
  background-position: 50%;
  background-size: cover;
  z-index: -1;
}
#slideshow .swiper-slide.slide1:before {
  background-image: url(../img/1.jpg);
  background-position: 65% 50%;
}
#slideshow .swiper-slide.slide2:before {
  background-image: url(../img/2.jpg);
  background-position: 50%;
}
#slideshow .swiper-slide.slide3:before {
  background-image: url(../img/3.jpg);
}
#slideshow .slide-img {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100vh;
}
#slideshow .slide-img::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(-90deg, #174c93 0%, #2478d1 27%, #57c4e0 55%, #88e0ef 100%);
  z-index: 1;
  opacity: 0.15;
}
#slideshow .slide-img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1440px) {
  #slideshow .slide-img {
    height: 65vw;
  }
}
@media screen and (max-width: 896px) {
  #slideshow .slide-img {
    height: 65vh;
  }
}
@media screen and (max-width: 639px) {
  #slideshow .slide-img {
    height: 45vh;
  }
  #slideshow .slide-img::after {
    background: linear-gradient(to right, white 5%, rgba(255, 255, 255, 0.8) 40%, rgba(255, 255, 255, 0));
  }
}
@media screen and (max-width: 639px) {
  #slideshow {
    width: 95%;
  }
}

#slide-wrap {
  position: relative;
}
#slide-wrap:before {
  position: absolute;
  content: "";
  width: 80%;
  height: 80%;
  bottom: -150px;
  right: -150px;
  z-index: -2;
  opacity: 0;
  background: radial-gradient(ellipse at center, rgb(96, 171, 248) 0%, rgb(155, 201, 247) 28%, rgb(155, 201, 247) 18%, rgb(255, 255, 255) 70%);
}
#slide-wrap::after {
  position: absolute;
  content: "";
  width: 80%;
  height: 80%;
  top: 0;
  left: -150px;
  z-index: -2;
  opacity: 0;
  background: radial-gradient(ellipse at center, rgb(96, 171, 248) 0%, rgb(155, 201, 247) 28%, rgb(155, 201, 247) 18%, rgb(255, 255, 255) 70%);
}
#slide-wrap.on:before, #slide-wrap.on::after {
  transition: 0.4s ease-in all;
  opacity: 0.4;
}
@media screen and (max-width: 1025px) {
  #slide-wrap {
    margin-bottom: 60px;
    padding-top: 100px;
  }
}
@media screen and (max-width: 896px) {
  #slide-wrap:before {
    bottom: -40px;
  }
}
@media screen and (max-width: 639px) {
  #slide-wrap {
    margin-bottom: 30px;
    padding-top: 80px;
  }
  #slide-wrap:before {
    bottom: -20px;
  }
}

#catch {
  z-index: 50;
  position: absolute;
  left: 20px;
  bottom: 8%;
  z-index: 10;
  opacity: 0;
  max-width: 700px;
  filter: drop-shadow(5px 5px 8px rgba(0, 87, 147, 0.4));
}
#catch.on {
  transition: 1.4s ease-in opacity;
  opacity: 1;
}
@media screen and (max-width: 1101px) {
  #catch {
    width: 50%;
  }
}
@media screen and (max-width: 639px) {
  #catch {
    width: 70%;
  }
}

#scrolldown {
  position: absolute;
  right: 15px;
  bottom: 60px;
  color: #fefefe;
  font-family: "Comfortaa", sans-serif;
  font-weight: 700;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  font-size: 1.4rem;
  z-index: 100;
  height: 210px;
}
#scrolldown:before, #scrolldown:after {
  position: absolute;
  content: "";
  z-index: 2;
  left: 50%;
}
#scrolldown:before {
  width: 1px;
  height: 100px;
  bottom: 0;
  background: #f0f0f0;
  transform: translateX(-50%);
}
#scrolldown:after {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 100%;
  top: 100px;
  margin-left: -4px;
  animation: scroll-point 2.3s ease-out infinite;
  animation-fill-mode: both;
}
@media screen and (max-width: 1025px) {
  #scrolldown {
    display: none;
  }
}

@keyframes scroll-point {
  0% {
    bottom: 0;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  50% {
    top: 180px;
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    top: 210px;
    opacity: 0;
  }
}
/* contact_bnr
----------------------------------*/
.contact-txt {
  text-align: center;
  margin-top: 10px;
}

.contact_bnr {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.contact_bnr > li:first-child {
  margin-right: 40px;
}
@media screen and (max-width: 896px) {
  .contact_bnr > li:first-child {
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 639px) {
  .contact_bnr > li {
    width: 100%;
    margin: 0 auto 10px;
  }
}
.contact_bnr > li .bnr_tel {
  white-space: nowrap;
  position: relative;
  padding: 5px 0;
  color: #fff;
  font-size: 4rem;
  font-weight: 600;
  letter-spacing: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 900;
}
.contact_bnr > li .bnr_tel:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
  font-size: 0.6em;
}
.contact_bnr > li .bnr_tel:hover {
  opacity: 0.4;
}
@media screen and (max-width: 639px) {
  .contact_bnr > li .bnr_tel {
    font-size: 2.4rem;
  }
}
.contact_bnr > li .bnr_mobile:before {
  font-family: "Font Awesome 5 Free";
  content: "\f3cd";
  font-weight: 900;
}
.contact_bnr > li .bnr_fax {
  background: #fdfdfd;
  color: #2478d1;
}
.contact_bnr > li .bnr_fax:before {
  font-family: "Font Awesome 5 Free";
  content: "\f1ac";
  font-weight: 900;
}
.contact_bnr > li .bnr_mail {
  width: 300px;
  font-size: 1.8rem;
  padding: 15px 0;
  color: #44433d;
  background: #fff;
}
.contact_bnr > li .bnr_mail:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
}
@media screen and (max-width: 639px) {
  .contact_bnr > li .bnr_mail {
    font-size: 1.6rem;
    padding: 10px;
    width: 100%;
  }
}
.contact_bnr > li .bnr_mail:hover {
  opacity: 0.4;
}
.contact_bnr > li a,
.contact_bnr > li span {
  display: block;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.2rem;
  padding: 12px 10px;
}
.contact_bnr > li a:before,
.contact_bnr > li span:before {
  margin-right: 5px;
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 639px) {
  .contact_bnr > li a,
  .contact_bnr > li span {
    margin: 0 auto;
    white-space: nowrap;
    padding: 10px 0;
    width: 100%;
  }
}
@media screen and (max-width: 896px) {
  .contact_bnr {
    flex-direction: column;
  }
  .contact_bnr > li .bnr_tel {
    font-size: 3rem;
  }
}

/* footer
----------------------------------*/
.footer-contact-box {
  position: relative;
  background: linear-gradient(-60deg, #2478d1 0%, #57c4e0 50%, #88e0ef 100%);
  background: url(../img/bg_b.jpg);
  background-size: 100%;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  width: 95%;
  border-radius: 40px;
  margin-top: 80px;
}
.footer-contact-box a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 40px;
  padding: 150px;
}
.footer-contact-box a .txt {
  color: #fff;
  font-weight: bold;
}
.footer-contact-box a .txt .ttl {
  font-family: "Comfortaa", sans-serif;
  font-weight: 700;
  font-size: 5rem;
}
.footer-contact-box a .btn {
  background: #fff;
  width: 150px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #2478d1;
  transition: all 0.5s ease;
}
.footer-contact-box a:hover .btn {
  transform: scale(1.2);
}
@media screen and (max-width: 896px) {
  .footer-contact-box {
    margin-top: 40px;
  }
  .footer-contact-box a {
    padding: 80px 40px;
  }
  .footer-contact-box a .btn {
    width: 100px;
  }
}
@media screen and (max-width: 639px) {
  .footer-contact-box {
    border-radius: 20px;
    margin-top: 0;
  }
  .footer-contact-box a {
    border-radius: 20px;
    padding: 80px 20px;
  }
  .footer-contact-box a .txt .ttl {
    font-size: 3rem;
  }
  .footer-contact-box a .txt p {
    font-size: 1rem;
  }
  .footer-contact-box a .btn {
    width: 80px;
  }
}

#l-footer {
  position: relative;
  width: 90%;
  margin: 0 auto;
}
#l-footer .inner {
  position: relative;
  padding: 60px 40px;
  z-index: 2;
}
#l-footer .footer-column {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
  padding-top: 40px;
  z-index: 2;
}
#l-footer .footer-column.type1 {
  margin: 0 auto;
}
#l-footer .footer-column .footer-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#l-footer .footer-column .footer-right iframe {
  height: 350px;
  filter: grayscale(70%);
}
@media screen and (max-width: 1300px) {
  #l-footer:before {
    background-position: center bottom;
  }
}
@media screen and (max-width: 1025px) {
  #l-footer .inner {
    padding: 40px 15px;
  }
  #l-footer .footer-column .footer-left {
    width: 100%;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1025px) and (max-width: 639px) {
  #l-footer .footer-column .footer-left {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1025px) {
  #l-footer .footer-column .footer-right {
    width: 100%;
  }
  #l-footer .footer-column .footer-right iframe {
    height: 250px;
  }
}
@media screen and (max-width: 639px) {
  #l-footer:before {
    top: -89px;
    height: 90px;
  }
}

.footer-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-wrap .footer-left {
  width: 38%;
}
.footer-wrap .footer-right {
  width: 50%;
}
@media screen and (max-width: 639px) {
  .footer-wrap {
    flex-direction: column;
  }
  .footer-wrap .footer-left,
  .footer-wrap .footer-right {
    width: 100%;
  }
  .footer-wrap .footer-left {
    margin-bottom: 20px;
    text-align: center;
    margin: 0 auto 20px;
  }
  .footer-wrap .footer-right {
    padding: 0 10px;
  }
}

.map-big {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 20px;
  margin-top: 30px;
  flex-basis: 100%;
}

/* footer_navi
----------------------------------*/
.footer_navi {
  margin-top: 40px;
  position: relative;
}
.footer_navi ul {
  margin: 0 auto;
  display: flex;
  text-align: center;
  justify-content: center;
  gap: 40px;
}
.footer_navi ul li:last-child {
  display: none;
}
.footer_navi ul li a {
  font-size: 1.4rem;
  position: relative;
  font-weight: 600;
  color: #44433d;
}
.footer_navi ul li a .footer-only {
  display: block;
}
@media screen and (max-width: 639px) {
  .footer_navi ul li a {
    font-size: 1.2rem;
  }
  .footer_navi ul li a .footer-only {
    display: none;
  }
}
.footer_navi ul li a span {
  display: none;
}
.footer_navi ul li a:hover {
  color: #2478d1;
}
.footer_navi ul li .dropdown {
  margin-top: 10px;
  padding: 8px 5px 5px;
}
@media screen and (max-width: 639px) {
  .footer_navi ul li .dropdown {
    padding: 10px;
  }
}
.footer_navi ul li .dropdown .dropdown-ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 15px;
  max-width: 320px;
}
.footer_navi ul li .dropdown .dropdown-li {
  width: 100%;
}
.footer_navi ul li .dropdown .dropdown-li:first-of-type {
  display: block;
}
.footer_navi ul li .dropdown .dropdown-li a {
  font-size: 13px;
  color: #ddd;
  line-height: 1.5;
  letter-spacing: 0;
  border: none;
  display: block;
}
.footer_navi ul li .dropdown .dropdown-li a:before {
  background: #fff;
}
@media screen and (max-width: 896px) {
  .footer_navi {
    display: none;
  }
}

.footer-title {
  font-weight: 600;
}
.footer-title span {
  background: #000;
  color: #fff;
  padding: 3px 8px;
}

.flogo {
  max-width: 200px;
  text-align: center;
}
@media screen and (max-width: 1025px) {
  .flogo {
    margin: 0 auto 20px;
  }
}
@media screen and (max-width: 639px) {
  .flogo {
    width: 70%;
  }
}

.address {
  text-align: center;
}

.copyright {
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
  color: #44433d;
}
@media screen and (max-width: 1025px) {
  .copyright {
    font-size: 12px;
  }
}
@media screen and (max-width: 896px) {
  .copyright {
    text-align: center;
  }
}
@media screen and (max-width: 639px) {
  .copyright {
    max-width: 95%;
  }
}

/*----------------------------------
 top-contents
----------------------------------*/
.trouble_box > li {
  background: #fefefe;
  border-radius: 20px;
  padding: 1.5em;
  background: rgba(87, 196, 224, 0.2);
}
.trouble_box > li:nth-child(2n) {
  background: rgba(36, 120, 209, 0.2);
}
.trouble_box > li:nth-child(2n) .ttl {
  background: #2478d1;
}
.trouble_box > li .img {
  position: relative;
}
.trouble_box > li .img::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background: url(../img/suido02.png) no-repeat center/contain;
}
.trouble_box > li .ttl {
  text-align: center;
  font-size: 1.2em;
  font-weight: bold;
  background: #57c4e0;
  border-radius: 5px;
  padding: 0.3em;
  color: #fff;
  margin-bottom: 10px;
}

.onayami_box {
  position: relative;
  margin-top: 100px;
}
.onayami_box .deco {
  position: absolute;
  top: -130px;
  right: 0;
  z-index: 100;
}
.onayami_box .ttl {
  padding: 0.5em 1em;
  border-radius: 40px;
  background-color: rgb(83, 146, 240);
  background-image: repeating-linear-gradient(45deg, transparent, transparent 13px, rgb(99, 153, 234) 13px, rgb(99, 153, 234) 20px);
  background: linear-gradient(-60deg, #2478d1 0%, #57c4e0 50%, #88e0ef 100%);
  text-align: center;
  font-weight: bold;
  display: inline-block;
  color: #fff;
  font-size: 24px;
  position: absolute;
  top: -3.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  z-index: 10;
}
.onayami_box .txt {
  background: #fff;
  padding: 10rem 7rem 7rem;
  border-radius: 30px;
}
.onayami_box .txt > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.onayami_box .txt > ul > li {
  width: 48%;
}
.onayami_box .txt > ul > li::before {
  font-size: 1em;
}
.onayami_box .txt > ul > li:last-child {
  border-bottom: 1px dashed #ccc;
}
.onayami_box .txt > ul > li:not(:last-of-type) {
  margin-bottom: 0;
}
@media screen and (max-width: 1025px) {
  .onayami_box .deco {
    bottom: -50px;
    top: auto;
  }
  .onayami_box .deco img {
    width: 150px;
  }
  .onayami_box .ttl {
    width: 90%;
    font-size: 1.8rem;
  }
  .onayami_box .txt {
    padding: 7rem 3rem 7rem;
  }
  .onayami_box .txt > ul > li {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 639px) {
  .onayami_box .ttl {
    width: 95%;
    font-size: 1.5rem;
  }
  .onayami_box .txt {
    padding: 7rem 1rem 7rem;
  }
  .onayami_box .txt > ul > li {
    width: 100%;
  }
}

.cont02 {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.cont02::before {
  content: "";
  width: 250px;
  height: 250px;
  position: absolute;
  top: 10%;
  left: 10%;
  background: url(../img/suido.png) no-repeat center/contain;
  z-index: 2;
}
.cont02 .circle {
  margin: 0 auto;
  width: 65vw;
  height: 65vw;
  max-width: 680px;
  max-height: 680px;
  border-radius: 50%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.7);
  position: relative;
  padding: 0 6em;
}
.cont02 .circle::before {
  content: "";
  width: calc(65vw + 40px);
  height: calc(65vw + 40px);
  max-width: 720px;
  max-height: 720px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px dashed rgba(147, 140, 134, 0.5);
  z-index: -2;
}
.cont02 .circle::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: -10%;
  right: -50%;
  background: url(../img/area.png) no-repeat right bottom;
  z-index: -2;
}
.cont02 .circle .txt {
  text-align: center;
  font-size: 1.1em;
}
.cont02 .circle .txt .btn02 {
  margin-top: 40px;
}
.cont02 .circle .txt .small {
  font-size: 0.9em;
}
.cont02 .deco01 {
  position: absolute;
  bottom: 0;
  left: -100px;
}
.cont02 .deco02 {
  position: absolute;
  bottom: 0;
  right: -100px;
}

.cont03 {
  background: #fefefe;
  max-width: 95%;
  border-radius: 60px;
  margin: 0 auto;
  padding: 60px;
  position: relative;
}
@media screen and (max-width: 1025px) {
  .cont03 {
    padding: 60px 30px;
  }
  .cont03 .list2 > li {
    width: 100%;
  }
  .cont03 .list2 .cont3_img {
    margin-bottom: 20px;
  }
  .cont03 .list2 .cont3_img img {
    height: 300px;
    width: 100%;
    object-fit: cover;
  }
}
@media screen and (max-width: 639px) {
  .cont03 {
    padding: 30px 10px;
  }
  .cont03::before, .cont03::after {
    width: 80px;
    height: 80px;
  }
}

.topics_box {
  max-width: 700px;
  margin: 0 auto;
}
.topics_box .date {
  color: #44433d;
  margin-bottom: 10px;
  display: inline-block;
  font-weight: bold;
  background: rgba(36, 120, 209, 0.1);
  padding: 0 10px;
}
.topics_box .ttl {
  margin-bottom: 20px;
}

.dashed-note {
  background-image: linear-gradient(90deg, transparent 0%, transparent 50%, #fff 50%, #fff 100%), linear-gradient(180deg, #ccc 1px, transparent 1px);
  background-size: 8px 100%, 100% 2.5em;
  line-height: 2.5em;
  padding-bottom: 1px;
}

.top__service {
  display: flex;
  justify-content: space-between;
}
.top__service .s_ttl {
  font-size: 3rem;
  margin-bottom: 60px;
  color: #226dd3;
  font-weight: bold;
  padding-left: 50px;
  padding-top: 70px;
}
.top__service .s_ttl .ja {
  border-bottom: 2px dashed #226dd3;
  padding-bottom: 0.5em;
  color: #44433d;
}
.top__service .s_ttl .eng {
  display: block;
  font-family: "Comfortaa", sans-serif;
  line-height: 1;
  font-size: 0.8em;
  font-weight: bold;
}
.top__service .inner {
  width: 46%;
  position: relative;
}
.top__service .inner::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  opacity: 0.8;
  z-index: -1;
  filter: blur(0.5px);
}
.top__service .inner__right {
  margin-top: 150px;
}
.top__service .inner__right.type2 {
  margin-top: 0;
}
.top__service .service__ttl {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  padding-left: 0.5em;
  position: relative;
}
.top__service .service__ttl:before {
  font-family: "Font Awesome 5 Free";
  content: "\f773";
  font-weight: 900;
  margin-right: 10px;
  color: #2478d1;
}
.top__service .service__detail {
  font-weight: bold;
  font-size: 1.7rem;
  background: rgb(255, 255, 255);
  border-radius: 20px;
  padding: 30px 60px;
  box-shadow: rgba(13, 43, 75, 0.1) 0px 18px 50px -10px;
}
.top__service .service__detail p {
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, 0px 1px 0 #fff, -1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff;
}
.top__service.type__100 {
  display: block;
  max-width: 900px;
  margin: 0 auto;
}
.top__service.type__100.chousei {
  padding: 80px 0;
}
.top__service.type__100 .inner__left {
  width: 100%;
  margin-top: 100px;
}
.top__service.type__100 .inner__left::before {
  width: 500px;
  height: 300px;
  bottom: auto;
  top: -100px;
}
.top__service.type__100 .inner__left .service__detail {
  width: 50%;
}
.top__service.type__100 .inner__left.type2::before {
  right: auto;
  left: 0;
}
.top__service.type__100 .inner__left.type2 .service__ttl {
  width: 50%;
  margin-left: auto;
}
.top__service.type__100 .inner__left.type2 .service__detail {
  margin-left: auto;
}
@media screen and (max-width: 1025px) {
  .top__service {
    flex-direction: column;
  }
  .top__service .inner {
    width: 100%;
  }
  .top__service .inner__left::before {
    bottom: -50px;
    opacity: 0.3;
  }
  .top__service .inner__right {
    margin-top: 200px;
  }
  .top__service .inner__right::before {
    opacity: 0.3;
    top: -100px;
  }
  .top__service .service__detail {
    width: 80%;
  }
  .top__service .service__ttl {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  .top__service.type__100 .inner__left .service__detail {
    width: 100%;
  }
  .top__service.type__100 .inner__left.type2 .service__ttl {
    width: 100%;
  }
}
@media screen and (max-width: 639px) {
  .top__service .service__detail {
    width: 100%;
    font-size: 1.2rem;
  }
  .top__service .service__detail .btn03 {
    text-align: center;
  }
  .top__service .service__ttl {
    font-size: 2rem;
  }
  .top__service.type__100.chousei {
    padding: 40px 0;
  }
  .top__service.type__100.chousei .inner__left {
    margin-top: 0;
  }
}

.top_about {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
.top_about .img_area {
  width: 55%;
  padding: 40px;
}
.top_about .txt_area {
  width: 45%;
  padding-left: 5%;
}
.top_about .txt_area .ttl {
  font-size: 3rem;
  margin-bottom: 60px;
  color: #2478d1;
  font-weight: bold;
  padding-left: 50px;
}
.top_about .txt_area .ttl span {
  border-bottom: 2px dashed #2478d1;
  padding-bottom: 0.2em;
}
.top_about .txt_area .txt {
  background: linear-gradient(-60deg, #2478d1 0%, #57c4e0 50%, #88e0ef 100%);
  color: #fff;
  border-top-left-radius: 60px;
  padding: 60px;
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (max-width: 1101px) {
  .top_about .img_area,
  .top_about .txt_area {
    width: 100%;
  }
}
@media screen and (max-width: 639px) {
  .top_about .img_area {
    padding: 0 20px 20px;
  }
  .top_about .txt_area .ttl {
    padding-left: 0;
    font-size: 2rem;
    margin-bottom: 30px;
  }
  .top_about .txt_area .txt {
    border-top-left-radius: 30px;
    padding: 20px;
    font-size: 1.4rem;
  }
}

/* --news--
----------------------------------*/
.news-box {
  margin: 0 auto 50px;
  max-width: 1200px;
  position: relative;
  z-index: 10;
  display: flex;
}
@media screen and (max-width: 896px) {
  .news-box {
    flex-direction: column;
    padding: 20px 10px;
  }
  .news-box .mtitle.mtitle_left {
    text-align: center !important;
  }
  .news-box .mtitle.mtitle_left::before {
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 639px) {
  .news-box {
    margin: 0 auto;
  }
}

.news-title {
  text-align: center;
  position: relative;
}
.news-title span {
  display: block;
}
.news-title .eng {
  font-family: "Comfortaa", sans-serif;
  font-weight: 700;
  color: #2478d1;
  position: relative;
  font-size: 3.2rem;
}
.news-title .ja {
  position: relative;
  font-weight: 600;
}
@media screen and (max-width: 639px) {
  .news-title {
    margin-bottom: 30px;
  }
  .news-title .eng {
    font-size: 2.4rem;
  }
  .news-title .ja {
    font-size: 1.4rem;
  }
}

.news-right {
  flex: 1;
}
@media screen and (max-width: 896px) {
  .news-right {
    width: 100%;
    margin: 0;
  }
}

/* contents
----------------------------------*/
.single0 {
  margin: 0 auto;
  padding: 80px 0;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1101px) {
  .single0 {
    padding: 80px 10px;
  }
}

.single {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 0;
  position: relative;
  z-index: 2;
}
.single.type2 {
  padding: 80px 0 0;
}
@media screen and (max-width: 1440px) {
  .single {
    max-width: 95%;
  }
}
@media screen and (max-width: 1101px) {
  .single {
    padding: 80px 10px;
  }
  .single.type2 {
    padding: 80px 10px 10px;
  }
}

.single02 {
  margin: 0 auto;
  padding: 80px 0;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1101px) {
  .single02 {
    padding: 80px 10px;
  }
}

.single03 {
  max-width: 1500px;
  margin: 0 auto;
  padding: 80px 0;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1101px) {
  .single03 {
    padding: 80px 10px;
  }
}

.margin-top {
  margin-top: -80px;
}
@media screen and (max-width: 639px) {
  .margin-top {
    margin-top: -30px;
  }
}

.lsingle,
.rsingle {
  width: 48.44%;
}

.lsingle {
  float: left;
}

.rsingle {
  float: right;
}

.mbox {
  background: #fefefe;
  padding: 35px 30px;
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  border-radius: 20px;
}
.mbox.type1 {
  border: 3px solid #2478d1;
}
.mbox.shadow {
  box-shadow: rgba(13, 43, 75, 0.1) 0px 18px 50px -10px;
}
.mbox.transparent {
  background: transparent;
}
@media screen and (max-width: 639px) {
  .mbox {
    padding: 15px 10px;
  }
}

.mbox2 {
  background: rgba(0, 0, 0, 0.3);
  padding: 35px 30px;
}
@media screen and (max-width: 639px) {
  .mbox2 {
    padding: 15px;
  }
}

.box1 {
  position: relative;
  z-index: 4;
  margin-inline: auto;
  background: #fff;
  padding: 25px;
}
@media screen and (max-width: 639px) {
  .box1 {
    padding: 15px;
  }
}
.box1.type1 {
  margin-top: -40px;
  max-width: 700px;
}
@media screen and (max-width: 639px) {
  .box1.type1 {
    max-width: 90%;
  }
}

.box2 {
  font-weight: 600;
  margin-top: 30px;
  background: rgba(16, 39, 119, 0.6);
  padding: 20px;
  color: #fff;
}

.note {
  padding: 15px;
  margin-top: 10px;
  background: #edf4fa;
  font-size: 1.4rem;
  border-radius: 20px;
}
.note.type2 {
  padding: 30px;
}
.note.type3 {
  padding: 30px;
  background: #88e0ef;
}
.note.note-white {
  background: #fefefe;
}
@media screen and (max-width: 639px) {
  .note {
    font-size: 1.2rem;
  }
}

.box_inner {
  padding: 20px 40px;
}

.flex-box {
  display: flex;
  justify-content: space-between;
}
.flex-box .left {
  width: 25%;
}
.flex-box .right {
  width: 70%;
}

.small-box {
  max-width: 850px;
  margin-right: auto;
  margin-left: auto;
}

.sentence p + p {
  margin-top: 20px;
}

.bg-grid {
  background: rgba(255, 255, 255, 0.9);
  /* border-top: 1px solid #555;
   border-bottom: 1px solid #555;*/
  background-image: linear-gradient(90deg, transparent 95%, rgba(204, 204, 204, 0.2) 50%, rgba(204, 204, 204, 0.2)), linear-gradient(0deg, transparent 95%, rgba(204, 204, 204, 0.2) 50%, rgba(204, 204, 204, 0.2));
  background-size: 20px 20px;
  background-repeat: repeat;
}

.bg-map {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.bg-map:before {
  position: absolute;
  content: "";
  width: 80%;
  height: 140%;
  right: 0;
  top: -20%;
  background: url(../img/map.png) no-repeat right 50%/contain;
}
@media screen and (max-width: 639px) {
  .bg-map:before {
    width: 90%;
  }
}

#main {
  float: left;
  width: 76%;
}
#main .mbox {
  min-height: 300px;
}
@media screen and (max-width: 1025px) {
  #main .mbox {
    min-height: initial;
  }
}
@media screen and (max-width: 1025px) {
  #main {
    float: none;
    width: 100%;
  }
}

#side {
  float: right;
  position: sticky;
  right: 0;
  top: 0;
  width: 21%;
  padding-right: 10px;
}
@media screen and (max-width: 1025px) {
  #side {
    float: none;
    width: 100%;
    position: static;
    margin-top: 40px;
  }
}

/* mtitle
----------------------------------*/
.mtitle {
  margin: 0 auto 40px;
  text-align: center;
  position: relative;
  z-index: 3;
}
.mtitle span {
  color: #44433d;
  line-height: 1.2;
}
.mtitle .ja {
  font-size: 3rem;
  border-bottom: 2px dashed #2478d1;
  padding-bottom: 0.3em;
}
.mtitle .eng {
  font-size: 2rem;
  position: relative;
  color: #2478d1;
  font-family: "Comfortaa", sans-serif;
  display: block;
}
.mtitle.white {
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}
.mtitle.white:before {
  color: #fff;
}
.mtitle.white span {
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}
.mtitle.white span:after {
  background-color: #eee;
}
.mtitle.mtitle_left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}
.mtitle.mtitle_left:before {
  left: 0;
  transform: none;
}
.mtitle.mtitle_right {
  text-align: right;
  margin-left: auto;
  margin-right: 0;
}
@media screen and (max-width: 1025px) {
  .mtitle:before {
    font-size: 2rem;
  }
}
@media screen and (max-width: 639px) {
  .mtitle {
    text-align: center;
    margin: 0 auto 20px;
  }
  .mtitle .eng {
    font-size: 1.3rem;
  }
  .mtitle .ja {
    font-size: 1.8rem;
  }
}

.mtitle2 {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  font-weight: 600;
  position: relative;
}
.mtitle2:before {
  content: "";
  width: 20px;
  height: 1px;
  background: #ccc;
  display: inline-block;
  margin: 0 1em;
}
.mtitle2 span {
  position: relative;
  z-index: 2;
}
.mtitle2 .eng {
  font-size: 2.2rem;
  display: inline-block;
  font-family: "Comfortaa", sans-serif;
  font-weight: 700;
  color: #2478d1;
  order: -1;
}
.mtitle2 .ja {
  font-size: 2.2rem;
  color: #333;
}
@media screen and (max-width: 639px) {
  .mtitle2:before {
    width: 15px;
  }
  .mtitle2 .eng {
    font-size: 1.2rem;
  }
  .mtitle2 .ja {
    font-size: 1.5rem;
  }
}

.mtitle3 {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  letter-spacing: 0.3em;
}
.mtitle3 .ja {
  display: block;
  font-size: 2.4rem;
  line-height: 1.5;
  color: #44433d;
  text-orientation: upright;
}
.mtitle3 .eng {
  display: block;
  font-family: "Comfortaa", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #2478d1;
  position: relative;
}
.mtitle3.type2 {
  position: initial;
}
.mtitle3.type2 .ja,
.mtitle3.type2 .eng {
  color: #fefefe;
}
.mtitle3.type2 .ja {
  border-right: none;
}
.mtitle3.type2 .eng {
  font-size: 5.8rem;
}
.mtitle3.type2 .eng::before {
  content: "";
  width: 10px;
  height: 100%;
  display: block;
  position: absolute;
  left: 4px;
  right: 0;
  margin: 0 auto;
  top: calc(-100% - 20px);
  background: #fff;
}
@media screen and (max-width: 639px) {
  .mtitle3 {
    left: 10px;
    top: 15px;
  }
  .mtitle3 .ja {
    font-size: 1.6rem;
  }
  .mtitle3 .eng {
    font-size: 1.3rem;
  }
}

.mtitle_line {
  font-size: 1.8rem;
  padding-bottom: 20px;
  position: relative;
  font-weight: 600;
  margin-bottom: 25px;
  color: #44433d;
  letter-spacing: 0.2rem;
}
.mtitle_line span {
  display: block;
  font-size: 1.4rem;
  color: #2478d1;
}
.mtitle_line:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  content: "";
  opacity: 0.6;
  background-image: repeating-linear-gradient(-45deg, #2478d1, #aaa 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media screen and (max-width: 639px) {
  .mtitle_line {
    font-size: 1.4rem;
  }
  .mtitle_line span {
    font-size: 1.2rem;
  }
}

.mtitle_dot span {
  font-size: 1.8rem;
  padding-bottom: 10px;
  position: relative;
  font-weight: 600;
  margin-bottom: 25px;
  color: #33393d;
  letter-spacing: 0.2rem;
  border-bottom: 5px dotted #44433d;
}

.mtitle4 {
  font-weight: 600;
  text-align: center;
  color: #2478d1;
  line-height: 1.5;
  letter-spacing: 0.1rem;
  font-size: 1.8rem;
}
.mtitle4 span {
  position: relative;
  display: inline-block;
  min-width: 10%;
}
.mtitle4 span:before, .mtitle4 span:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1px;
  height: 2rem;
  background-color: #2478d1;
}
.mtitle4 span:before {
  left: -11px;
  -webkit-transform: rotate(-20deg);
  transform: rotate(-20deg);
}
.mtitle4 span:after {
  right: -11px;
  -webkit-transform: rotate(20deg);
  transform: rotate(20deg);
}
.mtitle4.white span:before, .mtitle4.white span:after {
  background-color: #f8c916;
}
@media screen and (max-width: 639px) {
  .mtitle4 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 320px) {
  .mtitle4 span:before {
    left: -3px;
  }
  .mtitle4 span:after {
    right: -3px;
  }
}

.mtitle5 {
  position: relative;
  margin-bottom: 40px;
}
.mtitle5 .ja {
  font-size: 2.5rem;
}
.mtitle5 .eng {
  color: #2478d1;
  font-size: 1.5rem;
  display: block;
}

.mtitle6 {
  margin-bottom: 40px;
}
.mtitle6 .eng {
  display: inline-block;
  vertical-align: top;
  position: relative;
  font-family: "Comfortaa", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 52px;
  line-height: 1;
  letter-spacing: 3.1px;
  margin-bottom: 16px;
  color: #44433d;
}
.mtitle6 .eng::before {
  content: "";
  width: 100vw;
  height: 10px;
  background: #44433d;
  left: calc(-100vw - 20px);
  top: 50%;
  margin-top: -5px;
  display: block;
  position: absolute;
}
.mtitle6 .ja {
  display: block;
  letter-spacing: 0.95px;
}
.mtitle6.white span {
  color: #fff;
}
.mtitle6.white .eng::before {
  background: #fff;
}
.mtitle6.type2 {
  text-align: center;
  margin-bottom: 20px;
}
.mtitle6.type2 .eng::before {
  display: none;
}
@media screen and (max-width: 639px) {
  .mtitle6 .eng {
    font-size: 2.5rem;
    margin-bottom: 5px;
  }
}

.mtitle_sub {
  padding-left: 0.5em;
  font-weight: 600;
  position: relative;
  border-left: 3px solid #2478d1;
  margin: 8px 0 15px;
  font-size: 1.1em;
  line-height: 1.4;
  text-align: left;
}
.mtitle_sub:before {
  position: absolute;
  left: -3px;
  bottom: 0;
  content: "";
  width: 3px;
  height: 50%;
  background-color: #57c4e0;
}

.mtitle_box {
  background: #f5f3eb;
  color: #102777;
  font-size: 1.8rem;
  position: relative;
  padding: 10px 15px;
  margin-bottom: 25px;
  font-weight: 600;
}
.mtitle_box a {
  color: #fff;
}
.mtitle_box span {
  font-size: 14px;
  padding-left: 10px;
}
.mtitle_box:before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f30a";
  font-weight: 900;
  display: block;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
}
@media screen and (max-width: 639px) {
  .mtitle_box {
    font-size: 1.3rem;
  }
}
.mtitle_box.type1 {
  background: #57c4e0;
}
.mtitle_box.type2 {
  background: #102777;
}

.mtitle_box2 {
  background: #2478d1;
  background-image: linear-gradient(to right bottom, #57c4e0, #2478d1);
  font-size: 2rem;
  position: relative;
  font-weight: 600;
  overflow: hidden;
  letter-spacing: 0.1rem;
  padding: 10px 10px 10px 20px;
  margin-bottom: 25px;
}
.mtitle_box2 .small-cap {
  font-weight: normal;
  font-size: 14px;
}
.mtitle_box2:before {
  background-color: #57c4e0;
  content: "";
  display: block;
  transform: rotate(60deg);
  position: absolute;
  bottom: -10px;
  right: -150px;
  width: 300px;
  height: 280px;
}
@media screen and (max-width: 639px) {
  .mtitle_box2 {
    font-size: 15px;
    line-height: 1.5;
    padding: 10px 10px 10px 15px;
    padding-right: 40px;
  }
  .mtitle_box2 span {
    font-size: 12px;
  }
  .mtitle_box2:before {
    width: 215px;
    right: -170px;
  }
}

.mtitle_f {
  position: relative;
  text-align: center;
  color: #44433d;
  width: 250px;
  background: #fff;
  font-weight: bold;
  line-height: 1;
  margin: 15px 0px 15px 0px;
  padding: 20px 10px;
  border-radius: 15px;
  line-height: 1.5;
  letter-spacing: 2px;
  filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.1));
}
.mtitle_f:after, .mtitle_f:before {
  content: "";
  position: absolute;
  top: 100%;
  height: 0;
  width: 0;
}
.mtitle_f:after {
  left: 33px;
  border: 8px solid transparent;
  border-top: 11px solid #fff;
}
.mtitle_f:before {
  left: 30px;
  border: 11px solid transparent;
}
@media screen and (max-width: 1025px) {
  .mtitle_f {
    margin: 10px 0px 15px 0px;
    padding: 20px 10px 20px 10px;
  }
}

.mtext1 {
  font-size: 2.2rem;
  line-height: 1.6;
}
@media screen and (max-width: 639px) {
  .mtext1 {
    font-size: 1.4rem;
  }
}

.mtext2 {
  font-size: 3rem;
  line-height: 1.6;
}
@media screen and (max-width: 639px) {
  .mtext2 {
    font-size: 1.8rem;
    padding: 4px 8px;
  }
}

.mtext3 {
  font-size: 1.8rem;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 639px) {
  .mtext3 {
    font-size: 1.4rem;
  }
}

.mtitle_category {
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-family: "Comfortaa", sans-serif;
  font-weight: 700;
}
.mtitle_category:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0ca";
  font-weight: 900;
  margin-right: 5px;
  color: #2478d1;
}

.mtitle_small {
  position: relative;
  font-size: 1.7rem;
  margin-bottom: 15px;
  color: #2478d1;
  font-weight: 600;
  padding-bottom: 8px;
  border-bottom: 1px solid #ccc;
}
.mtitle_small:before {
  content: "";
  width: 50px;
  height: 1px;
  background-color: #2478d1;
  position: absolute;
  left: 0;
  bottom: -1px;
}
@media screen and (max-width: 639px) {
  .mtitle_small {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

.mtitle_small2 {
  position: relative;
  margin-bottom: 10px;
  padding-left: 30px;
  font-size: 2rem;
  font-weight: bold;
}
.mtitle_small2:before {
  content: "";
  background-color: #88e0ef;
  width: 20px;
  height: 1px;
  position: absolute;
  top: 1em;
  left: 0;
}
@media screen and (max-width: 639px) {
  .mtitle_small2 {
    font-size: 1.4rem;
  }
}

/* btn
----------------------------------*/
.btn01 a {
  width: 260px;
  margin: 40px auto 20px;
  color: #44433d;
  display: block;
  padding: 20px 30px;
  border: 1px solid #2478d1;
  border-radius: 35px;
  font-weight: bold;
  position: relative;
  font-size: 1.2rem;
  font-family: "Comfortaa", sans-serif;
}
.btn01 a::after {
  content: "●";
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  transition: all 0.5s ease;
  color: #2478d1;
}
.btn01 a:hover {
  background: #2478d1;
  color: #fff;
}
.btn01 a:hover::after {
  right: 20px;
  color: #fff;
}
.btn01.type1 {
  background: #57c4e0;
  border: 2px solid #57c4e0;
}
.btn01.type1:hover {
  background: #fff;
  color: #57c4e0;
}
.btn01.type2 a {
  color: #44433d;
  border: none;
  background: #fff;
}
.btn01.type2 a:hover {
  opacity: 0.6;
}
.btn01.mail {
  flex-basis: 100%;
}
.btn01.mail a {
  background: #f8c916;
  margin: 15px auto 25px;
}
.btn01.mail a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 5px;
}
.btn01.left a {
  margin-left: 0;
}
.btn01.white a {
  background: #fff;
  border: 1px solid #fff;
}
.btn01.white a:hover {
  color: #44433d;
}
.btn01.white a:hover::after {
  color: #2478d1;
}
@media screen and (max-width: 639px) {
  .btn01 a {
    width: 95%;
    font-size: 1rem;
    padding: 15px 30px;
  }
  .btn01.left a {
    margin-left: auto;
  }
}

.btn02 {
  width: 300px;
  margin: 20px auto 20px;
}
.btn02 a {
  display: block;
  position: relative;
  padding: 15px 30px 15px 5px;
  line-height: 24px;
  letter-spacing: 0.1rem;
  font-size: 1.5rem;
  text-align: center;
  color: #fff;
  background-image: linear-gradient(to right, #394578, #232c53);
  font-weight: 600;
}
.btn02 a i {
  display: block;
  position: absolute;
  top: 50%;
  right: -10px;
  width: 40px;
  height: 1px;
  background-color: #ddd;
  transition: all 0.3s ease;
}
.btn02 a:hover i {
  width: 34px;
}
.btn02.type1 a {
  background: #fff;
  color: #2478d1;
}
@media screen and (max-width: 639px) {
  .btn02 {
    width: 260px;
  }
  .btn02 a {
    font-size: 1.3rem;
  }
}

.btn03 a {
  position: relative;
  font-size: 1.6rem;
  text-decoration: none;
  padding: 1em 2.5em;
  display: inline-block;
  border-radius: 6em;
  transition: all 0.2s;
  border: none;
  font-family: inherit;
  font-weight: 500;
  color: #fff;
  background: rgba(36, 120, 209, 0.6);
  background: linear-gradient(-60deg, #2478d1 0%, #57c4e0 50%, #88e0ef 100%);
  min-width: 250px;
  text-align: center;
  margin-top: 40px;
  font-family: "Comfortaa", sans-serif;
  font-weight: bold;
}
.btn03 a::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 100px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
  background: rgba(36, 120, 209, 0.2);
}
.btn03 a:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.btn03 a:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}
.btn03 a:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.btn-arrow {
  width: 70px;
  height: 70px;
  position: relative;
  text-align: center;
  line-height: 60px;
  border: 1px solid transparent;
  border-radius: 100%;
  transition: all 0.6s ease;
  margin-top: 20px;
}
.btn-arrow::before, .btn-arrow::after {
  border-radius: 100%;
  box-sizing: inherit;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.btn-arrow::before {
  border: 1px solid transparent;
}
.btn-arrow::after {
  border: 0 solid transparent;
}
.btn-arrow i {
  display: block;
  position: absolute;
  width: 30px;
  border-bottom: 1px solid #fefefe;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 5px;
}
.btn-arrow i:before {
  position: absolute;
  width: 10px;
  height: 8px;
  content: "";
  right: 3px;
  bottom: -1px;
  border-right: 2px solid #fefefe;
  transform: skew(45deg);
}
.btn-arrow .eng2 {
  font-family: "Comfortaa", sans-serif;
  font-weight: 700;
}

.list-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 20px;
}
.list-btn .icon {
  position: relative;
  border-radius: 50%;
  border: solid 2px #2478d1;
  transition: all 0.3s ease;
  margin: 0 auto;
  width: 50px;
  height: 50px;
}
.list-btn .icon > span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.list-btn .btn-txt {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  margin-top: 7px;
  font-family: "Comfortaa", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

/* news
----------------------------------*/
.news .news-inner {
  padding: 15px 0;
  border-top: 1px solid #ddd;
  font-size: 1.4rem;
  font-weight: 600;
}
.news .news-inner:last-of-type {
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 639px) {
  .news .news-inner {
    font-size: 13px;
    padding: 10px 4px;
  }
}
.news dt {
  color: #2478d1;
}
.news dt .category {
  font-size: 13px;
  background: #57c4e0;
  color: #fff;
  padding: 2px 4px;
  margin-left: 8px;
  font-weight: 400;
}
@media screen and (max-width: 639px) {
  .news dt {
    width: 100%;
  }
  .news dt .category {
    font-size: 12px;
  }
}
.news dd {
  margin-left: 8px;
}
.news dd a {
  color: #222;
  background-image: linear-gradient(to right, #2478d1, #f8c916);
  padding-bottom: 0.25em;
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  transition: background-size 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-weight: 600;
}
.news dd a:hover {
  background-position: 0 100%;
  background-size: 100% 1px;
}
@media screen and (max-width: 639px) {
  .news dd {
    width: 100%;
    margin: 5px 0 0;
  }
}

.news-bl {
  overflow: hidden;
}
.news-bl .news-bl-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 10px 8px 18px;
}
.news-bl .news-bl-inner:not(:last-of-type) {
  margin-bottom: 10px;
  border-bottom: 0.9px solid #ddd;
}
.news-bl dt {
  width: 6em;
  line-height: 1.3;
  color: #2478d1;
  text-align: center;
  font-size: 1.3rem;
  font-family: "Comfortaa", sans-serif;
  font-weight: 700;
}
.news-bl dt .year {
  font-size: 12px;
  font-weight: 400;
  color: #57c4e0;
}
.news-bl dt .md {
  display: block;
  font-size: 1.7rem;
  font-weight: 600;
}
@media screen and (max-width: 639px) {
  .news-bl dt {
    width: 4.5em;
    font-size: 12px;
  }
  .news-bl dt .md {
    font-size: 1.3rem;
  }
}
.news-bl dd {
  flex: 1;
  margin-left: 50px;
  line-height: 1.6;
  font-size: 1.4rem;
}
.news-bl dd a {
  color: #232323;
  background-image: linear-gradient(to right, #2478d1, #102777);
  padding-bottom: 0.25em;
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  transition: background-size 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-weight: 600;
}
.news-bl dd a:hover {
  background-position: 0 100%;
  background-size: 100% 1px;
}
@media screen and (max-width: 639px) {
  .news-bl dd {
    margin-left: 20px;
    font-size: 13px;
  }
}

/* page-title
----------------------------------*/
.page-title {
  position: relative;
  z-index: 3;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.page-title .inner {
  background: url(../img/p_ttl01.jpg) no-repeat center 70%/cover;
  margin: 0 auto;
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 3;
}
.page-title .inner::before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  left: 0;
  top: 0;
  background: url(../img/mv_deco03.png) no-repeat left top/contain;
}
.page-title .inner::after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  right: 0;
  bottom: 0;
  background: url(../img/mv_deco02.png) no-repeat right bottom/contain;
}
.page-title .inner.type2 {
  background: url(../img/p_ttl02.jpg) no-repeat center 50%/cover;
}
.page-title .inner.type3 {
  background: url(../img/p_ttl03.jpg) no-repeat center 50%/cover;
}
.page-title .inner.type4 {
  background: url(../img/p_ttl04.jpg) no-repeat center 40%/cover;
}
.page-title .inner.type5 {
  background: url(../img/p_ttl05.jpg) no-repeat center 70%/cover;
}
@media screen and (max-width: 1025px) {
  .page-title .inner {
    height: 300px;
  }
}
@media screen and (max-width: 639px) {
  .page-title .inner {
    height: 100px;
    border-radius: 20px;
  }
}
.page-title .inner .page-lead {
  font-size: 2rem;
  color: #fff;
  padding-left: 40px;
}
.page-title .inner .page-lead.on .eng {
  transform: translateX(0);
  opacity: 1;
}
.page-title .inner .page-lead.on .ja {
  opacity: 1;
  transform: translateY(0);
  font-weight: bold;
}
.page-title .inner .page-lead .eng {
  display: block;
  font-family: "Comfortaa", sans-serif;
  font-weight: 700;
  font-size: 5rem;
  line-height: 1;
  opacity: 0;
  transform: translateX(-20%);
  transition: 0.5s all cubic-bezier(0.55, 0.05, 0.22, 0.99);
}
.page-title .inner .page-lead .ja {
  opacity: 0;
  transform: translateY(20px);
  position: relative;
  z-index: 4;
  transition: 0.5s all cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition-delay: 0.6s;
  display: inline-block;
  letter-spacing: 0.15em;
  font-size: 1.5rem;
}
@media screen and (max-width: 639px) {
  .page-title .inner .page-lead {
    font-size: 1.6rem;
  }
  .page-title .inner .page-lead .eng {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 896px) {
  .page-title {
    margin-top: 250px;
  }
}
@media screen and (max-width: 639px) {
  .page-title {
    margin-top: 140px;
  }
  .page-title .inner .page-lead {
    top: -60px;
  }
  .page-title .inner .page-lead .eng {
    font-size: 2rem;
  }
  .page-title .inner .page-lead .ja {
    font-size: 1rem;
  }
}

/* background
----------------------------------*/
.bg-01 {
  position: relative;
}
.bg-01:before, .bg-01:after {
  position: absolute;
  content: "";
  width: 190px;
  height: 100%;
  background: url(../img/deco03.png) no-repeat;
  background-size: contain;
  background-position: left;
}
.bg-01:before {
  top: 0;
  left: 0;
}
.bg-01:after {
  top: 0;
  right: 0;
  transform: scale(-1, 1);
}
@media screen and (max-width: 639px) {
  .bg-01 {
    margin-top: 0px;
  }
  .bg-01:before {
    background-attachment: initial;
  }
}
.bg-01 .bg-01area {
  position: relative;
  z-index: 1;
}

.bg-02 {
  position: relative;
}
.bg-02::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: url(../img/bg-02.png) no-repeat center/contain;
  z-index: 1;
  opacity: 0.3;
}

.bg-03 {
  position: relative;
}
.bg-03::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: url(../img/bg-03.png) no-repeat center/contain;
  z-index: 1;
  opacity: 0.2;
}

.bg-base {
  position: relative;
}
.bg-base:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: clothoid-mix-gradient(to bottom, rgba(16, 39, 119, 0.4), rgba(87, 196, 224, 0.3));
  opacity: 0.7;
}
.bg-base.type1 {
  position: relative;
}
.bg-base.type1:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: calc(100% - 80px);
  height: calc(100% - 40px);
  transform: translate(-50%, -50%);
  background: #e9e9e9;
  opacity: 1;
}
@media screen and (max-width: 1101px) {
  .bg-base.type1:before {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
}
.bg-base.type2 .inner {
  position: relative;
  z-index: 3;
}
.bg-base.type2:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: calc(100% - 80px);
  height: calc(100% - 80px);
  transform: translate(-50%, -50%);
  background: #fefefe;
}
@media screen and (max-width: 639px) {
  .bg-base.type2:before {
    width: calc(100% - 40px);
    height: calc(100% - 40px);
  }
}
.bg-base.type3 {
  position: relative;
}
.bg-base.type3:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: calc(100% - 80px);
  height: calc(100% - 40px);
  transform: translate(-50%, -50%);
  background: #102777;
  opacity: 0.2;
}
@media screen and (max-width: 1101px) {
  .bg-base.type3:before {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
}

.bg-gray {
  position: relative;
}
.bg-gray:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(136, 224, 239, 0.4);
  z-index: -2;
}
.bg-gray.type1:before {
  opacity: 0.8;
}
.bg-gray.bg-half-bottom {
  background: transparent;
  background-image: linear-gradient(to bottom, transparent 0%, transparent 50%, #e9e9e9 50.1%, #e9e9e9 100%);
}
.bg-gray.bg-half-upper:before {
  width: 54%;
  height: 70%;
}

.bg-gray2 {
  background-image: linear-gradient(to bottom, transparent, #e9e9e9);
}

.bg-gradient {
  background-image: linear-gradient(to right, #ffa6a6 0%, #fcfcfc 100%);
}

.bg-beige {
  background: #f5f3eb;
}
.bg-beige.type1 {
  background: transparent;
  position: relative;
}
.bg-beige.type1:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: #f5f3eb;
  z-index: -1;
}

.bg-nami {
  position: relative;
  background: #fff;
  margin: 160px 0;
}
.bg-nami::before {
  content: "";
  position: absolute;
  top: -150px;
  left: 0;
  width: 103%;
  height: 150px;
  background: url(../img/nami.svg) no-repeat center bottom;
  z-index: 100;
}
.bg-nami::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: 0;
  width: 103%;
  height: 150px;
  background: url(../img/nami.svg) no-repeat center bottom;
  z-index: 100;
  transform: scale(-1, -1);
}

/* tbl
----------------------------------*/
.tbl-company {
  width: 100%;
}
.tbl-company th,
.tbl-company td {
  padding: 28px 0;
  vertical-align: top;
  border-bottom: 1px rgba(16, 39, 119, 0.7) solid;
}
.tbl-company th {
  width: 20%;
  font-weight: 600;
  text-align: left;
}
@media screen and (max-width: 639px) {
  .tbl-company th,
  .tbl-company td {
    padding: 20px 0;
    font-size: 0.9em;
  }
  .tbl-company th {
    width: 30%;
  }
}

.tbl_normal {
  width: 100%;
}
.tbl_normal.type1 th {
  width: 30%;
  font-size: 2rem;
  line-height: 1;
}
@media screen and (max-width: 639px) {
  .tbl_normal.type1 th {
    font-size: 1.6rem;
    width: 35%;
  }
}
.tbl_normal.type1 td {
  text-align: left;
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
  font-size: 0.9em;
}
.tbl_normal th,
.tbl_normal td {
  padding: 4px 5px;
  vertical-align: middle;
  border-bottom: 0.9px solid #ccc;
}
.tbl_normal th {
  width: 70%;
  text-align: left;
}
.tbl_normal td {
  text-align: right;
}

.tbl {
  width: 100%;
  border: 1px solid #ededed;
}
.tbl th,
.tbl td {
  padding: 15px;
  vertical-align: middle;
  border-bottom: 1px solid #ededed;
  font-size: 1.5rem;
}
.tbl th {
  background: rgba(36, 120, 209, 0.8);
  background: #edf4fa;
  text-align: left;
}
.tbl th span {
  font-size: 1.4rem;
}
.tbl .cell01 {
  width: 45%;
}
.tbl .cell02 {
  width: 30%;
}
@media screen and (max-width: 639px) {
  .tbl th {
    white-space: nowrap;
    text-align: center;
  }
  .tbl th,
  .tbl td {
    padding: 10px 8px;
    letter-spacing: 0;
    font-size: 1rem;
  }
}

.tbl_new {
  width: 100%;
}
.tbl_new tr th,
.tbl_new tr td {
  vertical-align: middle;
  padding: 15px 10px;
}
.tbl_new tr:nth-child(odd) th, .tbl_new tr:nth-child(odd) td {
  background: #e9e9e9;
}
.tbl_new tr th {
  font-weight: 600;
  width: 20%;
  color: #102777;
  text-align: left;
  padding-left: 30px;
  letter-spacing: 0;
}
@media screen and (max-width: 639px) {
  .tbl_new tr th {
    width: 25%;
    padding-left: 10px;
  }
}
.tbl_new tr th.th-long {
  width: 100%;
  text-align: center;
  background: #102777;
  color: #fff;
  letter-spacing: 0.15em;
  font-size: 1.1em;
}

.tbl-border {
  width: 100%;
}
.tbl-border.tbl-mini th,
.tbl-border.tbl-mini td {
  padding: 6px 10px;
  border-width: 1px;
  font-size: 14px;
  letter-spacing: 0.1rem;
}
.tbl-border th,
.tbl-border td {
  padding: 15px;
  border-bottom: 2px solid #ddd;
  vertical-align: middle;
}
@media screen and (max-width: 639px) {
  .tbl-border th,
  .tbl-border td {
    padding: 10px;
    font-size: 1.2rem;
  }
}
.tbl-border .small {
  font-size: 0.9em;
  background: #fff;
  color: #57c4e0;
  margin-right: 5px;
  padding: 0px 4px;
}
.tbl-border th {
  width: 22%;
  text-align: left;
  font-weight: 600;
  border-bottom-color: #44433d;
}
.tbl-border th.th-1 {
  width: 45%;
}
@media screen and (max-width: 639px) {
  .tbl-border th {
    width: 30%;
  }
}

.price {
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  color: #f66009;
}
@media screen and (max-width: 639px) {
  .price {
    font-size: 1.4rem;
  }
}

.tbl0 {
  width: 100%;
  font-size: 1.4rem;
}
.tbl0 th,
.tbl0 td {
  padding: 5px;
  border: 0;
  color: #102777;
  border-bottom: 0.9px solid #ddd;
}
.tbl0 th {
  padding-left: 0;
  text-align: left;
  background: none;
  width: 25%;
}
.tbl0 th:after, .tbl0 th:before {
  display: none;
}
@media screen and (max-width: 639px) {
  .tbl0 th {
    width: 40%;
  }
}

/* ggmap
----------------------------------*/
.ggmap {
  position: relative;
  padding-bottom: 46.25%;
  height: 0;
  overflow: hidden;
}
.ggmap.type1 {
  padding-bottom: 50%;
}
.ggmap.type2 {
  padding-bottom: 60%;
}
.ggmap iframe,
.ggmap object,
.ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: grayscale(80%);
}
@media screen and (max-width: 639px) {
  .ggmap {
    padding-bottom: 65.25%;
  }
}

.gmapbox .ggmap {
  padding-bottom: 33%;
  position: relative;
}
.gmapbox .ggmap .ggmap-btn a {
  position: absolute;
  right: 0;
  top: 0;
  background: #2478d1;
  background-image: linear-gradient(-90deg, #174c93 0%, #2478d1 27%, #57c4e0 55%, #88e0ef 100%);
  padding: 15px 25px;
  font-family: "Comfortaa", sans-serif;
  font-weight: 700;
  color: #44433d;
}
.gmapbox .ggmap .ggmap-btn a i {
  margin-left: 40px;
}
.gmapbox .ggmap .ggmap-btn a:hover {
  opacity: 0.6;
}
.gmapbox .ggmap.type-footer {
  padding-bottom: 27%;
}
@media screen and (max-width: 1025px) {
  .gmapbox .ggmap.type-footer {
    padding-bottom: 45%;
  }
}
@media screen and (max-width: 1025px) {
  .gmapbox .ggmap.type-company {
    padding-bottom: 55%;
  }
}

/* list
----------------------------------*/
.list_common li {
  padding-bottom: 5px;
  padding-left: 1rem;
  margin-bottom: 5px;
  border-bottom: 1px solid #ddd;
}
.list_common li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.list_common.common_big li {
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.list-policy {
  background: rgba(255, 255, 255, 0.7);
  padding: 25px;
  margin-bottom: 40px;
}
.list-policy li {
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-size: 2rem;
  padding-bottom: 5px;
  margin-bottom: 6px;
  font-weight: 600;
}
.list-policy li:before {
  content: "一、";
  margin-right: 7px;
  color: #2478d1;
}
@media screen and (max-width: 639px) {
  .list-policy {
    padding: 15px;
  }
  .list-policy li {
    font-size: 1.4rem;
  }
}

.list_check.type1 {
  display: flex;
  flex-wrap: wrap;
}
.list_check.type1 li {
  background: #102777;
  padding: 12px 8px;
  width: 31%;
  color: #fff;
  justify-content: space-between;
}
@media screen 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;
  padding-left: 30px;
  font-weight: 600;
  font-size: 1.1em;
  position: relative;
  margin-bottom: 5px;
}
.list_check li a {
  color: #2478d1;
  border-bottom: 1px dotted #2478d1;
}
.list_check li:before {
  position: absolute;
  left: 0;
  top: 20px;
  content: "";
  width: 10px;
  height: 2px;
  background: #57c4e0;
}
@media screen and (max-width: 639px) {
  .list_check li {
    width: 98%;
    margin: 0 auto 10px;
    font-size: 1.3rem;
  }
}

.list_check2 li {
  padding: 8px;
  font-weight: 600;
  margin-bottom: 4px;
  border-bottom: 1px solid #ccc;
}
.list_check2 li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: 900;
  margin-right: 8px;
  color: #2478d1;
}
.list_check2.type1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px 20px;
}
@media screen and (max-width: 639px) {
  .list_check2.type1 {
    grid-template-columns: 1fr;
    gap: 5px 0;
  }
}

.list-inline2 {
  text-align: center;
}
.list-inline2 li {
  display: inline-block;
  padding: 4px 15px;
  background: #fefefe;
  border: 1px solid #555;
  font-weight: 600;
  border-radius: 30px;
}
.list-inline2 li:not(:last-child) {
  margin-right: 8px;
}

.list-inline li {
  display: inline-block;
  padding: 3px;
}
.list-inline li:not(:last-of-type):after {
  content: "/";
  margin: 0 5px;
  color: #2478d1;
  font-weight: normal;
}

.ol-list {
  counter-reset: number;
  list-style: none;
  padding: 5px;
}
.ol-list.type1 {
  display: flex;
  flex-wrap: wrap;
}
.ol-list.type1 > li {
  width: 48%;
}
.ol-list.type1 > li:nth-child(2n) {
  margin-left: 4%;
}
.ol-list li {
  margin-bottom: 15px;
  font-weight: 600;
  padding-left: 3em;
  position: relative;
  line-height: 2.5em;
}
.ol-list li:before {
  counter-increment: number;
  content: counter(number);
  background: #2478d1;
  width: 2.5em;
  height: 2.5em;
  line-height: 2.5em;
  text-align: center;
  font-size: 1.6rem;
  color: #fefefe;
  position: absolute;
  left: 0;
  top: 0px;
  border-radius: 100%;
}
@media screen and (max-width: 639px) {
  .ol-list li {
    font-size: 1.3rem;
  }
  .ol-list li span {
    font-size: 0.9em;
  }
  .ol-list li:before {
    font-size: 1.8rem;
  }
}

.list_disc li {
  padding: 5px 0;
}
.list_disc li a {
  font-weight: 600;
  letter-spacing: 0.1rem;
}
.list_disc li:not(:last-of-type) {
  margin-bottom: 5px;
  border-bottom: 1px dashed #ccc;
}
.list_disc li:before {
  content: "●";
  margin-right: 5px;
  color: #2478d1;
}
.list_disc.type2 li {
  border-bottom: 1px dashed #ccc;
}

.list-btn {
  display: flex;
  flex-wrap: wrap;
}
.list-btn.type1 {
  justify-content: center;
}
.list-btn li {
  width: 32%;
  margin: 0 1.995% 10px 0;
}
.list-btn li a {
  display: block;
  background: #102777;
  font-weight: 600;
  padding: 20px 3px;
  text-align: center;
  width: 100%;
  height: 100%;
  line-height: 1.5;
  font-size: 1.8rem;
  letter-spacing: 0;
  color: #fff;
}
.list-btn li a:after {
  font-family: "Font Awesome 5 Free";
  content: "\f358";
  font-weight: 900;
  margin-left: 5px;
}
@media screen and (max-width: 1025px) {
  .list-btn li a {
    font-size: 1.5rem;
  }
}
.list-btn li:nth-child(even) a {
  background: #57c4e0;
}
.list-btn li:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 639px) {
  .list-btn li {
    width: 90%;
    margin: 0 auto 10px;
  }
  .list-btn li a {
    font-size: 1.2rem;
  }
  .list-btn li:nth-child(3n) {
    margin-right: auto;
  }
}

/* blog
----------------------------------*/
#top-blog .pages {
  display: none;
}
#main .blog-wrap > li {
  width: 32%;
}
@media screen and (max-width: 1101px) {
  #main .blog-wrap > li {
    width: 49%;
    margin: 0 0.5% 20px 0.5%;
  }
}
@media screen and (max-width: 639px) {
  #main .blog-wrap > li {
    width: 100%;
    margin: 0 auto 10px;
  }
  #main .blog-wrap > li:last-child {
    margin-bottom: 0;
  }
}

.blog-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 5vw;
  justify-content: center;
  padding: 40px 0;
}
.blog-wrap * {
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.blog-wrap > li {
  width: 25%;
  position: relative;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  transition: all 1s ease;
  box-shadow: 0px 12px 18px 2px rgba(48, 145, 179, 0.1);
}
.blog-wrap > li:hover {
  transform: scale(1.2);
}
.blog-wrap > li > a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}
@media screen and (max-width: 639px) {
  .blog-wrap > li {
    width: 48%;
    margin: 10px 1%;
    padding: 6px;
  }
}
@media screen and (max-width: 896px) {
  .blog-wrap {
    gap: 20px;
    padding: 0;
  }
  .blog-wrap > li {
    width: 31%;
    width: 31%;
  }
}
@media screen and (max-width: 639px) {
  .blog-wrap > li {
    width: 100%;
    padding: 20px;
  }
  .blog-wrap > li:hover {
    transform: scale(1.1);
  }
}

.blog-img {
  width: 100%;
  height: auto;
  overflow: hidden;
  box-sizing: border-box;
  margin-bottom: 20px;
}
.blog-img img {
  height: auto;
  width: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
  border-radius: 50%;
  aspect-ratio: 1/1;
}
.blog-img:hover img {
  opacity: 1 !important;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
@media screen and (max-width: 639px) {
  .blog-img img {
    aspect-ratio: initial;
    border-radius: 20px;
    height: 150px;
  }
}

.blog_topics {
  width: 100%;
  border-top: 1px solid #ddd;
}
.blog_topics li {
  border-bottom: 1px solid #ddd;
}
.blog_topics li a {
  display: block;
  color: #492d18;
  padding: 15px;
  transition: 0.3s ease-in all;
}
.blog_topics li a:hover {
  background-color: rgba(245, 243, 235, 0.4);
}
.blog_topics li a .topics_detail {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  align-items: center;
}
.blog_topics li a .topics_detail .imgbox {
  overflow: hidden;
  width: 30%;
  height: 100px;
}
.blog_topics li a .topics_detail .imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease-in all;
}
.blog_topics li a .topics_detail .textbox {
  width: 70%;
  padding-left: 10px;
  line-height: 1.5;
}
.blog_topics li a .topics_detail .textbox p {
  margin-top: 5px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.blog_topics li a .time_date {
  width: 120px;
  font-size: 0.9em;
  color: #777;
  font-family: "Poppins", sans-serif;
  font-weight: 900;
}
.blog_topics li a .time_date:before {
  font-family: "Font Awesome 5 Free";
  content: "\f017";
  font-weight: 900;
  margin-right: 5px;
}
@media screen and (max-width: 639px) {
  .blog_topics li a {
    padding: 10px 5px;
  }
  .blog_topics li a .topics_detail .imgbox {
    width: 25%;
    height: 80px;
  }
  .blog_topics li a .topics_detail .textbox {
    width: 75%;
    line-height: 1.5;
  }
  .blog_topics li a .time_date {
    width: 120px;
    font-size: 11px;
  }
}

.pages {
  display: flex;
  justify-content: center;
  margin-top: 35px;
}
.pages > div {
  font-size: 13px;
  line-height: 1.4;
  padding: 10px;
}
.pages > div:last-of-type {
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1px solid #ccc;
}
.pages > div a {
  display: block;
  font-weight: 600;
}

.blog-page-detail {
  display: flex;
  align-items: center;
  font-size: 12px;
  margin-bottom: 10px;
}
.blog-page-detail .blog-date2 {
  display: inline-block;
  color: #2478d1;
  margin-right: 10px;
}
.blog-page-detail .blog-date2:before {
  font-family: "Font Awesome 5 Free";
  content: "\f017";
  font-weight: 900;
  margin-right: 5px;
}
.blog-page-detail .blog-category {
  background: url(../img/paper01.jpg);
  margin-right: 5px;
}

.category_nav {
  border: 1px solid #dddddd;
}
.category_nav li a {
  display: block;
  padding: 15px;
  border-bottom: 1px dotted #dddddd;
  background-color: #ffffff;
}
.category_nav li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0a9";
  font-weight: 900;
  margin-right: 5px;
}
.category_nav li a:hover {
  background: #e9e9e9;
}
.category_nav li:last-child a {
  border-bottom: none;
}

.blog-title {
  line-height: 1.5;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  font-weight: 600;
}
@media screen and (max-width: 639px) {
  .blog-title {
    font-size: 1.2rem;
  }
}

.blog-date {
  display: inline-block;
  color: #2478d1;
  font-size: 1.2rem;
}
.blog-date:before {
  font-family: "Font Awesome 5 Free";
  content: "\f017";
  font-weight: 900;
  margin-right: 5px;
}
@media screen and (max-width: 639px) {
  .blog-date {
    font-size: 12px;
  }
}

.blog-month {
  margin-bottom: 10px;
}
.blog-month ul {
  display: flex;
  flex-wrap: wrap;
}
.blog-month ul li {
  padding: 5px 0;
  margin-bottom: 5px;
  text-align: center;
  letter-spacing: 0;
}
.blog-month ul li:nth-child(2n) {
  margin-left: 2%;
}
.blog-month ul li a {
  color: #44433d;
  font-weight: 400;
  border-bottom: 1px solid #57c4e0;
  font-size: 1.8rem;
  padding: 5px;
}
.blog-month ul li a:hover {
  opacity: 0.6;
}

/* etc
----------------------------------*/
.ttl_img {
  margin: 0 auto 40px;
}

.sec_hr {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.img-r {
  border-radius: 20px;
}

.cut {
  overflow: hidden;
  zoom: 1;
}

.name {
  font-size: 1.8rem;
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: bold;
}
@media screen and (max-width: 639px) {
  .name {
    font-size: 1.4rem;
  }
}

.arrow {
  font-size: 5rem;
  color: #2478d1;
  margin: 40px 0;
}

.spbr {
  display: none;
}

.color1 {
  color: #2478d1;
}

.color2 {
  color: #57c4e0;
}

.color3 {
  color: #88e0ef;
}

.color4 {
  color: #44433d;
}

.relative {
  position: relative;
}

.num {
  font-weight: 600;
}
.num a {
  color: #2478d1;
  font-size: 2.8rem;
  text-align: center;
  margin-left: 5px;
}
@media screen and (max-width: 639px) {
  .num a {
    font-size: 2rem;
  }
}
.num a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
}
.num a:hover {
  color: #f66009;
}

.telbox {
  max-width: 600px;
  margin: 0 auto 20px;
  padding: 20px;
  background: #333;
  text-align: center;
}
.telbox .inner {
  background: #fff;
  padding: 10px;
}

.txt-link {
  font-weight: 600;
  text-decoration: underline;
}
.txt-link:hover {
  text-decoration: none;
}
.txt-link.map:before {
  font-family: "Font Awesome 5 Free";
  content: "\f3c5";
  font-weight: 900;
  margin-right: 4px;
}

.telbnr {
  max-width: 600px;
  margin: 20px auto 60px;
}
.telbnr li {
  border: 3px solid #2478d1;
  padding: 15px;
  text-align: center;
  border-radius: 10px;
}
.telbnr li a {
  width: 100%;
  display: block;
  font-size: 4rem;
  line-height: 1.5;
  font-family: "Comfortaa", sans-serif;
  font-weight: 700;
  color: #2478d1;
  transition: all 0.4s ease-in;
}
.telbnr li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 10px;
  font-size: 3.2rem;
}
.telbnr li a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 639px) {
  .telbnr {
    max-width: 100%;
  }
  .telbnr li {
    width: 100%;
  }
  .telbnr li a {
    font-size: 3rem;
  }
  .telbnr li a:before {
    font-size: 2.2rem;
  }
}

.tblbnr-top {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 639px) {
  .tblbnr-top {
    text-align: left;
  }
}

/* breadcrumb
----------------------------------*/
.breadcrumb {
  max-width: 1100px;
  margin: 20px auto 20px;
  font-size: 1.2rem;
}
.breadcrumb li {
  display: inline;
  color: #777;
}
.breadcrumb li a {
  color: #2478d1;
}
.breadcrumb li + li:before {
  margin: 0 10px;
  content: ">";
}
@media screen and (max-width: 639px) {
  .breadcrumb {
    font-size: 12px;
  }
}

/* form
----------------------------------*/
.form {
  margin: 0 auto;
  width: 90%;
}
.form dl dt {
  float: left;
  width: 280px;
  padding-top: 20px;
  font-weight: 600;
}
.form dl dt span {
  color: #fefefe;
  background: #2478d1;
  padding: 5px 8px;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 20px;
  position: relative;
  top: -2px;
}
.form dl dt span.nini {
  background: #f6fafe;
  background: #57c4e0 !important;
  color: #44433d;
}
.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;
}
.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%;
}
.form .textarea04 {
  width: 20%;
  margin-right: 1%;
}
.form .textarea04 {
  width: 20%;
  margin-right: 1%;
}
.form button {
  cursor: pointer;
  display: block;
  color: #fff;
  text-align: center;
  transition: all 0.2s ease-in-out;
  border: 0;
  font-weight: 600;
  padding: 12px 5px;
  margin: 0 auto;
  width: 250px;
  background: linear-gradient(-90deg, #174c93 0%, #2478d1 27%, #57c4e0 55%, #88e0ef 100%);
  border-radius: 25px;
}
.form button:hover {
  opacity: 0.6;
}
.form button:before {
  font-weight: normal;
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 10px;
}
.form .select-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.form .select-group p {
  margin: 0 5px;
}
@media screen and (max-width: 639px) {
  .form .select-group .select-wrap {
    margin-top: 8px;
  }
}
.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: #2478d1;
}
.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: #2478d1;
  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;
  box-shadow: 20px -1px #fff;
}
.form label.radio_text input[type=radio]:checked {
  box-shadow: none;
}
.form label.radio_text input[type=radio]:focus {
  opacity: 0.2;
  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 #2478d1;
  border-bottom: 3px solid #2478d1;
  transform: rotate(45deg);
  z-index: 1;
}
.form label.checkbox_text input[type=checkbox] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  left: -40px;
  width: 20px;
  height: 20px;
  display: block;
  box-shadow: 41px 0px #fff;
  z-index: 2;
  margin: 0px;
  padding: 0px;
}
.form label.checkbox_text input[type=checkbox]:checked {
  box-shadow: none;
}
.form label.checkbox_text input[type=checkbox]:checked:focus {
  box-shadow: 40px 0px #666;
  opacity: 0.1;
}
.form label.checkbox_text input[type=checkbox]:focus {
  box-shadow: 41px 0px #eee;
}
.form input[type=text],
.form textarea {
  font-size: 16px;
}
@media screen and (max-width: 639px) {
  .form input[type=text],
  .form textarea {
    transform: scale(0.9);
    margin-left: -5px;
  }
}

.fm-txt {
  font-size: 1.4rem;
  background: rgba(255, 255, 255, 0.5);
  padding: 5px;
}

.thanks {
  padding: 40px;
  background: #fff;
  max-width: 700px;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: rgba(0, 87, 147, 0.15) 0px 48px 100px 0px;
}
@media screen and (max-width: 639px) {
  .thanks {
    max-width: 90%;
    padding: 30px 20px;
  }
}

.shadow {
  box-shadow: rgba(13, 43, 75, 0.15) 0px 48px 100px 0px;
}

.policy {
  padding: 30px;
  background: rgba(255, 255, 255, 0.5);
  font-size: 1.4rem;
  letter-spacing: 0;
}
.policy .inner {
  padding-right: 40px;
}
@media screen and (max-width: 639px) {
  .policy {
    font-size: 1.15rem;
  }
  .policy .inner {
    padding-right: 15px;
  }
}

/* gallery(photobox)
----------------------------------*/
.gallery_ul {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  margin-left: -2%;
  margin-bottom: -4%;
}
@media screen and (max-width: 639px) {
  .gallery_ul {
    margin-left: auto;
    margin-right: auto;
  }
}
.gallery_ul > li {
  width: 31.33%;
  margin-left: 2%;
  margin-bottom: 4%;
  font-weight: 600;
}
.gallery_ul > li .photobox-wrap {
  width: 100%;
  height: 220px;
  text-align: center;
  overflow: hidden;
  background: #aaa;
  margin-bottom: 10px;
}
.gallery_ul > li .photobox-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  font-family: "object-fit:contain;";
  object-position: 50% 50%;
}
@media screen and (max-width: 1025px) {
  .gallery_ul > li {
    width: 48%;
  }
}
@media screen and (max-width: 639px) {
  .gallery_ul > li {
    width: 85%;
    margin: 0 auto 30px;
  }
  .gallery_ul > li .photobox-wrap {
    height: 180px;
  }
}

/*photoギャラリー*/
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 3%;
}
@media screen and (max-width: 639px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
.gallery li a {
  background: rgba(245, 243, 235, 0.2);
  display: block;
  text-align: center;
  padding: 0px;
  height: 240px;
}
.gallery li a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover;";
  /*IE対策*/
}
.gallery li p {
  font-size: 14px;
  margin: 3px 0 10px;
}

@media screen and (max-width: 1025px) {
  .gallery li a {
    height: 120px;
  }
  .gallery li p {
    font-size: 12px;
  }
}
/* list
----------------------------------*/
.list2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 4%;
}
@media screen and (max-width: 639px) {
  .list2 {
    grid-template-columns: 1fr;
  }
}
.list2.type1 > li,
.list2.type1 .child {
  background: #fefefe;
  padding: 15px;
}
.list2 > li,
.list2 .child {
  position: relative;
}
.list2 > li.child-100,
.list2 .child.child-100 {
  grid-column: 2fr;
}

.list3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px 4%;
}
.list3.type1 li,
.list3.type1 .child {
  background: #fefefe;
  padding: 15px;
  border-radius: 8px;
  line-height: 1.6;
  font-size: 1.1em;
}
@media screen and (max-width: 639px) {
  .list3.type1 li,
  .list3.type1 .child {
    padding: 20px 10px 10px;
  }
}
.list3 li {
  position: relative;
}
@media screen and (max-width: 639px) {
  .list3 {
    width: 95%;
    grid-template-columns: 1fr;
    margin-left: auto;
    margin-right: auto;
    gap: 25px 0;
  }
}

.list4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 2.5%;
}
.list4.type1 li {
  position: relative;
  padding: 20px;
  background: #fff;
}
.list4.type1 li:after {
  position: absolute;
  content: "";
  right: 11%;
  bottom: -50%;
  width: 100%;
  height: 50%;
  background-image: linear-gradient(to bottom, #ccc 0%, #eee 25%, transparent 40%);
  transform: skew(-25deg);
  z-index: -1;
  opacity: 0.7;
}

.flow-dl .flow-inner {
  padding: 8px;
}
.flow-dl .flow-inner:not(:last-of-type) {
  margin-bottom: 5px;
  border-bottom: solid 1px #aaa;
}
.flow-dl .flow-inner dt {
  font-size: 1.6rem;
  font-weight: 600;
  color: #102777;
}
.flow-dl .flow-inner dt .eng {
  font-family: "Comfortaa", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #102777;
  margin-right: 8px;
}
.flow-dl .flow-inner dd {
  margin-top: 5px;
  padding-left: 40px;
}
@media screen and (max-width: 639px) {
  .flow-dl .flow-inner {
    padding: 6px;
  }
  .flow-dl .flow-inner dt {
    font-size: 1.25rem;
  }
  .flow-dl .flow-inner dt .eng {
    font-size: 1.7rem;
  }
  .flow-dl .flow-inner dd {
    padding-left: 30px;
  }
}

.faq-dl .faq-inner {
  position: relative;
}
.faq-dl .faq-inner:not(:last-of-type) {
  border-bottom: 2px dashed #e7e7e7;
}
.faq-dl .faq-inner dt,
.faq-dl .faq-inner dd {
  position: relative;
  font-size: 1.6rem;
}
@media screen and (max-width: 639px) {
  .faq-dl .faq-inner dt,
  .faq-dl .faq-inner dd {
    font-size: 1.3rem;
  }
}
.faq-dl .faq-inner dt:before,
.faq-dl .faq-inner dd:before {
  position: absolute;
  content: "";
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  left: 0;
  top: 0.5rem;
  font-family: "Comfortaa", sans-serif;
  font-weight: 700;
}
.faq-dl .faq-inner dt {
  font-weight: 600;
  padding: 20px 10px;
  padding-left: 55px;
  margin: 5px auto;
  cursor: pointer;
  z-index: 2;
}
@media screen and (max-width: 639px) {
  .faq-dl .faq-inner dt {
    padding-left: 45px;
  }
}
.faq-dl .faq-inner dt:before {
  content: "Q.";
  color: #492d18;
  font-size: 3rem;
}
@media screen and (max-width: 639px) {
  .faq-dl .faq-inner dt:before {
    font-size: 2rem;
  }
}
.faq-dl .faq-inner dt span {
  position: relative;
}
.faq-dl .faq-inner dt span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 10px;
  background-image: linear-gradient(to right, #2478d1, #57c4e0);
  opacity: 0.3;
  z-index: -1;
}
@media screen and (max-width: 639px) {
  .faq-dl .faq-inner dt span::after {
    display: none;
  }
}
.faq-dl .faq-inner dt:hover span::after {
  width: 100%;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media screen and (max-width: 639px) {
  .faq-dl .faq-inner dt:hover span {
    color: #2478d1;
  }
}
.faq-dl .faq-inner dd {
  display: none;
  margin-top: 10px;
  padding: 20px 10px 40px;
  padding-left: 55px;
}
.faq-dl .faq-inner dd:before {
  content: "A.";
  color: #2478d1;
  font-size: 3rem;
}
@media screen and (max-width: 639px) {
  .faq-dl .faq-inner dd:before {
    font-size: 2rem;
  }
}

#a01,
#a02,
#a03,
#a04,
#a05,
#a06,
#a07,
#a08,
#a09,
#a10,
#a11,
#a12,
#contact,
.anchor {
  display: block;
  padding-top: 100px;
  margin-top: -100px;
}

/* swiper
----------------------------------*/
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 0px !important;
  right: auto;
  border-radius: 50%;
  box-shadow: rgba(36, 120, 209, 0.1) 0px 7px 12px 0px;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 0px !important;
  left: auto;
  box-shadow: rgba(36, 120, 209, 0.1) 0px 7px 12px 0px;
  border-radius: 50%;
}

@media screen and (max-width: 639px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 17px !important;
    height: 28px !important;
    background-size: 17px 28px !important;
  }
}

.slick-prev,
.slick-next {
  background: rgba(255, 255, 255, 0.8) !important;
  width: 35px !important;
  height: 35px !important;
  z-index: 20 !important;
  border-radius: 50% !important;
  border: 1px solid #aaa !important;
  top: 40%;
  transition: all 0.2s ease-in;
}
.slick-prev:before,
.slick-next:before {
  color: #333 !important;
}
.slick-prev:hover,
.slick-next:hover {
  background: #e9e9e9;
}

.slick-prev {
  left: 0 !important;
}

.slick-next {
  right: 0 !important;
}

.content-head {
  padding: 120px 20px;
  background: url(../img/content-head01.jpg) no-repeat right center/cover;
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 639px) {
  .content-head {
    padding: 50px 15px;
  }
}

.content-txt {
  position: relative;
  max-width: 500px;
  background: rgba(252, 252, 252, 0.7);
  padding: 30px;
  text-align: center;
  box-shadow: 0 0 15px rgab(#000, 0.1);
}
@media screen and (max-width: 639px) {
  .content-txt {
    padding: 20px;
  }
}

.slide_list {
  position: relative;
  display: none;
}
.slide_list li {
  margin-right: 1%;
}
.slide_list li img {
  width: 450px;
  height: 400px;
  object-fit: cover;
  transition: filter 0.2s ease-in;
}
.slide_list li:hover img {
  filter: grayscale(0);
}
@media screen and (max-width: 639px) {
  .slide_list li {
    margin-right: 4%;
  }
  .slide_list li img {
    height: 200px;
  }
}

.flow-list {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.flow-list.type1 {
  display: block;
}
.flow-list.type1 > li {
  width: 90%;
}
.flow-list.type1 > li:nth-child(2) {
  margin-left: 2%;
}
.flow-list.type1 > li:nth-child(3) {
  margin-left: 4%;
}
.flow-list.type1 > li:nth-child(4) {
  margin-left: 6%;
}
.flow-list.type1 > li:nth-child(5) {
  margin-left: 8%;
}
.flow-list.type1 > li .flow-title {
  margin-bottom: 10px;
}
@media screen and (max-width: 639px) {
  .flow-list.type1 > li {
    width: 100%;
  }
  .flow-list.type1 > li:nth-child(2), .flow-list.type1 > li:nth-child(3), .flow-list.type1 > li:nth-child(4), .flow-list.type1 > li:nth-child(5) {
    margin-left: 0;
  }
}
.flow-list > li {
  width: 48%;
  margin-right: 4%;
  margin-bottom: 30px;
  padding: 25px;
  display: flex;
  flex-wrap: wrap;
  background: #fefefe;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(73, 45, 24, 0.05);
  font-weight: 600;
}
.flow-list > li.type100 {
  flex-basis: 100%;
  margin-right: 0;
}
.flow-list > li:nth-child(2n) {
  margin-right: 0;
}
@media screen and (max-width: 639px) {
  .flow-list > li {
    width: 90%;
    margin: 0 auto 30px;
  }
  .flow-list > li:nth-child(2n) {
    margin-right: auto;
  }
}
.flow-list > li .flow-num {
  color: #f66009;
  font-size: 3.5rem;
  border-right: 1px solid #2478d1;
  padding-right: 15px;
  align-self: flex-start;
  line-height: 1.2;
  font-family: "Comfortaa", sans-serif;
  font-weight: 700;
}
.flow-list > li .flow-num span {
  font-size: 1.3rem;
  display: block;
  text-align: center;
}
.flow-list > li .txt {
  flex: 1;
  margin-left: 35px;
}
.flow-list > li .flow-title {
  color: #2478d1;
  border-bottom: 1px solid #2478d1;
  padding-bottom: 4px;
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 639px) {
  .flow-list > li {
    flex-direction: column;
  }
  .flow-list > li .flow-num {
    font-size: 2.2rem;
    text-align: center;
    border-right: 0;
    padding: 0 0 4px;
    border-bottom: 1px solid #57c4e0;
  }
  .flow-list > li .flow-title {
    font-size: 1.3rem;
  }
  .flow-list > li .txt {
    margin: 20px auto 0;
  }
}

.kiritori {
  height: 1px;
  border-top: 1px solid rgba(16, 39, 119, 0.2);
  margin: 4em auto;
  max-width: 20%;
  display: block;
}

.column2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.column2 .child {
  width: 48%;
}
@media screen and (max-width: 639px) {
  .column2 {
    flex-direction: column;
  }
  .column2 .child {
    width: 100%;
  }
  .column2 .child.column2-img {
    order: -1;
    margin-bottom: 30px;
  }
}

.page {
  text-align: center;
}

.title-big {
  padding-top: 2em;
  position: relative;
  text-align: center;
  color: #fff;
}
.title-big:before {
  font-size: 3rem;
  white-space: nowrap;
  font-family: "Comfortaa", sans-serif;
  font-weight: 400;
  position: absolute;
  content: attr(data-title);
  top: 0;
  left: 50%;
  letter-spacing: 0.1rem;
  opacity: 0.9;
  transform: translateX(-50%);
  display: inline-block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(-60deg, #2478d1 0%, #57c4e0 50%, #88e0ef 100%);
}
.title-big.type1 {
  color: #222;
}
.title-big.type1:before {
  color: transparent;
  background-image: linear-gradient(-60deg, #2478d1 0%, #57c4e0 50%, #88e0ef 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.title-big.type2:before {
  -webkit-background-clip: none;
  -webkit-text-fill-color: initial;
  color: #fff;
}
.title-big .img {
  display: block;
  max-width: 750px;
  margin-inline: auto;
}
.title-big .ja {
  display: block;
  font-weight: 600;
  font-size: 3rem;
  position: relative;
  z-index: 2;
  color: #49565f;
}
.title-big .big {
  font-size: 3rem;
}
.title-big .big em {
  font-size: 4.5rem;
  font-weight: 800;
  color: #102777;
}
.title-big .small {
  font-size: 0.7em;
}
.title-big.title_left {
  text-align: left;
}
.title-big.title_left:before {
  left: 0;
  transform: none;
}
.title-big.type-greet {
  text-align: left;
  color: #2478d1;
}
.title-big.type-greet .ja {
  color: #fff;
}
.title-big.type-greet:before {
  left: 0;
  transform: none;
}
.title-big.type-greet2 {
  text-align: left;
  color: #2478d1;
}
.title-big.type-greet2:before {
  left: 0;
  transform: none;
}
@media screen and (max-width: 896px) {
  .title-big.type-greet2::before {
    font-size: 2rem;
  }
  .title-big.type-greet2 .ja {
    font-size: 3rem;
  }
}
@media screen and (max-width: 639px) {
  .title-big .ja {
    font-size: 2rem;
  }
  .title-big::before {
    font-size: 1.8rem;
  }
  .title-big.type-greet2 .ja {
    font-size: 2rem;
  }
  .title-big.type-greet2::before {
    font-size: 1.8rem;
  }
}

.title-big2 {
  position: relative;
  color: #44433d;
  margin-bottom: 40px;
}
.title-big2 .ja {
  display: block;
  font-weight: 600;
  font-size: 2.5rem;
  position: relative;
  z-index: 2;
  padding-left: 10px;
}
.title-big2 .eng {
  font-size: 1.8rem;
  font-family: "Comfortaa", sans-serif;
  font-weight: 700;
  position: relative;
}
.title-big2 .eng:before {
  font-family: "Font Awesome 5 Free";
  content: "\f773";
  font-weight: 900;
  margin-right: 5px;
  color: #2478d1;
  font-size: 0.8em;
}
@media screen and (max-width: 639px) {
  .title-big2 {
    margin-bottom: 20px;
  }
  .title-big2 .ja {
    font-size: 1.8rem;
  }
  .title-big2 .eng {
    font-size: 1.2rem;
  }
}

.contact-ttl-box {
  margin-top: 60px;
}
@media screen and (max-width: 896px) {
  .contact-ttl-box {
    padding-left: 0;
  }
}
@media screen and (max-width: 639px) {
  .contact-ttl-box {
    margin-top: 30px;
  }
}

.contact-box {
  display: flex;
  width: 80%;
  margin: 0 auto;
}
.contact-box .inner {
  width: 50%;
}
@media screen and (max-width: 1025px) {
  .contact-box {
    flex-direction: column;
    gap: 40px;
  }
  .contact-box .inner {
    width: 100%;
  }
}

.contact-tel-bnr {
  text-align: center;
}
.contact-tel-bnr a {
  display: inline-block;
  position: relative;
  text-align: center;
  font-size: 5rem;
  font-family: "Comfortaa", sans-serif;
  font-weight: 700;
  transition: all 0.3s ease-out;
  background-size: 200% auto;
  background-position: 80% 50%;
  color: #44433d;
}
.contact-tel-bnr a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 6px;
  font-size: 0.9em;
}
.contact-tel-bnr a:hover {
  color: #57c4e0;
}
.contact-tel-bnr.type-fax a {
  pointer-events: none;
}
.contact-tel-bnr.type-fax a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f1ac";
  font-weight: 900;
}
@media screen and (max-width: 896px) {
  .contact-tel-bnr a {
    padding: 20px 60px;
  }
}
@media screen and (max-width: 639px) {
  .contact-tel-bnr a {
    padding: 10px;
    font-size: 2.6rem;
  }
}

.tel_bnr a {
  color: #44433d;
  font-size: 3.5rem;
  letter-spacing: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 900;
}
.tel_bnr a .small {
  font-size: 2rem;
}
.tel_bnr a:hover {
  color: #88e0ef;
}
@media screen and (max-width: 639px) {
  .tel_bnr a {
    font-size: 2.5rem;
  }
}

.js-span-text {
  opacity: 0;
}
.js-span-text.on {
  opacity: 1;
}
.js-span-text.on span {
  display: inline-block;
  opacity: 0;
}
.js-span-text.on span:nth-child(1) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.1 s forwards;
}
.js-span-text.on span:nth-child(2) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.2 s forwards;
}
.js-span-text.on span:nth-child(3) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.3 s forwards;
}
.js-span-text.on span:nth-child(4) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.4 s forwards;
}
.js-span-text.on span:nth-child(5) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.5 s forwards;
}
.js-span-text.on span:nth-child(6) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.6 s forwards;
}
.js-span-text.on span:nth-child(7) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.7 s forwards;
}
.js-span-text.on span:nth-child(8) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.8 s forwards;
}
.js-span-text.on span:nth-child(9) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.9 s forwards;
}
.js-span-text.on span:nth-child(10) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1 s forwards;
}
.js-span-text.on span:nth-child(11) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.1 s forwards;
}
.js-span-text.on span:nth-child(12) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.2 s forwards;
}
.js-span-text.on span:nth-child(13) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.3 s forwards;
}
.js-span-text.on span:nth-child(14) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.4 s forwards;
}
.js-span-text.on span:nth-child(15) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.5 s forwards;
}
.js-span-text.on span:nth-child(16) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.6 s forwards;
}
.js-span-text.on span:nth-child(17) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.7 s forwards;
}
.js-span-text.on span:nth-child(18) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.8 s forwards;
}
.js-span-text.on span:nth-child(19) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.9 s forwards;
}
.js-span-text.on span:nth-child(20) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2 s forwards;
}
.js-span-text.on span:nth-child(21) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.1 s forwards;
}
.js-span-text.on span:nth-child(22) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.2 s forwards;
}
.js-span-text.on span:nth-child(23) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.3 s forwards;
}
.js-span-text.on span:nth-child(24) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.4 s forwards;
}
.js-span-text.on span:nth-child(25) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.5 s forwards;
}
.js-span-text.on span:nth-child(26) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.6 s forwards;
}
.js-span-text.on span:nth-child(27) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.7 s forwards;
}
.js-span-text.on span:nth-child(28) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.8 s forwards;
}
.js-span-text.on span:nth-child(29) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.9 s forwards;
}
.js-span-text.on span:nth-child(30) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3 s forwards;
}
.js-span-text.on span:nth-child(31) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.1 s forwards;
}
.js-span-text.on span:nth-child(32) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.2 s forwards;
}
.js-span-text.on span:nth-child(33) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.3 s forwards;
}
.js-span-text.on span:nth-child(34) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.4 s forwards;
}
.js-span-text.on span:nth-child(35) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.5 s forwards;
}
.js-span-text.on span:nth-child(36) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.6 s forwards;
}
.js-span-text.on span:nth-child(37) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.7 s forwards;
}
.js-span-text.on span:nth-child(38) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.8 s forwards;
}
.js-span-text.on span:nth-child(39) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.9 s forwards;
}
.js-span-text.on span:nth-child(40) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4 s forwards;
}
.js-span-text.on span:nth-child(41) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.1 s forwards;
}
.js-span-text.on span:nth-child(42) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.2 s forwards;
}
.js-span-text.on span:nth-child(43) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.3 s forwards;
}
.js-span-text.on span:nth-child(44) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.4 s forwards;
}
.js-span-text.on span:nth-child(45) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.5 s forwards;
}

@keyframes text {
  0% {
    opacity: 0;
    transform: translateX(-20px) translateY(-10px) scale(1.3);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
/* greet_block
----------------------------------*/
.greet-area {
  position: relative;
  justify-content: flex-end;
  display: flex;
  z-index: 1;
  margin-bottom: 80px;
  margin-top: 100px;
  padding: 80px 0;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
}
.greet-area.recruit:before {
  background: url(../img/recruit.jpg) no-repeat center/cover;
}
.greet-area.greet:before {
  background: url(../img/3.jpg) no-repeat center/cover;
}
.greet-area:before {
  position: absolute;
  content: "";
  width: 42%;
  height: 75%;
  bottom: 0;
  right: 10%;
  z-index: -1;
  background: url(../img/top_about.jpg) no-repeat center/cover;
  border-radius: 20px;
  aspect-ratio: 1/1;
}
.greet-area .greet-area-box {
  position: relative;
  top: 0;
  left: 0;
  width: 50%;
  padding: 60px 40px;
  margin-right: auto;
  box-sizing: border-box;
  overflow: hidden;
  background: #fefefe;
  border-radius: 20px;
  left: 10%;
  box-shadow: rgba(0, 87, 147, 0.15) 0px 48px 100px 0px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 18px 50px -10px;
}
.greet-area .greet-area-box .inner {
  position: relative;
  max-width: 700px;
  margin: auto;
  z-index: 1;
}
.greet-area .greet-area-box .inner p + p {
  margin-top: 18px;
}
@media screen and (max-width: 1025px) {
  .greet-area {
    flex-direction: column;
  }
  .greet-area:before {
    width: 100%;
    height: 400px;
    top: auto;
    padding-bottom: 36.25%;
  }
  .greet-area::after {
    width: 100%;
  }
  .greet-area .greet-area-box {
    position: relative;
    left: auto;
    right: 0;
    width: 95%;
    height: 100%;
    padding: 30px;
    margin: 0 0 30.25% auto;
  }
  .greet-area .greet-area-box .inner p + p {
    margin-top: 12px;
  }
}
@media screen and (max-width: 896px) {
  .greet-area {
    padding: 40px 0;
    margin-top: 80px;
    margin-bottom: 0;
  }
  .greet-area:before {
    bottom: auto;
    top: 0;
  }
  .greet-area .greet-area-box {
    margin: 36.25% 0 0 auto;
    width: 90%;
  }
}
@media screen and (max-width: 639px) {
  .greet-area .greet-area-box {
    padding: 15px 25px;
  }
  .greet-area:before {
    height: 300px;
  }
}
.greet-area.type-recruit::before {
  background: url(../img/1.jpg) no-repeat center/cover;
}
.greet-area.type-recruit .greet-ttl {
  font-size: 3.5rem;
}
.greet-area.type-recruit .greet-ttl span {
  color: #2478d1;
  font-size: 1.5rem;
  display: block;
}

.fukidashi {
  position: relative;
  z-index: 2;
  text-align: center;
  margin: -60px auto 30px;
}
.fukidashi.type1 {
  margin-top: 0;
}
.fukidashi span {
  display: inline-block;
  font-size: 2.2rem;
  background: #102777;
  color: #fff;
  padding: 5px 15px;
  font-weight: 600;
  position: relative;
}
.fukidashi span:before {
  position: absolute;
  content: "";
  left: 50%;
  bottom: -13px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 18px 20px 0 20px;
  border-color: #102777 transparent transparent transparent;
  transform: translateX(-50%);
}

.fukidashi2 {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 4;
  animation: bound 0.8s linear infinite alternate;
}
.fukidashi2 span {
  background-color: #fff;
  background: #f8c916;
  display: inline-block;
  position: relative;
  color: #503a28;
  font-size: 2.2rem;
  background: #f8c916;
  padding: 10px 40px;
  border-radius: 5px;
}
@media screen and (max-width: 1025px) {
  .fukidashi2 span {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 639px) {
  .fukidashi2 span {
    font-size: 1.4rem;
  }
}
.fukidashi2 span:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  border-top: 10px solid #2478d1;
  border: 10px solid transparent;
  border-top: 10px solid #f8c916;
}
@media screen and (max-width: 639px) {
  .fukidashi2 {
    width: 300px;
    margin: 0 auto 30px;
  }
}

.business-box .column2 {
  margin-bottom: 40px;
}
@media screen and (max-width: 639px) {
  .business-box .column2 {
    margin-bottom: 20px;
  }
}
.business-box .inner {
  margin: 0 auto;
  gap: 40px;
}
@media screen and (max-width: 1101px) {
  .business-box .inner .ttl {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .business-box .inner .ttl .mtitle3 {
    writing-mode: initial;
  }
}
@media screen and (max-width: 1101px) and (max-width: 639px) {
  .business-box .inner .ttl .mtitle3 {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 639px) {
  .business-box .inner .child-txt p {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 639px) {
  .business-box .inner .child-txt p.mtext2 {
    font-size: 1.6rem;
  }
}
.business-box .inner2 {
  margin-left: auto;
  margin-top: 40px;
}
@media screen and (max-width: 639px) {
  .business-box .inner2 {
    width: 100%;
  }
}
.business-box .inner2 .mtitle_line {
  width: 90%;
  margin: 0 auto 25px;
}
.business-box .child-img {
  margin-bottom: 20px;
}
.business-box .child-img > div {
  height: 400px;
  width: 100%;
}
@media screen and (max-width: 1101px) {
  .business-box .child-img > div {
    height: 300px;
    width: 100%;
  }
}
@media screen and (max-width: 639px) {
  .business-box .child-img > div {
    height: 250px;
  }
}
.business-box .child-img > div img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.business-box .sub-txt {
  padding: 20px;
  border: 2px solid rgba(11, 54, 101, 0.5);
  border-radius: 5px;
  background: #fefefe;
}

.skew-img {
  clip-path: polygon(0 30px, 100% 0%, 100% calc(100% - 30px), 0% 100%);
  overflow: hidden;
}
.skew-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*----------------------------------
contact-form
----------------------------------*/
.form-contents {
  width: 100% !important;
  height: auto !important;
  padding: 0 !important;
  border-radius: 15px 15px 0 0 !important;
  background: rgba(255, 255, 255, 0.5) !important;
}
@media screen and (max-width: 1101px) {
  .form-contents {
    padding: 15px !important;
  }
}
.form-contents form dl dt .nini {
  background: #57c4e0 !important;
  margin-right: 5px !important;
  font-size: 11px !important;
  border-radius: 20px !important;
  color: #fff !important;
  padding: 5px 10px !important;
}
.form-contents button {
  border: 1px solid #57c4e0 !important;
}
.form-contents .required::before {
  background: transparent !important;
  padding: 5px 10px !important;
  color: #44433d !important;
  content: "＊" !important;
  font-size: 1.2rem !important;
}
.form-contents .textarea {
  background-color: transparent !important;
  border: none !important;
  padding: 20px 15px !important;
  border: 1px solid #ddd !important;
  border-radius: 10px !important;
}
.form-contents input[type=radio] {
  margin: 0 5px 3px;
}
.form-contents input[type=text],
.form-contents textarea {
  font-size: 16px;
}
.form-contents input[type=text] {
  height: 50px !important;
}
.form-contents .submit-btn {
  background: #44433d !important;
  border: none !important;
  color: #fefefe !important;
}
.form-contents .submit-btn::before {
  background: #fff !important;
}
.form-contents .submit-btn:hover {
  opacity: 0.6;
}
.form-contents .custom-area p {
  padding: 10px 0;
}

@media screen and (max-width: 639px) {
  .form-contents {
    padding: 0 10px !important;
  }
  .form-contents dl {
    margin: 10px 0 !important;
  }
  .form-contents dl dt {
    float: none !important;
    padding-top: 15px !important;
  }
  .form-contents dl dd {
    padding-left: 0 !important;
    padding-bottom: 15px !important;
    padding-top: 10px !important;
    line-height: 20px !important;
  }
  .form-contents .submit-btn {
    width: 250px !important;
  }
}
/* accordion
----------------------------------*/
.accordion dt,
.accordion dd {
  position: relative;
  padding: 1em;
}
.accordion dt {
  background: #fefefe;
  border: 1px solid #ddd;
  cursor: pointer;
  font-size: 1.7rem;
  color: #44433d;
  border-radius: 5px;
}
.accordion dt:after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f067";
  font-weight: 900;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 1.7rem;
}
.accordion dt.on:after {
  font-family: "Font Awesome 5 Free";
  content: "\f068";
  font-weight: 900;
}
.accordion dd {
  display: none;
  padding: 25px;
  background: #fefefe;
}
@media screen and (max-width: 639px) {
  .accordion dt {
    font-size: 1.3rem;
  }
  .accordion dd {
    padding: 15px;
  }
}/*# sourceMappingURL=basis.css.map */