@charset "UTF-8";
/* アニメーションベンダープレフィックス込み指定 */
/* アニメーションベンダープレフィックス込み指定 */
body {
  color: #232323;
  background: #ffffff;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  font-weight: 500;
  position: relative;
  letter-spacing: 0.1em;
}

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

#wrapper {
  position: relative;
  overflow: hidden;
}

#l-main {
  overflow: hidden;
  position: relative;
}

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

.bold {
  font-weight: 600;
}

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

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

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

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

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

.animation {
  opacity: 0;
}

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

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

.mask {
  position: relative;
  -webkit-clip-path: circle(1%);
          clip-path: circle(1%);
  -webkit-transition: 0.6s ease-in all;
  transition: 0.6s ease-in all;
}

.mask.on {
  -webkit-clip-path: circle(120%);
          clip-path: circle(120%);
}

/* 動き
----------------------------------*/
/*印象編　4-9、4-10　背景色が伸びて出現（左から・右から）　*/
.bgextend {
  -webkit-animation-name: bgextendAnimeBase;
          animation-name: bgextendAnimeBase;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  position: relative;
  overflow: hidden;
  /*　はみ出た色要素を隠す　*/
  opacity: 0;
}

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

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

/*中の要素*/
.bgappear　 {
  -webkit-animation-name: bgextendAnimeSecond;
          animation-name: bgextendAnimeSecond;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

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

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

/*印象編　4-9 背景色が伸びて出現（左から）*/
.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%;
  top: 0;
  background-color: #111;
  /*伸びる背景色の設定*/
}

@-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);
  }
  51% {
    -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);
  }
  51% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

/*印象編　4-9 背景色が伸びて出現（右から）*/
.bgRLextend::before {
  -webkit-animation-name: bgRLextendAnime;
          animation-name: bgRLextendAnime;
  -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: #111;
  /*伸びる背景色の設定*/
}

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

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

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger,
.bgUDextendTrigger,
.bgDUextendTrigger,
.bgRLextendTrigger,
.bgLRextendTrigger {
  opacity: 0;
}

/*=============== ローでイング =================*/
.loader {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
  pointer-events: none;
}

.loader.off {
  display: block;
}

.loader-bg1 {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #0056a7;
  top: 0;
  left: 0;
  -webkit-animation: load-tate 0.6s ease-out 0.4s forwards;
          animation: load-tate 0.6s ease-out 0.4s forwards;
}

@-webkit-keyframes load-tate {
  0% {
    height: 100%;
    opacity: 1;
  }
  100% {
    height: 0%;
  }
}

@keyframes load-tate {
  0% {
    height: 100%;
    opacity: 1;
  }
  100% {
    height: 0%;
  }
}

@-webkit-keyframes load-tate2 {
  0% {
    height: 0%;
    opacity: 1;
  }
  100% {
    height: 100%;
  }
}

@keyframes load-tate2 {
  0% {
    height: 0%;
    opacity: 1;
  }
  100% {
    height: 100%;
  }
}

/* header
----------------------------------*/
@-webkit-keyframes load-bg {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes load-bg {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

#l-header {
  width: 100%;
  position: absolute;
  z-index: 2;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 0 0 auto;
  padding: 0;
  opacity: 0;
  -webkit-animation: load-bg 1s ease-out 1.6s forwards;
          animation: load-bg 1s ease-out 1.6s forwards;
  border-bottom: 4px solid #ddd;
}

#l-header:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: #e3e3e3;
  background: -webkit-gradient(linear, left top, left bottom, from(#e3e3e3), color-stop(50%, white), to(#e6e6e6));
  background: linear-gradient(180deg, #e3e3e3 0%, white 50%, #e6e6e6 100%);
  z-index: -1;
  opacity: 0.4;
  padding: 20px 0 0;
}

@media all and (max-width: 1367px) {
  #l-header {
    margin: 0 auto;
  }
}

@media all and (max-width: 896px) {
  #l-header {
    padding-bottom: 30px;
  }
}

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

#l-header.is-fixed {
  right: auto;
  position: fixed;
  padding: 0;
  background-color: transparent;
  width: calc(100% - 10%);
  z-index: 101;
}

#l-header.is-fixed:before {
  display: none;
}

#l-header.is-fixed .head-right {
  display: none;
}

#l-header.is-fixed .head-right_tel a {
  color: #0056a7;
  position: relative;
}

#l-header.is-fixed .head-right_tel a:hover img {
  opacity: 0.6;
}

#l-header.is-fixed .inner #logo {
  width: 280px;
  position: absolute;
  margin: 0 auto;
  top: 10px;
  z-index: 101;
}

@media all and (max-width: 1367px) {
  #l-header.is-fixed .inner #logo {
    width: 280px;
    position: relative;
  }
}

@media all and (max-width: 1100px) {
  #l-header.is-fixed .inner #logo {
    width: 280px;
    position: relative;
  }
}

@media all and (max-width: 639px) {
  #l-header.is-fixed .inner #logo {
    width: 260px;
  }
}

@media all and (max-width: 896px) {
  #l-header.is-fixed {
    background-color: #fff;
    width: 100%;
  }
  #l-header.is-fixed .inner #logo {
    padding: 10px 50px 30px 0;
  }
}

@media all and (max-width: 639px) {
  #l-header.is-fixed {
    background-color: #fff;
    width: 100%;
  }
  #l-header.is-fixed .inner #logo {
    padding: 10px 100px 30px 0;
  }
}

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

#l-header .inner {
  max-width: 100%;
  margin: 0 auto;
  -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: 896px) {
  #l-header .inner {
    min-width: initial;
  }
}

#l-header .inner #logo {
  width: 320px;
  margin: 0px auto 0;
  position: absolute;
  left: 5%;
  top: 25px;
}

@media all and (max-width: 1480px) {
  #l-header .inner #logo {
    width: 300px;
  }
}

@media all and (max-width: 1367px) {
  #l-header .inner #logo {
    width: 400px;
    text-align: center;
    position: initial;
    margin: 30px auto 0;
  }
}

@media all and (max-width: 639px) {
  #l-header .inner #logo {
    padding: 4px 0 4px 30px;
    margin: 0;
    width: 250px;
  }
}

#l-header .inner #logo .logo1 {
  display: block;
}

#l-header .inner #logo .logo2 {
  display: none;
}

#header_nav {
  position: relative;
  margin: 0 auto;
  text-align: center;
  z-index: 100;
}

#header_nav ul {
  margin: 20px 5% 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

#header_nav ul li {
  position: relative;
}

#header_nav ul li a {
  display: block;
  position: relative;
  line-height: 1.5;
  font-size: 1.5rem;
  padding: 20px 20px 30px;
  color: black;
  letter-spacing: 0.05rem;
  font-weight: bold;
}

#header_nav ul li a.type-contact {
  margin-left: 50px;
  background-color: #22A4DD;
  color: #fff;
}

#header_nav ul li a span {
  display: block;
  font-size: 1.3rem;
  font-family: "Marcellus", cursive, sans-serif;
  font-weight: 400;
  color: #fff;
  position: relative;
  letter-spacing: 0.1rem;
}

#header_nav ul li a:after {
  position: absolute;
  content: "";
  -webkit-transition: 0.2s width ease-in;
  transition: 0.2s width ease-in;
  width: 0;
  left: 0;
  bottom: -4px;
}

@media all and (max-width: 1100px) {
  #header_nav ul li a:after {
    right: 0;
    text-align: center;
    margin: 0 auto;
  }
}

#header_nav ul li a:hover {
  color: #22A4DD;
  -webkit-transition: 0.2s width ease-in;
  transition: 0.2s width ease-in;
}

#header_nav ul li a:hover:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 4px;
  left: 0;
  margin: 0 auto;
  border-bottom: 4px solid #fff;
}

#header_nav ul li a:hover.type-contact {
  margin-left: 50px;
  background-color: #fff;
  color: #22A4DD;
}

#header_nav ul li a.active {
  color: #22A4DD;
  -webkit-transition: 0.2s width ease-in;
  transition: 0.2s width ease-in;
}

#header_nav ul li a.active:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 4px;
  left: 0;
  margin: 0 auto;
  border-bottom: 4px solid #666;
}

#header_nav ul li a.active.type-contact {
  margin-left: 50px;
  background-color: #fff;
  color: #22A4DD;
}

#header_nav ul li .sub-menu {
  display: none;
  border-top: 0;
  display: none;
  margin: 0;
  position: absolute;
  width: 260px;
  top: 60px;
  left: 12px;
  visibility: hidden;
  -webkit-transiton: opacity 0.2s;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  z-index: 1;
  padding: 20px;
}

#header_nav ul li .sub-menu li {
  width: 100%;
  margin: 0 auto 5px;
  background-color: #0056a7;
  padding: 10px 15px 10px 30px;
  margin-bottom: 4px;
  position: relative;
  opacity: 0;
  -webkit-transition: 0.8s;
  transition: 0.8s;
  -webkit-transform: translateX(200px);
          transform: translateX(200px);
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.2s ease;
  transition: transform 0.3s ease, opacity 0.2s ease, -webkit-transform 0.3s ease;
}

#header_nav ul li .sub-menu li:nth-child(2) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

#header_nav ul li .sub-menu li:nth-child(3) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

#header_nav ul li .sub-menu li:nth-child(4) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

#header_nav ul li .sub-menu li:nth-child(5) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

#header_nav ul li .sub-menu li:nth-child(6) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

#header_nav ul li .sub-menu li:nth-child(7) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

#header_nav ul li .sub-menu li:before {
  display: none;
}

#header_nav ul li .sub-menu li a {
  display: block;
  font-weight: normal;
  font-size: 1.3rem;
  color: #fff;
  padding: 0;
  text-shadow: none;
  text-align: left;
}

#header_nav ul li .sub-menu li:hover {
  background-color: #979797;
}

#header_nav ul li:hover .sub-menu, #header_nav ul li.active .sub-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  visibility: visible;
}

#header_nav ul li:hover .sub-menu li, #header_nav ul li.active .sub-menu li {
  -webkit-transition: 0.8s;
  transition: 0.8s;
  -webkit-transition: opacity 0.9s ease, -webkit-transform 1s ease;
  transition: opacity 0.9s ease, -webkit-transform 1s ease;
  transition: transform 1s ease, opacity 0.9s ease;
  transition: transform 1s ease, opacity 0.9s ease, -webkit-transform 1s ease;
  -webkit-animation: opacityAnime 1s 0.1s forwards;
          animation: opacityAnime 1s 0.1s forwards;
}

#header_nav ul li:hover .sub-menu li:nth-child(2), #header_nav ul li.active .sub-menu li:nth-child(2) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

#header_nav ul li:hover .sub-menu li:nth-child(3), #header_nav ul li.active .sub-menu li:nth-child(3) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

#header_nav ul li:hover .sub-menu li:nth-child(4), #header_nav ul li.active .sub-menu li:nth-child(4) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

#header_nav ul li:hover .sub-menu li:nth-child(5), #header_nav ul li.active .sub-menu li:nth-child(5) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

#header_nav ul li:hover .sub-menu li:nth-child(6), #header_nav ul li.active .sub-menu li:nth-child(6) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

#header_nav ul li:hover .sub-menu li:nth-child(7), #header_nav ul li.active .sub-menu li:nth-child(7) {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}

#header_nav ul li:hover .header_link, #header_nav ul li.active .header_link {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  position: relative;
}

#header_nav ul li:hover .header_link:before, #header_nav ul li.active .header_link:before {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  left: 0;
  right: 0;
  top: -6px;
  margin: 0 auto;
  border-radius: 50%;
  background-color: rgba(34, 164, 221, 0.4);
  z-index: -1;
}

#header_nav ul li:hover .header_link.type2:before, #header_nav ul li.active .header_link.type2:before {
  background-color: rgba(12, 102, 192, 0.4);
}

#header_nav ul li:hover .header_link.type3:before, #header_nav ul li.active .header_link.type3:before {
  background-color: rgba(235, 97, 42, 0.4);
}

#header_nav ul li:hover .header_link.type4:before, #header_nav ul li.active .header_link.type4:before {
  background-color: rgba(216, 181, 78, 0.4);
}

@media all and (max-width: 1480px) {
  #header_nav ul li a {
    font-size: 1.4rem;
  }
  #header_nav ul li a span {
    font-size: 1.2rem;
  }
  #header_nav ul li.type-contact {
    margin-left: 10px;
  }
}

@media all and (max-width: 1367px) {
  #header_nav {
    text-align: center;
    margin: 20px auto 0px;
    width: 100%;
  }
  #header_nav ul {
    margin: 0px auto 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #header_nav ul li a {
    font-size: 1.4rem;
  }
}

#header_nav.UpMove {
  position: fixed;
  width: 100%;
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}

#header_nav.DownMove {
  position: fixed;
  top: 0;
  margin: 0 auto;
  width: 100%;
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 16px -6px rgba(0, 0, 0, 0.6);
          box-shadow: 0px 0px 16px -6px rgba(0, 0, 0, 0.6);
}

#header_nav.DownMove ul {
  margin: 0 auto;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
          align-items: baseline;
    margin: auto 30px;
}

#header_nav.DownMove ul li {
  position: relative;
}

#header_nav.DownMove ul li a {
  padding: 22px 20px;
}

#header_nav.DownMove ul li a:after {
  bottom: 0;
}

#header_nav.DownMove ul li:hover a, #header_nav.DownMove ul li.active a {
  color: #22A4DD;
  -webkit-transition: 0.2s width ease-in;
  transition: 0.2s width ease-in;
}

#header_nav.DownMove ul li:hover a:after, #header_nav.DownMove ul li.active a:after {
  bottom: 0;
  border-bottom-color: #c4c4c4;
}

#header_nav.DownMove ul li:hover .sub-menu a, #header_nav.DownMove ul li.active .sub-menu a {
  background-color: transparent;
  color: #fff;
}

#header_nav.DownMove ul li.active a {
  color: #22A4DD;
  -webkit-transition: 0.2s width ease-in;
  transition: 0.2s width ease-in;
}

#header_nav.DownMove ul li.active a span {
  color: #fff;
}

#header_nav.DownMove ul li.active a:after {
  bottom: 0;
  border-bottom-color: #666;
}

@media all and (max-width: 1367px) {
  #header_nav.DownMove ul {
    margin: 60px auto 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #header_nav.DownMove ul li a {
    font-size: 1.3rem;
  }
}

@-webkit-keyframes opacityAnime {
  0% {
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes opacityAnime {
  0% {
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

/*==ふわっと出現させるためのCSS*/
/*　上に上がる動き　*/
@-webkit-keyframes UpAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
}
@keyframes UpAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
}

/*　下に下がる動き　*/
@-webkit-keyframes DownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes DownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

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

#page-top a {
  display: block;
  background: #a8984d;
  -webkit-box-shadow: #a8984d;
          box-shadow: #a8984d;
  color: #fff;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 1.2rem;
  text-align: center;
}

#page-top a:hover {
  opacity: 0.6;
}

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

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

.slide-img {
  overflow: hidden;
  width: 100%;
  height: 90vh;
  margin-left: auto;
  margin-right: auto;
  max-height: 840px;
}

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

@media all and (max-width: 1367px) {
  .slide-img {
    height: 70vh;
    max-height: 600px;
  }
}

@media all and (max-width: 896px) {
  .slide-img {
    height: 60vh;
  }
}

@media all and (max-width: 639px) {
  .slide-img {
    height: 50vh;
  }
  .slide-img.type2 img {
    -o-object-position: 75% 0%;
       object-position: 75% 0%;
  }
  .slide-img.type3 img {
    -o-object-position: 44% 0%;
       object-position: 44% 0%;
  }
}

#slideshow {
  position: relative;
  margin: 0px auto;
  max-height: 880px;
}

#slide-wrap {
  position: relative;
  margin: 96px auto 0px;
}

#slide-wrap .slide-box {
  position: relative;
}

#slide-wrap .slide-box:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background-color: #fff;
  width: 100%;
  height: 100%;
  -webkit-animation: bg-anime 0.8s ease-in 1s forwards;
          animation: bg-anime 0.8s ease-in 1s forwards;
  z-index: 100;
}

@media all and (max-width: 1480px) {
  #slide-wrap {
    margin: 92px auto 0;
  }
}

@media all and (max-width: 1367px) {
  #slide-wrap {
    margin: 185px auto 0;
  }
}

@media all and (max-width: 896px) {
  #slide-wrap {
    margin: 124px auto 40px;
  }
}

@media all and (max-width: 639px) {
  #slide-wrap {
    margin: 92px auto 40px;
  }
}

@-webkit-keyframes bg-anime {
  0% {
    width: 100%;
  }
  100% {
    width: 0%;
  }
}

@keyframes bg-anime {
  0% {
    width: 100%;
  }
  100% {
    width: 0%;
  }
}

@-webkit-keyframes catch-anime {
  0% {
    opacity: 1;
    -webkit-transform: translateY(20%);
            transform: translateY(20%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes catch-anime {
  0% {
    opacity: 1;
    -webkit-transform: translateY(20%);
            transform: translateY(20%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

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

@keyframes catch-anime2 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.catch {
  z-index: 1;
  position: absolute;
  margin: 0px auto 0 0;
  top: 0;
  left: 10%;
  font-size: 11rem;
  line-height: 1.2;
  font-family: "Marcellus", cursive, sans-serif;
  font-weight: 400;
  color: #fff;
  z-index: 3;
}

.catch img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

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

@media all and (max-width: 1100px) {
  .catch {
    width: 250px;
  }
}

@media all and (max-width: 896px) {
  .catch {
    width: 200px;
  }
}

@media all and (max-width: 639px) {
  .catch {
    width: 140px;
    left: 30px;
  }
}

/* footer
----------------------------------*/
footer {
  padding: 50px 0 0px;
  background: -webkit-gradient(linear, left top, left bottom, from(#e3e3e3), color-stop(50%, white), to(#e6e6e6));
  background: linear-gradient(180deg, #e3e3e3 0%, white 50%, #e6e6e6 100%);
  position: relative;
}

@media all and (max-width: 639px) {
  footer {
    padding: 50px 0 0 0;
  }
}

#l-footer {
  font-size: 1.4rem;
  position: relative;
  width: calc(100% - 40px);
  padding: 0px 10px 10px;
  margin: 0 auto;
}

#l-footer .mtitle {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  top: -80px;
}

#l-footer .inner {
  margin: 0 auto 0;
  max-width: 1500px;
  position: relative;
  z-index: 3;
  padding: 0px 20px 0px;
}

#l-footer .inner .whitebox {
  padding: 20px 0;
}

#l-footer .fbox a {
  border-bottom: 1px solid #a8984d;
  color: #a8984d;
}

#l-footer .fbox a:hover {
  opacity: 0.4;
  border-bottom: 1px solid #fff;
}

@media all and (max-width: 1100px) {
  #l-footer .inner {
    width: 100%;
  }
}

@media all and (max-width: 639px) {
  #l-footer {
    font-size: 1.2rem;
  }
  #l-footer .inner {
    padding: 30px 0px;
    font-size: 1.1rem;
  }
}

/* footer_navi
----------------------------------*/
.footer_navi {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  margin: 0px auto 0;
  max-width: 1220px;
}

.footer_navi ul {
  margin: 0 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
      align-items: baseline;
}

.footer_navi ul li {
  margin: 0 0.5%;
  width: 13%;
}

@media all and (max-width: 1100px) {
  .footer_navi ul li {
    padding: 0px;
  }
}

.footer_navi ul li a {
  color: #333;
  font-size: 1.3rem;
  position: relative;
  padding: 0 20px 5px;
  display: block;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer_navi ul li a span {
  display: none;
}

.footer_navi ul li a:before {
  content: "";
  background-color: #b4b4b4;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: -6px;
  left: 0;
}

.footer_navi ul li a:after {
  content: "";
  background-color: #494949;
  width: 0%;
  height: 2px;
  position: absolute;
  bottom: -6px;
  left: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.footer_navi ul li a:hover {
  color: #012149;
}

.footer_navi ul li a:hover:after {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  width: 100%;
}

.footer_navi ul li .sub-menu {
  margin-top: 10px;
  display: block;
}

.footer_navi ul li .sub-menu li {
  margin: 0;
  width: 100%;
  padding-left: 30px;
}

.footer_navi ul li .sub-menu a {
  padding: 0px;
}

.footer_navi ul li .sub-menu a:before {
  position: absolute;
  content: "";
  left: -14px;
  top: 7px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 4px;
  height: 4px;
  border: 4px solid transparent;
  border-left: 4px solid #fff;
  background-color: transparent;
}

.footer_navi ul li .dropdown {
  display: none;
}

.footer_navi ul li .dropdown .dropdon-li a {
  font-size: 1.2rem;
}

.flogo {
  margin: 30px auto 20px;
  min-height: 0;
  text-align: center;
  max-width: 280px;
}

@media all and (max-width: 639px) {
  .flogo {
    margin: 0 auto 20px;
    width: 90%;
  }
}

.address {
  color: #fefefe;
  font-size: 12px;
}

.copyright {
  padding: 12px 0;
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
  color: #333;
}

@media all and (max-width: 896px) {
  .copyright {
    font-size: 12px;
    padding-bottom: 75px;
  }
}

/* list
----------------------------------*/
.list2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.list2.type1 > li,
.list2.type1 .child {
  background: #fefefe;
  padding: 15px;
}

@media all and (max-width: 639px) {
  .list2.type2 > li {
    width: 100%;
    margin: 0 auto 0;
  }
  .list2.type2 > li:nth-child(2) {
    margin-top: 30px;
  }
}

.list2 > li,
.list2 .child {
  width: 48%;
}

.list2 > li:nth-child(2n),
.list2 .child:nth-child(2n) {
  margin-left: 4%;
}

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

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

.list2 .child2 {
  width: 34%;
  margin-top: 50px;
}

.list2 .child2:nth-child(2n) {
  margin-left: 4%;
}

@media all and (max-width: 639px) {
  .list2 .child2:nth-child(2n) {
    margin-left: auto;
  }
}

@media all and (max-width: 639px) {
  .list2 .child2 {
    width: 100%;
    margin: 25px auto 0;
  }
}

.list3 {
  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;
}

.list3.type1 li {
  background: #fefefe;
  padding: 15px;
  border-radius: 8px;
}

.list3 li {
  width: 31%;
  position: relative;
  margin: 0 calc(2.33% + (2.33% / 2)) 30px 0;
}

.list3 li.t-m200 {
  margin-top: 200px;
}

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

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

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

.list4 li {
  width: 24%;
  margin: 0 calc(1% + (1% / 3)) 25px 0;
}

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

/* contents
----------------------------------*/
.single {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.mbox {
  background: #fefefe;
  padding: 35px 30px;
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}

.mbox.transparent {
  background: transparent;
}

@media all and (max-width: 639px) {
  .mbox.transparent {
    padding: 0;
    margin-left: 10px;
    margin-right: 10px;
  }
}

.mbox.m0-p0 {
  margin: 0;
  padding: 0;
}

@media all and (max-width: 639px) {
  .mbox.m0-p0 {
    margin: 20px 0 0;
    padding: 0;
  }
}

.mbox.border {
  border: 1px solid #0056a7;
  border-radius: 20px;
}

@media all and (max-width: 639px) {
  .mbox.border {
    padding: 15px 10px;
    margin-left: auto;
    margin-right: auto;
  }
}

.mbox.type2 {
  max-width: 1500px;
  background: transparent;
}

@media all and (max-width: 639px) {
  .mbox.type2 {
    padding: 0;
    margin-left: 10px;
    margin-right: 10px;
  }
}

.mbox.p40 {
  padding: 40px 40px;
}

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

.mbox.p60 {
  padding: 60px 30px;
}

@media all and (max-width: 639px) {
  .mbox.p60 {
    padding: 40px 10px;
  }
}

.mbox.p0 {
  padding: 0 30px;
}

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

.mbox.t-m80 {
  margin-top: 80px;
}

@media all and (max-width: 639px) {
  .mbox.t-m80 {
    margin-top: 50px;
  }
}

@media all and (max-width: 639px) {
  .mbox {
    padding: 15px 10px;
    margin-left: 10px;
    margin-right: 10px;
  }
  .mbox.sp-m10 {
    margin-left: 10px;
    margin-right: 10px;
  }
  .mbox.t-m100 {
    margin-top: 50px;
  }
}

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

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

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

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

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

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

/* mtitle
----------------------------------*/
.mtitle {
  margin: 0 auto 40px;
  text-align: center;
  padding-bottom: 20px;
}

.mtitle .eng {
  font-size: 4rem;
  color: #0056a7;
  position: relative;
  line-height: 1.2;
  font-family: "Marcellus", cursive, sans-serif;
  font-weight: 400;
  background: linear-gradient(91.17deg, #0056a7 0.7%, #22A4DD 65.72%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.mtitle .ja {
  font-size: 2rem;
  color: #333;
  display: block;
  position: relative;
  font-family: "Zen Old Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
  font-weight: bold;
}

.mtitle .ja:before {
  position: absolute;
  content: "";
  width: 100px;
  height: 1px;
  left: 0;
  bottom: -20px;
  margin: 0 auto;
  background-color: #000;
}

.mtitle .ja:first-letter {
  color: #363636;
}

.mtitle.center .ja:before {
  right: 0;
  left: 0;
}

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

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

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

.mtitle.white span.ja {
  color: #fff;
}

.mtitle.white span.ja:first-letter {
  color: #fff;
}

.mtitle.white span.eng {
  color: #fff;
  background: none;
  -webkit-text-fill-color: #fff;
}

.mtitle.black {
  color: #333;
}

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

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

.mtitle.page {
  text-align: center;
  position: relative;
}

.mtitle.page .eng {
  position: relative;
  min-width: 120px;
  display: inline-block;
}

.mtitle.page .ja {
  font-size: 3rem;
  color: #0056a7;
  padding-top: 10px;
  display: block;
}

.mtitle.page .ja:first-letter {
  color: #363636;
}

@media all and (max-width: 639px) {
  .mtitle {
    text-align: center;
    margin-bottom: 20px;
  }
  .mtitle .eng {
    font-size: 1.2rem;
  }
  .mtitle .eng:before {
    width: 50px;
    height: 2px;
    right: -14px;
    bottom: -11px;
  }
  .mtitle .ja {
    font-size: 1.6rem;
  }
  .mtitle.page {
    text-align: left;
  }
  .mtitle.page .eng {
    font-size: 1.2rem;
    text-align: center;
  }
  .mtitle.page .eng:before {
    width: 50px;
    height: 2px;
    right: 0px;
    bottom: -14px;
    left: auto;
  }
  .mtitle.page .ja {
    padding-top: 0;
    font-size: 1.6rem;
  }
}

.mtitle2 {
  margin: 40px auto 20px;
  color: #333;
  letter-spacing: 0.15em;
  text-align: center;
  position: relative;
}

.mtitle2.type-blue span.eng {
  color: #0c66c0;
}

.mtitle2.type-green span.eng {
  color: #578f35;
}

.mtitle2 span {
  font-size: 2.5rem;
  display: block;
  font-family: "Marcellus", cursive, sans-serif;
  font-weight: 400;
  color: #0056a7;
}

.mtitle2 span.eng {
  opacity: 0.3;
  font-size: 10rem;
  line-height: 1;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: -110%;
}

.mtitle2 span.ja {
  font-size: 3rem;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: bold;
  color: #000;
  position: relative;
  z-index: 1;
}

@media all and (max-width: 639px) {
  .mtitle2 {
    font-size: 1.3rem;
  }
  .mtitle2 span {
    font-size: 1.5rem;
  }
  .mtitle2 span.eng {
    font-size: 2rem;
    top: -15px;
  }
  .mtitle2 span.ja {
    font-size: 1.6rem;
  }
}

.mtitle3 {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  position: absolute;
  min-height: 280px;
  top: 40px;
  left: 30px;
}

.mtitle3 .ja {
  display: block;
  font-size: 4rem;
  border-right: 2px solid #0056a7;
  letter-spacing: 0.2em;
  padding-top: 55px;
  padding-right: 5px;
  font-weight: 600;
  color: #333;
}

.mtitle3 .eng {
  display: block;
  font-family: "Marcellus", cursive, sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #0056a7;
  padding-left: 3px;
}

@media all and (max-width: 896px) {
  .mtitle3 .ja {
    font-size: 2rem;
  }
  .mtitle3 .eng {
    font-size: 2rem;
  }
}

@media all and (max-width: 639px) {
  .mtitle3 {
    position: inherit;
    left: 0;
    top: 0;
    min-height: auto;
    padding-top: 50px;
    -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
            writing-mode: inherit;
  }
  .mtitle3 .ja {
    font-size: 1.6rem;
    padding-top: 0;
    border-right: 0;
    padding-bottom: 20px;
    border-bottom: 2px solid #0056a7;
    margin-bottom: 20px;
  }
  .mtitle3 .eng {
    font-size: 1.3rem;
  }
}

.mtitle4 {
  font-weight: normal;
  font-size: 2.6rem;
  line-height: 1.5;
  letter-spacing: 0.1rem;
  font-weight: 600;
  padding-bottom: 20px;
  margin: 0px auto 0px;
}

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

.mtitle4 span {
  font-size: 2.6rem;
  color: #0056a7;
  padding: 0 4px 0;
}

.mtitle4 span.eng {
  font-family: "Marcellus", cursive, sans-serif;
  font-weight: 400;
  color: #a8984d;
  font-weight: bold;
  font-size: 5rem;
  line-height: 1;
}

.mtitle4 span.ja {
  display: block;
  font-size: 2.6rem;
  font-family: "Zen Old Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
}

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

.mtitle4.white span.eng {
  color: #bfb483;
}

@media all and (max-width: 639px) {
  .mtitle4 {
    font-size: 2rem;
  }
  .mtitle4 span.eng {
    font-size: 2.6rem;
  }
  .mtitle4 span.ja {
    display: block;
    font-size: 1.4rem;
  }
}

.mtitle5 {
  font-weight: normal;
  font-size: 2.6rem;
  line-height: 1.5;
  letter-spacing: 0.1rem;
  font-weight: 600;
  padding-bottom: 20px;
  margin: 0px auto 0px;
  text-align: center;
  position: relative;
  border-bottom: 1px solid #ddd;
}

.mtitle5:before {
  position: absolute;
  content: "";
  width: 100px;
  height: 1px;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -1px;
  background-color: #22A4DD;
}

@media all and (max-width: 639px) {
  .mtitle5 {
    font-size: 1.5rem;
    padding: 20px 0px;
  }
}

.mtitle5 span {
  font-size: 1.6rem;
  padding: 0 40px 0;
}

.mtitle5 span.eng {
  font-family: "Marcellus", cursive, sans-serif;
  font-weight: 400;
  color: #22A4DD;
  font-weight: bold;
  font-size: 3rem;
  line-height: 1;
  display: block;
}

.mtitle5 span.ja {
  font-size: 2rem;
  font-family: "Zen Old Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
  font-weight: bold;
  position: relative;
  background-color: #fff;
  display: inline-block;
}

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

.mtitle5.white:before {
  background: #0056a7;
}

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

.mtitle5.white span.eng {
  color: #bfb483;
}

.mtitle5.white span.ja {
  color: #000;
  background-color: transparent;
}

@media all and (max-width: 639px) {
  .mtitle5 {
    font-size: 2rem;
  }
  .mtitle5:before {
    background: white;
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(34%, #a8984d), color-stop(76%, #a8984d), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #a8984d 34%, #a8984d 76%, rgba(255, 255, 255, 0) 100%);
  }
  .mtitle5 span.eng {
    font-size: 2.6rem;
  }
  .mtitle5 span.ja {
    font-size: 1.7rem;
    padding: 0 20px;
  }
  .mtitle5.min span.ja {
    font-size: 1.5rem;
    padding: 0 20px;
  }
}

.mtitle6 {
  position: relative;
  text-align: left;
}

.mtitle6 .ja {
  display: block;
  padding-left: 40px;
  color: #333;
  position: relative;
}

.mtitle6 .ja:before {
  position: absolute;
  content: "";
  left: 0;
  top: 48%;
  width: 20px;
  height: 2px;
  background-color: #333;
}

.mtitle6 .eng {
  font-family: "Marcellus", cursive, sans-serif;
  font-weight: 400;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
}

.mtitle6.center {
  text-align: center;
  margin-bottom: 70px;
}

.mtitle6.center .ja {
  padding-left: 0;
}

.mtitle6.center .ja:before {
  display: none;
}

.mtitle6.center .eng {
  padding-bottom: 20px;
}

.mtitle6.center .eng:before {
  position: absolute;
  content: "";
  width: 100px;
  height: 2px;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-color: #333;
}

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

.mtitle_line {
  font-size: 2.2rem;
  position: relative;
  font-weight: 600;
  margin: 0px auto 10px;
  padding: 10px 30px;
  color: #fff;
  border-top: 2px solid #0056a7;
  letter-spacing: 0.2rem;
  background-color: #0056a7;
}

.mtitle_line span {
  padding-left: 10px;
  font-size: 1.4rem;
}

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

.mtitle-border {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  position: relative;
  margin-top: 20px;
}

.mtitle-border span {
  color: #22A4DD;
  font-size: 2.5rem;
  position: relative;
  padding-top: 60px;
  display: block;
}

.mtitle-border span:before {
  position: absolute;
  content: "";
  width: 121px;
  height: 48px;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: url(../img/hane.png) no-repeat;
  background-size: cover;
}

@media all and (max-width: 896px) {
  .mtitle-border span {
    color: #22A4DD;
    font-size: 1.5rem;
    position: relative;
    padding-top: 60px;
  }
  .mtitle-border span:before {
    position: absolute;
    content: "";
    width: 121px;
    height: 48px;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: url(../img/hane.png) no-repeat;
    background-size: cover;
  }
}

.mtitle-box {
  background-color: #0056a7;
  color: #fff;
  padding: 20px 20px;
  margin: 0 auto;
  text-align: center;
}

.mtitle-box .ja {
  color: #fff;
  font-size: 2.4rem;
}

.mtitle-box .ja .main {
  padding-left: 5px;
  font-size: 3rem;
}

@media all and (max-width: 639px) {
  .mtitle-box .ja {
    font-size: 1.7rem;
  }
  .mtitle-box .ja .main {
    padding-left: 5px;
    font-size: 2rem;
  }
}

.mtitle_sub {
  padding: 0 0 0 20px;
  font-weight: 600;
  position: relative;
  border-left: 6px solid #0056a7;
  margin: 0px 0 15px 20px;
  font-size: 1.1em;
  line-height: 1.4;
  text-align: left;
}

.mtitle_sub .hissu {
  color: #fff;
  background: #0070da;
  padding: 5px 8px;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 20px;
}

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

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

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

/* btn
----------------------------------*/
.btn01.type-left a {
  margin: 40px auto 0 0;
}

.btn01 a {
  background: #fefefe;
  text-align: center;
  max-width: 340px;
  width: 100%;
  margin: 15px auto;
  color: #0056a7;
  display: block;
  padding: 8px 30px;
  font-weight: 600;
  border: 1px solid #0056a7;
  font-size: 1.5rem;
  -webkit-box-shadow: 4px 4px 0 #0056a7;
          box-shadow: 4px 4px 0 #0056a7;
  position: relative;
}

.btn01 a:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 6px;
  border-left: 10px solid #0056a7;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  right: 8%;
  top: 40%;
}

.btn01 a:hover {
  -webkit-transition: 0.6s;
  transition: 0.6s;
  background: #0056a7;
  color: #fefefe;
  -webkit-transform: translate(5px, 5px);
          transform: translate(5px, 5px);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn01 a:hover:before {
  -webkit-transition: 0.6s;
  transition: 0.6s;
  border-left: 10px solid #fff;
  right: 6%;
}

.btn01 a.type-blue {
  border: 2px solid #0c66c0;
}

.btn01 a.type-blue:hover {
  background: #0c66c0;
  color: #fefefe;
}

.btn01 a.type-yellow {
  border: 2px solid #d8b54e;
}

.btn01 a.type-yellow:hover {
  background: #d8b54e;
  color: #fefefe;
}

.btn01.mail {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

.btn01.mail a {
  background: #d8b54e;
  margin: 15px auto 25px;
}

.btn01.mail a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 5px;
}

@media all and (max-width: 639px) {
  .btn01 a {
    width: 94%;
    padding: 8px 20px;
    font-size: 1.4rem;
  }
}

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

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

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

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

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

.btn03 a {
  margin: 0 auto;
  display: block;
  color: #333;
  max-width: 300px;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.2rem;
  padding: 10px 0;
  border-bottom: 1px solid #333;
  position: relative;
}

.btn03 a:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 5px;
  right: 20px;
  top: 44%;
  border-left: 10px solid #333;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.btn03 a:hover {
  color: #fff;
  -webkit-box-shadow: rgba(27, 27, 27, 0.7) 0 80px 0px 2px inset;
          box-shadow: rgba(27, 27, 27, 0.7) 0 80px 0px 2px inset;
}

.btn03 a:hover:before {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  right: 10px;
  border-left: 10px solid #fff;
}

@media all and (max-width: 639px) {
  .btn03 a {
    margin: 0 auto;
    white-space: nowrap;
    padding: 10px 0;
    width: 100%;
    font-size: 1.5rem;
  }
  .btn03 a:before {
    font-size: 1.3rem;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}

.btn04 .btn-inner {
  font-size: 1.6rem;
  padding: 15px 0;
  max-width: 350px;
  margin: 0 auto;
}

.btn04 .btn-inner:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
}

.btn04 .btn-inner.type2:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
}

@media all and (max-width: 639px) {
  .btn04 .btn-inner {
    font-size: 1.2rem;
  }
}

.btn04.white a:hover {
  color: #0056a7;
  border: 0.9px solid #fff;
  -webkit-box-shadow: #fff 0 80px 0px 2px inset;
          box-shadow: #fff 0 80px 0px 2px inset;
}

.btn04 a {
  display: block;
  color: #fff;
  max-width: 280px;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.2rem;
  padding: 12px 40px;
  border: 0.9px solid #fff;
  background-color: none;
  margin-left: auto;
  margin-right: auto;
}

.btn04 a:before {
  margin-right: 5px;
  position: relative;
  display: inline-block;
}

.btn04 a:hover {
  color: #fff;
  border: 0.9px solid #0056a7;
  -webkit-box-shadow: #0056a7 0 80px 0px 2px inset;
          box-shadow: #0056a7 0 80px 0px 2px inset;
}

@media all and (max-width: 639px) {
  .btn04 a {
    margin: 0 auto;
    white-space: nowrap;
    padding: 10px 0;
    width: 100%;
    max-width: 200px;
    font-size: 1.2rem;
  }
  .btn04 a:before {
    font-size: 1.3rem;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}

.btn05 {
  position: relative;
  color: #333;
  padding: 10px 50px 10px 30px;
  display: inline-block;
  text-decoration: none;
  outline: none;
}

@media all and (max-width: 639px) {
  .btn05 {
    padding: 10px 30px 10px 30px;
    max-width: 250px;
    width: 100%;
  }
}

.btn05:before, .btn05:after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  /*線の形状*/
  background: #333;
  width: 100%;
  height: 2px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.btn05:after {
  width: 0;
  background-image: linear-gradient(-225deg, #d1ac81 0%, #d3c2ad 100%);
}

.btn05:hover:after {
  width: 100%;
}

.btn05:hover span:after {
  right: 15px;
}

.btn05 span:after {
  content: "";
  position: absolute;
  top: 1.3em;
  right: 20px;
  width: 5px;
  height: 5px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.btn06 {
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  background: #23a7ff;
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 50%;
  text-align: center;
  font-family: "Marcellus", cursive, sans-serif;
  font-weight: 400;
}

.btn06:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: -1;
  background: inherit;
  -webkit-animation: ripple 4s cubic-bezier(0.3, 0, 0.1, 1) infinite;
          animation: ripple 4s cubic-bezier(0.3, 0, 0.1, 1) infinite;
}

.btn06:hover {
  background-color: #0056a7;
}

.btn06:hover:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #fff;
  -webkit-animation: ripple2 1s ease-in 0s forwards;
          animation: ripple2 1s ease-in 0s forwards;
}

/* page-top
----------------------------------*/
@-webkit-keyframes page-leadanime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes page-leadanime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.page-toparea {
  position: relative;
}

.page-toparea .inner {
  padding: 250px 20px 160px;
}

@media all and (max-width: 639px) {
  .page-toparea .inner {
    padding: 180px 20px 160px;
  }
}

.page-toparea .inner .page-lead {
  color: #3a3a3a;
  text-align: center;
  font-size: 2.2rem;
  position: relative;
  margin: 0 auto;
  -webkit-animation: page-leadanime 1s ease-out 1s forwards;
          animation: page-leadanime 1s ease-out 1s forwards;
  opacity: 1;
}

.page-toparea .inner .page-lead .eng {
  display: block;
  font-family: "Marcellus", cursive, sans-serif;
  font-weight: 400;
  font-size: 3rem;
}

@media all and (max-width: 639px) {
  .page-toparea .inner .page-lead {
    font-size: 1.5rem;
    -webkit-transform: translateY(4px);
            transform: translateY(4px);
  }
  .page-toparea .inner .page-lead .eng {
    font-size: 2rem;
  }
}

.page-toparea .slide-background {
  opacity: 0.6;
}

/* page-title
----------------------------------*/
.page-title {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 96px;
}

.page-title.type1 {
  background: url(../img/page-title01.jpg) no-repeat center 100%/cover;
}

.page-title.type2 {
  background: url(../img/page-title02.jpg) no-repeat center 100%/cover;
}

.page-title.type3 {
  background: url(../img/page-title03.jpg) no-repeat center 0%/cover;
}

.page-title.type4 {
  background: url(../img/page-title04.jpg) no-repeat center 100%/cover;
}

.page-title.type5 {
  background: url(../img/page-title05.jpg) no-repeat center 100%/cover;
}

.page-title:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #202020;
  opacity: 0.4;
}

.page-title .inner {
  margin: 0 auto;
  padding: 120px 0 120px;
  max-width: 1200px;
  overflow: hidden;
}

.page-title .inner .page-lead {
  color: #fefefe;
  text-align: center;
  font-size: 2.2rem;
  position: relative;
  margin: 0 auto;
  -webkit-animation: page-leadanime 1s ease-out 2.4s forwards;
          animation: page-leadanime 1s ease-out 2.4s forwards;
  opacity: 0;
}

.page-title .inner .page-lead .eng {
  display: block;
  font-family: "Marcellus", cursive, sans-serif;
  font-weight: 400;
  font-size: 3rem;
  text-shadow: 0px 0px 16px #7e93d8;
}

.page-title .inner .page-lead .ja {
  color: #fff;
  text-shadow: 0px 0px 16px #7e93d8;
}

@media all and (max-width: 639px) {
  .page-title .inner .page-lead {
    font-size: 1.4rem;
    -webkit-transform: translateY(4px);
            transform: translateY(4px);
  }
  .page-title .inner .page-lead .eng {
    font-size: 2rem;
  }
}

@media all and (max-width: 1480px) {
  .page-title {
    margin-top: 92px;
  }
}

@media all and (max-width: 1367px) {
  .page-title {
    margin-top: 145px;
  }
}

@media all and (max-width: 1100px) {
  .page-title {
    margin-top: 110px;
  }
}

@media all and (max-width: 896px) {
  .page-title .inner {
    width: 100%;
    padding: 70px 0 70px;
  }
}

/* bg
----------------------------------*/
.bg-01 {
  position: relative;
  background-size: 100px;
}

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

.bg-02 {
  position: relative;
}

.bg-02:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/bg-01.jpg) repeat;
  background-size: 1000px 500px;
  top: 0;
  left: 0;
  opacity: 0.2;
}

.bg-03 {
  position: relative;
}

.bg-03:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/bg-03.jpg) repeat;
  background-size: 1000px 500px;
  top: 0;
  left: 0;
  opacity: 0.2;
}

.bg-common {
  margin-left: auto;
  margin-right: auto;
  padding: 0px 20px;
  overflow: hidden;
  position: relative;
  z-index: 100;
}

.bg-common .inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 100px 0;
}

@media all and (max-width: 896px) {
  .bg-common .inner {
    padding: 40px 0;
  }
  .bg-common.type-w {
    width: calc(100% - 20px);
    margin-bottom: 100px;
    background-color: white;
  }
}

/* tbl
----------------------------------*/
.tblarea {
  max-width: 900px;
  margin: 0 auto;
}

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

.tbl th,
.tbl td {
  padding: 10px 15px;
  border: 1px solid #ddd;
}

.tbl th {
  color: #fff;
  background: #0056a7;
  width: 25%;
}

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

.tbl td {
  vertical-align: middle;
}

.tbl td.num {
  width: 10%;
  max-width: 200px;
}

@media all and (max-width: 639px) {
  .tbl th {
    width: 25%;
    text-align: left;
    font-size: 1.2rem;
  }
  .tbl th,
  .tbl td {
    padding: 5px 10px;
    font-size: 1.2rem;
  }
  .tbl td.num {
    width: 20%;
    max-width: 200px;
    min-width: 40px;
  }
}

.tbl_new {
  width: 100%;
  max-width: 1400px;
  margin: 10px auto 40px;
  font-size: 1.2rem;
}

.tbl_new tr th,
.tbl_new tr td {
  vertical-align: middle;
  padding: 10px 10px;
  border-right: 1px solid #fff;
}

.tbl_new tr th {
  font-weight: 600;
  width: 15%;
  text-align: left;
  letter-spacing: 0;
  background: #0056a7;
  color: #ffff;
  text-align: center;
}

.tbl_new tr th.type2 {
  background: #f0f0f0;
  color: #0056a7;
  border-bottom: 1px solid #fff;
}

.tbl_new tr th.w10 {
  width: 30px;
  border-top: 1px solid #fff;
}

@media all and (max-width: 639px) {
  .tbl_new tr th {
    padding-left: 10px;
  }
}

.tbl_new tr td {
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  border-right: 1px solid #f0f0f0;
}

.tbl_new2 {
  width: 100%;
}

.tbl_new2 tr th,
.tbl_new2 tr td {
  vertical-align: middle;
  padding: 15px 10px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.tbl_new2 tr th {
  background-color: #f5f5f5;
  width: 15%;
}

.tbl_new2 tr td {
  width: 85%;
}

.tbl_new2 tr th {
  font-weight: 700;
}

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

@media all and (max-width: 639px) {
  .tbl_new2 tr th span {
    font-size: 1.2rem;
  }
}

.tbl-txt {
  margin-bottom: 40px;
  padding: 20px 15px;
  border-bottom: 2px solid #dddddd;
  vertical-align: middle;
  text-align: right;
  font-weight: bold;
  background-color: #fff;
}

.tbl-txt span {
  font-size: 2rem;
}

.tbl-box {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border: 2px solid #dddddd;
}

.tbl-box .t-right {
  text-align: right;
}

.tbl-box th,
.tbl-box td {
  padding: 10px 15px;
  border-bottom: 2px solid #dddddd;
  vertical-align: middle;
  background-color: #fff;
}

.tbl-box th.type1,
.tbl-box td.type1 {
  width: 190px;
}

@media all and (max-width: 639px) {
  .tbl-box th.type1,
  .tbl-box td.type1 {
    width: 150px;
  }
}

.tbl-box th.b-no,
.tbl-box td.b-no {
  padding-bottom: 0;
  border-bottom: none;
}

.tbl-box th.tm-no,
.tbl-box td.tm-no {
  padding-top: 0;
}

@media all and (max-width: 639px) {
  .tbl-box th,
  .tbl-box td {
    padding: 10px;
    font-size: 1.2rem;
  }
}

.tbl-box th {
  width: 25%;
  text-align: center;
  color: white;
  background-color: #ddd;
  border-bottom-color: #fff;
  border-right: 1px solid #fff;
  font-size: 1.6rem;
  color: #333;
}

.tbl-box th.th-1 {
  width: 45%;
}

.tbl-box th.maintitle {
  text-align: center;
  color: #fff;
  font-size: 1.8rem;
}

.tbl-box th.maintitle .sub {
  font-size: 1.2rem;
}

@media all and (max-width: 639px) {
  .tbl-box th {
    font-size: 1rem;
  }
  .tbl-box th.maintitle {
    text-align: center;
    color: #fff;
    font-size: 1.2rem;
  }
  .tbl-box th.maintitle .sub {
    font-size: 1rem;
  }
  .tbl-box th.box1 {
    width: 30%;
    min-width: 160px;
  }
}

.tbl-box td {
  border-right: 1px solid #dddddd;
  width: 40%;
}

.tbl-box td.main {
  width: 20%;
}

.tbl-box td a {
  font-weight: bold;
  opacity: 0.4s;
}

.tbl-box td a:hover {
  opacity: 0.4s;
  color: #333;
}

@media all and (max-width: 639px) {
  .tbl-box td.box2 {
    width: 20%;
  }
}

.tbl-border {
  width: 100%;
}

.tbl-border .t-right {
  text-align: right;
}

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

@media all and (max-width: 639px) {
  .tbl-border th,
  .tbl-border td {
    padding: 10px;
    font-size: 1.2rem;
  }
}

.tbl-border th {
  width: 10%;
  text-align: left;
  font-weight: 600;
  border-right: 1px solid #0056a7;
}

.tbl-border th.th-1 {
  width: 45%;
}

.tbl-border2 {
  width: 100%;
}

.tbl-border2 .t-right {
  text-align: right;
}

.tbl-border2 th,
.tbl-border2 td {
  padding: 10px 15px;
  border-bottom: 2px solid #dddddd;
  vertical-align: middle;
  width: 25%;
}

.tbl-border2 th p,
.tbl-border2 td p {
  font-size: 1.4rem;
  margin-top: 10px;
  font-weight: bold;
}

.tbl-border2 th.type1,
.tbl-border2 td.type1 {
  width: 190px;
}

@media all and (max-width: 639px) {
  .tbl-border2 th.type1,
  .tbl-border2 td.type1 {
    width: 150px;
  }
}

.tbl-border2 th.b-no,
.tbl-border2 td.b-no {
  padding-bottom: 0;
  border-bottom: none;
}

.tbl-border2 th.tm-no,
.tbl-border2 td.tm-no {
  padding-top: 0;
}

@media all and (max-width: 639px) {
  .tbl-border2 th,
  .tbl-border2 td {
    padding: 10px;
    font-size: 1.2rem;
  }
}

.tbl-border2 th {
  width: 28%;
  text-align: center;
  font-weight: 800;
  border-bottom-color: #0056a7;
  color: #fff;
  background-color: #0056a7;
}

.tbl-border2 th.th-1 {
  width: 45%;
}

@media all and (max-width: 639px) {
  .tbl-border2 th,
  .tbl-border2 td {
    padding: 10px 15px;
    border-bottom: 2px solid #dddddd;
    vertical-align: middle;
    width: 50%;
  }
}

/* ggmap
----------------------------------*/
.gmapbox {
  padding: 100px;
  background-color: rgba(168, 152, 77, 0.1);
}

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

.gmapbox2 {
  padding: 20px;
  border: 2px solid #ddd;
  margin-top: 20px;
  background-color: #fff;
}

@media all and (max-width: 639px) {
  .gmapbox2 {
    padding: 20px;
    margin-top: -2px;
  }
}

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

.ggmap.type-top {
  padding-bottom: 18%;
}

@media all and (max-width: 639px) {
  .ggmap.type-top {
    margin-bottom: 4px;
  }
}

@media all and (max-width: 1100px) {
  .ggmap {
    padding-bottom: 28%;
  }
}

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

.g-ttl {
  background-color: #0056a7;
  color: #fff;
  padding: 5px 10px;
  font-size: 1.8rem;
}

@media all and (max-width: 639px) {
  .g-ttl {
    font-size: 1.3rem;
  }
}

.g-txt {
  margin-bottom: 20px;
}

@media all and (max-width: 639px) {
  .g-txt {
    font-size: 1rem;
    margin-top: 10px;
    margin-bottom: 15px;
  }
}

/* Gallery-list
----------------------------------*/
.gallerarea {
  max-width: 1500px;
  margin: 0 auto 30px;
  padding: 40px;
  background-color: #fff;
}

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

.gallery-list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.gallery-list li {
  width: 22%;
  margin: 0 1% 20px;
  border: 1px solid #363636;
  padding: 10px;
  background-color: #fff;
}

.gallery-list li img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery-list li .txt {
  margin-top: 10px;
  font-size: 2rem;
  text-align: center;
  font-weight: bold;
}

@media all and (max-width: 639px) {
  .gallery-list li {
    width: 98%;
    margin-bottom: 10px;
  }
  .gallery-list li img {
    width: 100%;
    height: 120px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .gallery-list li .txt {
    font-size: 1.5rem;
  }
}

/* blog
----------------------------------*/
#top-blog .pages {
  display: none;
}

.blogbox {
  max-width: 1200px;
  margin: 0 auto;
}

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

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

.blog-wrap > li {
  width: 100%;
  margin: 0 auto 20px;
  position: relative;
  padding: 15px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: rgba(255, 255, 255, 0.2);
}

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

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

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

@media all and (max-width: 639px) {
  .blog-wrap li {
    width: 100%;
    margin: 0 auto 20px;
    display: block;
  }
  .blog-wrap li .blog-img {
    width: 100%;
  }
  .blog-wrap li .blog-detail {
    width: 100%;
    padding: 10px;
  }
  .blog-wrap li .blog-txt {
    padding: 10px 0;
  }
}

.blog-img {
  width: 20%;
  height: 150px;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

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

.blog-detail {
  width: 80%;
  margin: 0 auto;
  padding: 10px 20px 0;
}

.blog-cat {
  background-color: #22A4DD;
  color: #fff;
  font-size: 13px;
  display: none;
}

.blog-detail-upper {
  position: relative;
  z-index: 2;
  margin: -31px 0 0;
  color: #fff;
  font-size: 12px;
}

.blog-category {
  display: inline-block;
  padding: 5px;
  line-height: 1.3;
  text-align: center;
  background: #111;
}

.blog-date {
  background: #d8b54e;
  width: 100px;
  padding: 5px;
  line-height: 1.3;
  text-align: center;
  display: inline-block;
  color: #fff;
  font-size: 12px;
}

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

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

.blog-title {
  font-weight: 700;
  line-height: 1.3;
  margin: 10px 0;
}

.blog-txt {
  line-height: 1.5;
  color: #333;
  font-size: 1.7rem;
  padding: 15px 15px 15px 15px;
  color: #fff;
  font-family: "Zen Old Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
  font-weight: bold;
}

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

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

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

.pages .page_next a,
.pages .page_prev a {
  color: #0056a7;
  padding: 4px 5px;
  background: #fff;
  font-size: 12px;
}

.category_nav {
  border: 1px solid #dddddd;
}

.category_nav li a {
  display: block;
  padding: 15px;
  border-bottom: 1px dotted #dddddd;
  background-color: #ffffff;
}

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

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

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

.prv dt {
  color: #0056a7;
  border-bottom: 1px solid #ccc;
  margin: 10px 0;
}

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

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

.blog-month ul li {
  width: 49%;
  padding: 5px 0;
  margin-bottom: 5px;
  text-align: center;
  letter-spacing: 0;
  background: #a8984d;
}

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

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

.blog-month ul li a {
  color: #fff;
  font-size: 12px;
}

.blog-month ul li a:hover {
  color: #0056a7;
}

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

/* breadcrumb
----------------------------------*/
.pagewrapper {
  position: relative;
}

.breadcrumb {
  padding: 10px 30px;
  z-index: 101;
  margin: 0px auto 0px;
  font-size: 1.2rem;
}

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

.breadcrumb li a {
  color: #d8b54e;
}

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

@media all and (max-width: 639px) {
  .breadcrumb {
    font-size: 10px;
    left: 20px;
    padding: 8px 20px;
  }
}

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

.form dl dt {
  float: left;
  width: 280px;
  padding-top: 20px;
  font-weight: 600;
}

.form dl dt span {
  color: #fff;
  background: #0056a7;
  padding: 5px 8px;
  margin-right: 5px;
  font-size: 11px;
  position: relative;
  top: -2px;
}

.form dl dt span.nini {
  background: #d8b54e;
  color: #604C3F;
}

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

.form dl dd.type1 p {
  display: inline;
}

.form dl dd.type1 .w20 {
  width: 20%;
}

@media all and (max-width: 896px) {
  .form dl dd.type1 .w20 {
    width: 30%;
  }
}

.form dl dd.type1 .w30 {
  width: 30%;
}

@media all and (max-width: 639px) {
  .form dl dd.type1.type1-name .w30 {
    width: 48%;
  }
}

.form dl dd.type1 .w60 {
  width: 60%;
}

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

.form .textarea,
.form textarea {
  border: 0;
  padding: 12px 15px;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
  background: #f7f7f7;
}

.form .textarea02 {
  width: 48.5%;
  margin-right: 3%;
  background: #f9fcff;
  -webkit-box-shadow: 0 8px 8px rgba(165, 165, 165, 0.4);
          box-shadow: 0 8px 8px rgba(165, 165, 165, 0.4);
}

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

.form .textarea03 {
  width: 20%;
  margin-right: 1%;
}

.form .textarea04 {
  width: 70%;
  margin-right: 1%;
}

.form .select_arrow {
  position: relative;
}

.form .select_arrow::before {
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 10.5px solid #0056a7;
  content: "";
  position: absolute;
  right: 9px;
  top: 42px;
  width: 0;
}

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

.form button {
  cursor: pointer;
  display: block;
  color: #fff;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  border: 1px solid #363636;
  font-weight: 600;
  padding: 12px 5px;
  margin: 20px auto 0;
  width: 250px;
  background: #363636;
}

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

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

.form .select-wrap {
  position: relative;
  overflow: hidden;
  display: inline-block;
  min-width: 192px;
  min-width: 12em;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  color: #333;
}

.form .select-wrap select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  z-index: 2;
  display: block;
  width: 200%;
  width: -webkit-calc(100% + 5em);
  margin: 0;
  padding: 11px 35px 11px 11px;
  padding: 0.6875rem 2.1875rem 0.6875rem 0.6875rem;
  background: transparent;
  border: 0;
  outline: none;
  line-height: 1.5;
}

.form .entypo-down-open-mini:before {
  font-family: "FontAwesome";
  content: "\f0ab";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 12px;
  right: 0.75rem;
  margin-top: -8px;
  margin-top: -0.5rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  color: #0056a7;
}

.form label.radio_text {
  cursor: pointer;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
  padding-left: 20px;
  display: inline-block;
}

.form label.radio_text:before {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 1px solid #ccc;
  border-radius: 50%;
  left: 0px;
  top: 2px;
  content: "";
  z-index: 3;
}

.form label.radio_text:after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 100%;
  left: 2px;
  top: 4px;
  background-color: #0056a7;
  z-index: 1;
}

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

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

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

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

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

.form label.checkbox_text:after {
  content: "";
  position: absolute;
  top: 40%;
  left: 5px;
  display: block;
  margin-top: -9px;
  width: 8px;
  height: 12px;
  border-right: 3px solid #0056a7;
  border-bottom: 3px solid #0056a7;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: 1;
}

@media all and (max-width: 639px) {
  .form label.checkbox_text:after {
    margin-top: -18px;
  }
}

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

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

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

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

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

@media all and (max-width: 639px) {
  .form input[type="text"],
  .form textarea {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    margin-left: -5px;
  }
}

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

.thanks {
  padding: 40px;
  border: 1px solid #0056a7;
  background-color: #fff;
  max-width: 700px;
  margin: 0 auto;
}

.thanks .btn04 {
  position: relative;
  z-index: 1;
}

@media all and (max-width: 639px) {
  .thanks {
    max-width: 100%;
    padding: 30px 20px;
  }
  .thanks p.t-m50 {
    margin-top: 0;
  }
  .thanks p.b-m50 {
    margin-bottom: 20px;
  }
  .thanks p.tcenter.sp-left {
    text-align: left;
  }
}

.contentbox {
  margin-top: 100px;
}

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

.policy {
  padding: 30px;
  background: rgba(255, 255, 255, 0.8);
  max-width: 1200px;
  margin: 20px auto 0;
}

.mtitle_small {
  position: relative;
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #604C3F;
  font-weight: 600;
  padding: 10px;
  border-bottom: 1px solid #ccc;
}

.mtitle_small:before {
  content: "";
  width: 50px;
  height: 1px;
  background-color: #0056a7;
  position: absolute;
  left: 0;
  bottom: -1px;
}

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

.mtitle_small2 {
  position: relative;
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: #604C3F;
  font-weight: 600;
  padding: 10px 10px 10px 20px;
}

.mtitle_small2:before {
  content: "";
  background-color: #fff;
  width: 3px;
  height: 40%;
  position: absolute;
  top: 30%;
  left: 0;
}

.mtitle_small2:after {
  content: "";
  background-color: #838383;
  width: 3px;
  height: 40%;
  position: absolute;
  top: 30%;
  left: 2px;
}

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

@media all and (max-width: 639px) {
  .gallery_ul {
    margin-left: auto;
    margin-right: auto;
  }
}

.gallery_ul > li {
  width: 31.33%;
  margin-left: 2%;
  margin-bottom: 4%;
  font-weight: 600;
}

.gallery_ul > li .photobox-wrap {
  width: 100%;
  height: 220px;
  text-align: center;
  overflow: hidden;
  background: #aaa;
  margin-bottom: 10px;
}

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

@media all and (max-width: 896px) {
  .gallery_ul > li {
    width: 48%;
  }
}

@media all and (max-width: 639px) {
  .gallery_ul > li {
    width: 85%;
    margin: 0 auto 30px;
  }
  .gallery_ul > li .photobox-wrap {
    height: 180px;
  }
}

.comment {
  font-size: 1.4rem;
  letter-spacing: 0;
  padding: 0 5px;
  color: #604C3F;
}

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

/*アンカーリンク*/
.anchor-link {
  margin: 100px auto 0;
}

.anchor-link .anchorbox {
  margin: 0 20px;
  width: 380px;
}

@media all and (max-width: 639px) {
  .anchor-link .anchorbox {
    width: 100%;
    margin: 0 auto;
  }
}

.anchor-link .anchorbox a {
  display: block;
}

.anchor-link .anchorbox a:hover {
  opacity: 0.7;
  -webkit-filter: brightness(0.85) drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.6));
          filter: brightness(0.85) drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.6));
}

/*photoギャラリー*/
.gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.gallery li {
  width: 24%;
  margin: 0 calc(1% + (1% / 3)) 25px 0;
}

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

.gallery li a {
  background: rgba(241, 235, 221, 0.2);
  display: block;
  text-align: center;
  padding: 0px;
  height: 200px;
}

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

.gallery li p {
  font-size: 14px;
  margin: 0px 0 10px;
  background-color: #0056a7;
  padding: 4px 10px;
  text-align: center;
  color: #fff;
}

@media all and (max-width: 896px) {
  .gallery li {
    width: 48%;
    margin: 0 1% 0px;
  }
  .gallery li:nth-child(2n) {
    margin-right: 0;
  }
  .gallery li a {
    height: 120px;
  }
  .gallery li p {
    font-size: 12px;
  }
}

/* top box
----------------------------------*/
.top-common {
  margin: 0 auto;
  position: relative;
}

.top-common.type-blue {
  margin-bottom: 0;
}

.top-common .inner {
  padding: 100px 40px 100px;
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.top-common .mincho {
  font-weight: bold;
  font-size: 2rem;
}

@media all and (max-width: 639px) {
  .top-common .inner {
    width: calc(100% - 40px);
    padding: 20px;
  }
  .top-common .mincho {
    font-size: 1.6rem;
  }
  .top-common.type-page {
    margin-top: 50px;
  }
  .top-common.type-page .inner {
    width: 100%;
    padding: 0 20px;
  }
}

.top-wrap.type-page {
  max-width: 1200px;
  margin: 20px auto 80px;
}

.top-wrap.type-page.t-m80 {
  margin-top: 80px;
}

.top-wrap.bg-contact {
  margin-bottom: 0;
}

.top-wrap.bg-contact .txtarea {
  margin: 0px auto;
  padding: 40px 40px 100px;
}

.top-wrap .inner {
  padding: 0px 0px;
  z-index: 1;
  max-width: 100%;
}

.top-wrap .photo {
  position: relative;
  z-index: 1;
}

.top-wrap .photo .com-name {
  position: absolute;
  right: 6%;
  bottom: 0;
}

.top-wrap .photo .com-name img {
  border: none;
}

.top-wrap .txtarea {
  max-width: 1200px;
  margin: 0px auto 0 0;
  padding: 100px 40px;
}

.top-wrap .txtarea.type2 {
  padding: 20px 40px;
}

.top-wrap .mtitle {
  text-align: left;
}

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

.top-wrap .mtitle:before {
  position: absolute;
  right: auto;
}

.top-wrap .subarea {
  max-width: 1000px;
  margin: 0 auto;
  border: 4px solid #604C3F;
  padding: 40px;
  position: relative;
}

.top-wrap .subarea:before {
  position: absolute;
  content: "";
  width: 104%;
  height: 112%;
  left: -2%;
  top: -6%;
  border: 2px solid #604C3F;
}

@media all and (max-width: 1367px) {
  .top-wrap .inner {
    padding: 50px 40px;
  }
  .top-wrap .photo:before {
    height: 600px;
    top: 1%;
    left: -1%;
  }
  .top-wrap .txtarea {
    max-width: 1200px;
    margin: 0px auto 0 0;
    padding: 20px;
  }
  .top-wrap .txtarea.type2 {
    padding: 20px;
  }
}

@media all and (max-width: 1100px) {
  .top-wrap .inner {
    padding: 50px 40px;
  }
}

@media all and (max-width: 896px) {
  .top-wrap.bg-contact {
    margin-bottom: 0;
  }
  .top-wrap.bg-contact .photo {
    height: 280px;
  }
  .top-wrap .txtarea {
    max-width: 1500px;
    width: 100%;
    margin: 0 auto;
  }
  .top-wrap .photo {
    height: 200px;
  }
  .top-wrap .photo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media all and (max-width: 639px) {
  .top-wrap.bg-contact {
    margin-bottom: 0;
  }
  .top-wrap.bg-contact .photo {
    height: 140px;
  }
  .top-wrap.type-page {
    max-width: 1500px;
    margin: 50px auto 0;
  }
  .top-wrap.type-page .t-m40 {
    margin-top: 20px;
  }
  .top-wrap.type-page .photo {
    height: 200px;
  }
  .top-wrap.type-page .photo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .top-wrap.type-page .photo.flex-30 {
    margin-bottom: 20px;
  }
  .top-wrap.type-blue:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 160%;
    bottom: 0;
    right: 0;
    background-color: #0056a7;
    z-index: -1;
  }
  .top-wrap .inner {
    padding: 50px 0px;
  }
  .top-wrap .subarea {
    padding: 40px;
  }
  .top-wrap .subarea:before {
    position: absolute;
    content: "";
    width: 108%;
    height: 112%;
    left: -4%;
    top: -6%;
    border: 2px solid #604C3F;
  }
  .top-wrap .whitebox .mincho {
    font-size: 1.4rem;
  }
}

.top-greet-box {
  position: relative;
}

.top-greet-box:before {
  position: absolute;
  content: "";
  width: 30%;
  height: 100%;
  background: url(../img/top-greet-bg.jpg) no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
  opacity: 0.2;
}

.top-greet-box .inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 50px 0;
}

.top-greet-box .mainarea {
  padding: 40px 50px;
}

.top-greet-box .maintxt {
  font-weight: bold;
  font-size: 2rem;
}

.top-greet-box .photo {
  padding: 0 40px;
}

@media all and (max-width: 1367px) {
  .top-greet-box .photo {
    height: 400px;
    padding: 0 0 0 30px;
  }
  .top-greet-box .photo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media all and (max-width: 639px) {
  .top-greet-box:after {
    width: 38%;
    height: 40%;
  }
  .top-greet-box .photo {
    height: 140px;
    padding: 0;
  }
  .top-greet-box .mainarea {
    padding: 20px 0px;
  }
  .top-greet-box .maintxt {
    font-weight: bold;
    font-size: 1.6rem;
  }
}

.top-main-box {
  padding: 70px 50px;
}

.top-main-box:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/bg-01.jpg) no-repeat;
  background-size: cover;
  opacity: 0.7;
}

.top-main-box .inner {
  padding: 0px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.top-main-box .detailbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 50%;
}

.top-main-box .detailbox .txt-detail {
  border-top: 2px solid #0c66c0;
}

.top-main-box .detailbox.type2 {
  margin-top: 80px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.top-main-box .detailbox.type2 .photo {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.top-main-box .detailbox.type2 .txtarea {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  text-align: right;
}

.top-main-box .detailbox.type2 .maintitle {
  border-left: 2px solid #992121;
}

.top-main-box .detailbox.type2 .txt-detail {
  border-top: 2px solid #992121;
}

.top-main-box .photo {
  width: 50%;
  height: 440px;
}

.top-main-box .photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-main-box .txtarea {
  width: 50%;
}

.top-main-box .maintitle {
  display: inline-block;
  background-color: #333;
  color: #fff;
  padding: 8px 30px;
  font-weight: bold;
  font-size: 2rem;
  border-left: 2px solid #0c66c0;
}

.top-main-box .txt-detail {
  background-color: #fff;
  padding: 20px 20px 25px;
  text-align: left;
}

.top-main-box .btn03 {
  margin-top: 20px;
}

@media all and (max-width: 1480px) {
  .top-main-box .detailbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
  }
  .top-main-box .detailbox .photo {
    height: 340px;
  }
  .top-main-box .detailbox.type2 {
    margin-top: 50px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .top-main-box .detailbox.type2 .photo {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .top-main-box .detailbox.type2 .txtarea {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    text-align: right;
  }
  .top-main-box .detailbox.type2 .maintitle {
    border-left: 2px solid #992121;
  }
}

@media all and (max-width: 896px) {
  .top-main-box .inner {
    width: 100%;
  }
}

@media all and (max-width: 639px) {
  .top-main-box {
    padding: 50px 20px;
  }
  .top-main-box .inner {
    width: 100%;
  }
  .top-main-box .detailbox {
    display: block;
    width: 100%;
  }
  .top-main-box .detailbox .photo {
    width: 100%;
    height: 180px;
  }
  .top-main-box .detailbox .txtarea {
    width: 100%;
    position: relative;
    margin-top: -45px;
  }
  .top-main-box .maintitle {
    font-size: 1.4rem;
    padding: 8px 10px;
  }
}

.top-service-box {
  position: relative;
  z-index: 1;
}

.top-service-box:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/bg-01.jpg) repeat;
  background-size: 1100px 550px;
  opacity: 0.2;
}

.top-service-box:after {
  position: absolute;
  content: "";
  width: 100%;
  right: 0;
  bottom: 0;
  height: 20%;
  background-color: #ddd;
  z-index: -1;
}

.top-service-box .inner {
  padding: 100px 40px 80px;
  max-width: 1500px;
  position: relative;
  z-index: 1;
}

.top-service-box .title {
  margin-bottom: 50px;
}

.top-service-box .eng {
  color: #0056a7;
  font-family: "Marcellus", cursive, sans-serif;
  font-weight: 400;
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 30px;
  position: relative;
  padding-left: 20px;
}

.top-service-box .eng:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: #0056a7;
}

.top-service-box .ja {
  margin-top: 10px;
  font-size: 2rem;
  font-weight: normal;
  display: block;
  font-weight: bold;
}

@media all and (max-width: 639px) {
  .top-service-box .inner {
    padding: 50px 0px;
  }
  .top-service-box .ja {
    font-size: 1.8rem;
    font-weight: normal;
  }
}

.top-news-box {
  position: relative;
}

.top-news-box:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 30px;
  left: 0;
  top: 0;
  background: url(../img/texture.png) repeat-x;
  background-size: 32px 30px;
}

.top-news-box:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 30px;
  left: 0;
  bottom: 0;
  background: url(../img/texture.png) repeat-x;
  background-size: 32px 30px;
}

.top-news-box .inner {
  padding: 60px 40px 80px;
  max-width: 1500px;
}

@media all and (max-width: 639px) {
  .top-news-box .inner {
    padding: 60px 15px 80px;
  }
}

.top-banner-box {
  position: relative;
}

.top-banner-box:after {
  position: absolute;
  content: "";
  width: 15%;
  height: 100%;
  background: url(../img/top-treatment.png) no-repeat;
  background-size: cover;
  z-index: -1;
  top: 0;
  left: 0;
  mix-blend-mode: luminosity;
  opacity: 0.2;
}

.top-banner-box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1000px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
}

.top-banner-box ul li {
  width: 30%;
  margin: 0 1% 20px;
  background-color: #000;
}

.top-banner-box ul:hover li img {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 0.4;
}

.top-banner-box ul:hover li:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.top-banner-box ul:hover li:hover img {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 1;
}

@media all and (max-width: 639px) {
  .top-banner-box ul {
    display: block;
    margin: 0 auto;
  }
  .top-banner-box ul li {
    width: 60%;
    margin: 0 auto 10px;
  }
}

.top-page-box {
  position: relative;
}

.top-page-box .inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 50px 100px;
}

.top-page-box .inner.type2 {
  padding-bottom: 100px;
}

.top-page-box .txtarea {
  margin-top: 30px;
  background-color: #fff;
}

.top-page-box .txtarea .txt {
  padding: 0 10px 20px;
}

.top-page-box .txtarea .txt.bold {
  padding: 0;
  font-family: "Zen Old Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 2;
}

.top-page-box .photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media all and (max-width: 896px) {
  .top-page-box {
    margin-top: 0;
  }
  .top-page-box .inner {
    padding: 50px 30px;
  }
}

@media all and (max-width: 639px) {
  .top-page-box .inner {
    padding: 50px 0px;
  }
  .top-page-box .txtarea {
    margin-top: 20px;
  }
  .top-page-box .txtarea .txt {
    padding: 40px 20px 20px;
  }
}

.top-contact-box {
  position: relative;
  padding: 50px 0;
}

.top-contact-box:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/bg-02.jpg) no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.top-contact-box .inner {
  padding: 0px 50px;
  width: calc(100% - 10%);
  margin: 50px auto;
  position: relative;
  z-index: 1;
}

.top-contact-box .inner:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  background-size: cover;
  z-index: -1;
}

.top-contact-box .inner .mainarea {
  padding: 50px;
  border-right: 1px solid #37a3ea;
}

.top-contact-box .inner .title {
  text-align: center;
}

.top-contact-box .inner .title .eng {
  font-family: "Marcellus", cursive, sans-serif;
  font-weight: 400;
  font-size: 4rem;
  color: #012149;
  display: block;
  padding-bottom: 10px;
  margin-bottom: 10px;
  position: relative;
}

.top-contact-box .inner .title .eng:before {
  position: absolute;
  content: "";
  width: 50px;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 1px;
  bottom: 0;
  background-color: #0056a7;
}

.top-contact-box .inner .title .ja {
  font-size: 2rem;
  font-weight: normal;
}

.top-contact-box .inner .txtarea {
  font-weight: bold;
  border: 1px solid #0056a7;
  padding: 40px;
  text-align: center;
}

.top-contact-box .inner .txtarea i {
  padding-right: 10px;
  color: #0056a7;
}

.top-contact-box .inner .subarea {
  padding: 50px;
}

.top-contact-box .inner .txtdeko5 {
  margin-top: 30px;
}

@media all and (max-width: 1100px) {
  .top-contact-box .inner {
    padding: 50px 20px;
  }
  .top-contact-box .inner .mainarea {
    padding: 40px 40px 40px 20px;
  }
  .top-contact-box .inner .subarea {
    padding: 20px 20px 40px 40px;
  }
  .top-contact-box .inner .telbox {
    margin-top: 0;
  }
  .top-contact-box .inner .txtdeko5 {
    margin-top: 30px;
  }
}

@media all and (max-width: 896px) {
  .top-contact-box .inner {
    padding: 50px 20px;
  }
  .top-contact-box .inner .mainarea {
    padding: 0 0 30px;
    border-right: none;
    border-bottom: 1px solid #ddd;
  }
  .top-contact-box .inner .subarea {
    padding: 30px 0 0 0;
  }
}

@media all and (max-width: 639px) {
  .top-contact-box:before {
    background-attachment: initial;
  }
  .top-contact-box .inner {
    padding: 50px 20px;
  }
  .top-contact-box .inner .title .eng {
    font-size: 2rem;
  }
  .top-contact-box .inner .title .ja {
    font-size: 1.6rem;
  }
  .top-contact-box .inner .txtdeko4 {
    margin: 20px auto 0px;
  }
  .top-contact-box .inner .txtarea {
    padding: 20px 15px;
  }
}

/* page box
----------------------------------*/
.page-greet-box .inner {
  padding: 100px 20px;
  max-width: 1240px;
}

.page-greet-box.p0 {
  margin-bottom: 50px;
}

.page-greet-box.p0 .inner {
  padding: 0 40px 10px;
}

.page-greet-box.p0 .flex-50 {
  padding: 0 40px 0 0;
}

.page-greet-box.p0 .flex-50.border {
  position: relative;
  padding: 0 0 0 40px;
}

.page-greet-box.p0 .flex-50.border:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #333;
}

.page-greet-box .titlearea {
  margin: 40px auto;
  text-align: center;
  position: relative;
}

.page-greet-box .photo {
  margin: 0 auto;
  text-align: center;
}

.page-greet-box .photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-greet-box .title-name {
  position: absolute;
  bottom: 0;
  right: 0;
  display: inline-block;
  background-color: #fff;
  padding: 10px 40px;
  font-size: 4rem;
  font-weight: bold;
}

.page-greet-box .title-name span {
  font-size: 1.4rem;
  padding: 2px 10px;
  border: 1px solid #333;
}

.page-greet-box .title-name.type2 {
  font-size: 2rem;
}

.page-greet-box .txtarea {
  max-width: 1200px;
  margin: 20px auto 0;
}

.page-greet-box .factorybox {
  margin-top: 40px;
}

.page-greet-box .detailarea {
  margin: 20 auto 0;
  padding: 20px 0;
}

.page-greet-box .detailarea .detailarea-inner {
  padding: 30px;
  background-color: #f3f3f3;
}

.page-greet-box .mainarea {
  margin: 40px auto;
}

.page-greet-box .mainarea.t-m50 {
  margin-top: 50px;
}

.page-greet-box .mainarea.w90 {
  max-width: 1300px;
}

.page-greet-box .mainarea.bg-gray .mainarea-list {
  background-color: #f3f3f3;
  padding: 40px 40px;
  margin-bottom: -10px;
}

.page-greet-box .mainarea.rightbox {
  padding-left: 150px;
  position: relative;
}

.page-greet-box .mainarea.rightbox:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 100%;
  top: 0;
  left: 70px;
  background-color: #ddd;
}

.page-greet-box .tablearea {
  max-width: 90%;
  margin: 0 auto;
}

.page-greet-box .mainarea-listBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.page-greet-box .mainarea-list {
  margin-bottom: 20px;
  width: 48%;
  margin: 0 1% 20px;
}

.page-greet-box .mainarea-list.a-top {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 30px;
}

.page-greet-box .mainarea-list.a-top.t-m50 {
  margin-top: 50px;
}

.page-greet-box .mainarea-list.list3 {
  width: 30%;
}

.page-greet-box .mainarea-list-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.page-greet-box .list-photo {
  height: 200px;
  margin-bottom: 20px;
}

.page-greet-box .list-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-greet-box .list-num {
  width: 20%;
  font-size: 3rem;
  font-family: "Marcellus", cursive, sans-serif;
  font-weight: 400;
  font-weight: bold;
  max-width: 100px;
  border-right: 1px solid #ddd;
  padding-right: 20px;
  text-align: center;
}

.page-greet-box .list-subtxt {
  width: 16%;
  font-size: 1.6rem;
  font-weight: bold;
  max-width: 90px;
  border-right: 1px solid #000;
  padding-right: 10px;
  text-align: center;
  line-height: 1.6;
}

.page-greet-box .list-subtxt span {
  font-size: 2.8rem;
}

.page-greet-box .list-txt {
  width: 84%;
  padding-left: 20px;
  font-weight: bold;
}

.page-greet-box .list-txt .list-txt-main {
  font-size: 2rem;
  margin-bottom: 10px;
}

@media all and (max-width: 1480px) {
  .page-greet-box .factorybox {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media all and (max-width: 896px) {
  .page-greet-box.p0 .inner {
    padding: 0 30px;
  }
  .page-greet-box.p0 .flex-50 {
    padding: 0 0 20px 0;
  }
  .page-greet-box.p0 .flex-50.border {
    position: relative;
    padding: 40px 0 0 0;
  }
  .page-greet-box.p0 .flex-50.border:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    top: 0;
    left: 0;
    background-color: #333;
  }
  .page-greet-box .inner {
    padding: 50px 30px;
  }
  .page-greet-box .title-name {
    padding: 4px 14px;
    font-size: 2rem;
    font-weight: bold;
  }
  .page-greet-box .title-name span {
    font-size: 1.2rem;
    padding: 2px 10px;
    border: 1px solid #333;
  }
  .page-greet-box .title-name.type2 {
    font-size: 1.5rem;
  }
  .page-greet-box .mainarea.rightbox {
    padding-left: 60px;
    position: relative;
  }
  .page-greet-box .mainarea.rightbox:before {
    position: absolute;
    content: "";
    width: 10px;
    height: 100%;
    top: 0;
    left: 20px;
    background-color: #ddd;
  }
  .page-greet-box .mainarea.bg-gray .mainarea-list {
    background-color: #f3f3f3;
    padding: 30px 20px;
  }
}

@media all and (max-width: 639px) {
  .page-greet-box .inner {
    padding: 40px 0 0;
  }
  .page-greet-box.p0 {
    margin-top: 50px;
    margin-bottom: 0px;
  }
  .page-greet-box.p0 .inner {
    padding: 0px;
  }
  .page-greet-box .factorybox {
    margin-top: 20px;
  }
  .page-greet-box .factorybox .photo {
    height: 330px;
  }
  .page-greet-box .detailarea {
    margin: 0 auto 0;
    padding: 0px 0;
  }
  .page-greet-box .detailarea .detailarea-inner {
    padding: 20px 15px;
    background-color: #f3f3f3;
  }
  .page-greet-box .titlearea {
    margin: 20px auto;
    text-align: center;
  }
  .page-greet-box .photo {
    height: 200px;
  }
  .page-greet-box .photo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .page-greet-box .title-name {
    padding: 4px 14px;
    font-size: 1.6rem;
    font-weight: bold;
  }
  .page-greet-box .title-name span {
    font-size: 1.2rem;
    padding: 2px 10px;
    border: 1px solid #333;
  }
  .page-greet-box .mainarea {
    margin: 20px auto;
  }
  .page-greet-box .mainarea.rightbox {
    padding-left: 30px;
    position: relative;
  }
  .page-greet-box .mainarea.rightbox:before {
    position: absolute;
    content: "";
    width: 4px;
    height: 100%;
    top: 0;
    left: 5px;
    background-color: #ddd;
  }
  .page-greet-box .mainarea.bg-gray .mainarea-list {
    background-color: #f3f3f3;
    padding: 20px 15px;
  }
  .page-greet-box .tablearea {
    max-width: 100%;
    margin: 0 auto;
  }
  .page-greet-box .mainarea-list {
    margin-bottom: 10px;
  }
  .page-greet-box .mainarea-list.a-top {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 20px;
  }
  .page-greet-box .mainarea-list.a-top.t-m50 {
    margin-top: 30px;
  }
  .page-greet-box .list-num {
    max-width: 40px;
    font-size: 1.6rem;
    padding-right: 5px;
    text-align: left;
  }
  .page-greet-box .list-subtxt {
    max-width: 40px;
    font-size: 1.4rem;
    padding-right: 5px;
    text-align: left;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
            writing-mode: vertical-rl;
  }
  .page-greet-box .list-txt {
    width: 80%;
    padding-left: 15px;
    font-weight: bold;
  }
}

.page-map-box .inner {
  padding: 100px 20px;
  max-width: 1240px;
}

.page-map-box .mainarea {
  position: relative;
  padding: 100px 0 0px;
}

.page-map-box .map {
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  margin: 0 auto;
  max-width: 1000px;
}

.page-map-box .txt {
  font-size: 2rem;
  margin: 10px auto 40px;
  font-weight: bold;
}

.page-map-box .txtarea2 {
  text-align: right;
  margin-top: 20px;
}

.page-map-box .txtarea2 .mtitle6 {
  margin: 0 0 0 auto;
  text-align: right;
}

.page-map-box .txtarea2 .mtitle6 .ja {
  display: inline-block;
}

.page-map-box .txtarea2 .mtitle6 .eng {
  display: block;
}

.recruitBox {
  background-color: #fff;
}

.recruitBox .recruitbox-txtarea {
  padding: 20px 40px;
}

.recruitBox .recruitbox-photo {
  height: 400px;
}

.recruitBox .recruitbox-photo img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.recruitBox.flex.type-reverse .recruitbox-txtarea {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.recruitBox.flex.type-reverse .recruitbox-photo {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

@media all and (max-width: 639px) {
  .recruitBox .recruitbox-txtarea {
    padding: 20px 20px;
  }
  .recruitBox .recruitbox-photo {
    height: 180px;
  }
}

.page-link-box {
  position: relative;
}

.page-link-box.bg-02 .inner {
  padding: 100px 20px 100px;
  max-width: 1240px;
}

.page-link-box .inner {
  padding: 0px 20px 100px;
  max-width: 1240px;
}

.page-link-box .mainarea {
  padding: 40px;
  background-color: #f6fafa;
}

.page-link-box .txtarea.t-m100 {
  margin-top: 100px;
}

.page-link-box .link-photo {
  position: relative;
  display: block;
}

.page-link-box area {
  background-color: #ddd;
}

.page-link-box .cls-1 {
  fill: #97a8d5;
}

.page-link-box .cls-2 {
  fill: #e3d3aa;
}

.page-link-box .cls-3 {
  fill: #c0dd98;
}

.page-link-box .cls-4 {
  fill: #f4b4d0;
}

.page-link-box .cls-5 {
  fill: #f5b1aa;
}

.page-link-box .cls-6 {
  fill: #fedf8f;
}

.page-link-box .cls-7 {
  fill: #85cbbf;
}

.page-link-box .cls-8 {
  fill: #8fd3f5;
}

.page-link-box .cls-10,
.page-link-box .cls-9 {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-link-box .cls-9 {
  stroke: #3e3a39;
  stroke-width: 0.6px;
}

.page-link-box .cls-10 {
  stroke: #a8a8a8;
  stroke-width: 4px;
}

.page-link-box .cls-11 {
  font-size: 40px;
}

.page-link-box .cls-11,
.page-link-box .cls-12,
.page-link-box .cls-13,
.page-link-box .cls-16 {
  fill: #231815;
}

.page-link-box .cls-11 {
  font-family: "Zen Old Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
}

.page-link-box .cls-12 {
  opacity: 0.29;
  font-size: 72px;
  font-family: "Marcellus", cursive, sans-serif;
  font-weight: 400;
}

.page-link-box .cls-13 {
  stroke: #040000;
  stroke-miterlimit: 10;
}

.page-link-box .cls-14 {
  fill: #5c946a;
}

.page-link-box .cls-15 {
  fill: #9cc17f;
}

.page-link-box .cls-16 {
  font-size: 2rem;
  font-weight: bold;
}

.page-link-box a:hover .cls-15 {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  fill: #eccc14;
}

.page-link-box a:hover .cls-14 {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  fill: #70c736;
}

.linkBox {
  padding-top: 50px;
}

.linkBox .linkBox-detail {
  padding: 30px;
  background-color: #fff;
}

.linkBox .linlBox-title {
  background-color: rgba(152, 187, 216, 0.4);
  padding: 10px 20px;
  font-weight: bold;
}

/* list
----------------------------------*/
.news-list {
  margin-top: 50px;
  background-color: #f5f5f5;
  padding: 30px 20px;
}

.news-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.news-list .data {
  width: 20%;
  max-width: 150px;
  border-right: 1px solid #333;
}

.news-list .txt {
  padding-left: 20px;
}

@media all and (max-width: 639px) {
  .news-list {
    margin-top: 20px;
  }
  .news-list .data {
    width: 100%;
    max-width: 150px;
    border-right: none;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
    margin-bottom: 5px;
  }
  .news-list .txt {
    padding-left: 0px;
  }
}

.service-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
}

.service-list li {
  width: 25%;
  position: relative;
  height: 500px;
  z-index: 1;
  background-color: #fff;
}

.service-list li .photo {
  position: relative;
  overflow: hidden;
  height: 500px;
}

.service-list li .photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.service-list li .photo:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.3;
}

.service-list li:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.service-list li:hover .photo img {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
  opacity: 1;
}

.service-list li:hover .arrow {
  -webkit-animation: bounce 2s infinite 0s;
          animation: bounce 2s infinite 0s;
}

.service-list .titlearea {
  z-index: 1;
  position: absolute;
  content: "";
  left: 30px;
  right: 0;
  margin: 0 auto;
  bottom: -10px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.service-list .list-title {
  display: inline-block;
  color: #fff;
  font-size: 2.2rem;
  text-align: center;
  background-color: #0c66c0;
  padding: 6px 30px;
}

.service-list .arrow {
  margin: 20px 0 0;
  position: relative;
  display: block;
  width: 32px;
  height: 32px;
  border: 2px solid #000;
  background-color: #000;
  background-size: 14px auto;
  z-index: 2;
}

.service-list .arrow:before {
  position: absolute;
  top: calc(50% - 8px);
  left: calc(50% - 6px);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  display: block;
  width: 12px;
  height: 12px;
  content: "";
  border: 2px solid white;
  border-width: 0px 0 2px 2px;
}

@media all and (max-width: 1367px) {
  .service-list li {
    width: 50%;
    height: 250px;
  }
  .service-list li .photo {
    height: 250px;
  }
}

@media all and (max-width: 639px) {
  .service-list li {
    width: 100%;
    height: 130px;
    margin-bottom: 10px;
  }
  .service-list li .photo {
    height: 130px;
  }
  .service-list .list-title {
    font-size: 1.4rem;
  }
  .service-list .titlearea {
    left: 0;
    right: 0;
    bottom: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .service-list .arrow {
    margin: 10px 0 0;
  }
}

@-webkit-keyframes bounce {
  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}

@keyframes bounce {
  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}

.company-list {
  max-width: 1200px;
  margin: 0px auto 0;
  position: relative;
  z-index: 1;
}

.company-list.w0 {
  max-width: 100%;
}

.company-list .maintitle {
  font-weight: bold;
  padding: 0 0 0px 20px;
  position: relative;
  font-size: 2rem;
  margin-bottom: 10px;
}

.company-list .maintitle:before {
  position: absolute;
  content: "";
  width: 4px;
  height: 60%;
  left: 0;
  top: 20%;
  background-color: #0056a7;
}

.company-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-bottom: 10px;
  background-color: #fff;
}

.company-list .title {
  width: 140px;
  width: 24%;
  background-color: #e9e9e9;
  color: #012149;
  padding: 4px 10px;
  text-align: center;
  font-weight: bold;
}

.company-list .txt {
  border-top: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 4px 20px;
  width: 86%;
}

.company-list .txtset {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 5px auto;
}

.company-list .txt-left {
  width: 20%;
  max-width: 30px;
  background-color: #ddd;
  padding: 2px 10px;
  text-align: center;
  font-size: 1.3rem;
}

.company-list .txt-right {
  width: 80%;
  padding-left: 10px;
}

.company-list.type2 {
  margin: 40px auto 0 0;
  max-width: 100%;
}

.company-list.type2 li {
  background-color: #ececec;
  border-radius: 8px;
}

.company-list.type2 li .title {
  color: #000;
  border-right: 1px solid #fff;
  background-color: transparent;
  padding: 4px 20px;
  max-width: 200px;
  text-align: center;
}

.company-list.type2 li .txt {
  border-top: none;
  border-right: none;
  border-bottom: none;
}

.company-list.type3 .title {
  width: 140px;
  width: 20%;
  background-color: #ddd;
  color: #0c0c0c;
  padding: 4px 10px;
}

.company-list.type4 .title {
  min-width: 60px;
  max-width: 60px;
  width: 10%;
  text-align: center;
  position: relative;
}

.company-list.type4 .title:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 8px;
  border-left: 10px solid #0056a7;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  top: 32%;
  right: -10px;
}

.company-list.type5 .txt {
  width: 100%;
  border-left: 1px solid #ddd;
}

@media all and (max-width: 639px) {
  .company-list {
    margin: 0px;
  }
  .company-list.type2 {
    margin-top: 20px;
  }
  .company-list .title {
    font-size: 1.2rem;
    width: 100px;
    min-width: 100px;
  }
  .company-list .txt {
    margin-left: 0;
    padding: 4px 10px;
    font-size: 1rem;
  }
  .company-list .txtset {
    display: block;
  }
  .company-list .txt-left {
    width: 20%;
    max-width: 100px;
    background-color: #ddd;
    padding: 2px 10px;
    text-align: center;
    font-size: 1rem;
  }
  .company-list .txt-right {
    width: 80%;
    padding-left: 0px;
  }
}

.flow-list {
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
}

.flow-list:before {
  position: absolute;
  content: "";
  width: 4px;
  height: 100%;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 0;
  background-color: #ddd;
}

.flow-list li {
  position: relative;
  padding: 50px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flow-list li:before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 20%;
  border-radius: 50%;
  background-color: #ddd;
}

.flow-list .list-photo {
  width: 46%;
  height: 350px;
}

.flow-list .list-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.flow-list .list-txtarea {
  padding: 30px 0;
  width: 46%;
  margin-left: 8%;
}

.flow-list .list-txtarea .list-title {
  font-weight: bold;
  font-size: 2rem;
}

.flow-list .list-txtarea a {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  color: #0d347c;
}

.flow-list .list-txtarea a:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  color: #789adb;
}

.flow-list .list-txt {
  width: 100%;
  padding-left: 0;
  margin-top: 20px;
}

.flow-list .list-txt.t-m0 {
  margin-top: 0;
}

.flow-list .reverse .list-photo {
  width: 46%;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.flow-list .reverse .list-txtarea {
  padding: 30px 0;
  width: 46%;
  margin-left: auto;
  margin-right: 8%;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

@media all and (max-width: 1367px) {
  .flow-list li {
    position: relative;
    padding: 50px 0;
  }
  .flow-list li:before {
    left: 8%;
  }
  .flow-list li:after {
    left: 8%;
    width: 84%;
  }
  .flow-list li:first-child {
    padding: 0;
    margin-bottom: 50px;
  }
}

@media all and (max-width: 639px) {
  .flow-list .list-num {
    width: 70px;
    height: 70px;
    font-size: 3rem;
  }
  .flow-list .list-txtarea {
    padding: 10px 0 10px 90px;
  }
  .flow-list .list-txtarea .list-title {
    font-weight: bold;
    font-size: 1.5rem;
  }
  .flow-list li {
    position: relative;
    padding: 40px 0 20px;
  }
  .flow-list li:before {
    left: 10%;
    bottom: -10px;
  }
  .flow-list li:after {
    left: 10%;
    width: 80%;
    bottom: -10px;
  }
  .flow-list li:first-child {
    padding: 0;
    margin-bottom: 0px;
  }
}

.flow-list2 {
  position: relative;
}

.flow-list2:before {
  position: absolute;
  content: "";
  width: 4px;
  height: 100%;
  top: 0;
  left: 10px;
  background-color: #ddd;
}

.flow-list2 li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 20px 20px;
  margin: 0 0 30px 100px;
  position: relative;
}

.flow-list2 li:before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  top: 27%;
  left: -8.9%;
  background-color: #ddd;
}

.flow-list2 li:after {
  position: absolute;
  content: "";
  width: 9%;
  height: 4px;
  top: 32%;
  left: -8.9%;
  background-color: #ddd;
}

.flow-list2 .list-title {
  width: 15%;
  padding: 10px 20px;
  border-right: 1px solid #333;
  font-weight: bold;
  font-size: 2rem;
}

.flow-list2 .list-detail {
  width: 85%;
  padding: 10px 0 10px 40px;
}

.detail-list {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.detail-list li {
  width: 30%;
  margin: 0 1%;
  padding: 30px;
  border: 1px solid #3a3a3a;
}

.detail-list .list-title {
  font-weight: bold;
  margin-bottom: 20px;
  display: block;
}

.detail-list .list-title span {
  background-color: #333;
  padding: 10px 20px;
  color: #fff;
  display: inline-block;
}

.detail-list .list-txt {
  font-weight: 300;
  width: 100%;
  padding: 0;
}

@media all and (max-width: 639px) {
  .detail-list {
    margin-top: 20px;
  }
  .detail-list li {
    width: 100%;
    margin: 0 auto 20px;
    padding: 20px 15px;
    border: 1px solid #3a3a3a;
  }
  .detail-list .list-title {
    margin-bottom: 10px;
  }
  .detail-list .list-title span {
    padding: 4px 14px;
  }
}

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

.business-list li {
  width: 48%;
  margin: 0 1% 20px;
  padding: 40px;
  background-color: rgba(152, 187, 216, 0.4);
}

.business-list .list-photo {
  position: relative;
}

.business-list .list-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.business-list .list-photo .list-title {
  position: absolute;
  bottom: 40px;
  left: -42px;
  z-index: 1;
}

.business-list .list-photo .list-title span {
  padding: 20px 50px;
  background: #0c4fbb;
  background: -webkit-gradient(linear, left top, right top, from(#0c4fbb), to(#79c5ff));
  background: linear-gradient(90deg, #0c4fbb 0%, #79c5ff 100%);
  color: #fff;
  font-weight: bold;
}

.business-list .list-txt {
  text-align: center;
  padding: 10px 0 0;
  width: 100%;
  font-size: 2rem;
}

/* txtdeko
----------------------------------*/
.txtdeko {
  font-weight: bold;
  font-size: 1.7rem;
}

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

.txtdeko2 {
  margin-bottom: 10px;
}

.txtdeko2.t-right {
  text-align: right;
}

.txtdeko2 .sub {
  color: #0056a7;
  background-color: #fff;
  border: 1px solid #0056a7;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 1.2rem;
}

@media all and (max-width: 639px) {
  .txtdeko2 {
    margin-top: 20px;
  }
  .txtdeko2 .sub {
    padding: 5px 10px;
    font-size: 10px;
  }
  .txtdeko2 .main {
    display: inline-block;
    font-size: 1.4rem;
    padding-left: 5px;
  }
}

.txtdeko3 {
  position: relative;
}

.txtdeko3 a {
  padding: 0 5px;
  position: relative;
}

.txtdeko3 a:before {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  left: 0;
  bottom: 0;
  background-color: #a1a1a1;
}

.txtdeko3 a:hover {
  color: #22A4DD;
}

.txtdeko3 a:hover:before {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  width: 100%;
}

@media all and (max-width: 639px) {
  .txtdeko3 {
    font-size: 1.4rem;
    display: inline-block;
    margin-bottom: 20px;
  }
}

.txtdeko4 {
  text-align: center;
  margin: 40px auto 10px;
}

.txtdeko4 span {
  background-color: #0056a7;
  padding: 4px 20px;
  color: #fff;
}

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

.txtdeko5 {
  text-align: center;
}

.txtdeko5 span {
  font-family: "Zen Old Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
  color: #012149;
  font-size: 2rem;
  font-weight: bold;
}

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

.txtdeko6 {
  font-size: 2rem;
}

.txtdeko6 span {
  padding: 0 0px;
  font-size: 1.5rem;
  position: relative;
  z-index: 1;
}

.txtdeko6 span:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 10px;
  bottom: -2px;
  background-color: rgba(218, 213, 206, 0.4);
  z-index: -1;
  left: 0;
}

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

.txtdeko7 {
  font-size: 3.4rem;
  font-family: "Zen Old Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
  font-weight: bold;
}

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

.txtdeko8 {
  font-size: 1.8rem;
}

.txtdeko8 a:hover {
  opacity: 0.6;
}

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

.txtbox .txt {
  background-color: #0056a7;
  color: #fff;
  padding: 2px 10px;
}

.txtbox .main {
  font-weight: bold;
  margin-left: 10px;
}

.txtbox .main:hover {
  opacity: 0.4;
}

.txtbox .main.white {
  border-bottom: 1px solid #fff;
}

.txtbox .main.white a {
  color: #a8984d;
}

.txtbox .main.white:hover {
  opacity: 0.4;
  border-bottom: 1px solid #a8984d;
}

.txtbox .main.white:hover a {
  color: #a8984d;
}

.txtbox .sub span {
  font-weight: bold;
}

.graybox {
  background-color: #f3f3f3;
  padding: 10px 15px;
  margin-top: 20px;
}

.graybox p {
  margin-bottom: 2px;
  font-weight: bold;
}

.graybox span {
  background-color: #0c66c0;
  padding: 2px 6px;
  color: #fff;
}

.graybox a {
  padding: 0 20px;
}

.graybox a:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  color: #333;
}

.telbox .txt {
  font-family: "Zen Old Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
  font-size: 3rem;
  text-align: center;
  display: block;
}

.telbox .num {
  font-size: 5rem;
  font-family: "Marcellus", cursive, sans-serif;
  font-weight: 400;
  display: block;
  text-align: center;
}

.telbox .num i {
  padding-right: 10px;
}

.telbox .num:hover {
  color: #a8984d;
}

.telbox .txt2 {
  font-family: "Zen Old Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
  font-size: 3rem;
  text-align: center;
}

.telbox .num2 {
  font-size: 3rem;
  font-family: "Marcellus", cursive, sans-serif;
  font-weight: 400;
}

.telbox .num2 i {
  padding-right: 10px;
}

.telbox .num2:hover {
  color: #a8984d;
}

.telbox .mintxt {
  text-align: center;
}

.telbox .mintxt span {
  display: inline-block;
  background-color: #ddd;
  padding: 2px 14px;
  font-size: 1.2rem;
}

.telbox .border {
  border-top: 1px solid #ddd;
  padding-top: 30px;
  margin: 30px 20px 20px;
}

@media all and (max-width: 1100px) {
  .telbox .txt {
    font-size: 1.8rem;
  }
  .telbox .num {
    font-size: 3rem;
  }
  .telbox .num i {
    padding-right: 10px;
  }
  .telbox .txt2 {
    font-size: 1.6rem;
  }
  .telbox .num2 {
    font-size: 2rem;
  }
  .telbox .border {
    border-top: 1px solid #ddd;
    padding-top: 20px;
    margin: 20px 20px 20px;
  }
}

@media all and (max-width: 639px) {
  .telbox .txt {
    font-size: 1.6rem;
  }
  .telbox .num {
    font-size: 2rem;
  }
  .telbox .num i {
    padding-right: 10px;
  }
  .telbox .txt2 {
    font-size: 1.4rem;
  }
  .telbox .num2 {
    font-size: 1.6rem;
  }
}

/* photo
----------------------------------*/
.photo-h img {
  height: 240px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media all and (max-width: 639px) {
  .photo-h {
    margin-bottom: 20px;
  }
  .photo-h img {
    height: 150px;
  }
}

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

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

.flex.w-100 {
  width: 100%;
}

.flex.j-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

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

.flex.a-first {
  -ms-flex-wrap: inherit;
      flex-wrap: inherit;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

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

@media all and (max-width: 1100px) {
  .flex.flex-pro {
    display: block;
  }
}

.flex.flex-pro .flex-30 {
  width: 30%;
}

@media all and (max-width: 1100px) {
  .flex.flex-pro .flex-30 {
    width: 100%;
    margin: 0 auto;
  }
}

.flex.flex-pro .flex-60 {
  width: 60%;
}

@media all and (max-width: 1100px) {
  .flex.flex-pro .flex-60 {
    width: 100%;
    margin: 0 auto;
  }
}

@media all and (max-width: 896px) {
  .flex.flex-tablet {
    display: block;
  }
}

@media all and (max-width: 896px) {
  .flex.flex-tablet .flex-40 {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

@media all and (max-width: 896px) {
  .flex.flex-tablet .flex-48 {
    width: 100%;
    margin: 0 auto;
  }
  .flex.flex-tablet .flex-48.l-m2 {
    margin-left: auto;
  }
  .flex.flex-tablet .flex-48.l-m4 {
    margin-left: auto;
  }
}

.flex.flex-tablet .flex-50 {
  width: 50%;
}

@media all and (max-width: 896px) {
  .flex.flex-tablet .flex-50 {
    width: 100%;
  }
}

@media all and (max-width: 896px) {
  .flex.flex-tablet .flex-56 {
    width: 90%;
    margin: 20px auto 0;
    margin-left: auto;
  }
}

@media all and (max-width: 896px) {
  .flex.flex-tablet .flex-58 {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

.flex.flex-tablet .flex-60 {
  width: 60%;
}

@media all and (max-width: 896px) {
  .flex.flex-tablet .flex-60 {
    width: 90%;
    margin: 0 auto;
  }
}

.flex.flex-tablet .flex-70 {
  width: 70%;
}

@media all and (max-width: 896px) {
  .flex.flex-tablet .flex-70 {
    width: 100%;
  }
}

.flex .flex-10 {
  width: 10%;
}

@media all and (max-width: 639px) {
  .flex .flex-10 {
    width: 50%;
    margin: 0 auto;
  }
}

.flex .flex-15 {
  width: 15%;
}

@media all and (max-width: 639px) {
  .flex .flex-15 {
    width: 50%;
    margin: 0 auto;
  }
}

.flex .flex-18 {
  width: 18%;
  margin-left: 2%;
}

@media all and (max-width: 639px) {
  .flex .flex-18 {
    width: 90%;
    margin-left: auto;
    margin: 0 auto;
  }
}

.flex .flex-20 {
  width: 20%;
}

@media all and (max-width: 639px) {
  .flex .flex-20 {
    width: 90%;
    margin: 0 auto;
  }
}

.flex .flex-25 {
  width: 25%;
}

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

.flex .flex-30 {
  width: 30%;
}

@media all and (max-width: 639px) {
  .flex .flex-30 {
    width: 90%;
    margin: 0 auto;
  }
}

.flex .flex-30.l-m2 {
  margin-left: 2%;
}

@media all and (max-width: 639px) {
  .flex .flex-30.l-m2 {
    width: 100%;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
  }
}

.flex .flex-36 {
  width: 36%;
}

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

.flex .flex-38 {
  width: 38%;
}

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

.flex .flex-38.l-m2 {
  margin-left: 2%;
}

@media all and (max-width: 639px) {
  .flex .flex-38.l-m2 {
    width: 100%;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
  }
}

.flex .flex-40 {
  width: 40%;
}

@media all and (max-width: 639px) {
  .flex .flex-40 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.flex .flex-48 {
  width: 48%;
}

@media all and (max-width: 639px) {
  .flex .flex-48 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.flex .flex-48.l-m2 {
  margin-left: 2%;
}

@media all and (max-width: 639px) {
  .flex .flex-48.l-m2 {
    width: 100%;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
  }
  .flex .flex-48.l-m2.sp-m60 {
    margin-top: 60px;
  }
}

.flex .flex-48.l-m4 {
  margin-left: 4%;
}

@media all and (max-width: 639px) {
  .flex .flex-48.l-m4 {
    width: 100%;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
  }
}

.flex .flex-50 {
  width: 50%;
}

@media all and (max-width: 896px) {
  .flex .flex-50 {
    width: 100%;
  }
}

.flex .flex-56 {
  width: 56%;
}

.flex .flex-56.l-m4 {
  margin-left: 4%;
}

@media all and (max-width: 896px) {
  .flex .flex-56.l-m4 {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media all and (max-width: 639px) {
  .flex .flex-56.l-m4 {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}

.flex .flex-56.l-m14 {
  margin-left: 14%;
}

@media all and (max-width: 639px) {
  .flex .flex-56.l-m14 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
  }
}

.flex .flex-58 {
  width: 58%;
}

.flex .flex-58.l-m2 {
  margin-left: 2%;
}

@media all and (max-width: 639px) {
  .flex .flex-58 {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
  .flex .flex-58.l-m2 {
    margin-left: auto;
  }
}

.flex .flex-60 {
  width: 60%;
}

.flex .flex-60.l-m2 {
  margin-left: 2%;
}

@media all and (max-width: 639px) {
  .flex .flex-60.l-m2 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.flex .flex-60.l-m10 {
  margin-left: 10%;
}

@media all and (max-width: 639px) {
  .flex .flex-60.l-m10 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

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

.flex .flex-66 {
  width: 66%;
}

@media all and (max-width: 639px) {
  .flex .flex-66 {
    margin-left: auto;
    width: 100%;
  }
}

.flex .flex-66.l-m4 {
  margin-left: 4%;
}

@media all and (max-width: 639px) {
  .flex .flex-66.l-m4 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.flex .flex-68 {
  width: 68%;
}

@media all and (max-width: 639px) {
  .flex .flex-68 {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}

.flex .flex-68.l-m2 {
  margin-left: 2%;
}

@media all and (max-width: 639px) {
  .flex .flex-68.l-m2 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.flex .flex-70 {
  width: 70%;
}

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

.flex .flex-78 {
  width: 78%;
  margin-left: 2%;
}

@media all and (max-width: 639px) {
  .flex .flex-78 {
    margin-left: auto;
    width: 100%;
  }
}

.flex .flex-88 {
  width: 88%;
}

.flex .flex-88.l-m2 {
  margin-left: 2%;
}

@media all and (max-width: 639px) {
  .flex .flex-88 {
    margin-left: auto;
    width: 100%;
  }
}

.flex .flex-80 {
  width: 80%;
  margin-left: 3%;
}

@media all and (max-width: 639px) {
  .flex .flex-80 {
    margin-left: auto;
    width: 100%;
  }
}

/* slider
----------------------------------*/
.slider {
  /*横幅94%で左右に余白を持たせて中央寄せ*/
  width: 94%;
  margin: 0 auto;
}

.slick-slide {
  margin: 0 5px;
  padding: 15px !important;
  height: 200px;
  position: relative;
}

.slick-slide img {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.slick-slide .photo {
  position: relative;
}

.slick-slide p {
  position: absolute;
  display: inline-block;
  padding: 4px 20px;
  background-color: #333;
  color: #fff;
  bottom: 30px;
}

.slick-slide img {
  width: 100%;
  height: 100%;
}

.slick-prev,
.slick-next {
  z-index: 1;
}

.slick-prev:before,
.slick-next:before {
  color: #000;
}

.slick-prev:before {
  position: absolute;
  content: "";
  color: #000;
  border-right: 20px solid #0056a7;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  width: 20px;
  height: 10px;
  left: -20px;
  top: 44%;
  z-index: 1;
}

@media all and (max-width: 639px) {
  .slick-prev:before {
    left: -10px;
  }
}

@media all and (max-width: 639px) {
  .slick-prev {
    left: -30px !important;
  }
}

.slick-next:before {
  position: absolute;
  content: "";
  color: #000;
  border-left: 20px solid #0056a7;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  width: 20px;
  height: 10px;
  right: -20px;
  top: 44%;
  z-index: 1;
}

@media all and (max-width: 639px) {
  .slick-next:before {
    right: -10px;
  }
}

@media all and (max-width: 639px) {
  .slick-next {
    right: -30px !important;
  }
}

.slick-slide {
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  opacity: 0.2;
}

.slick-active {
  opacity: 1;
}

.slick-current {
  opacity: 1;
}

.slide_list {
  position: relative;
  display: none;
  margin: 0px auto 60px;
}

.slide_list li {
  margin-right: 1%;
  border-radius: 0px;
  overflow: hidden;
}

.slide_list li:nth-child(2n) {
  margin-top: 40px;
}

.slide_list li img {
  width: auto;
  height: 300px;
  -webkit-transition: -webkit-filter 0.2s ease-in;
  transition: -webkit-filter 0.2s ease-in;
  transition: filter 0.2s ease-in;
  transition: filter 0.2s ease-in, -webkit-filter 0.2s ease-in;
}

.slide_list li:hover img {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}

@media all and (max-width: 639px) {
  .slide_list li img {
    height: 240px;
  }
}

/* Q and A
----------------------------------*/
.qa-list dl {
  position: relative;
  margin: 30px auto 0;
  cursor: pointer;
  max-width: 1000px;
}

.qa-list dl:first-child {
  margin-top: 0;
}

.qa-list dl:after {
  position: absolute;
  top: 30px;
  right: 26px;
  display: block;
  width: 7px;
  height: 7px;
  margin: auto;
  content: "";
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.qa-list .open::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.qa-list dl dt {
  position: relative;
  margin: 0;
  padding: 20px 20px 20px 60px;
  font-weight: bold;
  background: #3b69e7;
  background: linear-gradient(150deg, #3b69e7 0%, #74d5ff 100%);
  color: #fff;
}

.qa-list dl dt:before {
  font-size: 22px;
  line-height: 1;
  position: absolute;
  top: 20px;
  left: 20px;
  display: block;
  content: "Q.";
  color: #fff;
}

.qa-list dl dd {
  position: relative;
  margin: 0;
  padding: 20px 20px 20px 60px;
  background-color: #fff;
}

.qa-list dl dd:before {
  font-size: 22px;
  line-height: 1;
  position: absolute;
  left: 20px;
  display: block;
  content: "A.";
  font-weight: bold;
  color: #992121;
}

.qa-list dl dd p {
  margin: 30px 0 0;
}

.qa-list dl dd p:first-child {
  margin-top: 0;
}

@media all and (max-width: 896px) {
  .qa-list dl {
    margin: 10px 0 0;
  }
  .qa-list dl:after {
    top: 20px;
    right: 20px;
    width: 7px;
    height: 7px;
  }
  .qa-list dl dt {
    padding: 16px 26px 16px 40px;
    font-size: 12px;
  }
  .qa-list dl dt:before {
    font-size: 14px;
    top: 20px;
    left: 15px;
  }
  .qa-list dl dd {
    margin: 0;
    padding: 16px 16px 16px 40px;
    font-size: 10px;
  }
  .qa-list dl dd:before {
    font-size: 14px;
    left: 15px;
    margin-top: 5px;
  }
  .qa-list dl dd p {
    margin: 30px 0 0;
  }
  .qa-list dl dd p:first-child {
    margin-top: 0;
  }
}

/*----------------------------------
tab
----------------------------------*/
.tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 40px;
}

.tab li {
  width: 18%;
  margin-left: 2%;
  background-color: #363636;
  color: #fff;
  padding: 5px 10px;
  text-align: center;
  margin-bottom: 10px;
  border: 1px solid #363636;
}

.tab li a {
  color: #fff;
}

.tab li:hover {
  background-color: #fff;
}

.tab li:hover a {
  color: #363636;
}

.menu-list {
  width: 100%;
  margin: 0 auto;
}

.menu-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 2px 4px;
  position: relative;
}

.menu-list li:before {
  background: url(../img/price-dot.png) repeat-x;
  content: "";
  display: inline-block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  height: 1px;
  margin: 0 1.2em;
}

.menu-list li.no-price:before {
  display: none;
}

.menu-list .txt {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  max-width: 65%;
  letter-spacing: 0.1rem;
  position: relative;
  font-size: 1.6rem;
}

.menu-list .price {
  max-width: 55%;
  text-align: right;
  color: #4e2808;
  font-size: 1.7rem;
}

.menu-list .price span {
  font-size: 1.2rem;
  color: #515151;
}

@media all and (max-width: 639px) {
  .menu-list .txt {
    font-size: 1.2rem;
    max-width: 100%;
  }
  .menu-list .price {
    max-width: 100%;
    font-size: 1.2rem;
  }
}

/*----------------------------------
pc/sp
----------------------------------*/
@media all and (max-width: 639px) {
  .pconly {
    display: none;
  }
}

.sponly {
  display: none;
}

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

.btn_recruit a{
  background-color: #ffdc00;
  padding: 10px 25px;
  vertical-align: middle;
  border-radius: 50px;
  font-weight: bold;
}

.btn_recruit a:hover{
  background-color: #0063c1;
  color: #ffdc00;
}

.top-recruit-box {
  position: relative;
  padding: 50px 0;
}

.top-recruit-box:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/bg-04.jpg) no-repeat;
  background-size: cover;
}

.top-recruit-box .inner {
  padding: 30px 50px;
  width: 40%;
  margin: 50px auto;
  position: relative;
  left: 25%;
  z-index: 1;
}

.top-recruit-box .inner:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  background-size: cover;
  z-index: -1;
}

.top-recruit-box .inner .title {
  text-align: center;
}

.top-recruit-box .inner .title .eng {
  font-family: "Marcellus", cursive, sans-serif;
  font-weight: 400;
  font-size: 4rem;
  color: #012149;
  display: block;
  padding-bottom: 10px;
  margin-bottom: 10px;
  position: relative;
}

.top-recruit-box .inner .title .eng:before {
  position: absolute;
  content: "";
  width: 50px;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 1px;
  bottom: 0;
  background-color: #0056a7;
}

.top-recruit-box .inner .title .ja {
  font-size: 2rem;
  font-weight: normal;
}


.top-recruit-box .recruit_001 .catch_re{
  text-align: center;
  padding: 20px;
  font-size: 2.3rem;
  font-weight: bold;
    color: #012149;
}
.border-2 a{
  border: 2px solid;
}

.flow-list .list-txtarea .list-title.type02 {
  font-size: 1.9rem;
}