@charset "UTF-8";
/* アニメーションベンダープレフィックス込み指定 */
/* アニメーションベンダープレフィックス込み指定 */
body {
  color: #333;
  font-family: "YakuHanJP", Lato, "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "Meiryo", "メイリオ", sans-serif;
  font-size: 1.6rem;
  line-height: 1.7;
  letter-spacing: 0.07em;
  font-weight: 500;
}

a {
  color: #004896;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a:hover {
  color: #003063;
}

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

/* language
----------------------------------*/
.ja {
  font-family: "YakuHanJP", Lato, "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "Meiryo", "メイリオ", sans-serif;
}

.en {
  font-family: "YakuHanJP", "Roboto Condensed", sans-serif;
  text-transform: uppercase;
}

.en2 {
  font-family: "YakuHanJP", "Roboto Condensed", sans-serif;
}

.uppercase {
  text-transform: uppercase;
}

/* loader
----------------------------------*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(120deg, #296cb2 0%, #004896 100%);
  z-index: 9999999;
  text-align: center;
  color: #fff;
}

#splash-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 290px;
}

.splashbg1,
.splashbg2 {
  display: none;
}

body.appear .splashbg1,
body.appear .splashbg2 {
  display: block;
}

body.appear .splashbg1 {
  -webkit-animation-name: PageAnime;
          animation-name: PageAnime;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 50%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  background: #004896;
}

body.appear .splashbg2 {
  -webkit-animation-name: PageAnime2;
          animation-name: PageAnime2;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  right: 50%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  background: #004896;
}

@-webkit-keyframes PageAnime {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

@keyframes PageAnime {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

@-webkit-keyframes PageAnime2 {
  0% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  100% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

@keyframes PageAnime2 {
  0% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  100% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

#container {
  opacity: 0;
}

body.appear #container {
  -webkit-animation-name: PageAnimeAppear;
          animation-name: PageAnimeAppear;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* header
----------------------------------*/
#header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#header #logo {
  width: 275px;
}

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

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

#header #head_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 164px;
}

#header.static {
  position: static;
}

#header.is-fixed {
  position: fixed;
}

#header.is-hide {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.underlayer #header {
  background-color: #fff !important;
}

/* navi
----------------------------------*/
#navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

#navi > li {
  margin-right: 15px;
  padding-right: 15px;
}

#navi > li a {
  color: #333;
  font-weight: 600;
  line-height: 1.2;
}

#navi > li span {
  display: block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #004896;
  font-size: 1.2rem;
}

#navi > li em {
  font-style: normal;
}

/* mega_menu
----------------------------------*/
.mega_menu {
  opacity: 0;
  overflow: hidden;
  position: absolute;
  top: 94px;
  left: 0;
  z-index: 10;
  width: 100%;
  max-height: 0;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.mega_parents:hover .mega_menu {
  opacity: 1;
  max-height: 9999px;
  padding: 20px 0;
}

.mega_menu_01 {
  background-image: linear-gradient(120deg, #296cb2 0%, #00a15a 100%);
}

.mega_menu_02 {
  background-image: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
}

.mega_menu_03 {
  background-image: linear-gradient(120deg, #f093fb 0%, #f5576c 100%);
}

.mega_menu_04 {
  background-image: linear-gradient(120deg, #00a15a 0%, #004896 100%);
}

.mega_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 20px;
}

.mega_wrap .ttl_area {
  width: 240px;
  padding-top: 40px;
  margin-right: auto;
}

.mega_wrap .ttl_area .ttl {
  font-size: 3.2rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
}

.mega_wrap .ttl_area .ttl span {
  font-size: 1.4rem !important;
  color: #fff !important;
}

.mega_wrap .ttl_area .ttl em {
  font-style: normal;
}

.mega_wrap .menu_list {
  width: calc(100% - 260px);
  max-width: 1024px;
  margin-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.mega_wrap .menu_list li {
  width: 25%;
  max-width: 250px;
  margin: 0 1px;
}

.mega_wrap .menu_list li a {
  display: block;
}

.mega_wrap .menu_img {
  position: relative;
  overflow: hidden;
  height: 160px;
}

.mega_wrap .menu_img img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
}

.mega_wrap .menu_btn {
  position: relative;
  background-color: #fff;
  color: #333;
  font-size: 1.3rem;
  line-height: 1.3;
  padding: 20px 5px;
}

.mega_wrap .menu_btn:after {
  position: absolute;
  top: calc(50% - 0.5em);
  right: 10px;
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  color: #004896;
}

/* head_tel
----------------------------------*/
.head_tel {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #004896;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.6);
  padding: 19px 16px;
}

.head_tel a {
  display: block;
  position: relative;
  padding-left: 1.2em;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
}

.head_tel a::before {
  font-family: "Font Awesome 5 Free";
  content: "\f095";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* hamburger
----------------------------------*/
.hamburger-demo-menubox {
  display: none;
}

.hamburger-demo-menubox li {
  font-size: 1.4rem;
}

.input-hidden {
  display: none;
}

.hamburger-demo-switch {
  cursor: pointer;
  position: fixed;
  right: 3%;
  top: 1%;
  z-index: 9999;
  width: 4em;
  height: 4em;
}

#hamburger-demo8:checked ~ .hamburger-demo-switch {
  position: fixed;
}

.hamburger-demo-menuwrap {
  position: fixed;
  height: 100%;
  background: #fafafa;
  padding: 5em 3% 2em;
  z-index: 9998;
  -webkit-transition: .3s;
  transition: .3s;
  overflow-y: scroll;
  top: 0;
  left: 100%;
  width: 70%;
}

.hamburger-demo-menulist {
  margin-right: 3%;
  padding-left: 5% !important;
  list-style: none;
}

.hamburger-demo-menulist li a {
  display: block;
  text-decoration: none;
  color: #333;
}

#hamburger-demo8:checked ~ .hamburger-demo-menuwrap {
  left: 30%;
}

#hamburger-demo8:checked ~ .hamburger-demo-cover {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9997;
  background: rgba(3, 3, 3, 0.5);
  display: block;
}

.hamburger-switch-half {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: .3s;
  transition: .3s;
  content: "";
}

.hamburger-demo-switch8:before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: .3s;
  transition: .3s;
  content: "";
  width: 25px;
  height: 3px;
  background: #333;
}

.hamburger-switch-half:before, .hamburger-switch-half:after {
  content: "";
  position: absolute;
  width: 12.5px;
  height: 3px;
  background: #333;
  top: 50%;
  left: 50%;
  -webkit-transition: .3s;
  transition: .3s;
}

.hamburger-switch-half:before {
  -webkit-transform: translate(-100%, -300%);
          transform: translate(-100%, -300%);
}

.hamburger-switch-half:after {
  -webkit-transform: translate(0, 200%);
          transform: translate(0, 200%);
}

#hamburger-demo8:checked ~ .hamburger-demo-switch .hamburger-switch-half:before {
  -webkit-transform: translate(-85%, -200%) rotate(45deg);
          transform: translate(-85%, -200%) rotate(45deg);
}

#hamburger-demo8:checked ~ .hamburger-demo-switch .hamburger-switch-half:after {
  -webkit-transform: translate(-15%, 100%) rotate(45deg);
          transform: translate(-15%, 100%) rotate(45deg);
}

#hamburger-demo8:checked ~ .hamburger-demo-switch8:before {
  -webkit-transform: rotate(-45deg) translate(-32%, -335%);
          transform: rotate(-45deg) translate(-32%, -335%);
}

.hamburger-menulist-half li {
  position: relative;
  margin-bottom: .5em;
}

.hamburger-menulist-half a {
  padding: 1em;
}

.hamburger-menulist-half a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1em;
  border: 1.5px solid;
  border-color: transparent #333 #333 transparent;
  left: 50%;
  bottom: 0;
  -webkit-transform: skewx(45deg) translate(-50%, -50%);
          transform: skewx(45deg) translate(-50%, -50%);
}

/* page-top
----------------------------------*/
#page-top {
  position: fixed;
  right: -10px;
  bottom: 6em;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  z-index: 5;
}

#page-top a {
  display: block;
  position: relative;
  color: #333;
  font-weight: 400;
}

#page-top a:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  display: inline-block;
  width: 50px;
  height: 1px;
  background-color: #333;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

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

/* footer
----------------------------------*/
#footer {
  background-image: linear-gradient(120deg, #296cb2 0%, #004896 100%);
  color: #fff;
}

#footer .inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 130px 0;
}

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

#footer .foot_address {
  width: 34%;
}

#footer .foot_link {
  width: 60%;
}

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

#footer .link_list a {
  position: relative;
  color: #fff;
}

#footer .link_list a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#footer .link_list a:hover:after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

#footer .link_list > li > a {
  font-weight: 600;
}

#footer .sub_link_list {
  margin-top: 15px;
  font-size: 1.3rem;
}

#footer .sub_link_list li {
  margin-top: 10px;
}

#footer .sub_link_list li a {
  position: relative;
  padding-left: 15px;
}

#footer .sub_link_list li a:before {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  color: #296cb2;
}

#footer .address {
  font-size: 1.2rem;
}

#footer .flogo {
  margin-bottom: 24px;
  width: 300px;
}

#footer .copyright {
  margin-top: 40px;
  text-align: center;
  font-size: 1rem;
}

/* sp_navi
----------------------------------*/
#sp_navi,
.humb-menu {
  display: none;
}

/* slideshow
----------------------------------*/
#slideshow {
  position: relative;
  overflow: hidden;
}

.slide_txt {
  position: absolute;
  bottom: 20%;
  left: 5%;
  z-index: 2;
  color: #fff;
  font-size: 4.5rem;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}

.slide_txt em {
  display: inline-block;
  padding: 0 1em;
  font-style: normal;
  font-size: 3rem;
}

.slide_txt_01 em {
  background-image: linear-gradient(120deg, #296cb2 0%, #00918f 100%);
}

.slide_txt_02 em {
  background-image: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
}

.slide_txt_03 em {
  background-image: linear-gradient(120deg, #f093fb 0%, #f5576c 100%);
}

.swiper-slide {
  overflow: hidden;
  position: relative;
}

.slide-img {
  overflow: hidden;
  height: 100vh;
}

.slide-img img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  vertical-align: middle;
}

.slide-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

.scroll_down {
  position: absolute;
  bottom: 5%;
  left: 50%;
  z-index: 2;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  color: #fff;
  padding-top: 60px;
}

.scroll_down span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 30px;
  height: 50px;
  margin-left: -15px;
  border: 2px solid #fff;
  border-radius: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.scroll_down span::before {
  position: absolute;
  top: 10px;
  left: 50%;
  content: '';
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: sdb 2s infinite;
  animation: sdb 2s infinite;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@-webkit-keyframes sdb {
  0% {
    -webkit-transform: rotateY(0) rotateZ(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: rotateY(720deg) rotateZ(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}

@keyframes sdb {
  0% {
    -webkit-transform: rotateY(0) rotateZ(-45deg) translate(0, 0);
            transform: rotateY(0) rotateZ(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: rotateY(720deg) rotateZ(-45deg) translate(-20px, 20px);
            transform: rotateY(720deg) rotateZ(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}

/* contact_btn
----------------------------------*/
.contact_btn li a,
.contact_btn li button {
  display: block;
  position: relative;
  overflow: hidden;
  padding: 0.5em 3em;
  border-radius: 5em;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
}

.contact_btn li a span,
.contact_btn li button span {
  position: relative;
}

.contact_btn li a:before,
.contact_btn li button:before {
  display: block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
}

.contact_btn li a:after,
.contact_btn li button:after {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.contact_btn li a:hover:before,
.contact_btn li button:hover:before {
  width: 100%;
}

.contact_btn li .contact_other {
  background-color: #296cb2;
  color: #fff;
}

.contact_btn li .contact_other:before {
  background-color: #245f9d;
}

.contact_btn li .contact_mail {
  background: -webkit-gradient(linear, left top, right top, color-stop(20%, #004896), color-stop(80%, #47cdba));
  background: linear-gradient(90deg, #004896 20%, #47cdba 80%);
  color: #fff;
}

.contact_btn li .contact_mail:before {
  background-color: #004896;
}

.contact_btn li .contact_shop {
  background-color: #fff;
  border: 1px solid #004896;
  color: #004896;
}

.contact_btn li .contact_shop:before {
  background-color: #004896;
}

.contact_btn li .contact_shop:hover {
  color: #fff;
}

.contact_btn li .contact_w_01 {
  max-width: 340px;
  padding: 1em 3em;
}

.contact_btn li .contact_w_02 {
  margin: 30px auto 0;
}

/* contents
----------------------------------*/
.single_01 {
  margin: 0 auto;
  max-width: 1240px;
  padding-bottom: 80px;
}

.single_02 {
  margin: 0 auto;
  max-width: 1024px;
  padding-bottom: 80px;
}

.single_03 {
  margin: 0 auto;
  max-width: calc(100% - 100px);
  padding-bottom: 80px;
}

.single_04 {
  margin: 0 auto;
  max-width: 768px;
  padding-bottom: 80px;
}

.single_05 {
  margin: 0 auto;
  max-width: 1240px;
}

.single_06 {
  margin: 0 auto;
  max-width: 1024px;
}

.single_07 {
  margin: 0 auto;
  max-width: calc(100% - 100px);
}

.single_08 {
  margin: 0 auto;
  max-width: 768px;
}

.single_09 {
  padding-bottom: 80px;
}

/* bg
----------------------------------*/
.bg_common {
  padding-top: 80px;
}

.bg_b {
  margin-bottom: 80px;
}

.bg_01 {
  position: relative;
  background-color: #f3f3f3;
}

.bg_02 {
  position: relative;
}

.bg_02::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 65%;
  height: 100%;
  background-color: #f3f3f3;
}

.bg_03 {
  position: relative;
  background-image: url(../img/bg_recruit.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.bg_04 {
  position: relative;
  background-image: url(../img/bg_04.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.bg_05 {
  position: relative;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(25%, #fff), color-stop(25%, #f4fbfc), color-stop(50%, #f4fbfc), color-stop(50%, #fff), color-stop(75%, #fff), color-stop(75%, #f4fbfc), to(#f4fbfc));
  background-image: linear-gradient(90deg, #fff 25%, #f4fbfc 25%, #f4fbfc 50%, #fff 50%, #fff 75%, #f4fbfc 75%, #f4fbfc);
  background-size: 100px 100px;
}

.bg_06 {
  position: relative;
}

.bg_06::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 65%;
  height: 100%;
  background-color: #f3f3f3;
}

.bg_07 {
  position: relative;
  background-color: #004896;
  color: #fff;
}

/* column
----------------------------------*/
.half {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.half > .child {
  width: 50%;
}

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

.triple .child {
  width: 33.3%;
}

.column2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: -3%;
}

.column2 > .child {
  width: 48.44%;
  margin: 0 3% 3% 0;
}

.column2 > .child:nth-child(2n) {
  margin: 0 0 3% 0;
}

.column3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: -3%;
}

.column3 > .child {
  width: 31.3%;
  margin: 0 3% 3% 0;
}

.column3 > .child:nth-child(3n) {
  margin: 0 0 3% 0;
}

.column4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: -3%;
}

.column4 > .child {
  width: 22.7%;
  margin: 0 3% 3% 0;
}

.column4 > .child:nth-child(4n) {
  margin: 0 0 3% 0;
}

.column5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: -2%;
}

.column5 > .child {
  width: 18.4%;
  margin: 0 2% 2% 0;
}

.column5 > .child:nth-child(5n) {
  margin: 0 0 2% 0;
}

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

/* mtitle
----------------------------------*/
.mtitle_page {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 4.8rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
}

.mtitle_page span {
  display: block;
  font-size: 1.6rem;
}

.mtitle_big {
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 10px;
  font-size: 3.2rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
}

.mtitle_big::after {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  right: 0;
  border-bottom: 2px solid #004896;
  margin: 0 auto;
  width: 80px;
}

.mtitle_big span {
  display: block;
  color: #004896;
  font-size: 1.6rem;
}

.mtitle_big.white span {
  color: #fff;
}

.mtitle_big.white::after {
  border-bottom: 1px solid #fff;
}

.mtitle_middle {
  position: relative;
  border-bottom: 2px solid #ccc;
  margin-bottom: 20px;
  padding-bottom: 5px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
}

.mtitle_middle:after {
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 2;
  content: "";
  width: 20%;
  height: 2px;
  background-color: #004896;
}

.mtitle_middle span {
  margin-left: 1em;
  color: #004896;
  font-size: 1.2rem;
}

.mtitle_small {
  position: relative;
  background-color: #fff;
  border: 1px solid #ddd;
  font-size: 2rem;
  padding: 15px 30px;
  margin-bottom: 20px;
}

.mtitle_small:before {
  position: absolute;
  top: 15%;
  left: 8px;
  width: 6px;
  height: 70%;
  content: "";
  background: #004896;
}

.mtitle_small span {
  font-size: 0.8em;
}

.mtitle {
  position: relative;
  margin-bottom: 24px;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.4;
}

.mtitle_top {
  position: relative;
  margin: 16px 0;
  padding-bottom: 8px;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}

.mtitle_top::after {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid #fff;
  margin: 0 auto;
  width: 100px;
}

.mtitle_sub {
  margin-bottom: 15px;
  font-size: 2rem;
  font-weight: 600;
}

.mtitle_sub2 {
  padding-left: 0.5em;
  position: relative;
  border-left: 6px solid #3c85d2;
  margin: 8px 0 15px;
  line-height: 1.4;
  text-align: left;
  font-size: 1.6rem;
}

.mtitle_sub2:before {
  position: absolute;
  left: -6px;
  bottom: 0;
  content: "";
  width: 6px;
  height: 50%;
  background-color: #296cb2;
}

.mtitle_sub2.type1 {
  border-left: 6px solid #0060c9;
}

.mtitle_sub2.type1:before {
  background-color: #004896;
}

@media screen and (max-width: 667px) {
  .mtitle_sub2 {
    font-size: 1.3rem;
  }
}

.mtitle_news {
  margin-bottom: 5px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.mtitle_ribon {
  position: absolute;
  top: -25px;
  left: -10px;
  width: 100%;
}

.mtitle_ribon span {
  display: inline-block;
  background: #004896;
  color: #fff;
  font-size: 1.8rem;
  padding: 10px 30px;
}

.mtitle_ribon:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 0;
  border-color: transparent #001730 transparent transparent;
  position: absolute;
  left: 0;
  bottom: -10px;
}

.mtitle_greeting {
  margin-bottom: 30px;
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
}

.mtitle_greeting span {
  display: block;
  position: relative;
  color: #004896;
  font-size: 1.6rem;
}

.mtitle_list {
  position: relative;
  z-index: 1;
  background-color: #fff;
  padding: 15px 0 22px;
  font-size: 2.4rem;
  text-align: center;
}

.mtitle_list span {
  display: block;
  color: #004896;
  font-size: 1.2rem;
}

.mtitle_list:before, .mtitle_list:after {
  content: "";
  display: block;
  position: absolute;
  background-color: #fff;
  width: 24px;
  height: 28px;
  bottom: -6px;
}

.mtitle_list:before {
  right: 50%;
  -webkit-transform: skewY(30deg);
  transform: skewY(30deg);
}

.mtitle_list:after {
  left: 50%;
  -webkit-transform: skewY(-30deg);
  transform: skewY(-30deg);
}

.mtitle_balloon {
  font-size: 3.2rem;
  margin-bottom: 30px;
}

.mtitle_balloon span {
  position: relative;
  display: inline-block;
  padding-bottom: 24px;
  line-height: 1em;
  overflow: hidden;
  font-weight: 600;
}

.mtitle_balloon span:before, .mtitle_balloon span:after {
  content: "";
  display: block;
  border-bottom: 3px solid #333;
  position: absolute;
  width: 50%;
  bottom: 6px;
}

.mtitle_balloon span:before {
  left: -5px;
}

.mtitle_balloon span:after {
  right: -5px;
}

.mtitle_balloon span i {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 3px solid #333;
  border-right: 3px solid #333;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  position: absolute;
  left: 50%;
  margin-left: -5px;
  bottom: 2px;
}

.mtitle_point {
  position: relative;
  margin: -32px 0 16px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
}

.mtitle_point span {
  display: block;
  color: #004896;
}

.mtitle_point em {
  font-style: normal;
  font-size: 1.8em;
  margin-left: .1em;
}

.mtitle_medical {
  position: relative;
  margin: 16px 0;
  padding-bottom: 8px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}

.mtitle_medical::after {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid #004896;
  margin: 0 auto;
  width: 100px;
}

/* btn
----------------------------------*/
.btn_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
}

.btn_flex .btn_common {
  margin: 0 3em;
  width: 270px;
}

.btn_common {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin-top: 40px;
  padding: 1em 2em;
  max-width: 250px;
  -webkit-transition: .3s;
  transition: .3s;
  font-weight: 600;
}

.btn_common::before {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: -2em;
  -webkit-transform: translateY(calc(-50% - 2px)) rotate(30deg);
          transform: translateY(calc(-50% - 2px)) rotate(30deg);
  width: 12px;
  height: 2px;
  -webkit-transition: .3s;
  transition: .3s;
}

.btn_common::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -2em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 70px;
  height: 2px;
  -webkit-transition: .3s;
  transition: .3s;
}

.btn_common:hover::before, .btn_common:hover::after {
  right: -2.5em;
}

.btn_auto {
  margin: 40px auto 0;
}

.a_btn {
  background-color: #fff;
  border: 1px solid #004896;
  color: #004896;
}

.a_btn::before {
  background-color: #004896;
}

.a_btn::after {
  background-color: #004896;
}

.a_btn:hover {
  color: #004896;
}

.b_btn {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.b_btn::before {
  background-color: #fff;
}

.b_btn::after {
  background-color: #fff;
}

.b_btn:hover {
  background-color: #fff;
  color: #333;
}

.b_btn:hover::before {
  background-color: #333;
}

.b_btn:hover::after {
  background-color: #333;
}

/* news
----------------------------------*/
.news-bl dt {
  float: left;
  width: 7em;
  margin-bottom: 10px;
  border: 1px solid #004896;
  color: #004896;
  text-align: center;
}

.news-bl dd {
  padding: 0 0 10px 9em;
  border-bottom: 1px dotted #ccc;
  margin: 0 0 10px;
}

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

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

.news_box .news_title {
  width: 20%;
}

.news_box .news_list {
  width: 78%;
}

.news_box .blog_topics {
  width: 78%;
}

.news_list li {
  border-bottom: 1px solid #ccc;
}

.news_list li:first-child {
  border-top: 1px solid #ccc;
}

.news_list li a,
.news_list li .news_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
  color: #333;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.news_list li a:hover,
.news_list li .news_link:hover {
  background-color: #fff;
}

.news_list li .news_date {
  margin-right: 20px;
  font-size: 1.2rem;
}

.news_list li .news_category {
  background: #fff;
  border: 1px solid #004896;
  color: #004896;
  padding: 5px;
  margin-right: 30px;
  min-width: 140px;
  text-align: center;
}

/* tbl
----------------------------------*/
.tbl {
  width: 100%;
  background-color: #fff;
  color: #333;
}

.tbl th,
.tbl td {
  vertical-align: middle;
  padding: 15px;
  border: 1px solid #ccc;
}

.tbl th {
  background-color: #f3f3f3;
  font-weight: 600;
}

.tbl_new {
  width: 100%;
  border-top: 1px dotted #ccc;
}

.tbl_new th,
.tbl_new td {
  vertical-align: middle;
  padding: 10px;
  border-bottom: 1px dotted #ccc;
}

.tbl_new th {
  text-align: left;
  font-weight: 500;
}

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

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

.company th {
  text-align: left;
  width: 25%;
  position: relative;
  background: #004896;
  color: #fff;
  font-weight: 600;
}

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

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

.tbl_company {
  width: 100%;
  font-size: 1.4rem;
}

.tbl_company th,
.tbl_company td {
  padding: 16px;
  vertical-align: middle;
}

.tbl_company th {
  border-bottom: 1px solid #004896;
  font-weight: 500;
  text-align: left;
}

.tbl_company td {
  border-bottom: 1px solid #dcdcdc;
  line-height: 1.8em;
}

.tbl_fee {
  width: 100%;
  border-top: 1px dotted #ccc;
}

.tbl_fee th,
.tbl_fee td {
  vertical-align: middle;
  padding: 10px;
  border-bottom: 1px dotted #ccc;
}

.tbl_fee th {
  text-align: left;
  font-weight: 500;
}

.tbl_fee td {
  text-align: right;
}

.tbl_simple {
  width: 100%;
  background-color: #fff;
  text-align: center;
  font-size: 1.3rem;
}

.tbl_simple th,
.tbl_simple td {
  vertical-align: middle;
  padding: 10px;
  border: 1px solid #ccc;
}

.tbl_simple th {
  background-color: #004896;
  color: #fff;
  font-weight: 500;
}

.mark {
  color: #004896;
}

.ready {
  color: #296cb2;
}

.cell_01 {
  width: 25%;
}

.cell_02 {
  width: 33%;
}

.cell_03 {
  width: 20%;
}

/* roscal */
#roscal .calendar_head {
  margin-bottom: 12px 8px;
}

#roscal table {
  width: 100%;
  background-color: #fff;
  font-size: 1.2rem;
}

#roscal table th,
#roscal table td {
  vertical-align: middle;
  padding: 8px;
  border: 1px solid #ccc;
}

#roscal table th {
  background-color: #296cb2;
  color: #fff;
  font-weight: 500;
  width: 14%;
}

#roscal table .off {
  color: #ff0000;
}

#roscal table .yotei1::after {
  content: "午前休診";
  color: #ff0000;
  font-size: 1rem;
}

#roscal table .yotei2::after {
  content: "午後休診";
  color: #ff0000;
  font-size: 1rem;
}

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

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

.list_half li {
  width: 50%;
}

.list_check li {
  position: relative;
  padding: 0 0 5px 1.5em;
}

.list_check li:before {
  position: absolute;
  top: 0;
  left: 1.5em;
  font-family: "Font Awesome 5 Free";
  content: "\f058";
  font-weight: 900;
  content: "\f14a";
  margin: 0 5px 0 -1.5em;
  padding: 1px;
}

.list_note li {
  margin-bottom: 5px;
  padding-left: 1.5em;
}

.list_note li:last-child {
  margin-bottom: 0;
}

.list_note li:before {
  content: "※";
  margin: 0 5px 0 -1.5em;
  color: #ff0000;
}

.list_disc > li {
  margin-bottom: 5px;
  padding-left: 1.5em;
}

.list_disc > li:last-child {
  margin-bottom: 0;
}

.list_disc > li:before {
  content: "・";
  margin: 0 5px 0 -1em;
  color: #004896;
}

.list_line li {
  position: relative;
  display: inline-block;
  padding-right: 10px;
}

.list_line li:after {
  position: absolute;
  right: 0;
  content: "/";
}

.list_line li:last-child:after {
  display: none;
}

.list_macker {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 30px;
  text-align: center;
  font-size: 1.1em;
  font-weight: bold;
}

.list_macker li {
  width: 18.4%;
  margin: 0 2% 1% 0;
}

.list_macker li:nth-child(5n) {
  margin: 0 0 1% 0;
}

.rounded-list {
  counter-reset: li;
  padding-left: 1em;
  list-style: none;
}

.rounded-list li {
  position: relative;
  padding: 0.4em 0.4em 0.4em 2em;
  margin: 0.5em 0;
  background: #fafafa;
  border-radius: 0.3em;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.rounded-list li:before {
  content: counter(li);
  counter-increment: li;
  position: absolute;
  left: -1.3em;
  top: 50%;
  margin-top: -1.3em;
  background: #004896;
  color: #fff;
  height: 3em;
  width: 3em;
  line-height: 2.4em;
  border: 0.3em solid #fff;
  text-align: center;
  font-weight: bold;
  border-radius: 2em;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.drop_down {
  position: relative;
  cursor: pointer;
  padding-left: 15px;
}

.drop_down:before {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  color: #004896;
}

.list_child {
  display: none;
  margin-bottom: 15px;
}

.list_child li:before {
  content: "・";
  margin: 0 5px 0 -1em;
  color: #004896;
}

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

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

.ggmap.ggmap_02 {
  padding-bottom: 20.25%;
}

.ggcalendar {
  position: relative;
  padding-bottom: 76.25%;
  height: 0;
  overflow: hidden;
}

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

.fb_iframe_widget,
.fb_iframe_widget span,
.fb_iframe_widget iframe[style] {
  width: 100% !important;
}

/* article
----------------------------------*/
.article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: #f3f3f3;
}

.article .article_image {
  width: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.article .article_detail {
  width: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 80px 0;
}

.article .article_detail .inner {
  margin: 0 auto;
  width: 70%;
}

.article.article_b {
  margin-bottom: 60px;
}

.article.article_white {
  background-image: none;
  background-color: #fff;
}

.article.article_01 .article_image {
  background-image: url(../img/area_01.png);
}

.article.article_02 .article_image {
  background-image: url(../img/area_02.png);
}

.article.article_03 .article_image {
  background-image: url(../img/system_06.jpg);
}

.article.article_04 .article_image {
  background-image: url(../img/article_04.jpg);
}

.article.article_05 .article_image {
  background-image: url(../img/article_05.jpg);
}

.article.article_06 .article_image {
  background-image: url(../img/article_06.jpg);
}

.article.article_07 .article_image {
  background-image: url(../img/article_07.jpg);
}

.article.article_08 .article_image {
  background-image: url(../img/article_08.jpg);
}

.article.article_09 .article_image {
  background-image: url(../img/article_09.jpg);
}

.article.article_10 .article_image {
  background-image: url(../img/article_10.jpg);
}

.article.article_11 .article_image {
  background-image: url(../img/article_11.jpg);
}

/* top_blog
----------------------------------*/
.top_blog {
  display: block;
  position: relative;
  color: #333;
  padding-right: 7%;
  padding-bottom: 3%;
}

.top_blog:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  background-color: #296cb2;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.top_blog:hover {
  color: #333;
}

.top_blog:hover:after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.top_blog .inner {
  padding: 20px 30px 40px;
}

.date {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  color: #296cb2;
  font-size: 1rem;
  letter-spacing: 0.15em;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.date_entry {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 1rem;
  font-weight: 500;
}

.top_blog_title {
  margin: 10px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 600;
}

.top_blog_txt {
  font-size: 1.3rem;
}

.blog_thumbnail {
  font-size: 1.3rem;
}

.blog_thumbnail li {
  padding: 15px;
  padding: 15px;
}

.blog_thumbnail li .thumbnail_detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.blog_thumbnail li .thumbnail_detail .image {
  width: 20%;
}

.blog_thumbnail li .thumbnail_detail .text {
  width: 76%;
  margin-left: 10px;
}

.blog_thumbnail li .time_date {
  width: 120px;
  font-size: 1.2rem;
}

.blog_topics li a {
  display: block;
  color: #333;
  padding: 15px;
}

.blog_topics li a:hover {
  background-color: #f3f3f3;
}

.blog_topics li a .topics_detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.blog_topics li a .topics_detail .imgbox {
  width: 10%;
}

.blog_topics li a .topics_detail .textbox {
  width: 80%;
  margin-left: 10px;
}

.blog_topics li a .time_date {
  width: 120px;
  font-size: 1.2rem;
}

/* blog
----------------------------------*/
.blog_contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.blog_contents .blog_main {
  width: 65%;
}

.blog_contents .blog_side {
  width: 30%;
  background-color: #fff;
  padding: 30px;
}

.category_nav li {
  border-bottom: 1px dotted #ccc;
}

.category_nav li a {
  display: block;
  padding: 10px 15px;
}

.category_nav li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  margin-right: 5px;
  margin-right: 5px;
  color: #004896;
}

.category_nav li a:hover {
  background-color: #004896;
  color: #fff;
}

.category_nav li a:hover::before {
  color: #fff;
}

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

.blog_title {
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-weight: 600;
}

.blog_title:before {
  margin-right: 5px;
  color: #004896;
}

.blog_title.archive:before {
  font-family: "Font Awesome 5 Free";
  content: "\f187";
  font-weight: 900;
}

.blog_title.new:before {
  font-family: "Font Awesome 5 Free";
  content: "\f044";
  font-weight: 900;
}

.blog_article {
  padding: 0 30px 50px;
  background-color: #fff;
  margin-bottom: 50px;
}

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

.blog_new {
  border-bottom: 1px dotted #004896;
}

.blog_new:last-child {
  border-bottom: none;
}

.blog_new a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  padding: 10px;
}

.blog_new a .image {
  width: 40%;
}

.blog_new a .detail {
  width: 50%;
}

.blog_new a .detail .entry_title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.pages {
  overflow: hidden;
  margin-top: 50px;
}

.pages .page_next,
.pages .page_prev {
  display: inline-block;
}

.pages .page_next a,
.pages .page_prev a {
  display: block;
  padding: 10px 20px;
  background-color: #fff;
}

.pages .page_next {
  float: left;
}

.pages .page_prev {
  float: right;
}

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

.gallery_ul a {
  display: block;
  position: relative;
  overflow: hidden;
  height: 250px;
}

.gallery_ul a img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
}

.gallery_ul span {
  display: block;
  margin-top: 5px;
  text-align: center;
}

.gallery_ul.gallery_ul_01 li {
  width: 31.3%;
  margin: 0 3% 3% 0;
}

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

.gallery_ul.gallery_ul_02 li {
  width: 22.7%;
  margin: 0 3% 3% 0;
}

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

.gallery_ul.gallery_ul_03 li {
  width: 48.5%;
  margin: 0 3% 3% 0;
}

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

/* sns_list
----------------------------------*/
.sns_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 30px;
}

.sns_list li {
  width: 31.3%;
  margin-right: 3%;
}

.sns_list li:last-child {
  margin: 0;
}

.sns_btn {
  overflow: hidden;
  color: #fff;
  position: relative;
  display: block;
  border-radius: 100px;
  height: 60px;
  text-align: center;
  line-height: 60px;
}

.sns_btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sns_btn i {
  font-size: 2rem;
  position: relative;
  top: 3px;
  margin-right: 10px;
}

.sns_btn span {
  display: inline-block;
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.sns_btn:hover {
  color: #fff;
}

.sns_btn:hover span {
  -webkit-transform: rotateX(360deg);
  transform: rotateX(360deg);
}

.facebook_btn {
  background: #4267b2;
}

.insta_btn {
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
}

.insta_btn:before {
  background: linear-gradient(15deg, #ffdb2c, #f9764c 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
}

.line_btn {
  background: #00b82b;
}

.twitter_btn {
  background: #55acee;
}

/* top_news
----------------------------------*/
.top_news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* thumb_list
----------------------------------*/
.thumb_list {
  display: block;
  color: #333;
  font-size: 1.4rem;
}

.thumb_list .thumb_image {
  position: relative;
  margin-bottom: 5px;
  overflow: hidden;
  background: #f5f8f5;
}

.thumb_list .thumb_image img {
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: contain;";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.thumb_list .thumb_image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.thumb_list .thumb_image:after {
  display: block;
  content: "";
  padding-top: 75%;
}

.thumb_list .thumb_image .detail_btn {
  opacity: 0;
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 3;
  text-align: center;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  background: #fff;
  padding: 3px 10px;
  font-size: 1.2rem;
}

.thumb_list .thumb_image .detail_btn:before {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  color: #004896;
  margin-right: 5px;
}

.thumb_list .thumb_title {
  margin-bottom: 5px;
  font-size: 1.6rem;
  font-weight: bold;
}

.thumb_list:hover {
  color: #333;
}

.thumb_list:hover .thumb_image img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.thumb_list:hover .thumb_image .detail_btn {
  opacity: 1;
}

.thumb_list:hover .thumb_image:before {
  opacity: 1;
}

/* page_bnr
----------------------------------*/
.page_bnr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: -2%;
}

.page_bnr li {
  margin: 0 2% 2% 0;
}

.page_bnr li a {
  display: block;
  color: #333;
  border: 1px solid #ddd;
  background-color: #fff;
  padding: 10px;
}

.page_bnr li a:hover {
  color: #004896;
}

.page_bnr li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  margin-right: 10px;
  color: #004896;
}

.page_bnr.page_bnr_01 li {
  width: 49%;
}

.page_bnr.page_bnr_01 li:nth-child(2n) {
  margin: 0 0 2% 0;
}

.page_bnr.page_bnr_02 li {
  width: 32%;
}

.page_bnr.page_bnr_02 li:nth-child(3n) {
  margin: 0 0 2% 0;
}

/* feature
----------------------------------*/
.feature {
  position: relative;
}

.feature::before {
  content: "";
  position: absolute;
  top: -3%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
  width: 768px;
  height: 100%;
  background-image: url(../img/feature.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
  opacity: .5;
}

.feature_num {
  position: relative;
  z-index: 1;
  margin-bottom: -24px;
  color: #004896;
  font-size: 4rem;
  font-weight: 600;
}

.feature_num span {
  position: relative;
  padding-left: 1em;
}

.feature_num span::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 1px;
  margin: 2px 0 0;
  content: "";
  background: #004896;
  margin-left: .2em;
}

/* news
----------------------------------*/
.news {
  font-size: 1.3rem;
}

.news .child {
  border-top: 1px solid #ddd;
  padding-top: 30px;
}

.news a {
  color: #333;
}

.news a:hover {
  color: #333;
}

/* top_main
----------------------------------*/
.top_main {
  position: relative;
  padding: 8% 0;
}

.top_main:before {
  content: "";
  display: block;
  width: 55%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  margin: auto;
  background-image: url(../img/top_main_image.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.top_main .inner {
  width: 42%;
  text-align: center;
  line-height: 2.4;
}

/* top_sub
----------------------------------*/
.top_sub {
  position: relative;
}

.top_sub:before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  bottom: 0;
  z-index: 1;
  width: 55%;
  height: 119%;
  overflow: hidden;
}

.top_sub:after {
  content: "";
  position: absolute;
  bottom: -60px;
  z-index: -1;
  background-color: #f3f3f3;
  width: 66%;
  height: 90%;
}

.top_sub .top_sub_inner {
  padding: 40px 0;
}

.top_sub .sub_detail {
  position: relative;
  z-index: 2;
  background: #fff;
  -webkit-box-shadow: 0 6px 15px rgba(36, 37, 38, 0.04);
          box-shadow: 0 6px 15px rgba(36, 37, 38, 0.04);
  width: 50%;
  padding: 90px 70px;
}

.top_sub.sub_right:before {
  left: 0;
}

.top_sub.sub_right:after {
  right: -60px;
}

.top_sub.sub_right .sub_detail {
  margin-left: auto;
}

.top_sub.sub_left:before {
  right: 0;
}

.top_sub.sub_left:after {
  left: -60px;
}

.top_sub.sub_left .sub_detail {
  margin-right: auto;
}

.top_sub.top_sub_01:before {
  background-image: url(../img/top_sub_01.jpg);
}

.top_sub.top_sub_02:before {
  background-image: url(../img/top_sub_02.jpg);
}

.top_sub.top_sub_03:before {
  background-image: url(../img/top_sub_03.jpg);
}

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

.flex_type_01 .flex_image {
  width: 35%;
}

.flex_type_01 .flex_detail {
  width: 60%;
}

.flex_type_02 .flex_image {
  width: 28%;
}

.flex_type_02 .flex_detail {
  width: 69%;
}

.order {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

/* mbox
----------------------------------*/
.mbox {
  background-color: #fff;
  -webkit-box-shadow: 0 6px 15px rgba(36, 37, 38, 0.04);
          box-shadow: 0 6px 15px rgba(36, 37, 38, 0.04);
  padding: 90px 70px;
}

.sbox {
  background-color: #fff;
  -webkit-box-shadow: 0 6px 15px rgba(36, 37, 38, 0.04);
          box-shadow: 0 6px 15px rgba(36, 37, 38, 0.04);
  padding: 60px;
}

/* faq
----------------------------------*/
.faq dt {
  position: relative;
  margin-bottom: 20px;
  background: #004896;
  color: #fff;
  padding: 8px 16px 8px 36px;
  cursor: pointer;
}

.faq dt:before {
  content: "＋";
  position: absolute;
  top: -6px;
  left: -6px;
  font-size: 2rem;
  line-height: 35px;
  color: #fff;
  background: #001730;
  width: 35px;
  height: 35px;
  text-align: center;
}

.faq dt:hover {
  background: #001730;
}

.faq dd {
  position: relative;
  display: none;
  position: relative;
  margin-bottom: 24px;
  background: #fff;
  padding: 2em;
}

.faq dd:before {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 2rem;
  line-height: 35px;
  color: #fff;
  background: #f3f3f3;
  width: 35px;
  height: 35px;
  text-align: cente;
}

.voice_faq {
  padding-top: 20px;
}

.voice_faq dl dt {
  position: relative;
  border-top: solid 1px #ddd;
  padding: 10px 0 25px 72px;
  font-size: 1.8rem;
  font-weight: 600;
}

.voice_faq dl dt span {
  position: absolute;
  left: 0;
  top: -20px;
  display: block;
  width: 56px;
  line-height: 56px;
  text-align: center;
  color: #fff;
  font-size: 2rem;
  background: #004896;
  font-weight: 100;
  letter-spacing: .05rem;
}

.voice_faq dl dd {
  position: relative;
  padding: 0 40px 45px 72px;
}

.voice_faq dl dd span {
  position: absolute;
  left: 15px;
  top: -10px;
  display: block;
  color: #296cb2;
  font-size: 2rem;
  font-weight: 100;
  letter-spacing: .05rem;
}

/* flow
----------------------------------*/
.flow {
  padding-left: 120px;
  position: relative;
}

.flow::before {
  content: "";
  width: 15px;
  height: 100%;
  background: #f3f3f3;
  margin-left: -8px;
  display: block;
  position: absolute;
  top: 0;
  left: 120px;
}

.flow > li {
  position: relative;
}

.flow > li:not(:last-child) {
  margin-bottom: 5vh;
}

.flow > li .icon {
  font-size: 12px;
  background-color: #f3f3f3;
  padding: 8px 20px;
  display: block;
  position: absolute;
  top: 0;
  left: -120px;
  z-index: 2;
  font-weight: 600;
}

.flow > li .icon::after {
  content: "";
  border-style: solid;
  border-width: 5px 0 5px 10px;
  border-color: transparent transparent transparent #f3f3f3;
  position: absolute;
  top: 50%;
  left: 100%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.flow > li .icon.free {
  background-color: #004896;
  color: #fff;
}

.flow > li .icon.free::after {
  border-color: transparent transparent transparent #004896;
}

.flow > li dl {
  padding-left: 70px;
  position: relative;
}

.flow > li dl::before, .flow > li dl::after {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
}

.flow > li dl::before {
  width: 7px;
  height: 7px;
  margin-top: -3px;
  background: #004896;
  border-radius: 50%;
  left: -4px;
}

.flow > li dl::after {
  width: 50px;
  border-bottom: 1px dashed #999;
  position: absolute;
  left: 5px;
}

.flow > li dl dt {
  font-weight: 600;
}

/* medical_link
----------------------------------*/
.medical_link {
  color: #333;
}

.medical_link:hover {
  color: #333;
}

/* belongs
----------------------------------*/
.belongs {
  position: relative;
  background: #fff;
  padding: 20px;
  -webkit-box-shadow: 0 6px 15px rgba(36, 37, 38, 0.04);
          box-shadow: 0 6px 15px rgba(36, 37, 38, 0.04);
  width: 90%;
  margin: -30px auto 0;
}

.belongs a {
  color: #333;
}

/* vertical_image
----------------------------------*/
.vertical_image {
  position: relative;
  overflow: hidden;
  height: 360px;
}

.vertical_image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
}

.top_image {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.top_image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
}

.medical_image {
  margin: 0 auto 24px;
  width: 72px;
}

.frame {
  display: inline-block;
  position: relative;
}

.frame::after {
  position: absolute;
  content: "";
  -webkit-box-shadow: 0 15px 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0 15px 10px rgba(0, 0, 0, 0.5);
  -webkit-transform: rotate(3deg);
          transform: rotate(3deg);
  right: 5px;
  left: auto;
  top: auto;
  bottom: 15px;
  z-index: -1;
  width: 50%;
  height: 20%;
}

/* index_contents
----------------------------------*/
.index_contents {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.index_contents > div {
  width: 50%;
}

.index_contents .index_image {
  overflow: hidden;
}

.index_contents .index_image .animation-txt {
  overflow: hidden;
  height: 550px;
}

.index_contents .index_image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
}

.index_contents .index_detail {
  background-image: url(../img/bg_index_detail.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #fff;
  padding: 60px 3%;
  height: 550px;
}

/* about_box
----------------------------------*/
.about_wrap {
  padding-top: 40px;
}

.about_box {
  position: relative;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  background-color: #fff;
  -webkit-box-shadow: 0 6px 15px rgba(36, 37, 38, 0.04);
          box-shadow: 0 6px 15px rgba(36, 37, 38, 0.04);
}

.about_box .inner {
  position: relative;
  padding: 48px 24px 72px;
  color: #333;
}

.about_num {
  display: block;
  position: absolute;
  top: -40px;
  right: 5px;
  z-index: 2;
  color: #004896;
  font-size: 7rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1;
}

/* greeting_contents
----------------------------------*/
.greeting_contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.greeting_contents .image {
  width: 59.72222%;
}

.greeting_contents .image img {
  display: block;
  width: 100%;
  height: 400px;
  font-family: "object-fit: cover; object-position: center;";
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.greeting_contents .detail {
  position: relative;
  margin-left: -35px;
  width: 35%;
}

.greeting_contents .title {
  margin-bottom: 30px;
  color: #004896;
  font-size: 3rem;
  font-weight: 600;
  line-height: 2;
}

.greeting_contents .txt {
  margin-bottom: 40px;
  line-height: 2;
}

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

.new_bnr li {
  position: relative;
  overflow: hidden;
  width: 33.33333%;
  height: 400px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.new_bnr li a {
  position: relative;
  display: block;
  z-index: 3;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.new_bnr li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .8;
}

.new_bnr li .text {
  position: absolute;
  z-index: 3;
  bottom: 50px;
  left: 50px;
  color: #fff;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.2;
}

.new_bnr li .text span {
  display: block;
  font-size: 1.6rem;
}

.new_bnr li .btn {
  position: absolute;
  bottom: 58px;
  right: 50px;
  z-index: 1;
  display: block;
  width: 58px;
  height: 58px;
  border: 1px solid #fff;
  border-radius: 50%;
  -webkit-transition: all 0.12s ease-in 0s;
  transition: all 0.12s ease-in 0s;
}

.new_bnr li .btn:before {
  position: absolute;
  z-index: 2;
  display: block;
  content: "";
  top: 25px;
  left: 24px;
  width: 6.5px;
  height: 6.5px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.12s ease-in 0s;
  transition: all 0.12s ease-in 0s;
}

.new_bnr li:hover .btn {
  opacity: 1;
  -moz-opacity: 1;
  filter: alpha(opacity=100);
}

.new_bnr li:hover .btn:before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.new_bnr_list_01 a {
  background-image: url(../img/new_bnr_list_01.jpg);
}

.new_bnr_list_01 a::before {
  background-image: linear-gradient(120deg, #296cb2 0%, #00a15a 100%);
}

.new_bnr_list_01 a:hover .btn {
  background-color: #296cb2;
  border: 1px solid #296cb2;
}

.new_bnr_list_02 a {
  background-image: url(../img/new_bnr_list_02.jpg);
}

.new_bnr_list_02 a::before {
  background-image: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
}

.new_bnr_list_02 a:hover .btn {
  background-color: #8ec5fc;
  border: 1px solid #8ec5fc;
}

.new_bnr_list_03 a {
  background-image: url(../img/new_bnr_list_03.jpg);
}

.new_bnr_list_03 a::before {
  background-image: linear-gradient(120deg, #f093fb 0%, #f5576c 100%);
}

.new_bnr_list_03 a:hover .btn {
  background-color: #f093fb;
  border: 1px solid #f093fb;
}

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

.top_business .explanation {
  width: 30%;
}

.top_business .detail {
  width: 66%;
}

/* list_top
----------------------------------*/
.list_top li {
  position: relative;
  padding: 20px 15px 20px 25px;
  background-color: #296cb2;
  color: #fff;
}

.list_top li:before {
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
}

.list_top li:nth-child(even) {
  background-color: #235d99;
}

/* trouble
----------------------------------*/
.trouble li {
  position: relative;
  padding-bottom: 15px;
  padding-left: 3rem;
  margin-bottom: 15px;
  border-bottom: 1px dotted #bbb;
  width: 100%;
}

.trouble li:before {
  content: "";
  display: block;
  position: absolute;
  top: 10%;
  left: 0;
  width: 20px;
  height: 20px;
  background-image: url(../img/icon_trouble.png);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: cover;
}

/* p_idx_works_item
----------------------------------*/
.p_idx_works_item {
  position: relative;
  display: block;
}

.p_idx_works_item a > .hover::before {
  opacity: 0.4;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.p_idx_works_item a:hover > .hover::before {
  opacity: 1;
  pointer-events: auto;
}

.p_idx_works_item .hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.6em;
  color: #fff;
  line-height: 1.3;
  letter-spacing: 0.1rem;
}

.p_idx_works_item .hover:before {
  background-color: #004896;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  mix-blend-mode: multiply;
}

.p_idx_works_item .hover:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -0.8em;
  width: 4.6em;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(50%, #fff), color-stop(50%, #000), to(#000));
  background: linear-gradient(90deg, #fff 0%, #fff 50%, #000 50%, #000 100%);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.p_idx_works_item .title {
  position: relative;
  font-size: 1.6rem;
  font-weight: 600;
}

.p_idx_works_item .title span {
  display: block;
  font-size: 1rem;
}

.c-img_full {
  position: relative;
  overflow: hidden;
  height: 175px;
}

.c-img_full img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* top_contents
----------------------------------*/
.top_contents {
  background-image: url(../img/bg_top_contents.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  padding: 80px 0;
}

.top_contents .top_parent {
  overflow: hidden;
}

.top_contents .top_parent .top_detail {
  float: right;
  width: 50%;
}

.top_contents .top_parent .top_detail .inner {
  padding: 80px 56px;
  background: rgba(255, 255, 255, 0.8);
}

/* top_bnr
----------------------------------*/
.top_bnr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: -3%;
}

.top_bnr .child {
  width: 48.5%;
  margin: 0 3% 3% 0;
  background-color: #ffffff;
  text-align: center;
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
}

.top_bnr .child:nth-child(2n) {
  margin: 0 0 3% 0;
}

.top_bnr .child a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 3px 0px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 3px 0px;
  overflow: hidden;
  color: #111111;
}

.top_bnr .child a .top_bnr_image {
  width: 50%;
  max-height: 250px;
  position: relative;
}

.top_bnr .child a .top_bnr_image img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
}

.top_bnr .child a .top_bnr_detail {
  width: 50%;
  padding: 30px 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.top_bnr .child a .top_bnr_detail .top_bnr_ttl {
  margin-bottom: 10px;
  font-size: 1.8rem;
}

.top_bnr .child a .top_bnr_detail .top_bnr_ttl span {
  display: block;
  color: #004896;
  font-size: 1.2rem;
  font-weight: 500;
}

.top_bnr .child a .top_bnr_detail .top_bnr_btn {
  display: inline-block;
  width: 100px;
  padding: 6px 0;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  background-color: #004896;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 5em;
}

.top_bnr .child a:hover .top_bnr_btn {
  background-color: #0060c9;
}

/* transparent_box
----------------------------------*/
.transparent_box {
  position: relative;
  z-index: 1;
  border: 3px solid #fff;
  padding: 60px 40px 100px 60px;
  color: #fff;
}

.transparent_box .inner {
  width: 60%;
  margin-left: auto;
}

/* img_contents
----------------------------------*/
.img_contents {
  overflow: hidden;
  position: relative;
  padding-top: 80px;
  margin-bottom: 80px;
}

.img_contents .img_area {
  position: absolute;
  top: 0;
  left: 55%;
  margin-left: -280px;
  z-index: 1;
}

.img_contents .img_area img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
}

.img_contents .img_container {
  position: relative;
  z-index: 2;
}

.img_contents .img_container .txt_01 {
  line-height: 2.4;
}

/* service
----------------------------------*/
.service {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.service::before {
  content: "";
  position: absolute;
  top: -22%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
  width: 768px;
  height: 100%;
  background-image: url(../img/bg_service.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}

.service_list {
  width: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.service_list .service_contents {
  position: relative;
  padding: 120px 40px 80px;
}

.service_list_01 {
  background-image: url(../img/service_list_01.jpg);
}

.service_list_01 .service_head {
  background-color: #004896;
}

.service_list_02 {
  background-image: url(../img/service_list_02.jpg);
}

.service_list_02 .service_head {
  background-color: #47cdba;
}

.service_list_03 {
  background-image: url(../img/service_list_03.jpg);
}

.service_list_03 .service_head {
  background-color: #54565e;
}

.service_list_04 {
  background-image: url(../img/service_list_04.jpg);
}

.service_list_04 .service_head {
  background-color: #232531;
}

.service_head {
  padding: 32px 0 64px 0;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
}

.service_item {
  position: absolute;
  top: -15%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
  width: 100%;
  text-align: center;
}

.service_item img {
  height: 140px;
  width: auto;
}

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

.recruit .image {
  width: 56%;
}

.recruit .detail {
  width: 40%;
}

/* gallery
----------------------------------*/
.gallery {
  position: relative;
  overflow: hidden;
}

.gallery::after {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  content: "";
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  -webkit-animation: MoveGrad 8s ease infinite;
  animation: MoveGrad 8s ease infinite;
  background: -webkit-gradient(linear, left top, right top, color-stop(20%, #004896), color-stop(80%, #47cdba));
  background: linear-gradient(90deg, #004896 20%, #47cdba 80%);
  border-radius: 50%;
  bottom: -200px;
  height: 325px;
  left: inherit;
  right: calc(11% - 325px);
  width: 325px;
  z-index: -1;
}

.slide_list {
  position: relative;
}

.slide_list li img {
  width: auto;
  height: 360px;
}

.slide_list li span {
  display: block;
  margin-top: 10px;
  text-align: center;
}

/* contact_v2
----------------------------------*/
.contact_box_v2 {
  position: relative;
  background: #f3f3f3;
}

.contact_box_v2::before {
  content: "";
  position: absolute;
  top: -22%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 768px;
  height: 100%;
  background-image: url(../img/bg_contact.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}

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

.contact_v2 .telephone,
.contact_v2 .mail_v2 {
  width: 48.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact_v2 .telephone .title,
.contact_v2 .mail_v2 .title {
  width: 24%;
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
  border-right: 2px solid #333;
}

.contact_v2 .telephone .title span,
.contact_v2 .mail_v2 .title span {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.4;
}

.contact_v2 .telephone .content,
.contact_v2 .mail_v2 .content {
  width: 74%;
  padding-left: 7%;
}

.contact_v2 .phone a,
.contact_v2 .phone span {
  color: #333;
  font-size: 4rem;
  font-weight: 600;
}

.contact_v2 .auxiliary {
  font-size: 1.3rem;
}

.contact_v2 .mail_btn_v2 a {
  position: relative;
  display: block;
  background-color: #296cb2;
  padding: 2em 3em;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
}

.contact_v2 .mail_btn_v2 a::after {
  position: absolute;
  top: 50%;
  left: 5%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
}

.contact_v2 .mail_btn_v2 a:hover {
  background-color: #004896;
  color: #fff;
}

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

.top_main_v2 .image {
  width: 40%;
}

.top_main_v2 .detail {
  width: 56%;
}

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

.dismembered .dismembered_list {
  width: 48.5%;
}

.dismembered .dismembered_list:last-child {
  margin-top: 50px;
}

.top_main_catch {
  margin-bottom: 40px;
}

.top_main_txt {
  line-height: 2.4;
}

/* greeting_v2
----------------------------------*/
.greeting_v2 {
  padding: 80px 0;
}

.greeting_v2 .txt {
  text-align: center;
  line-height: 2.4;
}

/* about
----------------------------------*/
.about {
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  top: -22%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 768px;
  height: 100%;
  background-image: url(../img/bg_about.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}

/* story_list
----------------------------------*/
.story_list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.story_list li {
  position: relative;
  width: 22.7%;
  margin-right: 3%;
  overflow: hidden;
  line-height: 1;
}

.story_list li:last-child {
  margin-right: 0;
}

.story_list li:before {
  content: "";
  display: block;
  padding-top: 91%;
}

.story_list li p {
  display: none;
}

.story_list li a {
  display: block;
  color: #fff;
  text-decoration: none;
  height: 100%;
}

.story_list li a:hover .num i:after {
  left: 100%;
}

.story_list li a:hover .num i:before {
  left: 0;
}

.story_list li a:hover .img span {
  width: 100%;
}

.story_list li a:hover .profile {
  right: 0;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition: all 250ms 250ms ease-in;
  transition: all 250ms 250ms ease-in;
}

.story_list .num {
  position: absolute;
  z-index: 5;
  left: 0;
  top: 17px;
  width: 16.7%;
  font-size: 1.8rem;
}

.story_list .num span {
  position: relative;
  left: 0;
  color: #004896;
}

.story_list .num i {
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  top: 20px;
  overflow: hidden;
}

.story_list .num i:before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background: #004896;
  left: -100%;
  top: 0;
  -webkit-transition: all 0.2s ease 0.3s;
  transition: all 0.2s ease 0.3s;
}

.story_list .num i:after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background: #004896;
  left: 0;
  top: 0;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}

.story_list .list,
.story_list .pr {
  height: 100%;
}

.story_list .img {
  width: 91%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  top: 0;
  right: 0;
  z-index: 2;
}

.story_list .img span {
  width: 0%;
  height: 100%;
  display: block;
  position: relative;
  -webkit-transition: all 300ms 0s ease-in;
  transition: all 300ms 0s ease-in;
}

.story_list .img span:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 150ms 0s ease-in;
  transition: all 150ms 0s ease-in;
  background: -webkit-gradient(linear, left top, right top, color-stop(20%, #004896), color-stop(80%, #47cdba));
  background: linear-gradient(90deg, #004896 20%, #47cdba 80%);
  opacity: .8;
  filter: alpha(opacity=80);
  background-size: cover;
}

.story_list .profile {
  position: absolute;
  bottom: 45%;
  width: 91%;
  text-align: center;
  -webkit-transition: all 200ms 0ms ease-in;
  transition: all 200ms 0ms ease-in;
  opacity: 0;
  filter: alpha(opacity=0);
  right: 0;
  z-index: 2;
}

.story_list .profile .name {
  font-size: 2.4rem;
}

.story_list_01 .img {
  background-image: url(https://placehold.jp/640x480.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.story_list_02 .img {
  background-image: url(https://placehold.jp/640x480.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.story_list_03 .img {
  background-image: url(../img/recruit_06.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.story_list_04 .img {
  background-image: url(https://placehold.jp/640x480.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* flow_v2
----------------------------------*/
.flow_v2 {
  padding-left: 0;
}

.flow_v2 li {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding-bottom: 120px;
  background-image: url(../img/flow_arrow.png);
  background-repeat: no-repeat;
  background-position: center bottom 40px;
}

.flow_v2 li:last-child {
  background: none;
}

.flow_v2 figure {
  position: absolute;
  left: 52%;
  top: 44px;
  width: 550px;
}

.process {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  width: 58%;
  height: 448px;
}

.process .box {
  max-width: 500px;
  margin-right: 20%;
  margin: 2em auto;
}

.application {
  display: block;
  margin-bottom: 20px;
  text-align: center;
}

.application_title {
  margin-bottom: 8px;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
}

/* description
----------------------------------*/
.description {
  position: relative;
}

.description::before {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  content: "";
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  -webkit-animation: MoveGrad 8s ease infinite;
  animation: MoveGrad 8s ease infinite;
  background: -webkit-gradient(linear, left top, right top, color-stop(20%, #004896), color-stop(80%, #47cdba));
  background: linear-gradient(90deg, #004896 20%, #47cdba 80%);
  background-size: 200% 200%;
  border-radius: 50%;
  height: 650px;
  left: calc(19% - 632px);
  top: -275px;
  width: 650px;
  z-index: -1;
}

/* accordion
----------------------------------*/
.accordion_area li {
  padding: 1em 0;
  border-bottom: 1px dotted #ccc;
}

.accordion_area dt {
  position: relative;
  cursor: pointer;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.accordion_area dt::before, .accordion_area dt::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #004896;
}

.accordion_area dt::before {
  top: 48%;
  right: 15px;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.accordion_area dt::after {
  top: 48%;
  right: 15px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.accordion_area dt.close::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.accordion_area dt.close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.accordion_area dd {
  display: none;
  padding-top: 30px;
}

/* measures
----------------------------------*/
.measures {
  margin: 0 auto;
  max-width: 80%;
}

.measures_title {
  background-color: #0096d9;
  color: #fff;
  margin-bottom: 16px;
  padding: .5em;
  font-size: 2rem;
  border-radius: 4px;
}

.measures_title i {
  margin-right: 0.5em;
  width: 31px;
  display: inline-block;
}

.measures_sub_title {
  background-color: #c6f0fc;
  margin-bottom: 16px;
  padding: .5em;
  border-radius: 4px;
  font-size: 1.8rem;
  font-weight: 600;
}

.measures_catch {
  margin-bottom: 16px;
  color: #0096d9;
  font-weight: 600;
}

/* is-point_v2
----------------------------------*/
.point_v2_parent {
  position: relative;
}

.point_v2_parent::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 2%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 148px;
  height: 629px;
  background-image: url(../img/point_v2_before.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.point_v2 {
  padding-top: 7.5em;
}

.point_v2 .child:nth-child(1) {
  margin-top: -2.5em;
}

.point_v2 .child:nth-child(2) {
  margin-top: -5em;
}

.point_v2 .child:nth-child(4) {
  margin-top: -2em;
}

/* concept
----------------------------------*/
.concept_title {
  position: relative;
  margin-top: -240px;
  color: #004896;
  font-size: 7vw;
}

/* page
----------------------------------*/
#main {
  padding: 50px 0;
}

#main > .inner {
  background-color: #fff;
  max-width: calc(100% - 100px);
  margin: 0 auto 50px;
}

#main > .inner:last-child {
  margin: 0 auto;
}

#main2 {
  padding: 50px 0 0;
}

#main2 > .inner {
  background-color: #fff;
  max-width: calc(100% - 100px);
  margin: 0 auto 50px;
}

#main2 > .inner:last-child {
  margin: 0 auto;
}

.page_01 {
  background-image: linear-gradient(120deg, #296cb2 0%, #004896 100%);
}

.page_02 {
  background-image: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
}

.page_03 {
  background-image: linear-gradient(120deg, #f093fb 0%, #f5576c 100%);
}

/* underlayer_contents
----------------------------------*/
.underlayer_contents {
  position: relative;
  max-width: 94%;
  margin: -100px auto 0;
  padding: 56px;
  background-color: rgba(255, 255, 255, 0.9);
}

/* step_list
----------------------------------*/
.step_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}

.step_list li {
  position: relative;
  text-align: center;
  background: #efefef;
  margin-right: 4%;
  padding: 8px 24px;
}

.step_list li:nth-child(n+2)::before {
  content: "";
  position: absolute;
  top: 50%;
  border: 0 solid #efefef;
  border-width: 31.9px 20px;
  width: 0;
  height: 0;
  left: -20px;
  border-left-color: transparent;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.step_list span::after {
  content: "";
  position: absolute;
  top: 50%;
  border: 0 solid #efefef;
  border-width: 31.9px 20px;
  width: 0;
  height: 0;
  left: 100%;
  border-color: transparent;
  border-left-color: #efefef;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.step_list em {
  display: block;
  font-style: normal;
  font-size: 1.2rem;
  font-weight: 600;
}

/* philosophy
----------------------------------*/
.philosophy {
  position: relative;
  text-align: center;
  line-height: 2.4;
  letter-spacing: .1em;
}

.philosophy::before, .philosophy::after {
  display: block;
  color: #ccc;
}

.philosophy::before {
  font-family: "Font Awesome 5 Free";
  content: "\f10d";
  font-weight: 900;
  text-align: left;
}

.philosophy::after {
  font-family: "Font Awesome 5 Free";
  content: "\f10e";
  font-weight: 900;
  text-align: right;
}

.philosophy .title {
  font-family: "YakuHanJP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 3.2rem;
  font-weight: 600;
  letter-spacing: .1em;
}

/* is-animated
----------------------------------*/
.bgextend {
  -webkit-animation-name: bgextendAnimeBase;
          animation-name: bgextendAnimeBase;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  overflow: hidden;
  position: relative;
  opacity: 0;
}

@-webkit-keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.bgLRextend::before {
  -webkit-animation-name: bgLRextendAnime;
          animation-name: bgLRextendAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #004896;
}

@-webkit-keyframes bgLRextendAnime {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

@keyframes bgLRextendAnime {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

.zoomIn {
  -webkit-animation-name: zoomInAnime;
          animation-name: zoomInAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes zoomInAnime {
  from {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomInAnime {
  from {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@-webkit-keyframes zoomOutAnime {
  from {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomOutAnime {
  from {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

.zoomInTrigger,
.zoomOutTrigger {
  opacity: 0;
}

.eachTextAnime span {
  opacity: 0;
}

.eachTextAnime.appeartext span {
  -webkit-animation: text_anime_on 1s ease-out forwards;
          animation: text_anime_on 1s ease-out forwards;
}

@-webkit-keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* accordion
----------------------------------*/
.accordion {
  position: relative;
  cursor: pointer;
  padding-top: 48px;
}

.accordion::after {
  content: "＋";
  position: absolute;
  bottom: -10%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 1.4rem;
  line-height: 30px;
  color: #fff;
  background: #004896;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-align: center;
}

.accordion.active::after {
  content: "－";
}

.accordion_contents {
  display: none;
}

/* etc
----------------------------------*/
.carousel {
  padding: 0 60px 10px 60px;
}

.measures {
  max-width: 200px;
  margin: 0 auto 15px;
}

.decoration {
  position: relative;
}

.decoration:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border-image-source: repeating-linear-gradient(45deg, #fff, #fff 3px, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 6px);
  border-image-slice: 20;
  border-image-repeat: round;
  border-style: solid;
  border-width: 20px;
}

.font_ss {
  font-size: 1rem;
}

.font_s {
  font-size: 1.2rem;
}

.font_m {
  font-size: 1.4rem;
}

.font_l {
  font-size: 1.6rem;
}

.num {
  color: #296cb2;
  font-size: 1.5em;
  margin: 0 5px;
}

.fly {
  display: block;
}

.fly figure {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.fly:hover figure {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

.aesthetic {
  margin: 0 auto 20px;
  width: 70%;
}

.macker {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, transparent), color-stop(50%, #fbff00));
  background-image: linear-gradient(left, transparent 50%, #fbff00 50%);
  background-repeat: repeat-x;
  background-size: 200% 0.3em;
  background-position: 0 1em;
  -webkit-transition: all 3.5s ease;
  transition: all 3.5s ease;
  font-style: normal;
  font-weight: bold;
  padding: 0 5px;
}

.macker.active {
  background-position: -100% 0.8em;
}

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

/* animation
----------------------------------*/
.txt_animation {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  -webkit-transition: 1.4s cubic-bezier(0.37, 0, 0.63, 1);
  transition: 1.4s cubic-bezier(0.37, 0, 0.63, 1);
  -webkit-transition-property: -webkit-clip-path;
  transition-property: -webkit-clip-path;
  transition-property: clip-path;
  transition-property: clip-path, -webkit-clip-path;
}

.txt_animation.is-animated {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}

.zoomin {
  opacity: 0;
}

.zoomin.is-animated {
  -webkit-animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
          animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

@-webkit-keyframes zoomIn {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes zoomIn {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.fadeup {
  opacity: 0;
}

.fadeup:nth-child(odd).is-animated {
  -webkit-animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
          animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}

.fadeup:nth-child(even).is-animated {
  -webkit-animation: fadebottom 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
          animation: fadebottom 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}

@-webkit-keyframes fadeup {
  0% {
    -webkit-transform: translateY(60px);
            transform: translateY(60px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeup {
  0% {
    -webkit-transform: translateY(60px);
            transform: translateY(60px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes fadebottom {
  0% {
    -webkit-transform: translateY(-60px);
            transform: translateY(-60px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadebottom {
  0% {
    -webkit-transform: translateY(-60px);
            transform: translateY(-60px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.img_big {
  margin-top: 100px;
  margin-bottom: 100px;
  margin-left: calc(50% - 50vw);
}

.img_big .inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
}

.img_big .inner:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #f3f3f3;
  width: 690px;
  height: calc(100% + 100px);
  margin-left: 30px;
}

.img_big .inner div {
  position: relative;
  z-index: 1;
  max-width: 1035px;
  margin-right: 30px;
  margin-bottom: 60px;
  margin-left: auto;
}

.img_big .inner div img {
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

@-webkit-keyframes flash {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}

@keyframes flash {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes animation-bar {
  0% {
    left: 0;
    right: auto;
    width: 0;
  }
  50% {
    left: 0;
    right: auto;
    width: 100%;
  }
  51% {
    left: auto;
    right: 0;
    width: 100%;
  }
  100% {
    left: auto;
    right: 0;
    width: 101%;
  }
}

@keyframes animation-bar {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 101%;
    width: 0;
  }
}

@-webkit-keyframes animation-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes animation-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.animation.move .animation-bar:before {
  -webkit-animation: animation-bar 1s ease 0s 1 normal forwards;
  animation: animation-bar 1s ease 0s 1 normal forwards;
}

.animation.move .animation-txt {
  -webkit-animation: animation-txt 0s ease 0.5s 1 normal forwards;
  animation: animation-txt 0s ease 0.5s 1 normal forwards;
}

.animation .animation-box {
  display: block;
  text-align: center;
}

.animation .animation-bar {
  position: relative;
  display: inline-block;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.animation .animation-bar:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: #296cb2;
}

.animation .animation-txt {
  opacity: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.effect_fade {
  opacity: 0;
  -webkit-transform: translate(0, 45px);
          transform: translate(0, 45px);
  -webkit-transition: all 2s;
  transition: all 2s;
}

.effect_fade.effect_scroll {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/* page_title_box
----------------------------------*/
.page_title_box {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.page_title_box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

.page_title_box .inner {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 200px 0 100px;
}

.page_title_box_01 {
  background-image: url(../img/slide_01.jpg);
}

.page_title_box_02 {
  background-image: url(../img/slide_07.jpg);
}

.page_title_box_03 {
  background-image: url(../img/slide_08.jpg);
}

.page_title_box_04 {
  background-image: url(../img/slide_04.jpg);
}

.page_title_box_05 {
  background-image: url(../img/slide_05.jpg);
}

.page_title_box_06 {
  background-image: url(../img/slide_06.jpg);
}

/* breadcrumb_box
----------------------------------*/
.breadcrumb_box {
  padding: 10px 0;
}

.breadcrumb_box .breadcrumb {
  width: 1240px;
  margin: 0 auto;
  padding-left: 0;
  font-size: 1.3rem;
}

.breadcrumb_box .breadcrumb li {
  display: inline;
}

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

.breadcrumb_box .breadcrumb li .home:before {
  font-family: "Font Awesome 5 Free";
  content: "\f015";
  font-weight: 900;
}

/* form
----------------------------------*/
.form_dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px dotted #ccc;
  padding: 2% 1%;
}

.form_dl dt {
  width: 30%;
  background-color: #f3f3f3;
  padding: 1% 2% 1.5%;
}

.form_dl dd {
  width: 65%;
}

.form .required {
  position: relative;
  top: -1px;
  background: #004896;
  color: #fff;
  padding: 0 5px;
  margin-right: 5px;
  font-size: 1.1rem;
}

.form .textarea,
.form textarea {
  border: none;
  background-color: #fff;
  border: 1px solid #eee;
  padding: 5px;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.form .textarea {
  height: 40px;
}

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

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

.form .textarea_03 {
  width: 20%;
  margin: 0 1%;
}

.form .selectarea {
  border-radius: 0;
  background-color: #fff;
  border: 1px solid #eee;
  padding: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 40px;
}

.form button {
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  font-family: "YakuHanJP", Lato, "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "Meiryo", "メイリオ", sans-serif;
  font-size: 1.5rem;
  background-color: transparent;
  width: 250px;
}

.form label.radio_text {
  cursor: pointer;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
  padding: 0 0 3px 20px;
  display: inline-block;
  line-height: 1.2;
}

.form label.radio_text:before {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 1px solid #ccc;
  border-radius: 50%;
  left: 1px;
  top: 3px;
  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: #004896;
  z-index: 1;
}

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

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

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

.form label.checkbox_text {
  cursor: pointer;
  position: relative;
  padding: 0 0 3px 25px;
  margin-right: 20px;
  overflow: hidden;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1.2;
}

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

.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 #004896;
  border-bottom: 3px solid #004896;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: 1;
}

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

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

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

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

#ui-datepicker-div {
  z-index: 3 !important;
}

.greet_txt2 {
  font-size: 3rem;
  font-weight: 600;
}

.greet_txt2 em {
  display: inline-block;
  padding: 0 1em;
  font-style: normal;
  font-size: 2.5rem;
}

@media screen and (max-width: 667px) {
  .greet_txt2 {
    font-size: 2rem;
  }
  .greet_txt2 em {
    font-size: 1.6rem;
  }
}

.greet_txt2 em {
  background-image: linear-gradient(120deg, #296cb2 0%, #004896 100%);
  color: #fff;
}

.mtitle_greet {
  margin-bottom: 32px;
  line-height: 1.6;
}

.mtitle_greet em {
  position: relative;
  display: block;
  margin-bottom: 8px;
  padding-left: 64px;
  font-style: normal;
  font-size: 3.2rem;
  font-weight: 600;
}

.mtitle_greet em::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  z-index: -1;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 48px;
  height: 1px;
  background-color: #004896;
}

.mtitle_greet span {
  display: inline-block;
  margin-left: 64px;
  padding: 0 2em;
  background-color: #004896;
  color: #fff;
  font-size: 1.4rem;
}

@media screen and (max-width: 667px) {
  .mtitle_greet em {
    font-size: 2rem;
    padding-left: 45px;
  }
  .mtitle_greet em::before {
    width: 30px;
  }
}

.title-big3 {
  position: relative;
  padding-left: 45px;
  margin: 0 0 27px;
  position: relative;
  z-index: 3;
}

.title-big3::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #004896;
  width: 36px;
  height: 2px;
}

.title-big3 span {
  line-height: 1.4;
}

.title-big3 .eng {
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.1em;
  font-size: 3.5rem;
  color: #296cb2;
  display: inline-block;
  background: #004896;
  background: -webkit-gradient(linear, left top, right top, from(#004896), to(#00a15a));
  background: linear-gradient(to right, #004896, #00a15a);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.title-big3 .ja {
  font-size: 2rem;
  position: relative;
  z-index: 2;
  line-height: 1.3;
  letter-spacing: 0.1em;
  margin-left: 15px;
}

@media screen and (max-width: 667px) {
  .title-big3 .eng {
    font-size: 2.7rem;
  }
  .title-big3 .ja {
    font-size: 1.6rem;
    display: block;
    margin-left: 0;
  }
}

.title-big {
  margin-bottom: 35px;
}

.title-big .eng {
  display: block;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.3;
  color: #fff;
  text-shadow: 1px 1px 0px #004896, -1px 1px 0px #004896, 1px -1px 0px #004896, -1px -1px 0px #004896, 1px 0px 0px #004896, 0px 1px 0px #004896, -1px 0px 0px #004896, 0px -1px 0px #004896;
  font-size: 6.2rem;
}

.title-big .ja {
  font-size: 2rem;
  font-weight: 900;
}

@media screen and (max-width: 667px) {
  .title-big {
    margin-bottom: 25px;
  }
  .title-big .eng {
    font-size: 3.8rem;
  }
  .title-big .ja {
    font-size: 1.5rem;
  }
}

/* index_bnr
----------------------------------*/
.index_bnr {
  display: block;
  position: relative;
  color: #fff;
  padding-top: 70.75%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.index_bnr:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.index_bnr:hover {
  color: #fff;
}

.index_bnr:hover:before {
  background-color: rgba(0, 0, 0, 0.4);
}

.index_bnr .inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 490px;
  padding: 60px 30px;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  border: 3px solid #fff;
}

.index_bnr .title {
  position: relative;
  font-size: 2.4rem;
  line-height: 1.25;
  text-align: center;
}

.index_bnr .title span {
  display: block;
  margin-top: 4px;
  font-size: 1.2rem;
  font-weight: 500;
}

.index_bnr .title:after {
  content: "";
  display: block;
  border-bottom: 3px solid #fff;
  width: 60px;
  margin: 25px auto 35px;
}

.index_bnr .txt {
  margin-bottom: 20px;
  font-weight: 600;
}

.index_bnr_01 {
  background-image: url(../img/index_bnr_01.jpg);
}

.index_bnr_02 {
  background-image: url(../img/index_bnr_02.jpg);
}

.index_bnr_03 {
  background-image: url(../img/index_bnr_03.jpg);
}

.small_btn {
  margin-top: 30px;
}

.small_btn a,
.small_btn button,
.small_btn span {
  display: table;
  background: #fff;
  border: 1px solid #fff;
  color: #296cb2;
  margin: 0 auto;
  padding: .5em 2em;
  border-radius: 100px;
}

.small_btn a:after,
.small_btn button:after,
.small_btn span:after {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  margin-left: 10px;
}

/* greet_block
----------------------------------*/
.greet_block {
  position: relative;
  margin: 100px 0 160px;
}

.greet_block:last-child {
  margin-bottom: 3%;
}

.greet_img {
  overflow: hidden;
  position: absolute;
  top: -15%;
  width: 60%;
  height: 130%;
}

.greet_img img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
}

.greet_txt {
  position: relative;
  z-index: 3;
  width: 55%;
  max-width: 770px;
  padding: 56px;
  margin-left: auto;
  background-color: #fff;
  -webkit-box-shadow: 0 6px 15px rgba(36, 37, 38, 0.04);
          box-shadow: 0 6px 15px rgba(36, 37, 38, 0.04);
}

.greet_title2 {
  margin-bottom: 24px;
  color: #004896;
  font-size: 2.4rem;
  font-weight: 600;
}

.type_b .greet_img {
  right: 0;
}

.type_b .greet_txt {
  margin-right: auto;
  margin-left: 0;
  -webkit-box-shadow: 0 6px 15px rgba(36, 37, 38, 0.04);
          box-shadow: 0 6px 15px rgba(36, 37, 38, 0.04);
}

/* area
----------------------------------*/
.area {
  position: relative;
  padding: 40px 0 240px;
}

.area::before, .area::after {
  position: absolute;
}

.area::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 100%;
  background-image: url(../img/area.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.area .inner {
  margin-left: 54px;
}

.area .area_title {
  margin-bottom: 40px;
  font-size: 5.6rem;
  font-weight: 700;
  line-height: .9;
}

.area .area_title span {
  font-weight: 700;
}

.area .area_sub_title {
  margin-bottom: 8px;
  font-size: 3.2rem;
  font-weight: 600;
}

.color1 {
  color: #004896;
}

.u-timeline3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  line-height: 1.4;
}

.u-timeline3 * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.u-timeline3.bsc dt b {
  color: #003063;
}

.u-timeline3.bsc > dd {
  border-left: solid 3px #003063;
}

.u-timeline3.bsc > dd > .inner {
  border-left: solid 8px #004896;
}

.u-timeline3.bsc > dd > .inner > .container > .title {
  color: #003063;
}

.u-timeline3.bsc > dd > .inner::before {
  border-color: transparent #004896 transparent transparent;
}

.u-timeline3.bsc > dd > .inner::after {
  background-color: #003063;
}

@media screen and (max-width: 768px) {
  .u-timeline3.bsc > dt {
    border-left: solid 3px #003063;
  }
}

.u-timeline3 > dt {
  width: 8em;
  padding-top: 3.5em;
}

.u-timeline3 > dt > b {
  position: relative;
  display: block;
  font-size: 1.6em;
  font-family: "YakuHanJP", "Roboto Condensed", sans-serif;
  font-weight: 500;
  letter-spacing: .1em;
  color: #1f5389;
  text-align: right;
  padding-right: 0.5em;
}

.u-timeline3 > dd {
  width: calc(100% - 8em - 20px);
  padding: 2em 0 2em 20px;
  border-left: solid 3px #1f5389;
}

.u-timeline3 > dd > .inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: #fff;
  padding: 10px;
  margin-left: 1em;
  border-left: solid 8px #296cb2;
  -webkit-box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
}

.u-timeline3 > dd > .inner > .image {
  width: 25%;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.u-timeline3 > dd > .inner > .image img {
  width: 100%;
}

.u-timeline3 > dd > .inner > .container {
  width: 80%;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  padding: 10px;
}

.u-timeline3 > dd > .inner > .container > .title {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  margin-bottom: 15px;
}

.u-timeline3 > dd > .inner > .container > .title span {
  display: inline-block;
  font-weight: 900;
  font-family: "YakuHanJP", "Roboto Condensed", sans-serif;
  padding: 5px;
  background-color: #004896;
  color: #fff;
  margin-bottom: 5px;
  font-size: 1.8rem;
}

.u-timeline3 > dd > .inner::before {
  content: "";
  position: absolute;
  top: 1.7em;
  left: -30px;
  display: inline-block;
  border-style: solid;
  border-width: 15px;
  border-color: transparent #296cb2 transparent transparent;
}

.u-timeline3 > dd > .inner::after {
  position: absolute;
  top: 2.7em;
  left: -53px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background-color: #1f5389;
  border-radius: 50%;
}

@media screen and (max-width: 768px) {
  .u-timeline3 > dt {
    border-left: solid 3px #1f5389;
    margin-left: 1em;
    padding-top: 1em;
    padding-left: 2.5em;
  }
  .u-timeline3 > dd {
    width: calc(100% - 1em);
    margin-left: 1em;
    padding-top: 0.5em;
  }
  .u-timeline3 > dd > .inner > .image {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .u-timeline3 > dd > .inner > .container {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .u-timeline3 > dd > .inner > .container > .title {
    font-size: 1.4rem;
  }
  .u-timeline3 > dd > .inner::after {
    top: 2.8em;
    left: -49px;
  }
}

.read {
  position: relative;
  margin-bottom: 8px;
  padding-left: 56px;
  font-size: 1.8rem;
  font-weight: 600;
}

.read::before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  width: 40px;
  height: 2px;
  background-color: #004896;
}

.top_philosophy {
  padding: 100px 0 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.top_philosophy .philosophy-wrapper {
  width: 95%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media all and (max-width: 900px) {
  .top_philosophy .philosophy-wrapper {
    display: block;
  }
}

.top_philosophy .philosophy-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 623px;
  margin-right: 120px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media all and (max-width: 900px) {
  .top_philosophy .philosophy-inner {
    padding-right: 20px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: auto;
    margin: auto;
  }
}

.top_philosophy .philosophy-ttl {
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}

@media all and (max-width: 900px) {
  .top_philosophy .philosophy-ttl {
    margin-left: -13px;
  }
}

.top_philosophy .blue-ttl {
  display: inline-block;
  position: relative;
}

.top_philosophy .blue-ttl::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  background: linear-gradient(-35deg, #00918f 0%, #004896 100%);
}

.top_philosophy .blue-ttl span {
  color: #00918f;
  background: linear-gradient(30deg, #00918f 0, #004896 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: .1em;
  display: inline-block;
  font-size: 10rem;
}

@media all and (max-width: 900px) {
  .top_philosophy .blue-ttl span {
    font-size: 6rem;
  }
}

.top_philosophy .philosophy-box h3 {
  padding-bottom: 23px;
  border-bottom: 5px solid #0c3860;
  font-weight: 700;
  font-style: normal;
  letter-spacing: .06em;
  font-size: 5rem;
  line-height: 80px;
}

@media all and (max-width: 900px) {
  .top_philosophy .philosophy-box h3 {
    font-size: 2.5rem;
    line-height: 1.6;
  }
}

.top_philosophy .philosophy-box .philosophy-text {
  font-weight: 500;
  font-style: normal;
  letter-spacing: .05em;
  font-size: 17px;
  line-height: 46px;
  margin-top: 54px;
}

@media all and (max-width: 900px) {
  .top_philosophy .philosophy-box .philosophy-text {
    margin-top: 30px;
    font-size: 1.5rem;
    line-height: 1.7;
  }
}

.top_philosophy .philosophy-img {
  width: 43%;
}

@media all and (max-width: 900px) {
  .top_philosophy .philosophy-img {
    width: 100%;
    margin-top: 80px;
  }
}

@media all and (max-width: 900px) {
  .top_philosophy {
    padding: 95px 0 90px;
  }
}

.area_wrap {
  background: linear-gradient(-35deg, #004896 0%, #00918f 100%);
  background-size: 100% 100%;
  padding-top: 150px;
}

.top_area {
  width: 87.4%;
  max-width: 1470px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media all and (max-width: 900px) {
  .top_area {
    padding: 0 10px 50px 10px;
    margin: 0 auto;
  }
}

.top_area .area_img_pc {
  width: calc(100% - 700px);
  height: 847px;
}

@media all and (max-width: 900px) {
  .top_area .area_img_pc {
    display: none;
  }
}

.top_area .area_img_pc img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  font-family: "object-fit: cover; object-position: center",sans-serif;
}

.top_area .area_img_sp {
  display: none;
}

@media all and (max-width: 900px) {
  .top_area .area_img_sp {
    width: calc(100% + 50px);
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.top_area .area_inner {
  width: 524px;
}

.top_area .area_inner h3 {
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  letter-spacing: .1em;
  font-size: 10rem;
  color: #0c3860;
  background: linear-gradient(2deg, white 0, #00f2ef 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

@media all and (max-width: 900px) {
  .top_area .area_inner h3 {
    font-size: 6rem;
  }
}

.top_area .area_inner .sub_ttl {
  color: #fff;
  font-weight: 700;
  font-style: normal;
  letter-spacing: .18em;
  font-size: 28px;
  margin-top: 10px;
  padding-left: 5px;
}

@media all and (max-width: 900px) {
  .top_area .area_inner .sub_ttl {
    font-size: 1.5rem;
  }
}

.top_area .area_inner .inner_txt {
  line-height: 30px;
  margin-top: 60px;
  color: #fff;
  letter-spacing: .05em;
  font-weight: 500;
  font-style: normal;
}
.form-contents dl dt:not(.pattern-exclusion) span.required::before,.form-contents .submit-btn{
  background: #004896!important;
  border: solid 2px #004896!important;
}
.form-contents :not(.pattern-exclusion) button:hover {
  color: #004896!important;
  background: #fff!important;
  border: solid 2px #004896!important;
}
.form-contents .submit-btn:hover::before {
      background-color: #004896!important;
}

.form-contents dl dt:not(.pattern-exclusion) span.optional::before {
  padding:0 5px 0;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 2px;
  position: relative;
  top: -2px;
}
.form-contents dl dt:not(.pattern-exclusion) span.optional::before {
  content: '任意';
  color: #fff!important;
  background: #999!important;
}
