@charset "UTF-8";
/* アニメーションベンダープレフィックス込み指定 */
/* アニメーションベンダープレフィックス込み指定 */
/********************/
body {
  color: #101010;
  background: #fefefe;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.7rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  font-weight: 500;
  letter-spacing: 0.2rem;
  position: relative;
}

a {
  color: rgb(9.8360995851, 120.7157676349, 205.6639004149);
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

#wrapper {
  overflow: hidden;
}
@media screen and (max-width: 1101px) {
  #wrapper {
    overflow: hidden;
  }
}

.subpage-wrapper {
  -webkit-animation: fadein 2s;
          animation: fadein 2s;
}

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

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
em {
  font-style: normal;
}

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

.bold {
  font-weight: 600;
}

h2,
h3,
h4 {
  line-height: 1.4;
  font-weight: 600;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.kerning {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

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

.inline {
  display: inline-block;
}

.eng {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
}

.bigger {
  font-size: 1.15em;
  line-height: 1.4;
}
@media screen and (max-width: 639px) {
  .bigger {
    font-size: 1.25rem;
  }
}

.smaller {
  font-size: 13px;
  letter-spacing: 0;
}

.en-big {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  text-transform: uppercase;
}

@media screen and (min-width: 639px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 639px) {
  .pc {
    display: none;
  }
}

.scroll-bar {
  max-height: 450px;
  overflow-y: scroll;
}

/* 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);
  }
}
@-webkit-keyframes view-blurin {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 35px);
            transform: translate(0, 35px);
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@keyframes view-blurin {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 35px);
            transform: translate(0, 35px);
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@-webkit-keyframes view-borderin {
  0% {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
@keyframes view-borderin {
  0% {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
.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);
}

.blur-in.on {
  opacity: 1;
  -webkit-animation: view-blurin 1s cubic-bezier(0.2, 1, 0.2, 1);
          animation: view-blurin 1s cubic-bezier(0.2, 1, 0.2, 1);
}

.border-in.on {
  opacity: 1;
  -webkit-animation: view-borderin 1s cubic-bezier(0.2, 1, 0.2, 1);
          animation: view-borderin 1s cubic-bezier(0.2, 1, 0.2, 1);
}

.loader {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fdfdfd;
  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;
}
.loader::after {
  -webkit-animation: loader 0.5s linear infinite;
          animation: loader 0.5s linear infinite;
  border: 1px solid #0B87E6;
  border-radius: 50%;
  border-right: 1px solid rgba(11, 135, 230, 0.2);
  border-top: 1px solid rgba(11, 135, 230, 0.2);
  content: "";
  height: 70px;
  width: 70px;
}
.loader.off {
  display: none;
}

@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes loader {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* header
----------------------------------*/
@-webkit-keyframes hd-scrolled {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes hd-scrolled {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
.gradient {
  background: linear-gradient(45deg, #ccc, #2D4A86, #eee);
  background-size: 600% 600%;
  -webkit-animation: anim-gradient 10s ease infinite;
          animation: anim-gradient 10s ease infinite;
}

@-webkit-keyframes anim-gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes anim-gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
#l-header {
  width: 100%;
  z-index: 200;
  top: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-bottom: 1px solid rgba(11, 135, 230, 0.3);
}
#l-header.is-fixed {
  position: fixed;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  backdrop-filter: blur(4px);
  -webkit-animation: headerFadeIn 0.5s ease forwards;
          animation: headerFadeIn 0.5s ease forwards;
}
#l-header.is-fixed .inner {
  padding: 10px 10px;
  min-width: initial;
  max-width: 1600px;
}
#l-header.is-fixed .inner #logo .logo1 {
  display: none;
}
#l-header.is-fixed .inner #logo .logo2 {
  display: block;
}
#l-header .inner {
  position: relative;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1600px;
  min-width: 1000px;
  margin: 0 auto;
  padding: 20px 10px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 1025px) {
  #l-header .inner {
    min-width: initial;
  }
}
#l-header .inner #logo {
  width: 375px;
  padding-left: 8px;
}
#l-header .inner .logo2 {
  display: none;
}

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

@keyframes headerFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.head-right_contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}
.head-right_contact.type_hamburger {
  position: relative;
  right: auto;
  top: auto;
  margin-top: 50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.head-right_btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 67px;
  padding: 0 14px;
  background: #133beb;
  font-size: 1.4rem;
  -webkit-transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
}
@media screen and (max-width: 1101px) {
  .head-right_btn {
    width: 100%;
  }
  .head-right_btn a {
    text-align: center;
    font-size: 14px;
    height: 50px;
    color: #fff !important;
  }
}
.head-right_mail {
  margin-left: 10px;
}
.head-right_mail a {
  background: #2D4A86;
  color: #fff;
  font-weight: 600;
}
.head-right_mail a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 5px;
}
.head-right_mail a:hover {
  background: #000;
}
@media screen and (max-width: 1025px) {
  .head-right_mail {
    margin-left: 0;
  }
}

.head-right_tel a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 70px;
  padding: 0 14px;
  background: #0B87E6;
  color: #fff;
  font-size: 1.3em;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
}
.head-right_tel a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
  font-size: 14px;
}

#header_nav {
  position: relative;
  width: 600px;
}
.is-fixed #header_nav ul li a .eng {
  color: #0B87E6;
}
.is-fixed #header_nav ul li a .ja {
  color: #111;
}
.is-fixed #header_nav ul li a.active .eng, .is-fixed #header_nav ul li a:hover .eng {
  color: #133beb;
}
.is-fixed #header_nav ul li a.active:after, .is-fixed #header_nav ul li a:hover:after {
  background: #133beb;
}
#header_nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#header_nav ul li {
  position: relative;
}
#header_nav ul li.footer-only {
  display: none;
}
#header_nav ul li.btn-contact a {
  display: inline-block;
  position: relative;
  padding: 7px 20px 8px 40px;
  border-radius: 30px;
  background: #0B87E6;
  color: #fff;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
#header_nav ul li.btn-contact a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 5px;
  position: absolute;
  left: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 16px;
}
#header_nav ul li.btn-contact a:after {
  display: none;
}
#header_nav ul li.btn-contact a.active .eng, #header_nav ul li.btn-contact a:hover .eng {
  color: #a0dbf1;
}
#header_nav ul li a {
  display: block;
  position: relative;
  padding: 10px 0 14px;
  font-weight: 600;
  font-size: 1.6rem;
  color: #111;
}
#header_nav ul li a .eng {
  display: block;
  position: relative;
  font-size: 1.4rem;
  line-height: 1.3;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
  color: #0B87E6;
}
#header_nav ul li a:after {
  position: absolute;
  left: 0;
  bottom: 10px;
  content: "";
  width: 0;
  height: 3px;
  background: #133beb;
  -webkit-transition: 0.2s width ease-in;
  transition: 0.2s width ease-in;
}
#header_nav ul li a:hover:after, #header_nav ul li a.active:after {
  width: 20px;
}
#header_nav .dropdown {
  display: none;
  position: absolute;
  left: -50px;
  top: 45px;
  z-index: 999;
  padding-top: 20px;
}
#header_nav .dropdown.drop-last {
  left: auto;
  right: -80px;
}
#header_nav .dropdown .dropdown-ul {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px 8px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(5px);
  padding: 15px;
}
#header_nav .dropdown .dropdown-li {
  border-right: 0;
  background: #133beb;
  width: 180px;
}
#header_nav .dropdown .dropdown-li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 12px 10px;
  color: #fff;
  font-size: 1.3rem;
  letter-spacing: 0;
  font-weight: 600;
}
#header_nav .dropdown .dropdown-li a .footer-only {
  display: none;
}
#header_nav .dropdown .dropdown-li a:hover {
  background: #111;
}
#header_nav .dropdown .dropdown-li a:after {
  display: none;
}

/* page-top
----------------------------------*/
#page-top {
  position: fixed;
  bottom: 10px;
  right: 7px;
  z-index: 250;
}
#page-top a {
  display: block;
  background: #0B87E6;
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 2px 2px 2px;
          box-shadow: rgba(0, 0, 0, 0.2) 2px 2px 2px;
  color: #fff;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  text-align: center;
}
#page-top a:hover {
  opacity: 0.6;
}

/* 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);
  }
}
.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {
  -webkit-animation: zoom-in 11s linear 0s 1 normal both;
          animation: zoom-in 11s linear 0s 1 normal both;
}

@media screen and (max-width: 1025px) {
  #slider_kttket_1750144078.slider_wrapper {
    --swiper-wrapper-height: 65vh !important;
  }
}
@media screen and (max-width: 639px) {
  #slider_kttket_1750144078.slider_wrapper {
    --swiper-wrapper-height: 100% !important;
  }
}

#slideshow {
  position: relative;
  margin-inline: auto;
  width: 100%;
  overflow: hidden;
  background: #000;
}
#slideshow .slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  pointer-events: none;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), color-stop(50%, rgba(0, 0, 0, 0.1)), to(transparent)), repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 2px);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%), repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 2px);
}
#slideshow .slide-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, transparent 50%, rgba(0, 0, 0, 0.4) 100%);
}
#slideshow #catch {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 90%;
  z-index: 50;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
#slideshow #catch.on {
  opacity: 1;
  visibility: visible;
}
#slideshow #catch.on .catch-text {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
#slideshow #catch .catch-text {
  font-size: 4.2rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.8;
  letter-spacing: 0.15em;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: -webkit-transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  transition: -webkit-transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
@media screen and (max-width: 639px) {
  #slideshow #catch .catch-text {
    font-size: 2.4rem;
    letter-spacing: 0.1em;
  }
}
#slideshow .slide-icons {
  position: absolute;
  right: 50px;
  bottom: 130px;
  z-index: 60;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  pointer-events: none;
}
#slideshow .slide-icons .icon-item {
  width: 110px;
}
#slideshow .slide-icons .icon-item img {
  width: 100%;
  height: auto;
  -webkit-filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
          filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
}
#slideshow .slide-icons .icon-item.fuwafuwa {
  -webkit-animation: fuwafuwa 3s infinite ease-in-out;
          animation: fuwafuwa 3s infinite ease-in-out;
}
#slideshow .slide-icons .icon-item.fuwafuwa2 {
  -webkit-animation: fuwafuwa 3s infinite ease-in-out 0.5s;
          animation: fuwafuwa 3s infinite ease-in-out 0.5s;
}
@media screen and (max-width: 639px) {
  #slideshow .slide-icons {
    left: 15px;
    bottom: 80px;
    gap: 10px;
  }
  #slideshow .slide-icons .icon-item {
    width: 65px;
  }
}
#slideshow .slide-img {
  position: relative;
  width: 100%;
  padding-top: 50.25%;
  min-height: 800px;
}
#slideshow .slide-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1101px) {
  #slideshow .slide-img {
    min-height: initial;
    padding-top: 65%;
  }
}
@media screen and (max-width: 639px) {
  #slideshow .slide-img {
    padding-top: 95%;
  }
}

@-webkit-keyframes fuwafuwa {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-12px);
            transform: translateY(-12px);
  }
}

@keyframes fuwafuwa {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-12px);
            transform: translateY(-12px);
  }
}
/***************************************************
 * Generated by SVG Artista on 4/18/2023, 2:08:15 PM
 * MIT license (https://opensource.org/licenses/MIT)
 * W. https://svgartista.net
 **************************************************/
#catch-circle {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  mix-blend-mode: screen;
  background: rgba(160, 219, 241, 0.1);
  border-radius: 50%;
}
#catch-circle .circle-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(194, 223, 246, 0) 0%, rgba(194, 223, 246, 0) 70%, rgba(242, 251, 255, 0.3) 100%);
  opacity: 0;
}
#catch-circle.on .circle-inner {
  -webkit-animation: 1s cubic-bezier(0.18, 0.06, 0.23, 1) 1.9s forwards clip-inner;
          animation: 1s cubic-bezier(0.18, 0.06, 0.23, 1) 1.9s forwards clip-inner;
}
#catch-circle .circle01 {
  width: 60%;
  height: 60%;
}
#catch-circle .circle02 {
  width: 100%;
  height: 100%;
}

@-webkit-keyframes clip-inner {
  0% {
    opacity: 0;
    clip-path: circle(0% at 50% 50%);
  }
  100% {
    opacity: 1;
    clip-path: circle(100% at 50% 50%);
  }
}

@keyframes clip-inner {
  0% {
    opacity: 0;
    clip-path: circle(0% at 50% 50%);
  }
  100% {
    opacity: 1;
    clip-path: circle(100% at 50% 50%);
  }
}
#catch-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  width: 30%;
  height: 30%;
  z-index: 5;
}
#catch-logo svg {
  width: 100%;
  height: 100%;
}
#catch-logo.on {
  opacity: 1;
}

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

@keyframes topgrad2 {
  0% {
    -webkit-transform: scale(10);
            transform: scale(10);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes topgrad3 {
  0% {
    -webkit-transform: scale(2);
            transform: scale(2);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@keyframes topgrad3 {
  0% {
    -webkit-transform: scale(2);
            transform: scale(2);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes PageAnime {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  40% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.1% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  70% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
@keyframes PageAnime {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  40% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.1% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  70% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
@-webkit-keyframes slideIn {
  0%, 60% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideIn {
  0%, 60% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
#scrolldown {
  position: absolute;
  right: 15px;
  bottom: 60px;
  color: #fefefe;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  font-size: 1.4rem;
  z-index: 100;
  height: 210px;
}
#scrolldown:before, #scrolldown:after {
  position: absolute;
  content: "";
  z-index: 2;
  left: 50%;
}
#scrolldown:before {
  width: 1px;
  height: 100px;
  bottom: 0;
  background: #f0f0f0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
#scrolldown:after {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 100%;
  top: 100px;
  margin-left: -4px;
  -webkit-animation: scroll-point 2.3s ease-out infinite;
          animation: scroll-point 2.3s ease-out infinite;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
@media screen and (max-width: 1025px) {
  #scrolldown {
    display: none;
  }
}

@-webkit-keyframes scroll-point {
  0% {
    bottom: 0;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  50% {
    top: 180px;
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    top: 210px;
    opacity: 0;
  }
}

@keyframes scroll-point {
  0% {
    bottom: 0;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  50% {
    top: 180px;
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    top: 210px;
    opacity: 0;
  }
}
/* contact_bnr
----------------------------------*/
.contact-txt {
  text-align: center;
  margin-top: 10px;
}

.contact_bnr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  margin-bottom: 35px;
}
@media screen and (max-width: 1025px) {
  .contact_bnr {
    margin: 15px auto;
  }
}
.contact_bnr > li {
  width: 300px;
}
@media screen and (max-width: 639px) {
  .contact_bnr > li:first-child {
    margin-right: auto;
  }
}
@media screen and (max-width: 639px) {
  .contact_bnr > li {
    width: 100%;
    margin: 0 auto 10px;
  }
}
.contact_bnr > li .bnr_map i {
  display: inline-block;
  margin-right: 5px;
}
.contact_bnr > li .bnr_map {
  color: #fff;
  width: 280px;
  background: #ff8f4e;
  font-size: 1.6rem;
  padding: 15px 0;
  position: relative;
}
@media screen and (max-width: 639px) {
  .contact_bnr > li .bnr_map {
    font-size: 1.3rem;
  }
}
.contact_bnr > li .bnr_map:after {
  position: absolute;
  content: "";
  right: -25px;
  top: 50%;
  width: 50px;
  height: 1px;
  background: #fff;
  -webkit-transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
}
.contact_bnr > li .bnr_map:hover {
  background: rgba(45, 74, 134, 0.6);
}
.contact_bnr > li .bnr_map:hover:after {
  right: -32px;
}
.contact_bnr > li .bnr_txt p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.contact_bnr > li .bnr_tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}
.contact_bnr > li .bnr_tel .txt {
  padding: 5px 0;
  white-space: nowrap;
  color: #0B87E6;
  font-size: 3.2rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
}
.contact_bnr > li .bnr_tel .txt:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
  font-size: 0.8em;
}
@media screen and (max-width: 639px) {
  .contact_bnr > li .bnr_tel .txt {
    font-size: 2.6rem;
  }
}
.contact_bnr > li .bnr_tel:hover {
  color: #0B87E6;
  background: transparent;
}
@media screen and (max-width: 639px) {
  .contact_bnr > li .bnr_tel {
    font-size: 1.8rem;
  }
}
.contact_bnr > li .bnr_mobile:before {
  font-family: "Font Awesome 5 Free";
  content: "\f3cd";
  font-weight: 900;
}
.contact_bnr > li .bnr_fax {
  background: #fdfdfd;
  color: #0B87E6;
}
.contact_bnr > li .bnr_fax:before {
  font-family: "Font Awesome 5 Free";
  content: "\f1ac";
  font-weight: 900;
}
.contact_bnr > li .bnr_mail {
  padding: 10px 0;
  border: 1px solid #0B87E6;
  border-radius: 40px;
  color: #0B87E6;
  font-size: 1.6rem;
}
.contact_bnr > li .bnr_mail:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
}
.contact_bnr > li .bnr_mail.type1:before {
  font-family: "Font Awesome 5 Free";
  content: "\f15c";
  font-weight: 900;
}
@media screen and (max-width: 639px) {
  .contact_bnr > li .bnr_mail {
    font-size: 1.3rem;
    padding: 10px;
    width: 100%;
  }
}
.contact_bnr > li .bnr_mail:hover {
  background: #a0dbf1;
}
.contact_bnr > li a {
  display: block;
  font-weight: 600;
  text-align: center;
  padding: 12px 10px;
}
.contact_bnr > li a:before {
  margin-right: 5px;
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 639px) {
  .contact_bnr > li a {
    margin: 0 auto;
    white-space: nowrap;
    padding: 5px;
    width: 100%;
  }
}

.contact_bnr2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 1025px) {
  .contact_bnr2 {
    margin: 15px auto;
  }
}
.contact_bnr2 > li {
  width: 300px;
}
.contact_bnr2 > li:first-child {
  margin-right: 40px;
}
@media screen and (max-width: 639px) {
  .contact_bnr2 > li:first-child {
    margin-right: auto;
  }
}
@media screen and (max-width: 639px) {
  .contact_bnr2 > li {
    width: 100%;
    margin: 0 auto 10px;
  }
}
.contact_bnr2 > li .bnr_map i {
  display: inline-block;
  margin-right: 5px;
}
.contact_bnr2 > li .bnr_map {
  color: #0B87E6;
  width: 280px;
  background: #ff8f4e;
  font-size: 1.6rem;
  padding: 15px 0;
  position: relative;
}
@media screen and (max-width: 639px) {
  .contact_bnr2 > li .bnr_map {
    font-size: 1.3rem;
  }
}
.contact_bnr2 > li .bnr_map:after {
  position: absolute;
  content: "";
  right: -25px;
  top: 50%;
  width: 50px;
  height: 1px;
  background: #0B87E6;
  -webkit-transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
}
.contact_bnr2 > li .bnr_map:hover {
  background: rgba(45, 74, 134, 0.6);
}
.contact_bnr2 > li .bnr_map:hover:after {
  right: -32px;
}
.contact_bnr2 > li .bnr_txt p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.contact_bnr2 > li .bnr_tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}
.contact_bnr2 > li .bnr_tel .txt {
  padding: 5px 0;
  white-space: nowrap;
  color: #0B87E6;
  font-size: 3.2rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
}
.contact_bnr2 > li .bnr_tel .txt:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
  font-size: 0.8em;
}
@media screen and (max-width: 639px) {
  .contact_bnr2 > li .bnr_tel .txt {
    font-size: 2.6rem;
  }
}
.contact_bnr2 > li .bnr_tel:hover {
  color: #2D4A86;
  background: transparent;
}
@media screen and (max-width: 639px) {
  .contact_bnr2 > li .bnr_tel {
    font-size: 1.8rem;
  }
}
.contact_bnr2 > li .bnr_mobile:before {
  font-family: "Font Awesome 5 Free";
  content: "\f3cd";
  font-weight: 900;
}
.contact_bnr2 > li .bnr_fax {
  background: #fdfdfd;
  color: #0B87E6;
}
.contact_bnr2 > li .bnr_fax:before {
  font-family: "Font Awesome 5 Free";
  content: "\f1ac";
  font-weight: 900;
}
.contact_bnr2 > li .bnr_mail {
  padding: 10px 0;
  border: 1px solid #0B87E6;
  border-radius: 40px;
  color: #0B87E6;
  font-size: 1.6rem;
}
.contact_bnr2 > li .bnr_mail:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
}
.contact_bnr2 > li .bnr_mail.type1:before {
  font-family: "Font Awesome 5 Free";
  content: "\f15c";
  font-weight: 900;
}
@media screen and (max-width: 639px) {
  .contact_bnr2 > li .bnr_mail {
    font-size: 1.3rem;
    padding: 10px;
    width: 100%;
  }
}
.contact_bnr2 > li .bnr_mail:hover {
  background: #0B87E6;
  color: #fff;
}
.contact_bnr2 > li a {
  display: block;
  font-weight: 600;
  text-align: center;
  padding: 12px 10px;
}
.contact_bnr2 > li a:before {
  margin-right: 5px;
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 639px) {
  .contact_bnr2 > li a {
    margin: 0 auto;
    white-space: nowrap;
    padding: 5px;
    width: 100%;
  }
}

/* footer
----------------------------------*/
.footer-upper-warp {
  position: relative;
  z-index: 4;
}
.footer-upper-warp .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 40px;
}
.footer-upper-warp .upper-left {
  width: 100%;
}
@media screen and (max-width: 639px) {
  .footer-upper-warp .upper-left {
    padding-top: 20px;
    width: 100%;
    padding: 0 20px 10px;
  }
}
.footer-upper-warp .upper-right {
  width: 100%;
}
@media screen and (max-width: 639px) {
  .footer-upper-warp .upper-right {
    width: 100%;
    padding: 0 20px;
    text-align: center;
  }
}
.footer-upper-warp .footer-info {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-right-box .footer-right-child {
  width: 320px;
  margin-right: 20px;
}
@media screen and (max-width: 1101px) {
  .footer-right-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-right: 30px;
  }
}

#l-footer {
  position: relative;
  width: 100%;
  border-top: 1px solid #eeeeee;
}
#l-footer:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0;
  right: 0;
  z-index: -1;
  background-color: #fbfbfb;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  z-index: 2;
  overflow: hidden;
}
@media screen and (max-width: 639px) {
  #l-footer:before {
    background-attachment: initial;
  }
}
#l-footer .inner {
  position: relative;
  padding: 100px 0px 40px;
  z-index: 2;
  max-width: 1500px;
  margin: 0 auto;
}
#l-footer .footer-column {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  z-index: 2;
}
#l-footer .footer-column.type1 {
  margin: 0 auto;
}
#l-footer .footer-column .footer-left {
  width: 100%;
  padding: 0 60px;
}
@media screen and (max-width: 1101px) {
  #l-footer .footer-column .footer-left {
    width: 450px;
  }
}
#l-footer .footer-column .footer-left .list2 {
  text-align: center !important;
}
#l-footer .footer-column .footer-right {
  width: calc(100% - 450px);
  text-align: center;
}
@media screen and (max-width: 1101px) {
  #l-footer .footer-column .footer-right {
    width: calc(100% - 450px);
  }
}
@media screen and (max-width: 1025px) {
  #l-footer .inner {
    padding: 40px 15px;
  }
  #l-footer .footer-column .footer-left {
    width: 100%;
    margin-bottom: 30px;
  }
  #l-footer .footer-column .footer-right {
    width: 100%;
  }
}

.footer-lead {
  margin-bottom: 20px;
}

.footer-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer-wrap .footer-left {
  width: 38%;
}
.footer-wrap .footer-right {
  width: 50%;
}
@media screen and (max-width: 639px) {
  .footer-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer-wrap .footer-left,
  .footer-wrap .footer-right {
    width: 100%;
  }
  .footer-wrap .footer-left {
    margin-bottom: 20px;
    text-align: center;
    margin: 0 auto 20px;
  }
  .footer-wrap .footer-right {
    padding: 0 10px;
  }
}

.map-big {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 20px;
  margin-top: 30px;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

/* footer_navi
----------------------------------*/
.footer_navi {
  margin: 20px auto 0;
}
@media all and (max-width: 896px) {
  .footer_navi {
    display: none;
  }
}
.footer_navi ul {
  margin: 0 auto;
  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;
}
.footer_navi ul li {
  width: 18%;
  margin: 5px 0;
}
.footer_navi ul li a {
  position: relative;
  display: block;
  color: #000;
  line-height: 2;
}
@media all and (max-width: 1100px) {
  .footer_navi ul li a {
    font-size: 1.3rem;
  }
}
.footer_navi ul li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f192";
  font-weight: 900;
  margin-right: 5px;
  color: #0B87E6;
}
.footer_navi ul li a .eng {
  display: none;
}
.footer_navi ul li a:hover {
  opacity: 0.6;
}
.footer_navi ul li .dropdown {
  display: none;
}
.footer_navi ul li .dropdown li {
  width: 100%;
  margin: 0;
}
.footer_navi ul li .dropdown li a {
  position: relative;
  font-size: 1.2rem;
  letter-spacing: 0;
  padding: 4px 0 4px 1.3em;
  line-height: 1.3;
}
.footer_navi ul li .dropdown li a:before {
  position: absolute;
  content: "・";
  margin-right: 5px;
  color: #E9514D;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.footer-title {
  font-weight: 600;
}
.footer-title span {
  background: #000;
  color: #fff;
  padding: 3px 8px;
}

.flogo {
  position: relative;
  display: block;
  width: 400px;
  text-align: center;
  margin: 0 auto 20px;
}
@media screen and (max-width: 639px) {
  .flogo {
    max-width: 260px;
    margin: 0 auto 20px;
  }
}

.address {
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 639px) {
  .address {
    position: relative;
    top: auto;
    font-size: 1.1rem;
    margin: 40px auto;
  }
}

.address-list {
  font-size: 1.4rem;
  line-height: 1.4;
}
.address-list li {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  line-height: 1.6;
  -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
          box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.address-list .address-txt {
  font-size: 1.2rem;
}

.copyright {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  background: #0B87E6;
  color: #fff;
  font-size: 1.2rem;
}
@media screen and (max-width: 1025px) {
  .copyright {
    font-size: 12px;
  }
}

#mouse-stalker {
  pointer-events: none;
  position: fixed;
  top: -15px;
  left: -15px;
  width: 30px;
  height: 30px;
  background: rgba(243, 204, 29, 0.3);
  border-radius: 50%;
  z-index: 201;
  -webkit-filter: blur(6px);
          filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, width 0.3s, height 0.3s, background 0.3s, -webkit-filter 0.3s;
  transition: opacity 0.3s, width 0.3s, height 0.3s, background 0.3s, -webkit-filter 0.3s;
  transition: opacity 0.3s, width 0.3s, height 0.3s, background 0.3s, filter 0.3s;
  transition: opacity 0.3s, width 0.3s, height 0.3s, background 0.3s, filter 0.3s, -webkit-filter 0.3s;
}
#mouse-stalker.is_visible {
  opacity: 1;
  visibility: visible;
}
#mouse-stalker.is_active {
  top: -40px;
  left: -40px;
  width: 80px;
  height: 80px;
  background: rgba(11, 135, 230, 0.3);
  -webkit-filter: blur(12px);
          filter: blur(12px);
}
@media all and (max-width: 896px) {
  #mouse-stalker {
    display: none;
  }
}

/*----------------------------------
 top-contents
----------------------------------*/
.top-service02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top-service02 .img-box {
  width: 48%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top-service02 .img-box .img01 {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  position: relative;
}
.top-service02 .img-box .img01 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 100%;
     object-position: 50% 100%;
  z-index: 1;
}
.top-service02 .img-box .img01 .gara {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30%;
  height: auto;
  z-index: 2;
  pointer-events: none;
  -webkit-animation: bulbGlow 5s ease-in-out infinite;
          animation: bulbGlow 5s ease-in-out infinite;
  opacity: 0;
  will-change: filter, opacity;
}
.top-service02 .img-box .img01 .gara img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 100% 100%;
     object-position: 100% 100%;
  opacity: 0.9;
}
.top-service02 .txt-box {
  width: 48%;
}
@media all and (max-width: 1250px) {
  .top-service02 .img-box .img01 {
    height: 450px;
  }
}
@media screen and (max-width: 1101px) {
  .top-service02 .img-box {
    width: 46%;
  }
  .top-service02 .txt-box {
    width: 50%;
  }
}
@media screen and (max-width: 1025px) {
  .top-service02 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .top-service02 .img-box,
  .top-service02 .txt-box {
    width: 100%;
  }
  .top-service02 .img-box {
    margin-bottom: 25px;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .top-service02 .img-box .img01 {
    height: auto;
    border-radius: 10px;
  }
  .top-service02 .txt-box {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding: 0 5px;
  }
}

@-webkit-keyframes bulbGlow {
  0% {
    opacity: 0;
    -webkit-filter: drop-shadow(0 0 0 rgba(255, 255, 100, 0)) blur(2px);
            filter: drop-shadow(0 0 0 rgba(255, 255, 100, 0)) blur(2px);
  }
  2% {
    opacity: 1;
    -webkit-filter: drop-shadow(0 0 10px rgba(255, 255, 100, 0.8)) blur(0px);
            filter: drop-shadow(0 0 10px rgba(255, 255, 100, 0.8)) blur(0px);
  }
  4% {
    opacity: 0.2;
    -webkit-filter: drop-shadow(0 0 5px rgba(255, 255, 100, 0.3)) blur(1px);
            filter: drop-shadow(0 0 5px rgba(255, 255, 100, 0.3)) blur(1px);
  }
  6% {
    opacity: 1;
    -webkit-filter: drop-shadow(0 0 15px rgb(255, 255, 100)) blur(0px);
            filter: drop-shadow(0 0 15px rgb(255, 255, 100)) blur(0px);
  }
  8% {
    opacity: 0.5;
    -webkit-filter: drop-shadow(0 0 5px rgba(255, 255, 100, 0.4)) blur(1px);
            filter: drop-shadow(0 0 5px rgba(255, 255, 100, 0.4)) blur(1px);
  }
  10% {
    opacity: 1;
    -webkit-filter: drop-shadow(0 0 20px rgb(255, 255, 100)) blur(0px);
            filter: drop-shadow(0 0 20px rgb(255, 255, 100)) blur(0px);
  }
  50% {
    -webkit-filter: drop-shadow(0 0 40px rgb(255, 255, 150)) blur(1px);
            filter: drop-shadow(0 0 40px rgb(255, 255, 150)) blur(1px);
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
  }
  90% {
    -webkit-filter: drop-shadow(0 0 20px rgb(255, 255, 100)) blur(0px);
            filter: drop-shadow(0 0 20px rgb(255, 255, 100)) blur(0px);
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    opacity: 1;
    -webkit-filter: drop-shadow(0 0 20px rgb(255, 255, 100)) blur(0px);
            filter: drop-shadow(0 0 20px rgb(255, 255, 100)) blur(0px);
  }
}

@keyframes bulbGlow {
  0% {
    opacity: 0;
    -webkit-filter: drop-shadow(0 0 0 rgba(255, 255, 100, 0)) blur(2px);
            filter: drop-shadow(0 0 0 rgba(255, 255, 100, 0)) blur(2px);
  }
  2% {
    opacity: 1;
    -webkit-filter: drop-shadow(0 0 10px rgba(255, 255, 100, 0.8)) blur(0px);
            filter: drop-shadow(0 0 10px rgba(255, 255, 100, 0.8)) blur(0px);
  }
  4% {
    opacity: 0.2;
    -webkit-filter: drop-shadow(0 0 5px rgba(255, 255, 100, 0.3)) blur(1px);
            filter: drop-shadow(0 0 5px rgba(255, 255, 100, 0.3)) blur(1px);
  }
  6% {
    opacity: 1;
    -webkit-filter: drop-shadow(0 0 15px rgb(255, 255, 100)) blur(0px);
            filter: drop-shadow(0 0 15px rgb(255, 255, 100)) blur(0px);
  }
  8% {
    opacity: 0.5;
    -webkit-filter: drop-shadow(0 0 5px rgba(255, 255, 100, 0.4)) blur(1px);
            filter: drop-shadow(0 0 5px rgba(255, 255, 100, 0.4)) blur(1px);
  }
  10% {
    opacity: 1;
    -webkit-filter: drop-shadow(0 0 20px rgb(255, 255, 100)) blur(0px);
            filter: drop-shadow(0 0 20px rgb(255, 255, 100)) blur(0px);
  }
  50% {
    -webkit-filter: drop-shadow(0 0 40px rgb(255, 255, 150)) blur(1px);
            filter: drop-shadow(0 0 40px rgb(255, 255, 150)) blur(1px);
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
  }
  90% {
    -webkit-filter: drop-shadow(0 0 20px rgb(255, 255, 100)) blur(0px);
            filter: drop-shadow(0 0 20px rgb(255, 255, 100)) blur(0px);
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    opacity: 1;
    -webkit-filter: drop-shadow(0 0 20px rgb(255, 255, 100)) blur(0px);
            filter: drop-shadow(0 0 20px rgb(255, 255, 100)) blur(0px);
  }
}
.top-sec1 {
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.top-sec1:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(177, 219, 237, 0.6)), to(rgba(168, 209, 233, 0)));
  background-image: linear-gradient(180deg, rgba(177, 219, 237, 0.6) 0%, rgba(168, 209, 233, 0) 100%);
}
@media screen and (max-width: 639px) {
  .top-sec1 {
    padding-top: 30px;
  }
}

.top-title01 {
  margin-bottom: 40px;
  text-align: center;
  font-size: 2.8rem;
}
.top-title01 em {
  font-size: 1.1em;
  color: #0B87E6;
}
@media screen and (max-width: 639px) {
  .top-title01 {
    font-size: 1.6rem;
  }
}

.top-box1 {
  width: 55%;
  margin-left: auto;
}
@media screen and (max-width: 1025px) {
  .top-box1 {
    width: 80%;
    margin: 350px auto 0;
    padding: 25px;
    background: rgba(255, 255, 255, 0.8);
  }
}
@media screen and (max-width: 639px) {
  .top-box1 {
    width: 95%;
    margin-top: 200px;
    padding: 15px;
  }
}

/* --news--
----------------------------------*/
.news-box {
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1025px) {
  .news-box {
    margin-top: 0;
  }
}
@media screen and (max-width: 639px) {
  .news-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px 10px;
  }
}

.news-left {
  position: absolute;
  left: 0;
  top: -40px;
}
@media screen and (max-width: 639px) {
  .news-left {
    top: 0;
    position: relative;
  }
}

.news-title {
  text-align: center;
  position: relative;
}
.news-title span {
  display: block;
}
.news-title .eng {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  color: #0B87E6;
  position: relative;
  font-size: 3rem;
}
.news-title .ja {
  font-size: 1.5rem;
  position: relative;
  font-weight: 600;
}
@media screen and (max-width: 639px) {
  .news-title {
    margin-bottom: 30px;
  }
  .news-title .eng {
    font-size: 2.4rem;
  }
  .news-title .ja {
    font-size: 1.4rem;
  }
}

.news-right {
  width: 75%;
  margin-left: auto;
}
@media screen and (max-width: 639px) {
  .news-right {
    width: 100%;
    margin: 10px 0 0;
  }
}

.map-link {
  font-weight: 600;
  color: #0B87E6;
  border-bottom: 1px solid #0B87E6;
}
.map-link:before {
  font-family: "Font Awesome 5 Free";
  content: "\f3c5";
  font-weight: 900;
  margin-right: 5px;
}

/* contents
----------------------------------*/
.single {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 0;
  position: relative;
}
@media screen and (max-width: 1440px) {
  .single {
    padding: 100px 10px;
  }
}
.single.type1 {
  padding: 100px 0 0;
}

.single02 {
  width: 92%;
  margin: 0 auto;
  padding: 100px 0;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1101px) {
  .single02 {
    padding: 100px 10px;
  }
}

.single03 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 0;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1440px) {
  .single03 {
    padding: 100px 10px;
  }
}
.single03.type1 {
  padding: 100px 0 0;
}

.single04 {
  margin: 0 auto;
  padding: 0;
  position: relative;
  z-index: 2;
}

.margin-top {
  margin-top: -100px;
}
@media screen and (max-width: 639px) {
  .margin-top {
    margin-top: -30px;
  }
}

.lsingle,
.rsingle {
  width: 48.44%;
}

.lsingle {
  float: left;
}

.rsingle {
  float: right;
}

.mbox {
  background: #fefefe;
  padding: 35px 30px;
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
.mbox.type1 {
  border: 3px solid #0B87E6;
}
.mbox.shadow {
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 18px 50px -10px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 18px 50px -10px;
}
.mbox.transparent {
  background: transparent;
}
@media screen and (max-width: 639px) {
  .mbox {
    padding: 15px 10px;
  }
}

.mbox2 {
  border: 8px solid rgba(255, 143, 78, 0.7);
  padding: 35px 30px;
  background-color: #fff;
}
@media screen and (max-width: 639px) {
  .mbox2 {
    padding: 15px;
  }
}
.mbox2.type1 {
  background: #fffaf4;
}

.mbox3 {
  background: #fefefe;
  padding: 35px 30px;
  position: relative;
  z-index: 3;
  max-width: 90%;
  margin-right: auto;
  margin-left: auto;
}
.mbox3.type1 {
  border: 3px solid #0B87E6;
}
.mbox3.shadow {
  -webkit-box-shadow: rgba(41, 33, 28, 0.1) 0px 18px 50px -10px;
          box-shadow: rgba(41, 33, 28, 0.1) 0px 18px 50px -10px;
}
.mbox3.transparent {
  background: transparent;
}
@media screen and (max-width: 639px) {
  .mbox3 {
    padding: 15px 10px;
  }
}

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

.sentence p + p {
  margin-top: 20px;
}
.sentence.type_mb {
  letter-spacing: 0;
  font-size: 1.5rem;
}
@media screen and (max-width: 639px) {
  .sentence.type_mb {
    font-size: 1.1rem;
  }
}
.sentence.type_mb p {
  margin-bottom: 30px;
}

.inner-content {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.bg-grid {
  background: rgba(255, 255, 255, 0.9);
  /* border-top: 1px solid #555;
  border-bottom: 1px solid #555;*/
  background-image: -webkit-gradient(linear, left top, right top, color-stop(95%, transparent), color-stop(50%, rgba(221, 221, 221, 0.2)), to(rgba(221, 221, 221, 0.2))), -webkit-gradient(linear, left bottom, left top, color-stop(95%, transparent), color-stop(50%, rgba(221, 221, 221, 0.2)), to(rgba(221, 221, 221, 0.2)));
  background-image: linear-gradient(90deg, transparent 95%, rgba(221, 221, 221, 0.2) 50%, rgba(221, 221, 221, 0.2)), linear-gradient(0deg, transparent 95%, rgba(221, 221, 221, 0.2) 50%, rgba(221, 221, 221, 0.2));
  background-size: 20px 20px;
  background-repeat: repeat;
}

.bg-gara {
  position: relative;
  overflow: hidden;
}

.bg-gara::before {
  position: absolute;
  content: "";
  width: 250px;
  height: 275px;
  top: 0;
  left: 0;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27711/bg-gara01.webp) no-repeat;
  background-size: contain;
  z-index: -1;
}

.bg-gara::after {
  position: absolute;
  content: "";
  width: 495px;
  height: 350px;
  bottom: 0px;
  right: -115px;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27711/bg-gara02.webp) no-repeat;
  background-size: contain;
  z-index: -1;
}
@media screen and (max-width: 1025px) {
  .bg-gara::after {
    bottom: -58px;
    right: 0px;
  }
}

@media screen and (max-width: 1025px) {
  .bg-gara::before,
  .bg-gara::after {
    width: 200px;
    height: 200px;
  }
}
.bg-gara2 {
  position: relative;
}
.bg-gara2::before {
  position: absolute;
  content: "";
  width: 350px;
  height: 400px;
  top: -50px;
  left: 0;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26436/asirai.png) no-repeat;
  background-size: cover;
  z-index: -1;
}
@media screen and (max-width: 639px) {
  .bg-gara2::before {
    width: 143px;
    height: 167px;
    top: -35px;
  }
}

@media all and (max-width: 896px) {
  .bg-gara2::before,
  .bg-gara2::after {
    width: 200px;
    height: 200px;
  }
}
.bg-map {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.bg-map:before {
  position: absolute;
  content: "";
  width: 80%;
  height: 140%;
  right: 0;
  top: -20%;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26436/map.png) no-repeat right 50%/contain;
}
@media screen and (max-width: 639px) {
  .bg-map:before {
    width: 90%;
  }
}

.bg-wall {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26436/bg-wall.jpg);
}

.bg-wave {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26436/bg-wave.jpg);
}

#main {
  float: left;
  width: 76%;
}
#main .mbox {
  min-height: 300px;
}
@media screen and (max-width: 1025px) {
  #main .mbox {
    min-height: initial;
  }
}
@media screen and (max-width: 1025px) {
  #main {
    float: none;
    width: 100%;
  }
}

#side {
  float: right;
  position: sticky;
  right: 0;
  top: 0;
  width: 21%;
  padding-right: 10px;
}
@media screen and (max-width: 1025px) {
  #side {
    float: none;
    width: 100%;
    position: static;
    margin-top: 40px;
  }
}

/* mtitle
----------------------------------*/
.mtitle {
  margin: 0 auto 35px;
  text-align: center;
  position: relative;
  z-index: 3;
}
.mtitle:before {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  content: attr(data-title);
  margin-inline: auto;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 800;
  font-style: normal;
  text-transform: uppercase;
  font-size: 7rem;
  text-align: center;
  color: #0B87E6;
  line-height: 1.2;
  color: transparent;
  background-image: linear-gradient(60deg, #0B87E6 0%, #90E0B7 100%);
  -webkit-background-clip: text;
}
@media screen and (max-width: 639px) {
  .mtitle:before {
    font-size: 2.6rem;
  }
}
.mtitle .eng {
  display: block;
  font-size: 6rem;
  line-height: 1.4;
  text-align: center;
  color: #0B87E6;
  font-family: "Roboto Condensed", sans-serif;
  color: transparent;
  background-image: linear-gradient(60deg, #0B87E6 0%, #90E0B7 100%);
  -webkit-background-clip: text;
}
.mtitle .eng:first-letter {
  color: #ff8f4e;
}
.mtitle .ja {
  font-size: 2.8rem;
}
.mtitle .eng_big {
  position: relative;
  z-index: -1;
  font-size: 16rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  display: block;
  color: #133beb;
  opacity: 0.1;
  line-height: 1;
  margin-top: -80px;
  white-space: nowrap;
}
.mtitle.white {
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}
.mtitle.white:before {
  color: #fff;
}
.mtitle.white span {
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}
.mtitle.white span:after {
  background-color: #eee;
}
.mtitle.mtitle_left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}
.mtitle.mtitle_left:before {
  text-align: left;
  margin-left: 0;
}
.mtitle.mtitle_left .eng {
  text-align: left;
}
.mtitle.mtitle_right {
  text-align: right;
  margin-left: auto;
  margin-right: 0;
}
@media screen and (max-width: 1101px) {
  .mtitle {
    text-align: center;
    margin-bottom: 20px;
  }
  .mtitle .eng {
    font-size: 5rem;
  }
  .mtitle .ja {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 639px) {
  .mtitle {
    text-align: center;
    margin-bottom: 20px;
  }
  .mtitle .eng {
    font-size: 3.3rem;
  }
  .mtitle .ja {
    font-size: 2rem;
  }
  .mtitle .eng_big {
    font-size: 6rem;
    margin-top: -30px;
  }
}

.mtitle1 {
  margin: 0 auto 40px;
  text-align: center;
  position: relative;
  z-index: 3;
}
.mtitle1 .ja {
  font-size: 3rem;
  display: block;
  padding-left: 0.2em;
}
.mtitle1 .eng {
  font-size: 4rem;
  position: relative;
  color: transparent;
  background-image: linear-gradient(60deg, #0B87E6 0%, #ff8f4e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mtitle1 .eng_big {
  position: relative;
  z-index: -1;
  font-size: 16rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  display: block;
  color: #133beb;
  opacity: 0.1;
  line-height: 1;
  margin-top: -80px;
  white-space: nowrap;
}
.mtitle1.white .ja {
  color: #fff;
}
.mtitle1.white .eng {
  color: #fff;
  background: none;
  -webkit-text-fill-color: unset;
}
.mtitle1.white:before {
  color: #fff;
}
.mtitle1.mtitle_left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}
.mtitle1.mtitle_left .eng::before {
  position: absolute;
  right: -48px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: #133beb;
}
.mtitle1.mtitle_left:before {
  left: 0;
  -webkit-transform: none;
          transform: none;
}
.mtitle1.mtitle_right {
  text-align: right;
  margin-left: auto;
  margin-right: 0;
}
@media screen and (max-width: 1025px) {
  .mtitle1:before {
    font-size: 2rem;
  }
}
@media screen and (max-width: 639px) {
  .mtitle1 {
    text-align: center;
    margin: 0 auto 20px;
  }
  .mtitle1 .eng {
    font-size: 2rem;
  }
  .mtitle1 .ja {
    font-size: 1.8rem;
  }
  .mtitle1 .eng_big {
    font-size: 6rem;
    margin-top: -30px;
  }
}

.mtitle2 {
  position: relative;
  margin-bottom: 30px;
  padding-left: 16px;
  border-left: 3px solid #ff8f4e;
}
.mtitle2:before {
  content: attr(data-title);
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #90E0B7;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  line-height: 1.2;
  font-size: 3rem;
}
.mtitle2 .ja {
  font-weight: 600;
  font-size: 1.3em;
  text-align: left;
}
@media screen and (max-width: 639px) {
  .mtitle2:before {
    font-size: 2.2rem;
  }
}
.mtitle2.center {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  text-align: left;
}
@media screen and (max-width: 639px) {
  .mtitle2 {
    margin-bottom: 20px;
  }
}

.mtitle3 {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  position: absolute;
  min-height: 100px;
  top: 40px;
  left: 30px;
}
.mtitle3 .ja {
  display: block;
  font-size: 2.6rem;
  border-right: 2px solid #0B87E6;
  letter-spacing: 0.2em;
  padding-right: 5px;
  font-weight: 400;
}
.mtitle3 .eng {
  display: block;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  font-size: 1.8rem;
  color: #0B87E6;
  padding-left: 3px;
}
@media screen and (max-width: 639px) {
  .mtitle3 {
    left: 10px;
    top: 15px;
  }
  .mtitle3 .ja {
    font-size: 1.6rem;
  }
  .mtitle3 .eng {
    font-size: 1.3rem;
  }
}

.mtitle_line {
  font-size: 1.8rem;
  padding-bottom: 20px;
  position: relative;
  font-weight: 600;
  margin-bottom: 25px;
  color: #0B87E6;
  letter-spacing: 0.2rem;
}
.mtitle_line span {
  display: block;
  font-size: 1.4rem;
  color: #0B87E6;
}
.mtitle_line:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  content: "";
  opacity: 0.6;
  background-image: repeating-linear-gradient(-45deg, #2D4A86, #aaa 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media screen and (max-width: 639px) {
  .mtitle_line {
    font-size: 1.4rem;
  }
  .mtitle_line span {
    font-size: 1.2rem;
  }
}

.mtitle_balloon {
  position: relative;
  display: inline-block;
  margin: 1.5em 0;
  padding: 20px 20px;
  min-width: 800px;
  max-width: 100%;
  color: #555;
  font-size: 16px;
  background: #fff;
  border: solid 3px #999;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.mtitle_balloon:before {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 50%;
  margin-left: -15px;
  border: 12px solid transparent;
  border-top: 12px solid #fff;
  z-index: 2;
}
.mtitle_balloon:after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  margin-left: -17px;
  border: 14px solid transparent;
  border-top: 14px solid #999;
  z-index: 1;
}
.mtitle_balloon p {
  margin: 0;
  padding: 0;
}

.mtitle4 {
  text-align: center;
  color: #0B87E6;
  line-height: 1.5;
  letter-spacing: 0.1rem;
  font-size: 1.8rem;
}
.mtitle4 span {
  position: relative;
  display: inline-block;
  min-width: 10%;
}
.mtitle4 span:before, .mtitle4 span:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1px;
  height: 2rem;
  background-color: #0B87E6;
}
.mtitle4 span:before {
  left: -11px;
  -webkit-transform: rotate(-20deg);
  transform: rotate(-20deg);
}
.mtitle4 span:after {
  right: -11px;
  -webkit-transform: rotate(20deg);
  transform: rotate(20deg);
}
.mtitle4.white span:before, .mtitle4.white span:after {
  background-color: #F3CC1D;
}
@media screen and (max-width: 639px) {
  .mtitle4 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 320px) {
  .mtitle4 span:before {
    left: -3px;
  }
  .mtitle4 span:after {
    right: -3px;
  }
}

.mtitle5 {
  position: relative;
  margin-bottom: 10px;
}
.mtitle5 span {
  position: relative;
  z-index: 2;
  padding: 0 15px 8px;
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
  font-size: 1.35em;
  line-height: 1.4;
  color: #0B87E6;
  display: inline-block;
}
.mtitle5 span.eng {
  font-size: 2em;
}
.mtitle5:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 85%;
  height: 60%;
  background: #a0dbf1;
  opacity: 0.3;
}
@media screen and (max-width: 639px) {
  .mtitle5 {
    margin-bottom: 10px;
  }
  .mtitle5 span.eng {
    font-size: 1.2em;
  }
  .mtitle5:before {
    width: 100%;
  }
}

.mtitle6 {
  margin-bottom: 20px;
  text-align: center;
}
.mtitle6 .eng {
  display: inline-block;
  vertical-align: top;
  position: relative;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  text-transform: uppercase;
  font-size: 52px;
  line-height: 1;
  letter-spacing: 3.1px;
  margin-bottom: 16px;
}
.mtitle6 .ja {
  display: block;
  letter-spacing: 0.95px;
}

.title-middle {
  position: relative;
  margin-bottom: 50px;
  line-height: 1;
  font-size: 2.8rem;
}
.title-middle b {
  font-size: 2rem;
}
@media screen and (max-width: 1025px) {
  .title-middle {
    margin-bottom: 50px;
    font-size: 1.8rem;
  }
}

.js-marker {
  line-height: 2;
}
.js-marker.type1 span {
  padding: 10px 15px;
  color: #fff;
  background-image: -webkit-gradient(linear, left top, right top, from(#0B87E6), to(#0B87E6));
  background-image: linear-gradient(90deg, #0B87E6, #0B87E6);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0 100%;
  -webkit-transition: all 2s ease;
  transition: all 2s ease;
}
.js-marker.type1.on span {
  background-size: 100% 100%;
}
.js-marker span {
  color: rgb(71.3043478261, 57.3913043478, 48.6956521739);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(11, 135, 230, 0.2)), to(rgba(11, 135, 230, 0.2)));
  background-image: linear-gradient(90deg, rgba(11, 135, 230, 0.2), rgba(11, 135, 230, 0.2));
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0 35%;
  -webkit-transition: all 4s ease-in-out;
  transition: all 4s ease-in-out;
}
.js-marker.on span {
  background-size: 100% 35%;
}

.mtitle_sub {
  padding: 15px 0;
  font-weight: 600;
  position: relative;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  border-left: none;
  margin: 20px 0 30px;
  font-size: 1.2em;
  line-height: 1.4;
  text-align: left;
}
.mtitle_sub:before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 30px;
  height: 3px;
  background: #0B87E6;
}

.mtitle_box {
  background-image: -webkit-gradient(linear, right top, left top, from(#95d6ea), to(#0B87E6));
  background-image: linear-gradient(to left, #95d6ea, #0B87E6);
  font-size: 2.2rem;
  position: relative;
  padding: 20px 15px;
  margin-bottom: 25px;
  font-weight: 600;
  color: #fff;
}
.mtitle_box a {
  color: #fff;
}
.mtitle_box .num {
  display: inline-block;
  margin-right: 8px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  font-size: 2.2rem;
  color: #0B87E6;
}
.mtitle_box:before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f30a";
  font-weight: 900;
  display: block;
  right: -1px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #fff;
}
@media screen and (max-width: 639px) {
  .mtitle_box {
    font-size: 1.7rem;
  }
}
.mtitle_box.type1 {
  background: #133beb;
}
.mtitle_box.type2 {
  background: #224796;
}

.mtitle_box2 {
  background: #0B87E6;
  font-size: 2rem;
  color: #fff;
  position: relative;
  font-weight: 600;
  overflow: hidden;
  letter-spacing: 0.1rem;
  padding: 10px 10px 10px 20px;
  margin-bottom: 25px;
}
.mtitle_box2 .small-cap {
  font-weight: normal;
  font-size: 14px;
}
.mtitle_box2:before {
  background-color: #fefefe;
  content: "";
  display: block;
  -webkit-transform: rotate(60deg);
          transform: rotate(60deg);
  position: absolute;
  bottom: -10px;
  right: -150px;
  width: 300px;
  height: 280px;
}
@media screen and (max-width: 639px) {
  .mtitle_box2 {
    font-size: 1.3rem;
    line-height: 1.5;
    padding: 10px 10px 10px 15px;
    padding-right: 40px;
  }
  .mtitle_box2 span {
    font-size: 12px;
  }
  .mtitle_box2:before {
    width: 215px;
    right: -170px;
  }
}

.mtext0 {
  font-size: 1.8rem;
  line-height: 1.6;
}
@media screen and (max-width: 639px) {
  .mtext0 {
    font-size: 1.6rem;
  }
}

.mtext1 {
  font-size: 2.3rem;
  line-height: 1.6;
}
@media screen and (max-width: 1101px) {
  .mtext1 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 639px) {
  .mtext1 {
    font-size: 1.5rem;
  }
}

.mtext2 {
  font-size: 3.8rem;
  line-height: 1.6;
}
@media screen and (max-width: 1101px) {
  .mtext2 {
    font-size: 3rem;
  }
}
@media screen and (max-width: 639px) {
  .mtext2 {
    font-size: 1.8rem;
    padding: 4px 8px;
  }
}

.mtext3 {
  font-size: 1.8rem;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 639px) {
  .mtext3 {
    font-size: 1.4rem;
  }
}

.mtitle_category {
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
}
.mtitle_category:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0ca";
  font-weight: 900;
  margin-right: 5px;
  color: #0B87E6;
}

/* btn
----------------------------------*/
.btns {
  margin-top: 30px;
}
.btns a {
  display: table;
  width: auto;
  margin-left: auto;
  margin-right: auto;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #020e70;
  background: transparent;
  border: 1px solid #020e70;
  padding: 6px 25px;
  border-radius: 20px;
  font-size: 1.7rem;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btns a:hover {
  background: #020e70;
  color: #ffffff;
}
.btns a::after {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  margin-left: 5px;
}

.btn01 a {
  background: #fff;
  text-align: center;
  width: 300px;
  margin: 15px auto;
  color: #0B87E6;
  border: 1px solid #0B87E6;
  display: block;
  padding: 8px 5px;
  font-weight: 600;
  border-radius: 35px;
  max-width: 90%;
}
.btn01 a:hover {
  background: #0B87E6;
  color: #fefefe;
}
.btn01.mail {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
.btn01.mail a {
  background: #F3CC1D;
  margin: 15px auto 25px;
}
.btn01.mail a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 5px;
}
@media screen and (max-width: 639px) {
  .btn01 a {
    width: 95%;
  }
}

.btn02 {
  margin: 1rem 0;
}
.btn02 a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #29211c;
}
.btn02 a .arw_wrap {
  position: relative;
  width: 40px;
  height: 40px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.btn02 a .arw_wrap span {
  position: absolute;
  color: #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  z-index: 2;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.btn02 a .arw_wrap .arw_bg {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #133beb;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  z-index: 1;
}
.btn02 a .btn_txt {
  margin-left: 10px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  font-weight: bold;
}
.btn02 a:hover .arw_bg {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.btn03 a {
  display: block;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 25px;
  border-radius: 50px;
  color: #0B87E6;
  border: 2px solid #0B87E6;
  width: 100%;
  max-width: 245px;
  text-align: center;
}
.btn03 a:hover {
  background: #0B87E6;
  color: #fff;
}
.btn03 a:after {
  font-family: "Font Awesome 5 Free";
  content: "\f101";
  font-weight: 900;
  margin-left: 8px;
}
@media screen and (max-width: 639px) {
  .btn03 a {
    font-size: 0.9em;
    border: 1px solid #0B87E6;
    margin: 0 auto;
  }
}

/* news
----------------------------------*/
.news .news-inner {
  padding: 15px 0;
  border-top: 1px solid rgba(41, 33, 28, 0.2);
  font-size: 1.4rem;
  font-weight: 600;
}
.news .news-inner:last-of-type {
  border-bottom: 1px solid #cfd4d5;
}
@media screen and (max-width: 639px) {
  .news .news-inner {
    font-size: 13px;
    padding: 10px 4px;
  }
}
.news dt {
  color: #0B87E6;
}
.news dt .category {
  font-size: 13px;
  background: #133beb;
  color: #fff;
  padding: 2px 4px;
  margin-left: 8px;
  font-weight: 400;
}
@media screen and (max-width: 639px) {
  .news dt {
    width: 100%;
  }
  .news dt .category {
    font-size: 12px;
  }
}
.news dd {
  margin-left: 8px;
}
.news dd a {
  color: #222;
  background-image: -webkit-gradient(linear, left top, right top, from(#0B87E6), to(#F3CC1D));
  background-image: linear-gradient(to right, #0B87E6, #F3CC1D);
  padding-bottom: 0.25em;
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  -webkit-transition: background-size 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: background-size 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-weight: 600;
}
.news dd a:hover {
  background-position: 0 100%;
  background-size: 100% 1px;
}
@media screen and (max-width: 639px) {
  .news dd {
    width: 100%;
    margin: 5px 0 0;
  }
}

.news-bl {
  overflow: hidden;
}
.news-bl .news-bl-inner {
  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;
  padding: 10px 8px 10px;
  border-bottom: 1px solid rgba(158, 158, 158, 0.4);
}
.news-bl .news-bl-inner:not(:last-of-type) {
  margin-bottom: 5px;
  border-bottom: 0.9px solid rgba(41, 33, 28, 0.2);
}
.news-bl dt {
  position: relative;
  width: 7em;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.3;
}
.news-bl dt .year {
  font-size: 12px;
  color: #c5a54d;
}
.news-bl dt .md {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  color: rgb(8.6721991701, 106.4315352697, 181.3278008299);
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
}
@media screen and (max-width: 639px) {
  .news-bl dt {
    width: 4.5em;
    font-size: 12px;
  }
  .news-bl dt .md {
    font-size: 1.3rem;
  }
}
.news-bl dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 30px;
  line-height: 1.6;
  font-size: 1.4rem;
}
@media screen and (max-width: 639px) {
  .news-bl dd {
    margin-left: 20px;
    font-size: 13px;
  }
}

/* page-title
----------------------------------*/
.link-list2 {
  position: absolute;
  left: 10%;
  bottom: 5%;
  z-index: 100;
}
@media screen and (max-width: 1101px) {
  .link-list2 {
    left: 3%;
    top: 20%;
  }
}
@media screen and (max-width: 639px) {
  .link-list2 {
    top: 8%;
  }
}
@media screen and (max-width: 1101px) {
  .link-list2 .list-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
  }
}
@media screen and (max-width: 639px) {
  .link-list2 .list-inner {
    width: 95%;
    margin-inline: auto;
  }
}
.link-list2 .list-inner .btn_case {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 25px;
}
@media screen and (max-width: 639px) {
  .link-list2 .list-inner .btn_case {
    width: 100%;
    margin-bottom: 6px;
  }
}
.link-list2 .list-inner .btn_case .txt {
  display: block;
  position: relative;
  width: 380px;
  max-width: 100%;
  padding: 4px 20px;
  font-size: 1.8rem;
  text-align: left;
  color: #111;
  font-weight: 600;
  background: #fff;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.06);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.06);
}
@media screen and (max-width: 1025px) {
  .link-list2 .list-inner .btn_case .txt {
    width: 320px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 639px) {
  .link-list2 .list-inner .btn_case .txt {
    font-size: 0.9rem;
    width: 55%;
    padding: 5px 10px;
  }
}
.link-list2 .list-inner .btn_case .txt .bg {
  position: absolute;
  left: 11px;
  top: 11px;
  width: 100%;
  height: 100%;
  background: rgba(19, 59, 235, 0.15);
  border-radius: 4px;
  z-index: -1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 639px) {
  .link-list2 .list-inner .btn_case .txt .bg {
    left: -5px;
    top: -5px;
  }
}
.link-list2 .list-inner .btn_case .txt span {
  border-right: 2px solid #0B87E6;
  padding-right: 12px;
  margin-right: 12px;
  display: inline-block;
}
@media screen and (max-width: 639px) {
  .link-list2 .list-inner .btn_case .txt span {
    padding-right: 4px;
    margin-right: 4px;
  }
}
.link-list2 .list-inner .btn_case:hover .txt {
  color: #133beb;
}
.link-list2 .list-inner .btn_case:hover .txt .bg {
  left: 0;
  top: 0;
  z-index: -1;
  background: rgba(19, 59, 235, 0);
}
.link-list2.type-flex .list-inner {
  width: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
@media screen and (max-width: 1440px) {
  .link-list2.type-flex .list-inner {
    width: 80%;
  }
}

/* page-title
----------------------------------*/
.page-title {
  position: relative;
  z-index: 3;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27711/page-title.webp) no-repeat center 70%/cover;
}
.page-title:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, right top, left top, from(#fefefe), color-stop(51.87%, #2D4A86), color-stop(104.78%, #ff8f4e));
  background-image: linear-gradient(270deg, #fefefe 0%, #2D4A86 51.87%, #ff8f4e 104.78%);
  opacity: 0.4;
  z-index: -1;
  mix-blend-mode: multiply;
}
.page-title.type1 {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26436/page-title02.jpg) no-repeat center 50%/cover;
}
.page-title.type2 {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26436/page-title03.jpg) no-repeat center 50%/cover;
}
.page-title.type3 {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26436/page-title04.jpg) no-repeat center 50%/cover;
}
.page-title .inner {
  margin: 0 auto;
  height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  max-width: 1200px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1101px) {
  .page-title .inner {
    padding: 0 20px;
    height: 480px;
  }
}
@media screen and (max-width: 639px) {
  .page-title .inner {
    height: 75vw;
  }
}
.page-title .inner .page-lead {
  font-size: 2rem;
  position: relative;
  padding-bottom: 60px;
  text-align: right;
}
.page-title .inner .page-lead.on .eng {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}
.page-title .inner .page-lead.on .ja {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.page-title .inner .page-lead .eng {
  display: block;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  font-size: 5rem;
  color: #fff;
  line-height: 1;
  opacity: 0;
  -webkit-transform: translateX(-20%);
          transform: translateX(-20%);
  -webkit-transition: 0.5s all cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: 0.5s all cubic-bezier(0.55, 0.05, 0.22, 0.99);
}
.page-title .inner .page-lead .ja {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  position: relative;
  z-index: 4;
  -webkit-transition: 0.5s all cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: 0.5s all cubic-bezier(0.55, 0.05, 0.22, 0.99);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
  display: inline-block;
  color: #fff;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 639px) {
  .page-title .inner .page-lead {
    font-size: 1.6rem;
    padding-bottom: 20px;
  }
  .page-title .inner .page-lead .eng {
    font-size: 3.8rem;
  }
}

.bg-gradient {
  position: relative;
}
.bg-gradient:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #FFFFFF), to(#BDE7FF));
  background-image: linear-gradient(180deg, #FFFFFF 50%, #BDE7FF 100%);
}

.bg-nami {
  position: relative;
}
.bg-nami:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26436/bg-nami.png) repeat 50% bottom/50%;
  opacity: 0.5;
}
@media screen and (max-width: 639px) {
  .bg-nami:before {
    background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26436/bg-nami.png) repeat 50% bottom/100%;
  }
}

.bg-00 {
  position: relative;
  padding: 60px 0;
  z-index: 10;
}
.bg-00:before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27711/bg_greeting.webp) no-repeat center 70%/cover;
  z-index: -2;
  mask-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(30%, rgba(0, 0, 0, 0)), color-stop(50%, black), color-stop(70%, black), to(rgba(0, 0, 0, 0)));
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 30%, black 50%, black 70%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(30%, rgba(0, 0, 0, 0)), color-stop(50%, black), color-stop(70%, black), to(rgba(0, 0, 0, 0)));
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 30%, black 50%, black 70%, rgba(0, 0, 0, 0) 100%);
}

.sec2 {
  position: relative;
}
@media screen and (max-width: 1025px) {
  .sec2 {
    padding-left: 0;
  }
}
@media screen and (max-width: 639px) {
  .sec2 {
    padding-top: 0;
  }
}

.sec2-inner {
  position: relative;
  text-align: center;
  max-width: 1500px;
  margin: 0 auto;
  padding: 20px 0 20px;
}
@media screen and (max-width: 1101px) {
  .sec2-inner {
    padding: 30px 0;
  }
}
@media screen and (max-width: 1025px) {
  .sec2-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .sec2-inner::before {
    opacity: 0.8;
  }
}
@media screen and (max-width: 639px) {
  .sec2-inner {
    padding: 0;
  }
  .sec2-inner .sec2-img {
    height: 220px;
    padding: 0 10px;
  }
}

.sec2-box {
  max-width: 650px;
  margin: 0 auto;
  line-height: 2;
  color: #fff;
  font-weight: bold;
  font-size: 1.1em;
}
.sec2-box .sentence {
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 1025px) {
  .sec2-box {
    width: 100%;
    padding: 80px 20px 20px;
  }
  .sec2-box .sentence {
    max-width: 600px;
  }
}
@media screen and (max-width: 639px) {
  .sec2-box {
    padding: 25px 10px;
  }
}

.bg-01 {
  position: relative;
  padding: 50px 0;
  clip-path: polygon(60% 70px, 60% 0, 100% 0, 100% 100%, 60% 100%, 60% calc(100% - 70px), 0 calc(100% - 70px), 0 70px);
}
.bg-01 .inner {
  position: relative;
}
.bg-01:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #0B87E6;
}
@media screen and (max-width: 1025px) {
  .bg-01 {
    padding-top: 70px;
  }
}
@media screen and (max-width: 639px) {
  .bg-01 {
    clip-path: polygon(60% 50px, 60% 0, 100% 0, 100% 100%, 60% 100%, 60% calc(100% - 50px), 0 calc(100% - 50px), 0 50px);
  }
}

.bg-sec2 {
  position: relative;
}
.bg-sec2:before, .bg-sec2:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.bg-sec2:before {
  background: #0F2846;
}
.bg-sec2:after {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27711/bg_content.webp) no-repeat center/cover;
  background-attachment: fixed;
  opacity: 0.4;
}
@media screen and (max-width: 639px) {
  .bg-sec2:after {
    background-attachment: scroll;
  }
}

.bg-sec2-inner {
  position: relative;
  margin-top: -80px;
}
@media screen and (max-width: 639px) {
  .bg-sec2-inner {
    margin-top: -50px;
  }
}

.bg-02 {
  position: relative;
}
.bg-02:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(40%, transparent), color-stop(50%, rgba(247, 244, 234, 0.4)), to(#f7f4ea));
  background-image: linear-gradient(to bottom, transparent 0%, transparent 40%, rgba(247, 244, 234, 0.4) 50%, #f7f4ea 100%);
}
.bg-02.type_gray:before {
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(40%, transparent), color-stop(50%, rgba(219, 219, 219, 0.4)), to(rgba(219, 219, 219, 0.8)));
  background-image: linear-gradient(to bottom, transparent 0%, transparent 40%, rgba(219, 219, 219, 0.4) 50%, rgba(219, 219, 219, 0.8) 100%);
}
.bg-02.type_gray:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26436/zara.png);
  z-index: -1;
}

.bg-pattern {
  position: relative;
}
.bg-pattern:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26436/bg-pattern.jpg);
  background-size: 1000px;
  opacity: 0.7;
}

.bg-base {
  position: relative;
}
.bg-base:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(160, 219, 241, 0.1)), color-stop(50%, rgba(55.6057692308, 100.5384615385, 236.5576923077, 0.17)), color-stop(65%, rgba(36.7897196262, 79.1869158879, 235.7570093458, 0.185)), color-stop(75.5%, rgba(27.7718894009, 68.9539170507, 235.3732718894, 0.1925)), color-stop(82.85%, rgba(23.2973640857, 63.8764415157, 235.1828665568, 0.1963)), color-stop(88%, rgba(21.1995073892, 61.4958949097, 235.0935960591, 0.1981)), to(rgba(19, 59, 235, 0.2)));
  background-image: linear-gradient(to bottom, rgba(160, 219, 241, 0.1) 0%, rgba(55.6057692308, 100.5384615385, 236.5576923077, 0.17) 50%, rgba(36.7897196262, 79.1869158879, 235.7570093458, 0.185) 65%, rgba(27.7718894009, 68.9539170507, 235.3732718894, 0.1925) 75.5%, rgba(23.2973640857, 63.8764415157, 235.1828665568, 0.1963) 82.85%, rgba(21.1995073892, 61.4958949097, 235.0935960591, 0.1981) 88%, rgba(19, 59, 235, 0.2) 100%);
}
.bg-base.type1 {
  position: relative;
}
.bg-base.type1:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: calc(100% - 50px);
  height: calc(100% - 40px);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #0B87E6;
}
@media screen and (max-width: 1440px) {
  .bg-base.type1:before {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
}
.bg-base.type2 .inner {
  position: relative;
  z-index: 3;
}
.bg-base.type2:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: calc(100% - 80px);
  height: calc(100% - 80px);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #fefefe;
  border-radius: 15px;
}
@media screen and (max-width: 1440px) {
  .bg-base.type2:before {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
}
.bg-base.type3 {
  position: relative;
}
.bg-base.type3:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #133beb;
  opacity: 0.2;
}
@media screen and (max-width: 1101px) {
  .bg-base.type3:before {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
}

.bg-green {
  background: rgba(160, 219, 241, 0.4);
}

.bg-gray {
  position: relative;
}
.bg-gray:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(219, 219, 219, 0.5);
  z-index: -2;
}
.bg-gray.half:before {
  position: absolute;
  content: "";
  right: 0;
  left: auto;
  top: -10%;
  width: 60%;
  height: 84%;
  background: rgba(219, 219, 219, 0.5);
  z-index: -2;
}
.bg-gray.type1:before {
  background: #cfd4d5;
  -webkit-mask-image: -webkit-gradient(linear, left bottom, right top, from(#000), color-stop(64%, #000), color-stop(80%, rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.2)));
  -webkit-mask-image: linear-gradient(to right top, #000 0%, #000 64%, rgba(0, 0, 0, 0.4) 80%, rgba(0, 0, 0, 0.2) 100%);
          mask-image: -webkit-gradient(linear, left bottom, right top, from(#000), color-stop(64%, #000), color-stop(80%, rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.2)));
          mask-image: linear-gradient(to right top, #000 0%, #000 64%, rgba(0, 0, 0, 0.4) 80%, rgba(0, 0, 0, 0.2) 100%);
}
.bg-gray.bg-half-bottom {
  background: #fff;
  background: transparent;
  background-image: linear-gradient(135deg, transparent 0%, transparent 50%, #f4f4f4 50.1%, #f4f4f4 100%);
}
.bg-gray.bg-half-upper {
  background: transparent;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#dbdbdb), color-stop(50%, #dbdbdb), color-stop(50.1%, transparent), to(transparent));
  background-image: linear-gradient(to bottom, #dbdbdb 0%, #dbdbdb 50%, transparent 50.1%, transparent 100%);
}

.bg-gray2 {
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#dbdbdb));
  background-image: linear-gradient(to bottom, transparent, #dbdbdb);
}

.bg-999 {
  background: #888;
}

.bg-blue {
  position: relative;
  background: transparent;
}
.bg-blue:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, right top, left top, from(#90E0B7), to(#a0dbf1));
  background-image: linear-gradient(to left, #90E0B7, #a0dbf1);
  opacity: 0.2;
}
.bg-blue.type1:before {
  top: 0;
  width: 100%;
  height: 100%;
  background: #0B87E6;
  opacity: 0.9;
}
.bg-blue.type2:before {
  top: 0;
  width: 100%;
  height: 100%;
  background: #224796;
  opacity: 0.3;
}

.bg-beige {
  background: #f7f4ea;
}
.bg-beige.type1 {
  background: transparent;
  position: relative;
}
.bg-beige.type1:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: #f7f4ea;
  z-index: -1;
}

.bg-beige2 {
  background: rgba(244, 230, 210, 0.4);
}

.bg-base2 {
  background: repeating-linear-gradient(45deg, rgba(11, 135, 230, 0.1) 0, rgba(11, 135, 230, 0.1) 20px, #fefefe 20px, #fefefe 40px);
}

/* tbl
----------------------------------*/
.tbl-history {
  width: 100%;
  border-top: 1px solid #e4e4e4;
}
.tbl-history th,
.tbl-history td {
  padding: 15px;
  border-bottom: 1px solid #e4e4e4;
}
.tbl-history th {
  width: 10em;
  border-right: 1px solid #ccc;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 1.8rem;
}
@media screen and (max-width: 1025px) {
  .tbl-history th {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 639px) {
  .tbl-history th {
    font-size: 1.35rem;
    letter-spacing: 0.15em;
  }
}
.tbl-history th {
  line-height: 1;
}
.tbl-history th mn {
  font-size: 1.3rem;
  display: block;
}
.tbl-history th span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 2.4rem;
}
@media screen and (max-width: 1025px) {
  .tbl-history th span {
    font-size: 2rem;
  }
}
@media screen and (max-width: 639px) {
  .tbl-history th span {
    font-size: 1.7rem;
  }
}
.tbl-history th span {
  padding: 0 3px;
}
.tbl-history td {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-left: 30px;
}
.tbl-history td .month-area {
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  width: 80px;
  background: #fefefe;
  border: 1px solid #ccc;
  padding: 2px;
  text-align: center;
  border-radius: 30px;
  margin-bottom: 5px;
}
.tbl-history td .month-area:before, .tbl-history td .month-area:after {
  position: absolute;
  content: "";
}
.tbl-history td .month-area:before {
  left: -25px;
  top: 50%;
  width: 25px;
  height: 1px;
  z-index: -1;
  background: #ccc;
}
.tbl-history td .month-area:after {
  width: 10px;
  height: 10px;
  left: -36px;
  top: 50%;
  border-radius: 100%;
  background: #0B87E6;
  margin-top: -5px;
}
.tbl-history td .txt {
  width: 100%;
  line-height: 1.5;
}
.tbl-history td .txt:not(:last-child) {
  margin-bottom: 20px;
}
@media screen and (max-width: 639px) {
  .tbl-history tr {
    position: relative;
  }
  .tbl-history tr:before {
    position: absolute;
    content: "";
    left: 5px;
    top: 0;
    width: 1px;
    height: 100%;
    z-index: -1;
    background: #ccc;
  }
  .tbl-history th,
  .tbl-history td {
    width: 100%;
    display: block;
    padding: 10px 10px 10px 30px;
  }
  .tbl-history th {
    text-align: left;
    border-right: 0px solid #ccc;
    border-bottom: 0px solid #ccc;
  }
  .tbl-history th mn {
    font-size: 1.1rem;
  }
  .tbl-history td .month-area {
    width: 60px;
  }
  .tbl-history td .month-area:before {
    left: -20px;
    width: 20px;
  }
  .tbl-history td .month-area:after {
    left: -30px;
  }
  .tbl-history td .txt:not(:last-child) {
    margin-bottom: 15px;
  }
}

.tbl-company {
  width: 100%;
}
.tbl-company th,
.tbl-company td {
  padding: 28px 0;
  vertical-align: top;
  border-bottom: 1px rgba(34, 71, 150, 0.7) solid;
}
.tbl-company th {
  width: 20%;
  font-weight: 600;
  text-align: left;
}
@media screen and (max-width: 639px) {
  .tbl-company th,
  .tbl-company td {
    padding: 20px 0;
    font-size: 0.9em;
  }
  .tbl-company th {
    width: 30%;
  }
}

.tbl_normal {
  width: 100%;
}
.tbl_normal.type1 th {
  width: 30%;
  font-size: 2rem;
  line-height: 1;
}
@media screen and (max-width: 639px) {
  .tbl_normal.type1 th {
    font-size: 1.6rem;
    width: 35%;
  }
}
.tbl_normal.type1 td {
  text-align: left;
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
  font-size: 0.9em;
}
.tbl_normal th,
.tbl_normal td {
  padding: 4px 5px;
  vertical-align: middle;
  border-bottom: 0.9px solid #ccc;
}
.tbl_normal th {
  width: 70%;
  text-align: left;
}
.tbl_normal td {
  text-align: right;
}

.tbl {
  width: 100%;
  border-collapse: collapse;
}
.tbl.flower-info th,
.tbl.flower-info td {
  padding: 10px 15px;
}
.tbl.flower-info td .btn_map {
  display: inline-block;
  padding: 10px 24px;
  margin-top: 12px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  background: linear-gradient(135deg, #0B87E6 0%, #133beb 100%);
  color: #ffffff !important;
  -webkit-box-shadow: 0 4px 12px rgba(19, 59, 235, 0.25);
          box-shadow: 0 4px 12px rgba(19, 59, 235, 0.25);
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  z-index: 1;
}
.tbl.flower-info td .btn_map::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #133beb 0%, #0B87E6 100%);
  border-radius: 6px;
  opacity: 0;
  z-index: -1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.tbl.flower-info td .btn_map:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 16px rgba(19, 59, 235, 0.4);
          box-shadow: 0 6px 16px rgba(19, 59, 235, 0.4);
}
.tbl.flower-info td .btn_map:hover::after {
  opacity: 1;
}
.tbl.flower-info td .btn_map:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-box-shadow: 0 2px 8px rgba(19, 59, 235, 0.3);
          box-shadow: 0 2px 8px rgba(19, 59, 235, 0.3);
}
.tbl th,
.tbl td {
  padding: 15px;
  vertical-align: middle;
  background: #fefefe;
  border: 1px solid #ddd;
  word-break: break-all;
}
.tbl th {
  background: #e6e6e6;
  text-align: left;
}
.tbl th span {
  font-size: 1.4rem;
}
.tbl th.item1 {
  width: 260px;
}
@media screen and (max-width: 639px) {
  .tbl {
    display: block;
  }
  .tbl thead {
    display: none;
  }
  .tbl tbody, .tbl tr, .tbl th, .tbl td {
    display: block;
    width: 100% !important;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .tbl tr {
    border-bottom: 2px solid #ddd;
    margin-bottom: 10px;
  }
  .tbl th {
    border-bottom: none;
    padding: 12px 15px;
    font-weight: bold;
    position: relative;
    border-left: 4px solid #3052ec;
  }
  .tbl td {
    padding: 15px;
    border-top: 1px solid #eee;
    background: #fff;
  }
}

.tbl2 {
  width: 100%;
}
.tbl2.tbl-price {
  margin-bottom: 40px;
}
.tbl2.tbl-price th span {
  display: block;
  font-size: 1.4rem;
}
.tbl2 th,
.tbl2 td {
  padding: 15px;
  vertical-align: middle;
  border: 1px solid #ccc;
  font-size: 1.4rem;
}
.tbl2 th.center,
.tbl2 td.center {
  text-align: center;
}
.tbl2 th {
  background: rgba(160, 219, 241, 0.6);
  font-weight: 600;
  text-align: center;
}
.tbl2 thead th {
  background: #133beb;
  color: #fff;
}
.tbl2 td {
  background: #fff;
}
.tbl2 td.td-1 {
  width: 50%;
  font-size: 1.3rem;
}
@media screen and (max-width: 639px) {
  .tbl2 td.td-1 {
    font-size: 12px;
  }
}
.tbl2 td.td-2 {
  vertical-align: top;
}
.tbl2 .th-1 {
  width: 25%;
}
.tbl2 .th-2 {
  width: 45%;
}
.tbl2.type1 td {
  text-align: left;
}
@media screen and (max-width: 639px) {
  .tbl2 th,
  .tbl2 td {
    padding: 10px;
    font-size: 12px;
  }
  .tbl2 th span,
  .tbl2 td span {
    font-size: 12px;
  }
}

.tbl_new {
  width: 100%;
}
.tbl_new.type-mini {
  font-size: 1.5rem;
}
.tbl_new.type-mini tr th,
.tbl_new.type-mini tr td {
  padding: 10px;
}
.tbl_new tr th,
.tbl_new tr td {
  vertical-align: middle;
  padding: 15px 10px;
}
.tbl_new tr:nth-child(odd) th, .tbl_new tr:nth-child(odd) td {
  background: #dbdbdb;
}
.tbl_new tr th {
  font-weight: 600;
  width: 20%;
  color: #0B87E6;
  text-align: left;
  padding-left: 15px;
  letter-spacing: 0;
}
@media screen and (max-width: 639px) {
  .tbl_new tr th {
    width: 25%;
    padding-left: 10px;
  }
}
.tbl_new tr th.th-long {
  width: 100%;
  text-align: center;
  background: #a0dbf1;
  color: #fff;
  letter-spacing: 0.15em;
  font-size: 1.1em;
}

.tbl-border {
  width: 100%;
}
.tbl-border.tbl-mini th,
.tbl-border.tbl-mini td {
  padding: 6px 10px;
  border-width: 1px;
  font-size: 14px;
  letter-spacing: 0.1rem;
}
.tbl-border th,
.tbl-border td {
  padding: 15px;
  border-bottom: 2px solid #dbdbdb;
  vertical-align: middle;
  word-break: break-all;
}
@media screen and (max-width: 639px) {
  .tbl-border th,
  .tbl-border td {
    padding: 10px;
    font-size: 1.2rem;
  }
}
.tbl-border .small {
  font-size: 0.9em;
  background: #fff;
  color: #133beb;
  margin-right: 5px;
  padding: 0px 4px;
}
.tbl-border th {
  width: 22%;
  text-align: left;
  font-weight: 600;
  border-bottom-color: #0B87E6;
}
.tbl-border th.th-1 {
  width: 45%;
}
@media screen and (max-width: 639px) {
  .tbl-border th {
    width: 30%;
  }
}

.price {
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  color: #e71430;
}
@media screen and (max-width: 639px) {
  .price {
    font-size: 1.4rem;
  }
}

.tbl0 {
  width: 100%;
  font-size: 1.4rem;
}
.tbl0 th,
.tbl0 td {
  padding: 5px;
  border: 0;
  color: #0B87E6;
  border-bottom: 0.9px solid #ddd;
}
.tbl0 th {
  padding-left: 0;
  text-align: left;
  background: none;
  width: 25%;
}
.tbl0 th:after, .tbl0 th:before {
  display: none;
}
@media screen and (max-width: 639px) {
  .tbl0 th {
    width: 40%;
  }
}

/* ggmap
----------------------------------*/
.ggmap {
  position: relative;
  padding-bottom: 46.25%;
  height: 0;
  overflow: hidden;
}
.ggmap.type1 {
  padding-bottom: 50%;
}
.ggmap.type2 {
  padding-bottom: 60%;
}
.ggmap.youtube {
  padding-bottom: 56.25%;
}
.ggmap iframe,
.ggmap object,
.ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 639px) {
  .ggmap {
    padding-bottom: 65.25%;
  }
}

/* list
----------------------------------*/
.list_common li {
  padding-bottom: 5px;
  padding-left: 1rem;
  margin-bottom: 5px;
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 639px) {
  .list_common li {
    font-size: 1.25rem;
  }
}
.list_common li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.list_common.common_big li {
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.list-policy {
  background: rgba(255, 255, 255, 0.7);
  padding: 25px;
  margin-bottom: 40px;
}
.list-policy li {
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-size: 2rem;
  padding-bottom: 5px;
  margin-bottom: 6px;
  font-weight: 600;
}
.list-policy li:before {
  content: "一、";
  margin-right: 7px;
  color: #0B87E6;
}
@media screen and (max-width: 639px) {
  .list-policy {
    padding: 15px;
  }
  .list-policy li {
    font-size: 1.4rem;
  }
}

.list_check.type1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 4%;
}
.list_check.type1 li {
  background: #90E0B7;
  padding: 12px 8px 12px 24px;
  color: #fff;
}
.list_check li {
  padding: 4px;
  padding-left: 30px;
  font-weight: 600;
  font-size: 1.1em;
  position: relative;
  margin-bottom: 5px;
}
.list_check li a {
  color: #0B87E6;
  border-bottom: 1px dotted #0B87E6;
}
.list_check li:before {
  position: absolute;
  left: 0;
  top: 20px;
  content: "";
  width: 10px;
  height: 2px;
  background: #133beb;
}
@media screen and (max-width: 639px) {
  .list_check li {
    width: 98%;
    margin: 0 auto 10px;
    font-size: 1.3rem;
  }
}

.list_check2 li {
  padding: 8px;
  font-weight: 600;
}
.list_check2 li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: 900;
  margin-right: 8px;
  color: #0B87E6;
}
.list_check2 li {
  margin-bottom: 4px;
  border-bottom: 1px solid #ccc;
}
.list_check2 li a {
  color: #111;
}
.list_check2 li a:after {
  font-family: "Font Awesome 5 Free";
  content: "\f35d";
  font-weight: 900;
  margin-left: 4px;
  font-size: 0.8em;
  color: #29211c;
}
.list_check2.type1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px 20px;
}
@media screen and (max-width: 639px) {
  .list_check2.type1 {
    grid-template-columns: 1fr;
    gap: 5px 0;
  }
}
.list_check2.type_blue li:before {
  color: #133beb;
}

.list-inline2 {
  text-align: center;
}
.list-inline2 li {
  display: inline-block;
  padding: 4px 15px;
  background: #fefefe;
  border: 1px solid #cfd4d5;
  font-weight: 600;
  border-radius: 30px;
}
.list-inline2 li:not(:last-child) {
  margin-right: 8px;
}

.list-inline li {
  display: inline-block;
  padding: 3px;
}
.list-inline li:not(:last-of-type):after {
  content: "/";
  margin: 0 5px;
  color: #0B87E6;
  font-weight: normal;
}

.ol-list {
  counter-reset: number;
  list-style: none;
  padding: 5px;
}
.ol-list.type1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.ol-list.type1 > li {
  width: 48%;
}
.ol-list.type1 > li:nth-child(2n) {
  margin-left: 4%;
}
.ol-list li {
  margin-bottom: 10px;
  padding-bottom: 5px;
  font-weight: 600;
  padding-left: 40px;
  position: relative;
}
.ol-list li:before {
  counter-increment: number;
  content: counter(number);
  background: #133beb;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  font-size: 1.6rem;
  color: #0B87E6;
  position: absolute;
  left: 0;
  top: 0px;
  border-radius: 100%;
}
@media screen and (max-width: 639px) {
  .ol-list li {
    font-size: 1.3rem;
  }
  .ol-list li span {
    font-size: 0.9em;
  }
  .ol-list li:before {
    font-size: 1.8rem;
  }
}

.list_disc li {
  padding: 5px 0;
}
.list_disc li a {
  font-weight: 600;
  letter-spacing: 0.1rem;
}
.list_disc li:not(:last-of-type) {
  margin-bottom: 5px;
  border-bottom: 1px dashed #ccc;
}
.list_disc li:before {
  content: "●";
  margin-right: 5px;
  color: #0B87E6;
  font-size: 1rem;
  display: inline-block;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.recruit-list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: grid;
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.recruit-list li {
  display: block;
  background: #ffffff;
  -webkit-box-shadow: 5px 5px rgb(216.3267716535, 222.9094488189, 251.8732283465);
          box-shadow: 5px 5px rgb(216.3267716535, 222.9094488189, 251.8732283465);
  border: 3px solid rgb(41.7421259843, 78.0413385827, 237.7578740157);
  text-align: center;
  padding: 25px 20px;
  color: #29211c;
  line-height: 1.6;
  border-radius: 10px;
}
.recruit-list li .purpose-txt {
  text-align: left;
}
.recruit-list li .purpose-txt h3 {
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 1.6rem;
}
@media screen and (max-width: 1025px) {
  .recruit-list li .purpose-txt h3 {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 639px) {
  .recruit-list li .purpose-txt h3 {
    font-size: 1.25rem;
    letter-spacing: 0.15em;
  }
}
.recruit-list li .purpose-txt h3 {
  letter-spacing: 0.15em;
  color: #29211c;
  margin: 10px auto 30px;
  text-align: center;
}
.recruit-list li .purpose-txt h3:after {
  position: absolute;
  content: "";
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -10px;
  width: 30px;
  height: 3px;
  z-index: 1;
  border-radius: 30px;
  background: #133beb;
}
.recruit-list li .purpose-txt p {
  font-weight: 600;
}
.recruit-list li img {
  display: block;
  margin: 0 auto;
  max-width: 220px;
  width: 70%;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media screen and (max-width: 1101px) {
  .recruit-list {
    gap: 15px;
  }
  .recruit-list li {
    padding: 20px 10px;
  }
  .recruit-list li h3 {
    letter-spacing: 0.1em;
  }
}
@media screen and (max-width: 639px) {
  .recruit-list {
    gap: 20px;
    grid-template-columns: repeat(1, 1fr);
    width: 90%;
  }
  .recruit-list li img {
    max-width: 180px;
  }
}

.list-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.list-btn.type1 {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.list-btn li {
  width: 32%;
  margin: 0 1.995% 10px 0;
}
.list-btn li a {
  display: block;
  background: #0B87E6;
  font-weight: 600;
  padding: 20px 3px;
  text-align: center;
  width: 100%;
  height: 100%;
  line-height: 1.5;
  font-size: 1.8rem;
  letter-spacing: 0;
  color: #fff;
}
.list-btn li a:after {
  font-family: "Font Awesome 5 Free";
  content: "\f358";
  font-weight: 900;
  margin-left: 5px;
}
@media screen and (max-width: 1025px) {
  .list-btn li a {
    font-size: 1.5rem;
  }
}
.list-btn li:nth-child(even) a {
  background: #133beb;
}
.list-btn li:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 639px) {
  .list-btn li {
    width: 90%;
    margin: 0 auto 10px;
  }
  .list-btn li a {
    font-size: 1.2rem;
  }
  .list-btn li:nth-child(3n) {
    margin-right: auto;
  }
}

@media screen and (max-width: 1025px) {
  .top-list1 {
    padding-bottom: 45px;
  }
}
.top-list1 > .child {
  background: #cae3f1;
  padding: 15px;
  border-radius: 15px;
  position: relative;
  padding-bottom: 50px;
  margin-top: 110px !important;
}
@media screen and (max-width: 639px) {
  .top-list1 > .child {
    padding-bottom: 60px;
  }
}
.top-list1 .pages {
  display: none;
}

.btn-block {
  position: absolute;
  left: 50%;
  bottom: -40px;
  z-index: 3;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.morebtn2 {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  margin: 15px 0;
  vertical-align: middle;
  text-decoration: none;
  background: #fff;
  border-radius: 40px;
  padding: 6px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 3px 8px;
          box-shadow: rgba(0, 0, 0, 0.05) 0px 3px 8px;
  width: 300px;
  font-size: 1.5rem;
}
@media screen and (max-width: 639px) {
  .morebtn2 {
    font-size: 1.2rem;
  }
}
.morebtn2 .circle {
  -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 44px;
  height: 44px;
  background: #0B87E6;
  margin-left: -1px;
  border-radius: 22px;
}
.morebtn2 .circle .icon {
  -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}
.morebtn2 .circle .icon.arrow {
  -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 4px;
  width: 2rem;
  height: 0.125rem;
  background: none;
}
.morebtn2 .circle .icon.arrow:before {
  position: absolute;
  content: "";
  top: -0.25rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.morebtn2 .button-text {
  -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 0;
  margin: 0 0 0 1.85rem;
  color: #0B87E6;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
}
.morebtn2:hover .circle {
  width: 101%;
  background: #0B87E6;
}
.morebtn2:hover .circle .icon.arrow {
  background: #fff;
  -webkit-transform: translate(1rem, 0);
          transform: translate(1rem, 0);
}
.morebtn2:hover .button-text {
  color: #fff;
}
.morebtn2.type1 {
  background: #0B87E6;
  width: 280px;
}
.morebtn2.type1 .circle {
  background: #fff;
}
.morebtn2.type1 .icon {
  background: #0B87E6;
}
.morebtn2.type1 .icon.arrow:before {
  border-color: #0B87E6;
}
.morebtn2.type1 .button-text {
  color: #fff;
  font-size: 1.1em;
}
.morebtn2.type1:hover .button-text {
  color: #0B87E6;
}

/* blog
----------------------------------*/
#main .blog-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px 4%;
}
@media screen and (max-width: 639px) {
  #main .blog-wrap {
    grid-template-columns: 1fr;
  }
}

.blog-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 4%;
  margin-bottom: 40px;
}
.blog-wrap li {
  background-color: #fff;
  border: 1px solid #ababab;
  -webkit-box-shadow: rgba(41, 33, 28, 0.1) 0px 20px 25px -5px, rgba(41, 33, 28, 0.04) 0px 10px 10px -5px;
          box-shadow: rgba(41, 33, 28, 0.1) 0px 20px 25px -5px, rgba(41, 33, 28, 0.04) 0px 10px 10px -5px;
}
.blog-wrap a {
  background: #fefefe;
}
@media screen and (max-width: 639px) {
  .blog-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 4%;
  }
}
@media screen and (min-width: 1101px) {
  .type-col4 .blog-wrap {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 2.5%;
  }
}

.blog-box {
  display: block;
  position: relative;
  height: 100%;
  -webkit-box-shadow: rgba(41, 33, 28, 0.1) 0px 20px 25px -5px, rgba(41, 33, 28, 0.04) 0px 10px 10px -5px;
          box-shadow: rgba(41, 33, 28, 0.1) 0px 20px 25px -5px, rgba(41, 33, 28, 0.04) 0px 10px 10px -5px;
}
.blog-box:hover .morebtn {
  background: #383838;
  color: #f7f4ea;
}

.pages {
  margin-top: 35px;
  overflow: hidden;
  width: 100%;
}
.pages > div {
  font-size: 13px;
  line-height: 1.4;
  padding: 10px;
  width: 45%;
}
.pages > div a {
  color: #29211c;
}
.pages > div:first-child {
  padding-right: 20px;
  float: left;
}
.pages > div:last-of-type {
  padding-left: 20px;
  border-left: 1px solid #ccc;
  float: right;
}
@media screen and (max-width: 639px) {
  .pages > div {
    width: 100%;
  }
  .pages > div:last-of-type {
    border: none;
  }
}
.pages > div a {
  display: block;
  font-weight: 500;
}

.blog-img {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1.6/1;
  overflow: hidden;
}
.blog-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.blog-img:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.blog-img figcaption {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2px 8px;
  background: rgba(56, 56, 56, 0.8);
  color: #fff;
  font-size: 12px;
  z-index: 4;
}
.blog-img figcaption:empty {
  padding: 0;
}

.blog-title {
  position: relative;
  margin-bottom: 8px;
  line-height: 1.5;
  color: #383838;
  font-size: 14px;
  font-weight: 600;
}
@media screen and (max-width: 639px) {
  .blog-title {
    font-size: 1.2rem;
  }
}

.content-bottom {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  left: 0;
  bottom: 0;
  width: 100%;
  border-top: 1px solid rgba(170, 170, 170, 0.5);
}

.morebtn {
  width: 6em;
  padding: 5px;
  border-left: 1px solid rgba(170, 170, 170, 0.5);
  border-radius: 0 0 5px 0;
  color: #383838;
  text-align: center;
  font-size: 13px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  -webkit-transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
}

.blog-detail {
  padding: 14px 14px 50px 14px;
  font-size: 13px;
  color: #383838;
  line-height: 1.5;
}

.blog-page-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  margin-bottom: 10px;
}
.blog-page-detail .blog-date2 {
  display: inline-block;
  color: #0B87E6;
}
.blog-page-detail .blog-date2:before {
  font-family: "Font Awesome 5 Free";
  content: "\f017";
  font-weight: 900;
  margin-right: 5px;
}
.blog-page-detail .blog-date2 {
  margin-right: 10px;
}
.blog-page-detail .blog-category {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26436/paper01.jpg);
  margin-right: 5px;
}

.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: #dbdbdb;
}
.category_nav li:last-child a {
  border-bottom: none;
}

.blog-date {
  display: inline-block;
  color: #0B87E6;
  padding: 10px 4px 8px 10px;
  font-size: 1.15em;
  line-height: 1;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
}
.blog-date .year-time {
  display: inline-block;
  margin-right: 4px;
  color: #aaa;
  font-size: 1.4rem;
}
@media screen and (max-width: 639px) {
  .blog-date .year-time {
    font-size: 12px;
  }
}

.content-bottom {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  left: 0;
  bottom: 0;
  width: 100%;
}

.morebtn {
  width: 7.5em;
  padding: 5px;
  background: #133beb;
  border-radius: 10px 0 0 0;
  color: #fff;
  text-align: center;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  font-size: 13px;
}

.top-blog-content {
  overflow: hidden;
}
@media screen and (max-width: 639px) {
  .top-blog-content {
    padding-left: 15px;
  }
}

.top-blog .pages {
  display: none;
}
.top-blog .blog1-wrap {
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  padding-bottom: 85px;
}

.top-blog-common {
  overflow: visible !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.top-blog-common .swiper-slide {
  overflow: hidden;
  width: 32rem;
  background: #fefefe;
  display: block;
  height: auto;
}
@media screen and (max-width: 639px) {
  .top-blog-common .swiper-slide {
    width: 18rem;
  }
}
.top-blog-common .swiper-controller {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: absolute;
  left: 10px;
  bottom: -70px;
  z-index: 3;
}
.top-blog-common .swiper-button-prev,
.top-blog-common .swiper-button-next {
  display: grid;
  place-content: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  -webkit-transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
}
.top-blog-common .swiper-button-prev {
  margin-right: 40px !important;
}
.top-blog-common .swiper-button-prev:before,
.top-blog-common .swiper-button-next:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: 50%;
  background: #fefefe;
  -webkit-box-shadow: 0.6rem 0.6rem 1rem rgba(41, 33, 28, 0.05), -0.6rem -0.6rem 1rem rgba(160, 219, 241, 0.2);
          box-shadow: 0.6rem 0.6rem 1rem rgba(41, 33, 28, 0.05), -0.6rem -0.6rem 1rem rgba(160, 219, 241, 0.2);
  width: 100%;
  height: 100%;
}
.top-blog-common .swiper-button-prev::after,
.top-blog-common .swiper-button-next::after {
  width: 1.2rem;
  height: 1.2rem;
  content: "";
  border: solid #0B87E6;
  border-width: 3px 3px 0 0;
}
@media screen and (max-width: 639px) {
  .top-blog-common .swiper-button-prev::after,
  .top-blog-common .swiper-button-next::after {
    width: 0.9rem;
    height: 0.9rem;
  }
}
.top-blog-common .swiper-button-prev::after {
  margin-left: 0.4rem;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.top-blog-common .swiper-button-next::after {
  margin-right: 0.4rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.top-blog-common .swiper-button-prev,
.top-blog-common .swiper-button-next {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0;
}
.top-blog-common .swiper-button-disabled {
  pointer-events: none;
  opacity: 0.5;
}
.top-blog-common .swiper-button-disabled::before {
  -webkit-box-shadow: inset 0.6rem 0.6rem 1rem rgba(41, 33, 28, 0.05), inset -0.6rem -0.6rem 1rem #ccc;
          box-shadow: inset 0.6rem 0.6rem 1rem rgba(41, 33, 28, 0.05), inset -0.6rem -0.6rem 1rem #ccc;
}

.blog-card {
  height: 100%;
  display: block;
  position: relative;
  background: #fefefe;
}
.blog-card:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #a0dbf1;
  -webkit-transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
}
.blog-card:hover:before {
  width: 100%;
}
.blog-card figure {
  padding-top: 70%;
  position: relative;
}
.blog-card figure img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-card .content {
  padding: 0.8em 1.2em 4em;
}

.btn-more {
  margin-top: 20px;
  position: relative;
  z-index: 4;
}
.btn-more a {
  display: block;
  width: 11em;
  text-align: center;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  font-size: 1.4rem;
  color: #fff;
  padding: 8px 10px;
  background: #224796;
  border-radius: 40px;
  margin-left: auto;
  -webkit-transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
}
.btn-more a:after {
  font-family: "Font Awesome 5 Free";
  content: "\f061";
  font-weight: 900;
  margin-left: 4px;
  display: inline-block;
  position: relative;
  -webkit-transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
}
.btn-more a:hover {
  background: #0B87E6;
}
.btn-more a:hover:after {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
@media screen and (max-width: 639px) {
  .btn-more {
    margin-right: 10px;
  }
  .btn-more a {
    font-size: 13px;
  }
}

/* etc
----------------------------------*/
.cover_img {
  width: 300px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 639px) {
  .cover_img {
    height: 180px;
    width: 100%;
  }
}

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

.w300 {
  width: 300px;
}

.spbr {
  display: none;
}

.color1 {
  color: #0B87E6;
}

.color2 {
  color: #c5a54d;
}

.color3 {
  color: #2D4A86;
}

.relative {
  position: relative;
}

.num {
  font-weight: 600;
}
.num a {
  color: #0B87E6;
  font-size: 2.8rem;
  text-align: center;
  margin-left: 5px;
}
@media screen and (max-width: 639px) {
  .num a {
    font-size: 2rem;
  }
}
.num a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
}
.num a:hover {
  color: #ff8f4e;
}

.telbox {
  max-width: 600px;
  margin: 0 auto 20px;
  padding: 20px;
  background: #333;
  text-align: center;
}
.telbox .inner {
  background: #fff;
  padding: 10px;
}

.txt-link {
  font-weight: 600;
  text-decoration: underline;
}
.txt-link:hover {
  text-decoration: none;
}
.txt-link.map:before {
  font-family: "Font Awesome 5 Free";
  content: "\f3c5";
  font-weight: 900;
  margin-right: 4px;
}

.telbnr {
  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;
  margin: 30px auto 30px;
}
.telbnr li {
  width: 47%;
  border: 3px solid #a0dbf1;
  padding: 10px 10px;
  text-align: center;
  border-radius: 50px;
}
.telbnr li.telbnr-mail a {
  font-size: 2rem;
  padding-top: 5px;
}
.telbnr li.telbnr-mail a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
}
@media screen and (max-width: 639px) {
  .telbnr li.telbnr-mail a {
    font-size: 1.4rem;
    padding: 0;
  }
}
.telbnr li a {
  display: block;
  font-size: 2.4rem;
  font-weight: 600;
  color: #0B87E6;
}
.telbnr li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
}
.telbnr li a:hover {
  color: #0B87E6;
}
@media screen and (max-width: 639px) {
  .telbnr {
    max-width: 90%;
  }
  .telbnr li {
    width: 100%;
    margin: 0 auto 30px;
  }
  .telbnr li a {
    font-size: 2rem;
  }
}

.telbnr-ttl {
  font-weight: 600;
  font-size: 1.6rem;
  color: #333;
  margin-top: -30px;
}
.telbnr-ttl span {
  background: #fff;
  padding: 0 20px;
}
@media screen and (max-width: 639px) {
  .telbnr-ttl {
    font-size: 1.3rem;
  }
}

/* breadcrumb
----------------------------------*/
.breadcrumb {
  max-width: 1200px;
  margin: 20px auto 20px;
  font-size: 1.2rem;
}
.breadcrumb li {
  display: inline;
  color: #777;
}
.breadcrumb li a {
  color: #0B87E6;
}
.breadcrumb li + li:before {
  margin: 0 10px;
  content: ">";
}
@media screen and (max-width: 639px) {
  .breadcrumb {
    font-size: 12px;
  }
}

/* form
----------------------------------*/
.form {
  margin: 0 auto;
  width: 90%;
}
.form dl dt {
  float: left;
  width: 200px;
  padding-top: 20px;
  font-weight: 600;
}
.form dl dt span {
  color: #133beb;
  border-bottom: 1px solid #133beb;
  padding: 5px;
  margin-right: 5px;
  font-size: 13px;
  position: relative;
  top: -2px;
}
.form dl dt span.nini {
  background: #F3CC1D;
  color: #29211c;
}
.form dl dd {
  padding-left: 220px;
  padding-bottom: 20px;
  padding-top: 23px;
  line-height: 1.5;
}
.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: #fefefe;
  border-bottom: 1px solid rgba(207, 212, 213, 0.4);
}
.form .textarea02 {
  width: 48.5%;
  margin-right: 3%;
}
.form .textarea02:last-child {
  margin-right: 0;
}
.form .textarea03 {
  width: 26%;
  margin-right: 1%;
}
.form .textarea04 {
  width: 20%;
  margin-right: 1%;
}
.form .textarea04 {
  width: 20%;
  margin-right: 1%;
}
.form button {
  cursor: pointer;
  display: block;
  color: #fff;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  border: 1px solid #0B87E6;
  font-weight: 600;
  padding: 18px 5px;
  margin: 0 auto;
  width: 250px;
  background: #0B87E6;
  border-radius: 40px;
  font-size: 15px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
}
.form button:hover {
  background: #fff;
  color: #0B87E6;
}
.form button:before {
  font-weight: normal;
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 10px;
}
.form .select-group {
  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;
}
.form .select-group p {
  margin: 0 5px;
}
@media screen and (max-width: 639px) {
  .form .select-group .select-wrap {
    margin-top: 8px;
  }
}
.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 .select-down:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0ab";
  font-weight: 900;
  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: #0B87E6;
}
.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: #0B87E6;
  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 #0B87E6;
  border-bottom: 3px solid #0B87E6;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: 1;
}
.form label.checkbox_text input[type=checkbox] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  left: -40px;
  width: 20px;
  height: 20px;
  display: block;
  -webkit-box-shadow: 41px 0px #fff;
          box-shadow: 41px 0px #fff;
  z-index: 2;
  margin: 0px;
  padding: 0px;
}
.form label.checkbox_text input[type=checkbox]:checked {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.form label.checkbox_text input[type=checkbox]:checked:focus {
  -webkit-box-shadow: 40px 0px #666;
          box-shadow: 40px 0px #666;
  opacity: 0.1;
}
.form label.checkbox_text input[type=checkbox]:focus {
  -webkit-box-shadow: 41px 0px #eee;
          box-shadow: 41px 0px #eee;
}
.form input[type=text],
.form textarea {
  font-size: 16px;
}
@media screen and (max-width: 639px) {
  .form input[type=text],
  .form textarea {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    margin-left: -5px;
  }
}

.select-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.select-list .txt {
  font-size: 14px;
  display: inline-block;
  padding-right: 8px;
}

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

.thanks {
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
}
@media screen and (max-width: 639px) {
  .thanks {
    max-width: 90%;
    padding: 30px 20px;
  }
}

.shadow {
  -webkit-box-shadow: rgba(3, 3, 3, 0.2) 18px 18px 8px -10px;
          box-shadow: rgba(3, 3, 3, 0.2) 18px 18px 8px -10px;
}

.policy {
  padding: 30px;
  background: rgba(255, 255, 255, 0.5);
  font-size: 1.4rem;
  letter-spacing: 0;
}
.policy .inner {
  padding-right: 40px;
}
@media screen and (max-width: 639px) {
  .policy {
    font-size: 1.15rem;
  }
  .policy .inner {
    padding-right: 15px;
  }
}

.mtitle_small {
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 15px;
  border-bottom: 1px solid #ccc;
  color: #0B87E6;
  font-weight: 600;
}
.mtitle_small:before {
  content: "";
  width: 50px;
  height: 1px;
  background-color: #0B87E6;
  position: absolute;
  left: 0;
  bottom: -1px;
}
@media screen and (max-width: 639px) {
  .mtitle_small {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

.mtitle_small2 {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
}
.mtitle_small2:before {
  content: "";
  background-color: #0B87E6;
  width: 10px;
  height: 4px;
  position: absolute;
  top: 0.6em;
  left: 0;
}

.list2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 4%;
}
@media screen and (max-width: 639px) {
  .list2 {
    grid-template-columns: 1fr;
  }
}
.list2.type1 > li,
.list2.type1 .child {
  background: #fefefe;
  padding: 15px;
}
.list2.ai-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.list2.jc-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.list2 > li.child-100,
.list2 .child.child-100 {
  grid-column: 2fr;
}
.list2 > li,
.list2 .child {
  position: relative;
}

.list2_2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1500px;
  margin-top: -40px;
  margin-left: auto;
  margin-right: auto;
}
.list2_2.jcenter {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.list2_2.type1 > li,
.list2_2.type1 > .child {
  background: #fefefe;
  padding: 15px;
}
.list2_2 > li,
.list2_2 > .child {
  width: 48%;
  margin-top: 40px;
  position: relative;
}
.list2_2 > li:nth-child(2n),
.list2_2 > .child:nth-child(2n) {
  margin-left: 4%;
}
.list2_2 > li.w10,
.list2_2 > .child.w10 {
  width: 10%;
}
@media screen and (max-width: 639px) {
  .list2_2 > li.w10,
  .list2_2 > .child.w10 {
    width: 100%;
  }
}
.list2_2 > li.w25,
.list2_2 > .child.w25 {
  width: 25%;
}
@media screen and (max-width: 639px) {
  .list2_2 > li.w25,
  .list2_2 > .child.w25 {
    width: 100%;
  }
}
.list2_2 > li.W38,
.list2_2 > .child.w38 {
  width: 38%;
}
@media screen and (max-width: 639px) {
  .list2_2 > li.W38,
  .list2_2 > .child.w38 {
    width: 100%;
  }
}
.list2_2 > li.w50,
.list2_2 > .child.w50 {
  width: 50%;
}
@media screen and (max-width: 639px) {
  .list2_2 > li.w50,
  .list2_2 > .child.w50 {
    width: 100%;
  }
}
.list2_2 > li.w65,
.list2_2 > .child.w65 {
  width: 65%;
}
@media screen and (max-width: 639px) {
  .list2_2 > li.w65,
  .list2_2 > .child.w65 {
    width: 100%;
  }
}
.list2_2.al-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media all and (max-width: 639px) {
  .list2 {
    margin-top: -20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media all and (max-width: 896px) {
  .list2 > li:nth-child(2n),
  .list2 > .child:nth-child(2n) {
    margin-left: auto;
  }
}
@media all and (max-width: 896px) {
  .list2 > li,
  .list2 > .child {
    width: 100%;
    margin: 20px auto 0;
  }
}
.business-img img {
  -webkit-box-shadow: 3px 3px rgba(11, 135, 230, 0.2) !important;
          box-shadow: 3px 3px rgba(11, 135, 230, 0.2) !important;
}

.list3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px 4%;
}
.list3.type1 li,
.list3.type1 .child {
  background: #fefefe;
  padding: 15px;
  border-radius: 8px;
  line-height: 1.6;
  font-size: 1.1em;
}
@media screen and (max-width: 639px) {
  .list3.type1 li,
  .list3.type1 .child {
    padding: 20px 10px 10px;
  }
}
.list3 li {
  position: relative;
}
.list3 li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 639px) {
  .list3 {
    width: 95%;
    grid-template-columns: 1fr;
    margin-left: auto;
    margin-right: auto;
    gap: 25px 0;
  }
}

.list4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 2%;
}
@media screen and (max-width: 1025px) {
  .list4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 639px) {
  .list4 {
    grid-template-columns: 1fr;
  }
}

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

.note {
  padding: 15px;
  margin-top: 10px;
  background: #f7f4ea;
  font-size: 1.4rem;
}
@media screen and (max-width: 639px) {
  .note {
    font-size: 1.2rem;
  }
}

.flow-dl .flow-inner {
  padding: 8px;
}
.flow-dl .flow-inner:not(:last-of-type) {
  margin-bottom: 5px;
  border-bottom: solid 1px #aaa;
}
.flow-dl .flow-inner dt .eng {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  font-size: 2.5rem;
  color: #224796;
  margin-right: 8px;
}
.flow-dl .flow-inner dt {
  font-size: 1.6rem;
  font-weight: 600;
  color: #0B87E6;
}
.flow-dl .flow-inner dd {
  margin-top: 5px;
  padding-left: 40px;
}
@media screen and (max-width: 639px) {
  .flow-dl .flow-inner {
    padding: 6px;
  }
  .flow-dl .flow-inner dt .eng {
    font-size: 1.7rem;
  }
  .flow-dl .flow-inner dt {
    font-size: 1.25rem;
  }
  .flow-dl .flow-inner dd {
    padding-left: 30px;
  }
}

.txt1 {
  font-size: 1.4rem;
  letter-spacing: 0;
}
@media screen and (max-width: 639px) {
  .txt1 {
    font-size: 1.2rem;
  }
}

.fee-box {
  margin: 10px 0 20px;
  font-weight: 600;
  background: lemonchiffon;
  padding: 5px;
}
.fee-box span {
  display: block;
  font-weight: normal;
}

.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;
}
.blog-month ul li:nth-child(2n) {
  margin-left: 2%;
}
.blog-month ul li a {
  display: inline-block;
  color: #0B87E6;
  font-weight: 600;
  border-bottom: 1px solid #cfd4d5;
  font-size: 12px;
  text-align: center;
}
.blog-month ul li a:hover {
  color: #F3CC1D;
}

.list-center {
  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;
}
.list-center li {
  width: 50%;
}
@media screen and (max-width: 639px) {
  .list-center {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .list-center li {
    width: 100%;
  }
}

.faq-dl .faq-inner {
  padding: 10px;
  margin-bottom: 20px;
}
.faq-dl .faq-inner:not(:last-of-type) {
  margin-bottom: 35px;
  padding-bottom: 20px;
  border-bottom: 3px solid #eee;
}
.faq-dl .faq-inner dt,
.faq-dl .faq-inner dd {
  position: relative;
  padding: 10px 10px 10px 64px;
}
.faq-dl .faq-inner dt:before,
.faq-dl .faq-inner dd:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 45px;
  height: 45px;
  border-radius: 0 0 10px 0;
  font-size: 3rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  line-height: 45px;
  text-align: center;
}
.faq-dl .faq-inner dt {
  margin-bottom: 10px;
  font-weight: 600;
  color: #7c232a;
  font-size: 1.1em;
}
.faq-dl .faq-inner dt:before {
  content: "Q";
  color: #fff;
  background: #0B87E6;
}
.faq-dl .faq-inner dd {
  background: #f2f2f2;
}
.faq-dl .faq-inner dd:before {
  content: "A";
  color: #2D4A86;
  background: rgba(19, 59, 235, 0.4);
}

.point-title {
  font-weight: 600;
  font-size: 1.8rem;
}
@media screen and (max-width: 639px) {
  .point-title {
    font-size: 1.4rem;
  }
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 0px !important;
  right: auto;
  border-radius: 50%;
  -webkit-box-shadow: rgba(11, 135, 230, 0.1) 0px 7px 12px 0px;
          box-shadow: rgba(11, 135, 230, 0.1) 0px 7px 12px 0px;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 0px !important;
  left: auto;
  -webkit-box-shadow: rgba(11, 135, 230, 0.1) 0px 7px 12px 0px;
          box-shadow: rgba(11, 135, 230, 0.1) 0px 7px 12px 0px;
  border-radius: 50%;
}

.point-num {
  position: relative;
  z-index: 2;
  line-height: 1;
  color: #0B87E6;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 3.6rem;
  text-align: center;
  margin: 0 auto 10px;
}
@media screen and (max-width: 639px) {
  .point-num {
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 2.2rem;
    margin: -30px auto 10px;
  }
}

.bnr-list {
  text-align: center;
}
@media screen and (max-width: 1025px) {
  .bnr-list li {
    width: 48%;
    margin-right: 4%;
  }
  .bnr-list li:nth-child(2n) {
    margin-right: 0;
  }
}
.bnr-list a {
  display: block;
  text-align: center;
  background: #fefefe;
  padding: 8px 5px;
  font-size: 1.3rem;
  height: 100%;
}
.bnr-list a img {
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  height: 45px;
}
@media screen and (max-width: 639px) {
  .bnr-list a {
    font-size: 12px;
    line-height: 1.5;
  }
  .bnr-list a img {
    height: 30px;
  }
}
.bnr-list li.bnr-txt {
  font-size: 2rem;
  font-weight: 600;
  line-height: 60px;
  background: #fefefe;
}
@media screen and (max-width: 639px) {
  .bnr-list li.bnr-txt {
    font-size: 1.5rem;
  }
}

.sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sns-list.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 15px 0;
}
@media screen and (max-width: 1025px) {
  .sns-list.center2 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.sns-list li a {
  width: 35px;
  height: 35px;
  border: 1px solid #fff;
  line-height: 35px;
  font-size: 17px;
  color: #fefefe;
  display: block;
  background: #333;
  border-radius: 100%;
  text-align: center;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  position: relative;
  font-weight: 600;
  padding-left: 1px;
}
.sns-list li a:hover {
  opacity: 0.7;
}
.sns-list li a.btn-facebook {
  background: #1877f2;
}
.sns-list li a.btn-twitter {
  background: #1da1f2;
}
.sns-list li a.btn-line {
  background: #06c755;
  line-height: 1;
  padding-top: 8px;
}
.sns-list li a.btn-line img {
  width: 18px;
}
.sns-list li a.btn-youtube {
  background: #c4302b;
}
.sns-list li a.btn-instagram {
  overflow: hidden;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
}
.sns-list li a.btn-instagram i {
  position: relative;
  z-index: 2;
}
.sns-list li a.btn-instagram:before {
  content: "";
  position: absolute;
  /*絶対配置*/
  top: 18px;
  /*ずらす*/
  left: -10px;
  /*ずらす*/
  width: 50px;
  /*グラデーションカバーの幅*/
  height: 50px;
  /*グラデーションカバーの高さ*/
  background: radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
  /*グラデーション②*/
}
.sns-list li:not(:last-child) {
  margin-right: 10px;
}
@media screen and (max-width: 1025px) {
  .sns-list li:not(:last-child) {
    margin-right: 5px;
    margin-bottom: 0;
  }
}

.title-bg2 {
  color: #E6EAFC;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  line-height: 1.1;
  text-transform: uppercase;
  font-size: 12rem;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  white-space: nowrap;
  text-align: left;
}
@media all and (max-width: 1300px) {
  .title-bg2 {
    font-size: 10rem;
  }
}
@media screen and (max-width: 1101px) {
  .title-bg2 {
    font-size: 8rem;
  }
}
@media screen and (max-width: 1025px) {
  .title-bg2 {
    font-size: 6rem;
  }
}
@media screen and (max-width: 639px) {
  .title-bg2 {
    font-size: 4.5rem;
  }
}

.title50.heading,
.title40.heading,
.title32.heading,
.title28.heading,
.title24.heading,
.title22.heading,
.title20.heading,
.title18.heading,
.title16.heading {
  margin-bottom: 30px;
  line-height: 1.6;
}
@media screen and (max-width: 1025px) {
  .title50.heading,
  .title40.heading,
  .title32.heading,
  .title28.heading,
  .title24.heading,
  .title22.heading,
  .title20.heading,
  .title18.heading,
  .title16.heading {
    margin-bottom: 25px;
    letter-spacing: 0.15em;
  }
}

.title50 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 5rem;
}
@media screen and (max-width: 1025px) {
  .title50 {
    font-size: 4rem;
  }
}
@media screen and (max-width: 639px) {
  .title50 {
    font-size: 3.2rem;
  }
}

.title40 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 4rem;
}
@media screen and (max-width: 1025px) {
  .title40 {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 639px) {
  .title40 {
    font-size: 2.4rem;
  }
}

.title32 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 3.2rem;
}
@media screen and (max-width: 1025px) {
  .title32 {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 639px) {
  .title32 {
    font-size: 2rem;
  }
}

.title28 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 2.8rem;
}
@media screen and (max-width: 1025px) {
  .title28 {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 639px) {
  .title28 {
    font-size: 1.8rem;
  }
}

.title24 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 2.4rem;
}
@media screen and (max-width: 1025px) {
  .title24 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 639px) {
  .title24 {
    font-size: 1.7rem;
  }
}

.title22 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 2.2rem;
}
@media screen and (max-width: 1025px) {
  .title22 {
    font-size: 1.85rem;
  }
}
@media screen and (max-width: 639px) {
  .title22 {
    font-size: 1.6rem;
  }
}

.title20 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 2rem;
}
@media screen and (max-width: 1025px) {
  .title20 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 639px) {
  .title20 {
    font-size: 1.45rem;
  }
}

.title18 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 1.8rem;
}
@media screen and (max-width: 1025px) {
  .title18 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 639px) {
  .title18 {
    font-size: 1.35rem;
    letter-spacing: 0.15em;
  }
}

.title16 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 1.6rem;
}
@media screen and (max-width: 1025px) {
  .title16 {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 639px) {
  .title16 {
    font-size: 1.25rem;
    letter-spacing: 0.15em;
  }
}

.title01 {
  margin-bottom: 12px;
  padding-bottom: 7px;
  border-bottom: 2px solid #cfd4d5;
  font-weight: 600;
}

.title02 {
  text-align: center;
  margin-bottom: 20px;
}
.title02.tleft {
  text-align: left;
}
.title02 span {
  display: inline-block;
  border-bottom: 1px solid #29211c;
  font-size: 2.6rem;
  font-weight: 600;
}
.title02 span.eng-txt {
  font-size: 4.8rem;
  line-height: 1.4;
  color: #fff;
  border-bottom-color: #f7f4ea;
}
@media screen and (max-width: 639px) {
  .title02 span.eng-txt {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 639px) {
  .title02 span {
    font-size: 1.5rem;
  }
}

.title03 span {
  background: #fff;
  border: 1px solid #0B87E6;
  padding: 2px 5px;
  font-weight: 600;
  font-size: 1.1em;
  color: #0B87E6;
}
.title03.type1 span {
  background: #ff8f4e;
}
.title03.type2 span {
  background: #2D4A86;
}

.title04 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}
.title04 .sub {
  font-size: 2.4rem;
  color: #0B87E6;
  padding-right: 10px;
  padding-left: 10px;
  border-right: 1px solid #0B87E6;
  border-left: 1px solid #0B87E6;
  margin-right: 10px;
}
.title04 .main {
  font-size: 2.5rem;
}
@media screen and (max-width: 639px) {
  .title04 .sub {
    font-size: 1.8rem;
  }
  .title04 .main {
    font-size: 1.8rem;
  }
}

.fb-wrap {
  min-height: 400px;
  text-align: center;
  margin: 0 auto;
}

.box1 {
  position: relative;
  z-index: 4;
  margin-inline: auto;
  background: #fff;
  padding: 25px;
}
@media screen and (max-width: 639px) {
  .box1 {
    padding: 15px;
  }
}
.box1.type1 {
  margin-top: -40px;
  max-width: 700px;
}
@media screen and (max-width: 639px) {
  .box1.type1 {
    max-width: 90%;
  }
}

.box2 {
  font-weight: 600;
  margin-top: 30px;
  background: rgba(45, 74, 134, 0.6);
  padding: 20px;
  color: #fff;
}

.slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.slick-prev,
.slick-next {
  background: rgba(255, 255, 255, 0.8) !important;
  width: 35px !important;
  height: 35px !important;
  z-index: 20 !important;
  border-radius: 50% !important;
  border: 1px solid #aaa !important;
  top: 40%;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.slick-prev:before,
.slick-next:before {
  color: #333 !important;
}
.slick-prev:hover,
.slick-next:hover {
  background: #dbdbdb;
}

.slick-prev {
  left: 0 !important;
}

.slick-next {
  right: 0 !important;
}

.content-head {
  height: 340px;
}
@media screen and (max-width: 639px) {
  .content-head {
    height: 250px;
  }
}

.content-txt {
  position: relative;
  max-width: 600px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(3px);
  padding: 20px 30px;
  margin: -50px auto 40px;
}
.content-txt.type1 {
  margin-top: 0;
  margin-left: 0;
}
@media screen and (max-width: 639px) {
  .content-txt {
    padding: 20px;
    max-width: 90%;
  }
}

.slide_list {
  position: relative;
  display: none;
}
.slide_list li {
  margin-right: 1%;
}
.slide_list li img {
  width: auto;
  height: 240px;
  -webkit-transition: -webkit-filter 0.2s ease-in;
  transition: -webkit-filter 0.2s ease-in;
  transition: filter 0.2s ease-in;
  transition: filter 0.2s ease-in, -webkit-filter 0.2s ease-in;
}
.slide_list li:hover img {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}
@media screen and (max-width: 639px) {
  .slide_list li {
    margin-right: 4%;
  }
  .slide_list li img {
    height: 200px;
  }
}

.flow-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}
.flow-list.type1 {
  display: block;
}
.flow-list.type1 > li {
  width: 90%;
}
.flow-list.type1 > li:nth-child(2) {
  margin-left: 2%;
}
.flow-list.type1 > li:nth-child(3) {
  margin-left: 4%;
}
.flow-list.type1 > li:nth-child(4) {
  margin-left: 6%;
}
.flow-list.type1 > li:nth-child(5) {
  margin-left: 8%;
}
.flow-list.type1 > li .flow-title {
  margin-bottom: 10px;
}
@media screen and (max-width: 639px) {
  .flow-list.type1 > li {
    width: 100%;
  }
  .flow-list.type1 > li:nth-child(2), .flow-list.type1 > li:nth-child(3), .flow-list.type1 > li:nth-child(4), .flow-list.type1 > li:nth-child(5) {
    margin-left: 0;
  }
}
.flow-list > li {
  width: 48%;
  margin-right: 4%;
  margin-bottom: 30px;
  padding: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: #f4f1ee;
  -webkit-box-shadow: 0 0 15px rgba(41, 33, 28, 0.05);
          box-shadow: 0 0 15px rgba(41, 33, 28, 0.05);
  font-weight: 600;
}
.flow-list > li.type100 {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  margin-right: 0;
}
.flow-list > li:nth-child(2n) {
  margin-right: 0;
}
@media screen and (max-width: 639px) {
  .flow-list > li {
    width: 100%;
    margin: 0 auto 30px;
    padding: 15px;
  }
  .flow-list > li:nth-child(2n) {
    margin-right: auto;
  }
}
.flow-list > li .flow-num {
  color: #0B87E6;
  font-size: 3.5rem;
  border-right: 1px solid #0B87E6;
  padding-right: 15px;
  -ms-flex-item-align: start;
      align-self: flex-start;
  line-height: 1.2;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
}
.flow-list > li .flow-num span {
  font-size: 1.3rem;
  display: block;
  text-align: center;
}
.flow-list > li .txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flow-list > li .txt img {
  width: 140px;
}
.flow-list > li .flow-title {
  padding-bottom: 4px;
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
  margin-left: 20px;
}
@media screen and (max-width: 639px) {
  .flow-list > li .flow-num {
    font-size: 2.2rem;
    text-align: center;
    border-right: 0;
    padding: 0 0 4px;
    border-bottom: 1px solid #133beb;
  }
  .flow-list > li .flow-title {
    font-size: 1.3rem;
  }
  .flow-list > li .txt {
    margin: 20px auto 0;
  }
  .flow-list > li .txt img {
    width: 100px;
  }
}

.kiritori {
  height: 1px;
  border-top: 1px solid rgba(11, 135, 230, 0.2);
  margin: 5em auto;
  width: 20%;
  display: block;
}
@media screen and (max-width: 639px) {
  .kiritori {
    margin: 3em auto;
  }
}
.kiritori.kiritori_mini {
  width: 80%;
  margin: 1.5em auto;
}

.column2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.column2 .child {
  width: 48%;
}
.column2 .child2 {
  width: 40%;
}
.column2 .child3 {
  width: 55%;
}
@media screen and (max-width: 639px) {
  .column2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .column2 .child,
  .column2 .child2,
  .column2 .child3 {
    width: 100%;
  }
  .column2 .child.column2-img,
  .column2 .child2.column2-img,
  .column2 .child3.column2-img {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-bottom: 30px;
  }
}

.column3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.column3 .child {
  width: 31%;
}
.column3 .child-wide {
  width: 65%;
}
.column3 .child-narrow {
  width: 30%;
}
@media screen and (max-width: 639px) {
  .column3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .column3 .child,
  .column3 .child-wide,
  .column3 .child-narrow {
    width: 100%;
    margin-bottom: 30px;
  }
  .column3 .child:last-child,
  .column3 .child-wide:last-child,
  .column3 .child-narrow:last-child {
    margin-bottom: 0;
  }
  .column3 .child.column3-img,
  .column3 .child-wide.column3-img,
  .column3 .child-narrow.column3-img {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}

.article-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
}
.article-box .left {
  width: 25%;
  position: sticky;
  left: 0;
  top: 100px;
}
.article-box .right {
  width: 72%;
}
@media screen and (max-width: 1101px) {
  .article-box {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .article-box .left {
    width: 90%;
    margin: 0 auto 30px;
  }
  .article-box .right {
    width: 90%;
  }
}

.btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 600px;
  margin: 0 auto 45px;
}
.btn-box a {
  display: block;
  width: 48%;
  text-align: center;
  font-weight: 600;
  background: #0B87E6;
  padding: 15px 4px;
  color: #111;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.btn-box a:after {
  font-family: "Font Awesome 5 Free";
  content: "\f078";
  font-weight: 900;
  margin-left: 5px;
}
.btn-box a:hover {
  background: #cfd4d5;
  color: #fff;
}
@media screen and (max-width: 639px) {
  .btn-box {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .btn-box a {
    width: 90%;
    margin: 0 auto 15px;
    padding: 10px 0;
  }
}

.page {
  text-align: center;
}

.top-icon-list > li {
  position: relative;
  padding: 20px 15px;
  background-image: -webkit-gradient(linear, left top, right bottom, from(#fff), color-stop(#fff), to(rgba(34, 71, 150, 0.2)));
  background-image: linear-gradient(to right bottom, #fff, #fff, rgba(34, 71, 150, 0.2));
  border: 4px solid #224796;
  -webkit-box-shadow: 5px 5px #dbdbdb;
          box-shadow: 5px 5px #dbdbdb;
  font-size: 1.7rem;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 1025px) {
  .top-icon-list > li {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 20px;
  }
  .top-icon-list > li:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 639px) {
  .top-icon-list {
    margin-bottom: -20px;
  }
  .top-icon-list > li {
    width: 95%;
    margin: 0 auto 20px;
    font-size: 1.3rem;
  }
  .top-icon-list > li:nth-child(2n) {
    margin-right: auto;
  }
}

#sp-nav .sp-info-wrap {
  margin: 15px auto;
  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;
}
#sp-nav .sp-info-wrap a {
  display: block;
  color: #133beb;
  font-weight: 600;
  font-size: 13px;
  border-bottom: 2px solid #133beb;
  padding: 4px 0;
}
#sp-nav .sp-info-wrap a:not(:last-of-type) {
  margin-right: 10px;
}

.taishou-block {
  padding: 8px;
  background: #fff;
  border-radius: 8px;
  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-top: 10px;
}
.taishou-block.type1 {
  display: block;
}
.taishou-block .lead {
  font-size: 1.3rem;
  padding: 3px 5px;
  font-weight: 600;
  background: #133beb;
  color: #fff;
  margin-right: 10px;
}
.taishou-block .list-inline {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.policy-txt {
  max-width: 650px;
  margin: 40px auto;
}
.policy-txt .txt-inner {
  line-height: 2;
  font-size: 1.7rem;
}
@media screen and (max-width: 639px) {
  .policy-txt {
    padding: 0 15px;
  }
  .policy-txt .txt-inner {
    font-size: 1.3rem;
  }
}

.policy-lead {
  text-align: center;
  letter-spacing: 0.15em;
  font-size: 2rem;
  margin-bottom: 40px;
}
@media screen and (max-width: 639px) {
  .policy-lead {
    font-size: 1.5rem;
  }
}

.top-contact {
  position: relative;
  z-index: 4;
}

.service-box-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 639px) {
  .service-box-wrap {
    margin-bottom: 0;
  }
}

.service-box {
  width: 24%;
}
@media screen and (max-width: 1025px) {
  .service-box {
    width: 48%;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 639px) {
  .service-box {
    width: 90%;
    margin: 0 auto 60px;
  }
}
.service-box a {
  display: block;
  position: relative;
}
.service-box a .service-img {
  width: 100%;
  height: 280px;
  overflow: hidden;
  border: 3px solid #133beb;
  border-radius: 20px;
  background: #000;
}
.service-box a .service-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit:cover;";
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  opacity: 0.8;
}
@media screen and (max-width: 639px) {
  .service-box a .service-img {
    height: 250px;
  }
}
.service-box a .service-txt-box {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -40px;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  z-index: 4;
  width: 80%;
}
@media screen and (max-width: 639px) {
  .service-box a .service-txt-box {
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.service-box a .service-title {
  color: #111;
  line-height: 1.4;
  padding: 15px;
  -webkit-transition: all 0.15s ease-in;
  transition: all 0.15s ease-in;
}
.service-box a .service-title .eng {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  color: #0B87E6;
  display: block;
}
.service-box a .service-title .ja {
  font-size: 1.15em;
}
.service-box a .btn-more {
  background: #111;
  color: #fff;
  padding: 5px;
  text-align: center;
  width: 100%;
  -webkit-transition: background-color 0.15s ease-in;
  transition: background-color 0.15s ease-in;
}
.service-box a .btn-more span {
  font-size: 0.85em;
}
.service-box a:hover .service-img img {
  opacity: 1;
}
.service-box a:hover .service-txt-box {
  -webkit-box-shadow: 0 0 15px rgba(207, 212, 213, 0.2);
          box-shadow: 0 0 15px rgba(207, 212, 213, 0.2);
}
.service-box a:hover .service-txt-box .service-title {
  color: #0B87E6;
}
.service-box a:hover .service-txt-box .btn-more {
  background: #133beb;
}

.top-lead01 {
  max-width: 900px;
  position: relative;
  background: #fff;
  padding: 20px;
  margin: -90px auto 0;
}
@media screen and (max-width: 639px) {
  .top-lead01 {
    padding: 15px 10px;
    margin-top: -60px;
  }
}

.half-box {
  max-width: 900px;
  margin-left: auto;
}

.business-list a {
  display: block;
  position: relative;
  -webkit-box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
          box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
.business-list a:hover figure img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.business-list figure {
  height: 350px;
  overflow: hidden;
  border-radius: 10px;
}
.business-list figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.2s ease-in transform;
  transition: 0.2s ease-in transform;
}
@media screen and (max-width: 639px) {
  .business-list figure {
    height: 250px;
  }
}

.business-list-title {
  font-size: 2.2rem;
  position: absolute;
  right: 0;
  bottom: -1px;
  background: #0B87E6;
  color: #fff;
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 600;
  padding: 10px 30px 10px 20px;
  border-radius: 15px 0 10px 0;
}
.business-list-title .eng {
  display: block;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  font-size: 1.4rem;
}
.business-list-title:after {
  position: absolute;
  content: "";
  right: 5px;
  top: 50%;
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: 900;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #0B87E6;
}
.business-list-title:before {
  position: absolute;
  content: "";
  right: 0;
  top: -30px;
  width: 30px;
  height: 30px;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26436/hem.svg) no-repeat right bottom/contain;
}
@media screen and (max-width: 639px) {
  .business-list-title {
    font-size: 1.4rem;
    text-shadow: none;
    padding-right: 80px;
  }
}

.area-block {
  position: relative;
  max-width: 700px;
  margin: 0 auto 80px;
}
.area-block .area-txt {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding-left: 200px;
}
.area-block .area-txt:before, .area-block .area-txt:after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.area-block .area-txt:before {
  left: -60px;
  width: 40px;
  height: 40px;
  background: rgba(34, 71, 150, 0.3);
  border-radius: 50%;
}
.area-block .area-txt:after {
  left: -100px;
  width: 40px;
  height: 1px;
  background: #224796;
}
@media screen and (max-width: 639px) {
  .area-block .area-txt {
    font-size: 1.4rem;
    position: relative;
    top: auto;
    left: auto;
    -webkit-transform: none;
            transform: none;
    padding-left: 20px;
  }
  .area-block .area-txt:before, .area-block .area-txt:after {
    -webkit-transform: none;
            transform: none;
  }
  .area-block .area-txt:before {
    left: 4px;
    top: -20px;
  }
}
@media screen and (max-width: 639px) and (max-width: 639px) {
  .area-block .area-txt:before {
    top: -130px;
  }
}
@media screen and (max-width: 639px) {
  .area-block .area-txt:after {
    left: 24px;
    top: 0;
    width: 1px;
    height: 30px;
  }
}
@media screen and (max-width: 639px) and (max-width: 639px) {
  .area-block .area-txt:after {
    top: -110px;
  }
}

.title-big {
  position: relative;
  text-align: center;
  z-index: 3;
  margin-bottom: 15px;
}
.title-big:before {
  position: relative;
  content: attr(data-title);
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 10rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  line-height: 1;
  margin-top: -100px;
  white-space: nowrap;
  color: #a0dbf1;
}
.title-big.type-left {
  text-align: left;
}
.title-big.type-left:before {
  margin-left: 0;
}
.title-big.type1 {
  color: #121212;
}
.title-big.type1:before {
  color: transparent;
  background-image: radial-gradient(circle, #2D4A86 0%, #0B87E6 50%, #90E0B7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 1;
}
.title-big.type3 {
  color: #fff;
}
.title-big.type3:before {
  color: transparent;
  background-image: radial-gradient(circle, #fff 0%, #fff 50%, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 1;
}
.title-big.type2 {
  color: #121212;
}
.title-big.type2 .ja {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #fff;
  margin-inline: auto;
  padding: 0 6px;
}
.title-big.type2:before {
  color: transparent;
  background-image: radial-gradient(circle, #224796 0%, #0B87E6 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 1;
}
.title-big {
  color: #fff;
}
.title-big .ja {
  display: block;
  font-size: 2.4rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1101px) {
  .title-big:before {
    margin-top: -60px;
    font-size: 6rem;
  }
  .title-big .ja {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 639px) {
  .title-big:before {
    margin-top: -30px;
    font-size: 3rem;
  }
  .title-big .ja {
    font-size: 1.4rem;
  }
  .title-big .eng {
    font-size: 2.6rem;
  }
}

.bg-stripe {
  background-image: repeating-linear-gradient(90deg, transparent, transparent 25%, rgba(51, 51, 51, 0.1) 25%, rgba(51, 51, 51, 0.1) calc(25% + 1px));
}

.top-strength-list {
  position: relative;
  gap: 20px 4%;
  width: 70%;
  margin-left: auto;
  z-index: 2;
}
@media screen and (max-width: 1101px) {
  .top-strength-list {
    width: 80%;
  }
}
@media screen and (max-width: 1025px) {
  .top-strength-list {
    width: 100%;
    max-width: 680px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 639px) {
  .top-strength-list {
    padding: 0 15px;
  }
}
.top-strength-list > li {
  position: relative;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
  border-bottom: 2px solid #dbdbdb;
  border-radius: 20px 0 20px 0;
  overflow: hidden;
}
.top-strength-list > li:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 60%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, right top, from(#dbdbdb), to(rgba(219, 219, 219, 0.4)));
  background-image: linear-gradient(to right, #dbdbdb, rgba(219, 219, 219, 0.4));
  clip-path: polygon(0 0, 100% 0, 81% 100%, 0% 100%);
  opacity: 0.4;
}
.top-strength-list .top-strength-title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 2;
}
.top-strength-list .top-strength-title .num {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  background: #e71430;
  border-radius: 50%;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  font-size: 2rem;
  color: #fff;
}
.top-strength-list .top-strength-title .num:after {
  position: absolute;
  content: "";
  left: 90%;
  top: 50%;
  width: 0;
  height: 0;
  margin-top: -8px;
  border-style: solid;
  border-width: 8px 0 8px 12px;
  border-color: transparent transparent transparent #e71430;
  z-index: -1;
}
.top-strength-list .top-strength-title .txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 16px;
  font-size: 1.8rem;
}
@media screen and (max-width: 639px) {
  .top-strength-list .top-strength-title .num {
    font-size: 1.6rem;
  }
  .top-strength-list .top-strength-title .txt {
    font-size: 1.4rem;
  }
}
.top-strength-list .strength-inner-list {
  margin: 10px 0 0 30px;
}
.top-strength-list .strength-inner-list > li {
  position: relative;
  padding-left: 24px;
  font-weight: 600;
}
.top-strength-list .strength-inner-list > li:before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  -webkit-transform: rotate(8deg);
          transform: rotate(8deg);
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26436/check.png) no-repeat center/contain;
}

.top-strength-more {
  padding-bottom: 120px;
}
@media screen and (max-width: 1101px) {
  .top-strength-more {
    padding-bottom: 260px;
  }
}
@media screen and (max-width: 639px) {
  .top-strength-more {
    padding-bottom: 120px;
  }
}

.top_flower-btn {
  position: relative;
}
.top_flower-btn a {
  display: block;
  position: relative;
  max-width: 800px;
  margin-inline: auto;
  -webkit-box-shadow: rgba(231, 20, 48, 0.1) 0px 25px 50px -12px;
          box-shadow: rgba(231, 20, 48, 0.1) 0px 25px 50px -12px;
  overflow: hidden;
  border-radius: 20px 0 20px 0;
}
.top_flower-btn a:before {
  position: absolute;
  content: "";
  right: -80px;
  top: -60px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, #f7f4ea, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
  border-radius: 50%;
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

.img-round {
  border-radius: 50px 0px 50px 0;
}

.img-cover {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
}

.ceo-wrap {
  position: relative;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 639px) {
  .ceo-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.ceo-wrap .ceo-img {
  width: 52%;
  padding-right: 40px;
  position: relative;
}
.ceo-wrap .ceo-img figure {
  position: relative;
  display: block;
  aspect-ratio: 1.2/1;
}
.ceo-wrap .ceo-img figure img {
  -webkit-box-shadow: rgba(41, 33, 28, 0.2) 4px 48px 60px 0px;
          box-shadow: rgba(41, 33, 28, 0.2) 4px 48px 60px 0px;
}
.ceo-wrap .ceo-img figure:before {
  position: absolute;
  content: "";
  right: -30px;
  bottom: -30px;
  width: 85%;
  height: 70%;
  z-index: -1;
  background-image: -webkit-gradient(linear, left top, right top, from(#90E0B7), color-stop(#a0dbf1), to(#fff));
  background-image: linear-gradient(to right, #90E0B7, #a0dbf1, #fff);
  opacity: 0.5;
  -webkit-filter: blur(3px);
          filter: blur(3px);
}
@media screen and (max-width: 639px) {
  .ceo-wrap .ceo-img {
    width: 80%;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    padding-right: 30px;
  }
  .ceo-wrap .ceo-img figure:before {
    right: -25px;
    bottom: -25px;
  }
}
.ceo-wrap .ceo-txt {
  width: 45%;
  -ms-flex-item-align: center;
      align-self: center;
}
.ceo-wrap .ceo-txt .inner {
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (max-width: 639px) {
  .ceo-wrap .ceo-txt {
    width: 100%;
  }
  .ceo-wrap .ceo-txt .inner {
    padding: 25px;
    margin-top: 25px;
  }
}

.tel-list {
  max-width: 700px;
  margin-inline: auto;
}
.tel-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px;
}
.tel-list li:not(:last-of-type) {
  border-bottom: 2px solid #dbdbdb;
  margin-bottom: 8px;
}
.tel-list li .title03 {
  margin-right: 20px;
  width: 6em;
}
.tel-list li .title03 span {
  padding: 8px 10px;
}

.contact-box {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact-box .lead {
  font-weight: 600;
  width: 10em;
  line-height: 1.4;
  text-align: center;
}
.contact-box .content {
  border-left: 2px solid #0B87E6;
  padding-left: 20px;
}
.contact-box .content .contact-box-tel {
  color: #0B87E6;
  font-weight: 600;
  font-size: 2.6rem;
  width: 200px;
  display: block;
  line-height: 1;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
}
.contact-box .content .contact-box-tel:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
  font-size: 0.6em;
}
.contact-box .content .contact-box-tel:hover {
  color: #0B87E6;
}
@media screen and (max-width: 639px) {
  .contact-box .content .contact-box-tel {
    font-size: 2rem;
  }
}

.pdf-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px 3%;
}
@media screen and (max-width: 639px) {
  .pdf-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.pdf-list a {
  display: block;
  text-align: center;
  background: #a0dbf1;
  color: #111;
  font-weight: 600;
  padding: 15px 4px;
  -webkit-transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
}
.pdf-list a:hover {
  background: #0B87E6;
  color: #fff;
}
.pdf-list a:after {
  font-family: "Font Awesome 5 Free";
  content: "\f1c1";
  font-weight: 900;
  margin-left: 6px;
}

@media screen and (max-width: 1300px) {
  .title-wrapper {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media screen and (max-width: 1025px) {
  .title-wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.js-span-text {
  opacity: 1;
}
.js-span-text span span {
  display: inline-block;
  opacity: 0;
}
.js-span-text span span:nth-child(1) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.1s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.1s forwards;
}
.js-span-text span span:nth-child(2) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.2s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.2s forwards;
}
.js-span-text span span:nth-child(3) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.3s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.3s forwards;
}
.js-span-text span span:nth-child(4) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.4s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.4s forwards;
}
.js-span-text span span:nth-child(5) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.5s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.5s forwards;
}
.js-span-text span span:nth-child(6) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.6s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.6s forwards;
}
.js-span-text span span:nth-child(7) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.7s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.7s forwards;
}
.js-span-text span span:nth-child(8) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.8s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.8s forwards;
}
.js-span-text span span:nth-child(9) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.9s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.9s forwards;
}
.js-span-text span span:nth-child(10) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1s forwards;
}
.js-span-text span span:nth-child(11) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.1s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.1s forwards;
}
.js-span-text span span:nth-child(12) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.2s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.2s forwards;
}
.js-span-text span span:nth-child(13) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.3s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.3s forwards;
}
.js-span-text span span:nth-child(14) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.4s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.4s forwards;
}
.js-span-text span span:nth-child(15) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.5s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.5s forwards;
}
.js-span-text span span:nth-child(16) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.6s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.6s forwards;
}
.js-span-text span span:nth-child(17) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.7s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.7s forwards;
}
.js-span-text span span:nth-child(18) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.8s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.8s forwards;
}
.js-span-text span span:nth-child(19) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.9s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.9s forwards;
}
.js-span-text span span:nth-child(20) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2s forwards;
}
.js-span-text span span:nth-child(21) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.1s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.1s forwards;
}
.js-span-text span span:nth-child(22) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.2s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.2s forwards;
}
.js-span-text span span:nth-child(23) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.3s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.3s forwards;
}
.js-span-text span span:nth-child(24) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.4s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.4s forwards;
}
.js-span-text span span:nth-child(25) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.5s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.5s forwards;
}
.js-span-text span span:nth-child(26) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.6s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.6s forwards;
}
.js-span-text span span:nth-child(27) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.7s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.7s forwards;
}
.js-span-text span span:nth-child(28) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.8s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.8s forwards;
}
.js-span-text span span:nth-child(29) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.9s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.9s forwards;
}
.js-span-text span span:nth-child(30) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3s forwards;
}
.js-span-text span span:nth-child(31) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.1s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.1s forwards;
}
.js-span-text span span:nth-child(32) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.2s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.2s forwards;
}
.js-span-text span span:nth-child(33) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.3s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.3s forwards;
}
.js-span-text span span:nth-child(34) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.4s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.4s forwards;
}
.js-span-text span span:nth-child(35) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.5s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.5s forwards;
}
.js-span-text span span:nth-child(36) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.6s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.6s forwards;
}
.js-span-text span span:nth-child(37) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.7s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.7s forwards;
}
.js-span-text span span:nth-child(38) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.8s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.8s forwards;
}
.js-span-text span span:nth-child(39) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.9s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.9s forwards;
}
.js-span-text span span:nth-child(40) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4s forwards;
}
.js-span-text span span:nth-child(41) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.1s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.1s forwards;
}
.js-span-text span span:nth-child(42) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.2s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.2s forwards;
}
.js-span-text span span:nth-child(43) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.3s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.3s forwards;
}
.js-span-text span span:nth-child(44) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.4s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.4s forwards;
}
.js-span-text span span:nth-child(45) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.5s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.5s forwards;
}

@-webkit-keyframes text {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px) translateY(-10px) scale(1.3);
            transform: translateX(-20px) translateY(-10px) scale(1.3);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes text {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px) translateY(-10px) scale(1.3);
            transform: translateX(-20px) translateY(-10px) scale(1.3);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
/* greet_block
----------------------------------*/
.greet_block {
  position: relative;
  margin: 150px 0 300px;
}
.greet_block:last-of-type {
  margin-bottom: 2%;
}
.greet_block.type_b .greet_img {
  right: 0;
}
.greet_block.type_b .greet_txt {
  margin-right: 0;
  margin-left: 0;
}

.greet_img {
  overflow: hidden;
  position: absolute;
  top: -40%;
  width: 60%;
  height: 250%;
}
.greet_img img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
}

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

.greet_title {
  margin-bottom: 24px;
  color: #00381f;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.4;
}

.greet-area {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  z-index: 1;
  margin: 40px auto 40px;
  max-width: 1200px;
}
.greet-area::before {
  content: "";
  position: absolute;
  width: 40%;
  top: 0;
  right: 10%;
  z-index: -1;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26436/staff.jpg) no-repeat center 20%/contain;
  border-radius: 5px;
  aspect-ratio: 1/1;
}
.greet-area .greet-area-box {
  position: relative;
  width: 50%;
  padding: 60px 60px;
  margin-right: auto;
  left: 10%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px;
}
.greet-area .greet-area-box .inner {
  position: relative;
  max-width: 700px;
  margin: auto;
  z-index: 1;
}
@media screen and (max-width: 1025px) {
  .greet-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .greet-area::before {
    width: 100%;
    height: 320px;
    padding-bottom: 36.25%;
    top: auto;
  }
  .greet-area .greet-area-box {
    width: 95%;
    padding: 30px;
    margin: 0 0 30.25% auto;
  }
}
@media screen and (max-width: 896px) {
  .greet-area {
    padding: 40px 0;
    margin: 80px 0 0;
    background-color: #fff;
  }
  .greet-area::before {
    right: 0%;
    top: 0;
    bottom: auto;
  }
  .greet-area .greet-area-box {
    left: auto;
    right: auto;
    width: 100%;
    margin: 20.25% auto 0;
    background: #fff;
    text-align: center;
  }
}
@media screen and (max-width: 639px) {
  .greet-area .greet-area-box {
    padding: 15px 25px;
  }
  .greet-area::before {
    height: 160px;
  }
}

.greet_block {
  position: relative;
  margin: 60px 0 140px;
}
.greet_block:last-of-type {
  margin-bottom: 2%;
}
.greet_block.type_b .greet_img {
  right: 0;
}
.greet_block.type_b .greet_txt {
  margin-left: 0;
  margin-right: 0;
}
.greet_block .greet_img {
  position: absolute;
  top: -10%;
  width: 60%;
  height: 120%;
  overflow: hidden;
}
.greet_block .greet_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
}
.greet_block .greet_txt {
  position: relative;
  z-index: 3;
  width: 57%;
  max-width: 770px;
  margin-left: auto;
  margin-right: 3em;
  padding: 45px;
  background-color: #fff;
  -webkit-box-shadow: 0 6px 15px rgba(36, 37, 38, 0.04);
          box-shadow: 0 6px 15px rgba(36, 37, 38, 0.04);
}
.greet_block .greet_title {
  margin-bottom: 24px;
  color: #00381f;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.4;
}

.shikaku-dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.shikaku-dl dt:not(:last-of-type),
.shikaku-dl dd:not(:last-of-type) {
  padding-bottom: 3px;
  margin-bottom: 3px;
  border-bottom: 0.9px solid #ddd;
}
.shikaku-dl dt {
  width: calc(100% - 4.5em);
  position: relative;
  padding-left: 1em;
}
.shikaku-dl dt:before {
  content: "●";
  font-size: 0.6em;
  color: #0B87E6;
  margin-right: 4px;
  position: absolute;
  left: 0;
  top: 0.5em;
}
.shikaku-dl dt .list-inline li {
  padding: 0;
}
.shikaku-dl dd {
  width: 4.5em;
  text-align: right;
  font-weight: 600;
}

.recruit-lead {
  position: relative;
  z-index: 2;
  text-align: center;
  margin: 0 auto -30px;
}

.fukidashi {
  position: relative;
  z-index: 2;
  text-align: center;
  margin: 0 auto 20px;
}
.fukidashi.type1 {
  margin-top: 0;
}
.fukidashi span {
  position: relative;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding: 12px 20px;
  border-radius: 40px;
  background: #dbdbdb;
  font-size: 2.6rem;
  color: #7c232a;
  line-height: 1.2;
  font-weight: 600;
}
@media screen and (max-width: 639px) {
  .fukidashi span {
    font-size: 1.8rem;
  }
}
.fukidashi span:before {
  position: absolute;
  content: "";
  left: 50%;
  bottom: -13px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 18px 20px 0 20px;
  border-color: #dbdbdb transparent transparent transparent;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}

.contents-list {
  gap: 40px 4%;
}
@media screen and (max-width: 1101px) {
  .contents-list {
    padding: 0 10px;
  }
}
@media screen and (max-width: 639px) {
  .contents-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.contents-list a {
  display: block;
  position: relative;
}
.contents-list a .num {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  position: absolute;
  left: 0.2em;
  top: -30px;
  padding-left: 0.05em;
  z-index: 2;
  line-height: 1;
  font-size: 5rem;
  text-shadow: 5px 5px 30px rgba(17, 17, 17, 0.3);
  font-weight: 700;
  color: #fff;
  -webkit-transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
}
.contents-list a:before {
  position: absolute;
  content: "0";
  color: #a0dbf1;
  left: -11px;
  top: -44px;
  font-size: 4.5rem;
  z-index: -1;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  -webkit-transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
}
.contents-list a figure {
  overflow: hidden;
  position: relative;
  aspect-ratio: 1.1/1;
}
.contents-list a figure:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(60%, transparent), to(rgba(19, 59, 235, 0.9)));
  background-image: linear-gradient(to bottom, transparent 0%, transparent 60%, rgba(19, 59, 235, 0.9) 100%);
  z-index: 2;
}
.contents-list a figure img {
  -webkit-transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
}
@media screen and (max-width: 1101px) {
  .contents-list a figure {
    aspect-ratio: 2/1;
  }
}
@media screen and (max-width: 639px) {
  .contents-list a figure {
    aspect-ratio: 1/1;
  }
}
.contents-list a .content-list_title {
  position: relative;
  max-width: 85%;
  margin: -24px auto 0;
  padding: 12px 10px;
  background: #fefefe;
  -webkit-box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
          box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  text-align: center;
  color: #333;
  font-weight: 600;
  font-size: 1.2em;
  z-index: 2;
}
.contents-list a:hover:before {
  color: #0B87E6;
}
.contents-list a:hover figure img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.contents-list a:hover .content-list_title:before {
  color: #F3CC1D;
}
@media screen and (max-width: 639px) {
  .contents-list li a:before {
    top: -30px;
    font-size: 3rem;
  }
  .contents-list li a .num {
    top: -20px;
    font-size: 3.6rem;
  }
  .contents-list li a .content-list_title {
    padding: 8px 10px;
  }
}

@media screen and (max-width: 639px) {
  .flow-area {
    padding: 0 20px;
  }
}
.flow-area li .num {
  position: relative;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto -10px;
  padding: 4px 10px;
  background: #fff;
  border-radius: 20px;
  line-height: 1;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
}
.flow-area li .num em {
  color: #0B87E6;
  font-size: 1.4em;
}
.flow-area li .num:before {
  position: absolute;
  content: "";
  left: 50%;
  bottom: -8px;
  width: 20px;
  height: 10px;
  margin-left: -12px;
  background: #fff;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
}
.flow-area li figure {
  max-width: 140px;
  margin: 0 auto 10px;
  padding: 25px 0;
  background: rgba(160, 219, 241, 0.6);
  border-radius: 41% 59% 48% 52%/58% 51% 49% 42%;
  -webkit-box-shadow: 3px 2px #fefefe;
          box-shadow: 3px 2px #fefefe;
}
.flow-area li figure img {
  width: 80px;
}
.flow-area li .title01 {
  text-align: center;
}

.voice-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  padding: 8px;
  background: #fff;
  border-radius: 50px;
  border: 1px solid #e71430;
}
.voice-top:after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: -5px;
  width: 10px;
  height: 10px;
  background: #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border: 1px solid;
  border-color: transparent #e71430 #0B87E6 transparent;
}

.voice-area {
  padding: 0 20px 30px;
}
.voice-area .voice-child {
  padding: 20px 0 0;
  position: relative;
  margin: 0 10px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(8%, rgba(255, 255, 255, 0)), color-stop(5.1%, rgba(255, 255, 255, 0.8)));
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 8%, rgba(255, 255, 255, 0.8) 5.1%);
  border-radius: 20px 0 20px 0;
}
.voice-area .voice-name {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 16px;
  background: #dbdbdb;
  border-radius: 20px 0 0 0;
}
.voice-area .voice-name:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 25%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(rgba(255, 255, 255, 0.6)));
  background-image: linear-gradient(to right, #fff, rgba(255, 255, 255, 0.6));
  clip-path: polygon(0 0, 100% 0, 84% 100%, 0% 100%);
  opacity: 0.6;
}
.voice-area .voice-name figure {
  position: relative;
  width: 70px;
  margin-top: -20px;
}
@media screen and (max-width: 639px) {
  .voice-area .voice-name figure {
    width: 45px;
  }
}
.voice-area .voice-name .txt {
  position: relative;
  font-weight: 600;
  margin-left: 16px;
}
.voice-area .voice-name .txt em {
  font-size: 1.3em;
  color: #29211c;
}
.voice-area .voice-comment {
  padding: 25px;
}
.voice-area .voice-comment .voice-lead {
  font-size: 1.1em;
  font-weight: 600;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #0B87E6;
}
.voice-area .voice-comment p {
  background-size: 100% 2.5em;
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(96%, transparent), to(rgb(193.5, 193.5, 193.5)));
  background-image: linear-gradient(to bottom, transparent 0%, transparent 96%, rgb(193.5, 193.5, 193.5) 100%);
  line-height: 2.5em;
  letter-spacing: 0;
}

#btn-fixed {
  position: fixed;
  right: 0;
  bottom: 80px;
  z-index: 20;
}
#btn-fixed a {
  display: block;
  width: 200px;
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
  -webkit-transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
}
#btn-fixed a:hover {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (max-width: 1101px) {
  #btn-fixed {
    bottom: 0;
  }
  #btn-fixed a {
    width: 180px;
  }
}
@media screen and (max-width: 639px) {
  #btn-fixed a {
    width: 160px;
  }
}

@media screen and (max-width: 639px) {
  .top-content-box {
    padding: 20px 20px 0;
    gap: 40px 0;
  }
}
.top-content-box a {
  display: block;
  position: relative;
  border: 1px solid;
  border-color: transparent #0B87E6 #0B87E6 #0B87E6;
  border-radius: 20px;
}
.top-content-box a figure {
  position: relative;
}
.top-content-box a figure:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, right bottom, from(#F3CC1D), color-stop(#f3b266), to(#e71430));
  background-image: linear-gradient(to right bottom, #F3CC1D, #f3b266, #e71430);
  mix-blend-mode: screen;
  opacity: 0.3;
  -webkit-transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
}
.top-content-box a:hover figure:before {
  opacity: 0;
}
.top-content-box .content-eng {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  position: absolute;
  top: -15px;
  z-index: 2;
}
.top-content-box .content-eng:before, .top-content-box .content-eng:after {
  display: block;
  content: "";
  height: 1px;
  background: #0B87E6;
}
.top-content-box .content-eng:before {
  width: 24px;
}
.top-content-box .content-eng:after {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.top-content-box .content-eng span {
  display: block;
  padding: 4px 20px;
  border-left: 1px solid #e71430;
  border-right: 1px solid #e71430;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  font-size: 2rem;
  line-height: 1;
  color: #111;
}
@media screen and (max-width: 639px) {
  .top-content-box .content-eng span {
    font-size: 1.8rem;
  }
}
.top-content-box figure {
  position: relative;
}
.top-content-box .content-title {
  position: relative;
  width: 100%;
  padding: 12px 15px;
  background: #7c232a;
  color: #fff;
  font-weight: 600;
  font-size: 1.2em;
  text-align: right;
  border-radius: 0 0 20px 20px;
  z-index: 2;
}
.top-content-box .content-title:before, .top-content-box .content-title:after {
  position: absolute;
  content: "";
  left: 0;
  width: 100%;
  height: 25px;
}
.top-content-box .content-title:before {
  top: -25px;
  background: #fff;
  clip-path: polygon(0 0, 100% 80%, 100% 100%, 0% 100%);
}
.top-content-box .content-title:after {
  top: -24px;
  background: #7c232a;
  clip-path: polygon(0 80%, 100% 0, 100% 100%, 0% 100%);
}
@media screen and (max-width: 639px) {
  .top-content-box .content-title {
    font-size: 1.3em;
  }
  .top-content-box .content-title:before, .top-content-box .content-title:after {
    height: 35px;
  }
}

.vision-list {
  font-weight: 600;
  color: #fff;
  max-width: 1000px;
  margin-inline: auto;
}
@media screen and (max-width: 1101px) {
  .vision-list {
    padding: 0 20px;
  }
}
.vision-list .child {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  background: rgba(17, 17, 17, 0.2);
}
.vision-list .vision-txt {
  font-size: 1.1em;
  letter-spacing: 0;
}
.vision-list .vision-txt p {
  background-size: 100% 2.5em;
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(97%, transparent), to(#eee));
  background-image: linear-gradient(to bottom, transparent 0%, transparent 97%, #eee 100%);
  line-height: 2.5em;
}

@media screen and (max-width: 1025px) {
  .staff-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 639px) {
  .staff-list {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }
}
.staff-list > li {
  position: relative;
}
.staff-list > li figure {
  max-width: 160px;
  margin: 0 auto 10px;
}
.staff-list .staff-dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.staff-list .staff-dl dt,
.staff-list .staff-dl dd {
  padding: 3px 5px;
  border-bottom: 1px solid #cfd4d5;
  font-size: 1.5rem;
}
@media screen and (max-width: 639px) {
  .staff-list .staff-dl dt,
  .staff-list .staff-dl dd {
    font-size: 1.1rem;
  }
}
.staff-list .staff-dl dt {
  width: 4em;
  font-weight: 600;
}
.staff-list .staff-dl dd {
  width: calc(100% - 4em);
  letter-spacing: 0;
}
.staff-list .staff-comment {
  position: relative;
  margin-top: 24px;
  padding: 20px;
  background: #fff;
  font-size: 1.5rem;
  letter-spacing: 0;
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}
.staff-list .staff-comment:before {
  position: absolute;
  content: "Comment";
  left: 25px;
  top: -3px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  font-size: 15px;
  color: #dbdbdb;
  line-height: 1;
}
@media screen and (max-width: 639px) {
  .staff-list .staff-comment {
    font-size: 1.2rem;
  }
}

.staff {
  max-width: 300px;
  margin: 0 auto 20px;
}

.staff-name {
  margin-bottom: 16px;
  text-align: center;
  line-height: 1.3;
  font-weight: 600;
  margin-top: 10px;
}
.staff-name .main {
  display: block;
  font-size: 1.3em;
}
.staff-name .sub {
  display: block;
  font-size: 1.2rem;
  color: #999;
  letter-spacing: 0;
}
@media screen and (max-width: 639px) {
  .staff-name .main {
    font-size: 1.4em;
  }
  .staff-name .sub {
    font-size: 1rem;
  }
}

.insurence-list > li {
  position: relative;
  padding: 18px;
}
.insurence-list > li:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: calc(100% - 80px);
  background: #e5ebce;
  border-radius: 15px 0 15px 0;
  -webkit-mask-image: -webkit-gradient(linear, left bottom, left top, from(#000), color-stop(rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0)));
  -webkit-mask-image: linear-gradient(to top, #000, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
          mask-image: -webkit-gradient(linear, left bottom, left top, from(#000), color-stop(rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0)));
          mask-image: linear-gradient(to top, #000, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
  opacity: 0.8;
}
.insurence-list > li:nth-child(2):before {
  background: #d9eeec;
}
.insurence-list > li:nth-child(3):before {
  background: #ebe0cc;
}
.insurence-list > li figure {
  position: relative;
  margin-bottom: -30px;
}
.insurence-list > li figure img {
  border-radius: 50%;
}
.insurence-list > li .title03 {
  margin-bottom: 20px;
  position: relative;
}
.insurence-list > li {
  font-weight: 600;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.greet-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 54%;
  height: 100%;
  -webkit-mask-image: linear-gradient(85deg, rgba(0, 0, 0, 0) 3.36%, rgba(0, 0, 0, 0.15) 13.27%, black 46.48%, black 53.3%, black 67.02%, rgba(0, 0, 0, 0.42) 83.72%, rgba(0, 0, 0, 0) 94.63%);
          mask-image: linear-gradient(85deg, rgba(0, 0, 0, 0) 3.36%, rgba(0, 0, 0, 0.15) 13.27%, black 46.48%, black 53.3%, black 67.02%, rgba(0, 0, 0, 0.42) 83.72%, rgba(0, 0, 0, 0) 94.63%);
}
.greet-img figure {
  height: 100%;
}
@media screen and (max-width: 1025px) {
  .greet-img {
    width: 100%;
    height: 400px;
    top: auto;
    bottom: 30px;
    -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(3.36%, rgba(0, 0, 0, 0)), color-stop(13.27%, rgba(0, 0, 0, 0.15)), color-stop(46.48%, black), color-stop(53.3%, black), color-stop(67.02%, black), color-stop(83.72%, rgba(0, 0, 0, 0.42)), color-stop(94.63%, rgba(0, 0, 0, 0)));
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 3.36%, rgba(0, 0, 0, 0.15) 13.27%, black 46.48%, black 53.3%, black 67.02%, rgba(0, 0, 0, 0.42) 83.72%, rgba(0, 0, 0, 0) 94.63%);
            mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(3.36%, rgba(0, 0, 0, 0)), color-stop(13.27%, rgba(0, 0, 0, 0.15)), color-stop(46.48%, black), color-stop(53.3%, black), color-stop(67.02%, black), color-stop(83.72%, rgba(0, 0, 0, 0.42)), color-stop(94.63%, rgba(0, 0, 0, 0)));
            mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 3.36%, rgba(0, 0, 0, 0.15) 13.27%, black 46.48%, black 53.3%, black 67.02%, rgba(0, 0, 0, 0.42) 83.72%, rgba(0, 0, 0, 0) 94.63%);
  }
}

.greet-wrap {
  width: 40%;
  margin-left: auto;
  padding: 0 4%;
}
.greet-wrap .greet-title {
  color: #90E0B7;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  font-size: 3em;
  line-height: 1;
}
.greet-wrap .greet-title em {
  font-size: 1.4em;
}
@media screen and (max-width: 639px) {
  .greet-wrap .greet-title {
    font-size: 2.5rem;
  }
}
.greet-wrap .greet-txt {
  color: #fff;
  margin-top: 40px;
}
@media screen and (max-width: 1025px) {
  .greet-wrap {
    width: 80%;
    margin: 0 auto;
    padding-bottom: 300px;
  }
}
@media screen and (max-width: 639px) {
  .greet-wrap {
    width: 90%;
  }
}

@media screen and (max-width: 1101px) {
  .top-business-btn {
    padding: 0 20px;
  }
}
.top-business-btn .top-business-child {
  position: relative;
}
.top-business-btn .top-business-child a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: 100%;
}
.top-business-btn .top-business-child a:hover figure img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.top-business-btn .top-business-child a figure {
  aspect-ratio: 3/2;
  overflow: hidden;
  position: relative;
  width: 55%;
  mix-blend-mode: luminosity;
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
          box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
}
@media screen and (max-width: 639px) {
  .top-business-btn .top-business-child a figure {
    width: 100%;
  }
}
.top-business-btn .top-business-child a .top-business-txt {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  z-index: 2;
  border-top: 2px solid #90E0B7;
  border-bottom: 2px solid #90E0B7;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(160, 219, 241, 0.5)), color-stop(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to right, rgba(160, 219, 241, 0.5), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
}
.top-business-btn .top-business-child a .top-business-txt .top-business-inner {
  padding: 30px 0px 25px 50px;
  position: relative;
  max-width: 80%;
  color: #111;
  font-weight: 600;
}
@media screen and (max-width: 1025px) {
  .top-business-btn .top-business-child a .top-business-txt .top-business-inner {
    max-width: 90%;
    padding: 20px 0px 25px 20px;
  }
}
@media screen and (max-width: 639px) {
  .top-business-btn .top-business-child a .top-business-txt .top-business-inner {
    padding-bottom: 12px;
    padding-left: 10px;
  }
}
.top-business-btn .top-business-child a .top-business-num {
  position: absolute;
  right: 40px;
  top: -40px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  color: rgba(144, 224, 183, 0.6);
  color: #fff;
  font-size: 7rem;
  line-height: 1;
}
@media screen and (max-width: 639px) {
  .top-business-btn .top-business-child a .top-business-num {
    top: -20px;
    right: 10px;
    font-size: 4rem;
  }
}
.top-business-btn .top-business-child a .top-business-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 3;
}
.top-business-btn .top-business-child a .top-business-title .ja {
  font-weight: 600;
  font-size: 2.2rem;
  color: #0B87E6;
}
.top-business-btn .top-business-child a .top-business-title .icon {
  width: 40px;
  height: 40px;
  margin-left: 25px;
  background: #0B87E6;
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
  font-size: 1.4rem;
  -webkit-animation: pulse 1.6s linear infinite;
          animation: pulse 1.6s linear infinite;
  color: #fff;
}
@media screen and (max-width: 639px) {
  .top-business-btn .top-business-child a .top-business-title .icon {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 13px;
  }
}
@media screen and (max-width: 639px) {
  .top-business-btn .top-business-child a .top-business-title .ja {
    font-size: 1.5rem;
  }
}
.top-business-btn .top-business-child a .top-business-more {
  width: 190px;
  margin-left: auto;
  margin-right: 30px;
  margin-bottom: -2px;
  padding: 4px 8px;
  border: solid 2px;
  border-color: #90E0B7 #90E0B7 transparent #90E0B7;
  color: #133beb;
  background: #fefefe;
  font-weight: 600;
  font-size: 1.4rem;
  text-align: center;
  -webkit-transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
}
@media screen and (max-width: 639px) {
  .top-business-btn .top-business-child a .top-business-more {
    font-size: 13px;
  }
}
.top-business-btn .top-business-child a:hover figure img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.top-business-btn .top-business-child a:hover .top-business-more {
  background: #111;
  border-radius: 8px 8px 0 0;
  border-color: #111 #111 transparent #111;
  color: #fff;
}
@media screen and (max-width: 639px) {
  .top-business-btn {
    padding: 0 20px;
  }
  .top-business-btn .top-business-child a .top-business-txt {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    width: 95%;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(160, 219, 241, 0.5)), color-stop(rgba(255, 255, 255, 0.6)), to(rgba(255, 255, 255, 0)));
    background-image: linear-gradient(to bottom, rgba(160, 219, 241, 0.5), rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8), 0 0 0 0 rgba(255, 255, 255, 0.8);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8), 0 0 0 0 rgba(255, 255, 255, 0.8);
  }
  30% {
    -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0), 0 0 0 0 rgba(255, 255, 255, 0.8);
            box-shadow: 0 0 0 30px rgba(255, 255, 255, 0), 0 0 0 0 rgba(255, 255, 255, 0.8);
  }
  65% {
    -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0), 0 0 0 10px rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 30px rgba(255, 255, 255, 0), 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0), 0 0 0 10px rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0), 0 0 0 10px rgba(255, 255, 255, 0);
  }
}

@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8), 0 0 0 0 rgba(255, 255, 255, 0.8);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8), 0 0 0 0 rgba(255, 255, 255, 0.8);
  }
  30% {
    -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0), 0 0 0 0 rgba(255, 255, 255, 0.8);
            box-shadow: 0 0 0 30px rgba(255, 255, 255, 0), 0 0 0 0 rgba(255, 255, 255, 0.8);
  }
  65% {
    -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0), 0 0 0 10px rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 30px rgba(255, 255, 255, 0), 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0), 0 0 0 10px rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0), 0 0 0 10px rgba(255, 255, 255, 0);
  }
}
.bg-works {
  position: relative;
}
.bg-works:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26436/top-works.jpg) no-repeat center/cover;
}
.bg-works .top-works-bg {
  position: absolute;
  right: -5%;
  top: 0;
  width: 65%;
  height: 100%;
  background: rgba(114, 186, 202, 0.7);
  -webkit-transform: skew(-12deg);
          transform: skew(-12deg);
}
@media screen and (max-width: 1025px) {
  .bg-works .top-works-bg {
    width: 80%;
  }
}
@media screen and (max-width: 639px) {
  .bg-works .top-works-bg {
    width: 100%;
    height: 75%;
    top: auto;
    left: 0;
    bottom: -10%;
    -webkit-transform: skewY(-7deg);
            transform: skewY(-7deg);
  }
}
.bg-works .top-works-bg {
  z-index: 2;
}
.bg-works .top-works-bg:before, .bg-works .top-works-bg:after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  height: 100%;
}
@media screen and (max-width: 639px) {
  .bg-works .top-works-bg:before, .bg-works .top-works-bg:after {
    top: auto;
    bottom: 0;
  }
}
.bg-works .top-works-bg:before {
  width: 94%;
  background: rgba(64, 111, 198, 0.4);
}
@media screen and (max-width: 639px) {
  .bg-works .top-works-bg:before {
    width: 100%;
    height: 94%;
  }
}
.bg-works .top-works-bg:after {
  width: 88%;
  background: rgba(11, 32, 72, 0.8);
  mix-blend-mode: multiply;
}
@media screen and (max-width: 639px) {
  .bg-works .top-works-bg:after {
    width: 100%;
    height: 86%;
  }
}
.bg-works .top-works-inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 2;
  width: 40%;
  height: 380px;
  margin-left: auto;
  margin-right: 40px;
}
.bg-works .top-works-inner a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 0 40px;
}
@media screen and (max-width: 1025px) {
  .bg-works .top-works-inner {
    width: 55%;
    height: 350px;
  }
  .bg-works .top-works-inner a {
    padding: 0 20px;
  }
}
@media screen and (max-width: 639px) {
  .bg-works .top-works-inner {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 300px 0 40px;
  }
}

.icon-triangle {
  width: 90px;
  height: 90px;
  background: rgba(0, 0, 0, 0.3);
  border: 3px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  line-height: 90px;
  text-align: center;
  font-size: 3rem;
  -webkit-animation: pulse 1.6s linear infinite;
          animation: pulse 1.6s linear infinite;
  color: #fff;
}
@media screen and (max-width: 639px) {
  .icon-triangle {
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 2rem;
  }
}

.js-tilt-glare {
  border-radius: 25px !important;
}

.partner-bnr-list {
  gap: 10px 10px;
}
@media screen and (max-width: 1025px) {
  .partner-bnr-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 639px) {
  .partner-bnr-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.partner-bnr-list li a {
  position: relative;
  display: block;
  width: 100%;
  height: 100px;
  overflow: hidden;
  background: #fafafa;
}
@media screen and (max-width: 639px) {
  .partner-bnr-list li a {
    height: 70px;
  }
}
.partner-bnr-list li a img {
  mix-blend-mode: darken;
  position: absolute;
  display: block;
  width: 70%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.partner-bnr-list li a img.type_contain {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}

.company-dl {
  border-top: 3px solid #333;
  padding-top: 10px;
}
.company-dl .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px 10px;
}
.company-dl .inner:not(:last-of-type) {
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(144, 224, 183, 0.7);
}
.company-dl .inner dt {
  width: 8em;
  font-weight: 600;
  color: #333;
}
.company-dl .inner dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 24px;
}
@media screen and (max-width: 639px) {
  .company-dl .inner dd {
    margin-left: 12px;
  }
}
@media screen and (max-width: 639px) {
  .company-dl .inner dt {
    width: 7em;
  }
  .company-dl .inner dd {
    margin-left: 10px;
  }
}

.slide-box {
  max-width: 850px;
  margin-inline: auto;
}
.slide-box .thumb-item a {
  display: block;
  width: 100%;
  aspect-ratio: 4/2.5;
  overflow: hidden;
}
.slide-box .thumb-item a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.slide-box .thumb-item-nav .child {
  display: block;
  height: 100px;
  overflow: hidden;
}
.slide-box .thumb-item-nav .child img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: initial !important;
}

.works-img {
  padding: 0 20px;
  margin-bottom: 10px;
}
.works-img a {
  display: block;
  aspect-ratio: 4/2.5;
  overflow: hidden;
}
.works-img a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-news-btn {
  position: absolute;
  left: -10px;
  top: 160px;
}
.top-news-btn a {
  width: 200px;
}
@media screen and (max-width: 639px) {
  .top-news-btn {
    position: relative;
    left: auto;
    top: auto;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  .top-news-btn a {
    width: 180px;
    margin-left: 0;
  }
}

.top-recruit-box {
  display: block;
  position: relative;
  clip-path: inset(0);
  -webkit-transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
}
@media screen and (max-width: 639px) {
  .top-recruit-box {
    margin-top: -30px;
  }
}
.top-recruit-box figure {
  position: relative;
  aspect-ratio: 3/1;
}
@media screen and (max-width: 1440px) {
  .top-recruit-box figure {
    aspect-ratio: 3/1.5;
  }
}
@media screen and (max-width: 639px) {
  .top-recruit-box figure {
    aspect-ratio: 1.1/1;
  }
}
.top-recruit-box figure {
  z-index: -1;
}
.top-recruit-box figure img {
  -o-object-position: center 23%;
     object-position: center 23%;
  -webkit-filter: brightness(0.5);
          filter: brightness(0.5);
}
.top-recruit-box figure:before, .top-recruit-box figure:after {
  position: absolute;
  content: "";
  top: 0;
  width: 7px;
  height: 100%;
  background: #fff;
  z-index: 2;
  margin-left: -3px;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.top-recruit-box figure:before {
  left: 33.33%;
}
.top-recruit-box figure:after {
  left: 66.66%;
}
@media screen and (max-width: 639px) {
  .top-recruit-box figure:before, .top-recruit-box figure:after {
    display: none;
  }
}
.top-recruit-box .top-recruit-txt {
  position: absolute;
  left: 50%;
  top: 53%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  color: #fff;
  font-weight: 600;
  text-align: center;
  text-shadow: 0 0 6px rgba(45, 74, 134, 0.8);
}
.top-recruit-box .top-recruit-txt .mtext2 {
  font-size: 3.5rem;
}
.top-recruit-box .top-recruit-txt .more {
  width: 180px;
  margin: 40px auto 0;
  padding: 10px 8px;
  background: #fefefe;
  border-radius: 50px;
  -webkit-box-shadow: 0 0 0 5px rgba(34, 71, 150, 0.2);
          box-shadow: 0 0 0 5px rgba(34, 71, 150, 0.2);
  color: #0B87E6;
  text-align: center;
  text-shadow: none;
  -webkit-transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
}
@media screen and (max-width: 1440px) {
  .top-recruit-box .top-recruit-txt .mtext2 {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 639px) {
  .top-recruit-box .top-recruit-txt {
    width: 90%;
  }
  .top-recruit-box .top-recruit-txt .mtext2 {
    font-size: 1.7rem;
  }
}
.top-recruit-box:hover {
  clip-path: inset(4% 2% 2% 4%);
}
.top-recruit-box:hover figure img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.top-recruit-box:hover .top-recruit-txt .more {
  background: #224796;
  color: #fff;
}
.top-recruit-box.on figure:before, .top-recruit-box.on figure:after {
  -webkit-animation: view-borderin 1s cubic-bezier(0.2, 1, 0.2, 1) 0.5s forwards;
          animation: view-borderin 1s cubic-bezier(0.2, 1, 0.2, 1) 0.5s forwards;
}

/* top_sec4 recruit
----------------------------------*/
.top-recruit {
  position: relative;
}
.top-recruit .top-recruit-wrap {
  position: relative;
  display: block;
  height: 100%;
}
.top-recruit .top-recruit-wrap .top-recruit-img {
  position: relative;
}
.top-recruit .top-recruit-wrap .top-recruit-img figure {
  position: relative;
  aspect-ratio: 4/1;
}
.top-recruit .top-recruit-wrap .top-recruit-img figure img {
  -o-object-position: 0 66%;
     object-position: 0 66%;
}
.top-recruit .top-recruit-wrap .top-recruit-img figure:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 135, 230, 0.5);
  z-index: 2;
  -webkit-transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
}
.top-recruit .top-recruit-wrap .top-recruit-content {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  height: 100%;
  width: 100%;
}
.top-recruit .top-recruit-wrap .top-recruit-content .left {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  padding: 20px;
  color: #fff;
  font-weight: 600;
}
.top-recruit .top-recruit-wrap .top-recruit-content .left .txt {
  font-size: 1.4em;
}
.top-recruit .top-recruit-wrap .top-recruit-content .btn {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  right: 30px;
  bottom: -30px;
  width: 170px;
  height: 170px;
  background: #fefefe;
  -webkit-box-shadow: 0 0 0 3px #383838, 0 0 0 8px #fff;
          box-shadow: 0 0 0 3px #383838, 0 0 0 8px #fff;
  border-radius: 50%;
  -webkit-transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
}
.top-recruit .top-recruit-wrap .top-recruit-content .btn p {
  padding: 0 5px;
  text-align: center;
  font-size: 1.15em;
  font-weight: 900;
}
.top-recruit .top-recruit-wrap .top-recruit-content .btn p em {
  font-size: 1.25em;
}
.top-recruit .top-recruit-wrap .top-recruit-content .btn p:not(:last-of-type) {
  border-bottom: 1px solid #383838;
}
.top-recruit .top-recruit-wrap .top-recruit-content .btn p:last-of-type {
  color: #383838;
}
.top-recruit .top-recruit-wrap:hover .top-recruit-img figure:before {
  background: rgba(41, 33, 28, 0.6);
}
.top-recruit .top-recruit-wrap:hover .top-recruit-content .btn {
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
}
@media screen and (max-width: 639px) {
  .top-recruit {
    padding-bottom: 40px;
  }
  .top-recruit .top-recruit-wrap .top-recruit-img figure {
    width: 100%;
    aspect-ratio: 1/1.05;
  }
  .top-recruit .top-recruit-wrap .top-recruit-content .left {
    height: 60%;
  }
  .top-recruit .top-recruit-wrap .top-recruit-content .left .txt {
    font-size: 1.15em;
  }
  .top-recruit .top-recruit-wrap .top-recruit-content .btn {
    width: 140px;
    height: 140px;
  }
}

.img-insert {
  max-width: calc(100% - 80px);
  margin: 40px auto;
  height: 300px;
  position: relative;
}
@media screen and (max-width: 639px) {
  .img-insert {
    max-width: calc(100% - 20px);
    height: 200px;
    margin: 20px auto;
  }
}

.history {
  position: relative;
}
.history:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 20px;
  height: 100%;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#90E0B7), to(#a0dbf1));
  background-image: linear-gradient(to top, #90E0B7, #a0dbf1);
  opacity: 0.7;
  border-radius: 20px;
}
.history .history-inner {
  position: relative;
  padding-left: 70px;
}
.history .history-inner:before {
  position: absolute;
  content: "";
  left: 12px;
  top: 15px;
  width: 40px;
  height: 1px;
  background: #90E0B7;
}
.history .history-inner:after {
  position: absolute;
  content: "";
  left: 6px;
  top: 10px;
  width: 10px;
  height: 10px;
  background: #2D4A86;
  border-radius: 50%;
}
@media screen and (max-width: 639px) {
  .history .history-inner {
    padding-left: 45px;
  }
  .history .history-inner:before {
    width: 25px;
  }
}
.history .history-inner:not(:last-of-type) {
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(170, 170, 170, 0.5);
}
.history .history-inner dt {
  font-weight: 600;
  color: #0B87E6;
  font-size: 1.15em;
}
.history .history-inner dt span {
  font-size: 1.5rem;
  padding: 0 3px;
}
.history .history-inner dt span:before {
  content: "(";
}
.history .history-inner dt span:after {
  content: ")";
}
@media screen and (max-width: 639px) {
  .history .history-inner dt {
    font-size: 1.2em;
  }
  .history .history-inner dt span {
    font-size: 1.1rem;
  }
}
.history .history-inner dd {
  padding: 14px 18px;
}
@media screen and (max-width: 639px) {
  .history .history-inner dd {
    padding: 12px;
  }
}

.works-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px 20px;
  border-top: 2px solid #121212;
}
.works-list li .works-list-img {
  width: 45%;
}
.works-list li .works-list-img a {
  display: block;
  position: relative;
}
.works-list li .works-list-img figure {
  position: relative;
  aspect-ratio: 2/1.2;
}
.works-list li .works-list-img figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.works-list li .works-list-txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 40px;
}
.works-list li .works-list-txt .title02 {
  text-align: left;
}
@media screen and (max-width: 639px) {
  .works-list li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .works-list li .works-list-img {
    width: 100%;
  }
  .works-list li .works-list-txt {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    margin: 30px 0 0;
  }
}

.recruit_flow {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.recruit_flow li {
  width: 48%;
  margin-right: 4%;
  margin-bottom: 35px;
  padding: 25px;
  background: #ffffff;
  -webkit-box-shadow: 0 0 15px rgba(41, 33, 28, 0.05);
          box-shadow: 0 0 15px rgba(41, 33, 28, 0.05);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.recruit_flow li:nth-child(2n) {
  margin-right: 0;
}
.recruit_flow li .flow-num {
  color: #133beb;
  font-size: 3.5rem;
  border-right: 1px solid #133beb;
  padding-right: 15px;
  line-height: 1.2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  text-transform: uppercase;
}
.recruit_flow li .flow-num span {
  font-size: 1.4rem;
  display: block;
  text-align: center;
  letter-spacing: 0.1em;
  font-weight: 900;
}
.recruit_flow li .flow-txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 35px;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.recruit_flow li .mtext1 {
  color: #29211c;
  border-bottom: 1px solid #133beb;
  padding-bottom: 4px;
  margin-bottom: 10px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 1.7rem;
}
@media screen and (max-width: 639px) {
  .recruit_flow li {
    width: 100%;
    margin: 0 0 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .recruit_flow li .flow-num {
    font-size: 2.2rem;
    text-align: center;
    border-right: 0;
    padding: 0 0 10px;
    border-bottom: 1px solid #133beb;
  }
  .recruit_flow li .flow-txt {
    margin: 20px 0 0;
    width: 100%;
  }
  .recruit_flow li .mtext1 {
    font-size: 1.3rem;
  }
}

.recruit-head {
  position: relative;
  margin-top: 55px;
}
.recruit-head .recruit-head-img {
  aspect-ratio: 20/9;
}
@media screen and (max-width: 639px) {
  .recruit-head .recruit-head-img {
    aspect-ratio: 20/11;
  }
}
.recruit-head .recruit-head-txt {
  position: absolute;
  right: 30px;
  top: -40px;
  z-index: 2;
}
@media screen and (max-width: 639px) {
  .recruit-head .recruit-head-txt {
    right: 100px;
  }
}
.recruit-head .recruit-head-txt h3 {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  font-size: 2.6vw;
  line-height: 1.6;
}
.recruit-head .recruit-head-txt h3 span {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #fff;
  padding: 12px 1px;
}
.recruit-head .recruit-head-txt h3 span:nth-child(1) {
  background: #0B87E6;
  color: #fff;
}
.recruit-head .recruit-head-txt h3 span:nth-child(2) {
  margin-right: 15px;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
@media screen and (max-width: 1025px) {
  .recruit-head .recruit-head-txt h3 {
    font-size: 3rem;
  }
}
@media screen and (max-width: 639px) {
  .recruit-head .recruit-head-txt h3 {
    font-size: 1.8rem;
  }
}

.youshoku_title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.youshoku_title:after {
  margin-left: 30px;
  content: attr(data-title);
  color: rgba(0, 0, 0, 0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  -webkit-text-stroke: 1px #133beb;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  font-size: 6em;
  line-height: 1;
}
.youshoku_title .ja {
  position: relative;
  display: block;
  width: 140px;
}
@media screen and (max-width: 639px) {
  .youshoku_title:after {
    font-size: 3em;
  }
  .youshoku_title .ja {
    width: 20%;
  }
}

.youshoku_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 180px;
  margin-top: -60px;
}
.youshoku_box .img-area01 {
  width: 70%;
}
.youshoku_box .img-area01 .img-area_title {
  max-width: 260px;
  margin-top: 20px;
}
.youshoku_box .txt-area {
  width: 42%;
  -ms-flex-item-align: center;
      align-self: center;
  font-weight: 600;
  font-size: 1.05em;
}
.youshoku_box .img-area02 {
  width: 42%;
}
.youshoku_box .img-area02 .img-area_title {
  max-width: 200px;
}
@media screen and (max-width: 1025px) {
  .youshoku_box {
    margin-top: -100px;
  }
}
@media screen and (max-width: 639px) {
  .youshoku_box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: -50px;
    padding-left: 0;
  }
  .youshoku_box .img-area01 {
    width: 80%;
    margin-left: auto;
  }
  .youshoku_box .img-area01 .img-area_title {
    max-width: 40%;
  }
  .youshoku_box .txt-area {
    width: 100%;
    margin-top: 30px;
    padding: 0 20px;
  }
  .youshoku_box .img-area02 {
    width: 100%;
    margin-top: 40px;
    padding: 0 20px;
  }
  .youshoku_box .img-area02 figure {
    width: 75%;
    margin-left: auto;
  }
  .youshoku_box .img-area02 .img-area_title {
    max-width: 32%;
  }
}

.pdf-link {
  position: relative;
}
.pdf-link a {
  color: #302e2b;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.pdf-link a:before {
  color: #b30b00;
  font-family: "Font Awesome 5 Free";
  content: "\f1c1";
  font-weight: 900;
  margin-right: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 150%;
  line-height: 1;
}
.pdf-link a:hover {
  opacity: 0.7;
}

.reason-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}
.reason-wrap .heading {
  width: 27%;
}
.reason-wrap .heading .inner {
  position: sticky;
  top: 80px;
}
.reason-wrap .detail {
  width: 68%;
}
@media all and (max-width: 639px) {
  .reason-wrap .heading {
    width: 100%;
    margin-bottom: 20px;
    padding: 0 20px;
  }
  .reason-wrap .detail {
    width: 100%;
  }
}

.reason-child {
  margin-bottom: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 20px;
  background-color: #fff;
  -webkit-box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
          box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.reason-child .reason-txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 20px;
}
.reason-child:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 639px) {
  .reason-child .reason-txt {
    margin-left: auto;
    margin-right: auto;
  }
}

.reason-image,
.reason-image3 {
  position: relative;
  height: 235px;
  width: 300px;
  overflow: hidden;
}
.reason-image img,
.reason-image3 img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 10%;
     object-position: center 10%;
  vertical-align: middle;
}
@media all and (max-width: 639px) {
  .reason-image,
  .reason-image3 {
    height: 220px;
    width: 100%;
    margin-bottom: 20px;
  }
}

.cont-list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cont-list li {
  width: 30%;
  margin: 0.5%;
}
.cont-list li a {
  display: block;
  background: #fefefe;
  border: 1px solid #e6e6e6;
  text-align: center;
  padding: 25px 15px;
  color: #656565;
  line-height: 1.6;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.cont-list li a i {
  display: block;
  margin: auto;
  font-size: 4rem;
  color: #3052ec;
  margin-bottom: 10px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.cont-list li a p {
  font-weight: 600;
  font-size: 1.1em;
}
.cont-list li a span {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 1.4rem;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  color: #3052ec;
}
.cont-list li a:hover {
  border: 1px solid #3052ec;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
.cont-list li a:hover i {
  -webkit-animation: rotate 0.7s ease-in-out both;
          animation: rotate 0.7s ease-in-out both;
  color: #656565;
  opacity: 0.6;
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
  50% {
    -webkit-transform: rotate(-3deg);
            transform: rotate(-3deg);
  }
  75% {
    -webkit-transform: rotate(1deg);
            transform: rotate(1deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
  50% {
    -webkit-transform: rotate(-3deg);
            transform: rotate(-3deg);
  }
  75% {
    -webkit-transform: rotate(1deg);
            transform: rotate(1deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@media screen and (max-width: 1025px) {
  .cont-list li {
    width: 48%;
    margin: 1%;
  }
}
@media screen and (max-width: 639px) {
  .cont-list li {
    width: 90%;
  }
}

.two-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
.two-column .two-column_left .image-wrapper {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.two-column .two-column_left .image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.two-column .speech-bubble {
  position: relative;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  max-width: 500px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.two-column .speech-bubble::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 40px;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-right-color: #fff;
}
.two-column .speech-bubble p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .two-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-bottom: 40px;
  }
  .two-column .speech-bubble {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .two-column .speech-bubble::before {
    left: 50%;
    top: 100%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    border: 10px solid transparent;
    border-top-color: #fff;
    border-right-color: transparent;
  }
  .two-column .two-column_left {
    text-align: center;
    margin: 0 auto;
  }
  .two-column .two-column_left .image-wrapper {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100px;
    height: 100px;
  }
}

.img_box {
  position: relative;
  z-index: 1;
}
.img_box .img01 {
  width: 100%;
  position: relative;
  height: 500px;
}
.img_box .img01::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26436/sozai1.jpg) no-repeat center/cover;
  background-attachment: fixed;
  -webkit-filter: hue-rotate(346deg);
          filter: hue-rotate(346deg);
}
@media screen and (max-width: 1025px) {
  .img_box .img01 {
    height: 350px;
  }
  .img_box .img01:before {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  .img_box {
    margin-bottom: 20px;
  }
  .img_box .img01 {
    height: 180px;
  }
}

.article01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  gap: 5% 5%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 50px;
}
@media screen and (max-width: 639px) {
  .article01.res_none {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .article01.res_none figure {
    max-width: 30%;
  }
}
.article01.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.article01.j-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.article01.a-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.article01.a-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.article01 .figure {
  max-width: 45%;
  position: relative;
}
.article01 .figure.type1 {
  height: 50vw;
}
@media screen and (max-width: 639px) {
  .article01 .figure.type1 {
    width: 100%;
    height: 400px;
    margin-top: 30px;
  }
}
.article01 .figure.type1 img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.article01 .figure.icon-list.type2 {
  width: 80%;
  height: 30vw;
}
@media screen and (max-width: 639px) {
  .article01 .figure.icon-list.type2 {
    width: 100%;
    height: 400px;
    margin-top: 30px;
  }
}
.article01 .figure.icon-list.type2 img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.article01 .figure .photo01 a {
  height: 220%;
}
.article01 .figure .photo01 {
  position: absolute;
  bottom: 12%;
  right: -10%;
  max-width: 35%;
  max-height: 16%;
  -webkit-box-shadow: rgba(17, 17, 17, 0.1) 0 0 3px 3px;
          box-shadow: rgba(17, 17, 17, 0.1) 0 0 3px 3px;
  z-index: 2;
}
.article01 .figure .photo01 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.article01 .figure .photo02 a {
  height: 220%;
}
.article01 .figure .photo02 {
  position: absolute;
  bottom: 12%;
  right: 30%;
  max-width: 35%;
  max-height: 16%;
  -webkit-box-shadow: rgba(17, 17, 17, 0.1) 0 0 3px 3px;
          box-shadow: rgba(17, 17, 17, 0.1) 0 0 3px 3px;
  z-index: 3;
}
.article01 .figure .photo02 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.article01 figure {
  max-width: 45%;
  max-height: 25vw;
  position: relative;
  overflow: hidden;
}
.article01 figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.article01 figure figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 5px 10px;
  font-size: 1.2rem;
  text-align: left;
  background-color: rgba(11, 135, 230, 0.8);
  color: #fff;
  font-weight: bold;
  padding: 6px;
  max-width: 400px;
}
@media screen and (max-width: 639px) {
  .article01 {
    display: block;
  }
  .article01 .figure {
    max-width: 100%;
    margin: 0 auto 20px;
  }
  .article01 figure {
    margin: 0 auto;
    text-align: center;
    margin-bottom: 20px;
    max-width: 100%;
    max-height: 70vw;
  }
}
.article01.half {
  gap: 0% 0%;
}
.article01.half .figure,
.article01.half figure {
  max-width: 50%;
  width: 50%;
  height: 100%;
  max-height: 50vw;
}
.article01.half .txtarea {
  width: 50%;
  padding: 0px 100px;
}
@media screen and (max-width: 1101px) {
  .article01.half .txtarea {
    padding: 0px 50px;
  }
}
@media screen and (max-width: 1025px) {
  .article01.half {
    display: block;
  }
  .article01.half .figure,
  .article01.half figure {
    max-width: 100%;
    width: 100%;
    height: 100%;
    max-height: 60vw;
  }
  .article01.half .txtarea {
    width: 100%;
    padding: 30px 10px;
  }
}
@media screen and (max-width: 639px) {
  .article01 {
    margin-bottom: 30px;
  }
}

.chart {
  max-width: 350px;
  text-align: center;
  margin: 0 auto;
}

.top-menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.top-menu-list .left-area,
.top-menu-list .right-area {
  position: relative;
  width: 48%;
}
.top-menu-list .left-area img,
.top-menu-list .right-area img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: block;
}
.top-menu-list .link-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0;
}
.top-menu-list .link-list li:first-child {
  border-top: 1px solid #fff;
}
.top-menu-list .link-list li {
  border-bottom: 1px solid #fff;
}
.top-menu-list .link-list li a {
  position: relative;
  display: block;
  padding: 20px;
  color: #fff;
  font-size: 2rem;
  background-color: transparent;
  backdrop-filter: blur(8px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.top-menu-list .link-list li a span {
  font-size: 0.7em;
  margin-left: 15px;
}
.top-menu-list .link-list li a i {
  font-size: 1.4em;
  margin-right: 0.75em;
}
.top-menu-list .link-list li a:hover {
  background: #fff;
  color: #0B87E6;
}
@media screen and (max-width: 1101px) {
  .top-menu-list .link-list li a {
    padding: 15px;
  }
}
@media screen and (max-width: 1025px) {
  .top-menu-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-left: auto;
    margin-right: auto;
    width: 95%;
  }
  .top-menu-list .left-area,
  .top-menu-list .right-area {
    width: 100%;
    height: auto;
  }
  .top-menu-list .right-area {
    aspect-ratio: 5/3;
    height: auto;
    margin-bottom: 30px;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .top-menu-list .link-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .top-menu-list .link-list li {
    border: 1px solid #0B87E6;
  }
  .top-menu-list .link-list li:first-child {
    border-top: 1px solid #0B87E6;
  }
  .top-menu-list .link-list li a {
    font-size: 1.55rem;
    padding: 20px 10px;
    text-align: center;
  }
  .top-menu-list .link-list li a i {
    margin-right: 0;
    margin-bottom: 3px;
    display: block;
  }
}
@media screen and (max-width: 639px) {
  .top-menu-list .link-list {
    gap: 5px;
  }
  .top-menu-list .link-list li a {
    display: block;
    height: 100%;
    padding: 15px 8px;
    font-size: 1.3rem;
    letter-spacing: 0.15em;
  }
}

.js-box1 {
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.js-hover1 {
  opacity: 1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.js-box2 {
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.js-hover2 {
  opacity: 1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.js-box3 {
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.js-hover3 {
  opacity: 1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.js-box4 {
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.js-hover4 {
  opacity: 1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.js-box5 {
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.js-hover5 {
  opacity: 1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.js-box6 {
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.js-hover6 {
  opacity: 1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.js-box7 {
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.js-hover7 {
  opacity: 1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.js-hover {
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.sec2 {
  position: relative;
}
.sec2 + .sec2 {
  margin-top: 80px;
}
.sec2 .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  position: relative;
  z-index: 2;
  margin: 0 auto;
  padding: 45px 40px;
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media screen and (max-width: 639px) {
  .sec2 .inner {
    padding: 20px;
  }
}
@media screen and (max-width: 1025px) {
  .sec2 .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 50px;
  }
}
.sec2 .inner .txt {
  width: 98%;
  position: relative;
  font-weight: 600;
  letter-spacing: 0.2rem;
}
.sec2 .inner .txt span {
  margin-bottom: 20px;
}
.sec2 .inner .imgArea {
  width: 100%;
  height: 85%;
  position: relative;
}
.sec2 .inner .imgArea .slider {
  overflow: hidden;
}
.sec2 .inner .imgArea .slider-img {
  width: 90%;
  height: 400px;
}
@media screen and (max-width: 1025px) {
  .sec2 .inner .imgArea .slider-img {
    height: 250px;
  }
}
.sec2 .inner .imgArea .slider-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec2 .inner .imgArea .slick-dotted.slick-slider {
  margin-bottom: 0 !important;
}
.sec2 .inner .imgArea .slick-dots li button:before {
  content: "" !important;
  height: 100% !important;
  width: 100% !important;
}
@media screen and (max-width: 1025px) {
  .sec2 .inner .txt {
    width: 100%;
    text-align: left;
  }
  .sec2 .inner .imgArea {
    width: 90%;
  }
}
.sec2.type1 {
  margin-bottom: 0;
}
.sec2.type1:before {
  left: auto;
  right: 0;
  background: url(../img/half02.jpg) no-repeat center/cover;
}
.sec2.type1 .half-box {
  margin-left: 5%;
  margin-right: auto;
}
@media screen and (max-width: 1025px) {
  .sec2.type1 .half-box {
    margin-left: 15px;
  }
}
@media screen and (max-width: 639px) {
  .sec2.type1 .half-box {
    margin-left: auto;
  }
}
.sec2.type1 .sec2-title {
  left: auto;
  right: 40px;
}
@media screen and (max-width: 639px) {
  .sec2.type1 .sec2-title {
    right: 10px;
  }
}

.content-floor {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.content-floor .linkbanner {
  width: 50%;
  position: relative;
  display: block;
  background-color: rgba(255, 143, 78, 0.6);
  text-decoration: none;
  padding: 110px;
}
.content-floor .linkbanner:before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27711/top_content02.webp) no-repeat;
  left: 0;
  top: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}
.content-floor .linkbanner.type1 {
  width: 100%;
  background-color: rgba(11, 135, 230, 0.95);
}
.content-floor .linkbanner.type1:before {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27711/top_content03.webp) no-repeat;
  background-position: 50% 40%;
}
.content-floor .linkbanner:hover {
  background-color: #fff;
  -webkit-box-shadow: 0 0 8px #ddd;
          box-shadow: 0 0 8px #ddd;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}
.content-floor .linkbanner:hover .txt-eng {
  color: #0B87E6;
  z-index: 1;
}
.content-floor .linkbanner:hover:before {
  opacity: 0.8;
}
.content-floor .linkbanner.type2 {
  background-color: rgba(19, 59, 235, 0.6);
}
.content-floor .linkbanner.type2:before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27711/top_content01.webp) no-repeat;
  left: 0;
  top: 0;
  background-size: cover;
  background-position: center;
}
.content-floor .linkbanner.type2:hover {
  background-color: #fff;
}
.content-floor .linkbanner.type2:hover .txt-eng {
  color: #133beb;
}
.content-floor .linkbanner .txt-title {
  position: relative;
  z-index: 4;
  font-size: 2rem;
  color: #fff;
}
.content-floor .linkbanner .txt-eng {
  color: #fff;
  z-index: 1;
  right: 0%;
  left: 0;
  margin: 0 auto;
  top: 20%;
  font-size: 10rem;
  line-height: 10rem;
}
@media screen and (max-width: 1025px) {
  .content-floor .linkbanner .txt-eng {
    font-size: 4rem;
  }
}
@media screen and (max-width: 639px) {
  .content-floor .linkbanner {
    width: 100%;
  }
  .content-floor .linkbanner .txt-eng {
    font-size: 4rem;
  }
}

.nami {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 81px;
  z-index: 10;
}
.nami #canvas-container {
  width: 100%;
  height: 100%;
}
.nami canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.clickdown {
  position: absolute;
  bottom: 5%;
  right: 0;
  left: 0;
  margin: 0 auto;
  -webkit-animation: arrowmove 1s ease-in-out infinite;
          animation: arrowmove 1s ease-in-out infinite;
  width: 0px;
  height: 2px;
}
.clickdown span {
  position: absolute;
  left: -20px;
  bottom: 10px;
  color: rgb(255, 255, 255);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.clickdown:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 1px;
  height: 20px;
  background: rgb(255, 255, 255);
  -webkit-transform: skewX(-31deg);
          transform: skewX(-31deg);
}
.clickdown:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1px;
  height: 50px;
  background: rgb(255, 255, 255);
}

@-webkit-keyframes arrowmove {
  0% {
    bottom: 5%;
  }
  50% {
    bottom: 7%;
  }
  100% {
    bottom: 5%;
  }
}

@keyframes arrowmove {
  0% {
    bottom: 5%;
  }
  50% {
    bottom: 7%;
  }
  100% {
    bottom: 5%;
  }
}
.policy-list {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}
.policy-list .policy-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 24px;
}
.policy-list .policy-item .policy-label {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 80px;
  height: 80px;
  border: 2px solid #002060;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
  font-weight: bold;
  color: #002060;
  margin-right: 20px;
}
.policy-list .policy-item .policy-content .text-main {
  font-size: 16px;
  color: #333;
  margin-bottom: 4px;
  line-height: 1.5;
}
.policy-list .policy-item .policy-content .text-sub {
  font-size: 16px;
  font-weight: bold;
  color: #002060;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

@media screen and (max-width: 639px) {
  .policy-list .policy-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 35px;
  }
  .policy-list .policy-item .policy-label {
    width: 57%;
    height: 60px;
    font-size: 16px;
    margin: 0 auto;
  }
}
.gallery-light {
  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;
  gap: 20px;
}
.gallery-light.col5 li {
  width: calc((100% - 40px) / 5);
}
.gallery-light.col4 li {
  width: calc((100% - 60px) / 4);
}
.gallery-light.col3 li {
  width: calc((100% - 40px) / 3);
}
.gallery-light.col2 li {
  width: calc((100% - 10px) / 2);
}
.gallery-light li a {
  display: block;
  text-align: center;
}
.gallery-light li a img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
.gallery-light li .ttl {
  font-size: 1.1em;
  font-weight: 600;
  text-align: center;
  background: rgba(19, 59, 235, 0.1);
  margin-bottom: 10px;
}
.gallery-light li .txt {
  font-size: 90%;
  margin: 3px 0 6px;
  text-align: center;
}
@media screen and (max-width: 1025px) {
  .gallery-light li a img {
    height: 150px;
  }
}

.grid {
  position: relative;
  margin: 0 0 30px;
  padding: 0 !important;
  width: 100% !important;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.grid.m0 {
  margin: 0 !important;
}

.grid-item .gallery {
  background: #f2f2f2;
  width: 100%;
  height: 200px;
  text-align: center;
  vertical-align: middle;
  overflow: hidden;
  margin-bottom: 10px;
}
.grid-item {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  width: 32.5%;
  font-size: 12px;
  background: #fff;
  padding: 10px 10px 10px;
  margin-right: 1.25%;
  margin-bottom: 15px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 1px 1px 3px 0;
          box-shadow: rgba(0, 0, 0, 0.1) 1px 1px 3px 0;
}
.grid-item:nth-child(3n) {
  margin-right: 0px;
}
.grid-item a {
  display: block;
  text-align: center;
  width: 100%;
  height: 200px;
  margin-bottom: 10px;
  overflow: hidden;
  /*background-color: #fff;*/
  background-image: url(../img/click.png);
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0 0 1px 1px;
          box-shadow: rgba(0, 0, 0, 0.4) 0 0 1px 1px;
}
.grid-item * {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.grid-item h5 {
  font-size: 1.3rem;
  text-align: center;
  color: #0B87E6;
}
.grid-item dt {
  float: left;
  width: 7em;
  background: #0B87E6;
  padding: 5px 0px;
  line-height: 1.3;
  color: #fff;
  text-align: center;
  margin: 2px 0 0;
  font-weight: bold;
  border-radius: 5px;
}
.grid-item dd {
  padding-left: 8em;
  padding-top: 5px;
  padding-bottom: 10px;
  line-height: 1.6;
  border-bottom: dotted 1px #aaa;
  margin: 5px 0;
}
.grid-item dd:last-child {
  border-bottom: 0px;
}
.grid-item p {
  line-height: 1.6em;
  font-size: 13px;
}
.grid-item img {
  vertical-align: middle;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.grid-item a:hover img {
  opacity: 0.7;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.grid-item {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.grid-item:hover {
  -webkit-transform: scale(1.01);
          transform: scale(1.01);
  -webkit-filter: drop-shadow(8px 2px 10px rgba(41, 33, 28, 0.2));
  -moz-filter: drop-shadow(8px 2px 10px rgba(41, 33, 28, 0.2));
  -ms-filter: drop-shadow(8px 2px 10px rgba(41, 33, 28, 0.2));
  filter: drop-shadow(8px 2px 10px rgba(41, 33, 28, 0.2));
}

@media screen and (max-width: 639px) {
  .grid-item {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    width: calc(100% - 0px) !important;
    font-size: 12px;
    background: #fff;
    padding: 10px 10px 10px;
    margin-right: 0;
    -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0 0 0px 1px;
            box-shadow: rgba(0, 0, 0, 0.3) 0 0 0px 1px;
  }
}
.interview-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.interview-list .interview-item {
  position: relative;
  width: calc(33.333% - 14px);
  cursor: pointer;
  overflow: hidden;
  line-height: 0;
}
@media screen and (max-width: 890px) {
  .interview-list .interview-item {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 560px) {
  .interview-list .interview-item {
    width: 100%;
  }
}
.interview-list .interview-item img {
  width: 100%;
  height: auto;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.interview-list .interview-item {
  /* 技術職ラベル */
}
.interview-list .interview-item .label {
  position: absolute;
  top: 0;
  right: 0;
  background: #0B87E6;
  color: #fff;
  padding: 8px 15px;
  font-size: 14px;
  line-height: 1;
  z-index: 2;
}
.interview-list .interview-item {
  /* 写真上のテキスト情報 */
}
.interview-list .interview-item .info-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.8)));
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: #fff;
  line-height: 1.4;
  z-index: 2;
}
.interview-list .interview-item .info-text .name {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 5px;
}
.interview-list .interview-item .info-text .meta {
  font-size: 1.4rem;
}
.interview-list .interview-item {
  /* ホバー時のマスク */
}
.interview-list .interview-item .mask {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 135, 230, 0.7);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 3;
}
.interview-list .interview-item .mask span {
  color: #fff;
  border: 1px solid #fff;
  padding: 10px 20px;
  font-weight: bold;
  line-height: 1;
}
.interview-list .interview-item:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.interview-list .interview-item:hover .mask {
  opacity: 1;
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 10000;
  overflow-y: auto;
}
.modal-overlay .modal-window {
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1000px;
  background: #fff;
  padding: 50px 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px;
}
@media screen and (max-width: 1025px) {
  .modal-overlay .modal-window {
    top: 100px;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 639px) {
  .modal-overlay .modal-window {
    padding: 40px 20px 20px;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}
.modal-overlay .modal-window .modal-close {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 45px;
  height: 45px;
  background: #133beb;
  color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 24px;
  cursor: pointer;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 10;
}
@media screen and (max-width: 639px) {
  .modal-overlay .modal-window .modal-close {
    top: 5px;
    right: 5px;
    width: 35px;
    height: 35px;
  }
}
.modal-overlay .modal-window .modal-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 1025px) {
  .modal-overlay .modal-window .modal-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.modal-overlay .modal-window .modal-content .modal-left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 400px;
          flex: 0 0 400px;
  text-align: center;
}
.modal-overlay .modal-window .modal-content .modal-left img {
  width: 100%;
  height: auto;
  display: block;
}
.modal-overlay .modal-window .modal-content .modal-left .name {
  margin-top: 15px;
  font-weight: bold;
  font-size: 2.2rem;
  text-align: center;
}
.modal-overlay .modal-window .modal-content .modal-left .name span {
  font-size: 1.5rem;
  color: #666;
  font-weight: normal;
}
@media screen and (max-width: 639px) {
  .modal-overlay .modal-window .modal-content .modal-left {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }
}
.modal-overlay .modal-window .modal-content .modal-right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-height: 500px;
  overflow-y: auto;
  padding-right: 15px;
}
.modal-overlay .modal-window .modal-content .modal-right .q-box {
  margin-bottom: 25px;
}
.modal-overlay .modal-window .modal-content .modal-right .q-box h4 {
  color: #0B87E6;
  font-size: 1.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.modal-overlay .modal-window .modal-content .modal-right .q-box h4::before {
  content: "";
  width: 40px;
  height: 1px;
  background: #0B87E6;
}
.modal-overlay .modal-window .modal-content .modal-right .q-box p {
  line-height: 1.8;
  color: #444;
  font-size: 1.5rem;
}

.category_tab2 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  margin-bottom: 40px;
}
.category_tab2 li {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 1.8rem;
}
@media screen and (max-width: 1025px) {
  .category_tab2 li {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 639px) {
  .category_tab2 li {
    font-size: 1.35rem;
    letter-spacing: 0.15em;
  }
}
.category_tab2 li {
  line-height: 1.4;
  border-width: 2px;
  border-style: solid;
  border-color: #0B87E6;
  background: transparent;
  color: #29211c;
  padding: 25px 15px;
  margin-right: 1%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: 5px;
}
.category_tab2 li i {
  font-size: 130%;
  margin-right: 10px;
  color: #0B87E6;
}
.category_tab2 li:last-child {
  margin-right: 0;
}
.category_tab2 li:hover {
  background: #0B87E6;
  color: #fff;
}
.category_tab2 li:hover i {
  color: #fff;
}
.category_tab2 li.active {
  background: #0B87E6;
  color: #fff;
}
.category_tab2 li.active i {
  color: #fff;
}
.category_tab2 li.active::after {
  position: absolute;
  content: "";
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  bottom: -10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-top: 10px solid #0B87E6;
  border-bottom: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.category_tab2 li:nth-child(even) {
  border-color: #133beb;
}
.category_tab2 li:nth-child(even) i {
  color: #133beb;
}
.category_tab2 li:nth-child(even):hover {
  background: #133beb;
  color: #fff;
}
.category_tab2 li:nth-child(even):hover i {
  color: #fff;
}
.category_tab2 li:nth-child(even).active {
  background: #133beb;
  color: #fff;
}
.category_tab2 li:nth-child(even).active i {
  color: #fff;
}
.category_tab2 li:nth-child(even).active::after {
  border-top: 10px solid #133beb;
}
@media screen and (max-width: 1101px) {
  .category_tab2 {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1025px) {
  .category_tab2 {
    margin-bottom: 20px;
  }
  .category_tab2 li {
    padding: 20px 10px;
    font-size: 1.3rem;
  }
  .category_tab2 li i {
    margin-right: 0;
    margin-bottom: 5px;
    display: block;
  }
}
@media screen and (max-width: 639px) {
  .category_tab2 li {
    padding: 15px 5px;
    font-size: 1rem;
  }
}

.panel2 {
  display: none;
}

.slick-prev, .slick-next {
  display: none !important;
}

.form-pattern-1 dl dt:not(.pattern-exclusion) span.required::before {
  background-color: #0B87E6 !important;
}

#a01, #a02, #a03, #a04, #a05, #a06, #a07, #a08, #a09, #contact, #recruit {
  /* 固定ヘッダーの高さ分（例: 80px）を指定 */
  scroll-margin-top: 200px;
}