@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: #047ae8;
  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);
}

.txt-on {
  -webkit-filter: blur(30px);
          filter: blur(30px);
  -webkit-animation: txt-onanime 0.6s ease-out 0s forwards;
          animation: txt-onanime 0.6s ease-out 0s forwards;
}

.txt-on.type2 {
  -webkit-animation: txt-onanime 0.6s ease-out 0.5s forwards;
          animation: txt-onanime 0.6s ease-out 0.5s forwards;
}

@-webkit-keyframes txt-onanime {
  100% {
    -webkit-filter: blur(30px);
            filter: blur(30px);
  }
  100% {
    -webkit-filter: none;
            filter: none;
  }
}

@keyframes txt-onanime {
  100% {
    -webkit-filter: blur(30px);
            filter: blur(30px);
  }
  100% {
    -webkit-filter: none;
            filter: none;
  }
}

/*=============== ローディング =================*/
.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: none;
}

.loader-bg1 {
  position: absolute;
  content: "";
  width: 50%;
  height: 300%;
  background-color: #143970;
  top: -50%;
  left: 0;
  -webkit-animation: load-tate 0.6s ease-out 0.2s forwards;
          animation: load-tate 0.6s ease-out 0.2s forwards;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}

.loader-bg2 {
  position: absolute;
  content: "";
  width: 50%;
  height: 300%;
  background-color: #143970;
  top: -50%;
  right: 0;
  -webkit-animation: load-tate2 0.8s ease-out 0.2s forwards;
          animation: load-tate2 0.8s ease-out 0.2s forwards;
}

@-webkit-keyframes load-tate {
  0% {
    width: 50%;
    opacity: 1;
  }
  100% {
    width: 0%;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
}

@keyframes load-tate {
  0% {
    width: 50%;
    opacity: 1;
  }
  100% {
    width: 0%;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
}

@-webkit-keyframes load-tate2 {
  0% {
    width: 50%;
    opacity: 1;
  }
  100% {
    width: 0%;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}

@keyframes load-tate2 {
  0% {
    width: 50%;
    opacity: 1;
  }
  100% {
    width: 0%;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}

/* TOP SVG
----------------------------------*/
html,
body {
  width: 100%;
  height: 100%;
  margin: 0px;
}

#splash_logo {
  position: absolute;
  top: 36%;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}

@media all and (max-width: 639px) {
  #splash_logo {
    top: 44.7888%;
  }
}

.svgall {
  width: 300px;
  height: auto;
  margin: 0 auto;
  position: relative;
}

@media all and (max-width: 639px) {
  .svgall {
    width: 180px;
  }
}

@-webkit-keyframes logo-t-anime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes logo-t-anime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

#splash_logo {
  -webkit-animation: anime-aut 0.5s linear 1.8s forwards;
          animation: anime-aut 0.5s linear 1.8s forwards;
}

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

@keyframes anime-aut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.st0 {
  fill: none;
  stroke: #ffffff;
}

.st1 {
  fill: none;
  stroke: #ffffff;
  stroke-width: 0;
  stroke-dasharray: 50;
  -webkit-animation: symble-anime 1.4s linear 0.2s forwards;
          animation: symble-anime 1.4s linear 0.2s forwards;
}

@-webkit-keyframes symble-anime {
  0% {
    stroke-width: 0;
  }
  100% {
    stroke-width: 150;
  }
}

@keyframes symble-anime {
  0% {
    stroke-width: 0;
  }
  100% {
    stroke-width: 150;
  }
}

.cls-1 {
  fill: none;
  stroke: #ffffff;
  stroke-width: 0;
}

#logo-txt .cls-1 {
  opacity: 0;
  -webkit-animation: logo-t-anime 0.6s linear 0.8s forwards;
          animation: logo-t-anime 0.6s linear 0.8s forwards;
}

#logo-sub .cls-1 {
  opacity: 0;
  -webkit-animation: logo-t-anime 0.6s linear 1.4s forwards;
          animation: logo-t-anime 0.6s linear 1.4s forwards;
}

@keyframes logo-t-anime {
  0% {
    opacity: 0;
    stroke-width: 0;
  }
  100% {
    opacity: 1;
    stroke-width: 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 0.8s forwards;
          animation: load-bg 1s ease-out 0.8s forwards;
}

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

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

#l-header.is-fixed {
  right: auto;
  position: fixed;
  padding: 0;
  background-color: #fff;
  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: #046dcf;
  position: relative;
}

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

#l-header.is-fixed .inner #logo {
  z-index: 101;
}

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

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

#l-header.is-fixed #header_nav ul li {
  padding: 10px 20px;
}

#l-header.is-fixed #header_nav ul li a {
  padding: 0;
}

#l-header.is-fixed #header_nav ul li .sub-menu {
  top: 76px;
}

#l-header.is-fixed #header_nav ul li .sub-menu li {
  padding: 6px 10px;
}

#l-header.is-fixed #header_nav ul li .sub-menu li a:before {
  right: 1px;
}

#l-header.is-fixed #header_nav ul li .sub-menu li:hover a:before {
  right: -2px;
}

@media all and (max-width: 1480px) {
  #l-header.is-fixed {
    width: 100%;
  }
}

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

#l-header .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  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;
  position: relative;
}

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

#l-header .inner #logo {
  width: 220px;
  margin-left: 20px;
}

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

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

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

@media all and (max-width: 896px) {
  #l-header .inner #logo {
    width: 190px;
    margin: 20px auto;
  }
}

@media all and (max-width: 639px) {
  #l-header .inner #logo {
    width: 120px;
    margin: 0 auto;
  }
}

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

#header_nav ul {
  margin: 0 0 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: end;
}

#header_nav ul li {
  padding: 12px 20px 15px;
  position: relative;
}

#header_nav ul li.type-contact {
  margin-left: 50px;
  background-color: #276d2d;
}

#header_nav ul li:last-child {
  border-right: none;
}

#header_nav ul li a {
  display: block;
  position: relative;
  line-height: 1.5;
  font-size: 1.4rem;
  padding: 10px 0;
  color: #000;
}

#header_nav ul li a span {
  display: block;
  font-size: 2rem;
  font-family: "Staatliches", cursive;
  font-weight: 400;
  position: relative;
  letter-spacing: 0.1rem;
  color: #143970;
}

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

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

#header_nav ul li:hover a, #header_nav ul li.active a {
  color: #143970;
  -webkit-transition: 0.2s width ease-in;
  transition: 0.2s width ease-in;
  font-weight: bold;
}

#header_nav ul li:hover.type-contact a, #header_nav ul li.active.type-contact a {
  color: #046dcf;
}

#header_nav ul li .sub-menu {
  display: none;
  border-top: 0;
  display: none;
  margin: 0;
  position: absolute;
  width: 100%;
  min-width: 210px;
  top: 96px;
  left: -20px;
  right: 0;
  margin: 0 auto;
  visibility: hidden;
  -webkit-transiton: opacity 0.2s;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  z-index: 1;
}

#header_nav ul li .sub-menu li {
  width: 100%;
  margin: 0 auto 5px;
  background-color: #fff;
  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;
  display: block;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  border-radius: 0px;
  padding: 0;
}

#header_nav ul li .sub-menu li .photo {
  width: 30%;
  border-radius: 10px 0 0 10px;
  overflow: hidden;
}

#header_nav ul li .sub-menu li a {
  padding: 5px 20px 5px 10px;
  color: #143970;
  position: relative;
  margin: 0 auto;
  text-align: left;
}

#header_nav ul li .sub-menu li a span {
  display: block;
  text-align: left;
  font-size: 1.4rem;
}

#header_nav ul li .sub-menu li a:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 6px;
  right: 10px;
  top: 36%;
  border-top: 6px solid transparent;
  border-left: 10px solid #046dcf;
  border-bottom: 6px solid transparent;
}

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

#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:hover {
  background-color: #046dcf;
}

#header_nav ul li .sub-menu li:hover .photo {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

#header_nav ul li .sub-menu li:hover .photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#header_nav ul li .sub-menu li:hover a {
  color: #fff;
}

#header_nav ul li .sub-menu li:hover a span {
  color: #fff;
}

#header_nav ul li .sub-menu li:hover a:before {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  right: 5px;
  border-left: 10px solid #fff;
}

#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(20, 57, 112, 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(78, 146, 214, 0.4);
}

#header_nav ul li:hover .header_link.type3:before, #header_nav ul li.active .header_link.type3:before {
  background-color: rgba(228, 119, 77, 0.4);
}

#header_nav ul li:hover .header_link.type4:before, #header_nav ul li.active .header_link.type4:before {
  background-color: rgba(207, 180, 90, 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 ul li a {
    font-size: 1.4rem;
  }
}

@-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);
  }
}

.header-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 20px;
}

.header-link .header-tel i {
  font-size: 3rem;
}

.header-link .header-tel span {
  font-size: 4rem;
  font-family: "Staatliches", cursive;
  font-weight: 400;
}

.header-link .header-tel:hover a {
  color: #333;
}

.header-link .header-access {
  display: inline-block;
  margin-left: 10px;
}

.header-link .header-access a {
  color: #fff;
  font-size: 2rem;
  padding: 5px 15px;
  background-color: #143970;
  border: 1px solid #143970;
}

.header-link .header-access a span {
  font-family: "Staatliches", cursive;
  font-weight: 400;
}

.header-link .header-access:hover a {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background-color: #fff;
  color: #143970;
}

@media all and (max-width: 1367px) {
  .header-link .header-tel span {
    display: none;
  }
  .header-link .header-access a span {
    display: none;
  }
}

@media all and (max-width: 896px) {
  .header-link {
    position: absolute;
    right: 60px;
    bottom: 0;
  }
  .header-link .header-tel i {
    font-size: 1.8rem;
  }
  .header-link .header-access {
    margin-left: 15px;
  }
  .header-link .header-access a {
    padding: 5px 12px;
    font-size: 1.8rem;
  }
}

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

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

#page-top a {
  display: block;
  background: #143970;
  -webkit-box-shadow: #143970;
          box-shadow: #143970;
  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: 850px;
}

.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: 76vh;
  }
}

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

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

@media all and (max-width: 639px) {
  .slide-img {
    height: 22vh;
    min-height: 460px;
  }
}

#slideshow {
  position: relative;
  margin: 90px 0 0px auto;
}

@media all and (max-width: 639px) {
  #slideshow {
    margin: 60px 0 0px auto;
  }
}

#slide-wrap {
  position: relative;
}

#slide-wrap .slide-box {
  opacity: 1;
  width: 100%;
  margin: 0 0 0 auto;
}

@-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: 55%;
  right: 2%;
  text-align: right;
  font-family: "Staatliches", cursive;
  font-weight: 400;
  color: #276d2d;
}

.catch .catch-txt {
  mix-blend-mode: exclusion;
  font-size: 11rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.6);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.catch .catch-txt span {
  opacity: 0;
  -webkit-animation: catch-anime 0.8s ease-in 2.8s forwards;
          animation: catch-anime 0.8s ease-in 2.8s forwards;
  display: inline-block;
  mix-blend-mode: exclusion;
}

.catch .catch-sub {
  position: relative;
  font-size: 2.6rem;
  opacity: 0;
  -webkit-animation: catch-anime2 0.8s ease-in 2s forwards;
          animation: catch-anime2 0.8s ease-in 2s forwards;
  margin-top: 20px;
}

.catch .catch-sub span {
  position: relative;
  background-color: #000;
  padding: 6px 30px;
  color: #fff;
  display: inline-block;
  font-family: "Zen Old Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
}

.catch.type-main {
  max-width: 580px;
}

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

.catch img {
  width: 100%;
}

@media all and (max-width: 1480px) {
  .catch .catch-txt {
    font-size: 6rem;
  }
  .catch .catch-sub {
    position: relative;
    font-size: 1.6rem;
  }
}

@media all and (max-width: 1100px) {
  .catch .catch-txt {
    font-size: 6rem;
  }
  .catch .catch-sub {
    position: relative;
    font-size: 1.6rem;
  }
}

@media all and (max-width: 639px) {
  .catch {
    width: 100%;
  }
  .catch .catch-txt {
    font-size: 2.6rem;
  }
  .catch .catch-sub {
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 1rem;
    padding: 0 0 16px;
  }
  .catch .catch-sub span {
    padding: 5px 15px;
  }
  .catch .catch-sub.t-m40 {
    margin-top: 15px;
  }
}

/* footer
----------------------------------*/
footer {
  background: #143970;
  position: relative;
}

footer:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/bg-02.jpg) repeat;
  background-size: 1920px 700px;
}

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

#l-footer {
  font-size: 1.4rem;
  position: relative;
  width: 100%;
  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 .footer-ggmap {
  width: 50%;
  padding-bottom: 28%;
}

#l-footer .footer-main {
  width: 50%;
}

#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 #276d2d;
  color: #276d2d;
}

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

#l-footer .footer-tel a {
  font-family: "Staatliches", cursive;
  font-weight: 400;
  font-size: 2rem;
}

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

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

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

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

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

.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 .photo {
  display: none;
}

.footer_navi ul > li > a {
  color: #333;
  font-size: 1.3rem;
  position: relative;
  padding: 10px 20px;
  display: block;
  background-color: #fff;
  border-radius: 50px;
  text-align: center;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  font-weight: 600;
}

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

.footer_navi ul > li > a:hover {
  color: #046dcf;
}

.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;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  text-align: left;
}

.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 #143970;
  background-color: transparent;
}

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

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

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

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

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

.copyright {
  padding: 6px 10px;
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
  color: #fff;
  background-color: #143970;
  text-align: center;
  margin: 40px auto 0;
  max-width: 300px;
}

@media all and (max-width: 896px) {
  .copyright {
    font-size: 10px;
    margin: 30px auto 35px;
  }
}

/* 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 40px;
  }
  .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;
}

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

.list5 li {
  width: 18%;
  margin: 0 1% 25px;
}

@media all and (max-width: 896px) {
  .list5 li {
    width: 30%;
  }
}

@media all and (max-width: 639px) {
  .list5 li {
    width: 48%;
  }
}

.list5 li .txtdeko3 {
  background-color: #fff;
  padding: 6px 20px;
  border-bottom: 2px solid #143970;
}

/* 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 #046dcf;
  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: #143970;
  position: relative;
  line-height: 1.2;
  font-family: "Staatliches", cursive;
  font-weight: 400;
}

.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: 20%;
  height: 2px;
  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:before {
  background-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: #046dcf;
  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: 2.6rem;
  }
  .mtitle .eng:before {
    width: 50px;
    height: 2px;
    right: -14px;
    bottom: -11px;
  }
  .mtitle .ja {
    font-size: 1.4rem;
  }
  .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;
  position: relative;
}

.mtitle2.type-blue span.eng {
  color: #4e92d6;
}

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

.mtitle2.type-white {
  text-align: center;
}

.mtitle2.type-white span.eng {
  color: #fff;
  position: initial;
  font-size: 10rem;
}

.mtitle2.type-white span.ja {
  color: #fff;
  margin-top: -10px;
}

.mtitle2 span {
  font-size: 2.5rem;
  display: block;
  font-family: "Staatliches", cursive;
  font-weight: 400;
  color: #046dcf;
}

.mtitle2 span.eng {
  color: #046dcf;
  opacity: 0.8;
  font-size: 6rem;
  line-height: 1;
}

.mtitle2 span.ja {
  font-size: 2rem;
  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.eng {
    font-size: 2.6rem;
    top: -15px;
  }
  .mtitle2 span.ja {
    font-size: 1.4rem;
  }
  .mtitle2.type-white {
    text-align: center;
  }
  .mtitle2.type-white span.eng {
    color: #fff;
    position: initial;
    font-size: 2.6rem;
  }
  .mtitle2.type-white span.ja {
    color: #fff;
    margin-top: 10px;
    font-size: 1.4rem;
  }
}

.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 #046dcf;
  letter-spacing: 0.2em;
  padding-top: 55px;
  padding-right: 5px;
  font-weight: 600;
  color: #333;
}

.mtitle3 .eng {
  display: block;
  font-family: "Staatliches", cursive;
  font-weight: 400;
  font-size: 3rem;
  color: #046dcf;
  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 #046dcf;
    margin-bottom: 20px;
  }
  .mtitle3 .eng {
    font-size: 1.3rem;
  }
}

.mtitle4 {
  font-weight: normal;
  letter-spacing: 0.1rem;
  padding-bottom: 20px;
  margin: 0px auto 0px;
}

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

.mtitle4 span.eng {
  font-family: "Staatliches", cursive;
  font-weight: 400;
  font-size: 10rem;
  line-height: 1;
  color: #143970;
}

.mtitle4 span.ja {
  display: block;
  font-size: 2.6rem;
}

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

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

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

@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;
  line-height: 1.5;
  letter-spacing: 0.1rem;
  font-weight: 600;
  padding-bottom: 20px;
  margin: 0px auto 0px;
  text-align: center;
  position: relative;
  padding-top: 60px;
}

.mtitle5.type-no {
  padding-left: 0;
}

.mtitle5.type-no:before {
  display: none;
}

.mtitle5:before {
  position: absolute;
  content: "";
  width: 115px;
  height: 42px;
  top: 0px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: url(../img/title-icon.png) no-repeat;
  background-size: cover;
}

.mtitle5 span {
  padding: 0 40px 0;
}

.mtitle5 span.eng {
  font-family: "Staatliches", cursive;
  font-weight: 400;
  color: #143970;
  font-weight: bold;
  font-size: 5rem;
  line-height: 1;
  display: block;
}

.mtitle5 span.ja {
  font-size: 2.6rem;
}

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

@media all and (max-width: 639px) {
  .mtitle5 span.eng {
    font-size: 2.6rem;
  }
  .mtitle5 span.ja {
    font-size: 1.4rem;
    padding: 0 20px;
  }
}

.mtitle6 {
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: 0.1rem;
  font-weight: 600;
  padding-bottom: 20px;
  margin: 0px auto 0px;
  text-align: center;
  position: relative;
}

.mtitle6 span {
  padding: 0 40px 0;
}

.mtitle6 span.eng {
  font-family: "Staatliches", cursive;
  font-weight: 400;
  color: #143970;
  font-weight: bold;
  font-size: 5rem;
  line-height: 1;
  display: block;
}

.mtitle6 span.ja {
  font-size: 2.6rem;
}

.mtitle6.white span.eng {
  color: #fff;
}

@media all and (max-width: 639px) {
  .mtitle6 span.eng {
    font-size: 2.6rem;
  }
  .mtitle6 span.ja {
    font-size: 1.4rem;
    padding: 0 20px;
  }
}

.mtitle_line {
  font-size: 2.2rem;
  padding-bottom: 20px;
  position: relative;
  font-weight: 600;
  margin-bottom: 30px;
  padding-top: 8px;
  padding-left: 20px;
  color: #000;
  border-top: 2px solid #046dcf;
  letter-spacing: 0.2rem;
  background-color: #969696;
}

.mtitle_line span {
  display: block;
  font-size: 1.4rem;
  color: #046dcf;
}

@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: #143970;
  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: #143970;
    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: #046dcf;
  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 #046dcf;
  margin: 0px 0 15px 20px;
  font-size: 1.1em;
  line-height: 1.4;
  text-align: left;
}

.mtitle_sub .hissu {
  color: #fff;
  background: #0c87fa;
  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: #143970;
}

@media all and (max-width: 639px) {
  .mtitle_sub {
    margin: 0px 0 15px 10px;
    padding: 0 0 0 10px;
  }
}

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

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

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

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

.btn01 a:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 6px;
  border-left: 10px solid #276d2d;
  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: #276d2d;
  color: #fefefe;
  -webkit-transform: translate(0px, 5px);
          transform: translate(0px, 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 #4e92d6;
}

.btn01 a.type-blue:hover {
  background: #4e92d6;
  color: #fefefe;
}

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

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

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

.btn01.mail a {
  background: #cfb45a;
  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: #046dcf;
  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: 400px;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.2rem;
  padding: 12px 0;
  border: 0.9px solid #333;
}

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

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

@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: #046dcf;
  border: 0.9px solid #fff;
  -webkit-box-shadow: #fff 0 80px 0px 2px inset;
          box-shadow: #fff 0 80px 0px 2px inset;
}

.btn04.basecolor a {
  color: #143970;
  border: 0.9px solid #143970;
}

.btn04.basecolor a:hover {
  color: #fff;
  border: 0.9px solid #046dcf;
  -webkit-box-shadow: #046dcf 0 80px 0px 2px inset;
          box-shadow: #046dcf 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 #046dcf;
  -webkit-box-shadow: #046dcf 0 80px 0px 2px inset;
          box-shadow: #046dcf 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: "Staatliches", cursive;
  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: #046dcf;
}

.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: "Staatliches", cursive;
  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
----------------------------------*/
.recruitpage #l-header .inner #logo {
  background-color: #aa2e2e;
  border: 3px solid #aa2e2e;
}

.recruitpage:before {
  position: absolute;
  content: "";
  width: 74%;
  height: 400px;
  background: url(../img/bg-02.jpg) repeat;
  background-size: 1920px 700px;
  height: 980px;
  -webkit-transform: scale(-1, -1);
          transform: scale(-1, -1);
  left: -30%;
  top: 0;
}

.recruitpage .page-title {
  width: 65%;
}

.recruitpage .page-title:before {
  display: none;
}

.recruitpage .page-title .inner {
  padding: 360px 0 380px;
}

.recruitpage .page-recruit-title {
  max-width: 600px;
  position: absolute;
  left: 6%;
  right: auto;
  top: 300px;
}

.recruitpage .page-recruit-title .page-lead .eng {
  display: block;
  font-family: "Staatliches", cursive;
  font-weight: 400;
  font-size: 10rem;
  color: #aa2e2e;
  line-height: 1;
}

.recruitpage .page-recruit-title .page-lead .ja {
  color: #333;
}

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

.recruitpage .recruit-catch {
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.recruitpage .recruit-txt {
  position: relative;
  z-index: 1;
}

.recruitpage .recruit-txt span {
  color: #333;
  opacity: 0;
  -webkit-animation: catch-anime 0.8s ease-in 5s forwards;
          animation: catch-anime 0.8s ease-in 5s forwards;
  display: inline-block;
  mix-blend-mode: exclusion;
  font-size: 3rem;
  font-weight: bold;
}

.recruitpage .breadcrumb {
  margin: -100px auto 0px 90px;
  background-color: transparent;
  border-bottom: 1px solid #143970;
}

.recruitpage .breadcrumb li {
  color: #143970;
}

@media all and (max-width: 1480px) {
  .recruitpage .page-recruit-title {
    max-width: 600px;
    position: absolute;
    left: 3%;
    right: auto;
    top: 300px;
  }
  .recruitpage .page-recruit-title .page-lead .eng {
    display: block;
    font-family: "Staatliches", cursive;
    font-weight: 400;
    font-size: 6rem;
    color: #333;
    line-height: 1;
  }
  .recruitpage .page-recruit-title .page-lead .ja {
    color: #333;
  }
  .recruitpage .breadcrumb {
    margin: -50px auto 0px 50px;
    max-width: 300px;
  }
}

.page-title {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin: 110px 0 0 auto;
  width: 100%;
}

.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.type6 {
  background: url(../img/page-title06.jpg) no-repeat center 100%/cover;
}

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

.page-title.type8 {
  background: url(../img/page-title08.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 1.2s forwards;
          animation: page-leadanime 1s ease-out 1.2s forwards;
  opacity: 0;
}

.page-title .inner .page-lead .eng {
  display: block;
  font-family: "Staatliches", cursive;
  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: 1367px) {
  .page-title {
    margin: 80px 0 0 auto;
  }
}

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

@media all and (max-width: 639px) {
  .page-title {
    margin: 60px auto 0;
  }
}

/* bg
----------------------------------*/
.bg-01 {
  position: relative;
  padding: 80px 0 50px;
}

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

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

.bg-01 .bg-01area {
  position: relative;
  z-index: 1;
}

.bg-02 {
  position: relative;
  background-color: #046dcf;
  margin: 0 auto 0;
}

.bg-02:before {
  position: absolute;
  content: "SERVICE";
  color: #046dcf;
  font-size: 20rem;
  top: -250px;
  left: 0;
  font-family: "Staatliches", cursive;
  font-weight: 400;
}

@media all and (max-width: 1100px) {
  .bg-02:before {
    font-size: 12rem;
    top: -156px;
  }
}

@media all and (max-width: 639px) {
  .bg-02:before {
    font-size: 7rem;
    top: -102px;
  }
}

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

.bg-pattern:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/bg-02.png) repeat;
  background-size: 826px 542px;
  opacity: 0.6;
  mix-blend-mode: hard-light;
}

.bg-pattern:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #f4f4f4;
  background: linear-gradient(140deg, #f4f4f4 0%, #f4f4f4 50%, #9c9c9c 100%);
}

.bg-gray:before {
  background-color: #f4f4f4;
}

.bg-gray .mtitle5 {
  padding-left: 0px;
}

.bg-gray .mtitle5:before {
  display: none;
}

/* tbl
----------------------------------*/
.tbl {
  width: 100%;
  background-color: #fff;
  margin: 0 auto;
  max-width: 1000px;
}

.tbl.t-m50 {
  margin-top: 50px;
}

.tbl th,
.tbl td {
  padding: 10px 20px;
  font-size: 1.6rem;
  border-bottom: 2px solid #F4F4F4;
}

.tbl th {
  color: #fff;
  background: #2b2e44;
  width: 25%;
  text-align: center;
}

.tbl th.type1 {
  width: 15%;
}

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

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

.tbl td {
  vertical-align: middle;
}

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

.tbl td .red {
  color: #333;
}

.tbl td .red span {
  background-color: #aa2e2e;
  color: #fff;
  padding: 2px 4px;
  font-family: "Staatliches", cursive;
  font-weight: 400;
  width: 25px;
  display: inline-block;
  line-height: 1;
}

.tbl td .blue {
  color: #333;
}

.tbl td .blue span {
  background-color: #4e92d6;
  color: #fff;
  padding: 2px 4px;
  font-family: "Staatliches", cursive;
  font-weight: 400;
  width: 25px;
  line-height: 1;
  display: inline-block;
}

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

.tbl-box {
  width: 100%;
  margin: 0 auto;
}

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

.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 {
  width: 20%;
  text-align: center;
  color: white;
  background-color: rgba(4, 109, 207, 0.7);
  border-bottom-color: #fff;
  border: 1px solid #fff;
  font-size: 1.6rem;
}

.tbl-box td {
  text-align: center;
  border: 1px solid #dddddd;
}

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

@media all and (max-width: 639px) {
  .tbl-box {
    white-space: nowrap;
  }
  .tbl-box th,
  .tbl-box td {
    padding: 6px 10px;
  }
  .tbl-box th {
    width: 20%;
    font-size: 10px;
  }
  .tbl-box td {
    font-size: 10px;
  }
}

@media all and (max-width: 639px) {
  .tbl-box-wrap {
    overflow-x: auto;
  }
}

.tbl-box-modal {
  width: 100%;
  margin: 0 auto;
}

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

.tbl-box-modal th {
  width: 25%;
  max-width: 100px;
  color: white;
  background-color: rgba(4, 109, 207, 0.7);
  border-bottom-color: #fff;
  border: 1px solid #fff;
  font-size: 1.6rem;
}

.tbl-box-modal td {
  width: 75%;
  text-align: left;
  border: 1px solid #dddddd;
}

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

/* ggmap
----------------------------------*/
.gmapbox {
  padding: 100px;
  background-color: rgba(39, 109, 45, 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%;
}

.ggmap-min {
  position: relative;
  height: 100%;
}

@media all and (max-width: 1100px) {
  .ggmap-min {
    height: 200px;
  }
}

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

.g-ttl {
  background-color: #046dcf;
  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: white;
  border-radius: 20px;
}

@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.05);
  transform: scale(1.05);
}

@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;
  border: 2px solid #ddd;
}

.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.05);
  transform: scale(1.05);
}

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

.blog-cat {
  background-color: #143970;
  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: #cfb45a;
  width: 100px;
  padding: 5px;
  line-height: 1.3;
  text-align: center;
  display: inline-block;
  color: #fff;
  font-size: 12px;
}

.blog-date2 {
  color: #034584;
  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;
  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: #046dcf;
  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: #046dcf;
  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: #276d2d;
}

@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: #046dcf;
}

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

/* breadcrumb
----------------------------------*/
.breadcrumb {
  padding: 10px 30px;
  z-index: 1;
  margin: -20px 0 0 auto;
  font-size: 1.2rem;
  width: 500px;
  background-color: #2b3041;
  position: relative;
  text-align: center;
}

.breadcrumb:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: -40px;
  top: 0;
  /* border-top: 0px solid transparent; */
  border-bottom: 41px solid #2b3041;
  border-left: 40px solid transparent;
  z-index: -1;
}

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

.breadcrumb li a {
  color: #cfb45a;
}

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

@media all and (max-width: 639px) {
  .breadcrumb {
    font-size: 10px;
    width: 80%;
    padding: 8px 20px;
  }
  .breadcrumb:before {
    border-bottom: 34px solid #2b3041;
    border-left: 40px solid transparent;
  }
}

/* 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: #046dcf;
  padding: 5px 8px;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 20px;
  position: relative;
  top: -2px;
}

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

.form dl dd {
  padding-left: 280px;
  padding-bottom: 20px;
  padding-top: 23px;
  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: 15px;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
  background: #f0f0f0;
}

.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 #046dcf;
  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: 0 auto;
  width: 250px;
  background: #363636;
  border-radius: 25px;
}

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

.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: #046dcf;
  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 #046dcf;
  border-bottom: 3px solid #046dcf;
  -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: 16px;
}

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

/* etc
----------------------------------*/
.thanks {
  padding: 40px;
  border: 3px solid #046dcf;
  background-color: #fff;
  margin: 0 auto;
  max-width: 700px;
}

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

.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(116, 102, 93, 0.4);
  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: #046dcf;
  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(207, 194, 163, 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: 3px 0 10px;
}

@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 .inner {
  padding: 100px 40px 100px;
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media all and (max-width: 639px) {
  .top-common .inner {
    width: calc(100% - 40px);
    padding: 20px;
  }
}

.top-wrap.type-page {
  margin: 100px auto;
}

.top-wrap.type-page.bg-pattern {
  padding: 100px 0px;
  margin: 50px auto 0;
}

.top-wrap.type-page .inner {
  max-width: 1500px;
}

.top-wrap.type-page.b-m0 {
  margin-bottom: 0;
}

.top-wrap.type-page.t-m50 {
  margin-top: 50px;
}

.top-wrap.type-page.b-m100 {
  margin-bottom: 100px;
}

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

.top-wrap.bg-contact .photo {
  height: 680px;
}

.top-wrap.bg-contact .photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-wrap.type-bg {
  margin: 0px auto 0;
}

.top-wrap.type-bg:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0;
  right: 0;
  background: url(../img/bg-01.jpg) no-repeat;
  background-size: cover;
  z-index: -1;
  background-position: bottom;
}

.top-wrap.type-bg .photo img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-wrap.type-bg .btn04 {
  margin: 20px auto 0;
  text-align: center;
}

.top-wrap.type-bg .btn04 a {
  max-width: 350px;
}

.top-wrap.bg-center {
  position: relative;
}

.top-wrap.bg-center.t-m100 {
  margin-top: 100px;
}

.top-wrap.bg-center.t-m150 {
  margin-top: 150px;
}

.top-wrap.bg-center.b-m100 {
  margin-bottom: 100px;
}

.top-wrap.bg-center.b-m200 {
  margin-bottom: 200px;
}

.top-wrap.bg-center .inner {
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
}

.top-wrap.bg-center .inner:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 30px;
  left: 0;
  border-radius: 20px;
}

.top-wrap.bg-left {
  position: relative;
}

.top-wrap.bg-left.t-m0 {
  margin-top: 0px;
}

.top-wrap.bg-left.t-m50 {
  margin-top: 50px;
}

.top-wrap.bg-left.m100-100 {
  margin-top: 100px;
  margin-bottom: 100px;
}

.top-wrap.bg-left.t-m150 {
  margin-top: 150px;
}

.top-wrap.bg-left.b-m100 {
  margin-bottom: 100px;
}

.top-wrap.bg-left:before {
  position: absolute;
  content: "";
  width: 80%;
  height: 100%;
  top: 30px;
  left: 0;
  border-radius: 0 20px 20px 0;
}

.top-wrap.bg-left .inner {
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
}

.top-wrap.bg-left .mtitle5 {
  padding-top: 0;
  text-align: left;
}

.top-wrap.bg-left .mtitle5:before {
  right: auto;
}

.top-wrap.bg-left .mtitle5 span.eng {
  display: inline-block;
  padding: 0;
}

.top-wrap.bg-left .mtitle5 span.ja {
  padding: 0 0 0 20px;
}

.top-wrap.bg-left .boxarea {
  width: 80%;
}

.top-wrap.bg-right {
  position: relative;
}

.top-wrap.bg-right.t-m100 {
  margin-top: 100px;
}

.top-wrap.bg-right.t-m150 {
  margin-top: 150px;
}

.top-wrap.bg-right.b-m100 {
  margin-bottom: 100px;
}

.top-wrap.bg-right:before {
  position: absolute;
  content: "";
  width: 80%;
  height: 100%;
  top: 30px;
  right: 0;
}

.top-wrap.bg-right .inner {
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
}

.top-wrap.bg-right .mtitle5 {
  padding-top: 0;
  padding-left: 60px;
  text-align: left;
  width: 80%;
  margin: 0 0 0 auto;
}

.top-wrap.bg-right .mtitle5:before {
  right: auto;
}

.top-wrap.bg-right .mtitle5 span.eng {
  display: inline-block;
  padding: 0;
}

.top-wrap.bg-right .mtitle5 span.ja {
  padding: 0 0 0 20px;
}

.top-wrap.bg-right .boxarea {
  width: 80%;
  margin: 0 0 0 auto;
}

.top-wrap .inner {
  padding: 0px 50px;
  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;
  padding: 100px 40px;
}

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

.top-wrap .txtarea .txtbox .txt-detail {
  margin: 50px auto 20px;
  font-weight: bold;
}

.top-wrap .txtarea .txtbox .txt-tel .main {
  font-family: "Staatliches", cursive;
  font-weight: 400;
  font-size: 3rem;
  border-bottom: none;
}

.top-wrap .txtarea .txtbox .txt-tel .main a {
  color: #fff;
}

.top-wrap .txtarea .txtbox .txt-tel .main a span {
  font-size: 4rem;
}

.top-wrap .txtarea .txtbox .txt-sub .sub {
  font-size: 2rem;
}

.top-wrap .txtarea .txtbox .txt-sub .main {
  margin-left: 0;
  font-family: "Staatliches", cursive;
  font-weight: 400;
  font-size: 3rem;
  pointer-events: none;
}

.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 .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;
  }
  .top-wrap.type-page .inner {
    padding: 0;
    width: calc(100% - 40px);
  }
  .top-wrap.bg-center {
    position: relative;
  }
  .top-wrap.bg-center .inner {
    max-width: 1500px;
    margin: 0 20px;
    padding: 0;
    position: relative;
  }
  .top-wrap.bg-left .inner, .top-wrap.bg-right .inner {
    padding: 0 40px;
  }
}

@media all and (max-width: 896px) {
  .top-wrap.bg-contact {
    margin-bottom: 0;
  }
  .top-wrap.bg-contact .photo {
    height: 280px;
  }
  .top-wrap.type-page .inner {
    width: calc(100% - 40px);
  }
  .top-wrap .txtarea {
    max-width: 1500px;
    width: 100%;
    margin: 0 auto;
  }
}

@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 20px;
  }
  .top-wrap.type-page.bg-pattern {
    padding: 50px 0px;
  }
  .top-wrap.bg-left:before {
    width: 90%;
  }
  .top-wrap.bg-left.t-m150 {
    margin-top: 100px;
  }
  .top-wrap.bg-left .mtitle5 {
    padding-bottom: 0;
  }
  .top-wrap.bg-left .mtitle5:before {
    top: -10px;
  }
  .top-wrap.bg-left .mtitle5 span.ja {
    display: block;
    padding-left: 0;
  }
  .top-wrap.bg-left .inner {
    padding: 10px 0 0;
  }
  .top-wrap.bg-left .boxarea {
    width: 92%;
    padding: 50px 20px 10px;
  }
  .top-wrap.bg-left .txt-name {
    margin: 30px auto 30px;
  }
  .top-wrap.bg-right:before {
    width: 90%;
  }
  .top-wrap.bg-right.t-m150 {
    margin-top: 100px;
  }
  .top-wrap.bg-right .mtitle5 {
    padding-bottom: 0;
    width: 100%;
  }
  .top-wrap.bg-right .mtitle5:before {
    top: -10px;
  }
  .top-wrap.bg-right .mtitle5 span.ja {
    display: block;
    padding-left: 0;
  }
  .top-wrap.bg-right .inner {
    padding: 10px 0 0;
  }
  .top-wrap.bg-right .boxarea {
    width: 92%;
    padding: 50px 20px 10px;
  }
  .top-wrap.bg-right .txt-name {
    margin: 30px auto 30px;
  }
  .top-wrap.type-bg:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 94%;
    z-index: -1;
  }
  .top-wrap.type-bg:after {
    position: absolute;
    content: "";
    width: 110%;
    height: 94%;
  }
  .top-wrap.type-bg .inner {
    width: 100%;
  }
  .top-wrap.type-bg .btn04 {
    margin: 20px auto 0;
    text-align: center;
  }
  .top-wrap.type-bg .btn04 a {
    max-width: 200px;
  }
  .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-wrap .photo {
    height: 200px;
  }
  .top-wrap .photo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .top-wrap .txtarea .txtbox .txt-detail {
    margin: 30px auto 20px;
    font-weight: bold;
  }
  .top-wrap .txtarea .txtbox .txt-tel .main {
    font-family: "Staatliches", cursive;
    font-weight: 400;
    font-size: 2rem;
  }
  .top-wrap .txtarea .txtbox .txt-tel .main a span {
    font-size: 1.6rem;
  }
  .top-wrap .txtarea .txtbox .txt-sub .sub {
    font-size: 1.4rem;
  }
  .top-wrap .txtarea .txtbox .txt-sub .main {
    margin-left: 0;
    font-family: "Staatliches", cursive;
    font-weight: 400;
    font-size: 2rem;
  }
}

.top-greet-box .inner {
  padding: 100px 40px;
  position: relative;
  max-width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}

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

.top-greet-box .photoarea .mtitle {
  position: absolute;
  background-color: #fff;
  padding: 100px 100px 120px;
  top: 20%;
  left: -10%;
  text-align: left;
}

.top-greet-box .photoarea .photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 500px;
}

.top-greet-box .txtarea {
  position: relative;
  padding: 50px 0px 50px 80px;
  background-color: #fff;
  font-size: 1.6rem;
}

.top-greet-box .txtarea .txtarea-main {
  font-size: 2.6rem;
  color: #143970;
  font-weight: bold;
}

@media all and (max-width: 1100px) {
  .top-greet-box .maintxt {
    position: relative;
    padding: 80px 0 60px;
    z-index: 1;
  }
  .top-greet-box .maintxt:before {
    width: 90%;
  }
}

@media all and (max-width: 896px) {
  .top-greet-box .inner {
    width: 100%;
  }
  .top-greet-box .photoarea {
    position: relative;
  }
  .top-greet-box .photoarea .mtitle {
    position: absolute;
    background-color: #fff;
    padding: 40px 50px 60px 100px;
    top: 20%;
    left: -10%;
    text-align: left;
  }
  .top-greet-box .photoarea .photo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    max-height: 500px;
  }
  .top-greet-box .txtarea {
    padding: 40px 20px;
  }
}

@media all and (max-width: 639px) {
  .top-greet-box .inner {
    width: 100%;
    padding: 40px 15px;
  }
  .top-greet-box .photoarea {
    position: relative;
  }
  .top-greet-box .photoarea .mtitle {
    position: absolute;
    background-color: #fff;
    padding: 30px 50px 50px 50px;
    top: 20%;
    left: -10%;
    text-align: left;
  }
  .top-greet-box .photoarea .photo img {
    height: 200px;
  }
  .top-greet-box .txtarea {
    padding: 0px;
    font-size: 1.2rem;
  }
  .top-greet-box .txtarea .txtarea-main {
    font-size: 1.8rem;
  }
}

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

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

.top-company-box .inner {
  padding: 50px 0;
}

.top-company-box .mtitle4 {
  padding-right: 50px;
  max-width: 420px;
  margin: 0 0 0 auto;
}

.top-company-box .txtarea {
  padding: 40px 0 50px 50px;
  border-left: 2px solid #fff;
  font-size: 2rem;
}

.top-company-box .btn04 {
  text-align: left;
}

.top-company-box .btn04 a {
  margin: 20px auto 0 0;
}

@media all and (max-width: 1100px) {
  .top-company-box .inner {
    padding: 30px 50px;
  }
  .top-company-box .mtitle4 {
    max-width: 250px;
  }
}

@media all and (max-width: 896px) {
  .top-company-box {
    padding: 40px 0;
  }
  .top-company-box .inner {
    padding: 0px 20px;
  }
  .top-company-box .mtitle4 {
    max-width: 250px;
  }
  .top-company-box .txtarea {
    padding: 40px 0 50px 50px;
    border-left: 2px solid #fff;
    font-size: 1.6rem;
  }
}

@media all and (max-width: 639px) {
  .top-company-box {
    padding: 40px 0;
  }
  .top-company-box:before {
    background-attachment: initial;
    background-size: cover;
  }
  .top-company-box .inner {
    padding: 0px 20px;
  }
  .top-company-box .mtitle4 {
    max-width: 250px;
    text-align: center;
    padding-right: 0;
  }
  .top-company-box .txtarea {
    padding: 30px 0 0px 0px;
    border-left: none;
    border-top: 2px solid #fff;
    font-size: 1.3rem;
  }
  .top-company-box .btn04 a {
    margin: 20px auto 0;
  }
}

.top-product-box {
  margin: 0px auto 0;
  padding: 0px 0 0;
  position: relative;
}

.top-product-box:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/bg-02.png) repeat;
  background-size: 826px 542px;
  opacity: 0.6;
  mix-blend-mode: hard-light;
}

.top-product-box:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #f4f4f4;
  background: linear-gradient(140deg, #f4f4f4 0%, #f4f4f4 50%, #9c9c9c 100%);
}

.top-product-box .inner {
  padding: 100px 30px 100px;
}

.top-product-box .titlearea .mtitle4 {
  position: relative;
  text-align: center;
}

.top-product-box .titlearea .mtitle4 span.eng {
  color: #333;
}

.top-product-box .titlearea .mtitle4:before {
  position: absolute;
  content: "";
  width: 100%;
  left: 0%;
  bottom: 0;
  border-bottom: 2px solid #ddd;
}

.top-product-box .titlearea .mtitle4:after {
  position: absolute;
  content: "";
  width: 100px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  border-bottom: 2px solid #143970;
}

.top-product-box .mainarea {
  margin: 50px auto 0;
}

.top-product-box .list-photoarea {
  margin-top: 20px;
  background-color: #fff;
}

.top-product-box .list-photoarea .btn04 {
  padding: 20px;
}

.top-product-box .list-photoarea .list-linktxt {
  position: absolute;
  bottom: 0;
  right: 0;
}

.top-product-box .list-photoarea .list-linktxt span {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  display: inline-block;
  background-color: #143970;
  padding: 6px 40px 6px 30px;
  color: #fff;
  position: relative;
}

.top-product-box .list-photoarea .list-linktxt span:before {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-left: 6px solid #fff;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  right: 20px;
  top: 40%;
}

.top-product-box .list-photoarea .list-photo {
  overflow: hidden;
  background-color: #333;
}

.top-product-box .list-photoarea .list-photo img {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.top-product-box .list-photoarea:hover .list-photo img {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 0.6;
}

.top-product-box .list-photoarea:hover .list-linktxt span {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background-color: #333;
  color: #fff;
}

.top-product-box .list-photoarea:hover .list-linktxt span:before {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  right: 10px;
}

@media all and (max-width: 639px) {
  .top-product-box .inner {
    padding: 50px 10px 50px;
  }
}

.top-main-box .inner {
  position: relative;
}

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

.top-main-box .mainarea {
  max-width: 500px;
  margin: 0 0 100px auto;
}

.top-main-box .detailarea {
  background-color: #fff;
  padding: 40px;
  position: relative;
}

.top-main-box .detailarea:before {
  position: absolute;
  content: "";
  width: 50%;
  height: 100%;
  top: 0;
  right: 0;
  background-color: #ececec;
}

.top-main-box .detailarea .detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 1;
}

.top-main-box .detailarea .detail.type1 {
  padding: 0 20px 0 0;
}

.top-main-box .detailarea .detail.type2 {
  padding: 0 0 0 20px;
}

.top-main-box .detailarea .detail-num {
  font-family: "Staatliches", cursive;
  font-weight: 400;
  font-size: 8rem;
  line-height: 1;
  width: 20%;
  max-width: 90px;
}

.top-main-box .detailarea .detail-txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 2rem;
  font-weight: bold;
}

@media all and (max-width: 1367px) {
  .top-main-box .mainarea {
    width: 40%;
  }
  .top-main-box .detailarea {
    background-color: #fff;
    padding: 40px;
    position: relative;
  }
  .top-main-box .detailarea .detail {
    width: 50%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .top-main-box .detailarea .detail.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .top-main-box .detailarea .detail-num {
    font-size: 5rem;
  }
  .top-main-box .detailarea .detail-txt {
    width: 80%;
    font-size: 1.6rem;
  }
}

@media all and (max-width: 639px) {
  .top-main-box .mainarea {
    margin: 0 0 40px auto;
  }
  .top-main-box .detailarea {
    padding: 20px 10px;
  }
  .top-main-box .detailarea.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .top-main-box .detailarea .detail {
    width: 50%;
    display: block;
  }
  .top-main-box .detailarea .detail.type1 {
    padding-right: 10px;
  }
  .top-main-box .detailarea .detail.type2 {
    padding-left: 10px;
  }
  .top-main-box .detailarea .detail-num {
    font-size: 2rem;
    width: 100%;
    text-align: center;
    margin: 0 auto 10px;
  }
  .top-main-box .detailarea .detail-txt {
    width: 100%;
    font-size: 1.2rem;
  }
}

.top-gallery-box .inner {
  max-width: 100%;
  padding: 100px 0;
}

.top-gallery-box .titlearea {
  width: 30%;
  padding: 100px 0 100px 50px;
}

.top-gallery-box .mainarea {
  width: 70%;
}

@media all and (max-width: 639px) {
  .top-gallery-box .inner {
    max-width: 100%;
    padding: 50px 0;
  }
  .top-gallery-box .titlearea {
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
  }
  .top-gallery-box .mainarea {
    width: 100%;
  }
}

.top-messe-box {
  position: relative;
  margin: 30px auto 0;
}

.top-messe-box.type-contact {
  margin-top: 0px;
}

.top-messe-box.type-contact .mainarea {
  padding: 0 0px;
}

.top-messe-box .inner {
  padding-bottom: 0;
}

.top-messe-box .mainarea {
  padding: 0;
}

@media all and (max-width: 896px) {
  .top-messe-box:before {
    height: 40%;
  }
  .top-messe-box .mainarea {
    padding: 0px;
  }
}

@media all and (max-width: 639px) {
  .top-messe-box .inner {
    width: 100%;
  }
  .top-messe-box:before {
    height: 40%;
  }
  .top-messe-box.type-contact .inner {
    padding: 20px 0;
  }
  .top-messe-box.type-contact .mbox {
    margin-left: auto;
    margin-right: auto;
    max-width: 96%;
  }
}

.top-feature-box {
  margin: 0px auto 0;
  padding: 0px 0 0;
  position: relative;
}

.top-feature-box:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/bg-02.jpg) repeat;
  background-size: 1920px 700px;
}

.top-feature-box .inner {
  padding: 100px 30px 50px;
}

.top-feature-box .titlearea .mtitle4 {
  position: relative;
}

.top-feature-box .titlearea .mtitle4:before {
  position: absolute;
  content: "";
  width: 140%;
  left: -20%;
  bottom: 0;
  border-bottom: 4px solid #ddd;
}

.top-feature-box .titlearea .mtitle4:after {
  position: absolute;
  content: "";
  width: 100px;
  left: 0%;
  bottom: 0;
  border-bottom: 4px solid #143970;
}

.top-feature-box .mainarea {
  margin: 50px auto 0;
}

.top-content-box {
  margin: 0px auto 0;
  padding: 0px 0 0;
  position: relative;
}

.top-content-box .inner {
  padding: 0px;
  margin: 0 0 0 auto;
  max-width: 1700px;
}

.top-content-box .titlearea {
  padding: 100px 30px 50px;
}

.top-content-box .titlearea .mtitle4 {
  position: relative;
}

.top-content-box .titlearea .mtitle4:before {
  position: absolute;
  content: "";
  width: 345%;
  left: -45%;
  bottom: 0;
  border-bottom: 4px solid #ddd;
}

.top-content-box .titlearea .mtitle4:after {
  position: absolute;
  content: "";
  width: 100px;
  left: 0%;
  bottom: 0;
  border-bottom: 4px solid #143970;
}

.top-content-box .titlearea .photo {
  margin-top: 50px;
  height: 350px;
}

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

.top-content-box .mainarea {
  margin: 50px auto 0;
}

.top-service-box .inner {
  padding: 100px 40px 80px;
  max-width: 100%;
}

.top-service-box .mtitle4 {
  text-align: center;
}

.top-service-box .mtitle4 .ja {
  color: #046dcf;
}

@media all and (max-width: 639px) {
  .top-service-box .inner {
    padding: 50px 0px;
  }
}

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

.top-point-box:before {
  position: absolute;
  content: "";
  background: url(../img/bg-02.jpg) repeat;
  background-size: 1000px 700px;
  top: 0%;
  left: 0;
  width: 100%;
  height: 120%;
}

.top-point-box.type-page:before {
  top: 0%;
  left: 0;
  width: 100%;
  height: 100%;
}

.top-point-box .inner {
  padding: 100px 40px 100px;
}

@media all and (max-width: 639px) {
  .top-point-box.main .inner {
    width: 100%;
  }
  .top-point-box .inner {
    padding: 0 0px 50px;
  }
}

.top-topicbox {
  position: relative;
  padding: 30px 0;
}

.top-topicbox:before {
  position: absolute;
  content: "";
  width: 20%;
  height: 100%;
  top: -20%;
  left: 0;
  background-color: #f6f6f6;
}

.top-topicbox .inner {
  padding: 0px 100px 50px;
  max-width: 1200px;
  margin: 0px auto 0 10%;
  position: relative;
  border-radius: 20px 0 0 20px;
}

.top-topicbox .inner:before {
  position: absolute;
  content: "";
  width: 120%;
  height: 100%;
  background: url(../img/topic-photo.jpg) no-repeat;
  background-size: cover;
  right: -120%;
  top: 0;
  z-index: -1;
}

.top-topicbox .titlearea {
  width: 20%;
}

.top-topicbox .titlearea .mtitle2 {
  margin: 20px auto;
}

.top-topicbox .blogbox {
  width: 80%;
  max-width: 1200px;
  padding-left: 40px;
  margin: 30px auto 30px;
}

.top-topicbox .blog-wrap > li {
  padding: 0;
  margin: 0 auto;
  background-color: transparent;
}

.top-topicbox .blog-wrap > li:hover .blog-date {
  color: #276d2d;
}

.top-topicbox .blog-wrap > li:hover .blog-txt {
  opacity: 0.6;
}

.top-topicbox .blog-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 4px 0;
  background-color: transparent;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  border-bottom: 2px solid #ddd;
  padding-bottom: 30px;
  margin-bottom: 10px;
}

.top-topicbox .blog-detail .blog-date {
  border: 1px solid #143970;
  background-color: transparent;
  color: #143970;
  font-size: 1.4rem;
  padding: 4px 10px;
  max-width: 120px;
  width: 20%;
}

.top-topicbox .blog-detail .blog-txt {
  padding: 0 15px;
  color: #333;
  width: 80%;
}

@media all and (max-width: 1100px) {
  .top-topicbox .blog-wrap > li {
    width: 100%;
  }
  .top-topicbox .blog-wrap > li:hover .blog-date {
    color: #143970;
  }
  .top-topicbox .blog-wrap > li:hover .blog-txt {
    opacity: 0.6;
  }
}

@media all and (max-width: 896px) {
  .top-topicbox .inner {
    padding: 60px 15px;
    max-width: 100%;
    margin: 0px 0 200px auto;
    border-radius: 20px 0 0 0;
  }
  .top-topicbox .inner:before {
    width: 100%;
    height: 200px;
    right: 0%;
    top: 100%;
    z-index: -1;
  }
}

@media all and (max-width: 639px) {
  .top-topicbox {
    padding: 0;
  }
  .top-topicbox .inner {
    max-width: 90%;
    margin: 0 auto 200px;
    padding: 30px 15px 60px;
  }
  .top-topicbox .inner .tcenter {
    text-align: left;
  }
  .top-topicbox .inner:before {
    border-radius: 0 0 0 20px;
    top: 94%;
    right: -10%;
    width: 110%;
  }
  .top-topicbox .blogbox {
    margin: 20px auto;
  }
  .top-topicbox .blog-detail {
    display: block;
    width: 100%;
    padding: 0 0;
  }
  .top-topicbox .blog-detail .blog-date {
    width: 100px;
    font-size: 1.2rem;
    padding: 0;
    margin: 0 auto;
  }
  .top-topicbox .blog-detail .blog-cat {
    font-size: 10px;
  }
  .top-topicbox .blog-detail .blog-txt {
    width: 100%;
    padding: 0px 5px;
  }
}

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

.top-detail-box.type-blue {
  background-color: #4e92d6;
}

.top-detail-box.type-blue .mtitle .eng {
  background: linear-gradient(91.17deg, #042f8b 0.7%, #082138 65.72%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.top-detail-box.type-blue .txtarea:before {
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(40%, #2665ee), color-stop(60%, #2665ee), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #2665ee 40%, #2665ee 60%, rgba(255, 255, 255, 0) 100%);
}

.top-page-box {
  position: relative;
  margin-top: 200px;
}

.top-page-box.page-top {
  margin-top: 200px;
}

.top-page-box.page-top:before {
  position: absolute;
  content: "";
  top: -90px;
  left: 0;
  width: 80%;
  height: 200px;
  border-radius: 0 40px 40px 0;
  background-color: #fff3ef;
}

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

.top-page-box .photo {
  margin: 20px auto 0;
  height: 400px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

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

@media all and (max-width: 639px) {
  .top-page-box.page-top {
    margin-top: 0px;
  }
  .top-page-box.page-top:before {
    top: 30px;
    height: 60px;
    border-radius: 0 20px 20px 0;
  }
  .top-page-box .inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 50px 0px;
    position: relative;
  }
  .top-page-box .photo {
    margin: 0px auto 0;
    height: 140px;
  }
}

/* top list
----------------------------------*/
.product-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;
}

.product-list li {
  width: 31%;
  margin: 0 1%;
  position: relative;
}

.product-list .list-titlearea {
  position: relative;
}

.product-list .list-titlearea .list-num {
  position: absolute;
  left: -12px;
  top: -14px;
  font-size: 11.5rem;
  font-family: "Staatliches", cursive;
  font-weight: 400;
  color: #4e92d6;
  line-height: 1;
  text-shadow: 2px 0px 0px #fff;
}

.product-list .list-titlearea .list-num.type1 {
  letter-spacing: 9px;
}

.product-list .list-titlearea .list-title_main {
  margin-left: 82px;
  padding: 7px 10px 7px 50px;
  background: #4e92d6;
  background: -webkit-gradient(linear, left top, right top, from(#4e92d6), color-stop(66%, #2c6cac), to(#12467a));
  background: linear-gradient(90deg, #4e92d6 0%, #2c6cac 66%, #12467a 100%);
  height: 80px;
  position: relative;
}

.product-list .list-titlearea .list-title_main.type1 {
  margin-left: 70px;
}

.product-list .list-titlearea .list-title_main.type2:before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  left: -20px;
  bottom: 0;
  /* border-top: 0px solid transparent; */
  border-bottom: 41px solid #4e92d6;
  border-left: 20px solid transparent;
  z-index: -1;
}

.product-list .list-titlearea .list-subtitle {
  font-size: 2rem;
  font-family: "Staatliches", cursive;
  font-weight: 400;
  color: #fff;
}

.product-list .list-titlearea .list-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  line-height: 1;
}

@media all and (max-width: 1100px) {
  .product-list .list-titlearea .list-title_main {
    padding: 7px 10px 7px 30px;
  }
  .product-list .list-titlearea .list-subtitle {
    font-size: 2rem;
  }
  .product-list .list-titlearea .list-title {
    font-size: 1.6rem;
  }
}

@media all and (max-width: 896px) {
  .product-list {
    width: 80%;
    margin: 0 auto;
  }
  .product-list li {
    width: 100%;
    margin: 0 auto 30px;
  }
  .product-list .list-photoarea .list-photo {
    height: 200px;
  }
  .product-list .list-photoarea .list-photo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media all and (max-width: 639px) {
  .product-list {
    width: 100%;
    margin: 0 auto;
  }
  .product-list .list-titlearea .list-title_main {
    padding: 7px 10px 7px 30px;
    height: 70px;
  }
  .product-list .list-titlearea .list-num {
    font-size: 102px;
    left: -3px;
  }
  .product-list .list-titlearea .list-subtitle {
    font-size: 1.4rem;
  }
  .product-list .list-titlearea .list-title {
    font-size: 1.4rem;
  }
  .product-list .list-photoarea .list-photo {
    height: 150px;
  }
}

.content-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 0 0 100px;
  position: relative;
  z-index: 1;
}

.content-list li {
  width: 33.33%;
  position: relative;
  overflow: hidden;
}

.content-list li:hover .list-photo {
  overflow: hidden;
  background-color: #000;
}

.content-list li:hover img {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 0.8;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.content-list li:hover .list-txt {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  top: 80px;
  background-color: #12182c;
}

.content-list li:hover .list-txt:before {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  bottom: 20px;
}

.content-list li:hover .list-txt.type2 {
  top: 280px;
}

.content-list li:hover .list-txt.type3 {
  top: 480px;
}

.content-list .list-photo {
  height: 100%;
}

.content-list .list-photo img {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.content-list .list-txt {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
  background-color: #143970;
  padding: 50px 20px;
  top: 60px;
  height: 200px;
}

.content-list .list-txt.type2 {
  top: 260px;
}

.content-list .list-txt.type3 {
  top: 460px;
}

.content-list .list-txt:before {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 30px;
  border-top: 14px solid #fff;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  width: 6px;
  height: 14px;
}

.content-list .list-txt .eng {
  font-family: "Staatliches", cursive;
  font-weight: 400;
  color: #fff;
  font-size: 4rem;
  line-height: 1;
}

.content-list .list-txt .ja {
  color: #fff;
  font-weight: bold;
}

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

.feature-list li.reverse {
  margin-top: 100px;
}

.feature-list li.reverse .photo {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.feature-list li.reverse .txtarea {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  padding: 50px 0px 50px 50px;
}

.feature-list li.reverse .list-num {
  position: absolute;
  font-family: "Staatliches", cursive;
  font-weight: 400;
  opacity: 0.4;
  color: #143970;
  font-weight: bold;
  font-size: 8rem;
  top: 0%;
  left: 50px;
}

.feature-list li:nth-child(3) {
  margin-top: 100px;
}

.feature-list .photo {
  width: 50%;
}

.feature-list .txtarea {
  width: 50%;
  padding: 50px 50px 50px 0;
  position: relative;
}

.feature-list .txtarea .list-title {
  font-size: 3rem;
  color: #143970;
  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;
  padding-left: 50px;
}

.feature-list .txtarea .list-title.type-min {
  font-size: 2.4rem;
}

.feature-list .list-num {
  position: absolute;
  font-family: "Staatliches", cursive;
  font-weight: 400;
  opacity: 0.4;
  color: #143970;
  font-weight: bold;
  font-size: 8rem;
  top: 0%;
  left: 0;
}

.feature-list .list-txt {
  margin-top: 40px;
}

.feature-list .list-txt span {
  font-weight: bold;
  color: #143970;
  font-size: 1.8rem;
}

.point-list {
  position: relative;
  z-index: 1;
  margin: 150px auto 100px;
}

.point-list:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/bg-02.jpg) repeat;
  background-size: 1920px 700px;
  top: 0;
  left: 0;
}

.point-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1600px;
  padding: 100px 40px 50px;
  margin: 0 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.point-list ul li {
  width: 23%;
  margin: 0 1% 40px;
}

.point-list .list-photo {
  position: relative;
}

.point-list .list-txtarea {
  position: relative;
  z-index: 1;
}

.point-list .list-num {
  text-align: center;
  font-family: "Staatliches", cursive;
  font-weight: 400;
  color: #aa2e2e;
  font-size: 6rem;
  line-height: 1;
  margin-top: -30px;
}

.point-list .list-txt {
  padding: 10px 10px 0;
  font-weight: bold;
}

.service-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: #000;
}

.service-list li {
  width: 33.33%;
  position: relative;
  height: 240px;
  z-index: 1;
}

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

.service-list li:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  background-color: #046dcf;
}

.service-list li.type1 {
  background: url(../img/service01.jpg) no-repeat;
  background-size: cover;
}

.service-list li.type2 {
  background: url(../img/service02.jpg) no-repeat;
  background-size: cover;
}

.service-list li.type3 {
  background: url(../img/service03.jpg) no-repeat;
  background-size: cover;
}

.service-list li.type4 {
  background: url(../img/service04.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}

.service-list li.type5 {
  background: url(../img/service05.jpg) no-repeat;
  background-size: cover;
  background-position: bottom;
}

.service-list li.type6 {
  background: url(../img/service06.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}

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

.service-list li:hover:after {
  -webkit-animation: load-tate2 0.6s ease-out 0s forwards;
          animation: load-tate2 0.6s ease-out 0s forwards;
}

.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: 0;
  right: 0;
  margin: 0 auto;
  top: 30%;
  text-align: center;
}

.service-list .title {
  display: inline-block;
  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;
  color: #fff;
  font-size: 2.2rem;
  text-align: center;
}

.service-list .arrow {
  margin: 20px auto 0;
  position: relative;
  display: block;
  width: 32px;
  height: 32px;
  border: 2px solid #276d2d;
  background-color: #276d2d;
  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: 639px) {
  .service-list li {
    width: 50%;
    height: 140px;
  }
  .service-list .title {
    font-size: 1.4rem;
  }
  .service-list .titlearea {
    top: 28%;
  }
  .service-list .arrow {
    margin: 10px auto 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);
  }
}

.flow-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 50px auto 0;
}

.flow-list li {
  width: 21%;
  margin: 0 2%;
  padding: 50px 30px 40px;
  border-radius: 20px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1);
  position: relative;
}

.flow-list li:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 14px;
  top: 44%;
  right: -20px;
  border-left: 20px solid #333;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
}

.flow-list li:last-child:before {
  display: none;
}

.flow-list li .num {
  position: relative;
  width: 160px;
  height: 160px;
  margin: -110px auto 0;
}

.flow-list li .num:before {
  position: absolute;
  content: "";
  width: 120px;
  height: 120px;
  left: 0;
  right: 0;
  top: 20px;
  margin: 0 auto;
  background-color: #143970;
}

.flow-list li .num span {
  color: #fff;
  position: absolute;
  z-index: 1;
  font-size: 4rem;
  font-family: "Staatliches", cursive;
  font-weight: 400;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.flow-list li .title {
  text-align: center;
  font-size: 1.8rem;
  color: #143970;
  font-weight: bold;
  padding-bottom: 10px;
  margin: 20px auto 10px;
  border-bottom: 1px solid #143970;
}

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

.flow-list li .list-txt i {
  width: 10%;
  max-width: 16px;
  padding-top: 5px;
  color: #143970;
}

.flow-list li .list-txt span {
  padding-left: 5px;
  width: 90%;
  line-height: 1.4;
}

@media all and (max-width: 1100px) {
  .flow-list {
    display: block;
    max-width: 700px;
  }
  .flow-list li {
    width: 100%;
    margin: 0 auto 60px 30px;
  }
  .flow-list li:before {
    border-top: 20px solid #046dcf;
    border-bottom: none;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: auto;
    bottom: -20px;
  }
  .flow-list li .num {
    position: absolute;
    left: -70px;
    top: 8%;
    margin: 0 auto;
    width: 130px;
    height: 130px;
  }
  .flow-list li .num:before {
    width: 130px;
    height: 130px;
  }
  .flow-list li .main {
    margin-left: 60px;
  }
  .flow-list li .title {
    margin: 0 auto 10px;
  }
}

@media all and (max-width: 896px) {
  .flow-list {
    display: block;
    max-width: 700px;
    margin: 0 20px;
  }
  .flow-list li {
    width: 90%;
    margin: 0 auto 40px 30px;
    padding: 10px 20px 10px;
  }
  .flow-list li:before {
    border-top: 20px solid #046dcf;
    border-bottom: none;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: auto;
    bottom: -20px;
  }
  .flow-list li .num {
    left: -50px;
    top: 8%;
    width: 90px;
    height: 90px;
  }
  .flow-list li .num span {
    font-size: 2rem;
  }
  .flow-list li .num:before {
    width: 90px;
    height: 90px;
  }
  .flow-list li .main {
    margin-left: 30px;
  }
  .flow-list li .title {
    margin: 0 auto 10px;
    font-size: 1.4rem;
  }
}

.flow-list2 {
  padding-left: 40px;
  position: relative;
  margin: 40px auto;
  padding-top: 30px;
}

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

.flow-list2:before {
  content: "";
  width: 15px;
  height: 100%;
  background: #cfc2a3;
  margin-left: 22px;
  display: block;
  position: absolute;
  top: 0;
  left: 76px;
}

.flow-list2 li {
  position: relative;
}

.flow-list2 li:not(:last-child) {
  margin-bottom: 40px;
}

.flow-list2 li .icon {
  font-size: 1.3rem;
  color: #fff;
  background: #578f35;
  padding: 8px 8px;
  display: block;
  position: absolute;
  top: 0;
  left: 0px;
  z-index: 100;
  border-radius: 5px;
  width: 130px;
  text-align: center;
}

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

.flow-list2 li .main {
  padding: 5px 0 0 200px;
  position: relative;
}

.flow-list2 li .main:before, .flow-list2 li .main:after {
  content: "";
  display: block;
  position: absolute;
  top: 20px;
}

.flow-list2 li .main:before {
  width: 7px;
  height: 7px;
  margin-top: -2px;
  background: #cfb45a;
  border-radius: 50%;
  left: 144px;
  z-index: 1;
}

.flow-list2 li .main:after {
  width: 30px;
  border-bottom: 2px dashed #578f35;
  position: absolute;
  left: 156px;
}

.flow-list2 li .main .ttl {
  font-size: 2rem;
  color: #333;
  margin-bottom: 10px;
  font-weight: bold;
}

.flow-list2 li .main .txt {
  font-size: 1.5rem;
  color: #333;
}

@media all and (max-width: 896px) {
  .flow-list2 {
    padding: 0 10px;
  }
  .flow-list2:before {
    left: 30px;
  }
}

@media all and (max-width: 639px) {
  .flow-list2 {
    padding: 0 10px;
  }
  .flow-list2:before {
    left: 14px;
    width: 8px;
  }
  .flow-list2 li .icon {
    font-size: 10px;
    width: 60px;
    padding: 8px 4px;
  }
  .flow-list2 li .icon:before {
    top: 42%;
  }
  .flow-list2 li .main {
    padding: 5px 0 0 120px;
  }
  .flow-list2 li .main:before {
    left: 74px;
  }
  .flow-list2 li .main:after {
    left: 86px;
    width: 20px;
  }
  .flow-list2 li .txtarea {
    padding-left: 90px;
  }
  .flow-list2 li .txtarea:before, .flow-list2 li .txtarea:after {
    display: none;
  }
  .flow-list2 li .txtarea .ttl {
    font-size: 1.5rem;
    margin-bottom: 0;
  }
  .flow-list2 li .txtarea .txt {
    font-size: 1.2rem;
  }
}

.flow-list3 ul {
  max-width: 1000px;
  margin: 20px auto;
}

.flow-list3 li {
  margin-bottom: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.flow-list3 .flow-icon {
  height: 160px;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 92%, 60% 92%, 50% 100%, 40% 92%, 0 92%);
          clip-path: polygon(0% 0%, 100% 0%, 100% 92%, 60% 92%, 50% 100%, 40% 92%, 0 92%);
  background-color: #6da770;
  position: relative;
}

.flow-list3 .flow-icon.flow-1 {
  background-color: #6da770;
}

.flow-list3 .flow-icon.flow-5 {
  -webkit-clip-path: none;
          clip-path: none;
}

.flow-list3 .flow-icon .num {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  font-size: 4rem;
  font-weight: 300;
  top: 22%;
  color: #fff;
}

.flow-list3 .flow-txt {
  color: #333;
  margin-top: 10px;
}

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

.flow-list3 .flow-type2 li {
  width: 18%;
  margin: 0 1%;
}

.flow-list3 .flow-type2 .flow-icon {
  height: 100px;
  height: 100px;
  width: 90%;
  margin: 0 auto;
}

.flow-list3 .flow-type2 .flow-icon .num {
  top: 5%;
  color: #fff;
}

.flow-list3 .flow-type2 .flow-area .txtdeko6 {
  height: 100px;
}

@media all and (max-width: 639px) {
  .flow-list3 {
    padding: 40px 20px;
  }
  .flow-list3 ul {
    margin: 0 auto;
  }
  .flow-list3 .flow-photo {
    height: 120px;
  }
  .flow-list3 .flow-photo.type2 {
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 92%, 53% 92%, 50% 100%, 47% 92%, 0 92%);
            clip-path: polygon(0% 0%, 100% 0%, 100% 92%, 53% 92%, 50% 100%, 47% 92%, 0 92%);
    height: 180px;
  }
  .flow-list3 .flow-icon {
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 92%, 56% 92%, 50% 100%, 44% 92%, 0 92%);
            clip-path: polygon(0% 0%, 100% 0%, 100% 92%, 56% 92%, 50% 100%, 44% 92%, 0 92%);
    width: 170px;
  }
  .flow-list3 .flow-icon .num {
    top: 22%;
    font-size: 2rem;
  }
  .flow-list3 .flow-txt {
    font-size: 1.1rem;
  }
  .flow-list3 .txtdeko6 {
    margin-top: 0;
  }
  .flow-list3 .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .flow-list3 .flex .flex-10 {
    width: 16%;
    height: 100px;
  }
  .flow-list3 .flex .flex-86.l-m4 {
    margin-left: 4%;
    width: 80%;
  }
  .flow-list3 .flow-type2 {
    display: block;
  }
  .flow-list3 .flow-type2 li {
    width: 100%;
    margin: 0 auto 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }
  .flow-list3 .flow-type2 .flow-icon {
    height: 80px;
    width: 16%;
    margin: 0 auto;
  }
  .flow-list3 .flow-type2 .flow-icon .num {
    top: 5%;
  }
  .flow-list3 .flow-type2 .flow-area {
    width: 80%;
    margin-left: 4%;
  }
  .flow-list3 .flow-type2 .flow-area .txtdeko5 {
    height: 80px;
    text-align: left;
  }
}

.achievement-box-detail {
  margin: 0 auto;
  max-width: 900px;
  width: 100%;
}

.achievement-box-gallery {
  margin-bottom: 5px;
}

.achievement-box-gallery img {
  width: 100%;
  height: 600px;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  vertical-align: bottom;
}

@media all and (max-width: 1100px) {
  .achievement-box-gallery img {
    height: 400px;
  }
}

@media all and (max-width: 639px) {
  .achievement-box-gallery img {
    height: 200px;
  }
}

/* box 
----------------------------------*/
.columnbox {
  position: relative;
  z-index: 1;
  padding: 30px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.columnbox .box-photo {
  width: 40%;
  min-height: 300px;
}

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

.columnbox .box-txtarea {
  width: 60%;
  padding: 50px 0 50px 50px;
}

.columnbox .box-title {
  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: 3rem;
}

.sentencebox {
  position: relative;
  z-index: 1;
  padding: 30px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.sentencebox .box-title {
  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: 3rem;
  margin-bottom: 20px;
}

.historybox {
  position: relative;
  z-index: 1;
}

.historybox:before {
  position: absolute;
  content: "";
  width: 2px;
  height: 80%;
  top: 20px;
  left: 100px;
  background-color: #143970;
  z-index: -1;
}

.historybox.max-900 {
  max-width: 1000px;
  margin: 50px auto 0;
}

.historybox.max-900:before {
  position: absolute;
  content: "";
  width: 2px;
  height: 84%;
}

.historybox.max-900 li .box-detail {
  padding: 0 15px 10px;
  width: 75%;
  margin-left: 5%;
}

.historybox li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

.historybox .box-num {
  max-width: 200px;
  text-align: center;
  width: 30%;
  padding: 10px 10px;
  border: 1px solid #2b2e44;
  color: #fff;
  font-weight: bold;
  background-color: #2b2e44;
}

.historybox .box-detail {
  width: 67%;
  margin-left: 3%;
  font-weight: bold;
  font-size: 1.6rem;
  position: relative;
  display: inline-block;
  padding: 0 15px 10px;
}

.historybox .box-detail:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background: url(../img/catch-line.png) repeat-x;
  background-size: 4px 2px;
  opacity: 0.8;
}

@media all and (max-width: 639px) {
  .historybox:before {
    left: 14%;
  }
  .historybox .box-num {
    max-width: 200px;
    text-align: center;
    width: 30%;
    padding: 2px 10px;
    border: 1px solid #2b2e44;
    color: #fff;
    font-weight: bold;
    background-color: #2b2e44;
    font-size: 1.2rem;
  }
  .historybox .box-detail {
    width: 65%;
    margin-left: 5%;
    font-weight: bold;
    font-size: 1.2rem;
    position: relative;
    display: inline-block;
    padding: 0 15px 10px;
  }
}

.page-mainbox {
  padding: 50px 40px 80px;
  margin: 100px auto 0;
  position: relative;
}

.page-mainbox:before {
  position: absolute;
  content: "";
  width: 80%;
  height: 68%;
  bottom: -20px;
  right: 0;
  background-color: #f1f1f1;
}

.page-mainbox .inner {
  padding: 0px 40px;
}

.page-mainbox .txtarea {
  margin: 0 auto;
  position: relative;
}

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

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

.page-mainbox .title {
  position: absolute;
  top: 100px;
  left: 0;
}

.page-mainbox .title .title-txt {
  margin-bottom: 50px;
}

.page-mainbox .title .title-txt span {
  background-color: #fff;
  padding: 20px 50px 20px 20px;
  font-size: 2rem;
  font-weight: bold;
}

.page-mainbox .detail {
  background-color: #fff;
  padding: 50px;
  max-width: 1000px;
  margin: -200px -60px 0 auto;
  position: relative;
  z-index: 1;
  font-weight: bold;
}

.boxarea {
  position: relative;
  z-index: 1;
  padding: 0px 0px;
}

@media all and (max-width: 639px) {
  .boxarea .box-logo {
    width: 190px;
    margin: 0 auto;
  }
}

.boxarea .blog-wrap {
  max-width: 1000px;
  margin: 0 auto;
}

.boxarea.w-mid {
  max-width: 1200px;
  margin: 0 auto;
}

.boxarea.w-max {
  max-width: 1600px;
  margin: 0 auto;
}

.boxarea.type-p40 {
  padding: 30px 40px;
}

@media all and (max-width: 639px) {
  .boxarea.type-p40 {
    padding: 30px 20px;
  }
}

.borderbox {
  border-radius: 20px;
  border: 4px solid #fff3ef;
  overflow: hidden;
}

.borderbox .border-inner {
  margin-top: 40px;
}

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

.whitebox {
  background-color: #fff;
  padding: 50px;
  border-radius: 20px;
}

@media all and (max-width: 639px) {
  .whitebox {
    margin: 0 10px;
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 0px 0px;
  }
  .whitebox.t-m {
    margin-top: 30px;
  }
}

.tblarea {
  padding: 10px 15px;
  background-color: #f3f3f3;
  border-radius: 10px;
}

.tblarea .title {
  font-weight: bold;
  margin-bottom: 10px;
}

.tblarea .title span {
  border-bottom: 2px solid #046dcf;
  padding-bottom: 5px;
}

.tblarea .detail {
  padding-left: 20px;
}

.tblarea .detail span {
  background-color: #046dcf;
  color: #fff;
  padding: 2px 10px;
  font-size: 1.4rem;
}

.tblarea.type-yellow .title span {
  border-bottom: 2px solid #cfb45a;
}

.tblarea.type-yellow .detail span {
  background-color: #cfb45a;
}

.tblarea.type-blue .title span {
  border-bottom: 2px solid #4e92d6;
}

.tblarea.type-blue .detail span {
  background-color: #4e92d6;
}

.tblarea.type-purple .title span {
  border-bottom: 2px solid #8171db;
}

.tblarea.type-purple .detail span {
  background-color: #8171db;
}

@media all and (max-width: 639px) {
  .tblarea .detail {
    padding-left: 0px;
  }
  .tblarea .detail span {
    display: inline-block;
    font-size: 10px;
  }
}

/* txtdeko
----------------------------------*/
.txtdeko span {
  font-size: 4rem;
  line-height: 1;
  font-weight: bold;
  position: relative;
  text-align: center;
  color: #fff;
  text-shadow: 1px 1px 0 #046dcf, -1px -1px 0 #046dcf, -1px 1px 0 #046dcf, 1px -1px 0 #046dcf, 0px 1px 0 #046dcf, 0 -1px 0 #046dcf, -1px 0 0 #046dcf, 1px 0 0 #046dcf;
}

@media all and (max-width: 1100px) {
  .txtdeko span {
    font-size: 2rem;
  }
}

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

.txtdeko-min {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.txtdeko-min:before {
  position: absolute;
  content: "";
  width: 100px;
  height: 2px;
  left: 0;
  bottom: 0;
  background-color: #143970;
}

.txtdeko-min.type-only {
  padding: 0 10px 10px;
}

.txtdeko-min.type-only i {
  padding-right: 5px;
}

.txtdeko-min.type-only:before {
  width: 100%;
}

.txtdeko2 span {
  text-align: center;
  font-weight: bold;
  background-color: #cfc2a3;
  padding: 4px 20px;
  font-size: 1.4rem;
}

@media all and (max-width: 639px) {
  .txtdeko2 {
    margin-bottom: 20px;
  }
}

.txtdeko3 {
  position: relative;
  padding: 16px 20px;
  text-align: center;
  font-weight: bold;
  font-size: 1.8rem;
  background-color: #fff3ef;
}

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

.txtdeko4 {
  border-left: 1px solid #fff;
  padding: 40px 60px;
  position: relative;
}

.txtdeko4:before {
  position: absolute;
  content: "";
  width: 90%;
  height: 1px;
  bottom: -3px;
  right: 0;
  background-color: #fff;
}

.txtdeko4 .sub {
  display: block;
  color: #276d2d;
  font-family: "Staatliches", cursive;
  font-weight: 400;
}

.txtdeko4 .main {
  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-size: 3rem;
  display: block;
}

.txtdeko4 .num {
  color: #fff;
  opacity: 0.5;
  font-family: "Staatliches", cursive;
  font-weight: 400;
  font-size: 10rem;
  line-height: 1;
  font-size: 10rem;
  position: absolute;
  right: 0;
  bottom: -16px;
}

@media all and (max-width: 639px) {
  .txtdeko4 {
    padding: 10px 20px;
  }
  .txtdeko4 .sub {
    display: block;
    color: #276d2d;
    font-family: "Staatliches", cursive;
    font-weight: 400;
  }
  .txtdeko4 .main {
    font-size: 1.6rem;
  }
  .txtdeko4 .num {
    font-size: 4rem;
    bottom: -10px;
  }
}

.txtdeko5 span {
  border: 1px solid #046dcf;
  padding: 5px 30px;
  display: inline-block;
}

@media all and (max-width: 896px) {
  .txtdeko5 span {
    padding: 5px 10px;
  }
}

.txtdeko6 {
  font-weight: bold;
  text-align: center;
  padding: 10px 0;
  border-top: 1px solid #c3a349;
  border-bottom: 1px solid #c3a349;
  color: #000;
  background-color: #fff;
}

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

.txtdeko7 span {
  display: inline-block;
  font-weight: bold;
  font-size: 3rem;
}

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

.txtbox .txt {
  background-color: #046dcf;
  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: #276d2d;
}

.txtbox .main.white:hover {
  opacity: 0.4;
  border-bottom: 1px solid #276d2d;
}

.txtbox .main.white:hover a {
  color: #276d2d;
}

.txtbox .sub span {
  font-weight: bold;
}

.txt-list i {
  color: #143970;
  padding-right: 5px;
}

.txt-list .flex {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 2px dotted #046dcf;
}

.txt-list .flex i {
  width: 5%;
  max-width: 20px;
  text-align: center;
}

.txt-list .flex span {
  width: 95%;
}

.txt-list .flex.bold i {
  width: 5%;
  max-width: 30px;
  background-color: #046dcf;
  padding-right: 10px;
  padding: 4px 10px;
  color: #fff;
  font-size: 2rem;
}

.txt-list .flex.bold span {
  padding-left: 10px;
}

.txt-name {
  margin: 40px auto 50px;
  border-bottom: 2px solid #143970;
  padding-bottom: 10px;
  text-align: right;
}

.txt-name .txt {
  font-size: 1.2rem;
  background-color: #143970;
  padding: 2px 12px;
  color: #fff;
  font-weight: bold;
}

.txt-name .name {
  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: 2rem;
  padding-left: 20px;
}

@media all and (max-width: 639px) {
  .txt-name .name {
    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.6rem;
    padding-left: 10px;
  }
}

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

.tbl-detail .tbl-detail-title {
  width: 10%;
  max-width: 28px;
}

.tbl-detail .tbl-detail-txt {
  width: 90%;
  padding-left: 5px;
}

/* 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;
  }
}

/* slider
----------------------------------*/
.slider {
  /*横幅94%で左右に余白を持たせて中央寄せ*/
  width: 94%;
  margin: 0 auto;
}

.slick-slide {
  margin: 0 5px;
  height: 200px;
  position: relative;
}

.slick-slide p {
  position: absolute;
  background-color: #fff;
  padding: 6px 20px;
  bottom: 30px;
  left: 10px;
  border-left: 2px solid #046dcf;
  border-radius: 0 10px 10px 0;
}

.slick-slide img {
  width: auto;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 300px;
  margin: 0 auto;
}

.slick-prev,
.slick-next {
  position: absolute;
  /*絶対配置にする*/
  z-index: 3;
  top: 42%;
  cursor: pointer;
  /*マウスカーソルを指マークに*/
  outline: none;
  /*クリックをしたら出てくる枠線を消す*/
  border-top: 10px solid transparent;
  /*矢印の色*/
  border-bottom: 10px solid transparent;
  /*矢印の色*/
  border-left: 10px solid #046dcf;
  border-right: none;
  font-size: 0;
  background-color: transparent;
}

.slick-prev {
  /*戻る矢印の位置と形状*/
  left: 2.5%;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.slick-next {
  /*次へ矢印の位置と形状*/
  right: 2.5%;
}

/*選択するサムネイル画像の設定*/
.choice-btn li {
  cursor: pointer;
  outline: none;
  width: 25% !important;
  list-style: none;
}

.choice-btn li img {
  opacity: 0.4;
  /*選択されていないものは透過40%*/
}

.choice-btn li.slick-current img {
  opacity: 1;
  /*選択されているものは透過しない*/
}

.choice-btn .slick-track {
  -webkit-transform: unset !important;
          transform: unset !important;
  /*画面幅サイズ変更に伴うサムネイル固定*/
}

/* 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;
  }
  .flex.flex-pro .flex-60.l-m2 {
    margin-top: 30px;
    margin-left: 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-left: auto;
    margin-right: 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: 100%;
    margin: 0 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-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-m0 {
    margin-top: 0;
  }
  .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%;
    margin-left: auto;
    margin-right: auto;
  }
}

.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;
    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-86 {
  width: 86%;
}

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

.flex .flex-86.l-m4 {
  margin-left: 4%;
}

@media all and (max-width: 639px) {
  .flex .flex-86.l-m4 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.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%;
}

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

/* Q and A
----------------------------------*/
.qa-list {
  margin-bottom: 20px;
}

.qa-list.type2 {
  margin-bottom: 100px;
}

.qa-list.type2 dl dt {
  padding: 14px 20px;
}

.qa-list.type2 dl dt:before {
  display: none;
}

.qa-list.type2 dl dd {
  padding: 20px 30px 20px 20px;
}

.qa-list.type2 dl dd:before {
  display: none;
}

.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 #000;
  border-right: 2px solid #000;
}

.qa-list .open::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.qa-list dl dt {
  position: relative;
  margin: 0;
  padding: 14px 20px 14px 60px;
  border-radius: 10px;
  font-weight: bold;
  background: #23802f;
  background: linear-gradient(150deg, #f0f0f0 0%, #e7e7e7 100%);
  color: #000;
}

.qa-list dl dt:before {
  font-size: 22px;
  line-height: 1;
  position: absolute;
  top: 14px;
  left: 20px;
  display: block;
  content: "Q.";
  color: #143970;
}

.qa-list dl dd {
  position: relative;
  margin: 10px auto 0;
  padding: 20px 20px 20px 60px;
  background-color: #fff;
  border: 1px solid #ddd;
}

.qa-list dl dd:before {
  font-size: 22px;
  line-height: 1;
  position: absolute;
  left: 20px;
  display: block;
  content: "A.";
  font-weight: bold;
  color: #aa2e2e;
}

.qa-list dl dd p {
  margin: 10px 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: 30px;
    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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 600px;
  margin: 0 auto 40px;
}

.tab li {
  width: 30%;
  margin-left: 2%;
  background-color: #046dcf;
  color: #fff;
  padding: 5px 10px;
  text-align: center;
  margin-bottom: 10px;
  border: 1px solid #046dcf;
  border-radius: 10px;
  position: relative;
}

.tab li:first-child {
  margin-left: 0;
}

.tab li.type-yellow {
  background-color: #cfb45a;
  border: 1px solid #cfb45a;
}

.tab li.type-orange {
  background-color: #e4774d;
  border: 1px solid #e4774d;
}

.tab li.active:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-top: 20px solid #046dcf;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  bottom: -20px;
}

.tab li.active.type-yellow:before {
  border-top: 20px solid #cfb45a;
}

.tab li.active.type-orange:before {
  border-top: 20px solid #e4774d;
}

.tab li a {
  color: #fff;
}

.tab li:hover {
  background-color: #fff;
}

.tab li:hover a {
  color: #363636;
}

.tab-area {
  background-color: #fff;
  padding: 20px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.tab-area {
  display: none;
  /*はじめは非表示*/
  opacity: 0;
  /*透過0*/
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
  background-color: #fff;
  padding: 20px;
}

.tab-area.is-active {
  display: block;
  -webkit-animation-name: displayAnime;
          animation-name: displayAnime;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

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

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

/*----------------------------------
slide_list
----------------------------------*/
.slide_list li {
  margin: 0 10px;
}

.slide_list li img {
  max-height: 400px;
}

@media all and (max-width: 639px) {
  .slide_list li {
    margin: 0 5px;
  }
  .slide_list li img {
    max-height: 150px;
  }
}

/*----------------------------------
pc/sp
----------------------------------*/
@media all and (max-width: 639px) {
  .pconly {
    display: none;
  }
}

.sponly {
  display: none;
}

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

/*モーダルウィンドウ*/
@media all and (max-width: 639px) {
  .modaal-content-container {
    padding: 15px !important;
  }
}

.modal-wrapper {
  display: none;
}

.modalbox .txtarea {
  padding-left: 50px;
}

@media all and (max-width: 896px) {
  .modalbox .txtarea {
    padding-left: 0px;
  }
}

.mainImg {
  margin-bottom: 10px;
  height: 400px;
  text-align: center;
  margin: 0 auto 20px;
}

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

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

@media all and (max-width: 639px) {
  .mainImg {
    height: 120px;
  }
}

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

.subImg li {
  width: 15%;
  /* width: 23%; */
  margin: 0 1% 20px;
  height: 100px;
}

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

@media all and (max-width: 896px) {
  .subImg li {
    height: 90px;
    width: 18%;
    margin: 0 1% 20px;
  }
  .subImg li img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media all and (max-width: 639px) {
  .subImg li {
    height: 50px;
    width: 16%;
    margin: 0 1% 20px;
  }
}

.sale{
  position:relative;
}
.sale td::before{
  content: "売却済み";
  -webkit-font-smoothing: antialiased;
  display: grid;
  align-items: center;
  color: #fff;
  background: rgb(221,0,0, .15);
  font-weight: 600;
  font-size: 2rem;
  width: 100%;
  height: 100%;
  line-height: 1.3;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.sale .bg-sale a{
  position: relative;
  z-index: 2;
  color: #fff;
}
@media all and (max-width: 890px) {
  .sale td::before{
    font-size: 1.5rem;
  }
}
@media all and (max-width: 639px) {
  .sale td::before{
    font-size: 1rem;
  }
}