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

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

#wrapper {
  overflow: hidden;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

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

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

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

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

.bold {
  font-weight: 600;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

/* 1. コンテンツの初期状態（幕が通り過ぎるまで隠す） */
body > *:not(.splashbg) {
  opacity: 0;
  visibility: hidden;
}

/* 2. アニメーション中盤以降でコンテンツを表示 */
body.is-visible > *:not(.splashbg) {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

/* -----------------------------------------
   背景の幕（最初は画面の上端の外側に配置）
------------------------------------------- */
.splashbg {
  position: fixed;
  top: -100%; /* 画面のすぐ上に待機 */
  left: 0;
  width: 100%;
  height: 100vh;
  background: #272727;
  z-index: 999999;
}

/* 幕が上から下へ通り過ぎるアニメーション */
.appear .splashbg {
  -webkit-animation: PageAnimePass 1.5s cubic-bezier(0.65, 0, 0.35, 1) forwards;
          animation: PageAnimePass 1.5s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@-webkit-keyframes PageAnimePass {
  0% {
    top: -100%;
  }
  50% {
    top: 0; /* 画面を完全に覆った状態 */
  }
  100% {
    top: 100%; /* そのまま下へ抜ける */
  }
}

@keyframes PageAnimePass {
  0% {
    top: -100%;
  }
  50% {
    top: 0; /* 画面を完全に覆った状態 */
  }
  100% {
    top: 100%; /* そのまま下へ抜ける */
  }
}
.bgextend {
  -webkit-animation-name: bgextendAnimeBase;
  animation-name: bgextendAnimeBase;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden;
  /*　はみ出た色要素を隠す　*/
  opacity: 0;
}

@-webkit-keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*--------- 左から --------*/
.bgLRextend::before {
  -webkit-animation-name: bgLRextendAnime;
  animation-name: bgLRextendAnime;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #808080, #272727);
  /*伸びる背景色の設定*/
}

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

@-webkit-keyframes bgLRextendAnime {
  0% {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: right;
    transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
}
@keyframes bgLRextendAnime {
  0% {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: right;
    transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
}
/*--------- 右から --------*/
.bgRLextend::before {
  -webkit-animation-name: bgRLextendAnime;
  animation-name: bgRLextendAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #df9445;
  /*伸びる背景色の設定*/
}

@-webkit-keyframes bgRLextendAnime {
  0% {
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: left;
    transform-origin: left;
  }
  100% {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
}
@keyframes bgRLextendAnime {
  0% {
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: left;
    transform-origin: left;
  }
  100% {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
}
/*--------- 下から --------*/
.bgDUextend::before {
  -webkit-animation-name: bgDUextendAnime;
  animation-name: bgDUextendAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #df9445;
  /*伸びる背景色の設定*/
}

@-webkit-keyframes bgDUextendAnime {
  0% {
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }
  50% {
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
  50.001% {
    -webkit-transform-origin: top;
    transform-origin: top;
  }
  100% {
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }
}
@keyframes bgDUextendAnime {
  0% {
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }
  50% {
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
  50.001% {
    -webkit-transform-origin: top;
    transform-origin: top;
  }
  100% {
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }
}
/*--------- 上から --------*/
.bgUDextend::before {
  -webkit-animation-name: bgUDextendAnime;
  animation-name: bgUDextendAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #666;
  /*伸びる背景色の設定*/
}

@-webkit-keyframes bgUDextendAnime {
  0% {
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }
  50% {
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
  50.001% {
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
  100% {
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }
}
@keyframes bgUDextendAnime {
  0% {
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }
  50% {
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
  50.001% {
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
  100% {
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }
}
/* header
----------------------------------*/
@-webkit-keyframes hd-scrolled {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes hd-scrolled {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
.gradient {
  background: linear-gradient(45deg, #ccc, #102777, #eee);
  background-size: 600% 600%;
  -webkit-animation: anim-gradient 10s ease infinite;
          animation: anim-gradient 10s ease infinite;
}

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

@keyframes anim-gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
#l-header {
  width: 100%;
  position: absolute;
  z-index: 200;
  top: 0;
  left: 0;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  background: #fefefe;
}
#l-header.is-fixed {
  position: fixed;
  background: #fefefe;
}
#l-header.is-fixed .inner #logo .logo1 {
  display: none;
}
#l-header.is-fixed .inner #logo .logo2 {
  display: block;
}
#l-header.is-fixed .head-right .head-right_contact .head-right-sns a {
  color: #808080;
}
#l-header .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 98%;
  min-width: 1000px;
  margin: 0 auto;
  padding: 18px 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1025px) {
  #l-header .inner {
    min-width: initial;
  }
}
#l-header .inner #logo {
  width: 300px;
}
#l-header .inner .logo2 {
  display: none;
}
#l-header .head-right {
  margin-left: auto;
  padding-top: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 35px;
}
#l-header .head-right_contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
}
@media screen and (max-width: 639px) {
  #l-header .head-right_contact {
    display: none;
  }
}
#l-header .head-right-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-left: 40px;
}
#l-header .head-right-sns a {
  color: #fefefe;
  font-size: 3rem;
}
#l-header .head-right_tel a {
  background: transparent;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.1;
  position: relative;
  font-family: "Oswald", sans-serif;
  font-weight: 900;
  border-radius: 30px;
  padding: 5px 20px;
  color: #fefefe;
  background: #808080;
  background: linear-gradient(135deg, #808080, #272727);
}
#l-header .head-right_tel a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 6px;
  font-size: 0.9em;
}
#l-header .head-right_tel a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1025px) {
  #l-header .head-right_tel {
    display: none;
  }
}
#l-header .head-right_mail {
  margin-top: -20px;
}
#l-header .head-right_mail a {
  display: block;
  position: relative;
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
}
#l-header .head-right_mail {
  margin-left: 15px;
}
#l-header .head-right_mail a {
  padding: 18px 10px 8px 35px;
  background: #808080;
  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;
}
#header_nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}
#header_nav ul li {
  position: relative;
}
#header_nav ul li a {
  display: block;
  color: #222020;
  position: relative;
  line-height: 1.5;
  padding: 10px 0;
  font-weight: 700;
}
#header_nav ul li a span {
  display: block;
  font-size: 2.5rem;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  color: inherit;
  position: relative;
  letter-spacing: 0.07em;
}
#header_nav ul li a:after {
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  background: #272727;
  left: 0;
  bottom: -2px;
  -webkit-transition: 0.3s width ease-in;
  transition: 0.3s width ease-in;
}
#header_nav ul li a:hover:after, #header_nav ul li a.active:after {
  width: 100%;
}
.is-fixed #header_nav ul li a {
  color: #333;
}
.is-fixed #header_nav ul li a span {
  color: #333;
}
.is-fixed #header_nav ul li a:hover {
  color: #808080;
}

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

/* swiper
----------------------------------*/
@-webkit-keyframes zoom-in {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.12);
            transform: scale(1.12);
  }
}
@keyframes zoom-in {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.12);
            transform: scale(1.12);
  }
}
#catch {
  z-index: 50;
  position: absolute;
  left: 0%;
  bottom: 5%;
  z-index: 100;
}
#catch .catch-txt {
  color: #fefefe;
  font-size: 4.8rem;
  padding-left: 7vw;
  margin-top: 20px;
  font-weight: normal;
  white-space: nowrap;
}
#catch .catch-txt .sub_ttl {
  display: block;
  font-size: 6.5rem;
  margin-bottom: 30px;
}
#catch .catch-txt .sub_ttl .counter {
  padding: 0 5px;
  font-size: 1.5em;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-weight: bold;
}
#catch .catch-txt .sub_ttl .mini_txt {
  display: block;
  font-size: 2rem;
}
@media screen and (max-width: 1101px) {
  #catch {
    width: 40%;
  }
}
@media screen and (max-width: 1025px) {
  #catch {
    width: 50%;
  }
  #catch .catch-txt {
    padding-left: 5vw;
    font-size: 3.5rem;
  }
  #catch .catch-txt .sub_ttl {
    font-size: 4.5rem;
    margin-bottom: 20px;
  }
  #catch .catch-txt .sub_ttl .mini_txt {
    display: block;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 639px) {
  #catch {
    width: 75%;
  }
  #catch .catch-txt {
    font-size: 1.6rem;
    padding-left: 10px;
  }
  #catch .catch-txt .sub_ttl {
    font-size: 2.3rem;
    margin-bottom: 10px;
  }
  #catch .catch-txt .sub_ttl .mini_txt {
    font-size: 1.3rem;
  }
}

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

#slideshow {
  position: relative;
  margin-inline: auto;
  overflow: hidden;
}
#slideshow:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #222020;
  opacity: 0.2;
  z-index: 2;
}
#slideshow .swiper-slide {
  position: relative;
}
#slideshow .swiper-slide:before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  right: 0;
  top: 0;
  background-position: 50%;
  background-size: cover;
  z-index: -1;
}
#slideshow .swiper-slide.slide1:before {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26842/1.jpg);
  background-position: 65% 50%;
}
#slideshow .swiper-slide.slide2:before {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26842/2.jpg);
  background-position: 50%;
}
#slideshow .slide-img {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100vh;
}
#slideshow .slide-img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 639px) {
  #slideshow .slide-img {
    height: 90vh;
  }
}

#slide-wrap {
  position: relative;
}
#slide-wrap:before, #slide-wrap:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(40% + 20px);
  z-index: 10;
}
#slide-wrap:before {
  clip-path: polygon(0 0, 100% 90%, 100% 100%, 0 100%);
  background-color: rgba(128, 128, 128, 0.7);
}

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

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

@keyframes scroll-point {
  0% {
    bottom: 0;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  50% {
    top: 180px;
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    top: 210px;
    opacity: 0;
  }
}
/* contact_bnr
----------------------------------*/
.contact_bnr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
.contact_bnr > li:first-child {
  margin-right: 40px;
}
@media screen and (max-width: 639px) {
  .contact_bnr > li:first-child {
    margin-right: auto;
  }
}
@media screen and (max-width: 639px) {
  .contact_bnr > li {
    width: 100%;
    margin: 0 auto 10px;
  }
}
.contact_bnr > li .bnr_tel {
  white-space: nowrap;
  position: relative;
  padding: 5px 0;
  color: #fff;
  font-size: 4.5rem;
  font-weight: 600;
  letter-spacing: 0;
  font-family: "Oswald", sans-serif;
  font-weight: 900;
}
.contact_bnr > li .bnr_tel:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
  font-size: 0.6em;
}
.contact_bnr > li .bnr_tel:hover {
  opacity: 0.4;
}
@media screen and (max-width: 639px) {
  .contact_bnr > li .bnr_tel {
    font-size: 2.4rem;
  }
}
.contact_bnr > li .bnr_mobile:before {
  font-family: "Font Awesome 5 Free";
  content: "\f3cd";
  font-weight: 900;
}
.contact_bnr > li .bnr_fax {
  background: #fdfdfd;
  color: #808080;
}
.contact_bnr > li .bnr_fax:before {
  font-family: "Font Awesome 5 Free";
  content: "\f1ac";
  font-weight: 900;
}
.contact_bnr > li .bnr_mail {
  width: 300px;
  font-size: 1.8rem;
  padding: 15px 0;
  color: #222020;
  background: #fff;
}
.contact_bnr > li .bnr_mail:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
}
@media screen and (max-width: 639px) {
  .contact_bnr > li .bnr_mail {
    font-size: 1.6rem;
    padding: 10px;
    width: 100%;
  }
}
.contact_bnr > li .bnr_mail:hover {
  opacity: 0.4;
}
.contact_bnr > li a,
.contact_bnr > li span {
  display: block;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.2rem;
  padding: 12px 10px;
}
.contact_bnr > li a:before,
.contact_bnr > li span:before {
  margin-right: 5px;
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 639px) {
  .contact_bnr > li a,
  .contact_bnr > li span {
    margin: 0 auto;
    white-space: nowrap;
    padding: 10px 0;
    width: 100%;
  }
}

/* footer
----------------------------------*/
.footer-contact {
  position: relative;
}
.footer-contact .inner-box {
  width: 97%;
  margin: 40px auto;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid #bbbbbb;
  border-bottom: 1px solid #bbbbbb;
}
.footer-contact .inner-box .child {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px;
}
@media screen and (max-width: 1101px) {
  .footer-contact .inner-box .child {
    padding: 10px;
  }
}
@media screen and (max-width: 1025px) {
  .footer-contact .inner-box .child {
    width: 50%;
    margin-top: 20px;
  }
}
@media screen and (max-width: 639px) {
  .footer-contact .inner-box .child {
    width: 100%;
  }
}
@media screen and (max-width: 1025px) {
  .footer-contact .inner-box .child.top {
    width: 100%;
    border-right: none !important;
    border-bottom: 1px solid #bbb;
    padding-bottom: 30px;
    padding-top: 0 !important;
  }
}
@media screen and (max-width: 639px) {
  .footer-contact .inner-box .child.top {
    margin-top: 0;
  }
}
.footer-contact .inner-box .child i {
  font-size: 3.5rem;
}
@media screen and (max-width: 639px) {
  .footer-contact .inner-box .child i {
    font-size: 2rem;
  }
}
.footer-contact .inner-box .child.ttl, .footer-contact .inner-box .child.tel {
  border-right: 1px solid #bbbbbb;
}
@media screen and (max-width: 639px) {
  .footer-contact .inner-box .child.ttl, .footer-contact .inner-box .child.tel {
    border-right: none;
    font-size: 16px;
  }
}
.footer-contact .inner-box .child.ttl .footer-title {
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 639px) {
  .footer-contact .inner-box .child.ttl .footer-title {
    margin-bottom: 10px;
    font-size: 16px;
  }
}
.footer-contact .inner-box .child.ttl .footer-title .eng {
  font-size: 4.5rem;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 1025px) {
  .footer-contact .inner-box .child.ttl .footer-title .eng {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 639px) {
  .footer-contact .inner-box .child.ttl .footer-title .eng {
    font-size: 2.2rem;
  }
}
.footer-contact .inner-box .child.ttl p {
  text-align: center;
}
@media screen and (max-width: 1101px) {
  .footer-contact .inner-box .child.ttl p {
    font-size: 12px;
  }
}
.footer-contact .inner-box .child.tel {
  text-align: center;
}
@media screen and (max-width: 639px) {
  .footer-contact .inner-box .child.tel {
    border-bottom: 1px solid #bbbbbb;
    padding-bottom: 30px;
  }
}
.footer-contact .inner-box .child.tel p:first-child {
  margin-bottom: 20px;
}
@media screen and (max-width: 639px) {
  .footer-contact .inner-box .child.tel p:first-child {
    margin-bottom: 10px;
  }
}
.footer-contact .inner-box .child.tel p:nth-child(2) {
  margin-bottom: 10px;
}
.footer-contact .inner-box .child.tel a {
  color: #232323;
  display: block;
}
.footer-contact .inner-box .child.tel a span {
  color: #222020;
  font-size: 3rem;
  line-height: 1;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  font-family: "Oswald", sans-serif;
  font-weight: 900;
}
@media screen and (max-width: 639px) {
  .footer-contact .inner-box .child.tel a span {
    font-size: 1.5rem;
  }
}
.footer-contact .inner-box .child.tel a span:hover {
  color: #272727;
}
.footer-contact .inner-box .child.mail {
  text-align: center;
}
@media screen and (max-width: 639px) {
  .footer-contact .inner-box .child.mail {
    font-size: 16px;
  }
}
.footer-contact .inner-box .child.mail p:first-child {
  margin-bottom: 20px;
}
@media screen and (max-width: 639px) {
  .footer-contact .inner-box .child.mail p:first-child {
    margin-bottom: 10px;
  }
}
.footer-contact .inner-box .child.mail p:nth-child(2) {
  margin-bottom: 10px;
}
.footer-contact .inner-box .child.mail .bnr_mail {
  padding: 15px 35px;
  border: 1px solid #222020;
  border-radius: 5px;
  font-weight: bold;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  width: 300px;
  display: block;
  color: #222020;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 639px) {
  .footer-contact .inner-box .child.mail .bnr_mail {
    width: 200px;
  }
}
.footer-contact .inner-box .child.mail .bnr_mail:hover {
  background: #222020;
  color: #fefefe;
}
.footer-contact .inner-box .left {
  width: 30%;
  position: relative;
}
.footer-contact .inner-box .left .footer-title {
  text-align: center;
  color: #fff;
  font-size: 2.2rem;
}
.footer-contact .inner-box .left .footer-title span {
  font-size: 5.4rem;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
  -webkit-text-fill-color: transparent;
}
.footer-contact .inner-box .right {
  width: 65%;
}
@media screen and (max-width: 1025px) {
  .footer-contact .inner-box {
    padding: 20px 10px;
  }
  .footer-contact .inner-box .left .footer-title {
    font-size: 1.8rem;
  }
  .footer-contact .inner-box .left .footer-title span {
    font-size: 4.2rem;
  }
}
@media screen and (max-width: 639px) {
  .footer-contact .inner-box .left {
    width: 100%;
    margin: 0 auto 30px;
  }
  .footer-contact .inner-box .left .footer-title {
    font-size: 1.6rem;
  }
  .footer-contact .inner-box .left .footer-title span {
    font-size: 3.6rem;
  }
  .footer-contact .inner-box .right {
    width: 100%;
  }
}

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

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

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

.footer-sns {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
.footer-sns a {
  color: #fefefe;
  font-size: 4rem;
  line-height: 1;
}

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

/* footer_navi
----------------------------------*/
.footer_navi {
  margin: 35px auto;
}
@media screen and (max-width: 1025px) {
  .footer_navi {
    display: none;
  }
}
.footer_navi ul {
  margin: 0 auto;
  width: 360px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer_navi ul li {
  width: 48%;
}
.footer_navi ul li a {
  position: relative;
  display: block;
  color: #fefefe;
  font-size: 1.3rem;
  line-height: 2;
}
@media screen and (max-width: 1101px) {
  .footer_navi ul li a {
    font-size: 1.2rem;
  }
}
.footer_navi ul li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: 900;
  margin-right: 10px;
  color: rgba(254, 254, 254, 0.3);
}
.footer_navi ul li a span {
  display: none;
}
.footer_navi ul li a:hover {
  opacity: 0.6;
  margin-left: 5px;
  color: #ffd803;
}
.footer_navi ul li .dropdown {
  display: none;
}
.footer_navi ul li .dropdown li {
  width: 100%;
  margin: 0;
}
.footer_navi ul li .dropdown a {
  position: relative;
  font-size: 1.2rem;
  letter-spacing: 0;
  padding: 4px 0 4px 1.3em;
  line-height: 1.3;
}
.footer_navi ul li .dropdown a:before {
  position: absolute;
  content: "・";
  margin-right: 5px;
  color: #808080;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.flogo {
  margin: 0 auto 25px;
  max-width: 320px;
  text-align: center;
}
.flogo img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
@media screen and (max-width: 1025px) {
  .flogo {
    margin: 0 auto 20px;
  }
}
@media screen and (max-width: 639px) {
  .flogo {
    width: 50%;
  }
}

.address {
  text-align: center;
  color: #fefefe;
}
.address .address_inner span {
  background: #fefefe;
  padding: 1px 20px;
  color: #222020;
  display: block;
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 1025px) {
  .address .address_inner span {
    width: 40%;
  }
}
@media screen and (max-width: 639px) {
  .address .address_inner span {
    width: 60%;
  }
}

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

/* contents
----------------------------------*/
.single0 {
  margin: 0 auto;
  padding: 120px 0;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1300px) {
  .single0 {
    padding: 120px 10px;
  }
}
.single0.type3 {
  padding: 0;
}

.single {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 0;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1300px) {
  .single {
    padding: 120px 10px;
  }
}

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

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

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

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

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

.lsingle {
  float: left;
}

.rsingle {
  float: right;
}

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

.mbox2 {
  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;
}
.small-box.type1 {
  max-width: 1000px;
}

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

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

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

#main {
  float: left;
  width: 76%;
}
#main .mbox {
  min-height: 300px;
}
@media screen and (max-width: 1025px) {
  #main .mbox {
    min-height: initial;
  }
}
@media screen and (max-width: 1025px) {
  #main {
    float: none;
    width: 100%;
  }
}
#main .blog-wrap > li {
  width: calc((100% - 15px) / 3);
}
@media screen and (max-width: 639px) {
  #main .blog-wrap > li {
    width: calc((100% - 5px) / 2);
    padding: 0.5em;
  }
}

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

/* mtitle
----------------------------------*/
.mtitle {
  position: relative;
  margin-bottom: 40px;
}
.mtitle .eng,
.mtitle .eng2 {
  color: #272727;
  position: relative;
  z-index: 2;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 5rem;
}
.mtitle .ja {
  position: relative;
  z-index: 2;
  font-size: 1em;
  color: #222020;
  display: block;
  font-weight: 500;
}
.mtitle.white .eng,
.mtitle.white .eng2,
.mtitle.white .ja {
  color: #fff;
}
@media screen and (max-width: 639px) {
  .mtitle {
    margin-bottom: 0;
  }
  .mtitle .eng,
  .mtitle .eng2 {
    font-size: 3rem;
  }
  .mtitle .ja {
    font-size: 1.3rem;
  }
}

.mtitle2 {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
}
.mtitle2:before {
  content: "";
  width: 20px;
  height: 1px;
  background: #ccc;
  display: inline-block;
  margin: 0 1em;
}
.mtitle2 span {
  position: relative;
  z-index: 2;
}
.mtitle2 .eng {
  font-size: 4rem;
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  color: #808080;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}
.mtitle2 .ja {
  font-size: 2.8rem;
  color: #333;
}
@media screen and (max-width: 639px) {
  .mtitle2 {
    margin-bottom: 10px;
  }
  .mtitle2:before {
    width: 15px;
  }
  .mtitle2 .eng {
    font-size: 3rem;
  }
  .mtitle2 .ja {
    font-size: 1.5rem;
  }
}
.mtitle2 {
  position: relative;
}

.mtitle3 {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  letter-spacing: 0.3em;
}
.mtitle3 .ja {
  display: block;
  font-size: 2.4rem;
  line-height: 1.5;
  color: #222020;
  text-orientation: upright;
}
.mtitle3 .eng {
  display: block;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #808080;
  position: relative;
}
.mtitle3.type2 {
  position: initial;
}
.mtitle3.type2 .ja,
.mtitle3.type2 .eng {
  color: #fefefe;
}
.mtitle3.type2 .ja {
  border-right: none;
}
.mtitle3.type2 .eng {
  font-size: 5.8rem;
}
.mtitle3.type2 .eng::before {
  content: "";
  width: 10px;
  height: 100%;
  display: block;
  position: absolute;
  left: 4px;
  right: 0;
  margin: 0 auto;
  top: calc(-100% - 35px);
  background: #fff;
}
@media screen and (max-width: 639px) {
  .mtitle3 {
    left: 10px;
    top: 15px;
  }
  .mtitle3 .ja {
    font-size: 1.6rem;
  }
  .mtitle3 .eng {
    font-size: 1.3rem;
  }
  .mtitle3.type2 {
    -webkit-writing-mode: initial;
        -ms-writing-mode: initial;
            writing-mode: initial;
    margin-bottom: 20px;
  }
  .mtitle3.type2 .eng {
    font-size: 4.8rem;
  }
  .mtitle3.type2 .eng::before {
    display: none;
  }
}

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

.mtitle4 {
  position: relative;
  border-bottom: 1px solid #222020;
  padding-bottom: 10px;
}
.mtitle4 .eng {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 5.6em;
  position: relative;
  line-height: 1;
  color: #808080;
  color: transparent;
  -webkit-text-stroke: 1px #808080;
  white-space: nowrap;
  overflow: hidden;
}
.mtitle4 .ja {
  font-size: 1.5em;
  color: #222020;
  padding-left: 1em;
}
@media screen and (max-width: 639px) {
  .mtitle4 {
    max-width: 90%;
  }
  .mtitle4 .eng {
    font-size: 3em;
  }
  .mtitle4 .ja {
    font-size: 1.2em;
    display: block;
  }
}

.mtitle5 {
  position: relative;
  border-bottom: 1px solid #222020;
  padding: 15px;
  text-align: left;
  margin-bottom: 40px;
}
.mtitle5 .eng {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  display: block;
  color: #808080;
  font-size: 1.1em;
}
.mtitle5 .ja {
  font-size: 3rem;
  font-weight: 900;
  color: #222020;
}
@media screen and (max-width: 639px) {
  .mtitle5 .eng {
    font-size: 1em;
  }
  .mtitle5 .ja {
    font-size: 1.6rem;
  }
}

.mtitle6 {
  margin-bottom: 40px;
}
.mtitle6 .eng {
  display: inline-block;
  vertical-align: top;
  position: relative;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 52px;
  line-height: 1;
  letter-spacing: 3.1px;
  margin-bottom: 16px;
}
.mtitle6 .eng::before {
  content: "";
  width: 100vw;
  height: 10px;
  background: #808080;
  left: calc(-100vw - 20px);
  top: 50%;
  margin-top: -5px;
  display: block;
  position: absolute;
}
.mtitle6 .ja {
  display: block;
  letter-spacing: 0.95px;
}

.mtitle_sub {
  padding-left: 0.5em;
  font-weight: 600;
  position: relative;
  border-left: 3px solid #808080;
  margin: 8px 0 15px;
  font-size: 1.1em;
  line-height: 1.4;
  text-align: left;
}
.mtitle_sub:before {
  position: absolute;
  left: -3px;
  bottom: 0;
  content: "";
  width: 3px;
  height: 50%;
  background-color: #21a2af;
}

.mtitle_box {
  background: #f5f3eb;
  color: #102777;
  font-size: 1.8rem;
  position: relative;
  padding: 10px 15px;
  margin-bottom: 25px;
  font-weight: 600;
}
.mtitle_box a {
  color: #fff;
}
.mtitle_box span {
  font-size: 14px;
  padding-left: 10px;
}
.mtitle_box:before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f30a";
  font-weight: 900;
  display: block;
  right: -1px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #fff;
}
@media screen and (max-width: 639px) {
  .mtitle_box {
    font-size: 1.3rem;
  }
}
.mtitle_box.type1 {
  background: #272727;
}
.mtitle_box.type2 {
  background: #21a2af;
}

.mtitle_box2 {
  background: #808080;
  background-image: -webkit-gradient(linear, left top, right bottom, from(#808080), to(#808080));
  background-image: linear-gradient(to right bottom, #808080, #808080);
  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;
  -webkit-transform: rotate(60deg);
          transform: rotate(60deg);
  position: absolute;
  bottom: -10px;
  right: -150px;
  width: 300px;
  height: 280px;
}
@media screen and (max-width: 639px) {
  .mtitle_box2 {
    font-size: 15px;
    line-height: 1.5;
    padding: 10px 10px 10px 15px;
    padding-right: 40px;
  }
  .mtitle_box2 span {
    font-size: 12px;
  }
  .mtitle_box2:before {
    width: 215px;
    right: -170px;
  }
}

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

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

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

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

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

.btn02 {
  width: 300px;
  margin: 20px auto 20px;
}
.btn02 a {
  display: block;
  position: relative;
  padding: 15px 30px 15px 5px;
  line-height: 24px;
  letter-spacing: 0.1rem;
  font-size: 1.5rem;
  text-align: center;
  color: #fff;
  background-image: -webkit-gradient(linear, left top, right top, from(#394578), to(#232c53));
  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;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn02 a:hover i {
  width: 34px;
}
.btn02.type1 a {
  background: #fff;
  color: #808080;
}
@media screen and (max-width: 639px) {
  .btn02 {
    width: 260px;
  }
  .btn02 a {
    font-size: 1.3rem;
  }
}

.btn03 a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  gap: 1em;
  color: #222020;
}
.btn03 a span {
  display: block;
}
.btn03 a .circle_btn {
  position: relative;
  background: #808080;
  color: #fff;
  border-radius: 100vh;
  width: 3.5em;
  height: 3.5em;
  line-height: 3.5em;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn03 a .circle_btn:after {
  content: "";
  width: 100%;
  height: 100%;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  color: #fff;
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: 900;
}
.btn03 a .btn_txt {
  line-height: 1;
  padding-top: 0.5em;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.btn03 a:hover .circle_btn {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  background: #333;
}
.btn03 a:hover .circle_btn::after {
  color: #fff;
}
.btn03 a:hover .btn_txt {
  -webkit-transform: translateX(15px);
          transform: translateX(15px);
}
.btn03.c02 a {
  color: #222020;
}
.btn03.c02 a .circle_btn {
  background: #808080;
  color: #fff;
}
.btn03.c02 a .circle_btn:after {
  color: #fff;
}

.btn-arrow {
  width: 70px;
  height: 70px;
  position: relative;
  text-align: center;
  line-height: 60px;
  border: 1px solid transparent;
  border-radius: 100%;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  margin-top: 20px;
}
.btn-arrow::before, .btn-arrow::after {
  border-radius: 100%;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.btn-arrow::before {
  border: 1px solid transparent;
}
.btn-arrow::after {
  border: 0 solid transparent;
}
.btn-arrow i {
  display: block;
  position: absolute;
  width: 30px;
  border-bottom: 1px solid #fefefe;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 5px;
}
.btn-arrow i:before {
  position: absolute;
  width: 10px;
  height: 8px;
  content: "";
  right: 3px;
  bottom: -1px;
  border-right: 2px solid #fefefe;
  -webkit-transform: skew(45deg);
          transform: skew(45deg);
}
.btn-arrow .eng2 {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
}

/* page-title
----------------------------------*/
.page-title {
  position: relative;
  z-index: 3;
}
.page-title .inner {
  margin: 0 auto;
  height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  max-width: 1500px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1101px) {
  .page-title .inner {
    padding: 0 20px;
  }
}
@media screen and (max-width: 639px) {
  .page-title .inner {
    height: 75vw;
  }
}
.page-title .inner .page-lead {
  font-size: 2rem;
  position: relative;
  padding-bottom: 60px;
}
.page-title .inner .page-lead.on .eng {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}
.page-title .inner .page-lead.on .ja {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.page-title .inner .page-lead .eng {
  display: block;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 5rem;
  color: #222020;
  line-height: 1;
  text-shadow: 4px 4px 20px rgba(73, 45, 24, 0.1);
  opacity: 0;
  -webkit-transform: translateX(-20%);
          transform: translateX(-20%);
  -webkit-transition: 0.5s all cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: 0.5s all cubic-bezier(0.55, 0.05, 0.22, 0.99);
}
.page-title .inner .page-lead .ja {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  position: relative;
  z-index: 4;
  -webkit-transition: 0.5s all cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: 0.5s all cubic-bezier(0.55, 0.05, 0.22, 0.99);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
  display: inline-block;
  color: #222020;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 639px) {
  .page-title .inner .page-lead {
    font-size: 1.6rem;
    padding-bottom: 20px;
  }
  .page-title .inner .page-lead .eng {
    font-size: 3.8rem;
  }
}

.bg-01 {
  position: relative;
}
.bg-01:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(16deg, rgba(116, 116, 116, 0.05) 0%, rgba(116, 116, 116, 0.05) 25%, transparent 25%, transparent 96%, rgba(177, 177, 177, 0.08) 96%, rgba(177, 177, 177, 0.08) 100%), linear-gradient(236deg, rgba(148, 148, 148, 0.04) 0%, rgba(148, 148, 148, 0.04) 53%, transparent 53%, transparent 59%, rgba(56, 56, 56, 0.02) 59%, rgba(56, 56, 56, 0.02) 100%), linear-gradient(284deg, rgba(16, 16, 16, 0.03) 0%, rgba(16, 16, 16, 0.03) 46%, transparent 46%, transparent 71%, rgba(181, 181, 181, 0.1) 71%, rgba(181, 181, 181, 0.1) 100%), linear-gradient(316deg, rgba(197, 197, 197, 0.02) 0%, rgba(197, 197, 197, 0.02) 26%, transparent 26%, transparent 49%, rgba(58, 58, 58, 0.02) 49%, rgba(58, 58, 58, 0.02) 100%), linear-gradient(90deg, #fefefe, #fefefe);
}
.bg-01.type1:before {
  background-image: linear-gradient(-164deg, rgba(128, 128, 128, 0.09) 0%, rgba(128, 128, 128, 0.06) 25%, transparent 25%, transparent 96%, rgba(128, 128, 128, 0.1) 96%, rgba(128, 128, 128, 0.1) 100%), linear-gradient(210deg, rgba(39, 39, 39, 0.09) 0%, rgba(39, 39, 39, 0.09) 53%, transparent 53%, transparent 59%, rgba(128, 128, 128, 0.06) 59%, rgba(128, 128, 128, 0.06) 100%), linear-gradient(255deg, rgba(39, 39, 39, 0.1) 0%, rgba(39, 39, 39, 0.1) 46%, transparent 46%, transparent 71%, rgba(128, 128, 128, 0.06) 71%, rgba(128, 128, 128, 0.06) 100%), linear-gradient(316deg, rgba(128, 128, 128, 0.08) 0%, rgba(128, 128, 128, 0.08) 26%, transparent 26%, transparent 49%, rgba(244, 243, 243, 0.6) 49%, rgba(244, 243, 243, 0.6) 100%), linear-gradient(90deg, rgb(251.3173913043, 250.9826086957, 250.9826086957), rgb(251.3173913043, 250.9826086957, 250.9826086957));
}
.bg-01.type2:before {
  background-image: linear-gradient(-164deg, rgba(128, 128, 128, 0.09) 0%, rgba(128, 128, 128, 0.06) 25%, transparent 25%, transparent 96%, rgba(128, 128, 128, 0.1) 96%, rgba(128, 128, 128, 0.1) 100%), linear-gradient(210deg, rgba(39, 39, 39, 0.09) 0%, rgba(39, 39, 39, 0.09) 53%, transparent 53%, transparent 59%, rgba(128, 128, 128, 0.06) 59%, rgba(128, 128, 128, 0.06) 100%), linear-gradient(255deg, rgba(39, 39, 39, 0.1) 0%, rgba(39, 39, 39, 0.1) 46%, transparent 46%, transparent 71%, rgba(128, 128, 128, 0.06) 71%, rgba(128, 128, 128, 0.06) 100%), linear-gradient(316deg, rgba(128, 128, 128, 0.08) 0%, rgba(128, 128, 128, 0.08) 26%, transparent 26%, transparent 49%, rgba(39, 39, 39, 0.6) 49%, rgba(39, 39, 39, 0.6) 100%), linear-gradient(90deg, rgb(46.65, 46.65, 46.65), rgb(46.65, 46.65, 46.65));
}

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

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

.bg-base {
  position: relative;
}
.bg-base:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(33, 162, 175, 0.4)), color-stop(50%, rgba(36.9375, 81.28125, 85.75, 0.33)), color-stop(65%, rgba(37.935483871, 60.8225806452, 63.1290322581, 0.315)), color-stop(75.5%, rgba(38.4590163934, 50.0901639344, 51.262295082, 0.3075)), color-stop(82.85%, rgba(38.7308794358, 44.5169715671, 45.100066123, 0.3037)), color-stop(88%, rgba(38.8612524895, 41.8443239655, 42.1449435716, 0.3019)), to(rgba(39, 39, 39, 0.3)));
  background-image: linear-gradient(to bottom, rgba(33, 162, 175, 0.4) 0%, rgba(36.9375, 81.28125, 85.75, 0.33) 50%, rgba(37.935483871, 60.8225806452, 63.1290322581, 0.315) 65%, rgba(38.4590163934, 50.0901639344, 51.262295082, 0.3075) 75.5%, rgba(38.7308794358, 44.5169715671, 45.100066123, 0.3037) 82.85%, rgba(38.8612524895, 41.8443239655, 42.1449435716, 0.3019) 88%, rgba(39, 39, 39, 0.3) 100%);
  opacity: 0.7;
}

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

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

.bg-gray {
  position: relative;
}
.bg-gray:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(241, 241, 241, 0.8);
  z-index: -2;
}
.bg-gray.type1:before {
  opacity: 0.8;
}
.bg-gray.bg-half-bottom {
  background: transparent;
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(50%, transparent), color-stop(50.1%, #f1f1f1), to(#f1f1f1));
  background-image: linear-gradient(to bottom, transparent 0%, transparent 50%, #f1f1f1 50.1%, #f1f1f1 100%);
}
.bg-gray.bg-half-upper {
  background: transparent;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f1f1f1), color-stop(50%, #f1f1f1), color-stop(50.1%, transparent), to(transparent));
  background-image: linear-gradient(to bottom, #f1f1f1 0%, #f1f1f1 50%, transparent 50.1%, transparent 100%);
}

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

.tbl {
  width: 100%;
}
.tbl th,
.tbl td {
  padding: 15px;
  vertical-align: middle;
  border-bottom: 2px solid #ededed;
}
.tbl th {
  background: rgba(128, 128, 128, 0.8);
  text-align: center;
  color: #f5f3eb;
  width: 15%;
}
.tbl th span {
  font-size: 1.4rem;
}
.tbl .cell01 {
  width: 45%;
}
.tbl .cell02 {
  width: 30%;
}
@media screen and (max-width: 639px) {
  .tbl th {
    text-align: left;
  }
  .tbl th,
  .tbl td {
    padding: 10px 8px;
    letter-spacing: 0;
    font-size: 1.2rem;
  }
  .tbl.type1 th,
  .tbl.type1 td {
    display: block;
    width: 100%;
  }
  .tbl.type1 th {
    line-height: 1.6;
  }
}

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

.company {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #333;
}
.company th,
.company td {
  padding: 20px 15px;
  vertical-align: top;
  border-bottom: 1px solid #ccc;
  text-align: left;
}
.company th {
  width: 120px;
  font-weight: bold;
  color: #333;
  white-space: nowrap;
}
.company td {
  line-height: 1.8;
}
@media screen and (max-width: 639px) {
  .company th,
  .company td {
    display: block;
    width: 100%;
    padding: 10px 5px;
  }
  .company th {
    border-bottom: none;
    padding-bottom: 0;
    font-size: 1.3rem;
  }
  .company td {
    padding-top: 5px;
    font-size: 1.4rem;
  }
}

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

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

.gmapbox .ggmap {
  padding-bottom: 33%;
  position: relative;
}
.gmapbox .ggmap .ggmap-btn a {
  position: absolute;
  right: 0;
  top: 0;
  background: #808080;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(-22.57%, #222020), color-stop(68.82%, #808080));
  background-image: linear-gradient(to right, #222020 -22.57%, #808080 68.82%);
  color: #fefefe;
  padding: 15px 25px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  width: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.gmapbox .ggmap .ggmap-btn a i {
  margin-left: 40px;
}
.gmapbox .ggmap .ggmap-btn a:hover {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(30.57%, #222020), color-stop(98.82%, #808080));
  background-image: linear-gradient(to right, #222020 30.57%, #808080 98.82%);
}
@media screen and (max-width: 639px) {
  .gmapbox .ggmap .ggmap-btn a {
    padding: 10px 15px;
    width: 170px;
  }
}
.gmapbox .ggmap.type-footer {
  padding-bottom: 25%;
}
@media screen and (max-width: 1025px) {
  .gmapbox .ggmap.type-footer {
    padding-bottom: 73%;
  }
}
@media screen and (max-width: 1025px) {
  .gmapbox .ggmap.type-company {
    padding-bottom: 55%;
  }
}

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

.list_check.type1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.list_check.type1 li {
  background: #102777;
  padding: 12px 8px;
  width: 31%;
  color: #fff;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          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: #808080;
  border-bottom: 1px dotted #808080;
}
.list_check li:before {
  position: absolute;
  left: 0;
  top: 20px;
  content: "";
  width: 10px;
  height: 2px;
  background: #272727;
}
@media screen and (max-width: 639px) {
  .list_check li {
    width: 98%;
    margin: 0 auto 10px;
    font-size: 1.3rem;
  }
}

.list_check2 li {
  padding: 8px;
  font-weight: 600;
}
.list_check2 li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: 900;
  margin-right: 8px;
  color: #808080;
}
.list_check2 li {
  margin-bottom: 4px;
}
.list_check2.col2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px 20px;
}
@media screen and (max-width: 639px) {
  .list_check2.col2 {
    grid-template-columns: 1fr;
    gap: 5px 0;
  }
}

.ol-list {
  counter-reset: number;
  list-style: none;
  padding: 5px;
}
.ol-list.type1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.ol-list.type1 > li {
  width: 48%;
}
.ol-list.type1 > li:nth-child(2n) {
  margin-left: 4%;
}
.ol-list li {
  margin-bottom: 15px;
  font-weight: 600;
  padding-left: 3em;
  position: relative;
  line-height: 2em;
  margin-bottom: 20px;
}
.ol-list li span {
  font-size: 2rem;
  display: block;
  font-weight: 700;
}
.ol-list li:before {
  counter-increment: number;
  content: counter(number);
  line-height: 2.5em;
  text-align: center;
  font-size: 2.5rem;
  color: #808080;
  font-family: "Oswald", sans-serif;
  position: absolute;
  left: 0;
  top: 0px;
  border-radius: 100%;
}
@media screen and (max-width: 639px) {
  .ol-list li {
    font-size: 1.3rem;
    padding-left: 2em;
  }
  .ol-list li span {
    font-size: 1.5rem;
  }
  .ol-list li:before {
    font-size: 1.8rem;
  }
}

.list_disc li {
  padding: 5px 0;
}
.list_disc li a {
  font-weight: 600;
  letter-spacing: 0.1rem;
}
.list_disc li:not(:last-of-type) {
  margin-bottom: 5px;
  border-bottom: 1px dashed #ccc;
}
.list_disc li:before {
  content: "●";
  margin-right: 5px;
  color: #808080;
  font-size: 0.8em;
}
.list_disc.type2 li {
  border-bottom: 1px dashed #ccc;
}
.list_disc.sbc li:before {
  color: #272727;
}

.list-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.list-btn.type1 {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.list-btn li {
  width: 32%;
  margin: 0 1.995% 10px 0;
}
.list-btn li a {
  display: block;
  background: #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: #272727;
}
.list-btn li:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 639px) {
  .list-btn li {
    width: 90%;
    margin: 0 auto 10px;
  }
  .list-btn li a {
    font-size: 1.2rem;
  }
  .list-btn li:nth-child(3n) {
    margin-right: auto;
  }
}

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

/* blog
----------------------------------*/
#blog_contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#blog_contents .blog_ttl_left {
  width: 20%;
}
@media screen and (max-width: 1025px) {
  #blog_contents {
    display: block;
  }
  #blog_contents .blog_ttl_left {
    width: 100%;
  }
}

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

.blog-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3px;
}
.blog-wrap * {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.blog-wrap > li {
  width: calc((100% - 15px) / 4);
  position: relative;
  padding: 1em;
}
.blog-wrap > li > a {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}
.blog-wrap > li > a:hover .blog-img img {
  opacity: 1;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
@media screen and (max-width: 639px) {
  .blog-wrap > li {
    width: calc((100% - 5px) / 2);
    padding: 0.5em;
  }
}

.blog-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 10px;
}
.blog-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-family: "object-fit: cover;";
}
.blog-img:hover img {
  opacity: 1 !important;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
@media screen and (max-width: 1025px) {
  .blog-img {
    height: 150px;
  }
}

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

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

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

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

.blog-month {
  margin-bottom: 10px;
}
.blog-month ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.blog-month ul li {
  width: 60%;
  margin-bottom: 5px;
  text-align: center;
  letter-spacing: 0;
}
.blog-month ul li:nth-child(2n) {
  margin-left: 2%;
}
.blog-month ul li a {
  display: block;
  padding: 5px 0;
  background: #808080;
  color: #fff;
  font-size: 1.2rempx;
  font-size: 0.075remrem;
}
.blog-month ul li a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1101px) {
  .blog-month ul li {
    width: 100%;
  }
}

.pages {
  text-align: center;
  margin-top: 30px;
}
.pages .page_next,
.pages .page_prev {
  display: inline-block;
  margin: 0 20px;
}
.pages .page_next a,
.pages .page_prev a {
  color: #fff;
  padding: 4px 15px;
  background: #808080;
  font-size: 12px;
}

.category_nav li:not(:last-child) {
  margin-bottom: 5px;
}
.category_nav li a {
  display: block;
  padding: 10px;
  font-size: 13px;
  text-align: center;
  background: #f1f1f1;
  color: #222020;
}
.category_nav li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0a9";
  font-weight: 900;
  color: #272727;
}
.category_nav li a:hover {
  opacity: 0.5;
}
.category_nav li:last-child a {
  border-bottom: none;
}

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

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

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

.line2 {
  position: relative;
  padding-top: 30px;
  margin-bottom: 30px;
}
.line2::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 120px;
  bottom: 0;
  left: 50%;
  background: #808080;
}

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

.w300 {
  width: 300px;
}

.spbr {
  display: none;
}

.color1 {
  color: #808080;
}

.color2 {
  color: #272727;
}

.color3 {
  color: #191970;
}

.relative {
  position: relative;
}

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

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

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

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

.telbnr {
  max-width: 600px;
  margin: 20px auto 60px;
}
.telbnr li {
  border: 2px solid #808080;
  padding: 15px;
  text-align: center;
  border-radius: 10px;
}
.telbnr li a {
  width: 100%;
  display: block;
  font-size: 3rem;
  line-height: 1.5;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  color: #808080;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}
.telbnr li a span {
  font-size: 1.5rem;
  padding-left: 20px;
}
.telbnr li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 10px;
  font-size: 3.2rem;
}
.telbnr li a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 639px) {
  .telbnr {
    max-width: 100%;
  }
  .telbnr li {
    width: 100%;
  }
  .telbnr li a {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  .telbnr li a:before {
    font-size: 2.2rem;
  }
  .telbnr li a span {
    font-size: 1.2rem;
    display: block;
    padding-left: 20px;
  }
}

.telbnr-ttl {
  font-size: 1.8rem;
  color: #808080;
  margin-top: -30px;
  margin-bottom: 15px;
}
.telbnr-ttl span {
  background: #808080;
  padding: 5px 30px;
  border: 2px solid #808080;
  border-radius: 50px;
  color: #fff;
}
@media screen and (max-width: 639px) {
  .telbnr-ttl {
    font-size: 1.4rem;
  }
}

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

/* form
----------------------------------*/
.thanks {
  padding: 40px;
  background: #fff;
  max-width: 700px;
  margin: 0 auto;
}
@media screen and (max-width: 639px) {
  .thanks {
    max-width: 95%;
    padding: 30px 15px;
  }
}

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

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

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

.mtitle_small2 {
  position: relative;
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc;
}
.mtitle_small2:before {
  font-family: "Font Awesome 5 Free";
  content: "\f3c5";
  font-weight: 900;
  margin-right: 5px;
  font-size: 0.7em;
  color: #003064;
  font-size: 1.1em;
  font-display: swap;
}
.mtitle_small2 span {
  font-size: 1.4rem;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  right: 0;
  letter-spacing: 0.05em;
}

.mtitle_small3 {
  position: relative;
  background: #fefefe;
  border: 1px solid #ddd;
  padding: 15px 15px 15px 30px;
  margin-bottom: 15px;
  color: #222020;
  font-size: 2rem;
  font-weight: 600;
}
.mtitle_small3:before {
  position: absolute;
  top: 15%;
  left: 10px;
  width: 5px;
  height: 70%;
  content: "";
  background: rgba(39, 39, 39, 0.8);
}
@media screen and (max-width: 639px) {
  .mtitle_small3 {
    padding: 10px 5px 10px 20px;
    margin-bottom: 20px;
  }
  .mtitle_small3 span {
    font-size: 1.15rem;
    display: block;
  }
  .mtitle_small3:before {
    left: 5px;
  }
}

/* gallery(photobox)
----------------------------------*/
.gallery_ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -2%;
  margin-bottom: -4%;
}
@media screen and (max-width: 639px) {
  .gallery_ul {
    margin-left: auto;
    margin-right: auto;
  }
}
.gallery_ul > li {
  width: 30%;
  margin-left: 2%;
  margin-bottom: 4%;
  font-weight: 600;
  text-align: center;
}
.gallery_ul > li .ttl {
  margin-top: 10px;
  border-radius: 50px;
  padding: 3px 5px;
  border: 1px solid #808080;
  display: block;
  margin-left: 20px;
  margin-right: 20px;
}
.gallery_ul > li .photobox-wrap {
  width: 100%;
  height: 220px;
  text-align: center;
  overflow: hidden;
  background: #aaa;
  margin-bottom: 10px;
}
.gallery_ul > li .photobox-wrap img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  -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;
  }
}
.note {
  padding: 15px;
  margin-top: 10px;
  background: #f5f3eb;
}
.note.type1 {
  background: #fff;
  opacity: 0.9;
}
@media screen and (max-width: 639px) {
  .note {
    font-size: 1.2rem;
  }
}

.flow-dl .flow-inner {
  padding: 8px;
}
.flow-dl .flow-inner:not(:last-of-type) {
  margin-bottom: 5px;
  border-bottom: solid 1px #aaa;
}
.flow-dl .flow-inner dt .eng {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #21a2af;
  margin-right: 8px;
}
.flow-dl .flow-inner dt {
  font-size: 1.6rem;
  font-weight: 600;
  color: #102777;
}
.flow-dl .flow-inner dd {
  margin-top: 5px;
  padding-left: 40px;
}
@media screen and (max-width: 639px) {
  .flow-dl .flow-inner {
    padding: 6px;
  }
  .flow-dl .flow-inner dt .eng {
    font-size: 1.7rem;
  }
  .flow-dl .flow-inner dt {
    font-size: 1.25rem;
  }
  .flow-dl .flow-inner dd {
    padding-left: 30px;
  }
}

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

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

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

.list-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.list-center li {
  width: 50%;
}
@media screen and (max-width: 639px) {
  .list-center {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .list-center li {
    width: 100%;
  }
}

.faq-dl .faq-inner {
  padding: 10px;
  margin-bottom: 20px;
}
.faq-dl .faq-inner:not(:last-of-type) {
  margin-bottom: 35px;
  padding-bottom: 20px;
  border-bottom: 3px solid #eee;
}
.faq-dl .faq-inner dt,
.faq-dl .faq-inner dd {
  position: relative;
  padding: 10px 10px 10px 55px;
}
.faq-dl .faq-inner dt:before,
.faq-dl .faq-inner dd:before {
  position: absolute;
  content: "";
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  left: 0;
  top: 0;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
}
.faq-dl .faq-inner dt {
  margin-bottom: 10px;
  font-weight: 600;
  color: #102777;
}
.faq-dl .faq-inner dt:before {
  content: "Q";
  color: #fff;
  font-size: 3rem;
  background: #272727;
}
.faq-dl .faq-inner dd {
  background: #f5f3eb;
}
.faq-dl .faq-inner dd:before {
  content: "A";
  color: #f66009;
  font-size: 3rem;
  background: rgba(255, 216, 3, 0.2);
}

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

.title01 {
  font-weight: 600;
  font-size: 4.5rem;
  margin: 0;
  letter-spacing: 0.2rem;
  padding-bottom: 3rem;
  color: #808080;
}
.title01.sbc {
  color: #272727;
}
@media screen and (max-width: 639px) {
  .title01 {
    font-size: 2rem;
    padding-bottom: 1rem;
  }
}

.title02 {
  text-align: center;
  margin-bottom: 20px;
}
.title02 span {
  display: inline-block;
  font-size: 2.2rem;
}

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

.title04 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.title04 .sub {
  font-size: 1.8rem;
  color: #808080;
  padding-right: 10px;
  border-right: 1px solid #808080;
  margin-right: 10px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
}
.title04 .main {
  font-size: 2rem;
}

.slide_list,
.slide_list2 {
  gap: 10px;
  text-align: center;
}
.slide_list img,
.slide_list2 img {
  height: 400px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: grayscale(0.4);
          filter: grayscale(0.4);
  transition: filter 0.2s ease-in, -webkit-filter 0.2s ease-in;
}
.slide_list img:hover,
.slide_list2 img:hover {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}
@media screen and (max-width: 1101px) {
  .slide_list img,
  .slide_list2 img {
    height: 300px;
    width: 300px;
  }
}
@media screen and (max-width: 639px) {
  .slide_list img,
  .slide_list2 img {
    height: 200px;
    width: 250px;
  }
}

.flow-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}
.flow-list.type1 {
  display: block;
}
.flow-list.type1 > li {
  width: 90%;
}
.flow-list.type1 > li:nth-child(2) {
  margin-left: 2%;
}
.flow-list.type1 > li:nth-child(3) {
  margin-left: 4%;
}
.flow-list.type1 > li:nth-child(4) {
  margin-left: 6%;
}
.flow-list.type1 > li:nth-child(5) {
  margin-left: 8%;
}
.flow-list.type1 > li .flow-title {
  margin-bottom: 10px;
}
@media screen and (max-width: 639px) {
  .flow-list.type1 > li {
    width: 100%;
  }
  .flow-list.type1 > li:nth-child(2), .flow-list.type1 > li:nth-child(3), .flow-list.type1 > li:nth-child(4), .flow-list.type1 > li:nth-child(5) {
    margin-left: 0;
  }
}
.flow-list > li {
  width: 48%;
  margin-right: 4%;
  margin-bottom: 30px;
  padding: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: #fefefe;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 15px rgba(73, 45, 24, 0.05);
          box-shadow: 0 0 15px rgba(73, 45, 24, 0.05);
  font-weight: 600;
}
.flow-list > li.type100 {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  margin-right: 0;
}
.flow-list > li:nth-child(2n) {
  margin-right: 0;
}
@media screen and (max-width: 639px) {
  .flow-list > li {
    width: 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 #808080;
  padding-right: 15px;
  -ms-flex-item-align: start;
      align-self: flex-start;
  line-height: 1.2;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
}
.flow-list > li .flow-num span {
  font-size: 1.3rem;
  display: block;
  text-align: center;
}
.flow-list > li .txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 35px;
}
.flow-list > li .flow-title {
  color: #808080;
  border-bottom: 1px solid #808080;
  padding-bottom: 4px;
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 639px) {
  .flow-list > li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            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 #272727;
  }
  .flow-list > li .flow-title {
    font-size: 1.3rem;
  }
  .flow-list > li .txt {
    margin: 20px auto 0;
  }
}

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

.column2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.column2.tp {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.column2.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.column2 .child {
  width: 48%;
}
.column2 .child2 {
  width: 40%;
}
.column2 .child3 {
  width: 56%;
}
.column2 .child4 {
  width: 30%;
}
.column2 .child5 {
  width: 67%;
}
@media screen and (max-width: 1025px) {
  .column2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .column2 .child,
  .column2 .child2,
  .column2 .child3,
  .column2 .child4,
  .column2 .child5 {
    width: 100%;
  }
  .column2 .child.column2-img,
  .column2 .child2.column2-img,
  .column2 .child3.column2-img,
  .column2 .child4.column2-img,
  .column2 .child5.column2-img {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-bottom: 30px;
  }
  .column2 .child.child_img,
  .column2 .child2.child_img,
  .column2 .child3.child_img,
  .column2 .child4.child_img,
  .column2 .child5.child_img {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

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

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

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

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

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

.business-list-title {
  font-size: 2.2rem;
  position: absolute;
  right: 0;
  bottom: -1px;
  background: #808080;
  color: #fff;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  padding: 10px 30px 10px 20px;
  border-radius: 15px 0 10px 0;
}
.business-list-title .eng {
  display: block;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
}
.business-list-title:after {
  position: absolute;
  content: "";
  right: 5px;
  top: 50%;
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: 900;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.business-list-title:before {
  position: absolute;
  content: "";
  right: 0;
  top: -30px;
  width: 30px;
  height: 30px;
  background: url(../img/hem.svg) no-repeat right bottom/contain;
}
@media screen and (max-width: 639px) {
  .business-list-title {
    font-size: 1.4rem;
    text-shadow: none;
    padding-right: 80px;
  }
}

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

.business-detail2 {
  margin: 0 auto 160px;
  width: 100%;
  max-width: 1200px;
}
.business-detail2 .inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.business-detail2 .inner .img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 42%;
}
.business-detail2 .inner .img .img01,
.business-detail2 .inner .img .img02 {
  width: 46%;
  height: 450px;
}
.business-detail2 .inner .img .img01 img,
.business-detail2 .inner .img .img02 img {
  -o-object-position: 20%;
     object-position: 20%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1025px) {
  .business-detail2 .inner .img .img01 img,
  .business-detail2 .inner .img .img02 img {
    border-radius: 25px 2px 15px 8px;
  }
}
.business-detail2 .inner .img .img02 {
  z-index: 1;
  margin-top: 40px;
  margin-left: auto;
  position: relative;
}
.business-detail2 .inner .txt {
  width: 56%;
  padding: 0 20px;
}
.business-detail2 .inner .txt p + p {
  margin-top: 15px;
}
.business-detail2.ob-type1 .inner .img .img01 img {
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.business-detail2.ob-type1 .inner .img .img02 img {
  -o-object-position: 60% 50%;
     object-position: 60% 50%;
}
@media screen and (max-width: 1300px) {
  .business-detail2 {
    max-width: 95%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1025px) {
  .business-detail2 {
    width: 100%;
  }
  .business-detail2 .inner {
    margin-left: auto;
    margin-right: auto;
    display: block;
    padding-top: 40px;
  }
  .business-detail2 .inner .img {
    width: 100%;
    margin-bottom: 40px;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .business-detail2 .inner .img .img01,
  .business-detail2 .inner .img .img02 {
    height: 350px;
  }
  .business-detail2 .inner .img .img02 {
    max-width: 350px;
    margin-left: 20px;
  }
  .business-detail2 .inner .txt {
    width: 100%;
    margin: auto;
    padding: 0 5px;
  }
  .business-detail2 .inner .txt p + p {
    margin-top: 10px;
  }
}
@media screen and (max-width: 639px) {
  .business-detail2 .inner {
    max-width: 100%;
  }
  .business-detail2 .inner .img .img02 {
    margin-top: 20px;
    max-width: 300px;
  }
}

.product-box .list3 > li .img img {
  height: 300px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-box .list3 > li .txt {
  text-align: center;
}
.product-box .sub-txt {
  margin-bottom: 20px;
}
.product-box .sub-txt span {
  background: #222020;
  color: #fefefe;
  padding: 5px 10px;
  text-align: center;
  margin-right: 10px;
  font-size: 1.8rem;
}

.quality-box .box-wrap {
  background-image: -webkit-gradient(linear, left top, right bottom, from(#8f0000), to(#cd0000));
  background-image: linear-gradient(to right bottom, #8f0000, #cd0000);
  padding: 8px;
}
.quality-box .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  background: #fefefe;
  padding: 40px;
}
.quality-box .inner .left {
  width: 65%;
  padding: 20px;
}
.quality-box .inner .right {
  width: 30%;
}
.quality-box .inner .right img {
  border: 1px solid #ddd;
}

.area-block {
  position: relative;
  max-width: 700px;
  margin: 0 auto 80px;
}
.area-block .area-txt {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding-left: 200px;
}
.area-block .area-txt:before, .area-block .area-txt:after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.area-block .area-txt:before {
  left: -60px;
  width: 40px;
  height: 40px;
  background: rgba(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;
    -webkit-transform: none;
            transform: none;
    padding-left: 20px;
  }
  .area-block .area-txt:before, .area-block .area-txt:after {
    -webkit-transform: none;
            transform: none;
  }
  .area-block .area-txt:before {
    left: 4px;
    top: -20px;
  }
}
@media screen and (max-width: 639px) and (max-width: 639px) {
  .area-block .area-txt:before {
    top: -130px;
  }
}
@media screen and (max-width: 639px) {
  .area-block .area-txt:after {
    left: 24px;
    top: 0;
    width: 1px;
    height: 30px;
  }
}
@media screen and (max-width: 639px) and (max-width: 639px) {
  .area-block .area-txt:after {
    top: -110px;
  }
}

.title-big {
  padding-top: 100px;
  position: relative;
  color: #272727;
  text-align: center;
}
.title-big:before {
  font-size: 6rem;
  white-space: nowrap;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  position: absolute;
  content: attr(data-title);
  top: 0;
  left: 50%;
  letter-spacing: 0.1rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: inline-block;
  z-index: 1;
}
.title-big .ja {
  display: block;
  font-weight: 600;
  font-size: 2.3rem;
  position: relative;
  z-index: 2;
}
.title-big.type-greet, .title-big.type-greet2 {
  text-align: left;
}
.title-big.type-greet:before, .title-big.type-greet2:before {
  left: 0;
  -webkit-transform: none;
          transform: none;
}
.title-big.type-greet.left, .title-big.type-greet2.left {
  text-align: center;
}
.title-big.type-greet.left:before, .title-big.type-greet2.left:before {
  left: 50% !important;
  -webkit-transform: translateX(-50%) !important;
          transform: translateX(-50%) !important;
}
@media screen and (max-width: 639px) {
  .title-big {
    padding-top: 55px;
    text-align: center;
  }
  .title-big:before {
    font-size: 3rem;
  }
  .title-big .ja {
    font-size: 1.4rem;
  }
}

.title-big2 {
  position: relative;
  color: #222020;
  margin-bottom: 40px;
}
.title-big2 .ja {
  font-size: 5rem;
  position: relative;
  padding-left: 20px;
}
.title-big2 .ja::before {
  content: "";
  background: #272727;
  width: 6px;
  height: calc(100% - 0.24em);
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
}
@media screen and (max-width: 1101px) {
  .title-big2 {
    font-size: 10vw;
  }
}
@media screen and (max-width: 639px) {
  .title-big2 {
    margin-bottom: 20px;
  }
  .title-big2 .eng {
    font-size: 3rem;
  }
  .title-big2 .ja {
    font-size: 1.8rem;
  }
  .title-big2 .ja::before {
    width: 3px;
  }
}

.top-business-title {
  padding-top: 90px;
  position: relative;
  text-align: center;
  color: #fff;
}
.top-business-title:before {
  font-size: 8rem;
  white-space: nowrap;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  position: absolute;
  content: attr(data-title);
  top: 0;
  left: 50%;
  letter-spacing: 0.1rem;
  opacity: 0.9;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: inline-block;
}
.top-business-title .ja {
  display: block;
  font-weight: 600;
  font-size: 2.4rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1101px) {
  .top-business-title {
    font-size: 10vw;
  }
}

.greet-area {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 1;
  margin: 0 auto;
  width: 100%;
}
.greet-area[data-aos] {
  will-change: transform, opacity;
}
.greet-area:before {
  display: none;
}
.greet-area .greet-area-box {
  position: relative;
  width: 100%;
  max-width: 800px;
  padding: 85px 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fefefe;
  color: #272727;
  z-index: 10;
  text-align: center;
}
.greet-area .greet-area-box::before, .greet-area .greet-area-box::after {
  position: absolute;
  width: 60px;
  height: 60px;
  content: "";
}
.greet-area .greet-area-box::before {
  top: 0;
  right: 0;
  border-top: 1px solid #272727;
  border-right: 1px solid #272727;
}
.greet-area .greet-area-box::after {
  bottom: 0;
  left: 0;
  border-left: 1px solid #272727;
  border-bottom: 1px solid #272727;
}
.greet-area .greet-area-box .inner {
  position: relative;
  width: 100%;
  margin: auto;
  z-index: 1;
}
.greet-area .greet-area-box .inner p {
  line-height: 1.8;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .greet-area {
    margin-bottom: 80px;
  }
  .greet-area .greet-area-box {
    width: 90%;
    padding: 40px 20px;
    margin: 0 auto;
  }
  .greet-area .greet-area-box::before, .greet-area .greet-area-box::after {
    width: 30px;
    height: 30px;
  }
}

.top-feature-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: 40px;
}
.top-feature-box .inner {
  width: 48%;
}
.top-feature-box .inner .ttl {
  margin-bottom: 10px;
  margin-left: 15px;
}
.top-feature-box .inner .ttl .eng {
  color: #808080;
  font-size: 5rem;
  margin-top: -20px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  mix-blend-mode: hard-light;
  mix-blend-mode: color-dodge;
  position: relative;
  z-index: 10;
  display: block;
  line-height: 1;
}
.top-feature-box .inner .ttl .ja {
  font-weight: bold;
  font-size: 1.8rem;
}
.top-feature-box .inner .img img {
  height: 320px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  clip-path: polygon(15% 0%, 100% 0, 100% 15%, 100% 85%, 85% 100%, 15% 100%, 0 100%, 0% 15%);
}

/*rental__list
-----------------------------------*/
.rental__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 50px auto 0;
}
.rental__list li {
  width: 46%;
  margin: 0 1%;
  padding: 40px;
  background-color: #fff;
  border-radius: 40px;
  position: relative;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rental__list li:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  border: 2px solid #808080;
  border-radius: 20px;
  -webkit-transform: rotate(-1deg);
          transform: rotate(-1deg);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: -1;
}
.rental__list li:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  border: 2px solid #272727;
  border-radius: 20px;
  -webkit-transform: rotate(1deg);
          transform: rotate(1deg);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: -3;
}
.rental__list li:nth-child(2) {
  margin-left: 4%;
}
.rental__list li:hover {
  background-color: white;
}
.rental__list li:hover:before {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rental__list li:hover:after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rental__list .list__icon {
  max-width: 245px;
  margin: 0 auto;
  text-align: center;
  height: 200px;
}
.rental__list .list__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.rental__list .list__title {
  font-size: 3rem;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
}
.rental__list .list__subtxt {
  color: #808080;
  font-weight: bold;
  text-align: center;
}
@media all and (max-width: 1480px), all and (max-width: 1100px) {
  .rental__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .rental__list li {
    width: 46%;
    padding: 40px 15px;
  }
  .rental__list:nth-child(2) {
    margin-left: 2%;
  }
  .rental__list .list__title {
    font-size: 2rem;
  }
}
@media all and (max-width: 768px) {
  .rental__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            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: 150px;
    margin: 0 auto;
    height: 100px;
  }
  .rental__list .list__title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 667px) {
  .rental__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 0;
    display: block;
  }
  .rental__list li {
    width: 90%;
    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;
  }
  .rental__list .list__title {
    font-size: 14px;
  }
  .rental__list .list__subtxt {
    font-size: 12px;
  }
  .rental__list .btn {
    margin: 20px auto 0;
  }
}

.recruit-head-bottom {
  position: relative;
}
.recruit-head-bottom::before {
  position: absolute;
  content: "";
  background-image: -webkit-gradient(linear, right top, left top, from(#042054), to(#006494));
  background-image: linear-gradient(to left, #042054, #006494);
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.recruit-head-bottom .inner {
  position: relative;
  padding: 120px 0;
  margin-left: 15vw;
}
.recruit-head-bottom .inner::before {
  position: absolute;
  content: "";
  background: url(../img/recruit-head3.png) no-repeat center/contain;
  right: -20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 400px;
  height: 336px;
  z-index: -1;
}
@media screen and (max-width: 1300px) {
  .recruit-head-bottom .inner {
    margin-left: 6vw;
  }
}
@media screen and (max-width: 1101px) {
  .recruit-head-bottom .inner::before {
    right: -80px;
    width: 350px;
    height: 294px;
  }
}
@media screen and (max-width: 896px) {
  .recruit-head-bottom .inner::before {
    opacity: 0.3;
  }
}
@media screen and (max-width: 639px) {
  .recruit-head-bottom .inner {
    padding: 60px 10px;
    margin-left: 0;
  }
}

/*----------------------------------
contact-form
----------------------------------*/
.form-contents {
  width: 100% !important;
  height: auto !important;
  padding: 35px 30px !important;
  border-radius: 15px 15px 0 0 !important;
}
@media screen and (max-width: 1101px) {
  .form-contents {
    padding: 15px !important;
  }
}
.form-contents button {
  border: 1px solid #272727 !important;
}
.form-contents .required::before {
  background: #808080 !important;
  padding: 5px 10px !important;
}
.form-contents .textarea {
  background-color: #f0f0f0 !important;
  border: none !important;
  padding: 20px 15px !important;
}
.form-contents .textarea03 {
  width: 10em !important;
}
.form-contents input[type=text],
.form-contents textarea {
  font-size: 16px;
}
.form-contents input[type=radio] {
  margin: 3px 3px 7px 5px !important;
}
.form-contents .submit-btn {
  background-color: #808080 !important;
  border: none !important;
  color: #fefefe !important;
}
.form-contents .submit-btn:hover {
  color: #272727 !important;
  background-color: #fefefe !important;
  border: 1px solid #272727 !important;
}
.form-contents .submit-btn:hover:before {
  background-color: #272727 !important;
}
.form-contents .custom-area p {
  padding: 10px 0;
}

@media screen and (max-width: 639px) {
  .form-contents {
    padding: 0 10px !important;
  }
  .form-contents dl {
    margin: 10px 0 !important;
  }
  .form-contents dl dt {
    float: none !important;
    padding-top: 15px !important;
  }
  .form-contents dl dd {
    padding-left: 0 !important;
    padding-bottom: 15px !important;
    padding-top: 10px !important;
    line-height: 20px !important;
  }
  .form-contents .submit-btn {
    width: 250px !important;
  }
}
/* accordion
----------------------------------*/
.accordion dt,
.accordion dd {
  position: relative;
  padding: 1em;
}
.accordion dt {
  background: #272727;
  cursor: pointer;
  font-size: 2.2rem;
  font-weight: bold;
  color: #fff;
}
.accordion dt:after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f067";
  font-weight: 900;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 1.7rem;
}
.accordion dt.on:after {
  font-family: "Font Awesome 5 Free";
  content: "\f068";
  font-weight: 900;
}
.accordion dd {
  display: none;
  padding: 25px;
  background: #fefefe;
}
@media screen and (max-width: 639px) {
  .accordion dt {
    font-size: 1.3rem;
  }
  .accordion dd {
    padding: 15px;
  }
}

.top_slide_box {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  height: auto;
}
.top_slide_box::before {
  content: "";
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(28, 28, 28, 0)), color-stop(75%, rgb(27, 55, 151)));
  background: linear-gradient(90deg, rgba(28, 28, 28, 0) 0%, rgb(27, 55, 151) 75%);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  inset: 0;
}
.top_slide_box .txt_area {
  width: 40%;
  height: 100%;
  z-index: 100;
  color: #fff;
  margin-right: 5%;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 50px;
  margin-bottom: 50px;
}
.top_slide_box .txt_area .mtext2 {
  margin-bottom: 60px;
}
.top_slide_box .slide_inner {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  left: 0;
  gap: 20px;
  height: 100%;
  width: 90%;
  z-index: -1;
  top: 0;
}
.top_slide_box .slide_inner > div {
  width: 25%;
  height: 100%;
}
.top_slide_box .slide_inner > div > div {
  height: 100%;
}
@media screen and (max-width: 1440px) {
  .top_slide_box .txt_area {
    width: 65%;
  }
}
@media screen and (max-width: 1101px) {
  .top_slide_box::before {
    background: rgb(27, 55, 151);
  }
  .top_slide_box::before {
    background: -webkit-gradient(linear, left top, right top, from(rgb(27, 55, 151)));
    background: linear-gradient(90deg, rgb(27, 55, 151));
    opacity: 0.8;
  }
  .top_slide_box .slide_inner {
    width: 100%;
    position: absolute;
    gap: 10px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    z-index: -1;
    top: 0;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .top_slide_box .slide_inner > div {
    width: 33%;
    height: 100%;
  }
  .top_slide_box .txt_area {
    width: 95%;
    margin: 50px auto;
  }
  .top_slide_box .txt_area .mtext2 {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 639px) {
  .top_slide_box .txt_area {
    width: 95%;
    margin: 30px auto;
  }
  .top_slide_box .txt_area .mtext2 {
    margin-bottom: 20px;
  }
  .top_slide_box::before {
    background: -webkit-gradient(linear, left top, right top, from(rgb(27, 55, 151)));
    background: linear-gradient(90deg, rgb(27, 55, 151));
    opacity: 0.8;
  }
  .top_slide_box .slide_inner {
    position: absolute;
    width: 100%;
    gap: 10px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .top_slide_box .slide_inner > div {
    width: 33%;
    height: 100%;
  }
}
@media all and (max-width: 500px) {
  .top_slide_box {
    height: auto;
  }
}

.reason_wrap {
  margin-bottom: 80px;
}
.reason_wrap .col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.reason_wrap .col.type1 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.reason_wrap .col .image {
  width: 48%;
}
.reason_wrap .col .txt {
  width: 48%;
}
@media screen and (max-width: 1025px) {
  .reason_wrap .col {
    display: block;
  }
  .reason_wrap .col .image {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
  }
  .reason_wrap .col .txt {
    width: 100%;
  }
}

.slide_txt {
  position: relative;
  margin-bottom: 50px;
  width: 100%;
}
.slide_txt .parallax_txt {
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
}
@media screen and (max-width: 639px) {
  .slide_txt .parallax_txt {
    bottom: -30px;
  }
}

.parallax_txt {
  position: relative;
  width: 100%;
  height: auto;
}

.track {
  display: inline-block;
  white-space: nowrap;
  will-change: transform;
  -webkit-animation: scroll-track 30s linear infinite;
          animation: scroll-track 30s linear infinite;
}

.text {
  display: inline-block;
  font-size: 10vw;
  font-weight: 500;
  opacity: 0.1;
  color: #808080;
  text-transform: uppercase;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  padding-right: 2vw;
}
@media screen and (max-width: 639px) {
  .text {
    font-size: 20vw;
  }
}

@-webkit-keyframes scroll-track {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes scroll-track {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.underline {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, rgba(128, 128, 128, 0.1)));
  background: linear-gradient(transparent 70%, rgba(128, 128, 128, 0.1) 0%);
  z-index: 0;
  padding: 0 0.1em;
  display: inline-block;
}

.greet_area {
  position: relative;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 1;
  margin-bottom: 80px;
  background: #f1f1f1;
}
.greet_area:before {
  position: absolute;
  content: "";
  width: 40%;
  height: 80%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  z-index: -1;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26842/recruit1.jpg) no-repeat center/cover;
}
.greet_area .greet_area_box {
  position: relative;
  top: 0;
  right: 0;
  width: 40%;
  padding: 60px 40px;
  margin-left: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 15%;
}
.greet_area .greet_area_box .inner {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  margin: auto;
  z-index: 1;
}
.greet_area .greet_area_box .inner p + p {
  margin-top: 18px;
}
@media screen and (max-width: 1025px) {
  .greet_area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 0;
    margin-top: 60px;
  }
  .greet_area:before {
    width: 100%;
    height: auto;
    top: 0;
    padding-bottom: 56.25%;
    -webkit-transform: none;
            transform: none;
  }
  .greet_area .greet_area_box {
    position: relative;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    padding: 45px 15px;
    margin: 58.25% auto 0;
  }
  .greet_area .greet_area_box::before {
    width: 70%;
    height: 70%;
    top: 50%;
    left: 50%;
    right: auto;
    background: url(../img/mark.png) no-repeat center/contain;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .greet_area .greet_area_box .inner p + p {
    margin-top: 12px;
  }
}
@media screen and (max-width: 639px) {
  .greet_area {
    padding: 40px 0;
  }
  .greet_area .greet_area_box {
    padding: 35px 15px;
    margin: 40.25% auto 0;
  }
}
.greet_area.type-recruit::before {
  background: url(../img/recruit01.jpg) no-repeat center/cover;
}
.greet_area.type-recruit .greet-ttl {
  font-size: 3.5rem;
}
.greet_area.type-recruit .greet-ttl span {
  color: #808080;
  font-size: 1.5rem;
  display: block;
}

.point_box .img {
  margin-bottom: 20px;
  position: relative;
  text-align: center;
}

.point_box .ttl {
  font-size: 2.3rem;
  vertical-align: middle;
  color: #808080;
  font-weight: 800;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
}

.point_box .txt {
  margin-bottom: 30px;
}

@media all and (max-width: 639px) {
  .point_box {
    padding: 30px 0;
  }
  .point_box .ttl {
    font-size: 1.6rem;
  }
}
.bg_slide {
  position: absolute;
  inset: 0;
  z-index: 0; /* 最背面 */
  overflow: hidden;
  pointer-events: none; /* 背景として操作不可に */
}

/* お知らせCMS
----------------------------------*/
.txt-common {
  padding: 20px 10px 0;
}

.single_02 {
  margin: 0 auto;
  max-width: 1200px;
  padding: 104px 0;
}

.news_scroll {
  max-height: 350px;
  overflow-y: auto;
  overflow-x: hidden;
  /* スクロールバーを常に表示（Chrome / Edge / Safari） */
}
.news_scroll::-webkit-scrollbar {
  width: 8px; /* ← バーの太さ */
}
.news_scroll::-webkit-scrollbar-track {
  background: #e4e4e4; /* ← うっすらグレーの背景 */
  border-radius: 10px;
}
.news_scroll::-webkit-scrollbar-thumb {
  background: #8bc34a; /* ← 緑系（サイトに合わせたカラー） */
  border-radius: 10px;
}
.news_scroll {
  /* Firefox 用 */
  scrollbar-width: thin; /* 細めバー */
  scrollbar-color: #8bc34a #e4e4e4;
}

.news_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.news_box .news_title {
  width: 24%;
  padding-top: 0.5em;
}
.news_box .news_contents {
  width: 72%;
}

.news-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4px 4px 14px;
  border-bottom: 0.9px solid #ddd;
}
.news-list li:not(:last-of-type) {
  margin-bottom: 15px;
}
.news-list li .date {
  font-size: 1.2rem;
  color: #808080;
  border: 0.9px solid #808080;
  padding: 4px 6px;
  /*background: #111;*/
}
@media screen and (max-width: 639px) {
  .news-list li .date {
    font-size: 12px;
  }
}
.news-list li .txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 20px;
  line-height: 1.4;
}
.news-list li .txt a {
  color: #af0909;
  text-decoration: underline;
}
@media screen and (max-width: 1025px) {
  .news-list li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .news-list li .data {
    display: inline-block;
    font-size: 13px;
    padding: 4px;
  }
  .news-list li .txt {
    margin: 5px 0 0;
    display: block;
  }
}

/*feature-content*/
.feature-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  min-height: 100vh;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  z-index: 1;
}
.feature-content.type1 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.feature-content.type1 .image {
  left: 0;
}
.feature-content .image {
  background-color: #aaa;
  position: absolute;
  top: 0;
  right: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  z-index: -1;
  background-attachment: fixed;
}
.feature-content .image.b01 {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28086/top_greeting.webp);
  background-position: 30% 50%;
}
.feature-content .image.b02 {
  background-image: url(../img/nae.jpg);
}
.feature-content .image.b03 {
  background-image: url(../img/kankyou.jpg);
}
.feature-content.show .image {
  opacity: 1;
}
.feature-content .content-txt {
  padding: 50px;
  position: relative;
  text-align: center;
  line-height: 2.5;
}
@media screen and (max-width: 639px) {
  .feature-content .content-txt {
    text-align: left;
  }
}
.feature-content .content-txt .big-ttl {
  mix-blend-mode: overlay;
  position: relative;
  top: -50%;
  margin-bottom: 60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 10.5rem;
  margin-top: -30px;
  color: #808080;
  font-family: "Zen Old Mincho", serif;
  line-height: 1.1;
  opacity: 0.89;
}
.feature-content .content-txt .big-ttl.type1 {
  right: -2%;
  left: auto;
}
.feature-content .content-txt .big-ttl.type2 {
  font-size: 9rem;
  width: 100%;
  top: -25%;
}
.feature-content .content-txt .big-sub-ttl {
  position: absolute;
  bottom: -50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 10rem;
  display: block;
  opacity: 0.1;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  color: #555;
}
@media screen and (max-width: 1101px) {
  .feature-content .content-txt {
    padding: 30px;
  }
  .feature-content .content-txt .big-ttl {
    font-size: 9rem;
    top: -45%;
  }
  .feature-content .content-txt .big-ttl.type2 {
    font-size: 7rem;
    top: -20%;
  }
}
@media screen and (max-width: 1025px) {
  .feature-content {
    min-height: auto;
    padding: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .feature-content.type1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .feature-content .image {
    position: relative;
    height: 250px;
    width: 100%;
    margin-bottom: 40px;
    background-attachment: scroll;
  }
  .feature-content .image.b01 {
    opacity: 1 !important;
  }
  .feature-content .image.b02 {
    opacity: 1 !important;
  }
  .feature-content .image.b03 {
    opacity: 1 !important;
  }
  .feature-content .content-txt {
    width: 83%;
    padding: 10px;
  }
  .feature-content .content-txt .big-ttl {
    font-size: 6rem;
    position: relative;
    line-height: 1;
    opacity: 0.2;
  }
  .feature-content .content-txt .big-ttl span {
    padding-left: 0;
    font-size: 2rem;
  }
  .feature-content .content-txt .big-ttl.type2 {
    font-size: 6rem;
  }
}
@media screen and (max-width: 639px) {
  .feature-content {
    margin-bottom: 30px;
  }
  .feature-content .content-txt {
    margin-top: 15px;
    width: 100%;
    padding: 0;
  }
  .feature-content .content-txt .big-ttl {
    font-size: 3rem;
    margin-bottom: 0;
    opacity: 1;
  }
  .feature-content .content-txt .big-ttl.type2 {
    font-size: 3rem;
  }
}

#mouse-stalker {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  -webkit-transition: width 0.3s, height 0.3s, margin 0.3s;
  transition: width 0.3s, height 0.3s, margin 0.3s;
  z-index: 9999;
  mix-blend-mode: difference;
  margin-top: -15px;
  margin-left: -15px;
}
#mouse-stalker.is_active {
  width: 80px;
  height: 80px;
  margin-top: -40px;
  margin-left: -40px;
}