@charset "UTF-8";
/* アニメーションベンダープレフィックス込み指定 */
/* アニメーションベンダープレフィックス込み指定 */
/********************/
body {
  color: #121212;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/25687/body.jpg) repeat center top/100% auto;
  font-family: "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: #0b5099;
  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: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
  font-weight: 500 !important;
}

.eng-txt {
  font-family: "Montserrat Subrayada", 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: "Montserrat Subrayada", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

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

.concept-img {
  max-width: 200px;
  margin: 0 auto;
}
@media screen and (max-width: 639px) {
  .concept-img {
    max-width: 115px;
  }
}

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

/* loading 扇タイプ
----------------------------------*/
.loader {
  align-items: center;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
  pointer-events: none;
}
.loader.off {
  display: none;
}

.loader-bg1 {
  position: absolute;
  content: "";
  width: 50%;
  height: 300%;
  background-color: #0d5cb1;
  bottom: -50%;
  left: 0;
  animation: load-tate 1.5s ease-out 0.8s forwards;
  transform: rotate(0deg);
  transform-origin: 50% 50%;
}

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

@keyframes load-tate {
  0% {
    width: 50%;
    opacity: 1;
  }
  100% {
    width: 0%;
    transform: rotate(90deg);
  }
}
@keyframes load-tate2 {
  0% {
    width: 50%;
    opacity: 1;
  }
  100% {
    width: 0%;
    transform: rotate(-90deg);
  }
}
/* 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: relative;
  z-index: 200;
  top: 0;
  left: 0;
}
#l-header.is-fixed {
  position: fixed;
  background-color: #fff;
}
#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_tel a {
  color: #0d5cb1;
}
#l-header.is-fixed .head-right .head-right_contact .head-right_tel a:hover {
  color: #F1110B;
}
#l-header .inner {
  display: flex;
  flex-wrap: wrap;
  max-width: 98%;
  min-width: 1000px;
  margin: 0 auto;
  padding: 8px 40px 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: 340px;
}
#l-header .inner .logo2 {
  display: none;
}
#l-header .head-right {
  margin-left: auto;
  padding-top: 5px;
}
@media screen and (max-width: 1025px) {
  #l-header .head-right {
    display: none;
  }
}
#l-header .head-right_contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  margin-left: auto;
}
#l-header .head-right_tel a {
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.1;
  position: relative;
}
#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 {
  color: #ffd803;
}
#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: #0d5cb1;
  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;
  width: 600px;
}
.is-fixed #header_nav ul li a {
  color: #333;
  text-shadow: none;
}
.is-fixed #header_nav ul li a span {
  color: #0d5cb1;
}
.is-fixed #header_nav ul li a.active span, .is-fixed #header_nav ul li a:hover span {
  color: #08376a;
}
#header_nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#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: #bb0000;
}
#header_nav ul li a {
  display: block;
  color: #333;
  position: relative;
  line-height: 1.5;
  font-size: 1.65rem;
  padding: 0px 0 10px;
  text-align: center;
  font-weight: 600;
}
#header_nav ul li a span {
  display: block;
  font-size: 1.3rem;
  font-family: "Montserrat Subrayada", sans-serif;
  font-weight: 700;
  color: #F1110B;
  position: relative;
}
#header_nav ul li a:after {
  position: absolute;
  content: "";
  width: 0;
  height: 3px;
  background: #F1110B;
  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: #ffd803;
}
#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;
  gap: 10px 8px;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  padding: 10px;
}
#header_nav .dropdown .dropdown-li {
  border-right: 0;
  background: #102777;
  width: 150px;
}
#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: #0d5cb1;
  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: 639px) {
  #page-top {
    bottom: 40px;
  }
}

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

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

#slide-wrap {
  position: relative;
  overflow: hidden;
  opacity: 0;
}
#slide-wrap::before {
  position: absolute;
  content: "";
  right: -30px;
  bottom: -60%;
  width: 15%;
  height: 180%;
  background: #F1110B;
  transform: translate(30%, -10%) skew(-35deg);
  z-index: 4;
  mix-blend-mode: hard-light;
  opacity: 0;
  pointer-events: none;
}
#slide-wrap.on {
  opacity: 1;
  transition: 1s ease all;
}
#slide-wrap.on:before {
  transition: 0.8s ease-in all;
  transform: translate(0, 0) skew(-35deg);
  opacity: 1;
}

@keyframes top-main {
  to {
    transform: scale(1, 1);
  }
}
.catch-area {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 32%;
  text-align: center;
}
.catch-area .catch-bg {
  z-index: 1;
  position: relative;
}
.catch-area #bg_logo svg {
  width: 1400px;
  margin: 0 auto;
  mix-blend-mode: difference;
  opacity: 0.6;
}
@media screen and (max-width: 1440px) {
  .catch-area #bg_logo svg {
    width: 80%;
  }
}
@media screen and (max-width: 1101px) {
  .catch-area #bg_logo svg {
    width: 460px;
  }
}
@media screen and (max-width: 1025px) {
  .catch-area #bg_logo svg {
    width: 380px;
  }
}
@media screen and (max-width: 639px) {
  .catch-area #bg_logo svg {
    width: 300px;
  }
}
@media screen and (max-width: 639px) {
  .catch-area {
    top: 38%;
  }
}

@keyframes catch-anime-bg {
  0% {
    opacity: 0;
    width: 0;
  }
  1% {
    opacity: 1;
    width: 0;
  }
  8% {
    width: 100%;
  }
  18% {
    width: 100%;
    opacity: 1;
  }
  30% {
    width: 100%;
  }
  31% {
    width: 100%;
  }
  51% {
    width: 100%;
    opacity: 1;
  }
  100% {
    width: 100%;
    opacity: 0;
  }
}
@keyframes catch-anime-txt {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  13% {
    opacity: 1;
  }
  49% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes catch-anime-bg2 {
  0% {
    opacity: 0;
    width: 0;
  }
  10% {
    opacity: 1;
    width: 0;
  }
  18% {
    width: 100%;
    opacity: 1;
  }
  30% {
    width: 100%;
  }
  31% {
    width: 100%;
  }
  51% {
    width: 100%;
    opacity: 1;
  }
  100% {
    width: 100%;
    opacity: 0;
  }
}
@keyframes catch-anime-txt2 {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  23% {
    opacity: 1;
  }
  49% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes catch-anime-bg3 {
  0% {
    opacity: 0;
    width: 0;
  }
  50% {
    width: 0;
    opacity: 0;
  }
  51% {
    opacity: 1;
    width: 0;
  }
  58% {
    width: 100%;
  }
  68% {
    opacity: 1;
    width: 100%;
  }
  99% {
    opacity: 1;
  }
  100% {
    width: 100%;
    opacity: 0;
  }
}
@keyframes catch-anime-txt3 {
  0% {
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  63% {
    opacity: 1;
  }
  99% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes catch-anime-bg4 {
  0% {
    opacity: 0;
    width: 0;
  }
  60% {
    width: 0;
    opacity: 0;
  }
  68% {
    opacity: 1;
    width: 100%;
  }
  99% {
    opacity: 1;
  }
  100% {
    width: 100%;
    opacity: 0;
  }
}
@keyframes catch-anime-txt4 {
  0% {
    opacity: 0;
  }
  70% {
    opacity: 0;
  }
  73% {
    opacity: 1;
  }
  99% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes rotate-anime {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* catch svg
----------------------------------*/
.cls-1 {
  fill: none;
  stroke: #fff;
  stroke-width: 0.5;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: animeline 3.4s ease-in forwards;
}

@keyframes animeline {
  0% {
    stroke-dashoffset: 1000;
  }
  60% {
    stroke-dashoffset: 0;
    opacity: 1;
    fill: none;
  }
  62% {
    stroke-dashoffset: 0;
    fill: rgba(255, 255, 255, 0.356);
  }
  70% {
    fill: #fff;
  }
  100% {
    fill: #fff;
    opacity: 0.4;
    mix-blend-mode: difference;
  }
}
.catch-logo2 {
  animation: anime-logo3 2s ease-in 6.5s forwards;
  opacity: 0;
  margin-top: -42%;
  margin-left: -120%;
  width: 140%;
}
@media screen and (max-width: 1101px) {
  .catch-logo2 {
    margin-left: -110%;
    margin-top: 75%;
  }
}
@media screen and (max-width: 1025px) {
  .catch-logo2 {
    margin-left: -60%;
    margin-top: -5%;
    width: 120%;
  }
}
@media screen and (max-width: 639px) {
  .catch-logo2 {
    width: 100%;
    margin: 50px auto 15px -20px;
  }
}

@keyframes anime-logo3 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.txt-type {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 5%;
  color: #fff;
  z-index: 4;
  text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2);
  font-size: 7vmin;
  line-height: 1.3;
  letter-spacing: 0.2em;
  font-weight: 600;
  opacity: 0;
}
.txt-type span {
  position: relative;
  opacity: 0;
  transition: opacity 0.2s ease-in;
}
.txt-type span:last-of-type:after {
  content: "|";
  animation: typinganime 0.8s ease infinite;
  margin-left: 10px;
}
@media screen and (max-width: 639px) {
  .txt-type {
    font-size: 2.2rem;
    transform: none;
    top: 22%;
    letter-spacing: 0.15em;
  }
}

@keyframes typinganime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#catch {
  z-index: 50;
  position: absolute;
  left: 50%;
  bottom: 50%;
  z-index: 10;
  width: 100%;
  opacity: 0;
  max-width: 80%;
  transform: translate(-50%, 50%);
  mix-blend-mode: screen;
}
#catch.on {
  transition: 0.8s ease-in opacity;
  opacity: 1;
}
@media screen and (max-width: 1101px) {
  #catch {
    width: 40%;
  }
}

.main_catch__inner__created_by_js {
  max-width: 85vw !important;
}

.slide-txt {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 40;
  font-size: 2.2rem;
  color: #fff;
  font-weight: 600;
  text-shadow: 0 0 8px rgba(73, 45, 24, 0.1);
}
.slide-txt.slide-txt01 {
  align-items: flex-start;
  justify-content: flex-end;
  padding: 20px 20px 0 0;
}
.slide-txt.slide-txt01 img {
  width: 35%;
}
@media screen and (max-width: 1025px) {
  .slide-txt.slide-txt01 img {
    width: 65%;
  }
}
.slide-txt.slide-txt02 {
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0 0 20px 20px;
}
.slide-txt.slide-txt02 img {
  width: 45%;
}
@media screen and (max-width: 1025px) {
  .slide-txt.slide-txt02 img {
    width: 70%;
  }
}
@media screen and (max-width: 639px) {
  .slide-txt.slide-txt02 img {
    width: 85%;
  }
}
@media screen and (max-width: 639px) {
  .slide-txt.slide-txt02 {
    padding: 0 0 10px 10px;
  }
}
.slide-txt.slide-txt03 {
  align-items: flex-start;
  justify-content: flex-end;
  padding: 20px 20px 0 0;
}
.slide-txt.slide-txt03 img {
  width: 38%;
}
@media screen and (max-width: 1025px) {
  .slide-txt.slide-txt03 img {
    width: 55%;
  }
}

#scrolldown {
  position: absolute;
  right: 15px;
  bottom: 60px;
  color: #fefefe;
  font-family: "Montserrat Subrayada", sans-serif;
  font-weight: 700;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  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_v3
----------------------------------*/
.contact_v3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.contact_v3 .heading {
  width: 32%;
  text-align: center;
}
.contact_v3 .detail {
  width: 64%;
}
@media screen and (max-width: 639px) {
  .contact_v3 .heading {
    width: 100%;
  }
  .contact_v3 .detail {
    width: 100%;
  }
}

/* contact_bnr
----------------------------------*/
.contact-txt {
  text-align: center;
  margin-top: 10px;
}

.contact_tel_bnr a {
  white-space: nowrap;
  position: relative;
  padding: 5px 0;
  color: #fff;
  font-size: 3.6rem;
  font-weight: 600;
  letter-spacing: 0;
  text-align: center;
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
}
.contact_tel_bnr a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 8px;
  font-size: 0.7em;
}
.contact_tel_bnr a:hover {
  color: #ffd803;
  background: transparent;
}
@media screen and (max-width: 1025px) {
  .contact_tel_bnr a {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 639px) {
  .contact_tel_bnr a {
    font-size: 3.1rem;
  }
}

.contact_bnr {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.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_map {
  color: #fff;
  width: 280px;
  background: #f66009;
  font-size: 1.6rem;
  padding: 15px 0;
  letter-spacing: 0.1rem;
  position: relative;
}
.contact_bnr > li .bnr_map i {
  display: inline-block;
  margin-right: 5px;
}
@media screen and (max-width: 639px) {
  .contact_bnr > li .bnr_map {
    font-size: 1.3rem;
  }
}
.contact_bnr > li .bnr_map:after {
  position: absolute;
  content: "";
  right: -25px;
  top: 50%;
  width: 50px;
  height: 1px;
  background: #fff;
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
}
.contact_bnr > li .bnr_map:hover {
  background: rgba(16, 39, 119, 0.6);
}
.contact_bnr > li .bnr_map:hover:after {
  right: -32px;
}
.contact_bnr > li .bnr_tel {
  white-space: nowrap;
  position: relative;
  padding: 5px 0;
  color: #0d5cb1;
  font-size: 3.6rem;
  font-weight: 600;
  letter-spacing: 0;
  font-family: "Roboto", 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 {
  color: #0d5cb1;
  background: transparent;
}
@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: #0d5cb1;
}
.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: #fff;
  background: #0d5cb1;
}
.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 {
  background: #111;
  color: #fff;
}
.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 {
  background: #669998;
  position: relative;
}
.footer-contact:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 103%;
  background-image: linear-gradient(to right, #444, #333, #222);
  -webkit-clip-path: polygon(85px 0, 100% 0, 100% calc(100% - 185px), calc(100% - 85px) 100%, 0 100%, 0 185px);
          clip-path: polygon(85px 0, 100% 0, 100% calc(100% - 185px), calc(100% - 85px) 100%, 0 100%, 0 185px);
  opacity: 0.4;
}
.footer-contact .footer-contact_inner {
  padding: 30px 0;
  max-width: 1000px;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}
.footer-contact .footer-contact_inner .mtitle:before {
  color: #F1110B;
}
.footer-contact .footer-contact_inner .mtitle .ja {
  color: #fff;
}

#l-footer {
  font-size: 1.5rem;
  position: relative;
}
#l-footer:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #004098;
  z-index: 1;
}
#l-footer .mtitle .ja {
  color: #fff;
}
#l-footer .footer-lead {
  text-align: center;
  font-size: 1.7rem;
  font-weight: 600;
}
#l-footer .inner {
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
  z-index: 2;
  padding: 50px 10px;
  color: #fff;
}
@media screen and (max-width: 1101px) {
  #l-footer .inner {
    width: 100%;
  }
}
@media screen and (max-width: 639px) {
  #l-footer {
    font-size: 1.2rem;
  }
  #l-footer .inner {
    padding: 30px 20px;
  }
}

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

.footer-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-wrap .footer-left {
  width: 32%;
}
.footer-wrap .footer-right {
  width: 61%;
}
@media screen and (max-width: 1025px) {
  .footer-wrap .footer-left {
    width: 45%;
  }
  .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;
  }
}

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

.bg-map {
  position: relative;
}
.bg-map .single {
  position: relative;
}
.bg-map:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: calc(100% - 80px);
  height: calc(100% - 40px);
  transform: translate(-50%, -50%);
  background: #84d7d7;
  opacity: 1;
}
@media screen and (max-width: 1101px) {
  .bg-map:before {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
}
.bg-map .map-inner {
  height: 80vh;
  position: relative;
}
.bg-map .map-inner .map-box {
  position: absolute;
  right: 0;
  bottom: 0px;
  max-width: 80%;
  height: 105%;
}
.bg-map .map-inner .map-box img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}
.bg-map .map-inner .map-box .image-map area:hover {
  opacity: 0.5;
}
@media screen and (max-width: 1025px) {
  .bg-map .map-inner {
    height: auto;
  }
  .bg-map .map-inner .map-box {
    position: relative;
    max-width: 100%;
  }
}

/* footer_navi
----------------------------------*/
.footer_navi {
  margin-top: 40px;
  position: relative;
  margin-bottom: 40px;
}
@media screen and (max-width: 639px) {
  .footer_navi {
    display: none;
  }
}
.footer_navi ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer_navi ul li a {
  color: #fff;
  font-size: 1.4rem;
  position: relative;
  font-weight: 600;
  border-bottom: 1px solid #fff;
}
.footer_navi ul li a .footer-only {
  display: block;
}
@media screen and (max-width: 639px) {
  .footer_navi ul li a {
    font-size: 1.2rem;
  }
  .footer_navi ul li a .footer-only {
    display: none;
  }
}
.footer_navi ul li a span {
  display: none;
}
.footer_navi ul li a:hover {
  color: #0d5cb1;
}
.footer_navi ul li .dropdown {
  margin-top: 10px;
  padding: 8px 5px 5px;
  position: relative;
  left: auto;
  top: auto;
  padding-top: initial;
}
@media screen and (max-width: 639px) {
  .footer_navi ul li .dropdown {
    padding: 10px;
  }
}
.footer_navi ul li .dropdown .dropdown-ul {
  margin-top: 10px;
  font-size: 1.3rem;
  display: inherit;
  grid-template-columns: none;
  gap: inherit;
}
.footer_navi ul li .dropdown .dropdown-li {
  margin-top: 5px;
  width: auto;
  background-color: transparent;
  border-right: auto;
}
.footer_navi ul li .dropdown .dropdown-li a {
  position: relative;
  padding-left: 15px;
  font-size: 0.9em;
  border-bottom: none;
}
.footer_navi ul li .dropdown .dropdown-li a:before {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  color: #3dae8e;
}
.footer_navi ul li .dropdown .dropdown-li a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  background-color: #fff;
  transition: all 0.3s ease;
}
.footer_navi ul li .dropdown .dropdown-li a:hover {
  opacity: 0.7;
  color: #fff;
}

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

.flogo {
  margin: 0 auto 25px;
  max-width: 240px;
  text-align: center;
}
@media screen and (max-width: 1025px) {
  .flogo {
    margin: 0 auto 20px;
  }
}
@media screen and (max-width: 639px) {
  .flogo {
    width: 70%;
  }
}

.address {
  text-align: center;
}

.copyright {
  padding: 20px 0;
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
  color: #fff;
  background: #0d5cb1;
  border-bottom: 0;
  max-width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 1025px) {
  .copyright {
    font-size: 12px;
  }
}
@media screen and (max-width: 639px) {
  .copyright {
    max-width: 95%;
  }
}

/*----------------------------------
 top-contents
----------------------------------*/
.greet-txt {
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 220px;
  color: #fff;
}
@media screen and (max-width: 639px) {
  .greet-txt {
    max-width: 85%;
  }
}

.greet-lead {
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.8;
  margin-bottom: 30px;
}
@media screen and (max-width: 639px) {
  .greet-lead {
    font-size: 1.6rem;
  }
}

.top-title01 {
  text-align: center;
  margin: -150px auto 100px;
  max-width: 600px;
}

.top-img01 {
  max-width: 450px;
  margin: 0 auto 30px;
}
@media screen and (max-width: 639px) {
  .top-img01 {
    max-width: 70%;
  }
}

.top-txt01 {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 600;
}
@media screen and (max-width: 639px) {
  .top-txt01 {
    margin-top: 20px;
    color: #0d5cb1;
    font-size: 1.5rem;
  }
}

.bg-top {
  padding-top: 80px;
}
@media screen and (max-width: 639px) {
  .bg-top {
    padding-top: 40px;
  }
}

.bg-point {
  position: relative;
  z-index: 2;
}
.bg-point:before {
  position: absolute;
  content: "";
  left: 0;
  top: -60px;
  width: 40%;
  height: 120%;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/25687/bg-point.jpg) no-repeat center/cover;
}
@media screen and (max-width: 1025px) {
  .bg-point:before {
    width: 100%;
    height: 450px;
  }
}
@media screen and (max-width: 639px) {
  .bg-point:before {
    height: 320px;
    opacity: 0.8;
  }
}

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

.feature-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1100px;
  margin-inline: auto;
}
.feature-list.type1 li {
  position: relative;
  padding: 0 10px 20px;
}
.feature-list.type1 li:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: calc(100% - 80px);
  background-image: linear-gradient(to right bottom, #fffce3, #fff, #fff);
  z-index: -1;
}
.feature-list li {
  width: calc((100% - 20px) / 3);
  margin-right: 10px;
}
.feature-list li:nth-child(3n) {
  margin-right: 0;
}
.feature-list li:nth-child(n+4) {
  margin-top: 60px;
}
.feature-list figure {
  width: 140px;
  padding: 10px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.feature-list figure:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: 95%;
  height: 95%;
  background: #fff;
  transform: translate(-50%, -50%) rotate(45deg);
  z-index: -1;
  box-shadow: rgba(16, 39, 119, 0.1) 0px 7px 29px 0px;
}
.feature-list .txt {
  padding: 0 15px;
  letter-spacing: 0;
}

/* --news--
----------------------------------*/
.news-box {
  margin: 0 auto 0px;
  max-width: 1200px;
  position: relative;
  z-index: 10;
  display: flex;
  padding: 50px;
  background: #fff;
  border-radius: 20px;
}
@media screen and (max-width: 1025px) {
  .news-box {
    margin-top: 0;
  }
}
@media screen and (max-width: 639px) {
  .news-box {
    flex-direction: column;
    padding: 15px 10px 20px;
    margin-bottom: 20px;
  }
}

.news-title {
  text-align: center;
  position: relative;
}
.news-title span {
  display: block;
}
.news-title .eng {
  font-family: "Montserrat Subrayada", sans-serif;
  font-weight: 700;
  color: #0d5cb1;
  position: relative;
  font-size: 3.2rem;
}
.news-title .ja {
  position: relative;
  font-weight: 600;
}
@media screen and (max-width: 639px) {
  .news-title {
    margin-bottom: 30px;
  }
  .news-title .eng {
    font-size: 2.4rem;
  }
  .news-title .ja {
    font-size: 1.4rem;
  }
}

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

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

/* contents
----------------------------------*/
.single {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 0;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1101px) {
  .single {
    padding: 80px 10px;
  }
}

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

.single03 {
  max-width: 1500px;
  margin: 0 auto;
  padding: 80px 0;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1101px) {
  .single03 {
    padding: 80px 10px;
  }
}

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

.bg-common {
  padding-top: 70px;
}
@media screen and (max-width: 639px) {
  .bg-common {
    padding-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 #0d5cb1;
}
.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;
}
@media screen and (max-width: 639px) {
  .sentence p + p {
    margin-top: 10px;
  }
}

.sentence2 p + p {
  margin-top: 10px;
}
@media screen and (max-width: 639px) {
  .sentence2 p + p {
    margin-top: 8px;
  }
}

.sentence3 {
  line-height: 3;
}
@media screen and (max-width: 639px) {
  .sentence3 {
    line-height: 1.8;
  }
}

.bg-grid {
  background: rgba(255, 255, 255, 0.9);
  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-wall {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/25687/bg-wall.jpg);
}

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

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

/* mtitle
----------------------------------*/
.mtitle {
  margin: 0 auto 40px;
  text-align: center;
  position: relative;
  z-index: 3;
  padding-top: 30px;
}
.mtitle:before {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  content: attr(data-title);
  font-family: "Montserrat Subrayada", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  text-align: center;
  color: #0d5cb1;
}
.mtitle .ja {
  font-size: 2rem;
  color: #333;
}
.mtitle.white {
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}
.mtitle.white:before {
  color: #fff;
}
.mtitle.white span {
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}
.mtitle.white span:after {
  background-color: #eee;
}
.mtitle.mtitle_left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}
.mtitle.mtitle_left:before {
  left: 0;
  transform: none;
}
.mtitle.mtitle_right {
  text-align: right;
  margin-left: auto;
  margin-right: 0;
}
@media screen and (max-width: 639px) {
  .mtitle {
    text-align: center;
  }
  .mtitle .eng {
    font-size: 1.3rem;
  }
  .mtitle .ja {
    font-size: 1.6rem;
  }
  .mtitle:before {
    font-size: 2rem;
  }
  .mtitle.topics_ttl {
    margin-bottom: 10px;
  }
  .mtitle.completed {
    padding-top: 70px;
  }
  .mtitle.completed::before {
    line-height: 1.1;
  }
}

.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: 2.2rem;
  display: inline-block;
  font-family: "Montserrat Subrayada", sans-serif;
  font-weight: 700;
  color: #0d5cb1;
  order: -1;
}
.mtitle2 .ja {
  font-size: 2.2rem;
  color: #333;
}
@media screen and (max-width: 639px) {
  .mtitle2:before {
    width: 15px;
  }
  .mtitle2 .eng {
    font-size: 1.2rem;
  }
  .mtitle2 .ja {
    font-size: 1.5rem;
  }
}

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

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

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

.mtitle5 {
  position: relative;
}
.mtitle5 span {
  position: relative;
  z-index: 2;
  padding: 0 15px 8px;
  font-size: 1.5em;
  line-height: 1.6;
  color: #0d5cb1;
  display: inline-block;
}
.mtitle5:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 60%;
  background: #fff;
  opacity: 0.5;
}

.mtitle_sub {
  padding-left: 0.5em;
  font-weight: 600;
  position: relative;
  border-left: 3px solid #0d5cb1;
  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: #0d5cb1;
  color: #fff;
  text-align: center;
  font-size: 2rem;
  position: relative;
  padding: 20px 15px;
  margin-bottom: 25px;
  font-weight: 600;
}
.mtitle_box a {
  color: #fff;
}
.mtitle_box span {
  font-size: 14px;
  padding-left: 10px;
}
@media screen and (max-width: 639px) {
  .mtitle_box {
    font-size: 1.8rem;
  }
}
.mtitle_box.type1 {
  background: #F1110B;
}
.mtitle_box.type2 {
  background: #21a2af;
}

.mtitle_box2 {
  background: #0d5cb1;
  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: 639px) {
  .mtext2 {
    font-size: 1.8rem;
    padding: 4px 8px;
  }
}

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

.mtitle_category {
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-family: "Montserrat Subrayada", sans-serif;
  font-weight: 700;
}
.mtitle_category:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0ca";
  font-weight: 900;
  margin-right: 5px;
  color: #0d5cb1;
}

/* btn
----------------------------------*/
.btn01 a {
  background: #0d5cb1;
  text-align: center;
  width: 300px;
  margin: 15px auto;
  color: #fff;
  display: block;
  padding: 8px 5px;
  font-weight: 600;
  border-radius: 35px;
  max-width: 90%;
}
.btn01 a:hover {
  background: #102777;
  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%;
  }
}

.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: #0d5cb1;
}
@media screen and (max-width: 639px) {
  .btn02 {
    width: 260px;
  }
  .btn02 a {
    font-size: 1.3rem;
  }
}

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

.news-bl {
  overflow: hidden;
}
.news-bl .news-bl-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 10px 8px 10px;
}
.news-bl .news-bl-inner:not(:last-of-type) {
  margin-bottom: 3px;
  border-bottom: 0.9px solid #ddd;
}
@media screen and (max-width: 639px) {
  .news-bl .news-bl-inner {
    padding: 5px 6px 5px;
  }
}
.news-bl dt {
  width: 6em;
  line-height: 1.3;
  color: #0d5cb1;
  text-align: center;
  font-size: 1.3rem;
  font-family: "Montserrat Subrayada", sans-serif;
  font-weight: 700;
}
.news-bl dt .year {
  font-size: 12px;
  font-weight: 400;
  color: #F1110B;
}
.news-bl dt .md {
  display: block;
  font-weight: 600;
}
@media screen and (max-width: 639px) {
  .news-bl dt {
    width: 5.5em;
    font-size: 12px;
  }
  .news-bl dt .md {
    font-size: 1.3rem;
  }
}
.news-bl dd {
  flex: 1;
  margin-left: 50px;
  line-height: 1.6;
}
.news-bl dd a {
  color: #232323;
  background-image: linear-gradient(to right, #0d5cb1, #102777);
  padding-bottom: 0.25em;
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  transition: background-size 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-weight: 600;
}
.news-bl dd a:hover {
  background-position: 0 100%;
  background-size: 100% 1px;
}
@media screen and (max-width: 639px) {
  .news-bl dd {
    margin-left: 20px;
    font-size: 13px;
  }
}

@media screen and (max-width: 639px) {
  .scrollbar {
    max-height: 200px;
  }
  .scrollbar::-webkit-scrollbar {
    background: transparent;
    width: 8px !important;
    height: 8px !important;
  }
}

/* page-title
----------------------------------*/
.page-title {
  position: relative;
  z-index: 3;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/25687/6.jpg) no-repeat center 70%/cover;
}
.page-title:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #0d5cb1;
  opacity: 0.3;
}
.page-title .inner {
  margin: 0 auto;
  height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 1100px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1101px) {
  .page-title .inner {
    padding: 0 20px;
  }
}
@media screen and (max-width: 1025px) {
  .page-title .inner {
    height: 260px;
  }
}
@media screen and (max-width: 639px) {
  .page-title .inner {
    height: 50vw;
  }
}
.page-title .inner .page-lead {
  font-size: 3rem;
  position: relative;
  transform: translateY(40px);
}
.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: "Montserrat Subrayada", sans-serif;
  font-weight: 700;
  font-size: 8rem;
  color: #fff;
  line-height: 1;
  text-shadow: 4px 4px 20px rgba(73, 45, 24, 0.1);
  margin-top: 50px;
  letter-spacing: -0.2rem;
  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: 1300px) {
  .page-title .inner .page-lead {
    padding-left: 15px;
  }
}
@media screen and (max-width: 639px) {
  .page-title .inner .page-lead {
    font-size: 1.6rem;
    transform: translateY(23px);
    padding-left: 0;
  }
  .page-title .inner .page-lead .eng {
    font-size: 3.8rem;
    margin-top: 20px;
  }
}

.bg-01 {
  position: relative;
}
.bg-01 .inner {
  position: relative;
}
.bg-01 .inner .single {
  margin-right: 0;
  max-width: 1200px;
  background: rgba(255, 255, 255, 0.7);
}
.bg-01:before, .bg-01:after {
  position: absolute;
  content: "";
  top: 0;
  height: 100%;
}
.bg-01:before {
  left: 0;
  width: 100%;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/25687/8.jpg) 40% 50%/cover;
}
.bg-01:after {
  left: 0%;
  width: 100%;
  background: #84d7d7;
  opacity: 0.5;
}
@media screen and (max-width: 1025px) {
  .bg-01 .inner .single {
    margin-left: 10%;
  }
}
@media screen and (max-width: 639px) {
  .bg-01 .inner .single {
    width: 90%;
    padding: 30px 0 15px;
  }
}

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

.bg-03 {
  position: relative;
  margin: 0 auto 0;
}
.bg-03:after {
  position: absolute;
  content: "";
  width: 80%;
  height: 100%;
  top: 0;
  left: 0;
  background: #0d5cb1;
  -webkit-clip-path: polygon(63% 0%, 82% 35%, 56% 100%, 0 100%, 0 0);
          clip-path: polygon(63% 0%, 82% 35%, 56% 100%, 0 100%, 0 0);
}
.bg-03:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 35%;
  top: 0;
  right: 0;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/25687/bg-03.jpg) no-repeat;
  background-size: cover;
}
@media screen and (max-width: 1101px) {
  .bg-03:after {
    width: 50%;
    -webkit-clip-path: polygon(63% 0%, 82% 45%, 30% 100%, 0 100%, 0 0);
            clip-path: polygon(63% 0%, 82% 45%, 30% 100%, 0 100%, 0 0);
  }
}
@media screen and (max-width: 1025px) {
  .bg-03:after {
    width: 100%;
    height: 88%;
    -webkit-clip-path: polygon(100% 0, 80% 100%, 0 100%, 0 100%, 0 0);
            clip-path: polygon(100% 0, 80% 100%, 0 100%, 0 100%, 0 0);
  }
  .bg-03:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 65%;
    top: 0;
    right: 0;
    background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/25687/bg-03.jpg) no-repeat;
    background-size: cover;
    opacity: 0.2;
  }
}
@media screen and (max-width: 639px) {
  .bg-03:after {
    width: 100%;
    height: 30%;
    -webkit-clip-path: polygon(90% 0, 80% 100%, 0 100%, 0 100%, 0 0);
            clip-path: polygon(90% 0, 80% 100%, 0 100%, 0 100%, 0 0);
  }
  .bg-03:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 95%;
    top: 0;
    right: 0;
    background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/25687/bg-03.jpg) no-repeat;
    background-size: cover;
  }
}

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

.bg-base {
  position: relative;
}
.bg-base:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(to bottom, rgba(33, 162, 175, 0.4) 0%, rgba(170, 67, 67, 0.33) 50%, rgba(204, 43, 40, 0.315) 65%, rgba(222, 30, 26, 0.3075) 75.5%, rgba(232, 24, 18, 0.3037) 82.85%, rgba(236, 20, 15, 0.3019) 88%, rgba(241, 17, 11, 0.3) 100%);
  opacity: 0.7;
}
.bg-base.type1 {
  position: relative;
}
.bg-base.type1:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: calc(100% - 80px);
  height: calc(100% - 40px);
  transform: translate(-50%, -50%);
  background: #84d7d7;
  opacity: 0.8;
}
@media screen and (max-width: 1101px) {
  .bg-base.type1:before {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
}
.bg-base.type2 .inner {
  position: relative;
  z-index: 3;
}
.bg-base.type2:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: calc(100% - 80px);
  height: calc(100% - 80px);
  transform: translate(-50%, -50%);
  background: #fefefe;
}
@media screen and (max-width: 639px) {
  .bg-base.type2:before {
    width: calc(100% - 40px);
    height: calc(100% - 40px);
  }
}
.bg-base.type3 {
  position: relative;
}
.bg-base.type3:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: calc(100% - 80px);
  height: calc(100% - 40px);
  transform: translate(-50%, -50%);
  background: #c5eeee;
  opacity: 0.2;
}
@media screen and (max-width: 1101px) {
  .bg-base.type3:before {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
}

.bg-greet {
  position: relative;
}
.bg-greet:before {
  position: absolute;
  content: "";
  left: -5%;
  top: 0;
  width: 300px;
  height: 300px;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/25687/greet-img.png) no-repeat 50%/contain;
}
.bg-greet:after {
  position: absolute;
  content: "";
  right: -5%;
  top: 0;
  width: 300px;
  height: 300px;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/25687/greet-img2.png) no-repeat 50%/contain;
}
@media screen and (max-width: 1101px) {
  .bg-greet:before, .bg-greet:after {
    width: 210px;
  }
}
@media screen and (max-width: 639px) {
  .bg-greet:before, .bg-greet:after {
    width: 110px;
    height: 110px;
    opacity: 0.7;
  }
}

.bg-gray {
  position: relative;
}
.bg-gray:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(242, 242, 242, 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%, #f2f2f2 50.1%, #f2f2f2 100%);
}
.bg-gray.bg-half-upper {
  background: transparent;
  background-image: linear-gradient(to bottom, #f2f2f2 0%, #f2f2f2 50%, transparent 50.1%, transparent 100%);
}

.bg-gray2 {
  background-image: linear-gradient(to bottom, transparent, #f2f2f2);
}

.bg-999 {
  background: #888;
}

.bg-blue {
  position: relative;
  background: transparent;
}
.bg-blue:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to left, #0d5cb1, #21a2af);
  opacity: 0.7;
}
.bg-blue.type1:before {
  top: 0;
  width: 100%;
  height: 100%;
  background: #102777;
  opacity: 0.9;
}
.bg-blue.type2:before {
  top: 0;
  width: 100%;
  height: 100%;
  background: #21a2af;
  opacity: 0.3;
}

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

.bg-beige2 {
  background: rgba(253, 244, 237, 0.4);
}

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

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

.tbl_normal {
  width: 100%;
}
.tbl_normal.type1 th {
  width: 30%;
  font-size: 1.6rem;
  line-height: 1;
  padding: 10px 0;
  text-align: center;
}
@media screen and (max-width: 639px) {
  .tbl_normal.type1 th {
    font-size: 1.4rem;
    width: 33%;
  }
}
.tbl_normal.type1 td {
  text-align: left;
  font-size: 0.9em;
}
.tbl_normal.type1 td:last-child {
  text-align: center;
}
.tbl_normal th,
.tbl_normal td {
  padding: 4px 5px;
  vertical-align: middle;
  border-bottom: 0.9px solid #ccc;
}
.tbl_normal th {
  width: 70%;
  text-align: left;
}
.tbl_normal td {
  text-align: right;
}

.tbl {
  width: 100%;
}
.tbl th,
.tbl td {
  padding: 15px;
  vertical-align: middle;
  border-bottom: 2px solid #ededed;
}
.tbl th {
  background: rgba(13, 92, 177, 0.8);
  text-align: left;
  color: #fff;
}
.tbl th span {
  font-size: 1.4rem;
}
.tbl .cell01 {
  width: 45%;
}
.tbl .cell02 {
  width: 20%;
}
@media screen and (max-width: 639px) {
  .tbl th {
    text-align: left;
  }
  .tbl th,
  .tbl td {
    padding: 10px 8px;
    letter-spacing: 0;
  }
}

.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: #f2f2f2;
}
.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: #F1110B;
  margin-right: 5px;
  padding: 0px 4px;
}
.tbl-border th {
  width: 22%;
  text-align: left;
  font-weight: 600;
  border-bottom-color: #F1110B;
}
.tbl-border th.th-1 {
  width: 45%;
}
@media screen and (max-width: 639px) {
  .tbl-border th {
    width: 30%;
  }
}

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

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

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

/* list
----------------------------------*/
.list_common li {
  padding-bottom: 5px;
  padding-left: 1rem;
  margin-bottom: 5px;
  border-bottom: 1px solid #ddd;
}
.list_common li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.list_common.common_big li {
  padding-bottom: 10px;
  margin-bottom: 10px;
}

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

.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: #0d5cb1;
  border-bottom: 1px dotted #0d5cb1;
}
.list_check li:before {
  position: absolute;
  left: 0;
  top: 20px;
  content: "";
  width: 10px;
  height: 2px;
  background: #F1110B;
}
@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;
  border-bottom: 1px solid #ccc;
}
.list_check2 li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: 900;
  margin-right: 8px;
  color: #84d7d7;
}
.list_check2.type1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px 20px;
}
@media screen and (max-width: 639px) {
  .list_check2.type1 {
    grid-template-columns: 1fr;
    gap: 5px 0;
  }
}

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

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

.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: 10px;
  padding-bottom: 5px;
  font-weight: 600;
  padding-left: 40px;
  position: relative;
}
.ol-list li:before {
  counter-increment: number;
  content: counter(number);
  background: #F1110B;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  font-size: 1.6rem;
  color: #102777;
  position: absolute;
  left: 0;
  top: 0px;
  border-radius: 100%;
}
@media screen and (max-width: 639px) {
  .ol-list li {
    font-size: 1.3rem;
  }
  .ol-list li span {
    font-size: 0.9em;
  }
  .ol-list li:before {
    font-size: 1.8rem;
  }
}

.list_disc li {
  padding: 5px 0;
}
.list_disc li a {
  font-weight: 600;
  letter-spacing: 0.1rem;
}
.list_disc li:not(:last-of-type) {
  margin-bottom: 5px;
  border-bottom: 1px dashed #ccc;
}
.list_disc li:before {
  content: "・";
  margin-right: 5px;
  color: #F1110B;
}

.list-btn {
  display: flex;
  flex-wrap: wrap;
}
.list-btn.type1 {
  justify-content: center;
}
.list-btn.type2 {
  flex-direction: column;
}
.list-btn li {
  width: 48%;
  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: #F1110B;
}
.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;
  }
}

.bnr-btn {
  display: flex;
  flex-wrap: wrap;
}
.bnr-btn.type1 {
  justify-content: center;
}
.bnr-btn.type2 {
  flex-direction: column;
}
.bnr-btn li {
  width: 38%;
  margin: 0 1.995% 10px 0;
}
.bnr-btn li a {
  display: block;
  background: #f2f2f2;
  font-weight: 600;
  padding: 0px 3px;
  text-align: center;
  border: 1px solid #333 !important;
  width: 100%;
  height: 100%;
  line-height: 1.5;
  font-size: 1.8rem;
  letter-spacing: 0;
  color: #fff;
}
.bnr-btn li:nth-child(even) a {
  background: #F1110B;
}
.bnr-btn li:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 639px) {
  .bnr-btn li {
    width: 90%;
    margin: 0 auto 10px;
  }
  .bnr-btn li a {
    font-size: 1.2rem;
  }
  .bnr-btn li:nth-child(3n) {
    margin-right: auto;
  }
}
.bnr-btn li:hover {
  opacity: 0.5;
}

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

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

.morebtn2 {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  margin: 15px 0;
  vertical-align: middle;
  text-decoration: none;
  background: #0d5cb1;
  border-radius: 40px;
  padding: 6px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 3px 8px;
  width: 240px;
  font-size: 1.5rem;
  color: #fff;
}
@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: #F1110B;
  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: #fff;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
}
.morebtn2:hover .circle {
  width: 101%;
  background: #F1110B;
}
.morebtn2:hover .circle .icon.arrow {
  background: #fff;
  transform: translate(1rem, 0);
}
.morebtn2:hover .button-text {
  color: #fff;
}
.morebtn2.type1 {
  background: #0d5cb1;
  width: 280px;
}
.morebtn2.type1 .circle {
  background: #fff;
}
.morebtn2.type1 .icon {
  background: #F1110B;
}
.morebtn2.type1 .icon.arrow:before {
  border-color: #0d5cb1;
}
.morebtn2.type1 .button-text {
  color: #fff;
  font-size: 1.1em;
}
.morebtn2.type1:hover .button-text {
  color: #0d5cb1;
}

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

.blog-wrap li {
  background: #fff;
}

.pages {
  display: flex;
  justify-content: center;
  margin-top: 35px;
}
.pages > div {
  font-size: 13px;
  line-height: 1.4;
  padding: 10px;
}
.pages > div:last-of-type {
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1px solid #ccc;
}
.pages > div a {
  display: block;
  font-weight: 600;
}

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

.category_nav {
  border: 1px solid #dddddd;
}
.category_nav li a {
  display: block;
  padding: 15px;
  border-bottom: 1px dotted #dddddd;
  background-color: #ffffff;
}
.category_nav li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0a9";
  font-weight: 900;
  margin-right: 5px;
}
.category_nav li a:hover {
  background: #f2f2f2;
}
.category_nav li:last-child a {
  border-bottom: none;
}

.blog-title {
  line-height: 1.5;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  font-weight: 600;
}
@media screen and (max-width: 639px) {
  .blog-title {
    font-size: 1.2rem;
  }
}

.blog-date {
  display: inline-block;
  color: #0d5cb1;
  font-size: 1.2rem;
}
.blog-date:before {
  font-family: "Font Awesome 5 Free";
  content: "\f017";
  font-weight: 900;
  margin-right: 5px;
}
@media screen and (max-width: 639px) {
  .blog-date {
    font-size: 12px;
  }
}

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

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

.top-blog-common {
  overflow: visible !important;
  display: flex;
  position: relative;
  padding-bottom: 50px !important;
}
.top-blog-common .swiper-slide {
  overflow: hidden;
  width: 30rem;
  border-radius: 15px;
  background: #f6f6f6;
  display: block;
  height: auto;
}
@media screen and (max-width: 639px) {
  .top-blog-common .swiper-slide {
    width: 20rem;
  }
}
.top-blog-common .swiper-controller {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: absolute;
  left: 10px;
  bottom: -20px;
}
.top-blog-common .swiper-button-prev,
.top-blog-common .swiper-button-next {
  display: grid;
  place-content: center;
  width: 4rem;
  height: 4rem;
  cursor: pointer;
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
}
.top-blog-common .swiper-button-prev {
  margin-right: 40px !important;
}
.top-blog-common .swiper-button-prev::before,
.top-blog-common .swiper-button-next::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: 50%;
  background: #fefefe;
  box-shadow: 0.6rem 0.6rem 1rem rgba(73, 45, 24, 0.05), -0.6rem -0.6rem 1rem #F1110B;
}
.top-blog-common .swiper-button-prev::after,
.top-blog-common .swiper-button-next::after {
  width: 1.2rem;
  height: 1.2rem;
  content: "";
  border: solid #0d5cb1;
  border-width: 3px 3px 0 0;
}
.top-blog-common .swiper-button-prev::after {
  margin-left: 0.4rem;
  transform: rotate(-135deg);
}
.top-blog-common .swiper-button-next::after {
  margin-right: 0.4rem;
  transform: rotate(45deg);
}
.top-blog-common .swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}
.top-blog-common .swiper-button-prev,
.top-blog-common .swiper-button-next {
  position: relative;
  flex-shrink: 0;
  margin: 0;
}
.top-blog-common .swiper-button-disabled {
  pointer-events: none;
  opacity: 0.5;
}
.top-blog-common .swiper-button-disabled::before {
  box-shadow: inset 0.6rem 0.6rem 1rem rgba(73, 45, 24, 0.05), inset -0.6rem -0.6rem 1rem #F1110B;
}

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

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

/* job
----------------------------------*/
.job-list-wrap > li:not(:last-of-type) {
  margin-bottom: 20px;
}
.job-list-wrap > li a {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #fff;
  width: 100%;
  height: 100%;
  padding: 15px 20px;
  z-index: 3;
}
.job-list-wrap > li a:hover .morebtn {
  border-bottom-color: #21a2af;
  color: #21a2af;
}
.job-list-wrap > li a:hover .job-img img {
  transform: scale(1.2);
}
@media screen and (max-width: 639px) {
  .job-list-wrap > li a {
    padding: 12px 15px;
  }
}
.job-list-wrap > li .job-img {
  width: 100px;
  height: 100px;
  overflow: hidden;
}
.job-list-wrap > li .job-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.2s ease-in all;
}
@media screen and (max-width: 639px) {
  .job-list-wrap > li .job-img {
    width: 70px;
    height: 70px;
  }
}
.job-list-wrap > li .job-detail {
  width: 100%;
}
.job-list-wrap > li .job-title {
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1.5rem;
  color: #0d5cb1;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 639px) {
  .job-list-wrap > li .job-title {
    font-size: 1.2rem;
  }
}
.job-list-wrap > li .job-txt {
  font-size: 1.4rem;
  margin-top: 8px;
  letter-spacing: 0;
  margin-bottom: 15px;
  font-weight: 600;
  color: #222;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  /*IE対策*/
  line-height: 1.8em;
  max-height: 3.6em;
  overflow: hidden;
}
@media screen and (max-width: 639px) {
  .job-list-wrap > li .job-txt {
    font-size: 12px;
    margin-bottom: 25px;
  }
}
.job-list-wrap > li .naiyou {
  background: #21a2af;
  font-size: 12px;
  padding: 0px 4px;
  display: inline-block;
  margin-right: 5px;
  color: #fff;
}
.job-list-wrap > li .morebtn {
  position: absolute;
  right: 10px;
  bottom: 0;
  color: #0d5cb1;
  border-bottom: 3px solid #0d5cb1;
  font-size: 12px;
  font-weight: 600;
  padding: 0 10px;
  transition: 0.2s ease-in all;
  letter-spacing: 0;
}

.job-upper {
  flex-basis: 100%;
  margin-bottom: 10px;
}
.job-upper .job-date {
  display: inline-block;
  color: #F1110B;
  border-bottom: 2px solid #102777;
  font-weight: 600;
  font-size: 1.3rem;
}
.job-upper .job-date:before {
  font-family: "Font Awesome 5 Free";
  content: "\f017";
  font-weight: 900;
  margin-right: 5px;
}
@media screen and (max-width: 639px) {
  .job-upper .job-date {
    font-size: 12px;
  }
}
.job-upper .job-category {
  font-size: 12px;
  color: #111;
  display: inline-block;
  margin-left: 3px;
  background: #f2f2f2;
  font-weight: 600;
}

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

.w300 {
  width: 300px;
}

.spbr {
  display: none;
}

.pc_center {
  text-align: center;
}

.color1 {
  color: #0d5cb1;
}

.color2 {
  color: #21a2af;
}

.color3 {
  color: #f66009;
}

.color4 {
  color: #F1110B;
}

.color5 {
  color: #0035a1;
}

.color6 {
  color: #0a2f7a;
}

.relative {
  position: relative;
}

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

.bg-body {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/25687/body.jpg) repeat center top/100% auto;
}

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

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

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

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

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

.policy {
  padding: 30px;
  background: rgba(255, 255, 255, 0.5);
  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.7rem;
  margin-bottom: 15px;
  color: #0d5cb1;
  font-weight: 600;
  padding-bottom: 8px;
  border-bottom: 1px solid #ccc;
}
.mtitle_small:before {
  content: "";
  width: 50px;
  height: 1px;
  background-color: #0d5cb1;
  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;
}

/* 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: 31.33%;
  margin-left: 2%;
  margin-bottom: 4%;
  font-weight: 600;
}
.gallery_ul > li .photobox-wrap {
  width: 100%;
  height: 220px;
  text-align: center;
  overflow: hidden;
  background: #aaa;
  margin-bottom: 10px;
}
.gallery_ul > li .photobox-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit:contain;";
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
@media 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%;
  -o-object-fit: cover;
     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;
  }
}
.list2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 4%;
}
@media screen and (max-width: 639px) {
  .list2 {
    grid-template-columns: 1fr;
  }
}
.list2.type1 > li,
.list2.type1 .child {
  background: #fefefe;
  padding: 15px;
}
.list2 > li,
.list2 .child {
  position: relative;
}
.list2 > li.child-100,
.list2 .child.child-100 {
  grid-column: 2fr;
}

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

.list4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 2.5%;
}
.list4.type1 li {
  position: relative;
  padding: 20px;
  background: #f2f2f2;
}
.list4.type1 li:after {
  position: absolute;
  content: "";
  right: 11%;
  bottom: -50%;
  width: 100%;
  height: 50%;
  background-image: linear-gradient(to bottom, #ccc 0%, #eee 25%, transparent 40%);
  transform: skew(-25deg);
  z-index: -1;
  opacity: 0.7;
}
@media screen and (max-width: 820px) {
  .list4 {
    display: flex;
    flex-wrap: wrap;
  }
  .list4.type1 li {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .list4.type1 li .pcbr {
    display: none;
  }
  .list4.type1 li::after {
    display: none;
  }
}
@media screen and (max-width: 639px) {
  .list4.type1 li {
    width: 88%;
    padding: 10px 20px 20px;
  }
}

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

#works:before {
  content: "";
  height: 80px;
  margin-top: -80px;
  display: block;
  visibility: hidden;
}

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

.flow-dl .flow-inner {
  padding: 8px;
}
.flow-dl .flow-inner:not(:last-of-type) {
  margin-bottom: 5px;
  border-bottom: solid 1px #aaa;
}
.flow-dl .flow-inner dt {
  font-size: 1.6rem;
  font-weight: 600;
  color: #102777;
}
.flow-dl .flow-inner dt .eng {
  font-family: "Montserrat Subrayada", 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;
}

.blog-month {
  margin-bottom: 10px;
}
.blog-month ul {
  display: flex;
  flex-wrap: wrap;
}
.blog-month ul li {
  width: 49%;
  padding: 5px 0;
  margin-bottom: 5px;
  text-align: center;
  letter-spacing: 0;
}
.blog-month ul li:nth-child(2n) {
  margin-left: 2%;
}
.blog-month ul li a {
  color: #102777;
  font-weight: 600;
  border-bottom: 1px solid #21a2af;
  font-size: 12px;
}
.blog-month ul li a:hover {
  color: #ffd803;
}

#a01,
#a02,
#a03,
#a04,
#a05,
#a06,
#a07,
#a08,
#a09,
#a010,
#a011,
#a012,
#b01,
#b02,
#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: "Montserrat Subrayada", 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: #F1110B;
}
.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;
  }
}

.works-list > li {
  padding: 15px 20px;
  border-top: 2px solid #333;
  font-weight: 600;
}
.works-list > li:before {
  content: "●";
  margin-right: 5px;
  color: #102777;
}
.works-list > li:last-child {
  border-bottom: 2px solid #222;
}

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

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

@media screen and (max-width: 639px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 17px !important;
    height: 28px !important;
    background-size: 17px 28px !important;
  }
}

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

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

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

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

.title02 {
  text-align: center;
  margin-bottom: 20px;
  margin-top: 20px;
}
.title02 span {
  display: inline-block;
  font-size: 2.2rem;
  border-bottom: 2px solid #333;
}

.title03 span {
  background: #0d5cb1;
  padding: 2px 5px;
  font-weight: 600;
  color: #fff;
}
@media screen and (max-width: 639px) {
  .title03 span {
    font-size: 1.1rem;
  }
}
.title03.type1 span {
  background: transparent;
  border: 1px solid #fff;
}
.title03.type2 span {
  background: #73a44d;
}

.title04 {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.title04 .sub {
  font-size: 1.8rem;
  color: #0d5cb1;
  padding-right: 10px;
  border-right: 1px solid #0d5cb1;
  margin-right: 10px;
  font-family: "Montserrat Subrayada", sans-serif;
  font-weight: 700;
}
.title04 .main {
  font-size: 2rem;
}

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

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

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

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

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

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

.content-head {
  padding: 120px 20px;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/25687/content-head01.jpg) no-repeat right center/cover;
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 639px) {
  .content-head {
    padding: 50px 15px;
  }
}

.content-txt {
  position: relative;
  max-width: 500px;
  background: rgba(252, 252, 252, 0.7);
  padding: 30px;
  text-align: center;
  box-shadow: 0 0 15px rgab(#000, 0.1);
}
@media screen and (max-width: 639px) {
  .content-txt {
    padding: 20px;
  }
}

.gallerybox {
  position: relative;
}
.gallerybox .works-img {
  position: absolute;
  right: 25%;
  top: -114px;
  width: 150px;
}
@media screen and (max-width: 1101px) {
  .gallerybox .works-img {
    right: 20%;
  }
}
@media screen and (max-width: 1025px) {
  .gallerybox .works-img {
    right: 10%;
    width: 100px;
    top: -60px;
  }
}
@media screen and (max-width: 639px) {
  .gallerybox .works-img {
    right: 1%;
    width: 80px;
    top: -64px;
  }
}

.slide_list,
.slide_list2 {
  position: relative;
  display: none;
  margin: 60px auto 20px;
}
.slide_list li,
.slide_list2 li {
  margin-right: 1.5%;
}
.slide_list li img,
.slide_list2 li img {
  width: auto;
  height: 300px;
  width: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  transition: filter 0.2s ease-in;
}
.slide_list li:hover img,
.slide_list2 li:hover img {
  filter: grayscale(0);
}
@media screen and (max-width: 639px) {
  .slide_list li,
  .slide_list2 li {
    margin-right: 3%;
  }
  .slide_list li img,
  .slide_list2 li img {
    height: 180px;
  }
}
@media screen and (max-width: 639px) {
  .slide_list,
  .slide_list2 {
    margin: 30px auto;
  }
}
.slide_list.type2 li img,
.slide_list2.type2 li 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 #0d5cb1;
  padding-right: 15px;
  align-self: flex-start;
  line-height: 1.2;
  font-family: "Montserrat Subrayada", 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: #0d5cb1;
  border-bottom: 1px solid #0d5cb1;
  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 #F1110B;
  }
  .flow-list > li .flow-title {
    font-size: 1.3rem;
  }
  .flow-list > li .txt {
    margin: 20px auto 0;
  }
}

.kiritori {
  height: 1px;
  border-top: 1px solid #fff;
  margin: 4em auto;
  max-width: 100%;
  display: block;
}

.column2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.column2 .child {
  width: 48%;
}
.column2 .child2 {
  width: 35%;
}
.column2 .child3 {
  width: 60%;
}
.column2 .type2 img {
  width: auto;
  height: 500px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 18px 50px -10px;
}
@media screen and (max-width: 1025px) {
  .column2 {
    flex-direction: column;
  }
  .column2 .child,
  .column2 .child2,
  .column2 .child3 {
    width: 100%;
  }
  .column2 .child.column2-img,
  .column2 .child2.column2-img,
  .column2 .child3.column2-img {
    order: -1;
    margin-bottom: 30px;
  }
  .column2 .type2 img {
    max-width: 400px;
    height: 420px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}
@media screen and (max-width: 639px) {
  .column2 .type2 img {
    max-width: 220px;
    height: 250px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}

.top-split {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
}
.top-split .child {
  width: 48%;
}
.top-split .child.split-1 {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/25687/split01.jpg) no-repeat center/cover;
}
.top-split .child.split-2 {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/25687/split02.jpg) no-repeat center/cover;
}
.top-split .child.split-3 {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/25687/split03.jpg) no-repeat center/cover;
}
@media screen and (max-width: 639px) {
  .top-split .child {
    width: 90%;
    margin: 0 auto 25px;
  }
}
@media screen and (max-width: ) {
  .top-split .child {
    width: 90%;
    margin: 0 auto 25px;
  }
}
.top-split .child a {
  display: block;
  position: relative;
  height: 350px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.top-split .child a:before {
  position: absolute;
  content: "";
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid #fff;
  background: rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in;
}
@media screen and (max-width: 639px) {
  .top-split .child a {
    height: auto;
    padding: 55px 0;
  }
  .top-split .child a:before {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border: 2px solid #fff;
  }
}
.top-split .child a .inner {
  position: relative;
  z-index: 3;
  text-align: center;
  font-weight: 600;
}
.top-split .child a .split-title {
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
}
.top-split .child a .split-title .em {
  display: block;
  font-size: 2.5rem;
}
.top-split .child a .split-title .eng {
  display: block;
  line-height: 1.6;
  font-size: 2rem;
  font-family: "Montserrat Subrayada", sans-serif;
  font-weight: 700;
}
.top-split .child a .split-title .ja {
  font-size: 2rem;
}
@media screen and (max-width: 639px) {
  .top-split .child a .split-title .eng {
    font-size: 1.4rem;
  }
  .top-split .child a .split-title .em {
    font-size: 1.8rem;
  }
  .top-split .child a .split-title .ja {
    font-size: 1.6rem;
  }
}
.top-split .child a .split-txt {
  color: #fff;
  max-width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 639px) {
  .top-split .child a .split-txt {
    font-size: 1.2rem;
    padding: 0 20px;
    max-width: 90%;
  }
}
.top-split .child a .split-more {
  width: 200px;
  padding: 10px 0;
  text-align: center;
  background: #fff;
  color: #111;
  border-radius: 30px;
  margin: 20px auto 0;
  transition: all 0.2s ease-in;
}
.top-split .child a:hover:before {
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.top-split .child a:hover .split-more {
  background: #0d5cb1;
  color: #fff;
}

.article-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.article-box .left {
  width: 25%;
}
.article-box .right {
  width: 72%;
}
@media screen and (max-width: 639px) {
  .article-box {
    justify-content: center;
  }
  .article-box .left {
    width: 90%;
    margin: 0 auto 30px;
  }
  .article-box .right {
    width: 90%;
  }
}

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

.page {
  text-align: center;
}

.top-icon-list > li {
  position: relative;
  padding: 20px 15px;
  background-image: linear-gradient(to right bottom, #fff, #fff, rgba(33, 162, 175, 0.2));
  border: 4px solid #21a2af;
  box-shadow: 5px 5px #f2f2f2;
  font-size: 1.7rem;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 1025px) {
  .top-icon-list > li {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 20px;
  }
  .top-icon-list > li:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 639px) {
  .top-icon-list {
    margin-bottom: -20px;
  }
  .top-icon-list > li {
    width: 95%;
    margin: 0 auto 20px;
    font-size: 1.3rem;
  }
  .top-icon-list > li:nth-child(2n) {
    margin-right: auto;
  }
}

#sp-nav .sp-info-wrap {
  margin: 15px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#sp-nav .sp-info-wrap a {
  display: block;
  color: #F1110B;
  font-weight: 600;
  font-size: 13px;
  border-bottom: 2px solid #F1110B;
  padding: 4px 0;
}
#sp-nav .sp-info-wrap a:not(:last-of-type) {
  margin-right: 10px;
}

.taishou-block {
  padding: 8px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 10px;
}
.taishou-block.type1 {
  display: block;
}
.taishou-block .lead {
  font-size: 1.3rem;
  padding: 3px 5px;
  font-weight: 600;
  background: #F1110B;
  color: #fff;
  margin-right: 10px;
}
.taishou-block .list-inline {
  flex: 1;
}

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

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

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

.service-box-wrap {
  display: 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 #F1110B;
  border-radius: 20px;
  background: #000;
}
.service-box a .service-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit:cover;";
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  opacity: 0.8;
}
@media screen and (max-width: 639px) {
  .service-box a .service-img {
    height: 250px;
  }
}
.service-box a .service-txt-box {
  position: absolute;
  left: 50%;
  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: #111;
  line-height: 1.4;
  padding: 15px;
  transition: all 0.15s ease-in;
}
.service-box a .service-title .eng {
  font-family: "Montserrat Subrayada", sans-serif;
  font-weight: 700;
  color: #0d5cb1;
  display: block;
}
.service-box a .service-title .ja {
  font-size: 1.15em;
}
.service-box a .btn-more {
  background: #111;
  color: #fff;
  padding: 5px;
  text-align: center;
  width: 100%;
  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: #0d5cb1;
}
.service-box a:hover .service-txt-box .btn-more {
  background: #F1110B;
}

.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%;
  -o-object-fit: cover;
     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: #0d5cb1;
  color: #fff;
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 600;
  padding: 10px 30px 10px 20px;
  border-radius: 15px 0 10px 0;
}
.business-list-title .eng {
  display: block;
  font-family: "Montserrat Subrayada", 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%);
  color: #0d5cb1;
}
.business-list-title:before {
  position: absolute;
  content: "";
  right: 0;
  top: -30px;
  width: 30px;
  height: 30px;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/25687/hem.svg) no-repeat right bottom/contain;
}
@media screen and (max-width: 639px) {
  .business-list-title {
    font-size: 1.4rem;
    text-shadow: none;
    padding-right: 80px;
  }
}

.area-block {
  position: relative;
  max-width: 700px;
  margin: 0 auto 80px;
}
.area-block .area-txt {
  position: absolute;
  right: 0;
  top: 50%;
  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;
  }
}

.top-greet-title {
  padding-top: 80px;
  position: relative;
  text-align: center;
  color: #fff;
}
.top-greet-title:before {
  font-size: 7rem;
  white-space: nowrap;
  font-family: "Montserrat Subrayada", sans-serif;
  font-weight: 700;
  position: absolute;
  content: attr(data-title);
  top: 0;
  left: 50%;
  letter-spacing: 0.1rem;
  line-height: 1;
  opacity: 0.9;
  transform: translateX(-50%);
  display: inline-block;
}
.top-greet-title.type1 {
  color: #222;
}
.top-greet-title.type1:before {
  color: transparent;
  background-image: radial-gradient(circle, #F1110B 0%, #0d5cb1 75%, #0a488b 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.top-greet-title.type2 {
  color: #0d5cb1;
}
.top-greet-title.type2:before {
  color: transparent;
  background: linear-gradient(131deg, #F1110B 0%, #F1110B 10%, #0d5cb1 10%, #0d5cb1 90%, #F1110B 90%, #F1110B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.top-greet-title.intro {
  margin-bottom: 50px;
}
.top-greet-title .img {
  display: block;
  max-width: 750px;
  margin-inline: auto;
}
.top-greet-title .ja {
  display: block;
  font-weight: 600;
  font-size: 2.4rem;
  position: relative;
  z-index: 2;
  color: #111;
}
.top-greet-title.type-greet {
  text-align: left;
}
.top-greet-title.type-greet:before {
  left: 0;
  transform: none;
}
.top-greet-title.type3 {
  text-align: left;
}
.top-greet-title.type3:before {
  left: 0;
  transform: none;
  color: transparent;
  background: linear-gradient(131deg, #F1110B 0%, #F1110B 10%, #fff 10%, #fff 90%, #0d5cb1 90%, #0d5cb1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 1101px) {
  .top-greet-title:before {
    font-size: 5rem;
  }
}
@media screen and (max-width: 1025px) {
  .top-greet-title.intro {
    margin-bottom: 30px;
    padding-top: 50px;
  }
  .top-greet-title.intro::before {
    font-size: 5rem;
  }
  .top-greet-title.intro .ja {
    font-size: 2rem;
  }
}
@media screen and (max-width: 639px) {
  .top-greet-title {
    font-size: 5vw;
    padding-top: 38px;
  }
  .top-greet-title::before {
    font-size: 3rem;
  }
  .top-greet-title.intro {
    margin-bottom: 30px;
    padding-top: 50px;
  }
  .top-greet-title.intro::before {
    font-size: 2.9rem;
  }
  .top-greet-title.intro .ja {
    font-size: 1.58rem;
  }
  .top-greet-title .ja {
    font-size: 1.8rem;
  }
}

.top-greet-box {
  max-width: 900px;
  width: 78%;
  margin-left: auto;
  margin-inline: auto;
  font-weight: 600;
  font-size: 1.1em;
}
.top-greet-box .top-greet-box-inner {
  max-width: 680px;
  margin-left: 5%;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}
.top-greet-box .bg-txt {
  font-size: 3rem;
  line-height: 1.5;
}
.top-greet-box .bg-txt p:first-child {
  margin-top: 30px;
}
@media screen and (max-width: 1025px) {
  .top-greet-box {
    width: 96%;
  }
  .top-greet-box .bg-txt {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 639px) {
  .top-greet-box {
    max-width: 100%;
    padding: 10px 10px 10px;
  }
  .top-greet-box .top-greet-box-inner {
    margin-left: 0;
    line-height: 1.3;
    text-shadow: 0 0 5px #fff;
  }
  .top-greet-box .bg-txt {
    font-size: 1.58rem;
    line-height: 1.4;
    text-shadow: 0 0 5px #fff;
  }
  .top-greet-box .bg-txt p:first-child {
    margin-top: 15px;
  }
}

.company_intro {
  padding: 20px 20px 35px;
  margin-bottom: 30px;
  position: relative;
}
.company_intro:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 75%;
  background: #fff;
  z-index: -1;
}

.product-head-list {
  max-width: 1000px;
  margin-inline: auto;
  gap: 40px 3%;
}
.product-head-list li {
  position: relative;
  display: flex;
  align-items: center;
}
.product-head-list li:not(:last-of-type) {
  margin-bottom: 45px;
}
@media screen and (max-width: 639px) {
  .product-head-list li {
    flex-direction: column;
    justify-content: center;
    padding: 0 10px;
  }
}
.product-head-list li figure {
  position: relative;
  z-index: 2;
  width: 250px;
  box-shadow: rgba(16, 39, 119, 0.1) 0px 7px 29px 0px;
}
.product-head-list li figure img {
  width: 100%;
}
@media screen and (max-width: 639px) {
  .product-head-list li figure {
    width: 200px;
  }
}
.product-head-list li .txt-area {
  flex: 1;
  margin-left: -40px;
  background: #fff;
}
.product-head-list li .txt-area .inner {
  padding: 40px;
  padding-left: 80px;
}
@media screen and (max-width: 639px) {
  .product-head-list li .txt-area {
    width: 100%;
    margin: -30px 0 0;
  }
  .product-head-list li .txt-area .inner {
    padding: 50px 20px 20px;
  }
}

.ceo-wrap {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 639px) {
  .ceo-wrap {
    flex-direction: column;
  }
}
.ceo-wrap .ceo-img {
  width: 45%;
  order: 3;
  padding-right: 40px;
  position: relative;
}
.ceo-wrap .ceo-img figure {
  position: relative;
  display: block;
}
.ceo-wrap .ceo-img figure img {
  box-shadow: rgba(73, 45, 24, 0.2) 4px 48px 60px 0px;
}
.ceo-wrap .ceo-img figure:before {
  position: absolute;
  content: "";
  right: -30px;
  bottom: -30px;
  width: 80%;
  height: 70%;
  z-index: -1;
  background: #0d5cb1;
}
@media screen and (max-width: 639px) {
  .ceo-wrap .ceo-img {
    width: 100%;
    order: 0;
    padding-right: 30px;
  }
  .ceo-wrap .ceo-img figure:before {
    right: -25px;
    bottom: -25px;
  }
}
.ceo-wrap .ceo-txt {
  width: 50%;
  align-self: center;
}
.ceo-wrap .ceo-txt .inner {
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (max-width: 639px) {
  .ceo-wrap .ceo-txt {
    width: 100%;
  }
  .ceo-wrap .ceo-txt .inner {
    padding: 25px;
    margin-top: 25px;
  }
}

.mark-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.mark-list li {
  height: 85px;
  margin-right: 10px;
}
.mark-list li img {
  max-width: initial;
  max-height: 100%;
}

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

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

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

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

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

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

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

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

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

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

.fukidashi {
  position: relative;
  z-index: 2;
  text-align: center;
  margin: -60px auto 30px;
}
.fukidashi.type1 {
  margin-top: 0;
}
.fukidashi span {
  display: inline-block;
  font-size: 2.2rem;
  background: #102777;
  color: #fff;
  padding: 5px 15px;
  font-weight: 600;
  position: relative;
}
.fukidashi span:before {
  position: absolute;
  content: "";
  left: 50%;
  bottom: -13px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 18px 20px 0 20px;
  border-color: #102777 transparent transparent transparent;
  transform: translateX(-50%);
}

@media screen and (max-width: 1101px) {
  .contents-list {
    padding: 0 10px;
  }
}
.contents-list a {
  display: block;
  position: relative;
}
.contents-list a .num {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-size: 9rem;
  position: absolute;
  left: 0.2em;
  top: -40px;
  color: #F1110B;
  z-index: 2;
  line-height: 1;
  padding-left: 0.05em;
  text-shadow: 5px 5px 30px rgba(17, 17, 17, 0.3);
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
  mix-blend-mode: hard-light;
}
.contents-list a:before {
  position: absolute;
  content: "0";
  color: #555;
  left: -25px;
  top: -60px;
  font-size: 8rem;
  z-index: -1;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
}
.contents-list a:after {
  position: absolute;
  content: "";
  right: 11%;
  bottom: -50%;
  width: 100%;
  height: 50%;
  background-image: linear-gradient(to bottom, #ccc 0%, #eee 25%, transparent 40%);
  transform: skew(-25deg);
  z-index: -1;
  opacity: 0.7;
}
.contents-list a figure {
  overflow: hidden;
  position: relative;
}
.contents-list a figure:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, transparent 0%, transparent 60%, rgba(17, 17, 17, 0.9) 100%);
  z-index: 2;
}
.contents-list a .content-list_title {
  position: absolute;
  left: 0;
  bottom: 8px;
  padding-left: 1em;
  color: #fff;
  text-shadow: 0 0 8px rgba(17, 17, 17, 0.1);
  z-index: 3;
}
.contents-list a .content-list_title:before {
  position: relative;
  content: attr(data-title);
  margin-top: -40px;
  display: block;
  font-family: "Montserrat Subrayada", sans-serif;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1;
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
  z-index: 2;
}
.contents-list a .content-list_title .ja {
  font-size: 1.2em;
}
.contents-list a:hover .num {
  color: #ffd803;
}
.contents-list a:hover figure img {
  transform: scale(1.1);
}
.contents-list a:hover .content-list_title:before {
  color: #F1110B;
}

.busi-hd-slash {
  position: relative;
}
.busi-hd-slash:before {
  position: absolute;
  content: "";
  left: -2%;
  top: -25px;
  width: 12%;
  height: 150%;
  background-image: linear-gradient(to bottom, #eee, #ccc, #999);
  transform: translate(30%, -10%) skew(-25deg);
  z-index: -2;
  opacity: 0.4;
  pointer-events: none;
}

.business-head {
  position: relative;
}
.business-head:nth-child(n+2) {
  margin-top: 5%;
}
.business-head:nth-child(2) figure {
  width: 70%;
  height: 450px;
  overflow: hidden;
  margin-right: auto;
  margin-left: 0;
}
.business-head:nth-child(2) .business-head_txt {
  position: relative;
  margin-top: -140px;
  width: 55%;
  margin-right: 60px;
  margin-left: auto;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  padding: 45px 50px;
  font-weight: 600;
}
.business-head:nth-child(2) .business-head_txt .headline {
  position: absolute;
  right: -50px;
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
  top: -140px;
  font-weight: 700;
  color: #f6342f;
  text-shadow: 6px 3px 0 #fff;
  font-size: 12rem;
  letter-spacing: 0.15em;
  opacity: 0.8;
  white-space: nowrap;
}
@media screen and (max-width: 1101px) {
  .business-head:nth-child(2) figure {
    width: 80%;
  }
  .business-head:nth-child(2) .business-head_txt {
    width: 78%;
    margin-right: 30px;
  }
  .business-head:nth-child(2) .business-head_txt .headline {
    right: 0;
    left: auto;
  }
}
@media screen and (max-width: 820px) {
  .business-head:nth-child(2) figure {
    width: 100%;
    height: 300px;
  }
  .business-head:nth-child(2) .business-head_txt {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .business-head:nth-child(2) .business-head_txt .headline {
    font-size: 5rem;
    right: 0;
    left: auto;
    top: -50px;
  }
}
@media screen and (max-width: 639px) {
  .business-head:nth-child(2) .business-head_txt {
    width: 96%;
    padding: 40px 15px 20px;
  }
  .business-head:nth-child(2) .business-head_txt .headline {
    font-size: 3rem;
    top: -28px;
  }
}
.business-head figure {
  width: 70%;
  height: 450px;
  overflow: hidden;
  margin-left: auto;
}
.business-head .business-head_txt {
  position: relative;
  margin-top: -140px;
  width: 55%;
  margin-left: 60px;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  padding: 45px 50px;
  font-weight: 600;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 18px 50px -10px;
}
.business-head .business-head_txt .headline {
  position: absolute;
  right: -50px;
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
  top: -140px;
  font-weight: 700;
  text-shadow: 6px 3px 0 #fff;
  color: #1070d7;
  font-size: 12rem;
  letter-spacing: 0.15em;
  opacity: 0.8;
  white-space: nowrap;
}
@media screen and (max-width: 1101px) {
  .business-head figure {
    width: 80%;
  }
  .business-head .business-head_txt {
    width: 78%;
    margin-left: 30px;
  }
  .business-head .business-head_txt .headline {
    right: auto;
    left: 0;
  }
}
@media screen and (max-width: 820px) {
  .business-head figure {
    width: 100%;
    height: 300px;
  }
  .business-head .business-head_txt {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .business-head .business-head_txt .headline {
    font-size: 5rem;
    right: auto;
    left: 0;
    top: -50px;
  }
}
@media screen and (max-width: 639px) {
  .business-head .business-head_txt {
    width: 96%;
    padding: 40px 15px 20px;
  }
  .business-head .business-head_txt .headline {
    font-size: 3rem;
    top: -28px;
  }
}

.skew-img {
  -webkit-clip-path: polygon(0 30px, 100% 0%, 100% calc(100% - 30px), 0% 100%);
          clip-path: polygon(0 30px, 100% 0%, 100% calc(100% - 30px), 0% 100%);
  overflow: hidden;
}
.skew-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.align-self-center {
  align-self: center;
}

.fixed-big-ttl-l {
  position: relative;
}
.fixed-big-ttl-l::before {
  position: absolute;
  content: attr(data-title);
  left: -0.1em;
  top: -0.1em;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/25687/body.jpg);
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-feature-settings: "pkna";
  font-family: "Montserrat Subrayada", sans-serif;
  font-weight: 700;
  line-height: 0.75;
  letter-spacing: 0.1rem;
  white-space: nowrap;
  font-size: 7vw;
  z-index: 2;
}
@media screen and (max-width: 639px) {
  .fixed-big-ttl-l::before {
    font-size: 13vw;
    top: 0;
  }
}

.fixed-big-ttl-r {
  position: relative;
}
.fixed-big-ttl-r::before {
  position: absolute;
  font-size: 12.5rem;
  white-space: nowrap;
  line-height: 0.75;
  letter-spacing: 0.1rem;
  font-family: "Montserrat Subrayada", sans-serif;
  font-weight: 700;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-feature-settings: "pkna";
  content: attr(data-title);
  top: 0;
  right: 0;
  display: inline-block;
  background: linear-gradient(131deg, #F1110B 0%, #F1110B 10%, #fff 10%, #fff 90%, #0d5cb1 90%, #0d5cb1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.greet-img-box {
  display: flex;
  justify-content: space-between;
  position: absolute;
  right: 20px;
  bottom: -30px;
  width: 70%;
  z-index: 3;
}
.greet-img-box .child {
  width: 31%;
}
@media screen and (max-width: 1025px) {
  .greet-img-box {
    width: 90%;
  }
}

.top_big-ttl {
  font-size: 4rem;
  line-height: 1.3;
}
.top_big-ttl span {
  font-size: 8.5rem;
  font-weight: 700;
  margin-left: -50px;
  margin-right: -35px;
  text-shadow: 1px 1px 0px #faf8f3, -1px 1px 0px #faf8f3, 1px -1px 0px #faf8f3, -1px -1px 0px #faf8f3, 1px 0px 0px #faf8f3, 0px 1px 0px #faf8f3, -1px 0px 0px #faf8f3, 0px -1px 0px #faf8f3;
}
@media screen and (max-width: 1025px) {
  .top_big-ttl {
    font-size: 4rem;
  }
  .top_big-ttl span {
    font-size: 9rem;
  }
}
@media screen and (max-width: 639px) {
  .top_big-ttl {
    font-size: 1.8rem;
    padding: 4px 8px;
  }
  .top_big-ttl span {
    margin-left: -20px;
    margin-right: -10px;
    font-size: 3rem;
  }
}

.top-wrap {
  margin: 0px auto 0;
  position: relative;
}
.top-wrap .inner {
  padding: 100px 20px;
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}
.top-wrap .inner.w-all {
  max-width: 100%;
  margin: 0 auto;
}
.top-wrap .inner.w-right {
  max-width: 100%;
  margin: 0 0 0 auto;
}
.top-wrap .inner .w1200 {
  max-width: 1200px;
  margin: 0 auto;
}
.top-wrap .inner .w900 {
  max-width: 900px;
  margin: 0 4% 0 auto;
}
.top-wrap .txtarea {
  font-size: 1.6rem;
}
.top-wrap .txtarea .main {
  font-size: 2rem;
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
  font-weight: bold;
}
.top-wrap .txtarea .subbox {
  margin-top: 30px;
  background-color: rgb(63, 63, 63);
  padding: 40px;
  color: #fff;
}
.top-wrap .sub-txtarea {
  margin-top: 40px;
}
.top-wrap .sub-txtarea .main {
  text-align: center;
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
  font-weight: bold;
  border-bottom: 2px solid #F1110B;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.top-wrap .sub-txtarea .subtxt {
  text-align: center;
  font-weight: bold;
}
.top-wrap .sub-txtarea .subtxt span {
  font-size: 2rem;
}
.top-wrap .sub-txtarea .txt {
  margin-top: 20px;
}
@media screen and (max-width: 1101px) {
  .top-wrap .txtarea {
    font-size: 1.4rem;
  }
  .top-wrap .txtarea .main {
    font-size: 1.8rem;
  }
  .top-wrap .txtarea .subbox {
    margin-top: 20px;
    padding: 20px;
  }
  .top-wrap .sub-txtarea {
    margin-top: 30px;
  }
  .top-wrap .sub-txtarea .subtxt span {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1025px) {
  .top-wrap .inner {
    padding: 40px 20px 30px;
  }
}
@media screen and (max-width: 639px) {
  .top-wrap .inner {
    padding: 50px 20px;
  }
  .top-wrap .txtarea {
    font-size: 1.3rem;
  }
  .top-wrap .txtarea .main {
    font-size: 1.6rem;
  }
  .top-wrap .txtarea .subbox {
    margin-top: 20px;
    padding: 20px;
  }
  .top-wrap .sub-txtarea {
    margin-top: 30px;
  }
  .top-wrap .sub-txtarea .subtxt span {
    font-size: 1.6rem;
  }
}

.main-catch {
  padding: 80px 0 15px;
  font-weight: bold;
  font-size: 2.1rem;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
  max-width: 800px;
}
.main-catch.type-shadowno {
  text-shadow: none;
}
.main-catch.type-box {
  max-width: 720px;
  margin-left: -14%;
  background-color: #123247;
  padding: 40px 40px 50px 60px;
  font-size: 2rem;
}
.main-catch.type-box .max {
  font-size: 2.6rem;
  padding-bottom: 20px;
}
.main-catch.white {
  color: #fff;
}
.main-catch.t-right {
  text-align: right;
  color: #000;
  text-shadow: 0 0 10px white;
}
.main-catch.t-right span {
  background-color: #fff;
  padding: 5px 20px;
}
.main-catch .eng {
  font-size: 10rem;
  line-height: 1;
  opacity: 0.2;
  color: rgb(255, 255, 255);
  position: absolute;
  top: -60px;
  z-index: -1;
  text-shadow: none;
}
.main-catch .max {
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
  font-size: 4.2rem;
  padding-bottom: 20px;
  letter-spacing: 0.15em;
}
.main-catch .border-txt {
  position: relative;
}
.main-catch .border-txt:before {
  position: absolute;
  content: "";
  width: 30px;
  height: 1px;
  background-color: #F1110B;
  top: -10px;
  left: 0;
}
@media screen and (max-width: ) {
  .main-catch.type-box {
    text-shadow: none;
    max-width: 720px;
    margin-left: 0%;
    background-color: #F1110B;
    padding: 40px 40px 50px 40px;
    font-size: 2rem;
  }
  .main-catch.type-box .max {
    font-size: 2.6rem;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 1101px) {
  .main-catch {
    padding: 0px 0 30px;
  }
}
@media screen and (max-width: 639px) {
  .main-catch {
    font-size: 1.4rem;
  }
  .main-catch.white {
    color: #121212;
    text-shadow: none;
  }
  .main-catch .max {
    font-size: 1.8rem;
    padding-bottom: 20px;
    color: #fff;
    margin-top: -16px;
  }
  .main-catch .eng {
    font-size: 3rem;
    top: -20px;
  }
  .main-catch.type-box {
    max-width: 720px;
    padding: 30px 20px 30px 20px;
    font-size: 1.2rem;
  }
  .main-catch.type-box .max {
    font-size: 1.6rem;
    padding-bottom: 20px;
  }
}

.num-list.type-right {
  margin: 0 -10% 0 auto;
  width: 600px;
}
.num-list li {
  padding-left: 40px;
  position: relative;
}
.num-list li:nth-child(2) {
  margin: 30px 0 0 -35px;
}
.num-list li:nth-child(3) {
  margin: 30px 0 0 -70px;
}
.num-list .num {
  position: absolute;
  font-family: "Montserrat Subrayada", sans-serif;
  font-weight: 700;
  font-size: 6rem;
  line-height: 1;
  top: -21px;
  left: 8px;
  font-weight: bold;
  font-style: italic;
  color: #F1110B;
  z-index: 5;
}
.num-list .main {
  background: #0d5cb1;
  -webkit-clip-path: polygon(20px 0, 100% 0, calc(100% - 20px) 100%, 0 100%);
          clip-path: polygon(20px 0, 100% 0, calc(100% - 20px) 100%, 0 100%);
  padding: 12px 25px 12px 60px;
  font-weight: bold;
  font-size: 2.5rem;
  color: #fff;
}
@media screen and (max-width: 1101px) {
  .num-list.type-right {
    margin: 30px 20px 0 auto;
    width: 400px;
  }
  .num-list li {
    padding-left: 40px;
    position: relative;
  }
  .num-list li:nth-child(2) {
    margin: 30px 0 0 -50px;
  }
  .num-list li:nth-child(3) {
    margin: 30px 0 0 -100px;
  }
  .num-list .num {
    top: -4px;
    left: -20px;
    font-size: 4rem;
  }
  .num-list .main {
    font-weight: bold;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 639px) {
  .num-list.type-right {
    margin: 100px auto 0 auto;
    width: 100%;
  }
  .num-list li {
    padding-left: 25px;
    position: relative;
  }
  .num-list li:nth-child(2) {
    margin: 20px 0 0 0px;
  }
  .num-list li:nth-child(3) {
    margin: 20px 0 0 0px;
  }
  .num-list .num {
    top: 5px;
    left: -10px;
    font-size: 2rem;
  }
  .num-list .main {
    font-weight: bold;
    font-size: 1.4rem;
  }
}

.top-service {
  padding: 80px 0 15px;
  font-weight: bold;
  font-size: 2.2rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1025px) {
  .top-service {
    padding: 10px 0 20px;
  }
}

.tp-sv_ttl {
  font-size: 2rem;
  text-align: center;
  margin: 0 auto 70px;
  font-weight: bold;
  padding: 20px 40px;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.tp-sv_ttl:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 4px;
  bottom: 0px;
  background-color: #000;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.tp-sv_ttl:before {
  position: absolute;
  content: "";
  width: 31px;
  height: 34px;
  bottom: -26px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/25687/box-arrow.png) no-repeat;
  background-size: cover;
}
@media screen and (max-width: 639px) {
  .tp-sv_ttl {
    font-size: 16px;
    margin: 0 auto 40px;
    padding: 10px 40px;
  }
  .tp-sv_ttl:after {
    height: 2px;
  }
  .tp-sv_ttl:before {
    bottom: -28px;
  }
}

.tp-sv_list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  justify-content: flex-end;
}
.tp-sv_list li {
  width: 25%;
  transition: 0.4s;
}
.tp-sv_list li:nth-child(2n) {
  margin: 20px 0 0 -1%;
}
.tp-sv_list li a {
  display: block;
  word-wrap: 100%;
  padding: 50px 20px;
  transform: skewX(-10deg);
  transition: 0.4s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.tp-sv_list li a:before {
  transition: 0.4s;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(132deg, #F1110B 0%, #9b0000 100%);
}
.tp-sv_list li:hover {
  transition: 0.4s;
  transform: translateY(-6px);
}
.tp-sv_list li:hover a {
  transition: 0.4s;
  background: #0d5cb1;
  background: linear-gradient(132deg, #0043a9 0%, #0d5cb1 100%);
}
.tp-sv_list li:hover a:before {
  transition: 0.4s;
  width: 0%;
}
.tp-sv_list .list_title {
  text-align: center;
  color: #fff;
  transform: skewX(10deg);
  font-weight: bold;
}
@media screen and (max-width: 639px) {
  .tp-sv_list {
    width: 98%;
    justify-content: space-between;
  }
  .tp-sv_list li {
    width: 47%;
    transition: 0.4s;
    margin: -3% 0% 10px 2%;
  }
  .tp-sv_list li:nth-child(2n) {
    margin: 11px 0 2px 2%;
  }
  .tp-sv_list li:nth-child(3) {
    margin: -4% 0 0px 2%;
  }
  .tp-sv_list li a {
    display: block;
    word-wrap: 100%;
    padding: 20px 15px;
  }
  .tp-sv_list li .list_title {
    font-size: 14px;
  }
}

.about_column {
  width: 96%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about_column .ab-left {
  width: 40%;
  height: auto;
}
.about_column .ab-left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
.about_column .ab-right {
  width: 60%;
  position: relative;
  padding: 0px 0px 0px 60px;
  z-index: 1;
}
@media screen and (max-width: 1025px) {
  .about_column .ab-left,
  .about_column .ab-right {
    width: 100%;
  }
  .about_column .ab-right {
    padding: 0;
  }
  .about_column .ab-left {
    margin-bottom: 20px;
  }
}

.company_list {
  max-width: 1200px;
  margin: 0px auto 0;
  position: relative;
  z-index: 1;
}
.company_list li {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  margin-bottom: 10px;
}
.company_list .list_title {
  max-width: 170px;
  width: 20%;
  position: relative;
  padding: 8px 20px;
  color: #fff;
  z-index: 1;
  background-color: #F1110B;
  display: block;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.company_list .list_title:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  bottom: 0px;
  right: -10px;
  border-left: 10px solid #F1110B;
  border-top: 10px solid transparent;
  border-bottom: 0px solid transparent;
  z-index: -1;
}
.company_list .list_txt {
  padding: 8px 20px 8px 40px;
  width: 86%;
  background-color: #fff;
  display: block;
  margin: 20px auto 0 -20px;
  border-top: 2px solid #ddd;
  border-left: 2px solid #ddd;
}
.company_list .list_btn {
  display: block;
  background-color: #0d5cb1;
  border-radius: 50px;
  padding: 2px 20px;
  color: #fff;
  margin: 5px auto 10px 0;
  text-align: center;
  font-size: 1.4rem;
  width: 80%;
  max-width: 200px;
  border: 1px solid #0d5cb1;
}
.company_list .list_btn:hover {
  background-color: transparent;
  color: #0d5cb1;
}
@media screen and (max-width: 639px) {
  .company_list .list_title {
    width: 40%;
    padding: 5px 4px;
  }
  .company_list .list_title:before {
    display: none;
  }
  .company_list .list_txt {
    margin: 15px auto 0 -20px;
    padding: 8px 20px 8px 30px;
  }
}

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

/* top box
----------------------------------*/
.top-common {
  margin: 0 auto;
  position: relative;
}
.top-common::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/25687/body.jpg) repeat center top/100% auto;
}
.top-common .inner {
  padding: 100px 40px 100px;
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 639px) {
  .top-common .inner {
    width: calc(100% - 40px);
    padding: 20px;
  }
}

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

.flex {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 639px) {
  .flex {
    display: block;
  }
}

/* recruit 
----------------------------------*/
.bg-slant {
  position: relative;
}
.bg-slant::before {
  position: absolute;
  content: "";
  z-index: -1;
  background-color: #2C4198;
  height: calc(11vw + 1300px);
  transform: rotate(331deg) skew(12deg, 0deg);
  overflow: hidden;
  width: 122vw;
  left: -7vw;
  bottom: 0;
}
.bg-slant::after {
  position: absolute;
  content: "";
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/25687/bg-recruit_triangle-left.png) no-repeat;
  width: 400px;
  height: 690px;
  left: 0;
  bottom: 0;
  background-size: 100% auto;
}
@media screen and (max-width: 1440px) {
  .bg-slant::after {
    background-size: 80% auto;
  }
}
@media screen and (max-width: 1025px) {
  .bg-slant::after {
    background-size: 75% auto;
    width: 250px;
    height: 400px;
    bottom: 15%;
  }
  .bg-slant::before {
    width: 140vw;
    transform: rotate(343deg) skew(12deg, 0deg);
    left: -21vw;
    height: calc(-15vw + 1400px);
  }
}
@media screen and (max-width: 639px) {
  .bg-slant::after {
    display: none;
  }
  .bg-slant::before {
    left: -35vw;
    height: calc(0vw + 1300px);
    transform: rotate(340deg) skew(347deg, 0deg);
    width: 177vw;
  }
}

.overlay-img-wrap {
  position: relative;
  height: 450px;
}
.overlay-img-wrap .overlay-img {
  position: absolute;
  overflow: hidden;
}
.overlay-img-wrap .img01 {
  width: 50%;
  height: 85%;
  left: 0;
  top: 0;
}
.overlay-img-wrap .img02 {
  width: 55%;
  height: 90%;
  bottom: 0;
  right: 0;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}
@media screen and (max-width: 1300px) {
  .overlay-img-wrap {
    height: 300px;
  }
}
@media screen and (max-width: 639px) {
  .overlay-img-wrap {
    height: 150px;
  }
}
@media screen and (max-width: 320px) {
  .overlay-img-wrap {
    height: 130px;
  }
}

.top-recruit-box {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 50px auto 0;
  line-height: 2;
}
@media screen and (max-width: 1025px) {
  .top-recruit-box {
    max-width: 580px;
    margin-top: 30px;
  }
}

.rec-bgi-txt {
  margin-bottom: 30px;
}
.rec-bgi-txt .top_big-ttl span {
  margin-right: -60px;
  font-size: 14rem;
}
.rec-bgi-txt .top_big-ttl:first-child {
  text-align: left;
  margin-bottom: 10px;
}
.rec-bgi-txt .top_big-ttl:nth-child(2) {
  text-align: right;
  margin-bottom: 30px;
}
.rec-bgi-txt .tb-rec1 {
  text-shadow: none;
}
.rec-bgi-txt .tb-rec2 {
  color: #ffbd03;
  text-shadow: none;
}
@media screen and (max-width: 1025px) {
  .rec-bgi-txt {
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
  }
  .rec-bgi-txt .top_big-ttl {
    line-height: 1.2;
    text-align: left !important;
  }
  .rec-bgi-txt .top_big-ttl span {
    font-size: 9rem;
    margin-right: -35px;
  }
  .rec-bgi-txt .top_big-ttl:nth-child(2) {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 639px) {
  .rec-bgi-txt .top_big-ttl span {
    font-size: 3.4rem;
    margin-left: -20px;
    margin-right: -10px;
  }
}

@media screen and (max-width: 1025px) {
  .rec-top-main-txt {
    text-align: left;
    text-shadow: 0 0 4px #000;
  }
  .rec-top-main-txt .pcbr {
    display: none;
  }
}

.bg-staff-fixed {
  position: relative;
  background: rgba(0, 73, 183, 0.3019607843);
}
.bg-staff-fixed::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/25687/bg-top-staff.jpg) no-repeat;
  background-size: cover;
  background-attachment: fixed;
  z-index: -1;
}
.bg-staff-fixed .staff-inner {
  position: relative;
}
.bg-staff-fixed .staff-inner::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 70%;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  -webkit-clip-path: polygon(0 0, 100% 45%, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 45%, 100% 100%, 0% 100%);
  mix-blend-mode: hard-light;
}

.bnr-top-list {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 1101px) {
  .bnr-top-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 639px) {
  .bnr-top-list {
    grid-template-columns: 1fr;
    gap: 30px 0;
  }
}
.bnr-top-list li {
  grid-area: auto;
  position: relative;
}
.bnr-top-list li .bnr-img-area {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  display: block;
  background: #0d5cb1;
}
.bnr-top-list li .bnr-img-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  opacity: 0.45;
}
@media screen and (max-width: 1025px) {
  .bnr-top-list li .bnr-img-area {
    height: 150px;
  }
}
.bnr-top-list li:hover .bnr-img-area img {
  transition: ease 0.5s all;
  opacity: 0.25;
  filter: blur(5px);
  transform: scale(1.1);
}
.bnr-top-list li .text-area {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 90%;
}
.bnr-top-list li .text-area h3 {
  margin-bottom: 40px;
  line-height: 1.2;
  color: #fefefe;
  display: block;
  font-size: 1.8rem;
  text-align: center;
}
.bnr-top-list li .text-area h3 span {
  font-family: "Montserrat Subrayada", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  display: block;
  margin-bottom: 10px;
}
@media screen and (max-width: 1025px) {
  .bnr-top-list li .text-area h3 {
    margin-bottom: 0px;
    font-size: 1.6rem;
  }
  .bnr-top-list li .text-area h3 span {
    font-size: 1.2rem;
  }
}
.bnr-top-list li .text-area .txt {
  font-size: 1.3rem;
  width: 90%;
  margin: 0 auto;
  color: #fefefe;
}
.bnr-top-list li .text-area .btn {
  font-size: 12px;
  letter-spacing: 0.11em;
  line-height: 15px;
  color: #0d5cb1;
  text-transform: uppercase;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fefefe;
  width: 200px;
  padding: 10px;
  margin: 35px auto 15px;
  border-radius: 50px;
  font-weight: 600;
}
.bnr-top-list li .text-area .btn::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #0d5cb1;
  border-right: 2px solid #0d5cb1;
  transform: rotate(45deg);
  margin-left: 5px;
}
@media screen and (max-width: 639px) {
  .bnr-top-list li .text-area .btn {
    margin: 15px auto 0;
  }
}

.recruit-greet {
  font-size: 2.8rem;
  line-height: 1.5;
  font-weight: 600;
  text-shadow: 0 0 6px rgba(73, 45, 24, 0.2);
  color: #0d5cb1;
}
@media screen and (max-width: 1025px) {
  .recruit-greet {
    text-align: center;
  }
}
@media screen and (max-width: 639px) {
  .recruit-greet {
    text-align: left;
    font-size: 1.8rem;
  }
}

.recruit-bnr {
  transition: 0.2s all ease;
}
.recruit-bnr:hover {
  opacity: 0.8;
  transform: translateY(-5px);
}

#top_intro {
  overflow: hidden;
}

.bg-naname {
  position: relative;
}
.bg-naname::before {
  position: absolute;
  content: "";
  left: -30px;
  top: -90%;
  width: 20%;
  height: 190%;
  background: #b50500;
  transform: translate(0, 0) skew(45deg);
  opacity: 0.7;
  z-index: 0;
}
.bg-naname::after {
  position: absolute;
  content: "";
  left: -5%;
  top: 11%;
  width: 14%;
  height: 40%;
  background: #b50500;
  transform: translate(0, 0) skew(45deg);
  opacity: 0.7;
  z-index: 0;
}

.about-list .about-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 80px;
  align-items: end;
}
.about-list .about-box:last-child {
  margin-bottom: 0;
}
.about-list .about-box:nth-child(even) {
  flex-direction: row-reverse;
}
.about-list .about-box:nth-child(even) .about-txt {
  margin-right: 0;
  margin-left: -13.87%;
  background-color: #0d5cb1;
  color: #fff;
}
.about-list .about-box .about-txt {
  font-weight: 600;
  background-color: #fff;
  position: relative;
  padding: 60px 4.11%;
  width: 48.81%;
  margin-right: -13.87%;
  z-index: 1;
  margin-top: 40px;
  box-shadow: 0 0 1.5rem rgba(44, 65, 152, 0.2);
}
.about-list .about-box .about-img {
  width: 64.69%;
  position: relative;
  height: 460px;
}
.about-list .about-box .about-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  position: absolute;
  vertical-align: middle;
  box-shadow: 0 0 1.5rem rgba(44, 65, 152, 0.2);
}
@media screen and (max-width: 1025px) {
  .about-list .about-box .about-txt {
    width: 100%;
    margin-right: 0;
    display: block;
    padding: 25px 5.11% 25px;
    margin-top: 0;
  }
  .about-list .about-box .about-img {
    width: 100%;
    height: 250px;
  }
}
@media screen and (max-width: 639px) {
  .about-list .about-box {
    margin-bottom: 50px;
  }
  .about-list .about-box .about-img {
    width: 100%;
    height: 220px;
  }
}

/* category_tab
----------------------------------*/
.innerB {
  width: 100%;
  margin: auto;
  background: #fff;
  margin-top: 50px;
  box-sizing: border-box;
}
.innerB.innerB_news {
  border-top: none;
}
@media screen and (max-width: 639px) {
  .innerB {
    padding: 30px 10px;
  }
}

.category_tab {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 50px auto 0;
  position: relative;
  z-index: 1;
}
.category_tab li {
  width: 31%;
  margin: 0 0.5%;
  cursor: pointer;
}
.category_tab li:last-child {
  margin-right: 20px;
}
.category_tab li.active {
  color: #555;
}
.category_tab li.active .inner {
  transform: scale(1);
  background-color: #e6f3ef;
  border: 1px solid #F1110B;
  position: relative;
}
.category_tab li.active .inner:after {
  position: absolute;
  content: "";
  width: 10px;
  height: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -20px;
  border-top: 20px solid #F1110B;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}
.category_tab li .inner {
  background-color: #fff;
  border: 1px solid #fff;
  transform: scale(0.9);
  transition: 0.4s;
  z-index: 1;
  position: relative;
  display: block;
  padding: 20px;
  z-index: 1;
  border-radius: 10px;
}
.category_tab li .inner .category_icon {
  text-align: center;
  margin: 0 auto;
}
.category_tab li .inner .category_icon img {
  width: 100%;
  height: 51px;
  -o-object-fit: contain;
     object-fit: contain;
}
.category_tab li .inner p {
  font-weight: 600;
  font-size: 1.8rem;
}
@media screen and (max-width: 1025px) {
  .category_tab li {
    margin-left: 2px;
    width: 31%;
  }
  .category_tab li:nth-child(3n) {
    margin-right: 0px;
  }
}
@media screen and (max-width: 639px) {
  .category_tab {
    margin: 0 auto;
  }
  .category_tab li {
    width: 100%;
    margin-bottom: 10px;
  }
  .category_tab li:last-child {
    margin-right: 2px;
  }
  .category_tab li .inner {
    padding: 10px;
    border: 1px solid #f5f5f5;
  }
  .category_tab li .inner .category_icon {
    margin: auto;
  }
  .category_tab li .inner .category_icon img {
    width: 100%;
    height: 25px;
  }
  .category_tab li .inner p {
    font-size: 0.93em;
  }
  .category_tab li.active {
    color: #555;
  }
  .category_tab li.active:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 310px;
    top: 0px;
    left: 0%;
  }
  .category_tab li.active .inner {
    transform: scale(1);
    background-color: #e6f3ef;
    border: 1px solid #F1110B;
    position: relative;
  }
  .category_tab li.active .inner:after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    left: 50%;
    right: auto;
    margin: 0 auto;
    bottom: -50%;
    transform: translateX(-50%);
    border-right: 10px solid transparent;
    border-top: 10px solid #F1110B;
    border-bottom: 10px solid transparent;
  }
  .category_tab li.active .inner .category_icon img {
    width: 100%;
    height: 25px;
  }
}

/*rental__list*/
.rental__list {
  display: flex;
  flex-wrap: wrap;
  margin: 50px auto;
}
.rental__list li {
  width: 23%;
  margin: 0 1% 3%;
  padding: 40px 20px;
  background-color: #fff;
  border-radius: 40px;
  position: relative;
  transition: 0.4s;
}
.rental__list li:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  border: 2px solid #dbe0e5;
  border-radius: 40px;
  transform: rotate(-1deg);
  transition: 0.4s;
  z-index: 0;
}
.rental__list li:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  border: 2px solid #ccc;
  border-radius: 40px;
  transform: rotate(1deg);
  transition: 0.4s;
  z-index: 0;
}
.rental__list li:hover {
  background-color: white;
}
.rental__list li:hover:before {
  transform: rotate(0deg);
  transition: 0.4s;
}
.rental__list li:hover:after {
  transform: rotate(0deg);
  transition: 0.4s;
}
.rental__list .list__icon {
  width: 89px;
  height: 88px;
  max-width: 100%;
  margin: 0 auto 15px;
  text-align: center;
}
.rental__list .list__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.rental__list .list__title {
  font-size: 1.8rem;
  line-height: 1.8;
  color: #F1110B;
  margin-bottom: 10px;
  text-wrap: balance;
  word-break: auto-phrase;
  border-bottom: 1px solid #0d5cb1;
  font-weight: 600;
  text-align: center;
}
.rental__list .list_subtxt {
  font-size: 0.9em;
}
@media all and (max-width: 1480px), all and (max-width: 1100px) {
  .rental__list {
    justify-content: center;
  }
  .rental__list li {
    width: 23%;
    padding: 40px 15px;
  }
  .rental__list .list__title {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1025px) {
  .rental__list {
    justify-content: center;
    margin-top: 0;
  }
  .rental__list li {
    width: 48%;
    padding: 40px 15px;
    border-radius: 20px;
  }
  .rental__list:nth-child(2) {
    margin-left: 1%;
  }
  .rental__list .list__icon {
    width: 80%;
    max-width: 120px;
    margin: 0 auto;
  }
  .rental__list .list__title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 639px) {
  .rental__list {
    justify-content: center;
    margin-top: 0;
  }
  .rental__list li {
    padding: 20px 10px;
    border-radius: 20px;
    margin: 0 auto 20px;
  }
  .rental__list li:nth-child(2) {
    margin-left: auto;
    margin-right: auto;
  }
  .rental__list li:before, .rental__list li:after {
    border-radius: 20px;
  }
  .rental__list .list__icon {
    width: 80%;
    max-width: 120px;
    margin: 0 auto 10px;
    height: 80px;
  }
  .rental__list .list__title {
    font-size: 14px;
  }
  .rental__list .list__subtxt {
    font-size: 12px;
  }
  .rental__list .btn {
    margin: 20px auto 0;
  }
}