@charset "UTF-8";
/* アニメーションベンダープレフィックス込み指定 */
/* アニメーションベンダープレフィックス込み指定 */
/* アニメーションベンダープレフィックス込み指定 */
body {
  color: #323232;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
  font-weight: 300;
  position: relative;
  letter-spacing: 0.1rem;
  background: #FFFFFF;
}

#nav-toggle,
#sp-nav {
  display: none;
}

a {
  color: #000d29;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

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

.bold {
  font-weight: 600;
}

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

.mincho {
  font-family: "Noto Serif JP", serif;
}

#wrapper {
  overflow: hidden;
}

/* animation
----------------------------------*/
@-webkit-keyframes view-zoomin {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes view-zoomin {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes view-slideup {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 35px);
            transform: translate(0, 35px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes view-slideup {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 35px);
            transform: translate(0, 35px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

.animation {
  opacity: 0;
}

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

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

.loader {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fdfdfd;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
}

.loader::after {
  -webkit-animation: loader 0.5s linear infinite;
          animation: loader 0.5s linear infinite;
  border: 1px solid #002d8f;
  border-radius: 50%;
  border-right: 1px solid rgba(0, 45, 143, 0.2);
  border-top: 1px solid rgba(0, 45, 143, 0.2);
  content: "";
  height: 70px;
  width: 70px;
}

.loader.off {
  display: none;
}

@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes loader {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/* header
----------------------------------*/
@-webkit-keyframes hd-scrolled {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes hd-scrolled {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

#l-header {
  width: 100%;
  max-width: calc(100% - 150px);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 200;
}

@media all and (max-width: 800px) {
  #l-header {
    max-width: calc(100% - 20px);
  }
}

#l-header .inner {
  max-width: 98%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 8px 0;
}

@media all and (max-width: 800px) {
  #l-header .inner {
    min-width: initial;
  }
}

#logo {
  width: 440px;
  position: relative;
  z-index: 10;
}

@media all and (max-width: 1200px) {
  #logo {
    width: 250px;
  }
}

.header-right_txt {
  line-height: 1.2;
  font-size: 1.3rem;
  font-weight: 600;
  color: #5c4332;
}

.header-right_contact {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 5px;
}

@media all and (max-width: 800px) {
  .header-right_contact {
    display: none;
  }
}

.header-insta a {
  width: 200px;
  height: 35px;
  display: block;
  text-align: center;
  line-height: 35px;
  color: #222;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: -0.1rem;
}

.header-insta a span {
  font-weight: normal;
  font-size: 2.2rem;
  margin-right: 5px;
}

.header-insta a:hover {
  color: #002d8f;
}

.header-right_tel a,
.header-right_mail a,
.header-right_reserve a {
  display: block;
  padding: 5px 10px;
  line-height: 1.4;
  text-align: center;
  font-size: 1.5rem;
  color: #fff;
  font-weight: 600;
}

.header-right_tel a span,
.header-right_mail a span,
.header-right_reserve a span {
  padding-right: 5px;
}

.header-right_tel a:hover,
.header-right_mail a:hover,
.header-right_reserve a:hover {
  -webkit-transition: background-color 0.2s ease-in;
  transition: background-color 0.2s ease-in;
}

.header-right_tel {
  text-align: center;
  margin-right: 15px;
}

.header-right_tel a {
  width: 100%;
  color: #002d8f;
  font-size: 2.5rem;
  padding: 5px 20px;
  font-family: "Oswald", sans-serif;
  border: 1px solid #002d8f;
  border-radius: 30px;
  line-height: 1.3;
}

.header-right_tel a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: bold;
  margin-right: 5px;
  font-size: 2rem;
}

.header-right_tel a:hover {
  color: #fff;
  background: #002d8f;
  border: 1px solid #002d8f;
}

.header-right_mail {
  margin-right: 15px;
}

.header-right_mail a {
  background: #002d8f;
  color: #fff;
  padding: 10px 30px;
  border-radius: 30px;
}

.header-right_mail a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: bold;
  margin-right: 5px;
}

.header-right_mail a:hover {
  background: #003dc2;
}

.header-right_map a {
  background: #002d8f;
  color: #fff;
  padding: 10px 30px;
  border-radius: 30px;
}

.header-right_map a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f3c5";
  font-weight: bold;
  margin-right: 5px;
}

.header-right_map a:hover {
  background: #003dc2;
}

.header-right_reserve {
  margin-left: 10px;
}

.header-right_reserve a {
  background: #ffe53b;
  color: #222;
}

.header-right_reserve a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f073";
  font-weight: bold;
}

.header-right_fax {
  display: block;
  padding: 6px 15px;
  border-radius: 40px;
  line-height: 1.4;
  text-align: center;
  font-size: 1.8rem;
  color: #fff;
  max-width: 350px;
  font-weight: 600;
  background: #98d398;
}

.header-right_fax:before {
  font-family: "Font Awesome 5 Free";
  content: "\f1ac";
  font-weight: bold;
  margin-right: 5px;
}

#header_nav {
  position: relative;
  width: 650px;
}

@media all and (max-width: 1200px) {
  #header_nav {
    width: 550px;
  }
}

#header_nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto;
}

#header_nav ul li {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  text-align: center;
}

#header_nav ul li.point a {
  border-radius: 10px;
  border: 1px solid #002d8f;
  background: rgba(0, 45, 143, 0.2);
}

#header_nav ul li.point a:hover, #header_nav ul li.point a.active {
  color: #fff;
  background: #002d8f;
}

#header_nav ul li.point a:hover span, #header_nav ul li.point a.active span {
  color: #fff;
}

#header_nav ul li a {
  display: block;
  color: #002d8f;
  font-size: 1.6rem;
  padding: 10px 0;
  -webkit-transition: color 0.2s ease-in;
  transition: color 0.2s ease-in;
  font-weight: 500;
  letter-spacing: .2rem;
  line-height: 1.3;
}

#header_nav ul li a span {
  display: block;
  position: relative;
  font-size: 1rem;
  color: #003dc2;
  text-align: center;
  -webkit-transition: background-color 0.2s ease-in;
  transition: background-color 0.2s ease-in;
  font-weight: 400;
}

#header_nav ul li a:hover, #header_nav ul li a.active {
  color: #000d29;
}

#header_nav ul li a:hover span, #header_nav ul li a.active span {
  color: #000d29;
}

#header_nav ul li.nav-reserve {
  background: #FFF6E2;
}

#header_nav .dropdown {
  display: none;
  position: absolute;
  left: 0;
  top: 50px;
  z-index: 310;
}

#header_nav .dropdown .dropdown-li {
  margin: 0 0 5px;
}

#header_nav .dropdown .dropdown-li a {
  display: block;
  width: 160px;
  text-align: center;
  font-size: 1.3rem;
  padding: 10px 0;
  border-right: 0;
  color: #555;
  background: #fff;
}

#header_nav .dropdown .dropdown-li a:after {
  display: none;
}

#header_nav .dropdown .dropdown-li a:hover {
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  color: #fefefe;
  background: #002d8f;
}

#header_nav .dropdown .dropdown-li.foot_only {
  display: none;
}

/* page-top
-------------------------------
#page-top {
 position: fixed;
 bottom: 10px;
 right: 10px;
 z-index: 99;

 a {
  display: block;
  background: darken($base_color, 10%);

  color: #fff;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  font-size: 1.8rem;
  text-align: center;

  &:hover {
   opacity: 0.6;
  }
 }

 @include for-size(phone-only) {
  bottom: 45px;
 }
}

---*/
/* page-top
----------------------------------*/
#page-top {
  position: fixed;
  bottom: 8%;
  right: 2%;
  z-index: 5;
}

#page-top a {
  display: inline-block;
  -webkit-transition: 0.15s ease;
  transition: 0.15s ease;
  text-decoration: none;
  color: #000d29;
  font-size: 1.8rem;
  line-height: 10px;
  font-family: "Oswald", sans-serif;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}

#page-top a:before {
  content: "";
  position: absolute;
  top: -65px;
  right: 5px;
  left: 0;
  margin: auto;
  width: 1px;
  height: 55px;
  background: #002d8f;
  /*border-top: 1px solid  darken($base_color,20%);
   border-right: 1px solid  darken($base_color,20%);
   width: 15px;
   height: 15px;
   -webkit-transition: 0.15s ease;
   transition: 0.15s ease;
   -webkit-transform: rotate(-45deg);
   -ms-transform: rotate(-45deg);
   transform: rotate(-45deg);*/
}

#page-top a:hover:before {
  top: -75px;
}

/* swiper
----------------------------------*/
@-webkit-keyframes zoom-in {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.12);
            transform: scale(1.12);
  }
}
@keyframes zoom-in {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.12);
            transform: scale(1.12);
  }
}

.swiper-slide {
  position: relative;
}

.swiper-slide:before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  right: 0;
  top: 0;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.swiper-slide.slide1:before {
  background-image: url(../img/1.jpg);
}

.swiper-slide.slide2:before {
  background-image: url(../img/2.jpg);
}

.swiper-slide.slide3:before {
  background-image: url(../img/3.jpg);
}

.swiper-slide.slide4:before {
  background-image: url(../img/4.jpg);
}

.slide-img {
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
  height: 80vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slide-img img {
  width: 600px;
}

@media all and (max-width: 1200px) {
  .slide-img {
    height: 50vw;
  }
}

@media all and (max-width: 800px) {
  .slide-img img {
    width: 60%;
  }
}

@media all and (max-width: 639px) {
  .slide-img {
    height: 35vh;
  }
  .slide-img img {
    width: 80%;
  }
}

#slide-bg {
  position: relative;
}

#slide-bg:before {
  position: absolute;
  content: "";
  width: 100%;
  max-width: calc(100% - 150px);
  height: 100%;
  bottom: -4%;
  left: 52%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: -webkit-gradient(linear, left top, right bottom, from(#002d8f), to(rgba(0, 45, 143, 0.1)));
  background-image: linear-gradient(to right bottom, #002d8f 0%, rgba(0, 45, 143, 0.1) 100%);
  z-index: -1;
  opacity: 0.8;
}

@media all and (max-width: 800px) {
  #slide-bg:before {
    max-width: 100%;
    height: 90%;
    bottom: -3%;
    opacity: 0.5;
  }
}

#slideshow {
  max-width: calc(100% - 150px);
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

@media all and (max-width: 800px) {
  #slideshow {
    max-width: calc(100% - 20px);
  }
}

@media all and (max-width: 639px) {
  #slideshow {
    margin-top: 10px;
  }
}

#catch {
  z-index: 150;
  position: absolute;
  left: 5%;
  top: 50%;
  opacity: 0;
  width: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: center;
}

#catch.on {
  opacity: 1;
  -webkit-transition: 2s;
  transition: 2s;
}

@media all and (max-width: 1200px) {
  #catch {
    width: 60%;
  }
}

@media all and (max-width: 800px) {
  #catch {
    left: 2%;
  }
}

@media all and (max-width: 639px) {
  #catch {
    width: 85%;
    -webkit-transform: initial;
            transform: initial;
    top: auto;
    bottom: 0%;
    left: 0%;
  }
}

.contact_lead {
  font-size: 1.3em;
  color: #5c4332;
  text-align: center;
}

@media all and (max-width: 639px) {
  .contact_lead {
    font-size: 1em;
  }
}

.contact_wrap {
  max-width: 1200px;
  border-top: 3px solid white;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact_wrap .contact_left,
.contact_wrap .contact_right {
  width: 49%;
  padding: 20px;
}

.contact_wrap .contact_right {
  text-align: right;
}

.contact_wrap .contact_left {
  margin-right: 2%;
  border-right: 3px solid white;
}

@media all and (max-width: 639px) {
  .contact_wrap {
    margin-top: 30px;
    width: 94%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact_wrap .contact_left,
  .contact_wrap .contact_right {
    width: 100%;
    padding: 10px;
    font-size: 0.9em;
    letter-spacing: 0;
    font-weight: normal;
  }
  .contact_wrap .contact_right {
    text-align: left;
  }
  .contact_wrap .contact_left {
    margin-right: auto;
    border-right: 0;
    border-bottom: 3px solid #fff;
  }
}

.contact_bnr {
  margin: 15px 0 15px;
}

.contact_bnr > li .bnr_tel {
  white-space: nowrap;
  color: #333;
  line-height: 1.3;
  font-size: 4.5rem;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0;
  font-weight: 200;
}

.contact_bnr > li .bnr_tel:before {
  font-family: "Font Awesome 5 Free";
  content: "\f095";
  font-weight: bold;
  font-size: 4rem;
  color: #333;
}

.contact_bnr > li .bnr_tel:hover {
  text-shadow: 3px 3px 0px rgba(40, 80, 126, 0.4);
}

@media all and (max-width: 639px) {
  .contact_bnr > li .bnr_tel {
    font-size: 3rem;
    width: 100%;
  }
  .contact_bnr > li .bnr_tel:before {
    font-size: 2.8rem;
  }
}

.contact_bnr > li .bnr_mobile {
  background: #002d8f;
  border: 1px solid #001d5c;
}

.contact_bnr > li .bnr_mobile:before {
  font-family: "Font Awesome 5 Free";
  content: "\f3cd";
  font-weight: bold;
}

.contact_bnr > li .bnr_mobile:hover {
  background: #b32a20;
}

.contact_bnr > li .bnr_reserve {
  background: #ffe53b;
  color: #222;
}

.contact_bnr > li .bnr_reserve:before {
  font-family: "Font Awesome 5 Free";
  content: "\f073";
  font-weight: bold;
}

.contact_bnr > li .bnr_fax {
  background: #FFF6E2;
  border: 1px solid #ffde96;
  color: #333;
}

.contact_bnr > li .bnr_fax:before {
  font-family: "Font Awesome 5 Free";
  content: "\f1ac";
  font-weight: bold;
}

.contact_bnr > li .bnr_mail {
  background: #002d8f;
  color: #fefefe;
  font-size: 1.7rem;
}

.contact_bnr > li .bnr_mail:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: bold;
}

.contact_bnr > li .bnr_mail:hover {
  color: #ffe53b;
}

.contact_bnr > li a,
.contact_bnr > li span {
  display: block;
  padding: 5px 15px;
  margin: 0 auto;
  color: #ffffff;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  width: 330px;
}

.contact_bnr > li a:before,
.contact_bnr > li span:before {
  margin-right: 5px;
}

@media all and (max-width: 639px) {
  .contact_bnr > li a,
  .contact_bnr > li span {
    width: 300px;
    font-size: 1.5rem;
  }
}

@media all and (max-width: 320px) {
  .contact_bnr > li a,
  .contact_bnr > li span {
    width: 250px;
  }
}

/* footer
----------------------------------*/
#l-footer {
  font-size: 1.3rem;
  position: relative;
}

#l-footer:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 80%;
  left: 0;
  bottom: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(80%, #8fb2ff));
  background-image: linear-gradient(to bottom, #fff 0%, #8fb2ff 80%);
  z-index: -2;
  opacity: 0.5;
}

@media all and (max-width: 800px) {
  #l-footer:before {
    height: 91%;
    width: 100%;
    background-image: -webkit-gradient(linear, left top, right bottom, from(#fff), color-stop(80%, #8fb2ff));
    background-image: linear-gradient(to right bottom, #fff 0%, #8fb2ff 80%);
  }
}

@media all and (max-width: 639px) {
  #l-footer:before {
    width: 100%;
  }
}

#l-footer .inner {
  position: relative;
  z-index: 3;
}

#l-footer .inner.type2 {
  background: #002d8f;
}

#l-footer .footer-box {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

@media all and (max-width: 639px) {
  #l-footer {
    font-size: 12px;
  }
}

/* footer_navi
----------------------------------*/
.footer_navi {
  margin: 10px auto;
}

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

.footer_navi ul {
  margin: 0 auto;
  max-width: 700px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer_navi li {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  text-align: center;
  margin: 0 0 4px;
  border-right: 0.9px solid #777;
}

.footer_navi li:last-child {
  border-right: 0;
}

.footer_navi li a {
  color: #333;
  font-size: 1.3rem;
  position: relative;
  font-weight: 400;
}

.footer_navi li a:hover {
  color: #28507e;
}

.footer_navi li a span {
  display: none;
}

.footer_navi li .dropdown {
  display: none;
}

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

.column2 .child {
  width: 37%;
}

.column2 .child2 {
  width: 58%;
}

@media all and (max-width: 800px) {
  .column2 .child,
  .column2 .child2 {
    width: 100%;
    border: 0;
  }
  .column2 .child:first-child,
  .column2 .child2:first-child {
    margin-bottom: 20px;
  }
}

.footer-insta a {
  display: block;
  margin: 0 auto;
  text-align: center;
  font-size: 1.8rem;
  color: #002d8f;
}

.footer-insta a:hover {
  color: #28507e;
}

.flogo {
  width: 400px;
  text-align: center;
  margin: 0 auto;
  min-height: 0;
}

.flogo a {
  display: block;
}

@media all and (max-width: 800px) {
  .flogo {
    width: 280px;
  }
}

.address {
  text-align: center;
}

.copyright {
  margin-top: -10px;
  padding: 18px 0;
  background: #001d5c;
  color: #fefefe;
  font-size: 1.2rem;
}

@media all and (max-width: 800px) {
  .copyright {
    padding-bottom: 65px;
  }
}

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

/*----------------------------------
 --top-contents--
----------------------------------*/
.board-box {
  background: #ccc;
  padding: 20px;
}

/* --top-intro--
----------------------------------*/
.top-intro {
  position: relative;
  margin: 6em auto 8em;
}

@media all and (max-width: 639px) {
  .top-intro {
    margin: 3em auto 4em;
  }
}

.top-intro:before {
  right: 5%;
  top: 0%;
  background: url(../img/bg-intro.jpg) no-repeat 10% 100%/cover;
  position: absolute;
  content: "";
  width: 50%;
  height: 100%;
  z-index: -1;
  opacity: 0.8;
}

@media all and (max-width: 1200px) {
  .top-intro:before {
    right: 5%;
  }
}

@media all and (max-width: 800px) {
  .top-intro:before {
    width: 80%;
    right: 0;
  }
}

@media all and (max-width: 639px) {
  .top-intro:before {
    background-size: cover;
    height: 85%;
    width: 90%;
  }
}

.top-intro.concept {
  margin: 6em auto 6em;
}

.top-intro.concept:before {
  left: 15%;
  right: auto;
  background: url(../img/bg-concept.jpg) no-repeat center/cover;
}

@media all and (max-width: 639px) {
  .top-intro.concept:before {
    left: 0;
  }
}

.top-intro.concept .top-box {
  margin: 30px 20px 30px auto;
}

@media all and (max-width: 639px) {
  .top-intro.concept .top-box {
    margin-top: 30px;
  }
}

.top-intro_title {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  position: absolute;
  text-align: left;
  font-size: 6rem;
  line-height: 1.3;
  left: 2%;
  top: 50px;
  font-weight: normal;
  white-space: nowrap;
  z-index: 3;
}

@media all and (max-width: 639px) {
  .top-intro_title {
    -webkit-writing-mode: initial;
        -ms-writing-mode: initial;
            writing-mode: initial;
    font-size: 3rem;
    top: 20px;
    left: 0;
  }
  .top-intro_title:before {
    left: 0;
    top: 50%;
    width: 100px;
    height: 70px;
    margin: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.top-box {
  max-width: 650px;
  background: #FFFFFF;
  padding: 45px 35px;
  position: relative;
  z-index: 5;
  margin: 30px auto 30px 0;
  position: relative;
  line-height: 2.5;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
}

@media all and (max-width: 800px) {
  .top-box {
    max-width: 80%;
    padding: 20px;
  }
}

@media all and (max-width: 639px) {
  .top-box {
    max-width: 90%;
    font-size: 1.1rem;
    margin-top: 30px;
    margin-bottom: 0;
    background: rgba(255, 255, 255, 0.8);
  }
}

.feature-title {
  font-weight: 600;
  font-size: 2.2rem;
  color: #111;
  margin: -30px 0 10px;
  line-height: 1.4;
  padding-left: 10px;
}

.feature-title span {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0;
  font-weight: 200;
  font-size: 5rem;
  color: #002d8f;
  position: relative;
  z-index: 20;
  display: block;
}

@media all and (max-width: 639px) {
  .feature-title {
    font-size: 1.3rem;
  }
  .feature-title span {
    font-size: 3rem;
  }
}

.top-bnr-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
  padding: 0 10px;
}

.top-bnr-list li {
  width: 25%;
}

.top-bnr-list li a {
  display: block;
  width: 100%;
  height: 100%;
}

.top-bnr-list li a:hover img {
  -webkit-transition: 0.3s -webkit-transform ease-in-out;
  transition: 0.3s -webkit-transform ease-in-out;
  transition: 0.3s transform ease-in-out;
  transition: 0.3s transform ease-in-out, 0.3s -webkit-transform ease-in-out;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.top-bnr-list li .top-bnr-img {
  width: 90%;
  height: 250px;
  margin: 0 auto;
  overflow: hidden;
}

.top-bnr-list li .top-bnr-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

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

.top-bnr-list li .top-bnr-title {
  text-align: center;
  margin: -35px auto 20px;
  position: relative;
  z-index: 5;
  width: 70%;
  background: #fefefe;
  padding: 15px;
  -webkit-box-shadow: 0 0 8px rgba(0, 45, 143, 0.2);
          box-shadow: 0 0 8px rgba(0, 45, 143, 0.2);
}

.top-bnr-list li .top-bnr-title .en {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.3;
  display: block;
}

@media all and (max-width: 639px) {
  .top-bnr-list li .top-bnr-title .en {
    font-size: 2.5rem;
  }
}

@media all and (max-width: 639px) {
  .top-bnr-list li {
    width: 90%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto 20px;
  }
}

.top-intro_txt {
  text-align: center;
}

@media all and (max-width: 639px) {
  .top-intro_txt {
    text-align: left;
  }
}

/* --calendar--
----------------------------------*/
.calendar-info {
  text-align: center;
  font-weight: 600;
  color: #fefefe;
  margin-top: 10px;
}

.calendar-info span {
  color: #ffe53b;
}

.calendar_head {
  color: #ffe53b;
}

.calendar-box table {
  width: 100%;
}

.calendar-box table th,
.calendar-box table td {
  width: 14.28%;
  border: 0.9px solid #666;
  font-weight: normal;
  padding: 5px;
  height: 45px;
  font-size: 1.3rem;
}

@media all and (max-width: 639px) {
  .calendar-box table th,
  .calendar-box table td {
    height: 40px;
    font-size: 1.2rem;
  }
}

.calendar-box table th {
  background: #0045dc;
  vertical-align: middle;
}

.calendar-box table td {
  background: #fefefe;
}

.calendar-box th.sun {
  color: #b32a20;
}

.calendar-box th.sat {
  color: #023894;
}

.calendar-box .off {
  background: #ffe53b;
}

.calendar-box .item-td {
  background: #eadc8b;
}

.calendar-box .item-td .days {
  color: #5c4332;
}

.calendar-box .item-td .item {
  display: none;
}

/* --news--
----------------------------------*/
.news-box {
  padding: 15px;
  position: relative;
  z-index: 10;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media all and (max-width: 639px) {
  .news-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: -10px auto 25px;
    width: 90%;
    padding: 10px;
  }
}

.news-title {
  text-align: center;
  font-weight: 200;
  border-right: 1px solid #002d8f;
  padding: 5px 20px;
  color: #333;
}

.news-title span {
  font-size: 4rem;
  display: block;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0;
  font-weight: 200;
  margin-bottom: -5px;
}

@media all and (max-width: 639px) {
  .news-title {
    padding: 5px 10px;
    width: 100%;
    font-size: 1.2rem;
    border-right: 0;
    border-bottom: 1px solid #002d8f;
  }
  .news-title span {
    font-size: 2rem;
  }
}

.news-right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 10px;
  margin-left: 20px;
}

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

.top-blog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 20px;
}

.top-blog li {
  width: 32%;
  margin: 0 1.5% 10px;
  position: relative;
}

.top-blog li > a {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.top-blog li > a:hover ~ .top-blog_img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.top-blog li:nth-child(3n) {
  margin-right: 0;
}

.top-blog .top-blog_img {
  margin-bottom: 10px;
  overflow: hidden;
  height: 180px;
}

.top-blog .top-blog_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  -webkit-transition: -webkit-transform 0.2s ease-in;
  transition: -webkit-transform 0.2s ease-in;
  transition: transform 0.2s ease-in;
  transition: transform 0.2s ease-in, -webkit-transform 0.2s ease-in;
}

.top-blog .top-blog_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.top-blog .top-blog_time {
  background: #002d8f;
  padding: 8px 5px;
  color: #fff;
  width: 25%;
  text-align: center;
  line-height: 1.2;
}

.top-blog .top-blog_time span {
  display: block;
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
}

.top-blog .top-blog_time span.day {
  font-size: 2.5rem;
  font-weight: bold;
}

.top-blog .top-blog_detail {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 10px;
}

.top-blog .top-blog_ttl {
  font-size: 1.7rem;
  font-weight: bold;
}

@media all and (max-width: 800px) {
  .top-blog li {
    width: 49%;
    margin-right: 2%;
  }
  .top-blog li:nth-child(3n) {
    margin-right: 2%;
  }
  .top-blog li:nth-child(2n) {
    margin-right: 0;
  }
}

@media all and (max-width: 639px) {
  .top-blog li {
    width: 85%;
    margin: 0 auto 20px;
  }
  .top-blog li:nth-child(2n), .top-blog li:nth-child(3n) {
    margin-right: auto;
  }
  .top-blog .top-blog_time span {
    font-size: 1.1rem;
  }
  .top-blog .top-blog_time span.day {
    font-size: 1.8rem;
  }
  .top-blog .top-blog_ttl {
    font-size: 1.3rem;
  }
}

/*----------------------------------
 --others--
----------------------------------*/
.greet-txt {
  letter-spacing: 0;
  line-height: 2;
  padding: 15px;
  font-weight: normal;
}

.img-gray {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: -webkit-filter 0.2s ease-in;
  transition: -webkit-filter 0.2s ease-in;
  transition: filter 0.2s ease-in;
  transition: filter 0.2s ease-in, -webkit-filter 0.2s ease-in;
}

.img-gray:hover {
  -webkit-filter: grayscale(0);
  -moz-filter: grayscale(0);
  -ms-filter: grayscale(0);
  -o-filter: grayscale(0);
  filter: grayscale(0);
}

.staff-name {
  border-bottom: 1px solid #555;
  color: #232323;
  padding: 5px 5px 5px 10px;
  margin-bottom: 10px;
  font-size: 2.6rem;
  font-weight: 300;
  letter-spacing: 0.3rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
}

.staff-name span {
  font-size: 1.4rem;
  color: #555;
}

.staff-name span.upper {
  font-family: "Oswald", sans-serif;
  font-size: 4rem;
  display: block;
  color: #ccc;
  font-weight: 200;
  letter-spacing: initial;
}

@media all and (max-width: 639px) {
  .staff-name {
    font-size: 1.8rem;
  }
  .staff-name span {
    letter-spacing: .1rem;
    font-size: 1.2rem;
  }
  .staff-name span.upper {
    font-size: 2rem;
  }
}

.article {
  position: relative;
  padding: 100px 0;
}

.article .article-img {
  width: 70%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
}

.article .article-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

.article .article-txt {
  background: #fefefe;
  padding: 30px 20px;
  width: 50%;
  position: relative;
  font-weight: 600;
  margin-left: auto;
  z-index: 2;
}

@media all and (max-width: 639px) {
  .article {
    padding: 0;
  }
  .article .article-img {
    position: static;
    width: 100%;
    height: auto;
  }
  .article .article-txt {
    width: 100%;
  }
}

/* contents
----------------------------------*/
.single {
  max-width: 1200px;
  margin: 0 auto;
  padding: 90px 0;
  position: relative;
}

@media all and (max-width: 1200px) {
  .single {
    width: 94%;
  }
}

.single02 {
  margin: 0 auto;
  padding: 80px 0;
}

.single03 {
  max-width: 1500px;
  margin: 0 auto;
  padding: 80px 0;
  position: relative;
}

.margin-top {
  margin-top: -80px;
}

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

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

.lsingle {
  float: left;
}

.rsingle {
  float: right;
}

.mbox {
  background: #fefefe;
  padding: 40px 30px;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  margin-right: auto;
}

.mbox.transparent {
  background: none;
}

@media all and (max-width: 639px) {
  .mbox {
    padding: 20px 15px;
  }
}

.mbox.bd {
  border: 1px solid #002d8f;
}

.mbox2 {
  background: rgba(0, 45, 143, 0.2);
  margin-right: auto;
  margin-left: auto;
  padding: 30px;
}

@media all and (max-width: 639px) {
  .mbox2 {
    padding: 15px;
  }
}

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

.container-box {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}

.bg-grid {
  background: rgba(255, 255, 255, 0.9);
  /* border-top: 1px solid #555;
  border-bottom: 1px solid #555;*/
  background-image: -webkit-gradient(linear, left top, right top, color-stop(95%, transparent), color-stop(50%, rgba(204, 204, 204, 0.2)), to(rgba(204, 204, 204, 0.2))), -webkit-gradient(linear, left bottom, left top, color-stop(95%, transparent), color-stop(50%, rgba(204, 204, 204, 0.2)), to(rgba(204, 204, 204, 0.2)));
  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-fixed {
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
}

@media all and (max-width: 1200px) {
  .bg-fixed {
    background-attachment: scroll;
    height: 270px;
  }
}

.bg-fixed.fixed01 {
  background-image: url(../img/fixed01.jpg);
  background-position: center;
}

.bg-fixed.fixed02 {
  background-image: url(../img/fixed02.jpg);
  background-position: center;
}

.bg-map {
  background: url(../img/map.png) no-repeat right bottom;
}

@media all and (max-width: 639px) {
  .bg-map {
    background-size: auto 200px;
    background-position: right top;
  }
}

#main {
  float: left;
  width: 76%;
}

@media all and (max-width: 800px) {
  #main {
    float: none;
    width: 100%;
  }
}

#side {
  float: right;
  position: -webkit-sticky;
  position: sticky;
  right: 0;
  top: 0;
  width: 21%;
  padding-right: 10px;
}

@media all and (max-width: 800px) {
  #side {
    float: none;
    width: 100%;
    position: static;
    margin-top: 40px;
  }
}

/* 2column */
#col2-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.col2-main {
  width: 78%;
}

@media all and (max-width: 800px) {
  .col2-main {
    width: 100%;
    margin: 0 auto;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.col2-side {
  width: 20%;
  padding: 120px 0 0;
  height: 100%;
}

@media all and (max-width: 800px) {
  .col2-side {
    width: 95%;
    margin: 0 auto 20px;
    padding-top: 30px;
  }
}

.widget {
  margin-bottom: 20px;
}

.widget:last-child {
  margin-bottom: 0;
}

.widget--sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 20px;
}

/* mtitle
----------------------------------*/
.mtitle {
  line-height: 1.5;
  font-weight: normal;
  margin-bottom: 48px;
  font-size: 1.5rem;
  position: relative;
  text-align: center;
  letter-spacing: 0.2rem;
  font-family: "Noto Sans JP", sans-serif;
}

.mtitle span {
  display: block;
  font-size: 4rem;
  color: #002d8f;
  line-height: 2;
  font-weight: 300;
  letter-spacing: .5rem;
  font-family: "Noto Sans JP", sans-serif;
}

.mtitle span.en {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0;
  font-weight: 200;
}

.mtitle span:after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: 30px;
  height: 1px;
  width: 60px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: -webkit-gradient(linear, left top, right top, from(#002d8f), to(#28507e));
  background-image: linear-gradient(to right, #002d8f, #28507e);
}

.mtitle.white {
  color: #fff;
}

.mtitle.white:after {
  background-image: -webkit-gradient(linear, left top, right top, from(#ddd), to(#fefefe));
  background-image: linear-gradient(to right, #ddd, #fefefe);
}

.mtitle.white span {
  color: #fefefe;
}

.mtitle.center {
  text-align: center;
}

.mtitle.mtitle_left {
  text-align: left;
}

.mtitle.mtitle_left span:after {
  left: 0;
  -webkit-transform: inherit;
          transform: inherit;
}

@media all and (max-width: 639px) {
  .mtitle {
    font-size: 1.3rem;
    text-align: center;
  }
  .mtitle span {
    font-size: 3rem;
    margin-bottom: 0px;
  }
}

.mtitle1 {
  font-weight: 600;
  margin: 0 auto 40px;
  text-align: center;
}

.mtitle1 .eng {
  font-size: 3.5rem;
  color: #002d8f;
  position: relative;
  display: block;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0;
  font-weight: 200;
}

.mtitle1 .ja {
  font-size: 1.6rem;
  color: #232323;
}

.mtitle1.white {
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}

.mtitle1.white span {
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}

.mtitle1.white span:after {
  background-color: #eee;
}

.mtitle1.white span.ja {
  border-bottom-color: #fefefe;
}

.mtitle1.black {
  color: #333;
}

.mtitle1.black span {
  color: #555;
}

.mtitle1.black span:after {
  background-color: #555;
}

.mtitle1.mtitle_left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.mtitle1.mtitle_left span:after {
  left: 0;
  -webkit-transform: none;
          transform: none;
}

@media all and (max-width: 639px) {
  .mtitle1 {
    text-align: center;
  }
  .mtitle1 .eng {
    font-size: 2.2rem;
  }
  .mtitle1 .ja {
    font-size: 1.3rem;
  }
}

.mtitle2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #222;
  border-bottom: 1px solid;
  -o-border-image: linear-gradient(to right, #001d5c 0%, #E8E8E8 100%);
     border-image: -webkit-gradient(linear, left top, right top, from(#001d5c), to(#E8E8E8));
     border-image: linear-gradient(to right, #001d5c 0%, #E8E8E8 100%);
  border-image-slice: 1;
  line-height: 1.3;
  font-weight: 300;
}

.mtitle2 .en {
  font-size: 3rem;
  letter-spacing: 0.1rem;
  margin-right: 15px;
  color: #002d8f;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
}

.mtitle2 .small {
  font-size: .9em;
  color: #28507e;
  padding-left: 10px;
}

@media all and (max-width: 639px) {
  .mtitle2 {
    font-size: 1.3rem;
    padding-bottom: 5px;
  }
  .mtitle2 .en {
    font-size: 2.2em;
    display: block;
  }
}

.mtitle2.white {
  color: #fefefe;
}

.mtitle2.white span {
  color: #004df5;
}

.mtitle3 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #b32a20;
  margin-bottom: 40px;
}

.mtitle3 span {
  display: block;
  color: #5c4332;
  font-size: 1.4rem;
  margin-top: 4px;
}

@media all and (max-width: 800px) {
  .mtitle3 {
    font-size: 1.5rem;
  }
  .mtitle3 span {
    font-size: 13px;
  }
}

.mtitle-bll {
  font-size: 1.8rem;
  font-weight: 400;
  border-bottom: 1px solid #CFCFCF;
  position: relative;
  padding-bottom: 5px;
  margin-bottom: 10px;
  line-height: 1.5;
  color: #001d5c;
}

.mtitle-bll:after {
  position: absolute;
  content: "";
  display: block;
  bottom: -1px;
  width: 100px;
  height: 1px;
  left: 0;
  background: #002d8f;
}

@media all and (max-width: 639px) {
  .mtitle-bll {
    font-size: 1.4rem;
  }
}

.mtitle4 {
  text-align: center;
  font-size: 1.7rem;
  line-height: 1.5;
  letter-spacing: 0.1rem;
  font-weight: 400;
  color: #F08200;
}

.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: 3rem;
  background-color: #F08200;
}

.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: #ffe53b;
}

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

@media all and (max-width: 320px) {
  .mtitle4 span:before {
    left: -3px;
  }
  .mtitle4 span:after {
    right: -3px;
  }
}

.mtitle5 {
  margin: -74px -30px 40px;
  text-align: center;
  position: relative;
}

.mtitle5:before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  width: 100%;
  height: 3px;
  z-index: 1;
  background: #269892;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.mtitle5 span {
  display: inline-block;
  padding: 8px 15px;
  background: #269892;
  font-size: 3.5rem;
  color: #fff;
  position: relative;
  z-index: 2;
}

@media all and (max-width: 639px) {
  .mtitle5 {
    margin: -42px -15px 30px;
  }
  .mtitle5 span {
    font-size: 1.7rem;
    line-height: 1.4;
  }
}

.mtitle_sub {
  padding-left: 0.5em;
  font-weight: 700;
  line-height: 1.3;
  position: relative;
  border-left: 6px solid #28507e;
  margin: 8px 0 10px;
  font-size: 1.6rem;
}

.mtitle_sub:before {
  position: absolute;
  left: -6px;
  bottom: 0;
  content: "";
  width: 6px;
  height: 50%;
  background-color: #002d8f;
}

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

.mtitle_box {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 45, 143, 0.2)), to(#002d8f));
  background-image: linear-gradient(to left, rgba(0, 45, 143, 0.2), #002d8f);
  color: #fff;
  font-size: 2rem;
  position: relative;
  padding: 5px 10px;
  margin-bottom: 20px;
  font-weight: 500;
  /*
 &:before {
  position: absolute;
  @include awesome(\f100);
  display: block;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
 }*/
}

.mtitle_box span {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0;
  font-weight: 200;
  font-size: 1.5rem;
  padding-right: 10px;
  color: #555;
}

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

.mtitle_box2 {
  background: #023894;
  font-size: 2.2rem;
  color: #fff;
  position: relative;
  font-weight: bold;
  letter-spacing: 0.1rem;
  padding: 15px 10px 15px 20px;
  margin-bottom: 25px;
}

.mtitle_box2 span {
  position: absolute;
  font-size: 5rem;
  opacity: 0.5;
  left: 0;
  top: -75px;
  color: #555;
  letter-spacing: 0.2rem;
}

.mtitle_box2 .small-cap {
  font-weight: normal;
  font-size: 14px;
}

@media all 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: 3rem;
    top: -40px;
    opacity: 0.3;
  }
}

.mtext1 {
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1.5;
}

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

.mtext2 {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  line-height: 1.4;
}

.mtext2 span {
  display: block;
  font-size: 1.7rem;
}

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

.mtitle_category {
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: normal;
}

.mtitle_category:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0ca";
  font-weight: bold;
  margin-right: 5px;
  color: #002d8f;
}

.mtitle_bll {
  font-size: 2.5rem;
  color: #002d8f;
  margin: 20px 0;
  font-weight: bold;
}

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

.mtitle_bll span {
  font-size: 1.8rem;
  background: #002d8f;
  color: #fff;
  padding: 10px 5px;
  margin-right: 5px;
}

@media all and (max-width: 639px) {
  .mtitle_bll span {
    padding: 5px;
    font-size: 1.3rem;
    display: block;
  }
}

/* btn
----------------------------------*/
.btn01 a {
  background: #28507e;
  text-align: center;
  width: 300px;
  margin: 20px auto;
  color: #fefefe;
  display: block;
  padding: 8px 5px;
  font-weight: bold;
  border-radius: 35px;
}

.btn01 a:hover {
  background: #002d8f;
  color: #fff;
}

@media all and (max-width: 639px) {
  .btn01 a {
    width: 95%;
  }
}

.btn01.type1 a {
  margin: 20px 0;
}

.btn02 {
  width: 350px;
  margin: 20px auto 20px;
}

.btn02 a {
  display: block;
  position: relative;
  padding: 15px 0;
  background-color: #002d8f;
  line-height: 24px;
  letter-spacing: 0.1rem;
  font-size: 1.6rem;
  text-align: center;
  color: #ffffff;
}

.btn02 a i {
  display: block;
  position: absolute;
  top: 50%;
  right: -10px;
  width: 50px;
  height: 1px;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn02 a:hover i {
  width: 34px;
}

@media all and (max-width: 639px) {
  .btn02 {
    width: 280px;
  }
  .btn02 a {
    font-size: 1.2rem;
  }
}

.btn-img01 {
  margin: 15px auto;
  text-align: center;
}

/* news
----------------------------------*/
.news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.news dt {
  width: 7em;
  padding: 5px;
  text-align: center;
  color: #fff;
  font-weight: 600;
}

.news dd {
  padding: 5px;
  background: #fff;
  width: calc(100% - 8em);
  margin-left: 10px;
  line-height: 1.6;
}

.news dd a {
  color: #333;
}

.news dt:not(:last-of-type),
.news dd:not(:last-of-type) {
  margin-bottom: 5px;
}

.news-bl {
  overflow: hidden;
}

.news-bl dt {
  float: left;
  width: 8em;
  padding: 5px;
  line-height: 1.3;
  color: #002d8f;
  text-align: center;
  border: 1px solid #002d8f;
  border-radius: 30px;
  font-size: 1.3rem;
}

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

.news-bl dd {
  padding: 0 0 12px 9.2em;
  line-height: 1.6;
  border-bottom: 1px dotted #dddddd;
  margin: 0 0 10px;
}

.news-bl dd a {
  color: #333;
  background-image: -webkit-gradient(linear, left top, right top, from(#002d8f), to(#28507e));
  background-image: linear-gradient(to right, #002d8f, #28507e);
  padding-bottom: 0.25em;
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  -webkit-transition: background-size 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  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;
}

.news-bl dd:last-child {
  margin: 0;
  border-bottom: none;
}

@media all and (max-width: 639px) {
  .news-bl dt {
    float: none;
  }
  .news-bl dd {
    padding: 8px 5px;
  }
}

/* page-title
----------------------------------*/
.page-title {
  position: relative;
  z-index: 1;
  background: url(../img/2.jpg) no-repeat center 95%/cover;
}

.page-title:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #555657;
  opacity: 0.7;
}

.page-title .inner {
  margin: 0 auto;
  height: 250px;
  max-width: 1200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.page-title .page-lead {
  padding: 20px 0 0;
}

.page-title .page-lead .mtitle {
  color: #fefefe;
  text-align: left;
  font-size: 1.5rem;
  letter-spacing: .5rem;
  margin-bottom: 0;
}

.page-title .page-lead .mtitle span {
  color: #fff;
  font-size: 3rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.page-title .page-lead .mtitle span:after {
  display: none;
}

@media all and (max-width: 800px) {
  .page-title {
    background-attachment: scroll;
  }
  .page-title .inner {
    width: 99%;
    height: auto;
    padding: 40px 0;
    margin-bottom: 20px;
  }
  .page-title .page-lead {
    width: 90%;
    padding: 0;
  }
}

@media all and (max-width: 639px) {
  .page-title {
    margin-top: 10px;
  }
  .page-title .page-lead {
    padding: 5px 0 0 10px;
  }
  .page-title .page-lead .mtitle {
    font-size: 1.2rem;
  }
  .page-title .page-lead .mtitle span {
    font-size: 2rem;
    letter-spacing: 0;
    margin-bottom: -15px;
    line-height: 2.5;
  }
}

.bg-01 {
  position: relative;
  background: #002d8f;
}

.bg-01:before {
  position: absolute;
  content: "";
  width: 110%;
  height: 170px;
  left: 50%;
  bottom: 5px;
  background: #002d8f;
  -webkit-transform: rotate(-4deg) translateX(-50%);
          transform: rotate(-4deg) translateX(-50%);
}

@media all and (max-width: 639px) {
  .bg-01:before {
    bottom: 0;
  }
}

.bg-02 {
  background: url(../img/grid2.png);
}

.bg-03 {
  background: url(../img/bg01.jpg);
}

.bg-sec2 {
  position: relative;
  padding: 40px 0;
}

.bg-sec2:before {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  background: url(../img/bg01.jpg) no-repeat center bottom/cover;
  background-attachment: fixed;
}

@media all and (max-width: 1200px) {
  .bg-sec2:before {
    top: 0;
    background-attachment: initial;
  }
}

.bg-sec2.p02:before {
  background: url(../img/bg02.jpg) no-repeat center bottom/cover;
}

.bg-gradient {
  background-image: -webkit-gradient(linear, left top, right top, from(#fff0ce), to(#fcfcfc));
  background-image: linear-gradient(to right, #fff0ce 0%, #fcfcfc 100%);
}

.bg-contents {
  position: relative;
}

.bg-contents:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 300px;
  z-index: -1;
  background: #28507e;
  opacity: 0.8;
}

@media all and (max-width: 800px) {
  .bg-contents:before {
    height: 78%;
    opacity: 0.5;
    bottom: 2%;
  }
}

.bg-maru1 {
  background: #002d8f;
  max-width: calc(100% - 150px);
  margin-left: auto;
  margin-right: auto;
  margin: 50px auto;
  border-radius: 20px;
}

@media all and (max-width: 800px) {
  .bg-maru1 {
    max-width: calc(100% - 20px);
  }
}

@media all and (max-width: 639px) {
  .bg-maru1 {
    border-radius: 10px;
  }
}

.bg-maru2 {
  position: relative;
  margin: 50px auto;
}

.bg-maru2:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 0;
  width: calc(100% - 60px);
  height: 100%;
  z-index: -1;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #e4e4e4;
  opacity: 0.5;
}

@media all and (max-width: 639px) {
  .bg-maru2:before {
    width: 100%;
  }
}

.bg-base {
  position: relative;
  margin: 50px auto;
}

.bg-base:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 0;
  width: calc(100% - 40px);
  height: 100%;
  z-index: -1;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: rgba(0, 45, 143, 0.1);
  border-radius: 10px;
}

@media all and (max-width: 639px) {
  .bg-base:before {
    width: 100%;
  }
}

.bg-blue {
  background: #023894;
}

.bg-gray {
  position: relative;
  background: #e4e4e4;
}

.bg-base2 {
  background: rgba(0, 45, 143, 0.2);
}

.bg-beige {
  background: rgba(255, 246, 226, 0.8);
}

.bg-beige2 {
  background: rgba(255, 246, 226, 0.8);
  max-width: calc(100% - 150px);
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
  margin-bottom: 50px;
}

@media all and (max-width: 800px) {
  .bg-beige2 {
    max-width: calc(100% - 20px);
  }
}

@media all and (max-width: 639px) {
  .bg-beige2 {
    border-radius: 10px;
  }
}

/* tbl
----------------------------------*/
.tbl {
  width: 100%;
  margin: 0px 0;
  line-height: 2rem;
  letter-spacing: .15rem;
}

.tbl th,
.tbl td {
  padding: 10px;
  vertical-align: middle;
  border: 1px solid #28507e;
  font-weight: 300;
  font-size: 1.5rem;
}

.tbl th {
  background: rgba(0, 45, 143, 0.1);
  text-align: left;
}

.tbl th span {
  font-size: 1.4rem;
}

.tbl th.th-1 {
  width: 25%;
}

.tbl th.cell02 {
  width: 20%;
}

.tbl th.cell03 {
  width: 22.5%;
}

.tbl img {
  width: 300px;
  margin: 0 auto;
}

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

@media all and (max-width: 639px) {
  .tbl {
    font-size: 1.1rem;
  }
  .tbl th,
  .tbl td {
    padding: 5px;
    font-size: 1.1rem;
  }
  .tbl th.th-1 {
    width: 35%;
  }
}

.tbl .cell01 {
  width: 45%;
}

.tbl .cell02 {
  width: 25%;
}

.tbl-border {
  width: 100%;
}

.tbl-border tr:first-of-type th,
.tbl-border tr:first-of-type td {
  border-top: 1px solid #002d8f;
}

.tbl-border th,
.tbl-border td {
  padding: 15px;
  vertical-align: middle;
  border-bottom: 1px solid #002d8f;
  font-weight: 300;
}

.tbl-border th {
  width: 28%;
  color: #002d8f;
  font-weight: bold;
}

@media all and (max-width: 639px) {
  .tbl-border th {
    width: 30%;
  }
}

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

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

.company th {
  width: 25%;
  position: relative;
  background: #002d8f;
  color: #fff;
  font-weight: 400;
}

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

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

.tbl0 {
  width: 100%;
}

.tbl0 th,
.tbl0 td {
  padding: 3px 5px;
  border: 0;
  border-bottom: 1px dashed #ddd;
}

.tbl0 th {
  padding-left: 0;
  background: none;
  text-align: left;
  width: 35%;
  color: #111;
}

.tbl0 th:after, .tbl0 th:before {
  display: none;
}

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

.tbl1 {
  width: 70%;
  margin: 10px auto;
  line-height: 2rem;
  letter-spacing: .15rem;
}

.tbl1 th,
.tbl1 td {
  padding: 5px;
  border: 1px solid #28507e;
  font-weight: 300;
  font-size: 1.3rem;
}

.tbl1 th {
  background: rgba(40, 80, 126, 0.3);
  text-align: center;
}

.tbl1 th.am {
  width: 20%;
}

.tbl1 th span {
  font-size: 1.4rem;
}

.tbl1 td {
  background: #fff;
  text-align: center;
}

@media all and (max-width: 639px) {
  .tbl1 {
    font-size: 1.1rem;
    width: 100%;
  }
  .tbl1 th,
  .tbl1 td {
    padding: 5px;
    font-size: 1.1rem;
  }
  .tbl1 th.am {
    width: 40%;
  }
}

/* map / video
----------------------------------*/
.ggmap {
  position: relative;
  padding-bottom: 46.25%;
  height: 0;
  overflow: hidden;
}

.ggmap iframe,
.ggmap object,
.ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ggmap.min {
  padding-bottom: 25.25%;
}

@media all and (max-width: 800px) {
  .ggmap.min {
    padding-bottom: 46.25%;
  }
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin-bottom: 10px;
}

.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/* list
----------------------------------*/
.list_common li {
  padding-bottom: 5px;
  padding-left: 1rem;
  margin-bottom: 8px;
  border-bottom: 1px dotted #cccccc;
}

.list_common li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.list_common li .check_num {
  width: 30px;
  height: 30px;
  background: #002d8f;
  color: #fff;
  border-radius: 100px;
  line-height: 30px;
  text-align: center;
  font-weight: bold;
  display: inline-block;
  margin-right: 10px;
}

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

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

.list_check li:not(:last-child) {
  margin-bottom: 5px;
  border-bottom: 1px dashed rgba(0, 45, 143, 0.6);
}

.list_check li:before {
  content: "◆";
  margin-right: 5px;
  color: #000d29;
}

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

.list_check2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 10px;
  background: #fefefe;
}

.list_check2 li {
  width: 48%;
  padding: 5px;
  margin-bottom: 5px;
  margin-right: 4%;
}

.list_check2 li:nth-child(2n) {
  margin-right: 0;
}

@media all and (max-width: 639px) {
  .list_check2 li:nth-child(2n) {
    margin-right: auto;
  }
}

.list_check2 li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f058";
  font-weight: bold;
  margin-right: 10px;
  color: #002d8f;
}

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

.ol-list {
  counter-reset: number;
  /* 名前を付けたカウンターをリセット */
  list-style: none;
  /* olが数字を付けることをキャンセル */
  padding: 20px;
}

.ol-list > li {
  line-height: 2;
  margin-bottom: 10px;
  padding: 5px 0 8px;
  padding-left: 50px;
  font-weight: bold;
  position: relative;
  line-height: 1.6;
  font-weight: normal;
  font-size: 1.8rem;
}

.ol-list > li .small {
  font-weight: normal;
  display: block;
  padding: 10px;
  line-height: 1.6;
  font-size: initial;
}

.ol-list > li:before {
  counter-increment: number;
  content: counter(number);
  background: #002d8f;
  position: absolute;
  width: 2em;
  height: 2em;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  line-height: 2em;
  color: #fefefe;
  left: 0;
  top: 0px;
  border-radius: 100%;
}

@media all 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-type1 li {
  display: inline-block;
  padding: 5px 10px;
  margin-right: 10px;
  background: #002d8f;
  color: #fefefe;
  font-weight: 400;
  letter-spacing: 0.2rem;
  margin-bottom: 10px;
  width: 48.5%;
}

@media all and (max-width: 639px) {
  .list-type1 li {
    width: 100%;
    font-size: 1.2rem;
    letter-spacing: .1rem;
  }
}

.list-type1 li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: bold;
  margin-right: 5px;
  color: #fefefe;
}

.list-type1.hull li {
  width: 100%;
}

/* blog
----------------------------------*/
.blog-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto;
}

.blog-wrap * {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.blog-wrap > li {
  width: 24%;
  margin: 0 0.5% 3%;
  background: #fefefe;
  position: relative;
}

@media all and (max-width: 1200px) {
  .blog-wrap > li {
    width: 32%;
  }
}

@media all and (max-width: 800px) {
  .blog-wrap > li {
    width: 48%;
    margin: 0 1% 3%;
  }
}

.blog-wrap > li > a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.blog-wrap > li > a:hover ~ .blog-img img {
  opacity: 1;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

@media all and (max-width: 639px) {
  .blog-wrap > li {
    width: 80%;
    margin: 0 auto 3%;
  }
}

.blog-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.blog-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-family: "object-fit: cover;";
  /*IE対策*/
}

.blog-img:hover img {
  opacity: 1 !important;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.blog-date {
  color: #28507e;
  display: block;
  font-size: 0.9em;
  font-weight: 600;
}

.blog-date:before {
  font-family: "Font Awesome 5 Free";
  content: "\f017";
  font-weight: bold;
  margin-right: 5px;
}

.blog-date2 {
  color: #001543;
  font-size: 0.9em;
  margin-bottom: 5px;
  margin-right: 5px;
}

.blog-date2:before {
  font-family: "Font Awesome 5 Free";
  content: "\f017";
  margin-right: 5px;
}

.blog-detail {
  padding: 10px;
}

@media all and (max-width: 639px) {
  .blog-detail {
    padding: 10px;
  }
}

.blog-title {
  font-weight: bold;
  margin-bottom: 5px;
  color: #333;
  line-height: 1.5;
}

.blog-txt {
  font-size: 14px;
  line-height: 1.5;
  color: #555;
}

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

.pages {
  text-align: center;
  margin-top: 30px;
}

.pages .page_next,
.pages .page_prev {
  display: inline;
  margin: 0 20px;
}

.pages .page_next a,
.pages .page_prev a {
  color: #000d29;
  padding: 3px 5px;
  background: #fff;
}

.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: "FontAwesome";
  content: "\f0a9";
  margin-right: 5px;
}

.category_nav li a:hover {
  background: #e4e4e4;
}

.category_nav li:last-child a {
  border-bottom: none;
}

.blog_side_list {
  position: relative;
  margin: 0 0 16px !important;
  padding: 0 !important;
  width: 100% !important;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.blog_side_list .blog_bx {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  width: calc(100% - 16px) !important;
  font-size: 12px;
  margin: 5px;
  position: relative;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  background-color: #FFFFFF;
  border-bottom: 1px solid #002d8f;
  padding: 10px;
}

.blog_side_list .blog_bx:nth-child(2) {
  margin-right: 0px;
}

@media all and (max-width: 639px) {
  .blog_side_list .blog_bx {
    width: 100% !important;
    margin-right: 0px;
  }
  .blog_side_list .blog_bx:nth-child(2) {
    margin-right: 0px;
  }
}

.blog_side_list .blog_bx a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

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

.blog_side_list .blog_bx .blog_bx_flex div {
  width: calc(100% - 120px);
  padding: 0;
}

.blog_side_list .blog_bx:hover {
  background: rgba(0, 45, 143, 0.1);
}

.blog_side_list .blog_bx figcaption {
  width: 100px;
  height: 100px;
  display: block;
  text-align: center;
  background-position: center center;
  background-repeat: no-repeat;
  float: left;
  margin-bottom: 0px;
  -webkit-box-shadow: rgba(17, 17, 17, 0.1) 0 0 1px 1px;
          box-shadow: rgba(17, 17, 17, 0.1) 0 0 1px 1px;
}

.blog_side_list .blog_bx * {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.blog_side_list .blog_bx img {
  vertical-align: middle;
  height: 100px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

.blog_side_list .blog_bx:hover img {
  opacity: 1 !important;
}

.blog_side_list .blog_bx .ttl {
  font-weight: bold;
  font-size: 1.2rem;
  color: #002d8f;
  float: none;
  background: #fff;
  padding: 0 0px;
  border-bottom: 1px dashed #002d8f;
}

.blog_side_list .blog_bx .ttm {
  float: none;
  padding-top: 0px;
  font-size: 1.2rem;
  color: #888;
  font-weight: normal;
}

.blog_side_list .blog_bx .ttm:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f017";
  margin-right: 5px;
  font-weight: normal;
}

.blog_side_list .blog_bx .blog_ttl {
  clear: both;
  font-weight: bold;
  color: #002d8f;
  font-size: 1.5rem;
  margin-bottom: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.blog_side_list.list .ttl {
  display: none;
}

.blog_top_list {
  position: relative;
  margin: 0 0px 16px 0 !important;
  padding: 0 !important;
  width: 100% !important;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.blog_top_list:after {
  content: "";
  display: block;
  width: 31%;
}

.blog_top_list .blog_bx {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  width: calc(33.33% - 16px) !important;
  font-size: 12px;
  margin: 0 0 25px;
  position: relative;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  background-color: #FFFFFF;
  border: 1px solid #002d8f;
  padding: 10px;
  /**/
}

.blog_top_list .blog_bx:nth-child(3) {
  margin-right: 0px;
}

.blog_top_list .blog_bx a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.blog_top_list .blog_bx .blog_bx_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #fff;
}

.blog_top_list .blog_bx .blog_bx_flex div {
  width: 95%;
  padding: 5px;
  background: #002d8f;
  position: absolute;
  bottom: 5px;
  left: 30px;
}

.blog_top_list .blog_bx:hover {
  -webkit-transform: translateY(-16px);
          transform: translateY(-16px);
  -webkit-box-shadow: 3px 3px 10px #9E9E9E;
          box-shadow: 3px 3px 10px #9E9E9E;
}

.blog_top_list .blog_bx figcaption {
  display: block;
  text-align: center;
  width: 100%;
  height: 230px;
  overflow: hidden;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  float: none;
}

.blog_top_list .blog_bx * {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.blog_top_list .blog_bx p {
  line-height: 1.6em;
  font-size: 13px;
}

.blog_top_list .blog_bx img {
  vertical-align: middle;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

.blog_top_list .blog_bx:hover img {
  opacity: 1 !important;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.blog_top_list .blog_bx .ttl {
  font-weight: bold;
  font-size: 12px;
  color: #fff;
  float: left;
  background: #002d8f;
  padding: 0 15px;
  margin-bottom: 5px;
}

.blog_top_list .blog_bx .ttm {
  padding-top: 0px;
  font-size: 12px;
  font-weight: normal;
  color: #fff;
  border-bottom: 1px solid #fff;
  /*&:before {
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        content: "\f017";
        margin: 0 5px;
        font-weight: normal;
      }*/
}

.blog_top_list .blog_bx .blog_ttl {
  clear: both;
  font-weight: bold;
  font-size: 1.6rem;
  color: #fff;
}

.blog_top_list .blog_bx .blog_text {
  margin-top: 5px;
}

@media (max-width: 960px) {
  .blog_top_list {
    position: relative;
    margin: 0 0 16px !important;
    padding: 0 !important;
    width: 100% !important;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .blog_top_list .blog_bx {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    width: calc(100% - 16px) !important;
    font-size: 12px;
    margin: 5px;
    position: relative;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    background-color: #FFFFFF;
    border-bottom: 1px solid #002d8f;
    padding: 10px;
  }
  .blog_top_list .blog_bx:nth-child(2) {
    margin-right: 0px;
  }
}

@media all and (max-width: 960px) and (max-width: 639px) {
  .blog_top_list .blog_bx {
    width: 100% !important;
    margin-right: 0px;
  }
  .blog_top_list .blog_bx:nth-child(2) {
    margin-right: 0px;
  }
}

@media (max-width: 960px) {
  .blog_top_list .blog_bx a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
  }
  .blog_top_list .blog_bx .blog_bx_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .blog_top_list .blog_bx .blog_bx_flex div {
    width: calc(100% - 120px);
    padding: 0;
  }
  .blog_top_list .blog_bx:hover {
    background: rgba(0, 45, 143, 0.1);
  }
  .blog_top_list .blog_bx figcaption {
    width: 100px;
    height: 100px;
    display: block;
    text-align: center;
    background-position: center center;
    background-repeat: no-repeat;
    float: left;
    margin-bottom: 0px;
    -webkit-box-shadow: rgba(17, 17, 17, 0.1) 0 0 1px 1px;
            box-shadow: rgba(17, 17, 17, 0.1) 0 0 1px 1px;
  }
  .blog_top_list .blog_bx * {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .blog_top_list .blog_bx img {
    vertical-align: middle;
    height: 100px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    font-family: "object-fit: cover;";
  }
  .blog_top_list .blog_bx:hover img {
    opacity: 1 !important;
  }
  .blog_top_list .blog_bx .ttl {
    font-weight: bold;
    font-size: 1.2rem;
    color: #002d8f;
    float: none;
    background: #fff;
    padding: 0 0px;
    border-bottom: 1px dashed #002d8f;
  }
  .blog_top_list .blog_bx .ttm {
    float: none;
    padding-top: 0px;
    font-size: 1.2rem;
    color: #888;
    font-weight: normal;
  }
  .blog_top_list .blog_bx .ttm:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f017";
    margin-right: 5px;
    font-weight: normal;
  }
  .blog_top_list .blog_bx .blog_ttl {
    clear: both;
    font-weight: bold;
    color: #002d8f;
    font-size: 1.5rem;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .blog_top_list .blog_bx {
    width: 100%;
  }
  .blog_top_list .blog_bx figcaption {
    border-radius: 0;
  }
  .blog_top_list .blog_bx .blog_bx_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background: #fff;
  }
  .blog_top_list .blog_bx .blog_bx_flex div {
    width: 65%;
    padding: 5px;
    background: #FFFFFF;
    position: relative;
    bottom: 0;
    left: 0;
  }
  .blog_top_list .blog_bx .ttm {
    padding-top: 0px;
    font-size: 12px;
    font-weight: normal;
    color: #002d8f;
    border-bottom: 1px solid #002d8f;
  }
  .blog_top_list .blog_bx .ttm:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f017";
    margin: 0 5px;
    font-weight: normal;
  }
}

/* etc
----------------------------------*/
.cut {
  overflow: hidden;
  zoom: 1;
}

.w300 {
  width: 300px;
}

.spbr {
  display: none;
}

.br_tablet {
  display: none;
}

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

.round-box {
  border-radius: 20px;
  overflow: hidden;
}

.color1 {
  color: #000d29;
}

.color2 {
  color: #28507e;
}

.color3 {
  color: #5c4332;
}

.num {
  text-align: center;
}

.num a {
  color: #023894;
  font-weight: bold;
  font-size: 3.5rem;
}

.num a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f095";
  font-weight: bold;
  margin-right: 5px;
}

.num a:hover {
  color: #28507e;
}

@media all and (max-width: 639px) {
  .num a {
    font-size: 2.4rem;
  }
}

.telbox {
  max-width: 700px;
  margin: 0 auto 20px;
  padding: 20px;
  background: #eee;
}

.telbox .inner {
  background: #fff;
  padding: 10px;
}

/* breadcrumb
----------------------------------*/
.breadcrumb {
  max-width: 1200px;
  margin: 20px auto 20px;
  font-size: 1.2rem;
  font-weight: 400;
}

.breadcrumb li {
  display: inline;
  color: #fff;
}

.breadcrumb li a {
  color: #fff;
}

.breadcrumb li + li:before {
  margin: 0 10px;
  content: ">";
}

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

.form dl {
  font-size: 1.5rem;
}

.form dl dt {
  float: left;
  width: 280px;
  padding-top: 15px;
  font-weight: 600;
  color: #464646;
}

.form dl dt span {
  color: #fff;
  background: #002d8f;
  padding: 2px 5px;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 20px;
  position: relative;
  top: -2px;
  font-weight: 500;
}

.form dl dt span.nini {
  background: #ddd;
  color: #333;
}

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

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

.form .textarea,
.form textarea {
  border: 0;
  padding: 10px;
  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 button {
  cursor: pointer;
  display: block;
  color: #002d8f;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  border: 1px solid #002d8f;
  font-weight: 500;
  padding: 12px 5px;
  margin: 10px auto 0;
  width: 250px;
  background: #fff;
  border-radius: 25px;
}

.form button:hover {
  background: #002d8f;
  color: #fff;
}

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

.form .select-wrap {
  position: relative;
  overflow: hidden;
  display: inline-block;
  min-width: 192px;
  min-width: 12em;
  background-color: #f0f0f0;
  border: 0;
  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: 15px 35px 15px 15px;
  background: transparent;
  border: 0;
  outline: none;
  line-height: 1.5;
}

.form .entypo-down-open-mini:before {
  font-family: "Font Awesome 5 Free";
  content: "\f078";
  font-weight: bold;
  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: #002d8f;
  font-weight: 700;
}

.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: #002d8f;
  z-index: 1;
}

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

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

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

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

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

.form label.checkbox_text:after {
  content: "";
  position: absolute;
  top: 40%;
  left: 5px;
  display: block;
  margin-top: -9px;
  width: 8px;
  height: 12px;
  border-right: 3px solid #002d8f;
  border-bottom: 3px solid #002d8f;
  -webkit-transform: rotate(45deg);
          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;
  -webkit-box-shadow: 41px 0px #fff;
          box-shadow: 41px 0px #fff;
  z-index: 2;
  margin: 0px;
  padding: 0px;
}

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

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

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

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

@media all and (max-width: 639px) {
  .form input[type="text"],
  .form textarea {
    -webkit-transform: scale(0.9);
            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;
  border: 3px solid #fefefe;
  -webkit-box-shadow: 0 0 0 6px rgba(0, 45, 143, 0.2);
          box-shadow: 0 0 0 6px rgba(0, 45, 143, 0.2);
  max-width: 700px;
  margin: 0 auto;
  border-radius: 20px;
  background: #fff;
}

@media all and (max-width: 639px) {
  .thanks {
    max-width: 90%;
    padding: 30px 20px;
  }
}

.shadow {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.policy {
  padding: 30px;
  background: #fff;
  color: #333;
}

.policy .policy-box {
  letter-spacing: 0;
}

@media all and (max-width: 639px) {
  .policy {
    padding: 20px;
    text-align: left;
  }
}

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

.select-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.select-content .select-txt {
  padding: 0 5px;
}

@media all and (max-width: 639px) {
  .select-content {
    display: block;
    /*.select-wrap, .select-txt{
 display: inline-block;
}*/
  }
}

.form-txt {
  font-size: 0.9em;
  margin-bottom: 5px;
}

.memo {
  border: 2px solid rgba(255, 246, 226, 0.5);
  background: url(../img/bg01.jpg);
  padding: 15px;
}

.thanks {
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
  background: #FFF6E2;
}

@media all and (max-width: 639px) {
  .thanks {
    max-width: 90%;
    padding: 30px 20px;
  }
}

.shadow {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.policy {
  padding: 20px;
  margin: 40px auto 0;
  border: 1px solid #002d8f;
}

.policy h4 {
  color: #002d8f;
  border-bottom: 1px solid #002d8f;
  margin-bottom: 10px;
  font-size: 1.8rem;
}

.mtitle_small {
  position: relative;
  font-size: 1.7rem;
  color: #002d8f;
  margin-bottom: 20px;
}

.mtitle_small:before {
  content: "";
  width: 30px;
  height: 1px;
  background-color: #002d8f;
  position: absolute;
  left: 0;
  bottom: -15px;
}

.mtitle_small2 {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
  font-weight: bold;
  color: #002d8f;
}

.mtitle_small2:not(:first-of-type) {
  margin-top: 20px;
}

.mtitle_small2:before {
  content: "";
  background-color: #98d398;
  width: 10px;
  height: 4px;
  position: absolute;
  top: 0.6em;
  left: 0;
}

/* gallery(photobox)
----------------------------------*/
.gallery_ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 30px;
}

.gallery_ul li {
  margin: 0 2% 2.5% 0;
  width: 32%;
}

.gallery_ul li:nth-child(3n) {
  margin: 0 0 2.5% 0;
}

.gallery_ul li .photobox-wrap {
  width: 100%;
  height: 350px;
  text-align: center;
  overflow: hidden;
  background: rgba(40, 80, 126, 0.1);
  margin-bottom: 8px;
}

.gallery_ul li .photobox-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: contain;";
  /*IE対策*/
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}

@media all and (max-width: 639px) {
  .gallery_ul li .photobox-wrap {
    height: 280px;
  }
}

/* gallery(lightbox)
----------------------------------*/
.gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.gallery li {
  width: 31%;
  margin: 0 calc(2.33% + (2.33% / 2)) 25px 0;
}

.gallery li:nth-child(3n) {
  margin-right: 0;
}

.gallery li a {
  background: rgba(0, 0, 0, 0.3);
  display: block;
  text-align: center;
  padding: 0px;
  height: 270px;
}

.gallery li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  /*IE対策*/
}

.gallery li p {
  line-height: 1.4;
  margin-top: 5px;
}

@media all and (max-width: 800px) {
  .gallery li {
    width: 48%;
    margin: 0 4% 20px 0;
  }
  .gallery li:nth-child(3n) {
    margin: 0 4% 20px 0;
  }
  .gallery li:nth-child(2n) {
    margin-right: 0;
  }
  .gallery li a {
    height: 120px;
  }
  .gallery li p {
    font-size: 1.1rem;
  }
}

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

.list2.ai-c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.list2 > li,
.list2 .child {
  width: 48%;
  margin: 0 4% 30px 0;
}

.list2 > li:nth-child(2n),
.list2 .child:nth-child(2n) {
  margin-right: 0;
}

@media all and (max-width: 639px) {
  .list2 > li:nth-child(2n),
  .list2 .child:nth-child(2n) {
    margin-right: auto;
  }
}

@media all and (max-width: 639px) {
  .list2 > li,
  .list2 .child {
    width: 100%;
    margin: 0 auto 20px;
  }
}

.list2 > li.order,
.list2 .child.order {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

@media all and (max-width: 639px) {
  .list2 > li.order,
  .list2 .child.order {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}

.list2 > li.bg_try,
.list2 .child.bg_try {
  background: rgba(255, 246, 226, 0.2);
  padding: 10px;
  border: 1px solid #d1bd91;
}

.list2.type1 .child {
  overflow: hidden;
  background: #f0f0f0;
  border-radius: 20px;
}

.list2.type1 .child .inner {
  padding: 15px;
}

.title-bg {
  background: #1c3757;
  color: #fefefe;
  text-align: center;
  padding: 8px 5px;
  font-weight: 600;
  font-size: 1.7rem;
}

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

.list3 > li {
  width: 31%;
  margin: 0 3% 15px 0;
}

.list3 > li:nth-child(3n) {
  margin-right: 0;
}

.list4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.list4 li {
  width: 23%;
  margin: 0 2.5% 20px 0;
}

.list4 li:nth-child(4n) {
  margin-right: 0;
}

@media all and (max-width: 800px) {
  .list4 {
    max-width: 600px;
  }
  .list4 li {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 20px;
    text-align: center;
  }
  .list4 li img {
    width: 100%;
  }
  .list4 li:nth-child(2n) {
    margin-right: 0;
  }
}

@media all and (max-width: 639px) {
  .list4 li {
    width: 80%;
    margin: 0 auto 20px;
  }
  .list4 li:nth-child(2n) {
    margin-right: auto;
  }
}

.note {
  padding: 15px;
  margin-top: 10px;
  background: #FFF6E2;
}

.flow-dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 10px 0;
}

.flow-dl dt {
  background: #002d8f;
  font-size: 3rem;
  color: #fff;
  width: 80px;
  text-align: center;
  margin-right: 20px;
  height: 80px;
  padding-top: 8px;
  border-radius: 100%;
  font-family: "Oswald", sans-serif;
}

.flow-dl dt span {
  font-size: 1.8rem;
  display: block;
  margin-bottom: -16px;
}

.flow-dl dd {
  width: calc(100% - 110px);
  margin-top: 10px;
}

.flow-dl dd:not(:last-child) {
  padding-bottom: 15px;
  border-bottom: 0.9px solid #28507e;
}

.flow-dl dd a {
  color: #28507e;
}

.flow-dl dd a:hover {
  color: #9B0002;
}

.flow-dl dt:not(:last-of-type),
.flow-dl dd:not(:last-of-type) {
  margin-bottom: 30px;
}

.txt1 {
  padding-left: 10px;
}

.blog-month {
  margin-bottom: 10px;
}

.blog-month ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.blog-month ul li {
  border: 1px solid #ccc;
  width: 45%;
  padding: 3px 0;
  margin-bottom: 5px;
  font-size: 1.2rem;
  letter-spacing: 0;
  text-align: center;
  background: #fefefe;
  margin-bottom: 5px;
}

.blog-month ul li:nth-child(even) {
  margin-left: 1%;
}

.blog-month ul li a {
  color: #5c4332;
}

@media all and (max-width: 639px) {
  .blog-month ul li {
    width: 44%;
  }
}

#a01,
#a02,
#a03,
#a04,
#a05,
#a06,
#entry {
  display: block;
  padding-top: 100px;
  margin-top: -100px;
}

.menu-list {
  margin-bottom: 30px;
}

.menu-list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 4px;
}

.menu-list > li p {
  display: inline-block;
  line-height: 1.5;
  font-weight: 400;
}

.menu-list > li:before {
  background: radial-gradient(#aaa 20%, transparent 0) center center/8px 8px;
  content: '';
  display: inline-block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 4px;
  margin: 0 1.2em;
}

@media all and (max-width: 639px) {
  .menu-list > li:before {
    margin: 0 5px;
  }
}

.menu-list > li .left {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  max-width: 60%;
}

.menu-list > li .left .small {
  color: #28507e;
  padding-left: 5px;
}

.menu-list > li .left .small:before {
  content: "[";
}

.menu-list > li .left .small:after {
  content: "]";
}

@media all and (max-width: 639px) {
  .menu-list > li .left {
    max-width: 65%;
  }
}

.menu-list > li .right {
  width: 20%;
}

.price {
  font-weight: bold;
  color: #5c4332;
  padding: 0 4px;
}

.price2 {
  text-align: center;
  margin: 8px 0;
}

.price2 span {
  font-weight: 600;
  color: #28507e;
  font-size: 1.1em;
}

.list-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.list-center li {
  max-width: 250px;
}

.list-center li:not(:last-child) {
  margin: 0 5px 5px;
}

@media all and (max-width: 639px) {
  .list-center li {
    width: 220px;
  }
  .list-center li:not(:last-child) {
    margin: 0 0 5px;
  }
}

.faq-dl .faq-inner:not(:last-of-type) {
  margin-bottom: 20px;
}

.faq-dl dt,
.faq-dl dd {
  padding: 15px 15px 15px 60px;
  position: relative;
  width: 98%;
}

.faq-dl dt:before,
.faq-dl dd:before {
  position: absolute;
  font-size: 3rem;
  font-weight: 700;
  left: 15px;
  top: 0;
}

@media all and (max-width: 639px) {
  .faq-dl dt,
  .faq-dl dd {
    padding: 10px 10px 10px 50px;
  }
  .faq-dl dt:before,
  .faq-dl dd:before {
    font-size: 2rem;
  }
}

.faq-dl dt {
  background: #28507e;
  margin-bottom: 10px;
  line-height: 1.5;
  font-weight: 600;
  color: #fefefe;
}

.faq-dl dt:before {
  content: "Q.";
  color: #98d398;
}

.faq-dl dd {
  margin-left: auto;
  border-radius: 5px 0 5px 0;
}

.faq-dl dd:before {
  content: "A.";
  color: #F08200;
}

.faq-dl dd:not(:last-child) {
  margin-bottom: 50px;
}

.fukidashi {
  margin: 0.5em auto 1em;
  padding: 5px;
  text-align: center;
  max-width: 50%;
  border-radius: 10px;
  font-size: 2.2rem;
  background: #fefefe;
  border-radius: 5px;
  position: relative;
}

.fukidashi a {
  color: #a71017;
}

.fukidashi a:hover {
  color: #b32a20;
}

.fukidashi:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #fefefe;
  z-index: 2;
}

.info-txt {
  width: 95%;
  margin: 10px auto 0;
  background: rgba(40, 80, 126, 0.3);
  padding: 10px;
  border-radius: 10px;
}

.iframe {
  -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}

.frames {
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding: 6px;
}

.frames:before, .frames:after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 85px;
  height: 50px;
  background: #FFFFFF;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}

.frames:before {
  -webkit-box-shadow: 0 10px 8px -12px rgba(92, 67, 50, 0.6);
          box-shadow: 0 10px 8px -12px rgba(92, 67, 50, 0.6);
  top: -24px;
  bottom: auto;
  right: auto;
  left: -26px;
}

.frames:after {
  -webkit-box-shadow: 0 -10px 10px -10px rgba(92, 67, 50, 0.4);
          box-shadow: 0 -10px 10px -10px rgba(92, 67, 50, 0.4);
  top: auto;
  bottom: -22px;
  right: -25px;
  left: auto;
}

.document-list li a {
  display: block;
  background: #28507e;
  padding: 10px;
  font-weight: bold;
  line-height: 1.5;
  border: 1px solid rgba(92, 67, 50, 0.5);
  color: #5c4332;
}

.document-list li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f2d2";
  font-weight: bold;
  margin-right: 5px;
}

.document-list li a:hover {
  background: #28507e;
}

.document-list li a.pdf:before {
  content: "\f1c1";
}

.document-list li:not(:last-of-type) {
  margin-bottom: 10px;
}

.feature-list li {
  padding: 4px 4px 4px 8px;
  font-weight: 600;
  margin-bottom: 8px;
  background: #f0f0f0;
}

.feature-list li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: bold;
  margin-right: 5px;
  color: #002d8f;
}

/* vertical contents
----------------------------------*/
.mtitle-vertical {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  font-size: 1.8rem;
  font-weight: 600;
  color: #555;
}

.mtitle-vertical span {
  display: block;
  font-size: 4rem;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0;
  font-weight: 200;
  color: #002d8f;
}

@media all and (max-width: 639px) {
  .mtitle-vertical {
    -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
            writing-mode: inherit;
    font-size: 1.3rem;
  }
  .mtitle-vertical span {
    font-size: 2.5rem;
  }
}

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

@media all and (max-width: 639px) {
  .vertical-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.vertical-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 10%;
}

@media all and (max-width: 639px) {
  .vertical-content {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
    margin: 15px 0 0;
  }
}

.link-txt {
  font-weight: 600;
  border-bottom: 1px dashed #5c4332;
  color: #5c4332;
}

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

.staff-wrap .staff-img {
  margin-right: 30px;
}

.staff-wrap .staff-detail {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media all and (max-width: 639px) {
  .staff-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .staff-wrap .staff-img {
    width: 70%;
    margin: 0 auto 20px;
  }
}

.lead01 {
  text-align: center;
  line-height: 1.4;
  font-weight: 600;
  font-size: 1.1em;
  margin-bottom: 15px;
}

.lead01 span {
  font-family: "Oswald", sans-serif;
  font-weight: normal;
  color: #002d8f;
  font-size: 3rem;
  display: block;
}

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

.sbox {
  width: 70%;
  margin: 0 auto;
}

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

.sbox.bd {
  border: 1px solid #002d8f;
  padding: 10px;
}

.tcen {
  text-align: center;
}

@media all and (max-width: 639px) {
  .tcen {
    text-align: left;
  }
}

.voice {
  width: 70%;
  margin: 0 auto;
}

@media all and (max-width: 639px) {
  .voice {
    width: 95%;
  }
}

.voice dt {
  border-bottom: 1px solid #d1bd91;
  color: #d1bd91;
  font-size: 1.8rem;
  font-weight: 500;
}

.voice dt::before {
  font-family: "Font Awesome 5 Free";
  content: "\f004";
  font-weight: bold;
  margin-right: 5px;
  color: #d1bd91;
}

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

.voice dd {
  padding: 10px;
  margin-bottom: 30px;
}

.fake_btn img {
  opacity: 1;
}

.fake_btn img:hover {
  opacity: .7;
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.timeline > li {
  overflow: hidden;
  margin: 0;
  position: relative;
}

.timeline > li a {
  color: #C10003;
  font-weight: bold;
}

.timeline > li a:hover {
  color: #28507e;
}

.timeline-date {
  width: 25%;
  float: left;
  text-align: left;
  margin-top: 10px;
  color: #002d8f;
  font-family: "Oswald", sans-serif;
  font-size: 2.3rem;
}

.timeline-content {
  width: 75%;
  float: left;
  border: 1px #002d8f solid;
  padding: 10px 0 10px 30px;
  margin-bottom: 10px;
}

.timeline-content:before {
  content: '';
  width: 70px;
  height: 1px;
  background: #002d8f;
  position: absolute;
  left: 15.5%;
  top: 25px;
  border-radius: 100%;
}

/* スマホ */
@media screen and (max-width: 800px) {
  .timeline > li {
    overflow: hidden;
    margin: 0;
    position: relative;
  }
  .timeline-date {
    width: 100%;
    float: left;
    text-align: left;
    margin-top: 10px;
  }
  .timeline-content {
    width: 100%;
    float: left;
    border-left: 3px #ccc solid;
    padding: 10px 0 20px 20px;
  }
  .timeline-content:before {
    content: '';
    width: 70px;
    height: 1px;
    background: #002d8f;
    position: absolute;
    left: 7em;
    top: 32px;
    border-radius: 100%;
  }
}

.w70 {
  margin: 0 auto;
  width: 70%;
}

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

.w70 img {
  width: 100%;
}

.sec01 {
  padding: 130px 0 0 11vw;
  position: relative;
}

@media all and (max-width: 800px) {
  .sec01 {
    padding: 30px 0 30px;
  }
}

.t-layout-wrapper {
  position: relative;
}

.t-layout-wrapper .t-ttl01 {
  left: -85px;
  top: 4vw;
  display: inline-block;
  width: 22px;
  color: #333;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  letter-spacing: 0.1em;
  font-weight: lighter;
  position: absolute;
  width: 42px;
}

.t-layout-wrapper .t-ttl01.type1 {
  right: -85px;
  left: auto;
  top: 0;
}

.t-layout-wrapper .t-ttl01:before {
  background: #333;
  content: "";
  display: inline-block;
  height: 80px;
  width: 1px;
  margin-bottom: 24px;
}

@media all and (max-width: 800px) {
  .t-layout-wrapper .t-ttl01 {
    display: block;
    width: auto;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    font-size: 22px;
    position: static;
    margin-bottom: 20px;
  }
  .t-layout-wrapper .t-ttl01:before {
    height: 1px;
    width: 80px;
    margin: 0 15px 0 0;
    vertical-align: middle;
  }
}

.t-layout-wrapper .t-ttl02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: .t-layout-wrapper .t-ttl02 base_color;
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
  letter-spacing: 0.1em;
  margin-bottom: -6px;
  font-weight: 400;
}

.t-layout-wrapper .t-ttl02 .num {
  color: #111;
  font-family: "Oswald";
  font-size: 6vw;
  letter-spacing: 0.1em;
  font-weight: lighter;
  vertical-align: middle;
  margin-right: 50px;
}

.t-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media all and (max-width: 800px) {
  .t-layout {
    display: block;
  }
}

.t-layout .l-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 47.3vw;
          flex: 0 0 47.3vw;
  min-width: 0;
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.t-layout .l-img img {
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  max-height: 640px;
  height: auto;
  width: 100%;
}

@media all and (max-width: 1200px) {
  .t-layout .l-img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 65.3vw;
            flex: 0 0 65.3vw;
  }
}

@media all and (max-width: 800px) {
  .t-layout .l-img {
    width: 100%;
    min-width: 0;
  }
  .t-layout .l-img img {
    -o-object-fit: fill;
       object-fit: fill;
    font-family: 'object-fit: fill;';
    max-height: 100%;
    height: auto;
    width: 100%;
  }
}

.t-layout .l-desc {
  background: white;
  margin: 4vw -100px 0 0;
  padding: 4vw 5vw;
  position: relative;
  z-index: 5;
}

.t-layout .l-desc.bg-white {
  background: white;
}

@media all and (max-width: 1200px) {
  .t-layout .l-desc {
    margin: 24vw -430px 0 0;
  }
}

@media all and (max-width: 800px) {
  .t-layout .l-desc {
    margin: -200px auto 0;
    padding: 50px;
    width: 90%;
  }
}

@media all and (max-width: 639px) {
  .t-layout .l-desc {
    margin: -50px auto 0;
    padding: 30px 15px;
  }
}

.t-layout .l-desc .l-ttl01 {
  line-height: 1;
  position: absolute;
  left: 63px;
  top: -45px;
}

.t-layout .l-desc .l-ttl01 .num {
  font-family: "Oswald", sans-serif;
  font-size: 6vw;
  letter-spacing: 0.1em;
  font-weight: lighter;
  vertical-align: middle;
  margin-right: 35px;
}

.t-layout .l-desc .l-ttl02 {
  font-family: "Noto Serif JP", serif;
  letter-spacing: .1em;
  margin-bottom: 30px;
}

@media all and (max-width: 800px) {
  .t-layout .l-desc .l-ttl02 {
    margin-bottom: 20px;
  }
}

.t-layout .l-desc .l-ttl02 .main-ttl {
  display: block;
  color: #333;
  font-size: 2.5rem;
  margin-bottom: 25px;
  font-family: "Noto Serif JP", serif;
  line-height: 1.7;
}

.t-layout .l-desc .l-ttl02 .main-ttl::first-letter {
  color: #002d8f;
}

@media all and (max-width: 800px) {
  .t-layout .l-desc .l-ttl02 .main-ttl {
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.7;
  }
}

@media all and (max-width: 639px) {
  .t-layout .l-desc .l-ttl02 .main-ttl {
    text-align: center;
    letter-spacing: .4rem;
  }
}

.t-layout .l-desc .l-ttl02 .sub-ttl {
  display: block;
  font-size: 20px;
  line-height: 2;
}

.t-layout .l-desc .l-txt {
  margin-bottom: 50px;
}

.t-layout.p02 .l-img {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.t-layout.p02 .l-desc {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin: 4vw 0 0 -125px;
}

@media all and (max-width: 800px) {
  .t-layout.p02 .l-desc {
    margin: -200px auto 0;
    padding: 50px;
    width: 90%;
  }
}

@media all and (max-width: 639px) {
  .t-layout.p02 .l-desc {
    margin: -50px auto 0;
    padding: 30px 15px;
  }
}

@media all and (max-width: 800px) {
  .t-layout.p02 .l-img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .t-layout.p02 .l-desc {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin: -50px auto 0;
  }
}

.t-layout .l-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 20px -15px -20px;
}

@media all and (max-width: 800px) {
  .t-layout .l-btn {
    display: block;
    margin: 20px 0 -15px;
  }
}

.t-layout .l-btn li {
  margin: 0 auto 20px;
  width: 90%;
}

@media all and (max-width: 800px) {
  .t-layout .l-btn li {
    margin: 0 auto 15px;
    width: 100%;
  }
}

.t-layout .l-btn li a {
  min-width: 0;
  width: 100%;
}

.t-layout .l-btn li .btn-style01 {
  display: inline-block;
  border: 1px solid #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  min-width: 250px;
  padding: 12px 30px;
  position: relative;
  text-align: left;
  -webkit-transition: .2s;
  transition: .2s;
  color: #fff;
}

.t-layout .l-btn li .btn-style01:after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  content: "";
  display: block;
  height: 8px;
  width: 8px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  right: 20px;
  top: calc(50% - 4px);
  -webkit-transition: .4s;
  transition: .4s;
}

.t-layout .l-btn li .btn-style01:hover {
  background: #111;
  color: #fff;
}

.t-layout .l-btn li .btn-style01:hover:after {
  right: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

.sec05-card-wrapper {
  width: calc(100% - 4vw);
  margin: 0 auto;
}

.sec01_2 {
  padding: 130px 11vw 100px 0;
  position: relative;
}

@media all and (max-width: 1200px) {
  .sec01_2 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media all and (max-width: 800px) {
  .sec01_2 {
    padding: 60px 0 30px;
  }
}

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

.top-split .child {
  width: 48%;
}

.top-split .child.split-1 {
  background: url(../img/split01.jpg) no-repeat center/cover;
}

.top-split .child.split-2 {
  background: url(../img/split02.jpg) no-repeat center/cover;
}

.top-split .child.split-3 {
  background: url(../img/split03.jpg) no-repeat center/cover;
}

@media all and (max-width: 639px) {
  .top-split .child {
    width: 90%;
    margin: 0 auto 25px;
  }
}

.top-split .child a {
  display: block;
  position: relative;
  height: 450px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.top-split .child a:before {
  position: absolute;
  content: "";
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 1px solid #fff;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

@media all and (max-width: 639px) {
  .top-split .child a {
    height: auto;
    padding: 55px 0;
  }
  .top-split .child a:before {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border: 2px solid #fff;
  }
}

.top-split .child a .inner {
  position: relative;
  z-index: 3;
  font-weight: 400;
  width: 85%;
  margin: 0 auto;
}

.top-split .child a .split-title {
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
}

.top-split .child a .split-title .em {
  display: block;
  font-size: 2.4rem;
  font-weight: 400;
}

.top-split .child a .split-title .eng {
  display: block;
  line-height: 1.6;
  font-size: 1.5rem;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0;
  font-weight: 200;
}

.top-split .child a .split-title .ja {
  font-size: 2rem;
}

@media all and (max-width: 800px) {
  .top-split .child a .split-title {
    padding: 0 20px;
  }
  .top-split .child a .split-title .eng {
    font-size: 1.4rem;
  }
  .top-split .child a .split-title .em {
    font-size: 1.8rem;
    text-align: left;
  }
  .top-split .child a .split-title .ja {
    font-size: 1.6rem;
  }
}

@media all and (max-width: 639px) {
  .top-split .child a .split-title {
    padding: 0;
  }
}

.top-split .child a .split-txt {
  color: #fff;
  max-width: 100%;
  margin: 0 auto;
  font-size: 1.3rem;
}

@media all and (max-width: 800px) {
  .top-split .child a .split-txt {
    text-align: left;
    font-size: 1.2rem;
    padding: 0 20px;
  }
}

@media all and (max-width: 639px) {
  .top-split .child a .split-txt {
    padding: 0;
  }
}

.top-split .child a .split-more {
  width: 150px;
  padding: 10px 0;
  text-align: center;
  background: #fff;
  color: #111;
  border-radius: 30px;
  margin: 20px auto 0;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  font-size: 1.3rem;
}

.top-split .child a:hover:before {
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.top-split .child a:hover .split-more {
  background: #002d8f;
  color: #fff;
}

/* --top-bnr-list--
----------------------------------*/
.top-bnr-list2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1500px;
  margin: 0 auto;
}

.top-bnr-list2 > li {
  width: 24%;
  position: relative;
  margin-bottom: 20px;
}

.top-bnr-list2 > li a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}

.top-bnr-list2 > li a:hover {
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.top-bnr-list2 > li a:hover .btn-arrow {
  background: #28507e;
}

.top-bnr-list2 > li a:hover .btn-arrow i {
  border-bottom-color: #fefefe;
}

.top-bnr-list2 > li a:hover .btn-arrow i:before {
  border-right-color: #fefefe;
}

.top-bnr-list2 > li a:hover .top-bnr-img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.top-bnr-list2 > li.col3 {
  width: 31%;
}

.top-bnr-list2 > li.col2 {
  width: 48%;
}

@media all and (max-width: 1200px) {
  .top-bnr-list2 {
    width: 100%;
    margin: 0 auto;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .top-bnr-list2 > li {
    margin-bottom: 20px;
  }
}

@media all and (max-width: 800px) {
  .top-bnr-list2 {
    width: 95%;
    margin: 0 auto;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .top-bnr-list2 > li {
    width: 48%;
    margin-bottom: 20px;
  }
}

@media all and (max-width: 639px) {
  .top-bnr-list2 {
    width: 95%;
  }
  .top-bnr-list2 > li {
    width: 100%;
  }
  .top-bnr-list2 > li.col3, .top-bnr-list2 > li.col2 {
    width: 100%;
    margin-bottom: 20px;
  }
}

.top-bnr-list2 .top-bnr-img {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.top-bnr-list2 .top-bnr-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

@media all and (max-width: 639px) {
  .top-bnr-list2 .top-bnr-img {
    height: 200px;
  }
}

.top-bnr-list2 .btn-arrow {
  width: 50px;
  height: 50px;
  position: absolute;
  right: 5px;
  top: 200px;
  text-align: center;
  line-height: 60px;
  border: 1px solid #28507e;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

@media all and (max-width: 639px) {
  .top-bnr-list2 .btn-arrow {
    top: 180px;
    right: 10px;
  }
}

.top-bnr-list2 .btn-arrow i {
  display: block;
  position: absolute;
  width: 30px;
  border-bottom: 1px solid #28507e;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 5px;
}

.top-bnr-list2 .btn-arrow i:before {
  position: absolute;
  width: 10px;
  height: 8px;
  content: "";
  right: 3px;
  bottom: -1px;
  border-right: 2px solid #28507e;
  -webkit-transform: skew(45deg);
          transform: skew(45deg);
}

.top-bnr-list2 .top-bnr-title {
  font-weight: 500;
  padding: 15px;
  line-height: 1.4;
}

.top-bnr-list2 .top-bnr-title .eng {
  font-family: "Noto Serif JP", serif;
  font-weight: 200;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: #28507e;
  display: block;
  letter-spacing: .05rem;
}

.top-bnr-list2 .top-bnr-title .ja {
  font-size: 1.5rem;
  display: block;
  color: #222;
  font-weight: bold;
}

@media all and (max-width: 639px) {
  .top-bnr-list2 .top-bnr-title .eng {
    font-size: 1.2rem;
  }
  .top-bnr-list2 .top-bnr-title .ja {
    font-size: 1.5rem;
  }
}

.top-bnr-list2 .top-bnr-txt {
  color: #222;
  padding: 10px;
  font-size: 1.2rem;
  font-family: "Noto Serif JP", serif;
}

@media all and (max-width: 639px) {
  .top-bnr-list2.min {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .top-bnr-list2.min > li {
    width: 48%;
  }
  .top-bnr-list2.min .top-bnr-img {
    height: 150px;
  }
  .top-bnr-list2.min .btn-arrow {
    top: 90px;
  }
  .top-bnr-list2.min .top-bnr-title {
    padding: 5px 3px;
  }
  .top-bnr-list2.min .top-bnr-title .eng {
    font-size: .9rem;
    letter-spacing: .02rem;
  }
  .top-bnr-list2.min .top-bnr-title .ja {
    font-size: 1.2rem;
    letter-spacing: -.01rem;
  }
}

.list_btn li {
  width: 100%;
  margin: 0 auto 10px;
  background: #002d8f;
  padding: 10px;
  text-align: center;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.list_btn li a {
  color: #fefefe;
}

.list_btn li:hover {
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
  opacity: .8;
}
