@charset "UTF-8";

/* アニメーションベンダープレフィックス込み指定 */
/* アニメーションベンダープレフィックス込み指定 */
/********************/
body {
  color: #222020;
  background: url(../img/body.jpg) repeat center top/100% auto;
  background: #fefefe;
  font-family: "Zen Kaku Gothic New", "YakuHanJP", Lato, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  font-weight: 500;
  position: relative;
  letter-spacing: 0.05em;
  display: flex;
  flex-direction: column;
}

a {
  color: rgb(4.3494897959, 47.8443877551, 166.1505102041);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

#wrapper {
  overflow: hidden;
  flex: 1;
}

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

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

.mincho {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-weight: 500 !important;
}

.eng-txt {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

.bigger {
  font-size: 1.8rem;
}

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

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

.en-big {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

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

/* animation
----------------------------------*/
.bg-on:before {
  -webkit-animation: bg-onanime 1s ease-out 0.6s forwards;
  animation: bg-onanime 1s ease-out 0.6s forwards;
}

.bg-on-left:before {
  -webkit-animation: bg-on-left-anime 1s ease-out 0s forwards;
  animation: bg-on-left-anime 1s ease-out 0s forwards;
}

.bg-on-left.time2:before {
  -webkit-animation: bg-on-left-anime2 0.8s ease-out 0.8s forwards;
  animation: bg-on-left-anime2 0.8s ease-out 0.8s forwards;
}

@keyframes view-zoomin {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

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

  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

.animation {
  opacity: 0;
}

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

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

.loader {
  align-items: center;
  background: #fdfdfd;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
}

.loader::after {
  animation: loader 0.5s linear infinite;
  border: 1px solid #0537BF;
  border-radius: 50%;
  border-right: 1px solid rgba(5, 55, 191, 0.2);
  border-top: 1px solid rgba(5, 55, 191, 0.2);
  content: "";
  height: 70px;
  width: 70px;
}

.loader.off {
  display: none;
}

@keyframes loader {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.bgextend {
  -webkit-animation-name: bgextendAnimeBase;
  animation-name: bgextendAnimeBase;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden;
  /*　はみ出た色要素を隠す　*/
  opacity: 0;
}

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

  to {
    opacity: 1;
  }
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/*--------- 左から --------*/
.bgLRextend::before {
  -webkit-animation-name: bgLRextendAnime;
  animation-name: bgLRextendAnime;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0537BF, #108ac2);
  /*伸びる背景色の設定*/
}

.bgLRextend.type1:before {
  background-color: #108ac2;
}

@-webkit-keyframes bgLRextendAnime {
  0% {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }

  50% {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

  50.001% {
    -webkit-transform-origin: right;
    transform-origin: right;
  }

  100% {
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
}

@keyframes bgLRextendAnime {
  0% {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }

  50% {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

  50.001% {
    -webkit-transform-origin: right;
    transform-origin: right;
  }

  100% {
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
}

/*--------- 右から --------*/
.bgRLextend::before {
  -webkit-animation-name: bgRLextendAnime;
  animation-name: bgRLextendAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #df9445;
  /*伸びる背景色の設定*/
}

@-webkit-keyframes bgRLextendAnime {
  0% {
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }

  50% {
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

  50.001% {
    -webkit-transform-origin: left;
    transform-origin: left;
  }

  100% {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
}

@keyframes bgRLextendAnime {
  0% {
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }

  50% {
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

  50.001% {
    -webkit-transform-origin: left;
    transform-origin: left;
  }

  100% {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
}

/*--------- 下から --------*/
.bgDUextend::before {
  -webkit-animation-name: bgDUextendAnime;
  animation-name: bgDUextendAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #df9445;
  /*伸びる背景色の設定*/
}

@-webkit-keyframes bgDUextendAnime {
  0% {
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }

  50% {
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }

  50.001% {
    -webkit-transform-origin: top;
    transform-origin: top;
  }

  100% {
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }
}

@keyframes bgDUextendAnime {
  0% {
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }

  50% {
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }

  50.001% {
    -webkit-transform-origin: top;
    transform-origin: top;
  }

  100% {
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }
}

/*--------- 上から --------*/
.bgUDextend::before {
  -webkit-animation-name: bgUDextendAnime;
  animation-name: bgUDextendAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #666;
  /*伸びる背景色の設定*/
}

@-webkit-keyframes bgUDextendAnime {
  0% {
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }

  50% {
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }

  50.001% {
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }

  100% {
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }
}

@keyframes bgUDextendAnime {
  0% {
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }

  50% {
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }

  50.001% {
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }

  100% {
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }
}

/* header
----------------------------------*/
@keyframes hd-scrolled {
  0% {
    opacity: 0;
    transform: translate(0, -100%);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

.gradient {
  background: linear-gradient(45deg, #ccc, #102777, #eee);
  background-size: 600% 600%;
  animation: anim-gradient 10s ease infinite;
}

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

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

#l-header {
  width: 100%;
  position: absolute;
  z-index: 200;
  top: 0;
  left: 0;
  transition: all 0.2s ease-in;
}

#l-header.is-fixed {
  position: fixed;
  background: url(../img/body.jpg) repeat center top/100% auto;
  background: #fefefe;
}

#l-header.is-fixed .inner #logo .logo1 {
  display: none;
}

#l-header.is-fixed .inner #logo .logo2 {
  display: block;
}

#l-header.is-fixed .head-right .head-right_contact .head-right-sns a {
  color: #0537BF;
}

#l-header .inner {
  display: flex;
  flex-wrap: wrap;
  max-width: 98%;
  min-width: 1000px;
  margin: 0 auto;
  padding: 8px;
  align-items: center;
  justify-content: space-between;
}

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

#l-header .inner #logo {
  width: 300px;
}

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

#l-header .head-right {
  margin-left: auto;
  padding-top: 5px;
  display: flex;
  align-items: center;
  gap: 35px;
}

#l-header .head-right_contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  margin-left: auto;
}

@media screen and (max-width: 639px) {
  #l-header .head-right_contact {
    display: none;
  }
}

#l-header .head-right-sns {
  display: flex;
  gap: 20px;
  margin-left: 40px;
}

#l-header .head-right-sns a {
  color: #fefefe;
  font-size: 3rem;
}

#l-header .head-right_tel a {
  background: transparent;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.1;
  position: relative;
  font-family: "Oswald", sans-serif;
  font-weight: 900;
  border-radius: 30px;
  padding: 5px 20px;
  color: #fefefe;
  background: #0537BF;
  background: linear-gradient(135deg, #0537BF, #108ac2);
}

#l-header .head-right_tel a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 6px;
  font-size: 0.9em;
}

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

@media screen and (max-width: 1025px) {
  #l-header .head-right_tel {
    display: none;
  }
}

#l-header .head-right_mail {
  margin-top: -20px;
}

#l-header .head-right_mail a {
  display: block;
  position: relative;
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
}

#l-header .head-right_mail {
  margin-left: 15px;
}

#l-header .head-right_mail a {
  padding: 18px 10px 8px 35px;
  background: #0537BF;
  position: relative;
  color: #fefefe;
}

#l-header .head-right_mail a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  position: absolute;
  left: 12px;
  top: 18px;
  font-size: 1.4rem;
}

#l-header .head-right_mail a:hover {
  background: #222;
}

#header_nav {
  position: relative;
}

.is-fixed #header_nav ul li a {
  color: #333;
  text-shadow: none;
}

.is-fixed #header_nav ul li a span {
  color: #0537BF;
}

.is-fixed #header_nav ul li a.active span,
.is-fixed #header_nav ul li a:hover span {
  color: rgb(3.0484693878, 33.5331632653, 116.4515306122);
}

#header_nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

#header_nav ul li {
  position: relative;
}

#header_nav ul li.btn-contact {
  margin-top: 15px;
}

#header_nav ul li.btn-contact a {
  padding: 7px 20px 7px 40px;
  border-radius: 30px;
  background: #e40000;
  color: #fff;
  display: inline-block;
  position: relative;
}

#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%;
  transform: translateY(-50%);
  font-size: 16px;
}

#header_nav ul li.btn-contact a:after {
  display: none;
}

#header_nav ul li.btn-contact a:hover {
  background: rgb(187.2, 0, 0);
}

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

#header_nav ul li a span {
  display: block;
  font-size: 1.3rem;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  color: #fefefe;
  position: relative;
}

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

#header_nav ul li a:hover span,
#header_nav ul li a.active span {
  color: #fefefe;
}

#header_nav ul li a:hover:after,
#header_nav ul li a.active:after {
  width: 20px;
}

#header_nav .dropdown {
  display: none;
  position: absolute;
  left: -30px;
  top: 45x;
  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(3, 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: #102777;
  width: 130px;
}

#header_nav .dropdown .dropdown-li a {
  display: block;
  width: 100%;
  padding: 12px 10px;
  color: #fff;
  font-size: 1.3rem;
  letter-spacing: 0;
}

#header_nav .dropdown .dropdown-li a .footer-only {
  display: none;
}

#header_nav .dropdown .dropdown-li a:hover {
  color: #c5eeee;
}

#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: #0537BF;
  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;
}

@media screen and (max-width: 1025px) {
  #page-top {
    bottom: 60px;
  }
}

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

  100% {
    transform: scale(1.12);
  }
}

.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {
  animation: zoom-in 11s linear 0s 1 normal both;
}

#catch {
  z-index: 50;
  position: absolute;
  left: 3%;
  bottom: 8%;
  z-index: 100;
  width: 45%;
  max-width: 650px;
}

#catch .catch-txt {
  color: #fefefe;
  font-size: 4.8rem;
  padding-left: 7vw;
  margin-top: 20px;
  font-weight: normal;
  white-space: nowrap;
}

#catch .catch-txt .sub_ttl {
  display: block;
  font-size: 6.5rem;
  margin-bottom: 30px;
}

#catch .catch-txt .sub_ttl .counter {
  padding: 0 5px;
  font-size: 1.5em;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-weight: bold;
}

#catch .catch-txt .sub_ttl .mini_txt {
  display: block;
  font-size: 2rem;
}

@media screen and (max-width: 1101px) {
  #catch {
    width: 40%;
  }
}

@media screen and (max-width: 1025px) {
  #catch {
    width: 50%;
  }

  #catch .catch-txt {
    padding-left: 5vw;
    font-size: 3.5rem;
  }

  #catch .catch-txt .sub_ttl {
    font-size: 4.5rem;
    margin-bottom: 20px;
  }

  #catch .catch-txt .sub_ttl .mini_txt {
    display: block;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 639px) {
  #catch {
    width: 75%;
  }

  #catch .catch-txt {
    font-size: 1.6rem;
    padding-left: 10px;
  }

  #catch .catch-txt .sub_ttl {
    font-size: 2.3rem;
    margin-bottom: 10px;
  }

  #catch .catch-txt .sub_ttl .mini_txt {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 1025px) {
  #main_slider.slider_wrapper {
    --swiper-wrapper-height: 95vh !important;
  }
}

#slideshow {
  position: relative;
  margin-inline: auto;
  overflow: hidden;
}

#slideshow:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #222020;
  opacity: 0.2;
  z-index: 2;
}

#slideshow .swiper-slide {
  position: relative;
}

#slideshow .swiper-slide:before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  right: 0;
  top: 0;
  background-position: 50%;
  background-size: cover;
  z-index: -1;
}

#slideshow .swiper-slide.slide1:before {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26842/1.jpg);
  background-position: 65% 50%;
}

#slideshow .swiper-slide.slide2:before {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26842/2.jpg);
  background-position: 50%;
}

#slideshow .slide-img {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100vh;
}

#slideshow .slide-img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 639px) {
  #slideshow .slide-img {
    height: 90vh;
  }
}

#slide-wrap {
  position: relative;
}

#slide-wrap:before,
#slide-wrap:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(40% + 20px);
  z-index: 10;
}

#slide-wrap:before {
  clip-path: polygon(0 0, 100% 90%, 100% 100%, 0 100%);
  background-color: rgba(5, 55, 191, 0.7);
}

#slide-wrap:after {
  -webkit-clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
  background-color: #0537BF;
}

#scrolldown {
  position: absolute;
  right: 15px;
  bottom: 60px;
  color: #fefefe;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
  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;
  transform: translateX(-50%);
}

#scrolldown:after {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 100%;
  top: 100px;
  margin-left: -4px;
  animation: scroll-point 2.3s ease-out infinite;
  animation-fill-mode: both;
}

@media screen and (max-width: 1025px) {
  #scrolldown {
    display: none;
  }
}

@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_bnr {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.contact_bnr>li:first-child {
  margin-right: 40px;
}

@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_tel {
  white-space: nowrap;
  position: relative;
  padding: 5px 0;
  color: #fff;
  font-size: 4.5rem;
  font-weight: 600;
  letter-spacing: 0;
  font-family: "Oswald", sans-serif;
  font-weight: 900;
}

.contact_bnr>li .bnr_tel:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
  font-size: 0.6em;
}

.contact_bnr>li .bnr_tel:hover {
  opacity: 0.4;
}

@media screen and (max-width: 639px) {
  .contact_bnr>li .bnr_tel {
    font-size: 2.4rem;
  }
}

.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: #0537BF;
}

.contact_bnr>li .bnr_fax:before {
  font-family: "Font Awesome 5 Free";
  content: "\f1ac";
  font-weight: 900;
}

.contact_bnr>li .bnr_mail {
  width: 300px;
  font-size: 1.8rem;
  padding: 15px 0;
  color: #222020;
  background: #fff;
}

.contact_bnr>li .bnr_mail:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
}

@media screen and (max-width: 639px) {
  .contact_bnr>li .bnr_mail {
    font-size: 1.6rem;
    padding: 10px;
    width: 100%;
  }
}

.contact_bnr>li .bnr_mail:hover {
  opacity: 0.4;
}

.contact_bnr>li a,
.contact_bnr>li span {
  display: block;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.2rem;
  padding: 12px 10px;
}

.contact_bnr>li a:before,
.contact_bnr>li span:before {
  margin-right: 5px;
  position: relative;
  display: inline-block;
}

@media screen and (max-width: 639px) {

  .contact_bnr>li a,
  .contact_bnr>li span {
    margin: 0 auto;
    white-space: nowrap;
    padding: 10px 0;
    width: 100%;
  }
}

/* footer
----------------------------------*/
.footer-contact {
  position: relative;
}

.footer-contact .inner-box {
  width: 97%;
  margin: 40px auto;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: 1px solid #bbbbbb;
  border-bottom: 1px solid #bbbbbb;
}

.footer-contact .inner-box .child {
  width: 33.3333333333%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
}

@media screen and (max-width: 1101px) {
  .footer-contact .inner-box .child {
    padding: 10px;
  }
}

@media screen and (max-width: 1025px) {
  .footer-contact .inner-box .child {
    width: 50%;
    margin-top: 20px;
  }
}

@media screen and (max-width: 639px) {
  .footer-contact .inner-box .child {
    width: 100%;
  }
}

@media screen and (max-width: 1025px) {
  .footer-contact .inner-box .child.top {
    width: 100%;
    border-right: none !important;
    border-bottom: 1px solid #bbb;
    padding-bottom: 30px;
    padding-top: 0 !important;
  }
}

@media screen and (max-width: 639px) {
  .footer-contact .inner-box .child.top {
    margin-top: 0;
  }
}

.footer-contact .inner-box .child i {
  font-size: 3.5rem;
}

@media screen and (max-width: 639px) {
  .footer-contact .inner-box .child i {
    font-size: 2rem;
  }
}

.footer-contact .inner-box .child.ttl,
.footer-contact .inner-box .child.tel {
  border-right: 1px solid #bbbbbb;
}

@media screen and (max-width: 639px) {

  .footer-contact .inner-box .child.ttl,
  .footer-contact .inner-box .child.tel {
    border-right: none;
    font-size: 16px;
  }
}

.footer-contact .inner-box .child.ttl .footer-title {
  text-align: center;
  margin-bottom: 30px;
}

@media screen and (max-width: 639px) {
  .footer-contact .inner-box .child.ttl .footer-title {
    margin-bottom: 10px;
    font-size: 16px;
  }
}

.footer-contact .inner-box .child.ttl .footer-title .eng {
  font-size: 4.5rem;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
}

@media screen and (max-width: 1025px) {
  .footer-contact .inner-box .child.ttl .footer-title .eng {
    font-size: 3.5rem;
  }
}

@media screen and (max-width: 639px) {
  .footer-contact .inner-box .child.ttl .footer-title .eng {
    font-size: 2.2rem;
  }
}

.footer-contact .inner-box .child.ttl p {
  text-align: center;
}

@media screen and (max-width: 1101px) {
  .footer-contact .inner-box .child.ttl p {
    font-size: 12px;
  }
}

.footer-contact .inner-box .child.tel {
  text-align: center;
}

@media screen and (max-width: 639px) {
  .footer-contact .inner-box .child.tel {
    border-bottom: 1px solid #bbbbbb;
    padding-bottom: 30px;
  }
}

.footer-contact .inner-box .child.tel p:first-child {
  margin-bottom: 20px;
}

@media screen and (max-width: 639px) {
  .footer-contact .inner-box .child.tel p:first-child {
    margin-bottom: 10px;
  }
}

.footer-contact .inner-box .child.tel p:nth-child(2) {
  margin-bottom: 10px;
}

.footer-contact .inner-box .child.tel a {
  color: #232323;
  display: block;
}

.footer-contact .inner-box .child.tel a span {
  color: #222020;
  font-size: 3rem;
  line-height: 1;
  transition: all 0.4s ease-in;
  font-family: "Oswald", sans-serif;
  font-weight: 900;
}

@media screen and (max-width: 639px) {
  .footer-contact .inner-box .child.tel a span {
    font-size: 1.5rem;
  }
}

.footer-contact .inner-box .child.tel a span:hover {
  color: #108ac2;
}

.footer-contact .inner-box .child.mail {
  text-align: center;
}

@media screen and (max-width: 639px) {
  .footer-contact .inner-box .child.mail {
    font-size: 16px;
  }
}

.footer-contact .inner-box .child.mail p:first-child {
  margin-bottom: 20px;
}

@media screen and (max-width: 639px) {
  .footer-contact .inner-box .child.mail p:first-child {
    margin-bottom: 10px;
  }
}

.footer-contact .inner-box .child.mail p:nth-child(2) {
  margin-bottom: 10px;
}

.footer-contact .inner-box .child.mail .bnr_mail {
  padding: 5px 35px;
  border: 1px solid #222020;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.4s ease-in;
  width: 150px;
  display: block;
  color: #222020;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
}

@media screen and (max-width: 639px) {
  .footer-contact .inner-box .child.mail .bnr_mail {
    width: 200px;
  }
}

.footer-contact .inner-box .child.mail .bnr_mail:hover {
  background: #222020;
  color: #fefefe;
}

.footer-contact .inner-box .left {
  width: 30%;
  position: relative;
}

.footer-contact .inner-box .left .footer-title {
  text-align: center;
  color: #fff;
  font-size: 2.2rem;
}

.footer-contact .inner-box .left .footer-title span {
  font-size: 5.4rem;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
  -webkit-text-fill-color: transparent;
}

.footer-contact .inner-box .right {
  width: 65%;
}

@media screen and (max-width: 1025px) {
  .footer-contact .inner-box {
    padding: 20px 10px;
  }

  .footer-contact .inner-box .left .footer-title {
    font-size: 1.8rem;
  }

  .footer-contact .inner-box .left .footer-title span {
    font-size: 4.2rem;
  }
}

@media screen and (max-width: 639px) {
  .footer-contact .inner-box .left {
    width: 100%;
    margin: 0 auto 30px;
  }

  .footer-contact .inner-box .left .footer-title {
    font-size: 1.6rem;
  }

  .footer-contact .inner-box .left .footer-title span {
    font-size: 3.6rem;
  }

  .footer-contact .inner-box .right {
    width: 100%;
  }
}

#l-footer {
  position: relative;
  width: 100%;
}

#l-footer:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0;
  right: 0;
  z-index: -1;
  background: linear-gradient(45deg, rgba(4, 32, 84, 0.7) 20%, rgba(0, 100, 148, 0.7) 55%), url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26842/bg-footer.jpg);
  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 40px;
  z-index: 2;
}

#l-footer .footer-column {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /* align-items: center; */
  margin: 0 auto;
  z-index: 2;
}

#l-footer .footer-column.type1 {
  margin: 0 auto;
}

#l-footer .footer-column .footer-left {
  width: 500px;
}

@media screen and (max-width: 1101px) {
  #l-footer .footer-column .footer-left {
    width: 450px;
  }
}

#l-footer .footer-column .footer-right {
  /* width: calc(100% - 650px); */
  width: calc(100% - 530px);
  display: flex;
  justify-content: space-between;
}

#l-footer .footer-column .footer-right .gmapbox {
  width: 49%;
}

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

@media screen and (max-width: 1025px) and (max-width: 639px) {
  #l-footer .footer-column .footer-left {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 1025px) {
  #l-footer .footer-column .footer-right {
    width: 100%;
  }
}

@media screen and (max-width: 639px) {
  #l-footer .footer-column .footer-right {
    flex-direction: column;
    margin-top: 15px;
  }

  #l-footer .footer-column .footer-right .gmapbox {
    width: 100%;
  }
}

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

.footer-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-wrap .footer-left {
  width: 38%;
}

.footer-wrap .footer-right {
  width: 50%;
}

@media screen and (max-width: 639px) {
  .footer-wrap {
    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;
  }
}

.footer-sns {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-sns a {
  color: #fefefe;
  font-size: 4rem;
  line-height: 1;
}

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

/* footer_navi
----------------------------------*/
.footer_navi {
  margin: 35px auto;
}

@media screen and (max-width: 1025px) {
  .footer_navi {
    display: none;
  }
}

.footer_navi ul {
  margin: 0 auto;
  width: 360px;
  display: flex;
  flex-wrap: wrap;
}

.footer_navi ul li {
  width: 48%;
}

.footer_navi ul li a {
  position: relative;
  display: block;
  color: #fefefe;
  font-size: 1.3rem;
  line-height: 2;
}

@media screen and (max-width: 1101px) {
  .footer_navi ul li a {
    font-size: 1.2rem;
  }
}

.footer_navi ul li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: 900;
  margin-right: 10px;
  color: rgba(254, 254, 254, 0.3);
}

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

.footer_navi ul li a:hover {
  opacity: 0.6;
  margin-left: 5px;
  color: #ffd803;
}

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

.footer_navi ul li .dropdown li {
  width: 100%;
  margin: 0;
}

.footer_navi ul li .dropdown 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 a:before {
  position: absolute;
  content: "・";
  margin-right: 5px;
  color: #0537BF;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.flogo {
  margin: 0 auto 25px;
  /* max-width: 320px; */
  max-width: 380px;
  text-align: center;
}

@media screen and (max-width: 1025px) {
  .flogo {
    margin: 0 auto 20px;
  }
}

@media screen and (max-width: 639px) {
  .flogo {
    /* width: 50%; */
    width: 100%;
  }
}

.address {
  text-align: center;
  color: #fefefe;
}

.address .address_inner span {
  background: #fefefe;
  padding: 1px 20px;
  color: #222020;
  display: block;
  /* width: 80%; */
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 1025px) {
  .address .address_inner span {
    /* width: 40%; */
  }
}

@media screen and (max-width: 639px) {
  .address .address_inner span {
    /* width: 60%; */
  }
}

.copyright {
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
  color: #fff;
  border-bottom: 0;
  max-width: 90%;
  margin: 0 auto;
}

@media screen and (max-width: 1025px) {
  .copyright {
    font-size: 12px;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 639px) {
  .copyright {
    max-width: 95%;
  }
}

/* contents
----------------------------------*/
.single0 {
  margin: 0 auto;
  padding: 120px 0;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 1300px) {
  .single0 {
    padding: 120px 10px;
  }
}

.single0.type3 {
  padding: 0;
}

.single {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 0;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 1300px) {
  .single {
    padding: 120px 10px;
  }
}

.single02 {
  margin: 0 auto;
  padding: 120px 0;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 1300px) {
  .single02 {
    padding: 120px 10px;
  }
}

.single03 {
  max-width: 1500px;
  margin: 0 auto;
  padding: 120px 0;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 1300px) {
  .single03 {
    padding: 120px 10px;
  }
}

.single0,
.single,
.single02,
.single03 {
  margin: 0 auto;
  position: relative;
  padding: 120px 0;
}

.single0.phalf,
.single.phalf,
.single02.phalf,
.single03.phalf {
  padding: 60px 0;
}

.single0.type1,
.single.type1,
.single02.type1,
.single03.type1 {
  padding: 120px 0 0;
}

.single0.type2,
.single.type2,
.single02.type2,
.single03.type2 {
  padding: 0 0 120px;
}

.margin-top {
  margin-top: -80px;
}

@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 #0537BF;
}

.mbox.shadow {
  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 {
  background: rgba(0, 0, 0, 0.3);
  padding: 35px 30px;
}

@media screen and (max-width: 639px) {
  .mbox2 {
    padding: 15px;
  }
}

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

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

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

.bg-grid2 {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/25542/grid2.png) repeat;
}

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

#main .blog-wrap>li {
  width: calc((100% - 15px) / 3);
}

@media screen and (max-width: 639px) {
  #main .blog-wrap>li {
    width: calc((100% - 5px) / 2);
    padding: 0.5em;
  }
}

#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 {
  position: relative;
  margin-bottom: 40px;
}

.mtitle .eng,
.mtitle .eng2 {
  color: #0537BF;
  position: relative;
  z-index: 2;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 5rem;
}

.mtitle .ja {
  position: relative;
  z-index: 2;
  font-size: 1em;
  color: #222020;
  display: block;
  font-weight: 500;
}

.mtitle.white .eng,
.mtitle.white .eng2,
.mtitle.white .ja {
  color: #fff;
}

@media screen and (max-width: 639px) {
  .mtitle {
    margin-bottom: 0;
  }

  .mtitle .eng,
  .mtitle .eng2 {
    font-size: 3rem;
  }

  .mtitle .ja {
    font-size: 1.3rem;
  }
}

.mtitle2 {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  font-weight: 600;
  position: relative;
}

.mtitle2:before {
  content: "";
  width: 20px;
  height: 1px;
  background: #ccc;
  display: inline-block;
  margin: 0 1em;
}

.mtitle2 span {
  position: relative;
  z-index: 2;
}

.mtitle2 .eng {
  font-size: 4rem;
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  color: #0537BF;
  order: -1;
}

.mtitle2 .ja {
  font-size: 2.8rem;
  color: #333;
}

@media screen and (max-width: 639px) {
  .mtitle2 {
    margin-bottom: 10px;
  }

  .mtitle2:before {
    width: 15px;
  }

  .mtitle2 .eng {
    font-size: 3rem;
  }

  .mtitle2 .ja {
    font-size: 1.5rem;
  }
}

.mtitle3 {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  letter-spacing: 0.3em;
}

.mtitle3 .ja {
  display: block;
  font-size: 2.4rem;
  line-height: 1.5;
  color: #222020;
  text-orientation: upright;
}

.mtitle3 .eng {
  display: block;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #0537BF;
  position: relative;
}

.mtitle3.type2 {
  position: initial;
}

.mtitle3.type2 .ja,
.mtitle3.type2 .eng {
  color: #fefefe;
}

.mtitle3.type2 .ja {
  border-right: none;
}

.mtitle3.type2 .eng {
  font-size: 5.8rem;
}

.mtitle3.type2 .eng::before {
  content: "";
  width: 10px;
  height: 100%;
  display: block;
  position: absolute;
  left: 4px;
  right: 0;
  margin: 0 auto;
  top: calc(-100% - 35px);
  background: #fff;
}

@media screen and (max-width: 639px) {
  .mtitle3 {
    left: 10px;
    top: 15px;
  }

  .mtitle3 .ja {
    font-size: 1.6rem;
  }

  .mtitle3 .eng {
    font-size: 1.3rem;
  }

  .mtitle3.type2 {
    writing-mode: initial;
    margin-bottom: 20px;
  }

  .mtitle3.type2 .eng {
    font-size: 4.8rem;
  }

  .mtitle3.type2 .eng::before {
    display: none;
  }
}

.mtitle_line {
  font-size: 1.8rem;
  padding-bottom: 20px;
  position: relative;
  font-weight: 600;
  margin-bottom: 25px;
  color: #222020;
  letter-spacing: 0.2rem;
}

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

.mtitle_line:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  content: "";
  opacity: 0.6;
  background-image: repeating-linear-gradient(-45deg, #0537BF, #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;
  }
}

.mtitle4 {
  position: relative;
  border-bottom: 1px solid #222020;
  padding-bottom: 10px;
}

.mtitle4 .eng {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 5.6em;
  position: relative;
  line-height: 1;
  color: #0537BF;
  color: transparent;
  -webkit-text-stroke: 1px #0537BF;
  white-space: nowrap;
  overflow: hidden;
}

.mtitle4 .ja {
  font-size: 1.5em;
  color: #222020;
  padding-left: 1em;
}

@media screen and (max-width: 639px) {
  .mtitle4 {
    max-width: 90%;
  }

  .mtitle4 .eng {
    font-size: 3em;
  }

  .mtitle4 .ja {
    font-size: 1.2em;
    display: block;
  }
}

.mtitle5 {
  position: relative;
  border-bottom: 1px solid #222020;
  padding: 15px;
  text-align: left;
  margin-bottom: 40px;
}

.mtitle5 .eng {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  display: block;
  color: #0537BF;
  font-size: 1.1em;
}

.mtitle5 .ja {
  font-size: 3rem;
  font-weight: 900;
  color: #222020;
}

@media screen and (max-width: 639px) {
  .mtitle5 .eng {
    font-size: 1em;
  }

  .mtitle5 .ja {
    font-size: 1.6rem;
  }
}

.mtitle6 {
  margin-bottom: 40px;
}

.mtitle6 .eng {
  display: inline-block;
  vertical-align: top;
  position: relative;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 52px;
  line-height: 1;
  letter-spacing: 3.1px;
  margin-bottom: 16px;
}

.mtitle6 .eng::before {
  content: "";
  width: 100vw;
  height: 10px;
  background: #0537BF;
  left: calc(-100vw - 20px);
  top: 50%;
  margin-top: -5px;
  display: block;
  position: absolute;
}

.mtitle6 .ja {
  display: block;
  letter-spacing: 0.95px;
}

.mtitle_sub {
  padding-left: 0.5em;
  font-weight: 600;
  position: relative;
  border-left: 3px solid #0537BF;
  margin: 8px 0 15px;
  font-size: 1.1em;
  line-height: 1.4;
  text-align: left;
}

.mtitle_sub:before {
  position: absolute;
  left: -3px;
  bottom: 0;
  content: "";
  width: 3px;
  height: 50%;
  background-color: #21a2af;
}

.mtitle_box {
  background: #f5f3eb;
  color: #102777;
  font-size: 1.8rem;
  position: relative;
  padding: 10px 15px;
  margin-bottom: 25px;
  font-weight: 600;
}

.mtitle_box a {
  color: #fff;
}

.mtitle_box span {
  font-size: 14px;
  padding-left: 10px;
}

.mtitle_box:before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f30a";
  font-weight: 900;
  display: block;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
}

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

.mtitle_box.type1 {
  background: #108ac2;
}

.mtitle_box.type2 {
  background: #21a2af;
}

.mtitle_box2 {
  background: #0537BF;
  background-image: linear-gradient(to right bottom, #0537BF, #0537BF);
  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: #fff;
  content: "";
  display: block;
  transform: rotate(60deg);
  position: absolute;
  bottom: -10px;
  right: -150px;
  width: 300px;
  height: 280px;
}

@media screen and (max-width: 639px) {
  .mtitle_box2 {
    font-size: 15px;
    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;
  }
}

.mtext1 {
  font-size: 2.2rem;
  line-height: 1.6;
}

@media screen and (max-width: 639px) {
  .mtext1 {
    font-size: 1.4rem;
  }
}

.mtext2 {
  font-size: 3rem;
  line-height: 1.6;
}

@media screen and (max-width: 896px) {
  .mtext2 {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 639px) {
  .mtext2 {
    font-size: 1.6rem;
    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: "Oswald", sans-serif;
  font-weight: 700;
}

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

/* btn
----------------------------------*/
.btn01 a {
  background: #0537BF;
  text-align: center;
  width: 300px;
  margin: 15px auto;
  color: #fff;
  display: block;
  padding: 8px 10px;
  font-weight: 600;
  border-radius: 35px;
  max-width: 90%;
  white-space: nowrap;
}

.btn01 a:hover {
  background: #108ac2;
  color: #fefefe;
}

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

.btn01.mail a {
  background: #ffd803;
  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%;
  }
}

.btn01.btn-left a {
  margin: 15px 0;
}

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

.btn02 a {
  display: block;
  position: relative;
  padding: 15px 30px 15px 5px;
  line-height: 24px;
  letter-spacing: 0.1rem;
  font-size: 1.5rem;
  text-align: center;
  color: #fff;
  background-image: linear-gradient(to right, #394578, #232c53);
  font-weight: 600;
}

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

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

.btn02.type1 a {
  background: #fff;
  color: #0537BF;
}

@media screen and (max-width: 639px) {
  .btn02 {
    width: 260px;
  }

  .btn02 a {
    font-size: 1.3rem;
  }
}

.btn03 a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  gap: 1em;
  color: #222020;
}

.btn03 a span {
  display: block;
}

.btn03 a .circle_btn {
  position: relative;
  background: #0537BF;
  color: #fff;
  border-radius: 100vh;
  width: 3.5em;
  height: 3.5em;
  line-height: 3.5em;
  text-align: center;
  transition: 0.3s;
}

.btn03 a .circle_btn:after {
  content: "";
  width: 100%;
  height: 100%;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s ease-in-out;
  color: #fff;
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: 900;
}

.btn03 a .btn_txt {
  line-height: 1;
  padding-top: 0.5em;
  transition: all 0.5s ease;
}

.btn03 a:hover .circle_btn {
  transform: scale(1.1);
  background: #333;
}

.btn03 a:hover .circle_btn::after {
  color: #fff;
}

.btn03 a:hover .btn_txt {
  transform: translateX(15px);
}

.btn03.c02 a {
  color: #222020;
}

.btn03.c02 a .circle_btn {
  background: #0537BF;
  color: #fff;
}

.btn03.c02 a .circle_btn:after {
  color: #fff;
}

.btn-arrow {
  width: 70px;
  height: 70px;
  position: relative;
  text-align: center;
  line-height: 60px;
  border: 1px solid transparent;
  border-radius: 100%;
  transition: all 0.6s ease;
  margin-top: 20px;
}

.btn-arrow::before,
.btn-arrow::after {
  border-radius: 100%;
  box-sizing: inherit;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.btn-arrow::before {
  border: 1px solid transparent;
}

.btn-arrow::after {
  border: 0 solid transparent;
}

.btn-arrow i {
  display: block;
  position: absolute;
  width: 30px;
  border-bottom: 1px solid #fefefe;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 5px;
}

.btn-arrow i:before {
  position: absolute;
  width: 10px;
  height: 8px;
  content: "";
  right: 3px;
  bottom: -1px;
  border-right: 2px solid #fefefe;
  transform: skew(45deg);
}

.btn-arrow .eng2 {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
}

/* page-title
----------------------------------*/
.page-title {
  position: relative;
  z-index: 3;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26842/page_ttl.jpg) no-repeat 60% 50%/cover;
}

.page-title:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, #108ac2, #111);
  opacity: 0.4;
}

.page-title:before {
  position: absolute;
  content: "";
  bottom: -18%;
  left: -64%;
  width: 79%;
  width: 74%;
  height: 180%;
  background-image: linear-gradient(to right, #0537BF, #0537BF, #108ac2);
  transform: translate(30%, -10%) skew(-25deg);
  mix-blend-mode: hard-light;
  pointer-events: none;
}

.page-title .inner {
  margin: 0 auto;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 1200px;
  position: relative;
  z-index: 3;
}

@media screen and (max-width: 1101px) {
  .page-title .inner {
    padding: 0 20px;
  }
}

@media screen and (max-width: 639px) {
  .page-title .inner {
    height: 75vw;
  }
}

.page-title .inner .page-lead {
  font-size: 2rem;
  position: relative;
  padding-bottom: 60px;
}

.page-title .inner .page-lead.on .eng {
  transform: translateX(0);
  opacity: 1;
}

.page-title .inner .page-lead.on .ja {
  opacity: 1;
  transform: translateY(0);
}

.page-title .inner .page-lead .eng {
  display: block;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 5rem;
  color: #fff;
  line-height: 1;
  text-shadow: 4px 4px 20px rgba(73, 45, 24, 0.1);
  opacity: 0;
  transform: translateX(-20%);
  transition: 0.5s all cubic-bezier(0.55, 0.05, 0.22, 0.99);
}

.page-title .inner .page-lead .ja {
  opacity: 0;
  transform: translateY(20px);
  position: relative;
  z-index: 4;
  transition: 0.5s all cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition-delay: 0.6s;
  display: inline-block;
  color: #fff;
  letter-spacing: 0.15em;
  text-shadow: 0 1px 8px rgba(16, 39, 119, 0.8);
}

@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-01 {
  position: relative;
}

.bg-01:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(16deg, rgba(116, 116, 116, 0.05) 0%, rgba(116, 116, 116, 0.05) 25%, transparent 25%, transparent 96%, rgba(177, 177, 177, 0.08) 96%, rgba(177, 177, 177, 0.08) 100%), linear-gradient(236deg, rgba(148, 148, 148, 0.04) 0%, rgba(148, 148, 148, 0.04) 53%, transparent 53%, transparent 59%, rgba(56, 56, 56, 0.02) 59%, rgba(56, 56, 56, 0.02) 100%), linear-gradient(284deg, rgba(16, 16, 16, 0.03) 0%, rgba(16, 16, 16, 0.03) 46%, transparent 46%, transparent 71%, rgba(181, 181, 181, 0.1) 71%, rgba(181, 181, 181, 0.1) 100%), linear-gradient(316deg, rgba(197, 197, 197, 0.02) 0%, rgba(197, 197, 197, 0.02) 26%, transparent 26%, transparent 49%, rgba(58, 58, 58, 0.02) 49%, rgba(58, 58, 58, 0.02) 100%), linear-gradient(90deg, #fefefe, #fefefe);
}

.bg-01.type1:before {
  background-image: linear-gradient(-164deg, rgba(5, 55, 191, 0.09) 0%, rgba(5, 55, 191, 0.06) 25%, transparent 25%, transparent 96%, rgba(5, 55, 191, 0.1) 96%, rgba(5, 55, 191, 0.1) 100%), linear-gradient(210deg, rgba(16, 138, 194, 0.09) 0%, rgba(16, 138, 194, 0.09) 53%, transparent 53%, transparent 59%, rgba(5, 55, 191, 0.06) 59%, rgba(5, 55, 191, 0.06) 100%), linear-gradient(255deg, rgba(16, 138, 194, 0.1) 0%, rgba(16, 138, 194, 0.1) 46%, transparent 46%, transparent 71%, rgba(5, 55, 191, 0.06) 71%, rgba(5, 55, 191, 0.06) 100%), linear-gradient(316deg, rgba(5, 55, 191, 0.08) 0%, rgba(5, 55, 191, 0.08) 26%, transparent 26%, transparent 49%, rgba(244, 243, 243, 0.6) 49%, rgba(244, 243, 243, 0.6) 100%), linear-gradient(90deg, rgb(251.3173913043, 250.9826086957, 250.9826086957), rgb(251.3173913043, 250.9826086957, 250.9826086957));
}

.bg-01.type2:before {
  background-image: linear-gradient(-164deg, rgba(5, 55, 191, 0.09) 0%, rgba(5, 55, 191, 0.06) 25%, transparent 25%, transparent 96%, rgba(5, 55, 191, 0.1) 96%, rgba(5, 55, 191, 0.1) 100%), linear-gradient(210deg, rgba(16, 138, 194, 0.09) 0%, rgba(16, 138, 194, 0.09) 53%, transparent 53%, transparent 59%, rgba(5, 55, 191, 0.06) 59%, rgba(5, 55, 191, 0.06) 100%), linear-gradient(255deg, rgba(16, 138, 194, 0.1) 0%, rgba(16, 138, 194, 0.1) 46%, transparent 46%, transparent 71%, rgba(5, 55, 191, 0.06) 71%, rgba(5, 55, 191, 0.06) 100%), linear-gradient(316deg, rgba(5, 55, 191, 0.08) 0%, rgba(5, 55, 191, 0.08) 26%, transparent 26%, transparent 49%, rgba(16, 138, 194, 0.6) 49%, rgba(16, 138, 194, 0.6) 100%), linear-gradient(90deg, rgb(17.1657142857, 148.0542857143, 208.1342857143), rgb(17.1657142857, 148.0542857143, 208.1342857143));
}

.bg-02 {
  position: relative;
}

.bg-02:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to top, rgba(197, 238, 238, 0.2) 0%, rgba(197, 238, 238, 0.5) 45%, rgba(238, 238, 238, 0.3) 55%, rgba(238, 238, 238, 0.5) 100%);
  opacity: 0.6;
}

.bg-03 {
  position: relative;
}

.bg-03:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #0537BF;
  opacity: 0.7;
  z-index: -1;
}

.bg-03:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26842/bg-03.jpg) no-repeat center/cover;
}

.bg-base {
  position: relative;
}

.bg-base:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(to bottom, rgba(33, 162, 175, 0.4) 0%, rgba(21.84375, 146.25, 187.46875, 0.33) 50%, rgba(19.0161290323, 142.2580645161, 190.6290322581, 0.315) 65%, rgba(17.5327868852, 140.1639344262, 192.2868852459, 0.3075) 75.5%, rgba(16.7625082654, 139.076482257, 193.1477848799, 0.3037) 82.85%, rgba(16.3931179464, 138.554990042, 193.5606328834, 0.3019) 88%, rgba(16, 138, 194, 0.3) 100%);
  opacity: 0.7;
}

.bg-sub {
  position: relative;
}

.bg-sub:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background-image: repeating-linear-gradient(to right, rgb(59.349112426, 58.650887574, 58.650887574), #555454, rgb(123.4763313609, 122.0236686391, 122.0236686391), #555454, rgb(59.349112426, 58.650887574, 58.650887574));
  z-index: -2;
}

.bg-green {
  background: rgba(197, 238, 238, 0.4);
}

.bg-gray {
  position: relative;
}

.bg-gray:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(241, 241, 241, 0.8);
  z-index: -2;
}

.bg-gray.type1:before {
  opacity: 0.8;
}

.bg-gray.bg-half-bottom {
  background: transparent;
  background-image: linear-gradient(to bottom, transparent 0%, transparent 50%, #f1f1f1 50.1%, #f1f1f1 100%);
}

.bg-gray.bg-half-upper {
  background: transparent;
  background-image: linear-gradient(to bottom, #f1f1f1 0%, #f1f1f1 50%, transparent 50.1%, transparent 100%);
}

/* tbl
----------------------------------*/
.tbl-company {
  width: 100%;
}

.tbl-company th,
.tbl-company td {
  padding: 28px 0;
  vertical-align: top;
  border-bottom: 1px rgba(34, 32, 32, 0.1) 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 {
  width: 100%;
}

.tbl th,
.tbl td {
  padding: 15px;
  vertical-align: middle;
  border-bottom: 2px solid #ededed;
  font-size: 1.5rem;
}

.tbl th {
  background: rgba(5, 55, 191, 0.8);
  text-align: center;
  color: #f5f3eb;
}

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

.tbl .cell01 {
  width: 45%;
}

.tbl .cell02 {
  width: 30%;
}

@media screen and (max-width: 639px) {
  .tbl th {
    text-align: left;
  }

  .tbl th,
  .tbl td {
    padding: 10px 8px;
    letter-spacing: 0;
    font-size: 1.2rem;
  }

  .tbl.type1 th,
  .tbl.type1 td {
    display: block;
    width: 100%;
  }

  .tbl.type1 th {
    line-height: 1.6;
  }
}

.tbl_new {
  width: 100%;
}

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

.tbl_new tr th {
  font-weight: 600;
  width: 20%;
  color: #102777;
  text-align: left;
  padding-left: 30px;
  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: #c5eeee;
  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 #ddd;
  vertical-align: middle;
}

@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: #108ac2;
  margin-right: 5px;
  padding: 0px 4px;
}

.tbl-border th {
  width: 22%;
  text-align: left;
  font-weight: 600;
  border-bottom-color: #222020;
}

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

@media screen and (max-width: 639px) {
  .tbl-border th {
    width: 30%;
  }
}

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

.ggmap.type1 {
  padding-bottom: 50%;
}

.ggmap.type2 {
  padding-bottom: 60%;
}

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

.gmapbox .ggmap {
  padding-bottom: 33%;
  position: relative;
}

.gmapbox .ggmap .ggmap-btn a {
  position: absolute;
  right: 0;
  top: 0;
  background: #0537BF;
  background-image: linear-gradient(to right, #222020 -22.57%, #0537BF 68.82%);
  color: #fefefe;
  padding: 15px 25px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  width: 200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gmapbox .ggmap .ggmap-btn a i {
  margin-left: 40px;
}

.gmapbox .ggmap .ggmap-btn a:hover {
  background-image: linear-gradient(to right, #222020 30.57%, #0537BF 98.82%);
}

@media screen and (max-width: 639px) {
  .gmapbox .ggmap .ggmap-btn a {
    padding: 10px 15px;
    width: 170px;
  }
}

.gmapbox .ggmap.type-footer {
  padding-bottom: 60%;
}

@media screen and (max-width: 1025px) {
  .gmapbox .ggmap.type-company {
    padding-bottom: 55%;
  }
}

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

.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_check.type1 {
  display: flex;
  flex-wrap: wrap;
}

.list_check.type1 li {
  background: #102777;
  padding: 12px 8px;
  width: 31%;
  color: #fff;
  justify-content: space-between;
}

@media screen and (max-width: 639px) {
  .list_check.type1 li {
    width: 95%;
    margin: 0 auto 5px;
  }

  .list_check.type1 li:nth-child(2n) {
    margin-left: auto;
  }
}

.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: #0537BF;
  border-bottom: 1px dotted #0537BF;
}

.list_check li:before {
  position: absolute;
  left: 0;
  top: 20px;
  content: "";
  width: 10px;
  height: 2px;
  background: #108ac2;
}

@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;
  margin-bottom: 4px;
}

.list_check2 li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: 900;
  margin-right: 8px;
  color: #0537BF;
}

.list_check2.col2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px 20px;
}

@media screen and (max-width: 639px) {
  .list_check2.col2 {
    grid-template-columns: 1fr;
    gap: 5px 0;
  }
}

.ol-list {
  counter-reset: number;
  list-style: none;
  padding: 5px;
}

.ol-list.type1 {
  display: flex;
  flex-wrap: wrap;
}

.ol-list.type1>li {
  width: 48%;
}

.ol-list.type1>li:nth-child(2n) {
  margin-left: 4%;
}

.ol-list li {
  margin-bottom: 15px;
  font-weight: 600;
  padding-left: 3em;
  position: relative;
  line-height: 2em;
  margin-bottom: 20px;
}

.ol-list li span {
  font-size: 2rem;
  display: block;
  font-weight: 700;
}

.ol-list li:before {
  counter-increment: number;
  content: counter(number);
  line-height: 2.5em;
  text-align: center;
  font-size: 2.5rem;
  color: #0537BF;
  font-family: "Oswald", sans-serif;
  position: absolute;
  left: 0;
  top: 0px;
  border-radius: 100%;
}

@media screen and (max-width: 639px) {
  .ol-list li {
    font-size: 1.3rem;
    padding-left: 2em;
  }

  .ol-list li span {
    font-size: 1.5rem;
  }

  .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: #0537BF;
  font-size: 0.8em;
}

.list_disc.type2 li {
  border-bottom: 1px dashed #ccc;
}

.list_disc.sbc li:before {
  color: #108ac2;
}

.list-btn {
  display: flex;
  flex-wrap: wrap;
}

.list-btn.type1 {
  justify-content: center;
}

.list-btn li {
  width: 32%;
  margin: 0 1.995% 10px 0;
}

.list-btn li a {
  display: block;
  background: #102777;
  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: #108ac2;
}

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

.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;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
  width: 240px;
  font-size: 1.5rem;
}

@media screen and (max-width: 639px) {
  .morebtn2 {
    font-size: 1.2rem;
  }
}

.morebtn2 .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 44px;
  height: 44px;
  background: #0537BF;
  margin-left: -1px;
  border-radius: 22px;
}

.morebtn2 .circle .icon {
  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 {
  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;
  transform: rotate(45deg);
}

.morebtn2 .button-text {
  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: #222;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
}

.morebtn2:hover .circle {
  width: 101%;
  background: #0537BF;
}

.morebtn2:hover .circle .icon.arrow {
  background: #fff;
  transform: translate(1rem, 0);
}

.morebtn2:hover .button-text {
  color: #fff;
}

.morebtn2.type1 {
  background: #0537BF;
  width: 280px;
}

.morebtn2.type1 .circle {
  background: #fff;
}

.morebtn2.type1 .icon {
  background: #108ac2;
}

.morebtn2.type1 .icon.arrow:before {
  border-color: #0537BF;
}

.morebtn2.type1 .button-text {
  color: #fff;
  font-size: 1.1em;
}

.morebtn2.type1:hover .button-text {
  color: #0537BF;
}

/* blog
----------------------------------*/
#blog_contents {
  display: flex;
  justify-content: space-between;
}

#blog_contents .blog_ttl_left {
  width: 20%;
}

@media screen and (max-width: 1025px) {
  #blog_contents {
    display: block;
  }

  #blog_contents .blog_ttl_left {
    width: 100%;
  }
}

#top-blog {
  width: 75%;
}

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

@media screen and (max-width: 1025px) {
  #top-blog {
    margin-top: 30px;
    width: 100%;
  }
}

.blog-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
}

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

.blog-wrap>li {
  width: calc((100% - 15px) / 4);
  position: relative;
  padding: 1em;
}

.blog-wrap>li>a {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}

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

@media screen and (max-width: 639px) {
  .blog-wrap>li {
    width: calc((100% - 5px) / 2);
    padding: 0.5em;
  }
}

.blog-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  box-sizing: border-box;
  margin-bottom: 10px;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
  font-family: "object-fit: cover;";
}

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

@media screen and (max-width: 1025px) {
  .blog-img {
    height: 150px;
  }
}

.blog-category {
  display: inline-block;
  padding: 5px 5px;
  line-height: 1;
  text-align: center;
  background: #222020;
  color: #fff;
  font-weight: 600;
  margin-left: 5px;
  font-size: 0.9em;
}

.blog-date {
  line-height: 1.3;
  text-align: center;
  display: inline-block;
  color: #fff;
  padding: 0 10px;
  background: #000;
  font-size: 1.2em;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-weight: 700;
  position: absolute;
  top: 0;
  top: -8px;
  left: -8px;
  padding: 5px 10px;
}

.blog-title {
  line-height: 1.3;
  margin: 10px 0 0;
  color: #222020;
  font-size: 0.9em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}

.blog-txt {
  line-height: 1.5;
  color: #0537BF;
  padding: 10px;
}

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

.blog-month ul {
  display: flex;
  flex-wrap: wrap;
}

.blog-month ul li {
  width: 60%;
  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: block;
  padding: 5px 0;
  background: #0537BF;
  color: #fff;
  font-size: 1.2rempx;
  font-size: 0.075remrem;
}

.blog-month ul li a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 1101px) {
  .blog-month ul li {
    width: 100%;
  }
}

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

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

.pages .page_next a,
.pages .page_prev a {
  color: #fff;
  padding: 4px 15px;
  background: #0537BF;
  font-size: 12px;
}

.category_nav li:not(:last-child) {
  margin-bottom: 5px;
}

.category_nav li a {
  display: block;
  padding: 10px;
  font-size: 13px;
  text-align: center;
  background: #f1f1f1;
  color: #222020;
}

.category_nav li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0a9";
  font-weight: 900;
  color: #108ac2;
}

.category_nav li a:hover {
  opacity: 0.5;
}

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

.blog2 .blog-wrap>li .blog-img {
  height: 170px;
}

/* etc
----------------------------------*/
.cut {
  overflow: hidden;
  zoom: 1;
}

.line {
  border-bottom: 1px solid #ddd;
  margin: 80px 0;
}

.line2 {
  position: relative;
  padding-top: 30px;
  margin-bottom: 30px;
}

.line2::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 120px;
  bottom: 0;
  left: 50%;
  background: #0537BF;
}

.arrow {
  font-size: 5rem;
  color: #0537BF;
  margin-top: 40px;
}

.w300 {
  width: 300px;
}

.spbr {
  display: none;
}

.color1 {
  color: #0537BF;
}

.color2 {
  color: #108ac2;
}

.color3 {
  color: #c90c0f;
}

.relative {
  position: relative;
}

.main-contents {
  position: relative;
  z-index: 4;
}

.num {
  font-weight: 600;
}

.num a {
  color: #0537BF;
  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: #f66009;
}

.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 {
  max-width: 600px;
  margin: 20px auto 60px;
}

.telbnr li {
  border: 2px solid #0537BF;
  padding: 15px;
  text-align: center;
  border-radius: 10px;
}

.telbnr li a {
  width: 100%;
  display: block;
  font-size: 3rem;
  line-height: 1.5;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  color: #0537BF;
  transition: all 0.4s ease-in;
}

.telbnr li a span {
  font-size: 1.5rem;
  padding-left: 20px;
}

.telbnr li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 10px;
  font-size: 3.2rem;
}

.telbnr li a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 639px) {
  .telbnr {
    max-width: 100%;
  }

  .telbnr li {
    width: 100%;
  }

  .telbnr li a {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }

  .telbnr li a:before {
    font-size: 2.2rem;
  }

  .telbnr li a span {
    font-size: 1.2rem;
    display: block;
    padding-left: 20px;
  }
}

.telbnr-ttl {
  font-size: 1.8rem;
  color: #0537BF;
  margin-top: -30px;
  margin-bottom: 15px;
}

.telbnr-ttl span {
  background: #0537BF;
  padding: 5px 30px;
  border: 2px solid #0537BF;
  border-radius: 50px;
  color: #fff;
}

@media screen and (max-width: 639px) {
  .telbnr-ttl {
    font-size: 1.4rem;
  }
}

/* breadcrumb
----------------------------------*/
.breadcrumb {
  max-width: 1200px;
  margin: 20px auto 20px;
  font-size: 1.2rem;
}

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

.breadcrumb li a {
  color: #0537BF;
}

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

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

/* form
----------------------------------*/
.thanks {
  padding: 40px;
  background: #fff;
  max-width: 700px;
  margin: 0 auto;
}

@media screen and (max-width: 639px) {
  .thanks {
    max-width: 95%;
    padding: 30px 15px;
  }
}

.shadow {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 18px 50px -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;
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #0537BF;
  font-weight: 800;
  padding-bottom: 8px;
  border-bottom: 1px solid #ccc;
}

.mtitle_small:before {
  content: "";
  width: 50px;
  height: 1px;
  background-color: #0537BF;
  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;
  border-bottom: 1px solid #ccc;
}

.mtitle_small2:before {
  font-family: "Font Awesome 5 Free";
  content: "\f3c5";
  font-weight: 900;
  margin-right: 5px;
  font-size: 0.7em;
  color: #003064;
  font-size: 1.1em;
  font-display: swap;
}

.mtitle_small2 span {
  font-size: 1.4rem;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 0;
  letter-spacing: 0.05em;
}

.mtitle_small3 {
  position: relative;
  background: #fefefe;
  border: 1px solid #ddd;
  padding: 15px 15px 15px 30px;
  margin-bottom: 15px;
  color: #222020;
  font-size: 2rem;
  font-weight: 600;
}

.mtitle_small3:before {
  position: absolute;
  top: 15%;
  left: 10px;
  width: 5px;
  height: 70%;
  content: "";
  background: rgba(16, 138, 194, 0.8);
}

@media screen and (max-width: 639px) {
  .mtitle_small3 {
    padding: 10px 5px 10px 20px;
    margin-bottom: 20px;
  }

  .mtitle_small3 span {
    font-size: 1.15rem;
    display: block;
  }

  .mtitle_small3:before {
    left: 5px;
  }
}

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

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

.gallery_ul>li {
  width: 30%;
  margin-left: 2%;
  margin-bottom: 4%;
  font-weight: 600;
  text-align: center;
}

.gallery_ul>li .ttl {
  margin-top: 10px;
  border-radius: 50px;
  padding: 3px 5px;
  border: 1px solid #0537BF;
  display: block;
  margin-left: 20px;
  margin-right: 20px;
}

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

.gallery_ul>li .photobox-wrap img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: 50% 50%;
}

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

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

  .gallery_ul>li .photobox-wrap {
    height: 180px;
  }
}

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

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

/*photoギャラリー*/
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 3%;
}

@media screen and (max-width: 639px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

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

.gallery li p {
  font-size: 14px;
  margin: 3px 0 10px;
}

@media screen and (max-width: 1025px) {
  .gallery li a {
    height: 120px;
  }

  .gallery li p {
    font-size: 12px;
  }
}

.note {
  padding: 15px;
  margin-top: 10px;
  background: #f5f3eb;
}

.note.type1 {
  background: #fff;
  opacity: 0.9;
}

@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 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #102777;
}

.flow-dl .flow-inner dt .eng {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #21a2af;
  margin-right: 8px;
}

.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 {
    font-size: 1.25rem;
  }

  .flow-dl .flow-inner dt .eng {
    font-size: 1.7rem;
  }

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

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

.list-center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.list-center li {
  width: 50%;
}

@media screen and (max-width: 639px) {
  .list-center {
    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 55px;
}

.faq-dl .faq-inner dt:before,
.faq-dl .faq-inner dd:before {
  position: absolute;
  content: "";
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  left: 0;
  top: 0;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
}

.faq-dl .faq-inner dt {
  margin-bottom: 10px;
  font-weight: 600;
  color: #102777;
}

.faq-dl .faq-inner dt:before {
  content: "Q";
  color: #fff;
  font-size: 3rem;
  background: #108ac2;
}

.faq-dl .faq-inner dd {
  background: #f5f3eb;
}

.faq-dl .faq-inner dd:before {
  content: "A";
  color: #f66009;
  font-size: 3rem;
  background: rgba(255, 216, 3, 0.2);
}

.point-title {
  font-weight: 600;
  font-size: 1.8rem;
}

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

.title01 {
  font-weight: 600;
  color: #102777;
  margin-bottom: 8px;
}

.title02 {
  text-align: center;
  margin-bottom: 20px;
}

.title02 span {
  display: inline-block;
  font-size: 2.2rem;
  border-bottom: 2px solid #333;
}

.title03 span {
  background: #102777;
  padding: 2px 5px;
  font-weight: 600;
  color: #fff;
}

@media screen and (max-width: 639px) {
  .title03 span {
    font-size: 1.1rem;
  }
}

.title03.type1 span {
  background: #f66009;
}

.title03.type2 span {
  background: #73a44d;
}

.title04 {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.title04 .sub {
  font-size: 1.8rem;
  color: #0537BF;
  padding-right: 10px;
  border-right: 1px solid #0537BF;
  margin-right: 10px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
}

.title04 .main {
  font-size: 2rem;
}

.slide_list,
.slide_list2 {
  gap: 10px;
  text-align: center;
}

.slide_list img,
.slide_list2 img {
  height: 400px;
  width: 100%;
  object-fit: cover;
  filter: grayscale(0.4);
  transition: filter 0.2s ease-in, -webkit-filter 0.2s ease-in;
}

.slide_list img:hover,
.slide_list2 img:hover {
  filter: grayscale(0);
}

@media screen and (max-width: 1101px) {

  .slide_list img,
  .slide_list2 img {
    height: 300px;
    width: 300px;
  }
}

@media screen and (max-width: 639px) {

  .slide_list img,
  .slide_list2 img {
    height: 200px;
    width: 250px;
  }
}

.flow-list {
  display: flex;
  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: flex;
  flex-wrap: wrap;
  background: #fefefe;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(73, 45, 24, 0.05);
  font-weight: 600;
}

.flow-list>li.type100 {
  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: 90%;
    margin: 0 auto 30px;
  }

  .flow-list>li:nth-child(2n) {
    margin-right: auto;
  }
}

.flow-list>li .flow-num {
  color: #f66009;
  font-size: 3.5rem;
  border-right: 1px solid #0537BF;
  padding-right: 15px;
  align-self: flex-start;
  line-height: 1.2;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
}

.flow-list>li .flow-num span {
  font-size: 1.3rem;
  display: block;
  text-align: center;
}

.flow-list>li .txt {
  flex: 1;
  margin-left: 35px;
}

.flow-list>li .flow-title {
  color: #0537BF;
  border-bottom: 1px solid #0537BF;
  padding-bottom: 4px;
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
}

@media screen and (max-width: 639px) {
  .flow-list>li {
    flex-direction: column;
  }

  .flow-list>li .flow-num {
    font-size: 2.2rem;
    text-align: center;
    border-right: 0;
    padding: 0 0 4px;
    border-bottom: 1px solid #108ac2;
  }

  .flow-list>li .flow-title {
    font-size: 1.3rem;
  }

  .flow-list>li .txt {
    margin: 20px auto 0;
  }
}

.kiritori {
  height: 1px;
  border-top: 1px solid rgba(16, 39, 119, 0.2);
  margin: 4em auto;
  max-width: 20%;
  display: block;
}

.column2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.column2.tp {
  align-items: flex-start;
}

.column2.reverse {
  flex-direction: row-reverse;
}

.column2 .child {
  width: 48%;
}

.column2 .child2 {
  width: 40%;
}

.column2 .child3 {
  width: 56%;
}

.column2 .child4 {
  width: 30%;
}

.column2 .child5 {
  width: 67%;
}

@media screen and (max-width: 1025px) {
  .column2 {
    flex-direction: column;
  }

  .column2 .child,
  .column2 .child2,
  .column2 .child3,
  .column2 .child4,
  .column2 .child5 {
    width: 100%;
  }

  .column2 .child.column2-img,
  .column2 .child2.column2-img,
  .column2 .child3.column2-img,
  .column2 .child4.column2-img,
  .column2 .child5.column2-img {
    order: -1;
    margin-bottom: 30px;
  }

  .column2 .child.child_img,
  .column2 .child2.child_img,
  .column2 .child3.child_img,
  .column2 .child4.child_img,
  .column2 .child5.child_img {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

.service-box-wrap {
  display: flex;
  flex-wrap: wrap;
  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 #108ac2;
  border-radius: 20px;
  background: #000;
}

.service-box a .service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit:cover;";
  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%;
  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%;
    transform: translateX(-50%);
  }
}

.service-box a .service-title {
  color: #222020;
  line-height: 1.4;
  padding: 15px;
  transition: all 0.15s ease-in;
}

.service-box a .service-title .eng {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  color: #0537BF;
  display: block;
}

.service-box a .service-title .ja {
  font-size: 1.15em;
}

.service-box a .btn-more {
  background: #222020;
  color: #fff;
  padding: 5px;
  text-align: center;
  width: 100%;
  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 {
  box-shadow: 0 0 15px rgba(85, 85, 85, 0.2);
}

.service-box a:hover .service-txt-box .service-title {
  color: #0537BF;
}

.service-box a:hover .service-txt-box .btn-more {
  background: #108ac2;
}

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

.business-list figure {
  height: 350px;
  overflow: hidden;
  border-radius: 10px;
}

.business-list figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  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: #0537BF;
  color: #fff;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  padding: 10px 30px 10px 20px;
  border-radius: 15px 0 10px 0;
}

.business-list-title .eng {
  display: block;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  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;
  transform: translateY(-50%);
}

.business-list-title:before {
  position: absolute;
  content: "";
  right: 0;
  top: -30px;
  width: 30px;
  height: 30px;
  background: url(../img/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;
  }
}

.business-detail-box {
  padding: 60px 20px;
}

.business-detail2 {
  margin: 0 auto 160px;
  width: 100%;
  max-width: 1200px;
}

.business-detail2 .inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.business-detail2 .inner .img {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 42%;
}

.business-detail2 .inner .img .img01,
.business-detail2 .inner .img .img02 {
  width: 46%;
  height: 450px;
}

.business-detail2 .inner .img .img01 img,
.business-detail2 .inner .img .img02 img {
  object-position: 20%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 1025px) {

  .business-detail2 .inner .img .img01 img,
  .business-detail2 .inner .img .img02 img {
    border-radius: 25px 2px 15px 8px;
  }
}

.business-detail2 .inner .img .img02 {
  z-index: 1;
  margin-top: 40px;
  margin-left: auto;
  position: relative;
}

.business-detail2 .inner .txt {
  width: 56%;
  padding: 0 20px;
}

.business-detail2 .inner .txt p+p {
  margin-top: 15px;
}

.business-detail2.ob-type1 .inner .img .img01 img {
  object-position: 50% 50%;
}

.business-detail2.ob-type1 .inner .img .img02 img {
  object-position: 60% 50%;
}

@media screen and (max-width: 1300px) {
  .business-detail2 {
    max-width: 95%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 1025px) {
  .business-detail2 {
    width: 100%;
  }

  .business-detail2 .inner {
    margin-left: auto;
    margin-right: auto;
    display: block;
    padding-top: 40px;
  }

  .business-detail2 .inner .img {
    width: 100%;
    margin-bottom: 40px;
    order: -1;
    justify-content: center;
  }

  .business-detail2 .inner .img .img01,
  .business-detail2 .inner .img .img02 {
    height: 350px;
  }

  .business-detail2 .inner .img .img02 {
    max-width: 350px;
    margin-left: 20px;
  }

  .business-detail2 .inner .txt {
    width: 100%;
    margin: auto;
    padding: 0 5px;
  }

  .business-detail2 .inner .txt p+p {
    margin-top: 10px;
  }
}

@media screen and (max-width: 639px) {
  .business-detail2 .inner {
    max-width: 100%;
  }

  .business-detail2 .inner .img .img02 {
    margin-top: 20px;
    max-width: 300px;
  }
}

.product-box .list3>li .img img {
  height: 300px;
  width: 100%;
  object-fit: cover;
}

.product-box .list3>li .txt {
  text-align: center;
}

.product-box .sub-txt {
  margin-bottom: 20px;
}

.product-box .sub-txt span {
  background: #222020;
  color: #fefefe;
  padding: 5px 10px;
  text-align: center;
  margin-right: 10px;
  font-size: 1.8rem;
}

.quality-box .box-wrap {
  background-image: linear-gradient(to right bottom, #8f0000, #cd0000);
  padding: 8px;
}

.quality-box .inner {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  background: #fefefe;
  padding: 40px;
}

.quality-box .inner .left {
  width: 65%;
  padding: 20px;
}

.quality-box .inner .right {
  width: 30%;
}

.quality-box .inner .right img {
  border: 1px solid #ddd;
}

.area-block {
  position: relative;
  max-width: 700px;
  margin: 0 auto 80px;
}

.area-block .area-txt {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  padding-left: 200px;
}

.area-block .area-txt:before,
.area-block .area-txt:after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
}

.area-block .area-txt:before {
  left: -60px;
  width: 40px;
  height: 40px;
  background: rgba(33, 162, 175, 0.3);
  border-radius: 50%;
}

.area-block .area-txt:after {
  left: -100px;
  width: 40px;
  height: 1px;
  background: #21a2af;
}

@media screen and (max-width: 639px) {
  .area-block .area-txt {
    font-size: 1.4rem;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    padding-left: 20px;
  }

  .area-block .area-txt:before,
  .area-block .area-txt:after {
    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 {
  padding-top: 100px;
  position: relative;
  text-align: center;
  color: #fff;
}

.title-big:before {
  font-size: 6rem;
  white-space: nowrap;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  position: absolute;
  content: attr(data-title);
  top: 0;
  left: 50%;
  letter-spacing: 0.1rem;
  transform: translateX(-50%);
  display: inline-block;
}

.title-big.type1 {
  color: #222;
}

.title-big.type1:before {
  color: transparent;
  background-image: radial-gradient(circle, #108ac2 0%, #0537BF 75%, rgb(3.9591836735, 43.5510204082, 151.2408163265) 90%);
  -webkit-background-clip: txt;
  background-clip: txt;
  -webkit-text-fill-color: transparent;
}

.title-big.type2 {
  margin-bottom: 40px;
}

.title-big .img {
  display: block;
  max-width: 750px;
  margin-inline: auto;
}

.title-big .ja {
  display: block;
  font-weight: 600;
  font-size: 2.3rem;
  position: relative;
  z-index: 2;
}

.title-big .big {
  font-size: 3rem;
}

.title-big .big em {
  font-size: 4.5rem;
  font-weight: 800;
  color: #102777;
}

.title-big .small {
  font-size: 0.7em;
}

.title-big.type-greet {
  text-align: left;
  color: #0537BF;
}

.title-big.type-greet .ja {
  color: #fff;
}

.title-big.type-greet:before {
  left: 0;
  transform: none;
}

.title-big.type-greet2 {
  text-align: left;
  color: #0537BF;
}

.title-big.type-greet2 .ja {
  color: #222020;
}

.title-big.type-greet2:before {
  left: 0;
  transform: none;
}

@media screen and (max-width: 1101px) {
  .title-big {
    font-size: 10vw;
  }
}

@media screen and (max-width: 639px) {
  .title-big {
    padding-top: 55px;
  }

  .title-big:before {
    font-size: 3rem;
  }

  .title-big .ja {
    font-size: 1.4rem;
  }

  .title-big.type2 {
    margin-bottom: 30px;
    margin-top: 60px;
  }
}

.title-big2 {
  position: relative;
  color: #222020;
  margin-bottom: 40px;
}

.title-big2 .ja {
  display: block;
  font-weight: 600;
  font-size: 1.6rem;
  position: relative;
  z-index: 2;
  padding-left: 20px;
}

.title-big2 .eng {
  font-size: 6rem;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  position: relative;
  padding-left: 20px;
}

.title-big2 .eng::before {
  content: "";
  background: #108ac2;
  width: 6px;
  height: calc(100% - 0.24em);
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
}

@media screen and (max-width: 1101px) {
  .title-big2 {
    font-size: 10vw;
  }
}

@media screen and (max-width: 639px) {
  .title-big2 .eng {
    font-size: 3rem;
  }

  .title-big2 .ja {
    font-size: 1.3rem;
  }
}

.top-business-title {
  padding-top: 90px;
  position: relative;
  text-align: center;
  color: #fff;
}

.top-business-title:before {
  font-size: 8rem;
  white-space: nowrap;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  position: absolute;
  content: attr(data-title);
  top: 0;
  left: 50%;
  letter-spacing: 0.1rem;
  opacity: 0.9;
  transform: translateX(-50%);
  display: inline-block;
}

.top-business-title .ja {
  display: block;
  font-weight: 600;
  font-size: 2.4rem;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 1101px) {
  .top-business-title {
    font-size: 10vw;
  }
}

.top-greet-box {
  color: #fff;
  text-shadow: 0 0 6px rgba(73, 45, 24, 0.2);
  font-size: 1.1em;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.top-greet-box .greet-img {
  width: 45%;
}

.top-greet-box .greet-img img {
  width: 100%;
  height: 90%;
  object-fit: cover;
}

.top-greet-box .greet-txt {
  width: 50%;
  padding-left: 40px;
}

@media screen and (max-width: 896px) {
  .top-greet-box .greet-img {
    margin-top: -150px;
  }
}

@media screen and (max-width: 639px) {
  .top-greet-box {
    max-width: 100%;
    padding: 0px 10px 10px;
  }

  .top-greet-box .greet-img {
    margin-top: 0;
    margin-bottom: 20px;
    width: 100%;
  }

  .top-greet-box .greet-img img {
    height: 300px;
  }

  .top-greet-box .greet-txt {
    width: 100%;
    padding-left: 0;
  }
}

/* top-bnr-list
----------------------------------*/
.top-bnr-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  gap: 10px;
  margin-bottom: 20px;
}

.top-bnr-list>li {
  width: 48%;
  position: relative;
}

.top-bnr-list>li a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}

.top-bnr-list>li a .top-bnr-img {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.top-bnr-list>li a .top-bnr-img img {
  transition: 0.5s all ease-in;
}

.top-bnr-list>li a .top-bnr-img:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #102777;
  z-index: 0;
  opacity: 0.5;
}

.top-bnr-list>li a:hover {
  transition: all 0.2s ease-in;
}

.top-bnr-list>li a:hover .btn-arrow {
  background: rgba(255, 255, 255, 0.5);
}

.top-bnr-list>li a:hover .btn-arrow i {
  border-bottom-color: #222020;
}

.top-bnr-list>li a:hover .btn-arrow i:before {
  border-right-color: #222020;
}

.top-bnr-list>li a:hover .top-bnr-img img {
  transform: scale(1.1);
  filter: brightness(95%);
}

.top-bnr-list>li.hf {
  width: 48%;
}

@media screen and (max-width: 639px) {
  .top-bnr-list>li.hf {
    width: 100%;
  }
}

.top-bnr-list>li:nth-child(2) .top-bnr-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.top-bnr-list>li:nth-child(3) {
  margin-top: -150px;
}

.top-bnr-list>li:nth-child(3) .top-bnr-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.top-bnr-list>li:nth-child(4) {
  object-position: center 30%;
}

@media screen and (max-width: 639px) {
  .top-bnr-list>li:nth-child(4) {
    margin-top: 0;
  }
}

.top-bnr-list>li:nth-child(1) .top-bnr-img,
.top-bnr-list>li:nth-child(4) .top-bnr-img {
  height: 250px;
}

.top-bnr-list>li:nth-child(1) .top-bnr-img img,
.top-bnr-list>li:nth-child(4) .top-bnr-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 639px) {

  .top-bnr-list>li:nth-child(1) .top-bnr-img,
  .top-bnr-list>li:nth-child(4) .top-bnr-img {
    height: 200px;
  }
}

.top-bnr-list>li:nth-child(1) {
  object-position: center bottom;
}

.top-bnr-list>li:nth-child(2) .top-bnr-img,
.top-bnr-list>li:nth-child(3) .top-bnr-img {
  height: 400px;
}

@media screen and (max-width: 639px) {

  .top-bnr-list>li:nth-child(2) .top-bnr-img,
  .top-bnr-list>li:nth-child(3) .top-bnr-img {
    height: 200px;
  }
}

@media screen and (max-width: 1025px) {
  .top-bnr-list {
    width: 90%;
    margin: 0 auto;
    justify-content: space-around;
  }

  .top-bnr-list>li {
    width: 48%;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 639px) {
  .top-bnr-list {
    width: 95%;
  }

  .top-bnr-list>li {
    width: 100%;
    margin-bottom: 0;
  }
}

.top-bnr-list .btn-arrow {
  width: 50px;
  height: 50px;
  position: absolute;
  right: 10px;
  bottom: 10px;
  text-align: center;
  line-height: 60px;
  border: 1px solid #fff;
  border-radius: 100%;
  transition: all 0.2s ease-in;
}

.top-bnr-list .btn-arrow i {
  display: block;
  position: absolute;
  width: 30px;
  border-bottom: 1px solid #fff;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 5px;
}

.top-bnr-list .btn-arrow i:before {
  position: absolute;
  width: 10px;
  height: 8px;
  content: "";
  right: 3px;
  bottom: -1px;
  border-right: 2px solid #fff;
  transform: skew(45deg);
}

.top-bnr-list .top-bnr-title {
  font-weight: 500;
  padding: 15px 0;
  line-height: 1.4;
  position: absolute;
  bottom: 0;
  left: 20px;
}

.top-bnr-list .top-bnr-title .eng {
  font-weight: 400;
  font-size: 3rem;
  letter-spacing: 0.1em;
  color: #fff;
  display: block;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
}

.top-bnr-list .top-bnr-title .ja {
  font-size: 1.8rem;
  display: block;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.01em;
  left: 20px;
}

.top-feature-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 40px;
}

.top-feature-box .inner {
  width: 48%;
}

.top-feature-box .inner .ttl {
  margin-bottom: 10px;
  margin-left: 15px;
}

.top-feature-box .inner .ttl .eng {
  color: #0537BF;
  font-size: 5rem;
  margin-top: -20px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  mix-blend-mode: hard-light;
  mix-blend-mode: color-dodge;
  position: relative;
  z-index: 10;
  display: block;
  line-height: 1;
}

.top-feature-box .inner .ttl .ja {
  font-weight: bold;
  font-size: 1.8rem;
}

.top-feature-box .inner .img img {
  height: 320px;
  width: 100%;
  object-fit: cover;
  clip-path: polygon(15% 0%, 100% 0, 100% 15%, 100% 85%, 85% 100%, 15% 100%, 0 100%, 0% 15%);
}

/* greet_block
----------------------------------*/
.policy-area {
  position: relative;
  justify-content: flex-end;
  display: flex;
  z-index: 1;
  margin-bottom: 80px;
  padding: 120px 0;
}

.policy-area.type1:after {
  right: unset;
  left: 0;
}

.policy-area.type1:before {
  right: 0;
  left: unset;
}

.policy-area.type1 .top-area-box {
  right: 0;
  margin-right: auto;
  margin-left: 0;
}

.policy-area:after {
  position: absolute;
  content: "";
  width: 70%;
  height: 90%;
  top: 5%;
  right: 0;
  background: #fefefe;
  box-shadow: 0 12px 26px -2px rgba(73, 45, 24, 0.1);
  z-index: -2;
}

.policy-area:before {
  position: absolute;
  content: "";
  width: 42%;
  height: 90%;
  top: 80px;
  left: 0;
  z-index: -1;
  background: url(../img/2.jpg) no-repeat center/cover;
}

.policy-area .top-area-box {
  position: relative;
  top: 0;
  left: 0;
  width: 55%;
  padding: 60px 40px;
  margin-left: auto;
  box-sizing: border-box;
  overflow: hidden;
}

.policy-area .top-area-box .inner {
  position: relative;
  max-width: 700px;
  margin: auto;
  z-index: 1;
}

.policy-area .top-area-box .inner p+p {
  margin-top: 18px;
}

@media screen and (max-width: 1025px) {
  .policy-area {
    flex-direction: column;
    margin-bottom: 0;
  }

  .policy-area:before {
    width: 100%;
    height: auto;
    top: 0;
    padding-bottom: 46.25%;
  }

  .policy-area .top-area-box {
    position: relative;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    padding: 45px 15px;
    margin: 26.25% auto 0;
  }

  .policy-area .top-area-box::before {
    width: 70%;
    height: 70%;
    top: 50%;
    left: 50%;
    right: auto;
    background: url(../img/mark.png) no-repeat center/contain;
    transform: translate(-50%, -50%);
  }

  .policy-area .top-area-box .inner p+p {
    margin-top: 12px;
  }
}

@media screen and (max-width: 1025px) {
  .policy-area .top-area-box {
    padding: 35px 15px;
  }

  .policy-area:after {
    width: 100%;
  }
}

.policy-area.type-recruit {
  margin-bottom: 0;
  padding: 40px;
}

.policy-area.type-recruit .top-area-box {
  margin: 0 auto;
}

.policy-area.type-recruit::before {
  background: url(../img/recruit-head.png) no-repeat center/contain;
  right: -150px;
  top: 0;
  width: 600px;
  height: 500px;
}

.policy-area.type-recruit::after {
  background: url(../img/recruit-head2.png) no-repeat center/contain;
  left: -150px;
  top: auto;
  bottom: 0;
  box-shadow: none;
  width: 515px;
  height: 433px;
}

.policy-area.type-recruit .greet-ttl {
  font-size: 2.5rem;
}

.policy-area.type-recruit .greet-ttl span {
  color: #0537BF;
  font-size: 1.5rem;
  display: block;
}

@media screen and (max-width: 1025px) {
  .policy-area.type-recruit .greet-ttl {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 1101px) {
  .policy-area.type-recruit .top-area-box {
    width: 65%;
  }

  .policy-area.type-recruit::before {
    right: -150px;
    top: 0;
    width: 400px;
    height: 333px;
  }

  .policy-area.type-recruit::after {
    left: -150px;
    top: auto;
    bottom: 0;
    width: 400px;
    height: 336px;
  }
}

@media screen and (max-width: 896px) {
  .policy-area.type-recruit .top-area-box {
    width: 95%;
  }

  .policy-area.type-recruit::before,
  .policy-area.type-recruit::after {
    opacity: 0.3;
  }
}

@media screen and (max-width: 639px) {
  .policy-area.type-recruit {
    padding: 20px 0;
  }

  .policy-area.type-recruit .top-area-box {
    width: 100%;
    padding: 35px 10px;
  }

  .policy-area.type-recruit .greet-ttl {
    font-size: 1.8rem;
  }

  .policy-area.type-recruit .greet-ttl span {
    font-size: 1.2rem;
  }
}

.policy-area .greet-ttl {
  font-size: 2.5rem;
}

.policy-area .greet-ttl span {
  color: #0537BF;
  font-size: 1.5rem;
  display: block;
}

@media screen and (max-width: 1025px) {
  .policy-area .greet-ttl {
    font-size: 2.2rem;
  }
}

.policy-area.type-business::before {
  background: url(../img/top-greet2.jpg) no-repeat center/cover;
}

@media screen and (max-width: 639px) {
  .policy-area.type-business {
    margin-top: 40px;
    padding: 20px 0;
  }

  .policy-area.type-business .top-area-box {
    margin: 36.25% auto 0;
  }

  .policy-area.type-business .greet-ttl {
    font-size: 1.8rem;
  }

  .policy-area.type-business .greet-ttl span {
    font-size: 1.2rem;
  }
}

.policy-area.type-area:before {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26842/top_policy2.webp) no-repeat center/cover;
}

.policy-area.type-area.type1:before {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26842/top_policy.webp) no-repeat left/cover;
}

.recruit-head-bottom {
  position: relative;
}

.recruit-head-bottom::before {
  position: absolute;
  content: "";
  background-image: linear-gradient(to left, #042054, #006494);
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.recruit-head-bottom .inner {
  position: relative;
  padding: 120px 0;
  margin-left: 15vw;
}

.recruit-head-bottom .inner::before {
  position: absolute;
  content: "";
  background: url(../img/recruit-head3.png) no-repeat center/contain;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 336px;
  z-index: -1;
}

@media screen and (max-width: 1300px) {
  .recruit-head-bottom .inner {
    margin-left: 6vw;
  }
}

@media screen and (max-width: 1101px) {
  .recruit-head-bottom .inner::before {
    right: -80px;
    width: 350px;
    height: 294px;
  }
}

@media screen and (max-width: 896px) {
  .recruit-head-bottom .inner::before {
    opacity: 0.3;
  }
}

@media screen and (max-width: 639px) {
  .recruit-head-bottom .inner {
    padding: 60px 10px;
    margin-left: 0;
  }
}

/*----------------------------------
contact-form
----------------------------------*/
.form-contents {
  width: 100% !important;
  height: auto !important;
  padding: 35px 30px !important;
  border-radius: 15px 15px 0 0 !important;
}

@media screen and (max-width: 1101px) {
  .form-contents {
    padding: 15px !important;
  }
}

.form-contents button {
  border: 1px solid #108ac2 !important;
}

.form-contents .required::before {
  background: #0537BF !important;
  padding: 5px 10px !important;
}

.form-contents .textarea {
  background-color: #f0f0f0 !important;
  border: none !important;
  padding: 20px 15px !important;
}

.form-contents .textarea03 {
  width: 10em !important;
}

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

.form-contents input[type=radio] {
  margin: 3px 3px 7px 5px !important;
}

.form-contents .submit-btn {
  background-color: #0537BF !important;
  border: none !important;
  color: #fefefe !important;
}

.form-contents .submit-btn:hover {
  color: #108ac2 !important;
  background-color: #fefefe !important;
  border: 1px solid #108ac2 !important;
}

.form-contents .submit-btn:hover:before {
  background-color: #108ac2 !important;
}

.form-contents .custom-area p {
  padding: 10px 0;
}

@media screen and (max-width: 639px) {
  .form-contents {
    padding: 0 10px !important;
  }

  .form-contents dl {
    margin: 10px 0 !important;
  }

  .form-contents dl dt {
    float: none !important;
    padding-top: 15px !important;
  }

  .form-contents dl dd {
    padding-left: 0 !important;
    padding-bottom: 15px !important;
    padding-top: 10px !important;
    line-height: 20px !important;
  }

  .form-contents .submit-btn {
    width: 250px !important;
  }
}

/* accordion
----------------------------------*/
.accordion dt,
.accordion dd {
  position: relative;
  padding: 1em;
}

.accordion dt {
  background: linear-gradient(135deg, #042054, #006494);
  cursor: pointer;
  font-size: 1.7rem;
  color: #fff;
}

.accordion dt:after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f067";
  font-weight: 900;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 1.7rem;
}

.accordion dt.on:after {
  font-family: "Font Awesome 5 Free";
  content: "\f068";
  font-weight: 900;
}

.accordion dd {
  display: none;
  padding: 25px;
  background: #fefefe;
}

@media screen and (max-width: 639px) {
  .accordion dt {
    font-size: 1.3rem;
  }

  .accordion dd {
    padding: 15px;
  }
}

.top_slide_box {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: row-reverse;
  height: auto;
}

.top_slide_box::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(28, 28, 28, 0) 0%, rgb(27, 55, 151) 75%);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  inset: 0;
}

.top_slide_box .txt_area {
  width: 40%;
  height: 100%;
  z-index: 100;
  color: #fff;
  margin-right: 5%;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 50px;
  margin-bottom: 50px;
}

.top_slide_box .txt_area .mtext2 {
  margin-bottom: 60px;
}

.top_slide_box .slide_inner {
  position: absolute;
  display: flex;
  overflow: hidden;
  align-items: center;
  left: 0;
  gap: 20px;
  height: 100%;
  width: 90%;
  z-index: -1;
  top: 0;
}

.top_slide_box .slide_inner>div {
  width: 25%;
  height: 100%;
}

.top_slide_box .slide_inner>div>div {
  height: 100%;
}

@media screen and (max-width: 1440px) {
  .top_slide_box .txt_area {
    width: 65%;
  }
}

@media screen and (max-width: 1101px) {
  .top_slide_box::before {
    background: rgb(27, 55, 151);
  }

  .top_slide_box::before {
    background: linear-gradient(90deg, rgb(27, 55, 151));
    opacity: 0.8;
  }

  .top_slide_box .slide_inner {
    width: 100%;
    position: absolute;
    gap: 10px;
    justify-content: center;
    z-index: -1;
    top: 0;
    align-items: stretch;
  }

  .top_slide_box .slide_inner>div {
    width: 33%;
    height: 100%;
  }

  .top_slide_box .txt_area {
    width: 95%;
    margin: 50px auto;
  }

  .top_slide_box .txt_area .mtext2 {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 639px) {
  .top_slide_box .txt_area {
    width: 95%;
    margin: 30px auto;
  }

  .top_slide_box .txt_area .mtext2 {
    margin-bottom: 20px;
  }

  .top_slide_box::before {
    background: linear-gradient(90deg, rgb(27, 55, 151));
    opacity: 0.8;
  }

  .top_slide_box .slide_inner {
    position: absolute;
    width: 100%;
    gap: 10px;
    justify-content: center;
  }

  .top_slide_box .slide_inner>div {
    width: 33%;
    height: 100%;
  }
}

@media all and (max-width: 500px) {
  .top_slide_box {
    height: auto;
  }
}

.reason_wrap {
  margin-bottom: 80px;
}

.reason_wrap .col {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.reason_wrap .col.type1 {
  flex-direction: row-reverse;
}

.reason_wrap .col .image {
  width: 48%;
}

.reason_wrap .col .txt {
  width: 48%;
}

@media screen and (max-width: 1025px) {
  .reason_wrap .col {
    display: block;
  }

  .reason_wrap .col .image {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
  }

  .reason_wrap .col .txt {
    width: 100%;
  }
}

.slide_txt {
  position: relative;
  margin-bottom: 50px;
  width: 100%;
}

.slide_txt .parallax_txt {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(-50%, 50%);
}

@media screen and (max-width: 639px) {
  .slide_txt .parallax_txt {
    bottom: -30px;
  }
}

.parallax_txt {
  position: relative;
  width: 100%;
  height: auto;
}

.track {
  display: inline-block;
  white-space: nowrap;
  will-change: transform;
  animation: scroll-track 30s linear infinite;
}

.text {
  display: inline-block;
  font-size: 10vw;
  font-weight: 500;
  opacity: 0.1;
  color: #0537BF;
  text-transform: uppercase;
  user-select: none;
  font-family: "Zen Old Mincho", serif;
  padding-right: 2vw;
}

@media screen and (max-width: 639px) {
  .text {
    font-size: 20vw;
  }
}

@keyframes scroll-track {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

.underline {
  background: linear-gradient(transparent 70%, rgba(5, 55, 191, 0.1) 0%);
  z-index: 0;
  padding: 0 0.1em;
  display: inline-block;
}

.greet_area {
  position: relative;
  justify-content: flex-end;
  display: flex;
  z-index: 1;
  margin-bottom: 80px;
  background: #f1f1f1;
}

.greet_area:before {
  position: absolute;
  content: "";
  width: 40%;
  height: 80%;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: -1;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26842/recruit1.jpg) no-repeat center/cover;
}

.greet_area .greet_area_box {
  position: relative;
  top: 0;
  right: 0;
  width: 40%;
  padding: 60px 40px;
  margin-left: auto;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  margin-right: 15%;
}

.greet_area .greet_area_box .inner {
  flex: 1;
  position: relative;
  margin: auto;
  z-index: 1;
}

.greet_area .greet_area_box .inner p+p {
  margin-top: 18px;
}

@media screen and (max-width: 1025px) {
  .greet_area {
    flex-direction: column;
    margin-bottom: 0;
    margin-top: 60px;
  }

  .greet_area:before {
    width: 100%;
    height: auto;
    top: 0;
    padding-bottom: 56.25%;
    transform: none;
  }

  .greet_area .greet_area_box {
    position: relative;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    padding: 45px 15px;
    margin: 58.25% auto 0;
  }

  .greet_area .greet_area_box::before {
    width: 70%;
    height: 70%;
    top: 50%;
    left: 50%;
    right: auto;
    background: url(../img/mark.png) no-repeat center/contain;
    transform: translate(-50%, -50%);
  }

  .greet_area .greet_area_box .inner p+p {
    margin-top: 12px;
  }
}

@media screen and (max-width: 639px) {
  .greet_area {
    padding: 40px 0;
  }

  .greet_area .greet_area_box {
    padding: 35px 15px;
    margin: 40.25% auto 0;
  }
}

.greet_area.type-recruit::before {
  background: url(../img/recruit01.jpg) no-repeat center/cover;
}

.greet_area.type-recruit .greet-ttl {
  font-size: 3.5rem;
}

.greet_area.type-recruit .greet-ttl span {
  color: #0537BF;
  font-size: 1.5rem;
  display: block;
}

.point_box .img {
  margin-bottom: 20px;
  position: relative;
  text-align: center;
}

.point_box .ttl {
  font-size: 2.3rem;
  vertical-align: middle;
  color: #0537BF;
  font-weight: 800;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
}

.point_box .txt {
  margin-bottom: 30px;
}

@media all and (max-width: 639px) {
  .point_box {
    padding: 30px 0;
  }

  .point_box .ttl {
    font-size: 1.6rem;
  }
}

.bg_slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  /* 最背面 */
  overflow: hidden;
  pointer-events: none;
  /* 背景として操作不可に */
}

.certification_logo {
  margin: 20px 0;
}

.certification_logo img {
  width: 120px;
  max-width: 100%;
  display: block;
  margin: auto;
  padding: 5px 0;
  background: #fefefe;
}