@charset "UTF-8";
/*
+++++++++++++++++++++++++++++++++++++++++
                  共通部分
++++++++++++++++++++++++++++++++++++++++++++++
*/
html {
  /*16px*62.5%=10px*/
  font-size: 62.5%;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  color: #333333;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  /*文字詰*/
  letter-spacing: 0.05em;
  line-height: 2;
  font-size: 14px;
}

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

.wrapper {
  max-width: 740px;
  margin: 0 auto;
}

p {
  font-size: 1.4rem;
  line-height: 1.6;
}

.pc_br {
  display: none;
}

.sp_br {
  display: block;
}

.content_inr {
  padding-top: 60px;
  margin-top: -60px;
}

@media screen and (min-width: 1024px) {
  .page {
    position: relative;
    padding-left: 140px;
    height: 100%;
    top: 0;
    left: 0;
  }

  .top .page {
    overflow: hidden;
  }

  body {
    font-size: 16px;
    /*pcサイズ時のフォントサイズ指定*/
  }

  .pc_br {
    display: block;
  }

  .sp_br {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  .page {
    overflow: hidden;
  }
}
/*
+++++++++++++++++++++++++++++++++++++++++
              メインコピー　アニメーション
++++++++++++++++++++++++++++++++++++++++++++
*/
/* fadeUp */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(80px);
            transform: translateY(80px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(80px);
            transform: translateY(80px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* fadeDown */
.fadeDown {
  -webkit-animation-name: fadeDownAnime;
          animation-name: fadeDownAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

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

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* fadeLeft */
.fadeLeft {
  -webkit-animation-name: fadeLeftAnime;
          animation-name: fadeLeftAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger {
  opacity: 0;
}

/*
+++++++++++++++++++++++++++++++++++++++++
                 ボタン
++++++++++++++++++++++++++++++++++++++++++++
++*/
.btn {
  display: block;
  width: 200px;
  max-width: 100%;
  line-height: 40px;
  background-color: #1e3385;
  color: #fff;
  padding-left: 40px;
  position: relative;
  font-size: 1.4rem;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  border: 1px solid #1e3385;
}
.btn::before {
  content: "";
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  top: 50%;
  right: 40px;
  margin-top: -4px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.btn:hover {
  background-color: #fff;
  color: #1e3385;
  border: 1px solid #1e3385;
}
.btn:hover::before {
  border-color: #1e3385;
}

/*
+++++++++++++++++++++++++++++++++++++++++
                 header
++++++++++++++++++++++++++++++++++++++++++++
++*/
header {
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.header_inr {
  padding: 10px 20px;
}
.header_inr .logo {
  width: 160px;
}
.header_inr .logo img {
  padding-top: 10px;
  vertical-align: middle;
}
.header_inr .logo a {
  outline: none;
}
.header_inr .zdo_drawer_menu {
  display: block;
}
.header_inr .header_nav {
  display: none;
}
.header_inr .header_contact {
  display: none;
}

/*レスポンシブ*/
@media screen and (min-width: 1024px) {
  header {
    width: 140px;
    height: 100%;
    top: 0;
    left: 0;
    border-right: 1px solid #1e3385;
  }

  .header_inr {
    padding: 0;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header_inr .logo {
    padding: 4vh 10px;
    width: auto;
    max-width: 140px;
    max-height: 14%;
  }
  .header_inr .logo img {
    padding-top: 0;
  }
  .header_inr .zdo_drawer_menu {
    display: none;
  }
  .header_inr .header_nav {
    display: block;
    margin-top: auto;
    margin-bottom: auto;
  }
  .header_inr .header_nav ul {
    padding-bottom: 8vh;
  }
  .header_inr .header_nav ul li {
    font-size: 1.4rem;
  }
  .header_inr .header_nav ul li a {
    display: block;
    width: 100%;
    color: #1e3385;
    padding: 2vh 20px 2vh 24px;
  }
  .header_inr .header_nav ul li a:hover {
    background-color: #1e3385;
    color: #fff;
  }
  .header_inr .header_contact {
    display: block;
  }
  .header_inr .header_contact li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header_inr .header_contact li img {
    display: block;
    width: 20%;
    max-width: 30px;
    margin: 0 auto;
    padding-bottom: 2vh;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .header_inr .header_contact li a {
    display: block;
    max-width: 100%;
    width: 140px;
    padding: 3vh 0;
    color: #1e3385;
    font-size: 1.4rem;
    font-family: "Yu Mincho", serif;
    text-align: center;
  }
  .header_inr .header_contact li a:hover img {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  .header_inr .header_contact .header_mail {
    background-color: #1e3385;
  }
  .header_inr .header_contact .header_mail a {
    color: #fff;
  }
}
/*
+++++++++++++++++++++++++++++++++++++++++
            見出し
++++++++++++++++++++++++++++++++++++++++++++
*/
.sec_ttl {
  color: #1e3385;
  font-size: 1.8rem;
  font-family: "Yu Mincho", serif;
  font-weight: 600;
  line-height: 1.6;
}
.sec_ttl span {
  display: block;
  font-family: "Noto Sans", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  color: #333333;
  font-size: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 10px;
  line-height: 1;
}
.sec_ttl span::after {
  content: "";
  width: 30px;
  height: 1px;
  background-color: #333333;
  margin-left: 10px;
}

@media screen and (min-width: 1024px) {
  .sec_ttl {
    font-size: 2rem;
  }
  .sec_ttl span::after {
    width: 60px;
    margin-left: 20px;
  }
}
/*
+++++++++++++++++++++++++++++++++++++++++
                 メインビジュアル
++++++++++++++++++++++++++++++++++++++++++++
*/
.bgimg1 {
  background: url(../img/main01.jpg) no-repeat left/cover;
}

.bgimg2 {
  background: url(../img/main02.jpg) no-repeat right/cover;
}

.main-visual__slider {
  position: relative;
}
.main-visual__slider .main_copy {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  font-family: "游明朝", serif;
  color: #fff;
  text-shadow: 0px 2px 1.78px rgba(36, 36, 36, 0.2);
  text-align: center;
  line-height: 1.4;
}
.main-visual__slider .main_copy h1 {
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  padding-bottom: 10px;
}
.main-visual__slider .main_copy span {
  display: block;
  font-size: 1.6rem;
}
.main-visual__slider .main_copy p {
  font-size: 1.2rem;
  line-height: 2;
  font-weight: 500;
  padding-top: 10px;
}

.swiper-slide {
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-bgimg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-main {
  height: 80vh;
  /*     height: calc(100vh - 216px);
      min-height: 700px; */
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.6s ease, transform 0.3s ease;
  transition: opacity 0.6s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.swiper-container-main .swiper__boby {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 5.4rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
}
.swiper-container-main .swiper__boby img {
  width: 500px;
  -webkit-filter: drop-shadow(0px 5px 3px #2d2c2d);
          filter: drop-shadow(0px 5px 3px #2d2c2d);
}
.swiper-container-main .swiper__boby .swiper__heading {
  font-size: 5.4rem;
  text-shadow: 0px 5px 3px rgba(0, 0, 0, 0.55);
}
.swiper-container-main .swiper__boby .swiper__heading span {
  display: block;
  padding-left: 120px;
}
.swiper-container-main:hover .swiper-button-prev,
.swiper-container-main:hover .swiper-button-next {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

/*sp*/
@media screen and (max-width: 769px) {
  .swiper-container-main {
    height: calc(80vh - 50px);
    min-height: auto;
  }
  .swiper-container-main .swiper__boby .swiper__heading {
    font-size: 2.8rem;
  }
  .swiper-container-main .swiper__boby img {
    width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .main-visual__slider .main_copy h1 {
    font-size: 4.2rem;
  }
  .main-visual__slider .main_copy span {
    display: inline-block;
    font-size: 4rem;
    padding: 0 20px;
  }
  .main-visual__slider .main_copy p {
    font-size: 1.6rem;
    line-height: 2;
  }
}
/*
+++++++++++++++++++++++++++++++++++++++++
            footer
++++++++++++++++++++++++++++++++++++++++++++
*/
footer {
  background-color: #f3f8fa;
  color: #333333;
  padding: 40px 20px;
  text-align: center;
}
footer a {
  color: #333333;
}
footer a:hover {
  color: #1e3385;
}
footer .footer_nav {
  display: none;
}
footer .footer_logo {
  width: 180px;
  padding: 0 0 30px;
  max-height: 100px;
}
footer .footer_address {
  line-height: 1.6;
  font-size: 1.2rem;
  padding-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .footer_address .f_a {
  text-align: left;
  display: inline-block;
}
footer .footer_address .f_l {
  font-size: 1.2rem;
}
footer small {
  font-size: 1rem;
}

@media screen and (min-width: 1024px) {
  footer {
    padding: 60px 0;
  }
  footer .footer_nav {
    display: block;
  }
  footer .footer_nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  footer .footer_nav ul li {
    font-size: 1.4rem;
    padding-right: 40px;
  }
  footer .footer_nav ul li:last-child {
    padding-right: 0;
  }
  footer .footer_address .f_l {
    padding-left: 50px;
    font-size: 1.4rem;
  }
  footer .footer_logo {
    width: 240px;
    padding: 30px 0;
  }
}
/*
+++++++++++++++++++++++++++++++++++++++++
            page_header
++++++++++++++++++++++++++++++++++++++++++++
*/
.page_header {
  height: 35vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 60px;
}
.page_header .sec_ttl {
  color: #fff;
  font-size: 2.4rem;
  line-height: 1.2;
  font-weight: 700;
  text-shadow: 0px 3px 2px rgba(35, 35, 35, 0.13);
}
.page_header .sec_ttl span {
  color: #fff;
}
.page_header .sec_ttl span::after {
  background-color: #fff;
}

@media screen and (min-width: 1024px) {
  .page_header {
    height: 30vh;
    padding-top: 0;
    width: calc( 100% - 140px );
    margin-left: auto;
  }
  .page_header .sec_ttl {
    font-size: 3.6rem;
  }
}
/*# sourceMappingURL=base.css.map */