@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Racing+Sans+One&display=swap");
/* アニメーションベンダープレフィックス込み指定 */
/* アニメーションベンダープレフィックス込み指定 */
/* アニメーションベンダープレフィックス込み指定 */
body {
  color: #323232;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
  font-weight: 400;
  position: relative;
  letter-spacing: 0.1rem;
  background: white; }

#nav-toggle,
#sp-nav {
  display: none; }

a {
  color: #00236a;
  text-decoration: none;
  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
----------------------------------*/
@keyframes view-zoomin {
  0% {
    opacity: 0;
    transform: scale(0.95); }
  100% {
    opacity: 1;
    transform: scale(1); } }
@keyframes view-slideup {
  0% {
    opacity: 0;
    transform: translate(0, 35px); }
  100% {
    opacity: 1;
    transform: translate(0, 0); } }
.animation {
  opacity: 0; }

.slideup.on {
  opacity: 1;
  animation: view-slideup 0.65s cubic-bezier(0.2, 1, 0.2, 1); }

.zoomin.on {
  opacity: 1;
  animation: view-zoomin 0.65s cubic-bezier(0.2, 1, 0.2, 1); }

.loader {
  align-items: center;
  background: #fdfdfd;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999; }
  .loader::after {
    animation: loader 0.5s linear infinite;
    border: 1px solid #002B83;
    border-radius: 50%;
    border-right: 1px solid rgba(0, 43, 131, 0.2);
    border-top: 1px solid rgba(0, 43, 131, 0.2);
    content: "";
    height: 70px;
    width: 70px; }
  .loader.off {
    display: none; }

@keyframes loader {
  0% {
    transform: rotate(0); }
  100% {
    transform: rotate(360deg); } }
/* header
----------------------------------*/
@keyframes hd-scrolled {
  0% {
    opacity: 0;
    transform: translate(0, -100%); }
  100% {
    opacity: 1;
    transform: translate(0, 0); } }
#l-header {
  width: 100%;
  position: relative;
  z-index: 200;
  /*border-bottom: 6px solid;
  border-image: linear-gradient(to right, $red 0% 25%, $orange 25% 50%, $blue 50% 75%, $green 75% 100%);
  border-image-slice: 1;	*/ }
  #l-header .inner {
    max-width: 98%;
    margin: 0 auto;
    min-width: 1024px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 15px 0; }
    @media all and (max-width: 800px) {
      #l-header .inner {
        min-width: initial; } }
    @media (orientation: landscape) and (max-width: 900px) {
      #l-header .inner {
        min-width: 100%;
        padding: 10px 0; } }

#logo {
  width: 350px;
  margin-bottom: 50px;
  position: relative;
  z-index: 10; }
  #logo img {
    position: absolute;
    top: -20px; }
  @media all and (max-width: 1200px) {
    #logo {
      width: 300px;
      margin: 10px 0 10px 15px; }
      #logo img {
        position: relative;
        top: 0; } }
  @media (orientation: landscape) and (max-width: 900px) {
    #logo {
      width: 190px; } }

.header-right_txt {
  line-height: 1.2;
  font-size: 1.3rem;
  font-weight: 600;
  color: #5c4332; }

.header-right_contact {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  margin-right: 10px;
  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: #002B83; }

.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 {
    transition: background-color 0.2s ease-in; }

.header-right_tel {
  text-align: center;
  margin-right: 15px;
  line-height: 0.1rem; }
  .header-right_tel a {
    width: 100%;
    color: #333;
    font-size: 2.2rem;
    padding: 5px 10px; }
    .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: #646464; }

.header-right_mail a {
  background: #fefefe;
  color: #4b4b4b; }
  .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: #1e61b9; }

.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: 2.2rem;
  color: #333;
  max-width: 350px;
  font-weight: 600;
  margin-right: 15px; }
  .header-right_fax:before {
    font-family: "Font Awesome 5 Free";
    content: "\f1ac";
    font-weight: bold;
    margin-right: 5px; }

#header_nav {
  position: relative;
  width: 600px;
  margin: 0 auto 0; }
  #header_nav ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto; }
    #header_nav ul li {
      position: relative;
      flex: 1 0 auto;
      text-align: center; }
      #header_nav ul li a {
        display: block;
        color: #002B83;
        font-size: 1rem;
        padding: 0;
        font-weight: 400;
        transition: color 0.2s ease-in; }
        @media (orientation: landscape) and (max-width: 900px) {
          #header_nav ul li a {
            font-size: 1.2rem; } }
        #header_nav ul li a span {
          display: block;
          position: relative;
          font-size: 2.2rem;
          line-height: 1.3;
          color: #003cb6;
          text-align: center;
          font-family: "Racing Sans One", cursive;
          letter-spacing: 0;
          font-weight: 400;
          font-weight: 400;
          transition: background-color 0.2s ease-in; }
        #header_nav ul li a.link {
          font-size: 1.5rem;
          padding: 6px 0 0; }
        #header_nav ul li a:hover, #header_nav ul li a.active {
          color: #646464; }
          #header_nav ul li a:hover span, #header_nav ul li a.active span {
            color: #646464; }
      #header_nav ul li.nav-reserve {
        background: #FFF8EF; }
  #header_nav .dropdown {
    display: none;
    position: absolute;
    left: 0;
    top: 65px;
    z-index: 310;
    background: #002B83; }
    #header_nav .dropdown .dropdown-li {
      padding: 10px 10px;
      margin: 0 0 5px; }
      #header_nav .dropdown .dropdown-li a {
        display: block;
        width: 160px;
        text-align: center;
        font-size: 1.5rem;
        padding: 10px 0;
        border-right: 0;
        color: #555;
        border-radius: 30px;
        background: #fff; }
        #header_nav .dropdown .dropdown-li a:after {
          display: none; }
        #header_nav .dropdown .dropdown-li a:hover {
          transition: all 0.2s ease-in;
          color: #D32B30; }
      #header_nav .dropdown .dropdown-li.foot_only {
        display: none; }

/* page-top
----------------------------------*/
#page-top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 99; }
  #page-top a {
    display: block;
    background: rgba(255, 255, 255, 0.5);
    color: #002B83;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    font-size: 1.8rem;
    text-align: center;
    border: 1px solid #002B83; }
    #page-top a:hover {
      opacity: 0.6; }
  @media all and (max-width: 639px) {
    #page-top {
      bottom: 45px; } }

/* swiper
----------------------------------*/
@keyframes zoom-in {
  0% {
    transform: scale(1); }
  100% {
    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: 75vh;
  display: flex;
  justify-content: center;
  align-items: center; }
  .slide-img img {
    width: 600px; }
  @media all and (max-width: 1200px) {
    .slide-img {
      height: 50vh; } }
  @media all and (max-width: 800px) {
    .slide-img img {
      width: 60%; } }
  @media (orientation: landscape) and (max-width: 900px) {
    .slide-img {
      height: 80vh; } }
  @media all and (max-width: 639px) {
    .slide-img {
      height: 40vh; }
      .slide-img img {
        width: 80%; } }

#slide-bg {
  position: relative;
 /*
 &:before {
  position: absolute;
  content: "";
  width: 60%;
  height: 80%;
  bottom: -15%;
  left: 0;
  background-image: linear-gradient(to right bottom, $bg_gray 0%, $bg_gray 100%);
  z-index: -1;
  opacity: 0.8;

  @include for-size(phone-only) {
   height: 95%;
   bottom: -27%;
   opacity: 0.5;
  }
 }*/ }

#slideshow {
  overflow: hidden; }

#catch {
  z-index: 150;
  position: absolute;
  left: 5%;
  top: 50%;
  opacity: 0;
  width: 50%;
  transform: translateY(-50%);
  text-align: center; }
  #catch.on {
    opacity: 1;
    transition: 2s; }
  @media all and (max-width: 1200px) {
    #catch {
      left: 0;
      width: 60%;
      top: 70%; } }
  @media all and (max-width: 800px) {
    #catch {
      left: 0;
      top: 70%; } }
  @media all and (max-width: 639px) {
    #catch {
      width: 100%;
      transform: initial;
      top: 50%; } }
  @media (orientation: landscape) and (max-width: 1024px) {
    #catch {
      left: 2%;
      width: 40%; } }
  @media (orientation: landscape) and (max-width: 900px) {
    #catch {
      left: 2%;
      width: 40%; } }
  @media (orientation: landscape) and (max-width: 570px) {
    #catch {
      left: 2%;
      width: 40%;
      top: 60%; } }

.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: flex;
  flex-wrap: wrap;
  justify-content: 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%;
      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;
  text-align: center;
  font-size: 1.8rem; }
  .contact_bnr > li .bnr_tel {
    white-space: nowrap;
    color: #333;
    line-height: 1.3;
    font-size: 4.5rem;
    font-family: "Racing Sans One", cursive;
    letter-spacing: 0;
    font-weight: 400;
    font-family: "Racing Sans One", cursive; }
    .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 2px rgba(255, 255, 255, 0.9);
      color: #002B83; }
      .contact_bnr > li .bnr_tel:hover:before {
        color: #002B83; }
    @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: #002B83;
    border: 1px solid #001a50; }
    .contact_bnr > li .bnr_mobile:before {
      font-family: "Font Awesome 5 Free";
      content: "\f3cd";
      font-weight: bold; }
    .contact_bnr > li .bnr_mobile:hover {
      background: #D32B30; }
  .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: #FFF8EF;
    border: 1px solid #ffd7a3;
    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: #002B83;
    color: #fefefe;
    font-size: 1.5rem; }
    .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; }
    .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: 75%;
    left: 0;
    bottom: 0;
    background-image: linear-gradient(to top, rgba(100, 100, 100, 0.2) 0%, rgba(100, 100, 100, 0) 80%);
    z-index: -2;
    opacity: 0.5; }
    @media all and (max-width: 800px) {
      #l-footer:before {
        height: 91%;
        width: 100%;
        background-image: linear-gradient(to top, rgba(100, 100, 100, 0.2) 0%, rgba(100, 100, 100, 0) 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: #002B83; }
  #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: 15px auto 15px; }
  .footer_navi ul {
    margin: 0 auto;
    max-width: 600px;
    display: flex;
    flex-wrap: wrap; }
  .footer_navi li {
    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: #646464; }
      .footer_navi li a span {
        display: none; }
    .footer_navi li .dropdown {
      display: none; }
  @media all and (max-width: 800px) {
    .footer_navi {
      display: none; } }

.column2 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  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: #002B83; }
  .footer-insta a:hover {
    color: #646464; }

.flogo {
  width: 350px;
  text-align: center;
  margin: 25px auto 5px;
  min-height: 0; }
  .flogo a {
    display: block; }
  @media all and (max-width: 800px) {
    .flogo {
      width: 280px; } }

.address {
  text-align: center;
  font-size: 1.4rem; }

.copyright {
  padding: 5px 0;
  color: #fff;
  font-size: 1.2rem;
  background: #002B83; }
  @media all and (max-width: 800px) {
    .copyright {
      padding-bottom: 5px; } }
  @media all and (max-width: 639px) {
    .copyright {
      font-size: 12px; } }
  @media (orientation: landscape) and (max-width: 900px) {
    .copyright {
      font-size: 1rem; } }

/*----------------------------------
 --top-contents--
----------------------------------*/
.board-box {
  background: #ccc;
  padding: 20px; }

/* --top-intro--
----------------------------------*/
.top-intro {
  position: relative;
  margin: 6em auto 0; }
  @media all and (max-width: 639px) {
    .top-intro {
      margin: 0 auto 2em; } }
  .top-intro:before {
    right: 5%;
    top: 0%;
    background: url(../img/bg-intro.jpg) no-repeat 10% 100%/cover;
    position: absolute;
    content: "";
    width: 50%;
    height: 70%;
    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: 70%;
        right: 0; } }
    @media all and (max-width: 639px) {
      .top-intro:before {
        background-size: cover;
        height: 60%;
        width: 90%;
        top: 5%; } }
  .top-intro.concept {
    margin: 6em auto 0; }
    @media all and (max-width: 639px) {
      .top-intro.concept {
        margin: 0 auto 2em; } }
    .top-intro.concept:before {
      left: 5%;
      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: 180px; } }
  .top-intro.area:before {
    background: url(../img/bg-area.jpg) no-repeat center/cover; }

.top-intro_title {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  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 {
      writing-mode: initial;
      font-size: 3rem;
      top: 20px;
      left: 0; }
      .top-intro_title:before {
        left: 0;
        top: 50%;
        width: 100px;
        height: 70px;
        margin: 0;
        transform: translateY(-50%); } }

.top-box {
  max-width: 800px;
  background: rgba(255, 255, 255, 0.7);
  color: #111;
  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; }
  .top-box.area {
    max-width: 650px;
    margin: 30px auto 30px 50px; }
    @media all and (max-width: 639px) {
      .top-box.area {
        margin-top: 180px;
        margin-bottom: 0;
        margin-left: 0; } }
  @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: 180px;
      margin-bottom: 0; } }

.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: "Racing Sans One", cursive;
    letter-spacing: 0;
    font-weight: 400;
    font-size: 5rem;
    color: #002B83;
    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: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 85%;
  margin: 0 auto;
  position: relative;
  z-index: 5;
  padding: 0 10px; }
  @media all and (max-width: 1200px) {
    .top-bnr-list {
      max-width: 100%; } }
  .top-bnr-list li {
    width: 32%;
    margin-bottom: 10px; }
    @media all and (max-width: 639px) {
      .top-bnr-list li {
        width: 100%;
        justify-content: center;
        margin: 0 auto 20px; } }
    .top-bnr-list li a {
      display: block;
      width: 100%;
      height: 100%; }
      .top-bnr-list li a:hover img {
        transition: 0.3s transform ease-in-out;
        transform: scale(1.15); }
    .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%;
        object-fit: cover;
        font-family: "object-fit: cover;"; }
      @media all and (max-width: 1200px) {
        .top-bnr-list li .top-bnr-img {
          height: 200px; } }
    .top-bnr-list li .top-bnr-title {
      text-align: center;
      margin: -35px auto 40px;
      position: relative;
      z-index: 5;
      width: 70%;
      background: #fefefe;
      padding: 15px;
      box-shadow: 0 0 8px rgba(0, 43, 131, 0.2); }
      .top-bnr-list li .top-bnr-title .en {
        font-family: "Racing Sans One", cursive;
        letter-spacing: 0;
        font-weight: 400;
        font-size: 2.5rem;
        line-height: 1.3;
        display: block; }
      @media all and (max-width: 639px) {
        .top-bnr-list li .top-bnr-title .en {
          font-size: 2.5rem; } }

.top-intro_txt {
  text-align: left; }
  @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: #0044d0;
    vertical-align: middle; }
  .calendar-box table td {
    background: #fefefe; }
.calendar-box th.sun {
  color: #D32B30; }
.calendar-box th.sat {
  color: #174A8D; }
.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: flex; }
  @media all and (max-width: 639px) {
    .news-box {
      flex-direction: column;
      margin: -10px auto 25px;
      width: 90%;
      padding: 10px; } }

.news-title {
  text-align: center;
  font-weight: 400;
  border-right: 1px solid #002B83;
  padding: 5px 20px;
  color: #002B83; }
  .news-title span {
    font-size: 4rem;
    display: block;
    font-family: "Racing Sans One", cursive;
    letter-spacing: 0;
    font-weight: 400;
    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 #002B83; }
      .news-title span {
        font-size: 2rem; } }

.news-right {
  flex: 1;
  padding: 10px;
  margin-left: 20px; }
  @media all and (max-width: 639px) {
    .news-right {
      width: 100%;
      margin: 10px 0 0; } }

.top-blog {
  display: flex;
  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 {
        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%;
      object-fit: cover;
      font-family: "object-fit: cover;";
      transition: transform 0.2s ease-in; }
  .top-blog .top-blog_content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start; }
  .top-blog .top-blog_time {
    background: #002B83;
    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 {
    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%);
  transition: 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: "Racing Sans One", cursive;
      font-size: 2.5rem;
      display: block;
      color: #002B83;
      font-weight: normal;
      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%;
      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; }

.single02_2 {
  margin: 0 auto;
  padding: 30px 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; }
  .mbox.border {
    border-top: 1px solid #dbdbdb;
    border-bottom: 1px solid #dbdbdb; }
  @media all and (max-width: 639px) {
    .mbox {
      padding: 20px 15px; } }

.mbox2 {
  background: rgba(0, 43, 131, 0.2);
  margin-right: auto;
  margin-left: auto;
  padding: 30px; }
  @media all and (max-width: 639px) {
    .mbox2 {
      padding: 15px; } }

.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: 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 {
      -webkit-background-size: auto 200px;
      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: 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: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto; }
  #col2-wrap #col2-main {
    width: 78%; }
    @media all and (max-width: 800px) {
      #col2-wrap #col2-main {
        width: 100%;
        margin: 0 auto;
        order: 2; } }
  #col2-wrap #col2-side {
    width: 20%;
    padding: 60px 0 0; }
    @media all and (max-width: 800px) {
      #col2-wrap #col2-side {
        width: 95%;
        margin: 0 auto 20px;
        padding-top: 30px; } }

/* mtitle
----------------------------------*/
.mtitle {
  line-height: 1.5;
  font-weight: normal;
  margin-bottom: 48px;
  font-size: 1.3rem;
  position: relative;
  text-align: center;
  letter-spacing: 0.2rem; }
  .mtitle span {
    display: block;
    font-size: 5rem;
    margin-bottom: -15px;
    color: #002B83;
    line-height: 2;
    font-family: "Racing Sans One", cursive;
    letter-spacing: 0;
    font-weight: 400; }
  .mtitle:after {
    position: absolute;
    content: "";
    left: 50%;
    bottom: -10px;
    height: 1px;
    width: 60px;
    transform: translateX(-50%);
    background-image: linear-gradient(to right, rgba(100, 100, 100, 0.5), #646464); }
  .mtitle.white {
    color: #fff; }
    .mtitle.white:after {
      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:after {
      left: 0;
      transform: inherit; }
  .mtitle.mtitle_left2 {
    text-align: left;
    font-size: 1.2rem;
    line-height: 2.5; }
    .mtitle.mtitle_left2 span {
      font-size: 2.5rem; }
    .mtitle.mtitle_left2:after {
      left: 0;
      bottom: 0;
      transform: inherit; }
  @media all and (max-width: 639px) {
    .mtitle {
      font-size: 1.3rem;
      text-align: center; }
      .mtitle span {
        font-size: 3rem;
        line-height: 1.1;
        margin-bottom: 0px; } }

.mtitle2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #222;
  border-bottom: 1px solid;
  border-image: linear-gradient(to right, #002B83 0%, #fff 100%);
  border-image-slice: 1;
  line-height: 1.3;
  font-weight: 300; }
  .mtitle2 .en {
    font-size: 4rem;
    letter-spacing: 0.1rem;
    margin-right: 15px;
    color: #002B83;
    font-family: "Racing Sans One", cursive;
    font-weight: 300; }
  .mtitle2 .small {
    font-size: .9em;
    color: #646464;
    padding-left: 10px; }
  @media all and (max-width: 639px) {
    .mtitle2 {
      font-size: 1.3rem;
      padding-bottom: 5px; }
      .mtitle2 .en {
        font-size: 2.5em;
        display: block; } }
  .mtitle2.white {
    color: #fff; }
    .mtitle2.white span {
      color: #fefefe; }

.mtitle3 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #D32B30;
  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: 2rem;
  font-weight: 400;
  border-bottom: 1px solid #c1c1c1;
  border-image-slice: 1;
  position: relative;
  padding-bottom: 5px;
  margin-bottom: 10px;
  line-height: 1.5;
  color: #646464;
  font-family: "Noto Sans JP", sans-serif; }
  .mtitle-bll:after {
    position: absolute;
    content: "";
    display: block;
    bottom: -1px;
    width: 100px;
    height: 1px;
    left: 0;
    background: #646464; }
  @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: #FFA41A; }
  .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: #FFA41A; }
    .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;
    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 #646464;
  margin: 8px 0 10px;
  font-size: 1.6rem;
  font-family: "Noto Serif JP", serif; }
  .mtitle_sub:before {
    position: absolute;
    left: -6px;
    bottom: 0;
    content: "";
    width: 6px;
    height: 50%;
    background-color: #002B83; }
  @media all and (max-width: 639px) {
    .mtitle_sub {
      font-size: 1.4rem; } }

.mtitle_box {
  background-image: linear-gradient(to left, rgba(0, 43, 131, 0.7), #002B83);
  color: #fff;
  font-size: 1.8rem;
  position: relative;
  padding: 10px;
  margin-bottom: 20px;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif; }
  .mtitle_box span {
    font-family: "Racing Sans One", cursive;
    letter-spacing: 0;
    font-weight: 400;
    font-size: 2rem;
    padding-right: 5px;
    color: #fff; }
  .mtitle_box:before {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    content: "\f30a";
    font-weight: bold;
    display: block;
    right: -1px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff; }
  @media all and (max-width: 639px) {
    .mtitle_box {
      font-size: 1.4rem; }
      .mtitle_box span {
        font-size: 1.6rem; } }

.mtitle_box2 {
  background: #174A8D;
  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;
  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; }
  @media all and (max-width: 639px) {
    .mtext2 {
      font-size: 2rem; } }

.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: #002B83; }

/* btn
----------------------------------*/
.btn01 a {
  background: #646464;
  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: #002B83;
    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: #002B83;
    line-height: 24px;
    letter-spacing: 0.1rem;
    font-size: 1.6rem;
    text-align: center;
    color: #ffffff; }
    .btn02 a.sub {
      background-color: #646464; }
    .btn02 a.orange {
      background-color: #FFA41A; }
    .btn02 a.blue {
      background-color: #174A8D; }
    .btn02 a.red {
      background-color: #D32B30; }
    .btn02 a.green {
      background-color: #009B90; }
    .btn02 a i {
      display: block;
      position: absolute;
      top: 50%;
      right: -10px;
      width: 50px;
      height: 1px;
      background-color: #ffffff;
      transition: all 0.3s ease; }
    .btn02 a:hover i {
      width: 34px; }
  @media all and (max-width: 1200px) {
    .btn02 {
      width: 90%; } }
  @media all and (max-width: 800px) {
    .btn02 a {
      font-size: 1.4rem; }
      .btn02 a i {
        width: 30px; } }
  @media all and (max-width: 639px) {
    .btn02 {
      width: 280px; }
      .btn02 a {
        font-size: 1.2rem; }
        .btn02 a i {
          width: 40px; } }

.btn-img01 {
  margin: 15px auto;
  text-align: center; }

/* news
----------------------------------*/
.news {
  display: flex;
  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 dt {
  float: left;
  width: 8.5em;
  padding: 5px 5px;
  line-height: 1.3;
  font-weight: 400;
  text-align: center;
  font-size: 0.9em;
  border: 1px solid #EBEBEB; }
.news-bl dd {
  padding: 3px 0 10px 9.5em;
  line-height: 1.6;
  border-bottom: 1px dotted #dddddd;
  margin: 0 0 10px; }
  .news-bl dd a {
    color: #002B83; }
    .news-bl dd a:hover {
      color: #009B90; }
  .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: 5px; } }

/* page-title
----------------------------------*/
.page-title {
  position: relative;
  z-index: 1;
  background: url(../img/1.jpg) no-repeat 70% 50%/cover; }
  .page-title:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #646464;
    background-image: linear-gradient(160deg, #002B83 0%, #002B83 100%);
    opacity: 0.6; }
  .page-title .inner {
    margin: 0 auto;
    height: 300px;
    max-width: 1000px;
    display: flex;
    align-items: center; }
    @media all and (max-width: 1200px) {
      .page-title .inner {
        width: 94%; } }
  .page-title .page-lead {
    padding: 20px 0; }
    .page-title .page-lead .mtitle {
      color: #fff;
      margin-bottom: 10px; }
      .page-title .page-lead .mtitle span {
        color: #fff;
        font-size: 4rem;
        line-height: 2.6; }
  @media all and (max-width: 800px) {
    .page-title {
      background-attachment: scroll; }
      .page-title .inner {
        width: 94%;
        height: auto;
        padding: 40px 0;
        margin-bottom: 20px; }
      .page-title .page-lead {
        width: 100%;
        padding: 0; } }
  @media all and (max-width: 639px) {
    .page-title .page-lead {
      padding: 5px 0 0; }
      .page-title .page-lead .mtitle {
        font-size: 1.4rem; }
        .page-title .page-lead .mtitle span {
          font-size: 3rem;
          letter-spacing: 0;
          margin-bottom: -5px;
          line-height: 1.2; } }

.bg-01 {
  position: relative;
  background: #002B83; }
  .bg-01:before {
    position: absolute;
    content: "";
    width: 110%;
    height: 170px;
    left: 50%;
    bottom: 5px;
    background: #002B83;
    transform: rotate(-4deg) translateX(-50%); }
    @media all and (max-width: 639px) {
      .bg-01:before {
        bottom: 0; } }

.bg-02 {
  background: url(../img/grid2.png); }

.bg-gradient {
  background-image: linear-gradient(to right, #D32B30 0% 25%, #FFA41A 25% 50%, #174A8D 50% 75%, #009B90 75% 100%); }
  @media all and (max-width: 639px) {
    .bg-gradient {
      background-image: linear-gradient(to top, #D32B30 0% 25%, #FFA41A 25% 50%, #174A8D 50% 75%, #009B90 75% 100%); } }

.bg-contents {
  position: relative; }
  .bg-contents:before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 300px;
    z-index: -1;
    background: #646464;
    opacity: 0.8; }
    @media all and (max-width: 800px) {
      .bg-contents:before {
        height: 78%;
        opacity: 0.5;
        bottom: 2%; } }

.bg-maru1 {
  background: #002B83;
  max-width: calc(100% - 50px);
  margin-left: auto;
  margin-right: auto;
  margin: 50px auto;
  border-radius: 20px; }
  @media all and (max-width: 800px) {
    .bg-maru1 {
      max-width: calc(100% - 15px); } }
  @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;
    transform: translateX(-50%);
    background: #F4F4F4;
    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;
    transform: translateX(-50%);
    background: rgba(0, 43, 131, 0.2);
    border-radius: 10px; }
    @media all and (max-width: 639px) {
      .bg-base:before {
        width: 100%; } }

.bg-base2 {
  background: rgba(0, 43, 131, 0.1); }

.bg-gray {
  position: relative;
  background: #F4F4F4; }

.bg-black {
  position: relative;
  background: #111; }

.bg-beige {
  background: rgba(255, 248, 239, 0.8); }

.bg-beige2 {
  background: rgba(255, 248, 239, 0.8);
  max-width: calc(100% - 50px);
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
  margin-bottom: 50px; }
  @media all and (max-width: 800px) {
    .bg-beige2 {
      max-width: calc(100% - 15px); } }
  @media all and (max-width: 639px) {
    .bg-beige2 {
      border-radius: 10px; } }

/* tbl
----------------------------------*/
.tbl {
  width: 100%;
  margin: 10px 0;
  line-height: 2rem;
  letter-spacing: .15rem; }
  .tbl th,
  .tbl td {
    padding: 5px;
    vertical-align: middle;
    border: 1px solid #002B83;
    font-weight: 300;
    font-size: 1.3rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.8); }
  .tbl th {
    background: rgba(0, 43, 131, 0.8);
    color: #fff;
    border-bottom: 1px solid #002B83; }
    .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 th.bd_l {
      border-bottom: 1px solid #111; }
  .tbl.p02 th, .tbl.p02 td {
    padding: 20px; }
    @media all and (max-width: 639px) {
      .tbl.p02 th, .tbl.p02 td {
        padding: 10px; } }
  @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 rgba(0, 43, 131, 0.5); }
  .tbl-border th,
  .tbl-border td {
    padding: 15px;
    vertical-align: middle;
    border-bottom: 1px solid rgba(0, 43, 131, 0.5);
    font-weight: 300; }
  .tbl-border th {
    width: 28%;
    color: #333; }
    @media all and (max-width: 639px) {
      .tbl-border th {
        width: 30%; } }

.tbl-border2 {
  width: 100%; }
  .tbl-border2 th,
  .tbl-border2 td {
    padding: 15px;
    vertical-align: middle;
    border-bottom: 1px solid #002B83;
    font-weight: 300; }
  .tbl-border2 th {
    width: 28%;
    color: #002B83;
    font-family: "Racing Sans One", cursive;
    font-weight: 600; }
    @media all and (max-width: 639px) {
      .tbl-border2 th {
        width: 30%; } }
  .tbl-border2 td span {
    border-bottom: 1px solid #646464;
    color: #646464; }

.company {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 5px; }
  .company th,
  .company td {
    padding: 15px 10px;
    vertical-align: middle; }
  .company th {
    text-align: center;
    width: 25%;
    position: relative;
    background: #002B83;
    color: #fff;
    font-weight: 300;
    font-family: "Noto Serif JP", serif; }
    .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: #002B83;
      margin-top: -10px; }
  .company td {
    background: #FFFFFF;
    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 #111;
    font-weight: 300;
    font-size: 1.3rem; }
  .tbl1 th {
    background: #111;
    color: #fff;
    　text-align: center;
    border: 1px solid #646464; }
    .tbl1 th.bd_l {
      border-bottom: 1px solid #111; }
    .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: 66.25%;
  height: 0;
  margin-top: 20px;
  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: #002B83;
    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, 248, 239, 0.2);
    margin-top: 10px; }
  .list_check li:not(:last-child) {
    margin-bottom: 5px;
    border-bottom: 1px dashed #646464; }
  .list_check li:before {
    content: "◆";
    margin-right: 5px;
    color: #646464; }
@media all and (max-width: 639px) {
  .list_check li {
    width: 98%;
    margin: 0 auto 10px;
    font-size: 1.3rem; } }

.ol-list {
  counter-reset: number;
  /* 名前を付けたカウンターをリセット */
  list-style: none;
  /* olが数字を付けることをキャンセル */
  background: rgba(100, 100, 100, 0.5);
  padding: 20px; }
  .ol-list > li {
    line-height: 2;
    border-bottom: 1px dashed #eee;
    margin-bottom: 10px;
    padding: 5px 0 8px;
    padding-left: 50px;
    font-weight: bold;
    position: relative;
    line-height: 1.6;
    font-weight: bold;
    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: #222;
      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: #002B83;
  color: #fefefe;
  font-weight: 400;
  letter-spacing: 0.2rem;
  margin-bottom: 10px; }
  .list-type1 li:before {
    font-family: "Font Awesome 5 Free";
    content: "\f00c";
    font-weight: bold;
    margin-right: 5px;
    color: #fefefe; }

.list_line li {
  position: relative;
  display: inline-block;
  padding-right: 10px; }
  .list_line li:after {
    position: absolute;
    right: 0;
    content: "/";
    color: #002B83; }
  .list_line li:last-child:after {
    display: none; }

.list_kome li:not(:last-of-type) {
  margin-bottom: 3px; }
.list_kome li:before {
  content: "※";
  margin-right: 5px;
  color: #646464; }

/* blog
----------------------------------*/
.blog-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto; }
  .blog-wrap * {
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-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%;
    object-fit: cover;
    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: #646464;
  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: #001237;
  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: #000a1d;
      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: #F4F4F4; }
  .category_nav li:last-child a {
    border-bottom: none; }

/* 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: #000a1d; }

.color2 {
  color: #646464; }

.color3 {
  color: #5c4332; }

.num {
  text-align: center; }
  .num a {
    color: #174A8D;
    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: #646464; }
  @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: 1000px;
  margin: 20px auto 20px;
  font-size: 1.2rem;
  font-weight: 400; }
  .breadcrumb li {
    display: inline;
    color: #333; }
    .breadcrumb li a {
      color: rgba(0, 43, 131, 0.6); }
    .breadcrumb li + li:before {
      margin: 0 10px;
      content: ">"; }

/* form
----------------------------------*/
.form {
  margin: 0 auto;
  width: 95%; }
  .form dl dt {
    float: left;
    width: 280px;
    padding-top: 20px; }
    .form dl dt span {
      color: #646464;
      background: #fff;
      border: 1px solid rgba(100, 100, 100, 0.5);
      padding: 5px;
      margin-right: 5px;
      font-size: 11px;
      border-radius: 2px;
      position: relative;
      top: -2px; }
  .form dl dd {
    padding-left: 280px;
    padding-bottom: 20px;
    padding-top: 23px;
    line-height: 1.5;
    border-bottom: 1px dotted #cccccc; }
    .form dl dd:last-child {
      border-bottom: none; }
  .form .textarea,
  .form textarea {
    border: 1px solid #ddd;
    padding: 5px;
    width: 100%;
    border-radius: 0;
    -webkit-appearance: none; }
  .form .textarea {
    height: 30px; }
  .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: #111;
    text-align: center;
    transition: all 0.2s ease-in-out 0s;
    font-family: "-apple-system", BlinkMacSystemFont, "Helvetica Neue", Roboto, "Droid Sans", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Meiryo, sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 8px 5px;
    margin: 0 auto;
    width: 250px;
    background: #002B83;
    border: 1px solid #002B83;
    border-radius: 25px;
    color: #fff; }
    .form button:hover {
      background: #fff;
      color: #002B83; }
    .form button:before {
      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: #ffffff;
    border: 1px solid #dddddd;
    color: #333; }
    .form .select-wrap select {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      position: relative;
      z-index: 2;
      display: block;
      width: 200%;
      width: -webkit-calc(100% + 5em);
      margin: 0;
      padding: 11px 35px 11px 11px;
      padding: 0.6875rem 2.1875rem 0.6875rem 0.6875rem;
      background: transparent;
      border: 0;
      outline: none;
      line-height: 1.5; }
  .form .entypo-down-open-mini:before {
    font-family: "FontAwesome";
    content: "\f0ab";
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 12px;
    right: 0.75rem;
    margin-top: -8px;
    margin-top: -0.5rem;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1;
    color: #002B83; }
  .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: 3px;
      top: 5px;
      background-color: #002B83;
      z-index: 1; }
    .form label.radio_text input[type="radio"] {
      -moz-appearance: none;
      -webkit-appearance: none;
      position: absolute;
      z-index: 2;
      width: 20px;
      height: 20px;
      left: -23px;
      top: 0px;
      margin: 0px;
      box-shadow: 20px -1px #fff; }
      .form label.radio_text input[type="radio"]:checked {
        box-shadow: none; }
      .form label.radio_text input[type="radio"]:focus {
        opacity: 0.2;
        box-shadow: 20px -1px #eeebda; }
  .form label.checkbox_text {
    cursor: pointer;
    position: relative;
    padding-left: 25px;
    margin: 0 20px 5px 0;
    overflow: hidden;
    display: inline-block; }
    .form label.checkbox_text:before {
      content: "";
      position: absolute;
      width: 18px;
      height: 18px;
      left: 0px;
      top: 0;
      border: 1px solid #ccc;
      z-index: 3;
      padding: 1px; }
    .form label.checkbox_text:after {
      content: "";
      position: absolute;
      top: 40%;
      left: 5px;
      display: block;
      margin-top: -9px;
      width: 8px;
      height: 12px;
      border-right: 3px solid #002B83;
      border-bottom: 3px solid #002B83;
      transform: rotate(45deg);
      z-index: 1; }
    .form label.checkbox_text input[type="checkbox"] {
      -moz-appearance: none;
      -webkit-appearance: none;
      position: absolute;
      left: -40px;
      width: 20px;
      height: 20px;
      display: block;
      box-shadow: 41px 0px #fff;
      z-index: 2;
      margin: 0px;
      padding: 0px; }
      .form label.checkbox_text input[type="checkbox"]:checked {
        box-shadow: none; }
        .form label.checkbox_text input[type="checkbox"]:checked:focus {
          box-shadow: 40px 0px #666;
          opacity: 0.1; }
      .form label.checkbox_text input[type="checkbox"]:focus {
        box-shadow: 41px 0px #eee; }

.fm-txt {
  font-size: 1.4rem;
  background: rgba(255, 255, 255, 0.5);
  padding: 5px; }

.select-content {
  display: flex;
  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, 248, 239, 0.5);
  background: url(../img/bg01.jpg);
  padding: 15px; }

.thanks {
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
  background: #FFF8EF; }
  @media all and (max-width: 639px) {
    .thanks {
      max-width: 90%;
      padding: 30px 20px; } }

.shadow {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }

.policy {
  padding: 20px;
  margin-top: 40px;
  border: 1px solid #002B83; }

.mtitle_small {
  position: relative;
  font-size: 1.7rem;
  color: #002B83;
  margin-bottom: 20px; }
  .mtitle_small:before {
    content: "";
    width: 30px;
    height: 1px;
    background-color: #002B83;
    position: absolute;
    left: 0;
    bottom: -15px; }

.mtitle_small2 {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
  font-weight: bold;
  color: #646464;
  font-size: 1.5rem; }
  .mtitle_small2:not(:first-of-type) {
    margin-top: 20px; }
  .mtitle_small2:before {
    content: "";
    background-color: #646464;
    width: 10px;
    height: 4px;
    position: absolute;
    top: 0.7em;
    left: 0; }

/* gallery(photobox)
----------------------------------*/
.gallery_ul {
  display: flex;
  justify-content: start;
  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(100, 100, 100, 0.1);
      margin-bottom: 8px; }
      .gallery_ul li .photobox-wrap img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        font-family: "object-fit: contain;";
        /*IE対策*/
        object-position: 50% 50%; }
      @media all and (max-width: 639px) {
        .gallery_ul li .photobox-wrap {
          height: 280px; } }

/* gallery(lightbox)
----------------------------------*/
.gallery {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap; }
  .gallery li {
    width: 32%;
    margin: 0 5px; }
    .gallery li:nth-child(5n) {
      margin-right: 0; }
    .gallery li a {
      background: rgba(0, 43, 131, 0.1);
      display: block;
      text-align: center;
      padding: 0px;
      height: 270px; }
      .gallery li a img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        font-family: "object-fit: cover;";
        /*IE対策*/ }
    .gallery li p {
      line-height: 1.4;
      margin: 5px 0;
      padding: 5px;
      color: #646464;
      font-family: "Noto Serif JP", serif; }

@media all and (max-width: 800px) {
  .gallery li {
    width: 48%;
    margin: 0 4% 20px 0; }
    .gallery li:nth-child(5n) {
      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: flex;
  flex-wrap: wrap; }
  .list2.js-c {
    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; } }
    @media all and (max-width: 639px) {
      .list2 > li.non,
      .list2 .child.non {
        margin: 0; }
        .list2 > li.non .btn02,
        .list2 .child.non .btn02 {
          margin: 10px auto; } }
    .list2 > li.order,
    .list2 .child.order {
      order: 2; }
      @media all and (max-width: 639px) {
        .list2 > li.order,
        .list2 .child.order {
          order: 0; } }
    .list2 > li.bg_try,
    .list2 .child.bg_try {
      background: rgba(100, 100, 100, 0.2);
      padding: 10px;
      border: 1px solid #646464; }
  .list2.type1 .child {
    overflow: hidden;
    background: #f0f0f0;
    border-radius: 20px; }
    .list2.type1 .child .inner {
      padding: 15px; }

.title-bg {
  background: #4b4b4b;
  color: #fefefe;
  text-align: center;
  padding: 8px 5px;
  font-weight: 600;
  font-size: 1.7rem; }

.list3 {
  display: flex;
  flex-wrap: wrap; }
  .list3 > li, .list3 .child {
    width: 31%;
    margin: 0 3% 25px 0; }
    .list3 > li:nth-child(3n), .list3 .child:nth-child(3n) {
      margin-right: 0; }
  .list3.js-c {
    justify-content: center; }

.list4 {
  display: flex;
  flex-wrap: wrap;
  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: #FFF8EF; }

.flow-dl {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 10px 0; }
  .flow-dl dt {
    background: #002B83;
    font-size: 3rem;
    color: #fff;
    width: 80px;
    text-align: center;
    margin-right: 20px;
    height: 80px;
    padding-top: 8px;
    border-radius: 100%; }
    .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 #646464; }
  .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: flex;
    flex-wrap: wrap; }
    .blog-month ul li {
      border: 1px solid #ccc;
      width: 45%;
      padding: 3px 0;
      margin-bottom: 5px;
      font-size: 0.9em;
      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: #002B83; }
      @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: flex;
    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;
      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 {
      order: -1;
      max-width: 60%; }
      .menu-list > li .left .small {
        color: #646464;
        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: #646464;
  padding: 0 4px; }

.price2 {
  text-align: center;
  margin: 8px 0; }
  .price2 span {
    font-weight: 600;
    color: #646464;
    font-size: 1.1em; }

.list-center {
  display: flex;
  flex-wrap: wrap;
  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: #646464;
  margin-bottom: 10px;
  line-height: 1.5;
  font-weight: 600;
  color: #fefefe; }
  .faq-dl dt:before {
    content: "Q.";
    color: #009B90; }
.faq-dl dd {
  margin-left: auto;
  border-radius: 5px 0 5px 0; }
  .faq-dl dd:before {
    content: "A.";
    color: #FFA41A; }
  .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: #D32B30; }
  .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(100, 100, 100, 0.3);
  padding: 10px;
  border-radius: 10px; }

.iframe {
  border-radius: 4px; }

.frames {
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding: 6px; }
  .frames:before, .frames:after {
    content: "";
    position: absolute;
    z-index: 1;
    background: #002B83;
    transform: rotate(-30deg); }
  .frames:before {
    box-shadow: 0 10px 8px -12px rgba(92, 67, 50, 0.6);
    top: -24px;
    bottom: auto;
    right: auto;
    left: -26px; }
  .frames:after {
    box-shadow: 0 -10px 10px -10px rgba(92, 67, 50, 0.4);
    top: auto;
    bottom: -25px;
    right: -25px;
    left: auto; }

.document-list li a {
  display: block;
  background: #646464;
  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: #646464; }
  .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: #002B83; }

/* vertical contents
----------------------------------*/
.mtitle-vertical {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  font-size: 1.8rem;
  font-weight: 600;
  color: #555; }
  .mtitle-vertical span {
    display: block;
    font-size: 4rem;
    font-family: "Racing Sans One", cursive;
    letter-spacing: 0;
    font-weight: 400;
    color: #002B83; }
  @media all and (max-width: 639px) {
    .mtitle-vertical {
      writing-mode: inherit;
      font-size: 1.3rem; }
      .mtitle-vertical span {
        font-size: 2.5rem; } }

.vertical-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start; }
  @media all and (max-width: 639px) {
    .vertical-box {
      flex-direction: column; } }

.vertical-content {
  flex: 1;
  margin-left: 10%; }
  @media all and (max-width: 639px) {
    .vertical-content {
      flex: 1 0 auto;
      margin: 15px 0 0; } }

.link-txt {
  font-weight: 600;
  border-bottom: 1px dashed #5c4332;
  color: #5c4332; }

.staff-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }
  .staff-wrap .staff-img {
    margin-right: 30px; }
  .staff-wrap .staff-detail {
    flex: 1; }
  @media all and (max-width: 639px) {
    .staff-wrap {
      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: "Racing Sans One", cursive;
    font-weight: normal;
    color: #002B83;
    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%; } }

.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 #313131;
    color: #002B83;
    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: #646464; }
    @media all and (max-width: 639px) {
      .voice dt {
        font-size: 1.5rem; } }
  .voice dd {
    padding: 10px;
    margin-bottom: 30px; }

/* Tiny Carousel */
.slider1 {
  width: 70%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  padding-bottom: 0px;
  background-repeat: repeat; }
  @media all and (max-width: 639px) {
    .slider1 {
      width: 95%; } }
  .slider1 .viewport {
    width: 100%;
    margin: 0 auto;
    height: 230px;
    position: relative; }
    @media all and (max-width: 639px) {
      .slider1 .viewport {
        height: 150px; } }
  .slider1 .buttons {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    display: block;
    position: absolute;
    top: 30%;
    left: 0;
    width: 10px;
    height: 10px;
    color: #002B83;
    text-decoration: none;
    margin: 0 5px;
    z-index: 5;
    cursor: pointer;
    font-size: 60px; }
  .slider1 .next {
    right: 10px;
    left: auto;
    top: 30%; }
  .slider1 .buttons:hover {
    opacity: 0.6; }
  .slider1 .disable {
    visibility: hidden; }
  .slider1 .overview {
    list-style: none;
    position: absolute;
    padding: 0;
    margin: 0;
    width: 180px;
    left: 0;
    top: -1px; }
    .slider1 .overview li {
      width: 230px;
      height: 300px;
      float: left;
      text-align: center;
      vertical-align: middle;
      display: table;
      z-index: 99999;
      overflow: hidden;
      font-weight: bold; }
      @media all and (max-width: 639px) {
        .slider1 .overview li {
          width: 150px;
          height: 150px; } }
  .slider1 img {
    width: 230px;
    height: 240px;
    padding-bottom: 5px;
    vertical-align: middle;
    text-align: center;
    object-fit: cover; }
    @media all and (max-width: 639px) {
      .slider1 img {
        width: 150px;
        height: 150px; } }
  .slider1 li p {
    width: 230px;
    height: 0px;
    text-align: center;
    color: #002B83 !important;
    font-weight: bold;
    font-size: 13px !important;
    border-radius: 10px; }
    @media all and (max-width: 639px) {
      .slider1 li p {
        width: 150px; } }

#blog_flexwrap {
  color: #222222;
  display: -webkit-flex;
  display: flex;
  width: 100%;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  margin: 40px auto; }
  @media (max-width: 960px) {
    #blog_flexwrap {
      width: calc(100% - 16px); } }
  #blog_flexwrap #blog_side {
    width: 300px;
    margin-left: 40px; }
    #blog_flexwrap #blog_side section {
      margin-bottom: 25px; }
  #blog_flexwrap #blog_main {
    flex: 1; }
    #blog_flexwrap #blog_main section {
      padding: 24px;
      margin-bottom: 25px; }

.blog_sttl01 {
  text-indent: 5px;
  border-top: 1px solid #002B83;
  border-bottom: 1px solid #002B83;
  color: #002B83;
  background: #fff;
  padding: 5px 0;
  margin-bottom: 10px;
  font-weight: normal;
  text-align: center; }

.blog_mttl {
  width: calc(100% - 20px);
  color: #002B83;
  font-size: 2.3rem;
  letter-spacing: 0.1rem;
  overflow: hidden;
  font-weight: bold;
  margin: 0px 0 16px;
  line-height: 1.8; }
  @media (max-width: 1200px) {
    .blog_mttl {
      font-size: 1.8rem; } }

.blog_time {
  padding-top: 0px;
  font-weight: normal;
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
  font-weight: 300;
  margin-bottom: 10px;
  text-align: right; }
  @media (max-width: 479px) {
    .blog_time {
      font-size: 1.2rem; } }
  .blog_time:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f017";
    margin-right: 5px;
    font-weight: normal; }

.blog_box {
  min-height: 500px;
  position: relative; }
  .blog_box img {
    max-width: 100%;
    padding: 16px 0; }

.pages {
  width: calc(100% - 20px);
  margin-top: 40px;
  font-size: 1.2rem; }
  .pages a {
    display: block;
    padding: 5px 10px;
    border: 1px solid #002B83;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; }
    .pages a:link, .pages a:visited {
      color: #002B83; }
    .pages a:hover {
      opacity: 0.6; }
  .pages .page_next {
    float: left;
    width: calc(45% - 20px); }
  .pages .page_prev {
    float: right;
    text-align: right;
    width: calc(45% - 20px); }

.archive * {
  transition: 0.3s; }
.archive ul {
  margin: 8px 0 0; }
.archive li {
  background: #FFF8EF;
  box-shadow: rgba(0, 0, 0, 0.1) 0 0 0 1px;
  background: #fff; }
  .archive li a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 8px; }
    .archive li a:link, .archive li a:visited {
      color: #333; }
    .archive li a:hover {
      color: #002B83; }

.blog_side_list {
  position: relative;
  margin: 0 0 16px !important;
  padding: 0 !important;
  width: 100% !important;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; }
  .blog_side_list .blog_bx {
    transition: 0.3s ease-in-out;
    width: 100% !important;
    border: 1px solid #002B83;
    position: relative;
    padding: 8px;
    margin-bottom: 8px;
    background: #fff; }
    .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: flex;
      flex-wrap: wrap;
      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 {
      transform: translateY(0px);
      box-shadow: rgba(17, 17, 17, 0.2) 0px 5px 10px 5px; }
    .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;
      box-shadow: rgba(17, 17, 17, 0.1) 0 0 1px 1px; }
    .blog_side_list .blog_bx * {
      -moz-transition: 0.3s;
      -ms-transition: 0.3s;
      -o-transition: 0.3s;
      transition: 0.3s; }
    .blog_side_list .blog_bx img {
      vertical-align: middle;
      height: 100px;
      width: 100%;
      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: #002B83;
      float: none;
      background: #fff;
      padding: 0 0px;
      border-bottom: 1px dashed #002B83; }
    .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: 400;
      color: #002B83;
      font-size: 1.5rem;
      margin-bottom: 8px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      font-family: "Noto Sans JP", sans-serif; }
  .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: flex;
  flex-wrap: wrap;
  justify-content: space-between; }
  .blog_top_list:after {
    content: "";
    display: block;
    width: 31%; }
  .blog_top_list .blog_bx {
    transition: 0.3s ease-in-out;
    width: calc(33.33% - 16px) !important;
    font-size: 12px;
    margin: 25px 0;
    position: relative;
    transform: translateY(0px);
    background-color: #FFFFFF;
    border: 1px solid #002B83;
    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: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      background: #fff; }
      .blog_top_list .blog_bx .blog_bx_flex div {
        width: 100%;
        padding: 16px; }
    .blog_top_list .blog_bx:hover {
      transform: translateY(-16px);
      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 * {
      -moz-transition: 0.3s;
      -ms-transition: 0.3s;
      -o-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%;
      object-fit: cover;
      font-family: "object-fit: cover;"; }
    .blog_top_list .blog_bx:hover img {
      opacity: 1 !important;
      transform: scale(1.1); }
    .blog_top_list .blog_bx .ttl {
      font-weight: bold;
      font-size: 12px;
      color: #fff;
      float: left;
      background: #002B83;
      padding: 0 15px;
      margin-bottom: 5px; }
    .blog_top_list .blog_bx .ttm {
      padding-top: 0px;
      font-size: 12px;
      font-weight: normal;
      color: #aaa; }
      .blog_top_list .blog_bx .ttm: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: #002B83;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      font-family: "Noto Serif JP", serif; }
    .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: flex;
    flex-wrap: wrap;
    justify-content: flex-start; }
    .blog_top_list .blog_bx {
      transition: 0.3s ease-in-out;
      width: 100% !important;
      border: 1px solid #002B83;
      position: relative;
      padding: 8px;
      margin-bottom: 8px;
      background: #fff; }
      .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: flex;
        flex-wrap: wrap;
        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 {
        transform: translateY(0px);
        box-shadow: rgba(17, 17, 17, 0.2) 0px 5px 10px 5px; }
      .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;
        box-shadow: rgba(17, 17, 17, 0.1) 0 0 1px 1px; }
      .blog_top_list .blog_bx * {
        -moz-transition: 0.3s;
        -ms-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s; }
      .blog_top_list .blog_bx img {
        vertical-align: middle;
        height: 100px;
        width: 100%;
        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: #002B83;
        float: none;
        background: #fff;
        padding: 0 0px;
        border-bottom: 1px dashed #002B83; }
      .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: 400;
        color: #002B83;
        font-size: 1.5rem;
        margin-bottom: 8px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-family: "Noto Sans JP", sans-serif; }
    .blog_top_list .blog_bx {
      width: calc(50% - 16px); }
      .blog_top_list .blog_bx figcaption {
        border-radius: 0; }

  #blog_flexwrap {
    display: -webkit-block;
    display: block;
    width: 95%;
    margin: 20px auto 30px; }
    #blog_flexwrap #blog_main {
      width: 100%;
      flex: 1;
      margin-bottom: 32px; }
    #blog_flexwrap #blog_side {
      width: 100%;
      margin-left: 0px; }

  .pages {
    width: 100%; }
    .pages .page_next {
      float: none;
      width: calc(100% - 20px);
      margin-bottom: 8px; }
    .pages .page_prev {
      float: none;
      text-align: left;
      width: calc(100% - 20px); } }
.bg_01 {
  position: relative;
  z-index: 1;
  color: #fff; }
  .bg_01.i01 {
    background: url(../img/2.jpg) no-repeat 70% 50%/cover; }
  .bg_01.i02 {
    background: url(../img/1.jpg) no-repeat 70% 50%/cover; }
  .bg_01.i03 {
    background: url(../img/3.jpg) no-repeat 70% 50%/cover; }
  .bg_01:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.5);
    background-image: linear-gradient(160deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0.8; }

.video {
  margin: 0 auto;
  width: 70%; }
  .video video {
    width: 100%; }
  @media all and (max-width: 639px) {
    .video {
      width: 95%; } }

/* transparent_box
----------------------------------*/
.transparent_box {
  position: relative;
  z-index: 1;
  border: 1px solid #fff;
  -webkit-border-image: url(../img/bdr.png) 3/3px repeat;
  -moz-border-image: url(../img/bdr.png) 3/3px repeat;
  -o-border-image: url(../img/bdr.png) 3/3px repeat;
  border-image: url(../img/bdr.png) 3/3px repeat;
  padding: 50px;
  color: #fff; }
  .transparent_box a {
    color: #fff; }
  .transparent_box:hover {
    background: #fff;
    color: #002B83;
    opacity: .8;
    transition: all 0.3s ease; }
    .transparent_box:hover a {
      color: #002B83; }
  .transparent_box .inner {
    width: auto;
    margin: 0 auto; }
  @media all and (max-width: 639px) {
    .transparent_box {
      padding: 40px; } }

.mtitle_big {
  position: relative;
  margin-bottom: 30px;
  font-size: 2.5rem;
  font-weight: 400;
  text-align: center;
  letter-spacing: .5rem;
  font-family: "Racing Sans One", cursive; }
  .mtitle_big span {
    display: block;
    color: #646464;
    font-family: "Racing Sans One", cursive;
    font-size: 1.5rem; }
  .mtitle_big.b-n {
    margin-bottom: 0px;
    letter-spacing: .05em; }
    @media all and (max-width: 639px) {
      .mtitle_big.b-n {
        font-size: 2rem;
        letter-spacing: .2rem; }
        .mtitle_big.b-n span {
          font-size: 1.3rem; } }

.single_bnr {
  margin: 0 auto;
  max-width: 98%;
  padding: 10px 0; }

.bg_bnr {
  position: relative;
  background-image: url(../img/index_bnr_01.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover; }
  @media screen and (max-width: 667px) {
    .bg_bnr {
      background-position: center; } }

/* transparent_box
----------------------------------*/
.timeline > li {
  overflow: hidden;
  margin: 0;
  position: relative; }

.timeline-date {
  width: 25%;
  float: left;
  text-align: left;
  margin-top: 10px;
  color: #646464;
  font-weight: bold;
  font-family: "Noto Serif JP", serif; }

.timeline-content {
  width: 75%;
  float: left;
  border-left: 1px #ccc solid;
  padding: 10px 0 10px 30px; }
  .timeline-content:before {
    content: '';
    width: 12px;
    height: 12px;
    background: #646464;
    position: absolute;
    left: 24%;
    top: 17px;
    border-radius: 100%; }

/* スマホ */
@media screen and (max-width: 800px) {
  .timeline > li {
    overflow: hidden;
    margin: 0;
    position: relative; }

  .timeline-date {
    width: 25%;
    float: left;
    text-align: left;
    margin-top: 10px; }

  .timeline-content {
    width: 75%;
    float: left;
    border-left: 1px #ccc solid;
    padding: 10px 0 20px 20px; }
    .timeline-content:before {
      content: '';
      width: 12px;
      height: 12px;
      background: #646464;
      position: absolute;
      left: 23.5%;
      top: 17px;
      border-radius: 100%; } }
/* フレックスコンテナ
-------------------------------------------------- */
.k-flex {
  display: flex;
  flex-wrap: wrap;
  width: 100%; }
  .k-flex * {
    box-sizing: border-box; }
  .k-flex img {
    vertical-align: middle;
    max-width: 100%; }
  .k-flex.jc-left {
    justify-content: left; }
  .k-flex.jc-center {
    justify-content: center; }
  .k-flex.jc-right {
    justify-content: right; }
  .k-flex.col-1 > .k-fitem {
    width: 100%; }
  .k-flex.col-2 > .k-fitem {
    width: 50%; }
  .k-flex.col-3 > .k-fitem {
    width: 33.3333333%; }
  .k-flex.col-4 > .k-fitem {
    width: 25%; }
  .k-flex.col-5 > .k-fitem {
    width: 20%; }
  .k-flex > .k-fitem.k-w5 {
    width: 5%; }
  .k-flex > .k-fitem.k-w10 {
    width: 10%; }
  .k-flex > .k-fitem.k-w15 {
    width: 15%; }
  .k-flex > .k-fitem.k-w20 {
    width: 20%; }
  .k-flex > .k-fitem.k-w25 {
    width: 25%; }
  .k-flex > .k-fitem.k-w30 {
    width: 30%; }
  .k-flex > .k-fitem.k-w33 {
    width: 33.3333333%; }
  .k-flex > .k-fitem.k-w35 {
    width: 35%; }
  .k-flex > .k-fitem.k-w40 {
    width: 40%; }
  .k-flex > .k-fitem.k-w45 {
    width: 45%; }
  .k-flex > .k-fitem.k-w50 {
    width: 50%; }
  .k-flex > .k-fitem.k-w55 {
    width: 55%; }
  .k-flex > .k-fitem.k-w60 {
    width: 60%; }
  .k-flex > .k-fitem.k-w65 {
    width: 65%; }
  .k-flex > .k-fitem.k-w70 {
    width: 70%; }
  .k-flex > .k-fitem.k-w75 {
    width: 75%; }
  .k-flex > .k-fitem.k-w80 {
    width: 80%; }
  .k-flex > .k-fitem.k-w85 {
    width: 85%; }
  .k-flex > .k-fitem.k-w90 {
    width: 90%; }
  .k-flex > .k-fitem.k-w95 {
    width: 95%; }
  .k-flex > .k-fitem.k-w100 {
    width: 100%; }
  .k-flex > .k-fitem.order1 {
    order: 1; }
  .k-flex > .k-fitem.order2 {
    order: 2; }
  .k-flex > .k-fitem.order3 {
    order: 3; }
  .k-flex > .k-fitem.order4 {
    order: 4; }

@media screen and (max-width: 768px) {
  .k-flex {
    /*モバイルで100%にしたくない時の指定*/ }
    .k-flex > .k-fitem {
      width: 100% !important; }
      .k-flex > .k-fitem.order1, .k-flex > .k-fitem.order2, .k-flex > .k-fitem.order3, .k-flex > .k-fitem.order4 {
        order: 0 !important; }
    .k-flex.col-4 > .k-fitem {
      width: 50% !important; }
    .k-flex.fix.col-1 > .k-fitem {
      width: 100% !important; }
    .k-flex.fix.col-2 > .k-fitem {
      width: 50% !important; }
    .k-flex.fix.col-3 > .k-fitem {
      width: 33.3333333% !important; }
    .k-flex.fix.col-4 > .k-fitem {
      width: 25% !important; }
    .k-flex.fix.col-5 > .k-fitem {
      width: 20% !important; }
    .k-flex.fix > .k-fitem.k-w5 {
      width: 5% !important; }
    .k-flex.fix > .k-fitem.k-w10 {
      width: 10% !important; }
    .k-flex.fix > .k-fitem.k-w15 {
      width: 15% !important; }
    .k-flex.fix > .k-fitem.k-w20 {
      width: 20% !important; }
    .k-flex.fix > .k-fitem.k-w25 {
      width: 25% !important; }
    .k-flex.fix > .k-fitem.k-w30 {
      width: 30% !important; }
    .k-flex.fix > .k-fitem.k-w33 {
      width: 33.3333333% !important; }
    .k-flex.fix > .k-fitem.k-w35 {
      width: 35% !important; }
    .k-flex.fix > .k-fitem.k-w40 {
      width: 40% !important; }
    .k-flex.fix > .k-fitem.k-w45 {
      width: 45% !important; }
    .k-flex.fix > .k-fitem.k-w50 {
      width: 50% !important; }
    .k-flex.fix > .k-fitem.k-w55 {
      width: 55% !important; }
    .k-flex.fix > .k-fitem.k-w60 {
      width: 60% !important; }
    .k-flex.fix > .k-fitem.k-w65 {
      width: 65% !important; }
    .k-flex.fix > .k-fitem.k-w70 {
      width: 70% !important; }
    .k-flex.fix > .k-fitem.k-w75 {
      width: 75% !important; }
    .k-flex.fix > .k-fitem.k-w80 {
      width: 80% !important; }
    .k-flex.fix > .k-fitem.k-w85 {
      width: 85% !important; }
    .k-flex.fix > .k-fitem.k-w90 {
      width: 90% !important; }
    .k-flex.fix > .k-fitem.k-w95 {
      width: 95% !important; }
    .k-flex.fix > .k-fitem.k-w100 {
      width: 100% !important; }
    .k-flex.fix > .k-fitem.order1 {
      order: 1 !important; }
    .k-flex.fix > .k-fitem.order2 {
      order: 2 !important; }
    .k-flex.fix > .k-fitem.order3 {
      order: 3 !important; }
    .k-flex.fix > .k-fitem.order4 {
      order: 4 !important; } }
/* ビフォーアフター1
================================================== */
.k-beforeAfter1 {
  position: relative; }
  .k-beforeAfter1 * {
    box-sizing: border-box; }
  .k-beforeAfter1 .before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40%;
    z-index: 2; }
  .k-beforeAfter1 .after {
    padding: 10px 10px 30px 30px; }
    .k-beforeAfter1 .after .inner img {
      height: 200px !important; }
  .k-beforeAfter1 .inner {
    position: relative;
    background-color: #fff; }
    .k-beforeAfter1 .inner img {
      width: 100%;
      height: 100px;
      object-fit: cover;
      border: solid 5px #fff;
      object-fit: cover;
      font-family: "object-fit: cover;"; }
    .k-beforeAfter1 .inner p {
      position: absolute;
      top: 10px;
      right: 10px;
      background-color: rgba(0, 43, 131, 0.8);
      padding: 5px 10px;
      text-align: right;
      z-index: 3;
      color: #fff; }
      .k-beforeAfter1 .inner p.only {
        top: 35px; }
    .k-beforeAfter1 .inner a {
      transition: all .3s ease; }
      .k-beforeAfter1 .inner a:hover {
        opacity: 0.6; }

@media screen and (max-width: 768px) {
  .k-beforeAfter1 .before {
    width: 50%; } }
.k-sns1 {
  /*clearfix*/
  width: 100%;
  _display: inline-block;
  /*clearfix*/ }
  .k-sns1 * {
    box-sizing: border-box; }
  .k-sns1:after {
    content: ".";
    display: block;
    height: 0px;
    clear: both;
    visibility: hidden; }
  .k-sns1 .inner-left, .k-sns1 .inner-right {
    width: 95%;
    display: flex;
    flex-wrap: wrap;
    padding: 20px; }
    .k-sns1 .inner-left .k-snsimg, .k-sns1 .inner-right .k-snsimg {
      width: 15%; }
      .k-sns1 .inner-left .k-snsimg > img, .k-sns1 .inner-right .k-snsimg > img {
        width: 100%;
        border-radius: 100%;
        border: solid thin #999;
        object-fit: cover;
        font-family: "object-fit: cover;"; }
      .k-sns1 .inner-left .k-snsimg > figcaption, .k-sns1 .inner-right .k-snsimg > figcaption {
        text-align: center;
        font-size: 0.8em; }
    .k-sns1 .inner-left .k-snsbody, .k-sns1 .inner-right .k-snsbody {
      position: relative;
      width: 80%;
      padding: 20px;
      border-radius: 20px; }
      .k-sns1 .inner-left .k-snsbody:before, .k-sns1 .inner-left .k-snsbody:after, .k-sns1 .inner-right .k-snsbody:before, .k-sns1 .inner-right .k-snsbody:after {
        position: absolute;
        content: ''; }
  .k-sns1 .inner-left {
    float: left; }
    .k-sns1 .inner-left .k-snsbody {
      margin-left: 5%;
      background: #eee; }
      .k-sns1 .inner-left .k-snsbody::before {
        border: 10px solid transparent;
        border-right: solid 10px #eee;
        top: 22px;
        left: -20px; }
    .k-sns1 .inner-left .k-snsstamp {
      position: relative;
      width: 20%;
      margin-top: 15px;
      margin-left: 20%; }
      .k-sns1 .inner-left .k-snsstamp .stamp-inner {
        overflow: hidden;
        border: solid thin #999;
        border-radius: 20px; }
        .k-sns1 .inner-left .k-snsstamp .stamp-inner img {
          width: 100%;
          object-fit: cover;
          font-family: "object-fit: cover;"; }
      .k-sns1 .inner-left .k-snsstamp::after {
        width: 4em;
        position: absolute;
        bottom: 0;
        left: calc(100% + 0.8em);
        content: "原文画像";
        font-size: 0.8em; }
  .k-sns1 .inner-right {
    float: right; }
    .k-sns1 .inner-right .k-snsimg {
      order: 2; }
    .k-sns1 .inner-right .k-snsbody {
      margin-right: 5%;
      order: 1;
      background: #9cd6e7; }
      .k-sns1 .inner-right .k-snsbody::after {
        border: 10px solid transparent;
        border-left: solid 10px #9cd6e7;
        top: 22px;
        right: -20px; }

@media screen and (max-width: 768px) {
  .k-sns1 {
    font-size: 0.9rem; }
    .k-sns1 .inner-left, .k-sns1 .inner-right {
      width: 100%;
      padding: 5px; }
      .k-sns1 .inner-left .k-snsstamp, .k-sns1 .inner-right .k-snsstamp {
        width: 30%; }
      .k-sns1 .inner-left .k-snsbody, .k-sns1 .inner-right .k-snsbody {
        padding: 15px; } }
.pola img {
  width: 100%;
  border: solid 5px #fff;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  object-fit: cover;
  font-family: "object-fit: cover;"; }
.pola p {
  text-align: center;
  margin: 5px 0 10px; }

.item_box {
  width: 100%;
  text-align: center;
  line-height: 1.5;
  font-weight: bold;
  padding: 10px 5px;
  border-radius: 5px;
  box-sizing: border-box; }
  .item_box.ib01 {
    background: #003cb6;
    border: 3px solid #002B83;
    color: #fff; }
  .item_box.ib02 {
    background: #646464;
    border: 3px solid #4b4b4b;
    color: #fff; }

a.anchor {
  display: block;
  padding-top: 140px;
  margin-top: -140px; }
  @media screen and (max-width: 768px) {
    a.anchor {
      padding-top: 10px;
      margin-top: -10px; } }

.guide_title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #222;
  border-bottom: 1px solid;
  border-image: linear-gradient(to right, #002B83 0%, #fff 100%);
  border-image-slice: 1;
  line-height: 1.3;
  font-weight: 300; }
  .guide_title .en {
    font-size: 4rem;
    letter-spacing: 0.1rem;
    margin-right: 15px;
    color: #646464;
    font-family: "Racing Sans One", cursive;
    font-weight: 300; }
  .guide_title::after {
    margin-left: 10px;
    font-family: "Font Awesome 5 Free";
    content: "\f358";
    font-weight: bold;
    color: #646464; }
  .guide_title.active::after {
    margin-left: 10px;
    font-family: "Font Awesome 5 Free";
    content: "\f35b";
    font-weight: bold;
    color: #646464; }
  @media all and (max-width: 639px) {
    .guide_title {
      font-size: 1.1rem;
      padding-bottom: 5px; }
      .guide_title .en {
        font-size: 2.5em;
        display: block; } }

.guide_detail {
  display: none; }

.tbbr {
  display: none; }
  @media all and (max-width: 800px) {
    .tbbr {
      display: block; } }

.probr {
  display: none; }
  @media screen and (max-width: 1400px) {
    .probr {
      display: block; } }
  @media all and (max-width: 800px) {
    .probr {
      display: none; } }

.slash-1 {
  height: 10px;
  border-top: none;
  background-image: linear-gradient(-45deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 25%, rgba(0, 43, 131, 0.3) 25%, rgba(0, 43, 131, 0.3) 50%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 75%, rgba(0, 43, 131, 0.3) 75%);
  background-size: 5px 5px;
  width: 100%; }
