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

a {
  color: #007942;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

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

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

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

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

.bold {
  font-weight: 600;
}

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

.mincho {
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 600;
  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;
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
}

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

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

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

.loader {
  align-items: center;
  background: #fdfdfd;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
}
.loader::after {
  animation: loader 0.5s linear infinite;
  border: 1px solid #009250;
  border-radius: 50%;
  border-right: 1px solid rgba(0, 146, 80, 0.2);
  border-top: 1px solid rgba(0, 146, 80, 0.2);
  content: "";
  height: 70px;
  width: 70px;
}
.loader.off {
  display: none;
}

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

@keyframes anim-gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
#l-header {
  width: 100%;
  position: relative;
  z-index: 200;
  top: 0;
  left: 0;
  transition: all 0.2s ease-in;
}
#l-header.is-fixed {
  position: fixed;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
#l-header.is-fixed .inner #logo .logo1 {
  display: none;
}
#l-header.is-fixed .inner #logo .logo2 {
  display: block;
}
#l-header.is-fixed .head-right .head-right_contact .head-right_tel a {
  text-shadow: none;
}
#l-header.is-fixed .head-right .head-right_contact .head-right_tel a:hover {
  color: #21a2af;
}
#l-header.is-fixed .head-right .head-right_contact .head-right_mail a {
  text-shadow: none;
}
#l-header.is-fixed .head-right .head-right_contact .head-right_mail a:hover {
  color: #009250;
}
#l-header .inner {
  display: flex;
  flex-wrap: wrap;
  max-width: 95%;
  min-width: 1000px;
  margin: 0 auto;
  padding: 8px;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1025px) {
  #l-header .inner {
    min-width: initial;
  }
}
#l-header .inner .logo2 {
  display: none;
}
#l-header .head-right {
  margin-left: auto;
}
@media screen and (max-width: 1025px) {
  #l-header .head-right {
    margin-left: 0;
    margin-right: auto;
  }
}
#l-header .head-right_txt {
  font-size: 12px;
  max-width: 630px;
  display: block;
  color: #111;
  letter-spacing: 0.1rem;
  margin-bottom: 4px;
  margin-right: 10px;
}
#l-header .head-right_contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  margin-left: auto;
}
#l-header .flee_phone .tel {
  display: flex;
  flex-direction: column;
  font-size: 36px;
  text-align: center;
}
#l-header .flee_phone .tel .nummber {
  display: flex;
  align-items: center;
  letter-spacing: 0;
}
#l-header .flee_phone .tel .ico {
  width: 44px;
  margin-right: 2px;
  display: flex;
  align-items: center;
}
#l-header .flee_phone .tel a {
  color: #002c18;
  font-size: 2.5rem;
  position: relative;
  font-family: "Oswald", sans-serif;
  font-weight: 900;
  border-radius: 30px;
  padding: 5px 0px;
  font-weight: 600;
}
@media screen and (max-width: 1025px) {
  #l-header .flee_phone {
    display: none;
  }
}
#l-header .head-right-sns {
  display: flex;
  gap: 20px;
  margin-left: 40px;
}
#l-header .head-right-sns a {
  color: #fefefe;
  font-size: 3rem;
}
#l-header .head-right_tel {
  line-height: 1.2;
  text-align: center;
}
#l-header .head-right_tel span {
  font-size: 1rem;
  display: block;
}
#l-header .head-right_tel a {
  background: transparent;
  font-weight: 600;
  font-size: 2.5rem;
  position: relative;
  font-family: "Oswald", sans-serif;
  font-weight: 900;
  border-radius: 30px;
  padding: 5px 14px;
  color: #009250;
}
#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_freetel a {
  background: transparent;
  font-weight: 600;
  font-size: 2.5rem;
  position: relative;
  font-family: "Oswald", sans-serif;
  font-weight: 900;
  border-radius: 30px;
  padding: 5px 20px;
  padding-right: 0;
  color: #E50012;
}
#l-header .head-right_freetel a:before {
  content: "";
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26352/free1.gif) no-repeat 50%/contain;
  margin-right: 6px;
  width: 50px;
  height: 50px;
  left: -35px;
  position: absolute;
}
#l-header .head-right_freetel a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1025px) {
  #l-header .head-right_freetel {
    display: none;
  }
}
#l-header .head-right_mail a {
  display: block;
  position: relative;
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 1025px) {
  #l-header .head-right_mail {
    display: none;
  }
}
#l-header .head-right_mail {
  margin-right: 20px;
}
#l-header .head-right_mail a {
  padding: 8px 10px 8px 35px;
  background: #009250;
  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;
}
#l-header .head-right_mail a:hover {
  background: #222;
}

#header_nav {
  position: relative;
  width: 545px;
  margin-left: auto;
  margin-right: 10px;
}
#header_nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}
#header_nav ul li {
  position: relative;
  flex: 1 0 auto;
}
#header_nav ul li.btn-contact {
  margin-top: 15px;
}
#header_nav ul li.btn-contact a {
  padding: 7px 20px 7px 40px;
  border-radius: 30px;
  background: #009250;
  color: #333;
  display: inline-block;
  position: relative;
}
#header_nav ul li.btn-contact a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 5px;
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
}
#header_nav ul li.btn-contact a:after {
  display: none;
}
#header_nav ul li.btn-contact a:hover {
  background: #00693a;
}
#header_nav ul li a {
  display: block;
  color: black;
  position: relative;
  line-height: 1.4;
  font-size: 1.8rem;
  padding: 10px 0;
  font-weight: 600;
  text-align: center;
}
#header_nav ul li a span {
  display: block;
  font-size: 1rem;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  color: #2E2982;
  position: relative;
  text-transform: uppercase;
}
#header_nav ul li a:after {
  position: absolute;
  content: "";
  width: 0;
  height: 3px;
  background: #009250;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0px;
  transition: 0.2s width ease-in;
}
#header_nav ul li a:hover:after, #header_nav ul li a.active:after {
  width: 20px;
}
#header_nav ul li a:hover {
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}
#header_nav .dropdown {
  display: none;
  position: absolute;
  left: 0px;
  top: 45px;
  z-index: 999;
  padding-top: 20px;
}
#header_nav .dropdown.drop-last {
  left: auto;
  right: -80px;
}
#header_nav .dropdown .dropdown-ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 8px;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  padding: 15px;
}
#header_nav .dropdown .dropdown-li {
  border-right: 0;
  background: #fff;
  border: 1px solid #009250;
  width: 140px;
}
#header_nav .dropdown .dropdown-li a {
  display: block;
  width: 100%;
  padding: 12px 10px;
  color: #009250;
  font-size: 1.3rem;
  letter-spacing: 0;
  text-shadow: none;
}
#header_nav .dropdown .dropdown-li a .footer-only {
  display: none;
}
#header_nav .dropdown .dropdown-li a:hover {
  color: #fff;
  background-color: #009250;
}
#header_nav .dropdown .dropdown-li a:after {
  display: none;
}

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

/* swiper
----------------------------------*/
@keyframes zoom-in {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.12);
  }
}
.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {
  animation: zoom-in 11s linear 0s 1 normal both;
}

.topview {
  max-width: 95%;
  margin: 0 auto;
}

/* new_bnr
----------------------------------*/
.new_bnr {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.new_bnr li {
  position: relative;
  overflow: hidden;
  width: 49%;
  height: 80vh;
  box-sizing: border-box;
}
@media screen and (max-width: 1101px) {
  .new_bnr li {
    height: 50vh;
  }
}
.new_bnr li .bg {
  position: absolute;
  z-index: 1;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  transition: all 0.5s ease-out;
  transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  will-change: transform;
  filter: brightness(0.9);
}
.new_bnr li .bg.bg_new_01 {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26352/slide1.jpg);
}
.new_bnr li .bg.bg_new_02 {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26352/slide2.jpg);
}
.new_bnr li a {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: block;
}
.new_bnr li .text {
  position: absolute;
  z-index: 3;
  bottom: 50px;
  left: 50px;
  color: #fff;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.2;
}
.new_bnr li .text span {
  display: block;
  font-size: 1.2rem;
}
.new_bnr li .btn {
  position: absolute;
  bottom: 58px;
  right: 50px;
  z-index: 1;
  display: block;
  width: 58px;
  height: 58px;
  border: 1px solid #fff;
  border-radius: 50%;
  transition: all 0.12s ease-in 0s;
}
.new_bnr li .btn:before {
  position: absolute;
  z-index: 2;
  display: block;
  content: "";
  top: 25px;
  left: 24px;
  width: 6.5px;
  height: 6.5px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  transition: all 0.12s ease-in 0s;
}
.new_bnr li:hover .bg {
  transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0.95);
}
.new_bnr li:hover .btn {
  opacity: 1;
  -moz-opacity: 1;
  filter: alpha(opacity=100);
  background-color: #009250;
  border: 1px solid #009250;
}
.new_bnr li:hover .btn:before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

#slideshow {
  position: relative;
  margin-inline: auto;
  overflow: hidden;
}
#slideshow:before {
  position: absolute;
  content: "";
  bottom: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 146, 80, 0.1);
  z-index: -1;
  mix-blend-mode: color-burn;
  pointer-events: none;
}
#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/26352/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/26352/2.jpg);
  background-position: 50% 80%;
}
#slideshow .swiper-slide.slide3:before {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26352/3.jpg);
}
#slideshow .slide-img {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 88vh;
}
#slideshow .slide-img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0.8);
  -o-object-position: center bottom;
     object-position: center bottom;
}
@media screen and (max-width: 1101px) {
  #slideshow .slide-img {
    height: 70vw;
  }
}
@media screen and (max-width: ) {
  #slideshow .slide-img {
    height: 82vh;
  }
}
@media screen and (max-width: 639px) {
  #slideshow .slide-img {
    height: 100vw;
  }
  #slideshow .slide-img img {
    -o-object-position: left;
       object-position: left;
  }
}

#slide-wrap {
  position: relative;
}

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

@keyframes typinganime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#catch {
  z-index: 50;
  position: absolute;
  left: 3%;
  bottom: 8%;
  z-index: 10;
  opacity: 0;
  max-width: 750px;
}
#catch.on {
  transition: 1.4s ease-in opacity;
  opacity: 1;
}
#catch .catch-txt {
  color: #fefefe;
  font-size: 2.2rem;
  padding-left: 7vw;
  margin-top: 20px;
  font-weight: normal;
  white-space: nowrap;
}
#catch .catch-txt span {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  display: block;
  font-weight: normal;
  font-size: 1.3rem;
}
@media screen and (max-width: 1101px) {
  #catch {
    width: 50%;
  }
}
@media screen and (max-width: 1025px) {
  #catch {
    width: 60%;
  }
  #catch .catch-txt {
    padding-left: 8vw;
  }
}
@media screen and (max-width: 639px) {
  #catch {
    width: 85%;
  }
  #catch .catch-txt {
    font-size: 1.5rem;
    padding-left: 12vw;
  }
}

.slide-txt {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 40;
  font-size: 2.2rem;
  color: #fff;
  font-weight: 600;
  text-shadow: 0 0 8px rgba(73, 45, 24, 0.1);
}
@media screen and (max-width: 639px) {
  .slide-txt {
    width: 65%;
  }
}

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

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

.contact_bnr {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.contact_bnr.type_service {
  margin-top: 40px;
  padding: 18px;
  background: #fefefe;
  border-radius: 20px;
}
.contact_bnr.type_shop {
  margin-bottom: 0;
}
.contact_bnr .tel {
  display: flex;
  flex-direction: column;
  font-size: 36px;
  text-align: center;
}
.contact_bnr .tel .nummber {
  display: flex;
  align-items: center;
  letter-spacing: 0;
  margin: 0 auto;
}
.contact_bnr .tel .ico {
  width: 44px;
  margin-right: 2px;
  display: flex;
  align-items: center;
}
.contact_bnr .tel a {
  color: #fff;
  font-size: 2.5rem;
  position: relative;
  font-family: "Oswald", sans-serif;
  font-weight: 900;
  border-radius: 30px;
  padding: 5px 0px;
  font-weight: 600;
}
.contact_bnr > li {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 320px;
  margin-right: 20px;
}
.contact_bnr > li:last-child {
  margin-right: 0px;
}
@media screen and (max-width: 639px) {
  .contact_bnr > li:last-child {
    margin-right: auto;
  }
}
@media screen and (max-width: 639px) {
  .contact_bnr > li {
    width: 100%;
    margin: 0 auto 10px;
  }
}
.contact_bnr > li .bnr_map {
  color: #fff;
  width: 280px;
  background: #f66009;
  font-size: 1.6rem;
  padding: 15px 0;
  position: relative;
}
.contact_bnr > li .bnr_map i {
  display: inline-block;
  margin-right: 5px;
}
@media screen and (max-width: 639px) {
  .contact_bnr > li .bnr_map {
    font-size: 1.3rem;
  }
}
.contact_bnr > li .bnr_map:after {
  position: absolute;
  content: "";
  right: -25px;
  top: 50%;
  width: 50px;
  height: 1px;
  background: #fff;
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
}
.contact_bnr > li .bnr_map:hover {
  background: rgba(46, 41, 130, 0.6);
}
.contact_bnr > li .bnr_map:hover:after {
  right: -32px;
}
.contact_bnr > li .bnr_txt p {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.contact_bnr > li .bnr_tel {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.contact_bnr > li .bnr_tel .txt {
  padding: 5px 0;
  white-space: nowrap;
  color: #fefefe;
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
}
.contact_bnr > li .bnr_tel .txt:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
  font-size: 0.8em;
}
@media screen and (max-width: 639px) {
  .contact_bnr > li .bnr_tel .txt {
    font-size: 2.5rem;
  }
}
.contact_bnr > li .bnr_tel:hover {
  color: #009250;
  background: transparent;
}
@media screen and (max-width: 639px) {
  .contact_bnr > li .bnr_tel {
    font-size: 2rem;
  }
}
.contact_bnr > li .bnr_tel2 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.contact_bnr > li .bnr_tel2 .txt {
  padding: 5px 0;
  white-space: nowrap;
  color: #fefefe;
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
}
.contact_bnr > li .bnr_tel2 .txt:before:before {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  left: -20px;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26352/free1.gif) no-repeat 50%/contain;
}
@media screen and (max-width: 639px) {
  .contact_bnr > li .bnr_tel2 .txt {
    font-size: 2.8rem;
  }
}
.contact_bnr > li .bnr_tel2:hover {
  color: #009250;
  background: transparent;
}
@media screen and (max-width: 639px) {
  .contact_bnr > li .bnr_tel2 {
    font-size: 2rem;
  }
}
.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: #009250;
}
.contact_bnr > li .bnr_fax:before {
  font-family: "Font Awesome 5 Free";
  content: "\f1ac";
  font-weight: 900;
}
.contact_bnr > li .bnr_mail {
  width: 280px;
  padding: 10px 0;
  border-radius: 40px;
  color: #fff;
  font-size: 1.8rem;
  border: 1px solid #fff;
  letter-spacing: 0;
}
.contact_bnr > li .bnr_mail:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
}
.contact_bnr > li .bnr_mail.type1:before {
  font-family: "Font Awesome 5 Free";
  content: "\f15c";
  font-weight: 900;
}
@media screen and (max-width: 639px) {
  .contact_bnr > li .bnr_mail {
    font-size: 1.3rem;
    padding: 10px;
    width: 100%;
  }
}
.contact_bnr > li .bnr_mail:hover {
  background: #009250;
}
.contact_bnr > li .bnr_line {
  width: 280px;
  padding: 10px 0;
  border-radius: 40px;
  color: #fff;
  font-size: 1.8rem;
  letter-spacing: 0;
  border: 1px solid #fff;
  position: relative;
}
@media screen and (max-width: 639px) {
  .contact_bnr > li .bnr_line {
    font-size: 1.3rem;
    padding: 10px;
    width: 100%;
  }
}
.contact_bnr > li .bnr_line:hover {
  background: #009250;
}
.contact_bnr > li a {
  display: block;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.2rem;
  padding: 12px 10px;
}
.contact_bnr > li a:before {
  margin-right: 5px;
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 639px) {
  .contact_bnr > li a {
    margin: 0 auto;
    white-space: nowrap;
    padding: 5px;
    width: 100%;
  }
}

ruby rt {
  font-size: 1rem;
}

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

/* footer
----------------------------------*/
.bg-footer {
  position: relative;
}
.bg-footer:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26352/footer.jpg);
  background-position: center 40%;
  background-size: cover;
  background-color: #585858;
  filter: brightness(0.5);
  background-blend-mode: soft-light;
}
@media screen and (max-width: 639px) {
  .bg-footer:before {
    left: auto;
    right: 0;
  }
}

.footer-upper-warp {
  position: relative;
}
.footer-upper-warp .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-upper-warp .upper-left {
  width: 37%;
  padding-left: 20px;
  border-right: 1px solid rgba(204, 204, 204, 0.3);
}
.footer-upper-warp .upper-left .sns-list {
  margin-left: 20px;
}
@media screen and (max-width: 1101px) {
  .footer-upper-warp .upper-left {
    width: 100%;
    border-right: 0;
    padding: 0 20px 10px;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 10px;
  }
}
@media screen and (max-width: 639px) {
  .footer-upper-warp .upper-left {
    padding-top: 20px;
  }
}
.footer-upper-warp .upper-right {
  padding-left: 30px;
  flex: 1;
}
@media screen and (max-width: 1101px) {
  .footer-upper-warp .upper-right {
    width: 100%;
    padding: 0 20px;
    text-align: center;
  }
}
@media screen and (max-width: 1025px) {
  .footer-upper-warp .upper-right {
    display: none;
  }
}
.footer-upper-warp .footer-info {
  max-width: 1100px;
  margin: 0 auto;
}

#l-footer {
  font-size: 1.5rem;
  position: relative;
}
#l-footer:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: -1;
}
#l-footer .inner {
  margin: 0 auto;
  max-width: 1000px;
  position: relative;
  z-index: 2;
  padding: 60px 10px 60px;
}
#l-footer .inner.type1 {
  padding: 0 10px 60px;
}
@media screen and (max-width: 1101px) {
  #l-footer .inner {
    width: 100%;
  }
}
@media screen and (max-width: 639px) {
  #l-footer {
    font-size: 1.2rem;
  }
  #l-footer .inner {
    padding: 30px 20px;
  }
}

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

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

.footer-document {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-document li {
  margin-bottom: 4px;
}
.footer-document li:not(:last-of-type) {
  margin-right: 14px;
}
.footer-document li a {
  display: flex;
  align-items: center;
  color: #009250;
  font-weight: 600;
  letter-spacing: 0;
  border-bottom: 1px solid #492d18;
}
.footer-document li a:before {
  display: inline-block;
  content: "●";
  margin-right: 4px;
  font-size: 0.6em;
}

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

/* footer_navi
----------------------------------*/
.footer_navi {
  margin-top: 20px;
  position: relative;
}
@media screen and (max-width: 1025px) {
  .footer_navi {
    max-width: 100%;
    margin-inline: auto;
    display: none;
  }
}
.footer_navi ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 600px;
  text-align: center;
}
.footer_navi ul li {
  flex: 1 0 auto;
}
@media screen and (max-width: 639px) {
  .footer_navi ul li {
    width: 33%;
  }
}
.footer_navi ul li .footer-only {
  display: block;
}
.footer_navi ul li a {
  color: #111;
  font-size: 1.5rem;
  position: relative;
  font-weight: 600;
  border-bottom: 1px solid #fff;
}
.footer_navi ul li a .eng {
  display: none;
}
.footer_navi ul li a span {
  display: none;
}
.footer_navi ul li a span.ja {
  font-family: "Zen Kaku Gothic New", "YakuHanJP", Lato, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #ccc;
  padding: 4px;
  font-size: 1.3rem;
}
@media screen and (max-width: 639px) {
  .footer_navi ul li a span.ja {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 639px) {
  .footer_navi ul li a {
    font-size: 1.1rem;
  }
}
.footer_navi ul li a:hover {
  color: #009250;
}
.footer_navi ul li .dropdown {
  display: none;
}
@media screen and (max-width: 639px) {
  .footer_navi ul li .dropdown {
    padding: 10px;
  }
}
.footer_navi ul li .dropdown .dropdown-ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 15px;
  max-width: 320px;
}
.footer_navi ul li .dropdown .dropdown-li {
  width: 100%;
}
.footer_navi ul li .dropdown .dropdown-li:first-of-type {
  display: block;
}
.footer_navi ul li .dropdown .dropdown-li a {
  display: block;
  border: none;
  font-size: 13px;
  color: #ddd;
  line-height: 1.5;
  letter-spacing: 0;
}
.footer_navi ul li .dropdown .dropdown-li a:before {
  background: #fff;
}

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

.flogo {
  display: block;
  width: 300px;
  position: relative;
  margin-bottom: 10px;
}
@media screen and (max-width: 1101px) {
  .flogo {
    width: 220px;
  }
}
@media screen and (max-width: 639px) {
  .flogo {
    margin: 0 auto 10px;
    width: 220px;
  }
}

.address {
  font-size: 14px;
}

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

/*feature-list
------------------------------------*/
.features-list {
  position: relative;
  margin: 40px auto 0;
}
@media screen and (max-width: 639px) {
  .features-list {
    padding-bottom: 4rem;
  }
}
.features-list > .swiper-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 639px) {
  .features-list > .swiper-wrapper {
    justify-content: flex-start;
    flex-wrap: nowrap;
  }
}
.features-list > .swiper-wrapper > .swiper-slide {
  width: 24%;
  height: auto;
  margin: 0 1% 45px 0;
  border: 1px solid #009250;
  position: relative;
  background: #009250 !important;
}
.features-list > .swiper-wrapper > .swiper-slide:nth-child(4n) {
  margin-right: 0;
}
@media screen and (max-width: 639px) {
  .features-list > .swiper-wrapper > .swiper-slide {
    width: 100% !important;
    margin-bottom: 20px;
  }
}
.features-list > .swiper-wrapper > .swiper-slide .img-area {
  width: 100%;
  height: 150px;
}
.features-list > .swiper-wrapper > .swiper-slide .img-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.features-list > .swiper-wrapper > .swiper-slide .txt {
  margin-bottom: 10px;
  font-size: 0.9em;
  padding: 0 15px;
  font-weight: 500;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: end;
  height: 125px;
}
@media screen and (max-width: 639px) {
  .features-list > .swiper-wrapper > .swiper-slide .txt {
    height: auto;
    align-items: center;
  }
}
.features-list > .swiper-wrapper > .swiper-slide .ttl {
  position: relative;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  color: #009250;
  width: 87%;
  text-align: center;
  font-weight: 600;
  background: #fefefe;
  line-height: 2rem;
  padding: 5px 10px;
  font-size: 1.8rem;
}
.features-list .swiper-controller {
  display: none;
}
@media screen and (max-width: 639px) {
  .features-list .swiper-controller {
    display: flex;
    gap: 3.6rem;
    align-items: center;
    justify-content: flex-end;
    margin-top: 3.2rem;
    position: absolute;
    bottom: 0;
    left: 20px;
    bottom: -1.5rem;
  }
}
.features-list .swiper-button-prev,
.features-list .swiper-button-next {
  position: relative;
  margin: 0;
  display: grid;
  place-content: center;
  width: 6.4rem;
  height: 6.4rem;
  cursor: pointer;
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  background-image: none;
  border-radius: 50%;
  background: #fefefe;
}
@media screen and (max-width: 1025px) {
  .features-list .swiper-button-prev,
  .features-list .swiper-button-next {
    width: 4rem;
    height: 4rem;
  }
}
.features-list .swiper-button-prev::before,
.features-list .swiper-button-next::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: 50%;
}
.features-list .swiper-button-prev::after,
.features-list .swiper-button-next::after {
  width: 1.2rem;
  height: 1.2rem;
  content: "";
  border: solid #009250;
  border-width: 2px 2px 0 0;
}
.features-list .swiper-button-prev:hover::before,
.features-list .swiper-button-next:hover::before {
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  transform: scale(1.2);
}
.features-list .swiper-button-prev::after {
  margin-left: 0.4rem;
  transform: rotate(-135deg);
}
.features-list .swiper-button-next::after {
  margin-right: 0.4rem;
  transform: rotate(45deg);
}
.features-list .swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}

.swiper-controller {
  display: none;
}
@media screen and (max-width: 639px) {
  .swiper-controller {
    display: flex;
    gap: 3.6rem;
    align-items: center;
    justify-content: flex-end;
    margin-top: 3.2rem;
    position: absolute;
    bottom: 0;
    left: 0;
    bottom: -1.5rem;
  }
}

.swiper-button-prev,
.swiper-button-next {
  position: relative;
  margin: 0;
  display: grid;
  place-content: center;
  width: 6.4rem;
  height: 6.4rem;
  cursor: pointer;
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  background-image: none;
  border-radius: 50%;
}
@media screen and (max-width: 1025px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 4rem;
    height: 4rem;
  }
}
.swiper-button-prev::before,
.swiper-button-next::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: 50%;
  box-shadow: 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.05), -0.8rem -0.8rem 1.2rem #fff;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  width: 1.2rem;
  height: 1.2rem;
  content: "";
  border: solid #009250;
  border-width: 2px 2px 0 0;
}
.swiper-button-prev:hover::before,
.swiper-button-next:hover::before {
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  transform: scale(1.2);
}

.swiper-button-prev::after {
  margin-left: 0.4rem;
  transform: rotate(-135deg);
}

.swiper-button-next::after {
  margin-right: 0.4rem;
  transform: rotate(45deg);
}

.swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}

/*----------------------------------
 top-contents
----------------------------------*/
.top-wrap {
  margin: 0px auto 0;
  padding: 80px 0 0px;
  position: relative;
}
.top-wrap .titlearea {
  position: relative;
  z-index: 1;
  padding: 0px 0;
  font-size: 3rem;
  text-align: center;
}
.top-wrap .titlearea h2 {
  color: #333;
  font-weight: 700;
}
.top-wrap .titlearea .eng {
  position: absolute;
  font-size: 8rem;
  white-space: nowrap;
  line-height: 1;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: -45px;
  opacity: 0.3;
  color: #009250;
  font-weight: bold;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  z-index: -1;
}
.top-wrap .mainarea {
  margin: 80px auto 0;
  font-size: 1.6rem;
}
.top-wrap .mainarea .main {
  font-size: 2rem;
  font-weight: bold;
}
.top-wrap .mainarea .main span {
  font-size: 2.8rem;
  padding: 0 10px;
  color: #009250;
}
.top-wrap .mainarea .main span span {
  color: #009250;
  padding: 0px;
}
@media screen and (max-width: 1300px) {
  .top-wrap .mainarea {
    max-width: 95%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 639px) {
  .top-wrap .mainarea p {
    font-size: 1.2rem;
  }
  .top-wrap .mainarea .main {
    font-size: 1.8rem;
  }
  .top-wrap .mainarea .main span {
    font-size: 2rem;
  }
}
.top-wrap .photoarea {
  width: 95%;
  margin: 70px 0 50px;
}
.top-wrap .photoarea .photo img {
  height: 380px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-wrap .photoarea > .txt {
  margin-top: 50px;
}
.top-wrap .photoarea span {
  font-size: 2.6rem;
  padding: 0 10px;
}
.top-wrap .photoarea span span {
  color: #009250;
  padding: 0px;
  font-weight: bold;
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 600;
}
@media screen and (max-width: 1440px) {
  .top-wrap .photoarea {
    width: 100%;
    margin: 50px 0;
    padding-right: 50px;
  }
  .top-wrap .photoarea .photo img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .top-wrap .titlearea {
    font-size: 3rem;
  }
}
@media screen and (max-width: 1025px) {
  .top-wrap {
    padding: 80px 0 80px;
  }
  .top-wrap .mainarea {
    margin: 80px auto;
    font-size: 1.6rem;
  }
  .top-wrap .mainarea .tcenter {
    padding: 0 40px;
  }
  .top-wrap .titlearea {
    font-size: 1.6rem;
  }
  .top-wrap .titlearea .eng {
    top: -20px;
    font-size: 6rem;
  }
  .top-wrap .mainarea {
    margin-top: 50px;
  }
  .top-wrap .photoarea {
    width: 100%;
    margin: 40px auto;
    padding-right: 0;
  }
  .top-wrap .photoarea .photo img {
    height: 200px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .top-wrap .photoarea .txt {
    padding: 20px 40px 0;
  }
}
@media screen and (max-width: 639px) {
  .top-wrap {
    padding: 80px 0 0px;
  }
  .top-wrap .mainarea {
    margin: 80px auto;
    font-size: 1.6rem;
  }
  .top-wrap .mainarea .tcenter {
    padding: 0 20px;
    text-align: left;
  }
  .top-wrap .titlearea .eng {
    font-size: 4rem;
  }
  .top-wrap .mainarea {
    margin: 50px auto 0;
  }
  .top-wrap .photoarea {
    width: 100%;
    margin: 40px auto;
    padding-right: 0;
  }
  .top-wrap .photoarea .photo img {
    height: 200px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .top-wrap .photoarea .txt {
    padding: 20px 20px 0;
  }
}

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

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

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

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

.bg-point {
  position: relative;
  z-index: 2;
}
.bg-point:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0px;
  width: 100%;
  height: 100%;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26352/body.jpg) repeat center/800px;
}

.map-box {
  max-width: 50%;
  padding: 40px;
}
@media screen and (max-width: 1025px) {
  .map-box {
    max-width: 80%;
    padding: 25px;
  }
}

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

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

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

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

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

/* contents
----------------------------------*/
.top-margin {
  margin-top: 80px;
}

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

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

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

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

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

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

.lsingle {
  float: left;
}

.rsingle {
  float: right;
}

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

.mbox2 {
  background: rgba(0, 146, 80, 0.1);
  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 .detail {
  line-height: 2;
}

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

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

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

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

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

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

/* mtitle
----------------------------------*/
.mtitle {
  margin: 0 auto 40px;
  text-align: center;
  position: relative;
  z-index: 3;
  padding-top: 50px;
}
.mtitle:before {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  content: attr(data-title);
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 4.4rem;
  text-align: center;
  color: #009250;
  line-height: 1;
  white-space: nowrap;
}
.mtitle .ja {
  font-size: 2rem;
  color: #333;
}
.mtitle.white {
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}
.mtitle.white:before {
  color: #fff;
}
.mtitle.white span {
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}
.mtitle.white span:after {
  background-color: #eee;
}
.mtitle.mtitle_left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}
.mtitle.mtitle_left:before {
  left: 0;
  transform: none;
}
.mtitle.mtitle_right {
  text-align: right;
  margin-left: auto;
  margin-right: 0;
}
@media screen and (max-width: 639px) {
  .mtitle {
    text-align: center;
    padding-top: 40px;
  }
  .mtitle:before {
    font-size: 2.6rem;
  }
  .mtitle .eng {
    font-size: 1.3rem;
  }
  .mtitle .ja {
    font-size: 1.5rem;
  }
}

.mtitle2 {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  font-weight: 600;
  position: relative;
}
.mtitle2.white .eng {
  color: #fff;
}
.mtitle2.white .ja {
  color: #fff;
}
.mtitle2:before {
  content: "";
  width: 20px;
  height: 1px;
  background: #dfa245;
  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: #009250;
  order: -1;
}
.mtitle2 .ja {
  font-size: 2.2rem;
  color: #333;
}
@media screen and (max-width: 639px) {
  .mtitle2:before {
    width: 15px;
  }
  .mtitle2 .eng {
    font-size: 2.5rem;
  }
  .mtitle2 .ja {
    font-size: 1.6rem;
  }
}

.mtitle3 {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  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: #009250;
  position: relative;
}
.mtitle3.type2 {
  position: initial;
}
.mtitle3.type2 .ja {
  border-right: none;
}
.mtitle3.type2 .eng {
  font-size: 5.8rem;
  text-transform: uppercase;
}
.mtitle3.type2 .eng::before {
  content: "";
  width: 3px;
  height: 100%;
  display: block;
  position: absolute;
  left: -10px;
  right: 0;
  margin: 0 auto;
  top: calc(-100% - 35px);
  background: #009250;
}
@media screen and (max-width: 639px) {
  .mtitle3 {
    left: 10px;
    top: 15px;
  }
  .mtitle3 .ja {
    font-size: 1.6rem;
  }
  .mtitle3 .eng {
    font-size: 1.3rem;
  }
  .mtitle3.type2 {
    writing-mode: initial;
    margin-bottom: 20px;
  }
  .mtitle3.type2 .eng {
    font-size: 3.5rem;
  }
  .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;
  padding-top: 10px;
  border-top: 1px solid #009250;
  text-align: center;
}
.mtitle_line span {
  display: block;
  font-size: 1.4rem;
  color: #009250;
}
.mtitle_line:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  content: "";
  opacity: 0.6;
  background-image: repeating-linear-gradient(-45deg, #009250, #aaa 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  backface-visibility: hidden;
}
@media screen and (max-width: 639px) {
  .mtitle_line {
    font-size: 1.4rem;
  }
  .mtitle_line span {
    font-size: 1.2rem;
  }
}

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

.mtitle5 {
  position: relative;
  margin-bottom: 20px;
}
.mtitle5 span {
  position: relative;
  z-index: 2;
  padding: 0 15px 8px;
  font-size: 3rem;
  line-height: 1.4;
  display: inline-block;
}
.mtitle5:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 60%;
  background: #73a44d;
  opacity: 0.3;
}
@media screen and (max-width: 639px) {
  .mtitle5 span {
    font-size: 1.8rem;
  }
}

.mtitle6 {
  margin-bottom: 20px;
  text-align: center;
}
.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 .ja {
  display: block;
  letter-spacing: 0.95px;
}

.mtitle_sub {
  padding-left: 0.5em;
  font-weight: 600;
  position: relative;
  border-left: 3px solid #009250;
  margin: 8px 0 15px;
  font-size: 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_sub2 {
  position: relative;
  margin-bottom: 30px;
  padding-left: 16px;
  border-left: 3px solid #009250;
  font-size: 2rem;
  padding-bottom: 3px;
  border-bottom: 1px solid #ccc;
}
.mtitle_sub2::before {
  content: attr(data-title);
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  color: #009250;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 3rem;
}
@media screen and (max-width: 1025px) {
  .mtitle_sub2 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 639px) {
  .mtitle_sub2 {
    font-size: 1.8rem;
  }
}
.mtitle_sub2 .ja {
  font-weight: 600;
  font-size: 1.4em;
  text-align: left;
}
.mtitle_sub2.white {
  border-left: 3px solid #fefefe;
}
.mtitle_sub2.white::before {
  color: #fefefe;
}
.mtitle_sub2.white .ja {
  color: #fefefe;
}

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

.mtitle_box2 {
  background: #009250;
  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;
}
@media screen and (max-width: 639px) {
  .mtitle_box2 {
    font-size: 1.8rem;
    line-height: 1.5;
    padding: 10px 10px 10px 15px;
    padding-right: 40px;
  }
  .mtitle_box2 span {
    font-size: 12px;
  }
}

.mtitle_box3 {
  position: relative;
  font-weight: 600;
  overflow: hidden;
  letter-spacing: 0.1rem;
  border-top: 2px solid #009250;
  border-bottom: 2px solid #009250;
  padding: 10px 10px 10px 20px;
  margin-bottom: 25px;
}
.mtitle_box3.type1 {
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
@media screen and (max-width: 639px) {
  .mtitle_box3 {
    font-size: 15px;
    line-height: 1.5;
    padding: 10px 10px 10px 15px;
    padding-right: 40px;
  }
  .mtitle_box3 span {
    font-size: 12px;
  }
  .mtitle_box3: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.8rem;
    padding: 4px 8px;
  }
}

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

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

/* btn
----------------------------------*/
.btn01 a {
  background: #009250;
  text-align: center;
  border: 1px solid #009250;
  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: #fff;
  color: #009250;
}
.btn01.mini a {
  font-size: 1.4rem;
}
.btn01.mail {
  flex-basis: 100%;
}
.btn01.mail a {
  background: #ffd803;
  margin: 15px auto 25px;
}
.btn01.mail a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 5px;
}
@media screen and (max-width: 639px) {
  .btn01 a {
    width: 95%;
  }
}
.btn01.btn-left a {
  margin: 15px 0;
}

.btn02 {
  width: 300px;
  margin: 20px auto 20px;
}
.btn02 a {
  display: block;
  position: relative;
  padding: 15px 30px 15px 5px;
  line-height: 24px;
  letter-spacing: 0.1rem;
  font-size: 1.5rem;
  text-align: center;
  color: #fff;
  background-image: linear-gradient(to right, #394578, #232c53);
  font-weight: 600;
}
.btn02 a i {
  display: block;
  position: absolute;
  top: 50%;
  right: -10px;
  width: 40px;
  height: 1px;
  background-color: #ddd;
  transition: all 0.3s ease;
}
.btn02 a:hover i {
  width: 34px;
}
.btn02.type1 a {
  background: #fff;
  color: #009250;
}
@media screen and (max-width: 639px) {
  .btn02 {
    width: 260px;
  }
  .btn02 a {
    font-size: 1.3rem;
  }
}

.btns.white a {
  color: #fff;
  border-bottom: 2px solid #fff;
}
.btns a {
  display: table;
  width: auto;
  margin-left: auto;
  border-bottom: 2px solid #009250;
  padding: 5px;
  font-size: 1.4rem;
}
.btns a:after {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  margin-left: 5px;
  font-weight: 600;
}
.btns a:hover {
  border-bottom: 2px solid #21a2af;
}
@media screen and (max-width: 639px) {
  .btns a {
    font-size: 1.2rem;
  }
}

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

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

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

/* page-title
----------------------------------*/
.page-title {
  position: relative;
  z-index: 3;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26352/page-title.jpg) no-repeat center 90%/cover;
}
.page-title:before {
  position: absolute;
  content: "";
  bottom: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  background-color: rgba(41, 44, 50, 0.5);
}
.page-title.type1 {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26352/page-title02.jpg) no-repeat center 50%/cover;
}
.page-title.type2 {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26352/page-title05.jpg) no-repeat center 50%/cover;
}
.page-title.type3 {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26352/page-title04.jpg) no-repeat center 50%/cover;
}
.page-title .inner {
  margin: 0 auto;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 1100px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1101px) {
  .page-title .inner {
    padding: 0 20px;
    height: 280px;
  }
}
@media screen and (max-width: 639px) {
  .page-title .inner {
    height: 75vw;
  }
}
.page-title .inner .page-lead {
  font-size: 2rem;
  position: relative;
  padding-bottom: 60px;
}
.page-title .inner .page-lead.on .eng {
  transform: translateX(0);
  opacity: 1;
}
.page-title .inner .page-lead.on .ja {
  opacity: 1;
  transform: translateY(0);
}
.page-title .inner .page-lead .eng {
  display: block;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 5rem;
  color: #fff;
  line-height: 1;
  opacity: 0;
  transform: translateX(-20%);
  transition: 0.5s all cubic-bezier(0.55, 0.05, 0.22, 0.99);
}
.page-title .inner .page-lead .ja {
  opacity: 0;
  transform: translateY(20px);
  position: relative;
  z-index: 4;
  transition: 0.5s all cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition-delay: 0.6s;
  display: inline-block;
  color: #fff;
  letter-spacing: 0.15em;
}
@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;
  }
}

.greet-img-box {
  display: flex;
  justify-content: space-between;
  position: absolute;
  right: 20px;
  bottom: -30px;
  width: 70%;
  z-index: 3;
}
.greet-img-box .child {
  width: 31%;
}

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

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

.bg-base {
  position: relative;
}
.bg-base:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(to bottom, rgba(0, 146, 80, 0.4) 0%, rgba(22, 157, 142, 0.33) 50%, rgba(27, 159, 158, 0.315) 65%, rgba(30, 161, 166, 0.3075) 75.5%, rgba(32, 161, 171, 0.3037) 82.85%, rgba(32, 162, 173, 0.3019) 88%, rgba(33, 162, 175, 0.3) 100%);
  opacity: 0.7;
}
.bg-base.type1 {
  position: relative;
}
.bg-base.type1:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: calc(100% - 80px);
  height: calc(100% - 40px);
  transform: translate(-50%, -50%);
  background: #e9e9e9;
  opacity: 1;
}
@media screen and (max-width: 1101px) {
  .bg-base.type1:before {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
}

.bg-green {
  background: rgba(0, 146, 80, 0.9);
}

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

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

.bg-gradient {
  background-image: linear-gradient(to right, #ffa6a6 0%, #fcfcfc 100%);
}

.bg-999 {
  background: #888;
}

.bg-blue {
  position: relative;
  background: transparent;
}
.bg-blue:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #B4DECB;
}

.bg-business {
  position: relative;
}
.bg-business .inner {
  position: relative;
}
.bg-business .inner:before, .bg-business .inner:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 50%;
  height: 37px;
  background: #fff;
}
.bg-business .inner:before {
  top: -2px;
  right: 0;
}
.bg-business .inner::after {
  left: 0;
  bottom: -2px;
}
.bg-business:before, .bg-business:after {
  position: absolute;
  content: "";
  top: 0;
  height: 100%;
}
.bg-business:before {
  right: 0;
  width: 100%;
  background-color: #fefefe;
  opacity: 0.8;
}
.bg-business:after {
  left: 0;
  width: 100%;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26352/bg-01.jpg) right top/cover;
  z-index: -1;
}
.bg-business.type-top-greet .inner {
  padding: 90px 0;
  margin-top: 60px;
}
@media screen and (max-width: 639px) {
  .bg-business.type-top-greet .inner {
    margin-top: 0;
  }
}
.bg-business.type-top-reuruit:after {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26352/top-recruit.jpg) right center/cover;
  opacity: 0.15;
}
.bg-business.type-top-reuruit:before {
  z-index: -2;
  opacity: 1;
}
.bg-business.type-top-reuruit .inner {
  margin: 0px auto 60px;
}
@media screen and (max-width: 639px) {
  .bg-business.type-top-reuruit .inner {
    margin: 40px auto;
  }
}
.bg-business.type-business1 {
  margin: 0px auto 0;
}
.bg-business.type-business1:after {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26352/slide1.jpg) right center/cover;
}
.bg-business.type-business1 .inner {
  padding: 40px 0;
}
.bg-business.type-business2 {
  margin: 80px auto 0;
}
.bg-business.type-business2:after {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26352/katawaku1.jpg) right center/cover;
}
.bg-business.type-business3 {
  margin: 0px auto 0;
}
.bg-business.type-business3:before {
  background-color: #fff;
}
.bg-business.type-business3:after {
  background: none;
}

.oblique-box {
  position: relative;
  height: 100px;
  margin-bottom: -1px;
}
.oblique-box:before, .oblique-box:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.oblique-box:before {
  background: linear-gradient(270deg, #21a2af 0%, #009250 51.87%, #009250 104.78%);
  -webkit-clip-path: polygon(0 0, 100% 90%, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 90%, 100% 100%, 0% 100%);
}
.oblique-box:after {
  -webkit-clip-path: polygon(0 90%, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 90%, 100% 0, 100% 100%, 0% 100%);
}
.oblique-box.type-blue:after {
  background: #B4DECB;
}
@media screen and (max-width: 639px) {
  .oblique-box {
    height: 60px;
    margin-bottom: -2px;
  }
}

.bg-blue-half {
  position: relative;
  background: transparent;
}
.bg-blue-half:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 80px;
  width: 100%;
  height: 63%;
  background: #21a2af;
  background-image: linear-gradient(to left, #009250, #21a2af);
}

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

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

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

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

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

.tbl {
  width: 100%;
}
.tbl th,
.tbl td {
  padding: 15px;
  vertical-align: middle;
  border-bottom: 2px solid #ededed;
  font-size: 1.5rem;
}
.tbl.type1 th {
  background-color: rgba(233, 233, 233, 0.8);
  color: #009250;
  border: 1px solid #aaa;
}
.tbl.type1 td {
  border: 1px solid #aaa;
}
.tbl.type2 th {
  background-color: #777;
  color: #fff;
  border: 1px solid #aaa;
}
.tbl.type2 td {
  border: 1px solid #aaa;
}
.tbl th {
  background: rgba(0, 146, 80, 0.8);
  text-align: left;
  color: #f5f3eb;
  width: 20%;
}
.tbl th span {
  font-size: 1.4rem;
}
.tbl td {
  background-color: #fff;
}
.tbl .cell01 {
  width: 45%;
}
.tbl .cell02 {
  width: 35%;
}
@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;
  }
}

@media screen and (max-width: 1025px) {
  .tbl_scroll {
    padding-bottom: 10px;
    overflow: auto;
    white-space: nowrap;
    margin-top: 10px;
  }
}

.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: #e2ede8;
}
.tbl_new tr th {
  font-weight: 600;
  width: 20%;
  text-align: left;
  padding-left: 30px;
  letter-spacing: 0;
}
@media screen and (max-width: 639px) {
  .tbl_new tr th {
    width: 25%;
    padding-left: 10px;
  }
}
.tbl_new tr th.th-long {
  width: 100%;
  text-align: center;
  background: #c5eeee;
  color: #fff;
  letter-spacing: 0.15em;
  font-size: 1.1em;
}

.tbl-border {
  width: 100%;
}
.tbl-border.tbl-mini th,
.tbl-border.tbl-mini td {
  padding: 6px 10px;
  border-width: 1px;
  font-size: 16px;
  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: #21a2af;
  margin-right: 5px;
  padding: 0px 4px;
}
.tbl-border th {
  width: 27%;
  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%;
  }
}

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

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

/* ggmap
----------------------------------*/
.ggmap {
  position: relative;
  padding-bottom: 25.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: 52%;
  position: relative;
}
.gmapbox .ggmap .ggmap-btn a {
  position: absolute;
  right: 0;
  top: 0;
  background: #009250;
  background-image: linear-gradient(to right, #222020 -22.57%, #009250 68.82%);
  color: #fefefe;
  padding: 15px 25px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  width: 200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gmapbox .ggmap .ggmap-btn a i {
  margin-left: 40px;
}
.gmapbox .ggmap .ggmap-btn a:hover {
  background-image: linear-gradient(to right, #222020 30.57%, #009250 98.82%);
}
@media screen and (max-width: 639px) {
  .gmapbox .ggmap .ggmap-btn a {
    padding: 10px 15px;
    width: 170px;
  }
}
@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-policy {
  background: rgba(255, 255, 255, 0.7);
  padding: 25px;
  margin-bottom: 40px;
}
.list-policy li {
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-size: 2rem;
  padding-bottom: 5px;
  margin-bottom: 6px;
  font-weight: 600;
}
.list-policy li:before {
  content: "一、";
  margin-right: 7px;
  color: #009250;
}
@media screen and (max-width: 639px) {
  .list-policy {
    padding: 15px;
  }
  .list-policy li {
    font-size: 1.4rem;
  }
}

.list_check.type1 {
  display: flex;
  flex-wrap: wrap;
}
.list_check.type1 li {
  width: 48%;
  padding: 0px;
}
.list_check.type1 li:nth-child(2n) {
  margin-left: 4%;
}
@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.type2 {
  display: flex;
  flex-wrap: wrap;
}
.list_check.type2 li {
  width: 32%;
  padding: 0px;
  margin-right: 2%;
}
.list_check.type2 li:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 639px) {
  .list_check.type2 li {
    width: 95%;
    margin: 0 auto 5px;
  }
  .list_check.type2 li:nth-child(3n) {
    margin-right: auto;
  }
}
.list_check.sbc li:before {
  color: #21a2af;
}
.list_check li {
  padding: 2px;
  margin-bottom: 5px;
  font-weight: normal;
}
.list_check li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f14a";
  font-weight: 900;
  margin-right: 5px;
  color: #009250;
}
@media screen and (max-width: 639px) {
  .list_check li {
    width: 98%;
    margin: 0 auto 10px;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
  }
}

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

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

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

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

.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: #009250;
}
.list_disc.type2 li {
  border-bottom: 1px dashed #ccc;
}

.list-btn {
  display: flex;
  flex-wrap: wrap;
}
.list-btn li {
  width: 32%;
  margin: 0 1.995% 10px 0;
  border: 1px solid #009250;
  background-color: #009250;
  color: #fff;
}
.list-btn li a {
  display: block;
  font-weight: 600;
  padding: 10px 3px;
  text-align: center;
  width: 100%;
  height: 100%;
  line-height: 1.5;
  font-size: 1.6rem;
  letter-spacing: 0;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.list-btn li a::after {
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: 900;
  margin-left: 12px;
  display: inline-block;
  width: 25px;
  height: 25px;
  font-size: 1.8rem;
  line-height: 25px;
  color: #fff;
  border-radius: 50%;
  text-align: center;
}
.list-btn li a .small {
  display: block;
  font-family: "Text Me One", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.list-btn li a span {
  position: relative;
  z-index: 2;
}
.list-btn li a:hover {
  background: rgba(255, 255, 255, 0.8);
  color: #009250;
}
.list-btn li:nth-child(3n) {
  margin-right: auto;
}
.list-btn.btn-100 > li {
  width: 100%;
}
.list-btn.btn-100 > li:nth-child(3n) {
  margin-right: auto;
}
.list-btn.btn-col2 {
  justify-content: space-between;
}
.list-btn.btn-col2 li {
  width: 48%;
  margin: auto;
  margin-bottom: 20px;
  position: relative;
}
.list-btn.btn-col2 li.full {
  width: 97%;
}
.list-btn.btn-col2 li a {
  font-size: 1.6rem;
  padding: 17px 2px;
}
.list-btn.type1 li a {
  padding: 65px 40px 65px 0;
  border: 1px solid #0b7391;
  font-size: 2.5rem;
  text-align: right;
  background: #111;
  color: #F9F9F9;
}
.list-btn.type1 li a::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 70%;
  opacity: 0.7;
  transition: 0.2s ease-in all;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26352/icon01.jpg) no-repeat center/cover;
}
.list-btn.type1 li a::after {
  width: 30px;
  height: 30px;
}
.list-btn.type1 li a:hover::before {
  opacity: 0.3;
}
.list-btn.type1 li:last-of-type a::before {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26352/icon02.jpg) no-repeat center/cover;
}
@media all and (max-width: 639px) {
  .list-btn li {
    width: 90%;
    margin: 0 auto 10px;
  }
  .list-btn li a {
    font-size: 1.2rem;
  }
  .list-btn li a .small {
    font-size: 1.2rem;
  }
  .list-btn li:nth-child(3n) {
    margin-right: auto;
  }
  .list-btn.btn-col2 li {
    width: 100%;
    margin: 0 auto 10px;
  }
  .list-btn.btn-col2 li.full {
    width: 100%;
  }
  .list-btn.btn-col2 li a {
    padding: 12px 2px;
    font-size: 1.4rem;
  }
  .list-btn.type1 li a {
    font-size: 1.8rem;
    padding: 50px 40px 50px 0;
  }
}

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

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

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

/* blog
----------------------------------*/
#main .blog-wrap > li {
  width: 32%;
}
@media screen and (max-width: 1101px) {
  #main .blog-wrap > li {
    width: 49%;
    margin: 0 0.5% 20px 0.5%;
  }
}
@media screen and (max-width: 639px) {
  #main .blog-wrap > li {
    width: 90%;
    margin: 0 auto 10px;
  }
}

.blog-wrap {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.blog-wrap * {
  transition: 0.3s;
}
.blog-wrap > li {
  width: 23%;
  margin: 0 1% 20px 0.5%;
  background: #fefefe;
  position: relative;
}
.blog-wrap > li:last-child {
  margin-right: 0;
}
@media screen and (max-width: 1101px) {
  .blog-wrap > li {
    width: 49%;
  }
}
.blog-wrap > li > a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}
.blog-wrap > li > a:hover ~ .blog-img img {
  opacity: 1;
  transform: scale(1.2);
}
@media screen and (max-width: 639px) {
  .blog-wrap > li {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto 10px;
    border: none;
    border-bottom: 1px solid #ddd;
  }
  .blog-wrap > li:last-child {
    border-bottom: none;
  }
}

.blog-wrap2 {
  display: flex;
  flex-wrap: wrap;
}
.blog-wrap2 * {
  transition: 0.3s;
}
.blog-wrap2 > li {
  width: 100%;
  margin: 0 0.5%;
  background: transparent;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  box-shadow: 0 0 5px #ddd;
  border: 1px solid rgba(221, 221, 221, 0.5);
  border-radius: 10px;
  align-items: center;
}
.blog-wrap2 > li:hover {
  box-shadow: 15px 15px 10px #ddd;
}
.blog-wrap2 > li > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.blog-wrap2 > li > a:hover ~ .blog-img img {
  opacity: 1;
  transform: scale(1.2);
}
@media screen and (max-width: 639px) {
  .blog-wrap2 > li {
    width: 100%;
    margin: 0 auto;
  }
}
.blog-wrap2 .blog-detail {
  width: 55%;
  margin-top: -5px;
  padding: 15px;
}
@media screen and (max-width: 639px) {
  .blog-wrap2 .blog-detail {
    width: 60%;
    padding: 15px 10px;
  }
}
.blog-wrap2 .blog-date {
  border: none;
  width: 100px;
  padding: 5px;
  line-height: 1.3;
  text-align: center;
  color: #fefefe;
  background: #009250;
  font-size: 10px;
  font-family: "Oswald", sans-serif;
  font-weight: 900;
  font-weight: 600;
  border-radius: 5px;
}
.blog-wrap2 .blog-title {
  font-weight: 600;
  line-height: 1.3;
  margin: 10px 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: #492d18;
}
@media screen and (max-width: 1025px) {
  .blog-wrap2 .blog-title {
    font-size: 1.6rem;
  }
}
.blog-wrap2 .blog-txt {
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  padding: 0;
}
@media screen and (max-width: 1025px) {
  .blog-wrap2 .blog-txt {
    font-size: 12px;
  }
}
.blog-wrap2 .blog-img {
  width: 45%;
  height: 250px;
  overflow: hidden;
  box-sizing: border-box;
  border-radius: 10px 0 0 10px;
}
.blog-wrap2 .blog-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.4s ease;
  font-family: "object-fit: cover;";
  /*IE対策*/
}
.blog-wrap2 .blog-img:hover img {
  opacity: 1 !important;
  transform: scale(1.2);
}
@media screen and (max-width: 1025px) {
  .blog-wrap2 .blog-img {
    height: 180px;
  }
}
@media screen and (max-width: 639px) {
  .blog-wrap2 .blog-img {
    width: 40%;
    height: 94px;
  }
}

.blog-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  box-sizing: border-box;
}
.blog-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.4s ease;
  font-family: "object-fit: cover;";
  /*IE対策*/
}
.blog-img:hover img {
  opacity: 1 !important;
  transform: scale(1.2);
}
@media screen and (max-width: 639px) {
  .blog-img {
    width: 40%;
    height: 94px;
  }
}

.blog-detail {
  margin-top: 10px;
  padding: 0 10px;
}
@media screen and (max-width: 639px) {
  .blog-detail {
    margin-top: 0;
    width: 58%;
    padding: 10px;
  }
}

.blog-detail-upper {
  position: relative;
  z-index: 2;
  margin: -31px 0 0;
  color: #fff;
  font-size: 12px;
}

.blog-category {
  display: inline-block;
  padding: 5px;
  line-height: 1.3;
  text-align: center;
  background: #009250;
  font-size: 12px;
  color: #fff;
}
@media screen and (max-width: 639px) {
  .blog-category {
    font-size: 0.9em;
    padding: 2px 5px;
  }
}

.blog-page-detail {
  margin-bottom: 15px;
}

.blog-date {
  width: 100px;
  padding: 5px 0;
  line-height: 1.3;
  display: inline-block;
  color: #21a2af;
  font-size: 16px;
  font-weight: 600;
}

.blog-date2 {
  color: #21a2af;
  font-size: 0.9em;
  margin-bottom: 5px;
  margin-right: 5px;
  font-weight: 600;
}
.blog-date2:before {
  font-family: "Font Awesome 5 Free";
  content: "\f017";
  font-weight: 900;
  margin-right: 5px;
}

.blog-title {
  font-weight: 600;
  line-height: 1.5;
  margin: 6px 0;
  font-size: 0.89em;
}
@media screen and (max-width: 639px) {
  .blog-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-bottom: 8px;
  }
}

.blog-txt {
  line-height: 1.5;
  padding: 8px;
}
@media screen and (max-width: 639px) {
  .blog-txt {
    font-size: 12px;
    padding: 8px 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    padding: 0;
  }
}

.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: #492d18;
  font-weight: 600;
  padding: 4px 5px;
  background: #fff;
  font-size: 12px;
}

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

.blog_topics {
  width: 100%;
}
.blog_topics li:first-child a {
  border-top: 1px solid #ddd;
}
.blog_topics li a {
  display: block;
  color: #492d18;
  padding: 15px;
  transition: all 0.3s ease;
  border-bottom: 1px solid #ddd;
}
.blog_topics li a:hover {
  background: #F6F6F6;
}
.blog_topics li a .topics_detail {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  align-items: center;
}
.blog_topics li a .topics_detail .imgbox {
  overflow: hidden;
  width: 20%;
  height: 100px;
}
.blog_topics li a .topics_detail .imgbox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.2s ease-in all;
}
.blog_topics li a .topics_detail .textbox {
  width: 79%;
  padding-left: 10px;
}
.blog_topics li a .time_date {
  width: 120px;
  font-size: 13px;
  font-family: "Oswald", sans-serif;
  font-weight: 900;
}
@media screen and (max-width: 639px) {
  .blog_topics li a {
    padding: 8px;
  }
  .blog_topics li a .topics_detail .imgbox {
    width: 35%;
    height: 80px;
  }
  .blog_topics li a .topics_detail .textbox {
    width: 60%;
    font-size: 90%;
    line-height: 1.5;
  }
  .blog_topics li a .time_date {
    width: 120px;
    font-size: 10px;
  }
}

/* etc
----------------------------------*/
.name {
  font-weight: 600;
  text-align: center;
  padding: 20px;
}

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

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

.w300 {
  width: 300px;
}

.spbr {
  display: none;
}

.color1 {
  color: #009250;
}

.color2 {
  color: #21a2af;
}

.color3 {
  color: #dfa245;
}

.relative {
  position: relative;
}

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

.num {
  font-weight: 600;
}
.num a {
  color: #009250;
  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-top {
  margin-bottom: 40px;
}
@media screen and (max-width: 639px) {
  .telbnr-top {
    font-size: 1.2rem;
  }
}

.telbnr {
  max-width: 500px;
  margin: 20px auto 60px;
}
.telbnr li {
  border: 2px solid #009250;
  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: #009250;
  transition: all 0.4s ease-in;
}
.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: 3rem;
  }
  .telbnr li a:before {
    font-size: 2.2rem;
  }
}

.tblbnr-top {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 639px) {
  .tblbnr-top {
    text-align: left;
  }
}

.telbnr-ttl {
  font-size: 1.8rem;
  color: #009250;
  margin-top: -30px;
  margin-bottom: 15px;
}
.telbnr-ttl span {
  background: #fefefe;
  padding: 0 20px;
}
@media screen and (max-width: 639px) {
  .telbnr-ttl {
    font-size: 1.4rem;
  }
}

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

/* form
----------------------------------*/
.form {
  margin: 0 auto;
  width: 90%;
}
.form dl dt {
  float: left;
  width: 280px;
  padding-top: 20px;
  font-weight: 600;
}
.form dl dt span {
  color: #fff;
  background: #21a2af;
  padding: 5px 8px;
  margin-right: 10px;
  font-size: 11px;
  position: relative;
  top: -2px;
}
.form dl dt span.nini {
  background: #ffd803;
  color: #492d18;
}
.form dl dd {
  padding-left: 280px;
  padding-bottom: 20px;
  padding-top: 23px;
  line-height: 1.5;
  border-bottom: 1px dotted #cccccc;
}
.form dl dd:last-child {
  border-bottom: none;
}
.form .textarea,
.form textarea {
  border: 0;
  padding: 15px;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
  background: #f0f0f0;
}
.form .textarea02 {
  width: 48.5%;
  margin-right: 3%;
}
.form .textarea02:last-child {
  margin-right: 0;
}
.form .textarea03 {
  width: 25%;
  min-width: 140px;
  margin-right: 1%;
}
.form .textarea04 {
  width: 20%;
  margin-right: 1%;
}
.form .textarea04 {
  width: 20%;
  margin-right: 1%;
}
.form button {
  cursor: pointer;
  display: block;
  color: #fff;
  text-align: center;
  transition: all 0.2s ease-in-out;
  border: 1px solid #009250;
  font-weight: 600;
  padding: 12px 5px;
  margin: 0 auto;
  width: 250px;
  background: #009250;
  border-radius: 25px;
}
.form button:hover {
  background: #fff;
  color: #009250;
}
.form button:before {
  font-weight: normal;
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 10px;
}
.form .select-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.form .select-group p {
  margin: 0 5px;
}
@media screen and (max-width: 639px) {
  .form .select-group .select-wrap {
    margin-top: 8px;
  }
}
.form .select-wrap {
  position: relative;
  overflow: hidden;
  display: inline-block;
  min-width: 192px;
  min-width: 12em;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  color: #333;
}
.form .select-wrap select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  z-index: 2;
  display: block;
  width: 200%;
  width: -webkit-calc(100% + 5em);
  margin: 0;
  padding: 11px 35px 11px 11px;
  padding: 0.6875rem 2.1875rem 0.6875rem 0.6875rem;
  background: transparent;
  border: 0;
  outline: none;
  line-height: 1.5;
}
.form .entypo-down-open-mini:before {
  font-family: "FontAwesome";
  content: "\f0ab";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 12px;
  right: 0.75rem;
  margin-top: -8px;
  margin-top: -0.5rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  color: #009250;
}
.form label.radio_text {
  cursor: pointer;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
  padding-left: 20px;
  display: inline-block;
}
.form label.radio_text:before {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 1px solid #ccc;
  border-radius: 50%;
  left: 0px;
  top: 2px;
  content: "";
  z-index: 3;
}
.form label.radio_text:after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 100%;
  left: 2px;
  top: 4px;
  background-color: #009250;
  z-index: 1;
}
.form label.radio_text input[type=radio] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 2;
  width: 20px;
  height: 20px;
  left: -23px;
  top: 0px;
  margin: 0px;
  box-shadow: 20px -1px #fff;
}
.form label.radio_text input[type=radio]:checked {
  box-shadow: none;
}
.form label.radio_text input[type=radio]:focus {
  opacity: 0.2;
  box-shadow: 20px -1px #eeebda;
}
.form label.checkbox_text {
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  margin: 0 20px 5px 0;
  overflow: hidden;
  display: inline-block;
}
.form label.checkbox_text:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0px;
  top: 0;
  border: 1px solid #ccc;
  z-index: 3;
  padding: 1px;
}
.form label.checkbox_text:after {
  content: "";
  position: absolute;
  top: 40%;
  left: 5px;
  display: block;
  margin-top: -9px;
  width: 8px;
  height: 12px;
  border-right: 3px solid #009250;
  border-bottom: 3px solid #009250;
  transform: rotate(45deg);
  z-index: 1;
}
.form label.checkbox_text input[type=checkbox] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  left: -40px;
  width: 20px;
  height: 20px;
  display: block;
  box-shadow: 41px 0px #fff;
  z-index: 2;
  margin: 0px;
  padding: 0px;
}
.form label.checkbox_text input[type=checkbox]:checked {
  box-shadow: none;
}
.form label.checkbox_text input[type=checkbox]:checked:focus {
  box-shadow: 40px 0px #666;
  opacity: 0.1;
}
.form label.checkbox_text input[type=checkbox]:focus {
  box-shadow: 41px 0px #eee;
}
.form input[type=text],
.form textarea {
  font-size: 16px;
}
@media screen and (max-width: 639px) {
  .form input[type=text],
  .form textarea {
    transform: scale(0.9);
    margin-left: -5px;
  }
}
@media screen and (max-width: 896px) {
  .form {
    width: 100%;
  }
  .form dl dt {
    float: initial;
  }
  .form dl dd {
    padding-left: 0;
  }
}

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

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

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

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

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

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

/* gallery(photobox)
----------------------------------*/
.gallery_ul {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  margin-left: -2%;
  margin-bottom: -4%;
}
@media screen and (max-width: 639px) {
  .gallery_ul {
    margin-left: auto;
    margin-right: auto;
  }
}
.gallery_ul > li {
  width: 31.33%;
  margin-left: 2%;
  margin-bottom: 4%;
  font-weight: 600;
  border: 1px solid #aaa;
}
.gallery_ul > li .photobox-wrap {
  width: 100%;
  height: 220px;
  text-align: center;
  overflow: hidden;
  background: #aaa;
  margin-bottom: 10px;
}
.gallery_ul > li .photobox-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit:contain;";
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
@media screen and (max-width: 1025px) {
  .gallery_ul > li {
    width: 48%;
  }
}
@media screen and (max-width: 639px) {
  .gallery_ul > li {
    width: 85%;
    margin: 0 auto 30px;
  }
  .gallery_ul > li .photobox-wrap {
    height: 180px;
  }
}

.comment {
  font-size: 1.4rem;
  letter-spacing: 0;
  padding: 0 5px;
}
@media screen and (max-width: 639px) {
  .comment {
    font-size: 12px;
  }
}

/*photoギャラリー*/
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 3%;
}
@media screen and (max-width: 639px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
.gallery li a,
.gallery li figure {
  background: rgba(245, 243, 235, 0.2);
  display: block;
  text-align: center;
  padding: 0px;
  height: 190px;
}
.gallery li a img,
.gallery li figure 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: 160px;
  }
  .gallery li p {
    font-size: 12px;
  }
}
.list2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 4%;
}
.list2.type1 > li,
.list2.type1 .child {
  background: #f5f3eb;
  padding: 15px;
}
.list2 > li,
.list2 .child {
  position: relative;
}
.list2 > li.child-100,
.list2 .child.child-100 {
  grid-column: 2fr;
}
.list2 > li figure,
.list2 .child figure {
  height: 340px;
  padding: 20px;
}
.list2 > li figure img,
.list2 .child figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 639px) {
  .list2 {
    grid-template-columns: 1fr;
  }
  .list2 > li figure,
  .list2 .child figure {
    height: 240px;
  }
}

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

.list4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 2.5%;
}
.list4.type1 li {
  position: relative;
  padding: 20px;
  background: #fff;
}
.list4.type1 li:after {
  position: absolute;
  content: "";
  right: 11%;
  bottom: -50%;
  width: 100%;
  height: 50%;
  background-image: linear-gradient(to bottom, #ccc 0%, #eee 25%, transparent 40%);
  transform: skew(-25deg);
  z-index: -1;
  opacity: 0.7;
}

/*grid3
---------------------------------------------*/
.grid3 {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  height: 500px;
  margin-bottom: 30px;
  opacity: 0.9;
}
.grid3 .img01 {
  grid-column: 1/2;
  grid-row: 1/2;
}
.grid3 .img02 {
  grid-column: 1/2;
  grid-row: 2/3;
}
.grid3 .img03 {
  grid-column: 2/4;
  grid-row: 1/3;
}
@media screen and (max-width: 1025px) {
  .grid3 {
    height: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .grid3 .img01 {
    grid-column: 1/3;
    grid-row: 2/3;
  }
  .grid3 .img02 {
    grid-column: 3/5;
    grid-row: 2/3;
  }
  .grid3 .img03 {
    grid-column: 1/5;
    grid-row: 1/2;
  }
}

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

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

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

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

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

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

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

.list_category {
  background-color: #fff;
}
.list_category li {
  font-weight: bold;
  font-size: 12px;
  border-bottom: 1px solid #ddd;
}
.list_category a {
  padding: 10px 0px;
  text-indent: 1em;
  display: block;
  zoom: 1;
  text-decoration: none;
  cursor: pointer;
}
.list_category a:hover {
  text-decoration: none;
  background: #eee;
}
.list_category a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0da";
  margin-right: 5px;
}
.list_category a:link, .list_category a:visited {
  color: #333;
}

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

.list-center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.list-center li {
  width: 50%;
}
@media screen and (max-width: 639px) {
  .list-center {
    flex-direction: column;
  }
  .list-center li {
    width: 100%;
  }
}

/*faq
----------------------------------*/
.faq.type1 dt:before {
  background: #21a2af;
}
.faq dt {
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  background: rgba(238, 238, 238, 0.6);
  color: #492d18;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-right: 16px;
  padding-left: 36px;
  line-height: 1.6;
  position: relative;
  cursor: pointer;
  transition: all 1s ease;
}
.faq dt:before {
  content: "Q";
  position: absolute;
  top: -6px;
  left: -6px;
  text-indent: 0px;
  line-height: 35px;
  color: #fff;
  background: #009250;
  width: 35px;
  height: 35px;
  text-align: center !important;
  border-radius: 100%;
}
.faq dt:hover {
  background: #e9e9e9;
}
.faq dd {
  display: none;
  position: relative;
  margin-bottom: 24px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 16px;
  padding-left: 38px;
  line-height: 2;
  position: relative;
  background: #fff;
}
.faq dd:before {
  content: "A";
  position: absolute;
  top: 0px;
  left: 0px;
  text-indent: 0px;
  font-size: 20px;
  line-height: 35px;
  color: #E50012;
  width: 35px;
  height: 35px;
  text-align: center !important;
}
.faq dt:before,
.faq dd:before {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
}

.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: #2E2982;
}
.faq-dl .faq-inner dt:before {
  content: "Q";
  color: #fff;
  font-size: 3rem;
  background: #21a2af;
}
.faq-dl .faq-inner dd {
  background: #f5f3eb;
}
.faq-dl .faq-inner dd:before {
  content: "A";
  color: #f66009;
  font-size: 3rem;
  background: rgba(255, 216, 3, 0.2);
}

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

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

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

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

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

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

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

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

.title02 {
  text-align: center;
  margin-bottom: 40px;
}
.title02 span {
  display: inline-block;
  font-size: 3.2rem;
  border-bottom: 2px solid #333;
}
@media screen and (max-width: 639px) {
  .title02 span {
    font-size: 1.6rem;
  }
}

.title03 {
  margin-bottom: 20px;
}
.title03 span {
  background: #fff;
  border: 1px solid #009250;
  padding: 3px 15px;
  font-size: 2rem;
  font-weight: 600;
  color: #009250;
}
@media screen and (max-width: 639px) {
  .title03 span {
    font-size: 1.1rem;
  }
}
.title03.type1 span {
  background: #f66009;
}
.title03.type2 span {
  background: #73a44d;
}

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

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

.box1 {
  position: relative;
  padding: 80px 0 80px 0;
  z-index: 0;
}
.box1:before {
  content: "";
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26352/body.jpg) no-repeat center/cover;
  z-index: -1;
  width: 95vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border-radius: 0 36px 36px 0;
}
.box1:after {
  position: absolute;
  content: "";
  top: -95px;
  right: 100px;
  width: 180px;
  height: 180px;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26352/deko.png) no-repeat 50%/contain;
}
.box1 .box1-inner {
  max-width: 1200px;
  padding: 20px;
  margin: 0 auto 50px;
}
@media all and (max-width: 1100px) {
  .box1:before {
    width: 98vw;
  }
}
@media all and (max-width: 896px) {
  .box1 {
    padding: 45px 40px 60px 20px;
  }
}
@media all and (max-width: 639px) {
  .box1 {
    padding: 25px 5px 5px;
    margin-top: -20px;
  }
  .box1:after {
    right: 10px;
    width: 90px;
    height: 90px;
    top: -70px;
  }
}

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

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

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

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

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

.column2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.column2.st {
  align-items: self-start;
}
.column2 .child {
  width: 48%;
}
.column2 .child .detail {
  max-width: 80%;
  margin-left: auto;
}
.column2 .child .detail.type1 {
  margin-left: 0;
  margin-right: auto;
}
.column2 .child figure {
  height: 450px;
}
.column2 .child figure img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}
.column2 .child1 {
  width: 28%;
}
.column2 .child1 figure {
  overflow: hidden;
}
.column2 .child1 figure img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.column2 .child2 {
  width: 68%;
}
@media screen and (max-width: 639px) {
  .column2 .child,
  .column2 .child1,
  .column2 .child2 {
    width: 100%;
  }
  .column2 .child figure,
  .column2 .child1 figure,
  .column2 .child2 figure {
    width: 80%;
    margin: 0 auto;
    height: auto;
  }
  .column2 .child .detail,
  .column2 .child1 .detail,
  .column2 .child2 .detail {
    max-width: 100%;
    margin: 0 auto;
  }
  .column2 .child.column2-img,
  .column2 .child1.column2-img,
  .column2 .child2.column2-img {
    order: -1;
    margin-bottom: 30px;
  }
}

.column3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}
.column3 .child1 {
  width: 28%;
}
.column3 .child1 figure {
  overflow: hidden;
}
.column3 .child1 figure img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.column3 .child2 {
  width: 50%;
  padding: 35px;
}
.column3 .child3 {
  width: 20%;
}
@media screen and (max-width: 639px) {
  .column3 .child1 {
    display: none;
  }
  .column3 .child3 {
    width: 50%;
    margin: 0 auto;
  }
  .column3 .child2 {
    width: 100%;
    padding: 20px;
  }
  .column3 .child2.column2-img {
    order: -1;
    margin-bottom: 30px;
  }
}

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

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

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

.page {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

.business-list-title {
  font-size: 2.2rem;
  position: absolute;
  right: 0;
  bottom: -1px;
  background: #009250;
  color: #fff;
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 600;
  padding: 10px 30px 10px 20px;
  border-radius: 15px 0 10px 0;
}
.business-list-title .eng {
  display: block;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
}
.business-list-title:after {
  position: absolute;
  content: "";
  right: 5px;
  top: 50%;
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: 900;
  transform: translateY(-50%);
}
.business-list-title:before {
  position: absolute;
  content: "";
  right: 0;
  top: -30px;
  width: 30px;
  height: 30px;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26352/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 0px;
  width: 100%;
  max-width: 1100px;
}
.business-detail2 .detail-inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.business-detail2 .detail-inner .img2 {
  width: 100%;
  height: 450px;
  overflow: hidden;
}
.business-detail2 .detail-inner .img {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 42%;
}
.business-detail2 .detail-inner .img .img01,
.business-detail2 .detail-inner .img .img02 {
  width: 100%;
  height: 420px;
}
.business-detail2 .detail-inner .img .img01 img,
.business-detail2 .detail-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 .detail-inner .img .img01 img,
  .business-detail2 .detail-inner .img .img02 img {
    border-radius: 25px 2px 15px 8px;
  }
}
.business-detail2 .detail-inner .img .img02 {
  z-index: 1;
  margin-top: 40px;
  margin-left: auto;
  position: relative;
}
.business-detail2 .detail-inner .txt {
  width: 56%;
  padding: 0 20px;
}
.business-detail2 .detail-inner .txt p + p {
  margin-top: 15px;
}
@media screen and (max-width: 639px) {
  .business-detail2 .detail-inner .img2 {
    width: 100%;
    height: 250px;
    margin-bottom: 20px;
  }
  .business-detail2 .detail-inner .img {
    width: 100%;
    margin-bottom: 20px;
  }
  .business-detail2 .detail-inner .img .img01,
  .business-detail2 .detail-inner .img .img02 {
    width: 48%;
    height: 220px;
  }
  .business-detail2 .detail-inner .txt {
    width: 100%;
    padding: 0 10px;
  }
}
.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 .img2 {
    height: 300px;
  }
  .business-detail2 .inner .img {
    width: 100%;
    margin-bottom: 40px;
    order: -1;
    justify-content: center;
  }
  .business-detail2 .inner .img .img01,
  .business-detail2 .inner .img .img02 {
    height: 350px;
  }
  .business-detail2 .inner .img .img02 {
    max-width: 350px;
    margin-left: 20px;
  }
  .business-detail2 .inner .txt {
    width: 100%;
    margin: auto;
    padding: 0 5px;
  }
  .business-detail2 .inner .txt p + p {
    margin-top: 10px;
  }
}
@media screen and (max-width: 639px) {
  .business-detail2 .inner {
    max-width: 100%;
  }
  .business-detail2 .inner .img2 {
    height: 200px;
  }
  .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: linear-gradient(to right bottom, #8f0000, #cd0000);
  padding: 8px;
}
.quality-box .inner {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  background: #fefefe;
  padding: 40px;
}
.quality-box .inner .left {
  width: 65%;
  padding: 20px;
}
.quality-box .inner .right {
  width: 30%;
}
.quality-box .inner .right img {
  border: 1px solid #ddd;
}

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

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

.title-big {
  padding-top: 90px;
  position: relative;
  text-align: center;
  color: #fff;
}
.title-big:before {
  font-size: 8rem;
  white-space: nowrap;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  position: absolute;
  content: attr(data-title);
  top: 0;
  left: 50%;
  letter-spacing: 0.1rem;
  opacity: 0.9;
  transform: translateX(-50%);
  display: inline-block;
}
.title-big.type1 {
  color: #222;
}
.title-big.type1:before {
  color: transparent;
  background-image: radial-gradient(circle, #21a2af 0%, #009250 75%, #00693a 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.title-big .img {
  display: block;
  max-width: 750px;
  margin-inline: auto;
}
.title-big .ja {
  display: block;
  font-weight: 600;
  font-size: 2.4rem;
  position: relative;
  z-index: 2;
}
.title-big .big {
  font-size: 3rem;
}
.title-big .big em {
  font-size: 4.5rem;
  font-weight: 800;
  color: #2E2982;
}
.title-big .small {
  font-size: 0.7em;
}
.title-big.type-greet {
  text-align: left;
  color: #009250;
}
.title-big.type-greet .ja {
  color: #fff;
}
.title-big.type-greet:before {
  left: 0;
  transform: none;
}
.title-big.type-greet2 {
  text-align: left;
  color: #009250;
}
.title-big.type-greet2 .ja {
  color: #222020;
}
.title-big.type-greet2:before {
  left: 0;
  transform: none;
}
@media screen and (max-width: 1101px) {
  .title-big {
    font-size: 10vw;
  }
}
@media screen and (max-width: 639px) {
  .title-big {
    padding-top: 80px;
  }
  .title-big:before {
    font-size: 5rem;
  }
  .title-big .ja {
    font-size: 1.4rem;
  }
}

.title-big2 {
  position: relative;
  color: #222020;
  margin: 0px auto -20px;
  text-align: center;
}
.title-big2 span {
  display: inline-block;
  font-weight: 600;
  font-size: 1.6rem;
  position: relative;
  z-index: 2;
  padding: 5px 15px;
  border-radius: 5px;
  border: 1px solid #009250;
  background-color: #fff;
}
@media screen and (max-width: 1101px) {
  .title-big2 {
    font-size: 10vw;
  }
}
@media screen and (max-width: 639px) {
  .title-big2 span {
    font-size: 1.3rem;
  }
}

.title-big3 {
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
  text-align: center;
}
.title-big3.left {
  text-align: left;
}
.title-big3 .eng {
  font-size: 8rem;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  color: #009250;
}
.title-big3 .ja {
  font-size: 2.5rem;
  display: block;
  color: #492d18;
}
.title-big3.type1 .eng {
  color: #21a2af;
}
.title-big3.type1 .ja {
  color: #fff;
}
.title-big3.white .ja,
.title-big3.white .eng {
  color: #fff;
}
@media screen and (max-width: 1025px) {
  .title-big3 {
    margin-bottom: 50px;
  }
  .title-big3.left {
    text-align: center;
  }
  .title-big3 .eng {
    font-size: 6rem;
  }
  .title-big3.bm10 {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 639px) {
  .title-big3 .eng {
    font-size: 5rem;
  }
}

.title-big02 {
  text-align: center;
  margin: 0px auto 25px;
}
.title-big02 .ja {
  display: block;
  position: relative;
  z-index: 4;
  font-size: 3rem;
  white-space: nowrap;
  font-weight: bold;
}

@media screen and (max-width: 639px) {
  .title-big02 .ja {
    font-size: 1.8rem;
  }
}
.top-business-btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 80px;
}
.top-business-btn .top-business-child {
  width: 31%;
  margin-bottom: 30px;
}
.top-business-btn .top-business-child.type1 {
  width: 48%;
}
.top-business-btn .top-business-child.type1 a {
  display: flex;
}
.top-business-btn .top-business-child.type1 a figure {
  aspect-ratio: 2/1;
}
.top-business-btn .top-business-child a {
  display: block;
  position: relative;
  height: 100%;
  background: #333;
}
.top-business-btn .top-business-child a:hover figure img {
  transform: scale(1.1);
}
.top-business-btn .top-business-child a figure {
  aspect-ratio: 1.2/1;
  overflow: hidden;
  position: relative;
  filter: brightness(0.5);
  transition: 0.2s all ease;
}
.top-business-btn .top-business-child a .top-business-title {
  position: relative;
  display: flex;
  flex-direction: column;
  left: 0;
  bottom: -20px;
  width: 100%;
  padding: 0 15px;
  align-items: center;
  z-index: 3;
}
.top-business-btn .top-business-child a .top-business-title .eng {
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 1vw;
}
.top-business-btn .top-business-child a .top-business-title .ja {
  display: block;
  color: #fff;
  font-size: 2rem;
}
.top-business-btn .top-business-child a .top-business-title .icon {
  width: 50px;
  height: 50px;
  margin-top: 20px;
  line-height: 50px;
  text-align: center;
  font-size: 2rem;
  animation: pulse 1.6s linear infinite;
  color: #fff;
  border-radius: 50%;
}
.top-business-btn .top-business-child a:hover figure {
  filter: brightness(0.9);
}
.top-business-btn .top-business-child a:hover figure img {
  transform: scale(1.1);
}
@media screen and (max-width: 639px) {
  .top-business-btn {
    padding: 0 20px;
    margin-bottom: 40px;
  }
  .top-business-btn .top-business-child {
    width: 100%;
  }
  .top-business-btn .top-business-child a figure {
    aspect-ratio: 1.8/1;
  }
  .top-business-btn .top-business-child a .top-business-title .eng {
    font-size: 2rem;
  }
  .top-business-btn .top-business-child a .top-business-title .ja {
    font-size: 1.6rem;
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(223, 162, 69, 0.8), 0 0 0 0 rgba(223, 162, 69, 0.8);
  }
  30% {
    box-shadow: 0 0 0 30px rgba(223, 162, 69, 0), 0 0 0 0 rgba(223, 162, 69, 0.8);
  }
  65% {
    box-shadow: 0 0 0 30px rgba(223, 162, 69, 0), 0 0 0 10px rgba(223, 162, 69, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(223, 162, 69, 0), 0 0 0 10px rgba(223, 162, 69, 0);
  }
}
.top-greet-box {
  color: #fff;
  font-weight: 600;
  text-shadow: 0 0 6px rgba(73, 45, 24, 0.2);
  font-size: 1.1em;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.top-greet-box .greet-img {
  width: 50%;
  margin-top: -230px;
}
.top-greet-box .greet-img img {
  width: 100%;
  height: 90%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-greet-box .greet-txt {
  width: 50%;
  padding-left: 40px;
}
@media screen and (max-width: 896px) {
  .top-greet-box .greet-img {
    margin-top: -150px;
  }
}
@media screen and (max-width: 639px) {
  .top-greet-box {
    max-width: 100%;
    padding: 0px 10px 10px;
  }
  .top-greet-box .greet-img {
    margin-top: 0;
    margin-bottom: 20px;
    width: 100%;
  }
  .top-greet-box .greet-img img {
    height: 300px;
  }
  .top-greet-box .greet-txt {
    width: 100%;
    padding-left: 0;
  }
}

.top-menu-bnr {
  margin-left: auto;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px 2%;
  padding: 100px 0;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1025px) {
  .top-menu-bnr {
    padding: 30px 0;
    grid-template-columns: 1fr;
    max-width: 180px;
  }
}
.top-menu-bnr li:nth-child(2n) a {
  background: rgba(253, 244, 237, 0.7);
}
.top-menu-bnr li a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  transition: all 0.2s ease-in;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  padding: 15px 0;
  background: rgba(33, 162, 175, 0.8);
  transition: 0.2s ease-in all;
  box-shadow: 3px 3px rgba(0, 146, 80, 0.4);
}
.top-menu-bnr li a:hover {
  background: #73a44d;
}
.top-menu-bnr li a:hover .top-menu-title {
  transition: all 0.2s ease-in;
}
.top-menu-bnr li a:hover .top-menu-title .eng {
  color: #fff;
}
.top-menu-bnr .top-menu-title {
  display: block;
  transition: 0.2s ease-in all;
  text-align: center;
  color: #009250;
  z-index: 2;
  font-weight: 600;
  line-height: 1.4;
}
.top-menu-bnr .top-menu-title .eng {
  font-size: 1.8rem;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  color: #333;
}
.top-menu-bnr .top-menu-title .ja {
  font-size: 1.4rem;
  padding: 4px 15px;
  color: #333;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 639px) {
  .top-menu-bnr .top-menu-title {
    font-size: 1.4rem;
  }
  .top-menu-bnr .top-menu-title .eng {
    font-size: 1.2rem;
  }
}

.top-recruit-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  padding: 100px 0 80px;
  max-width: 1100px;
  margin: 0 auto;
}
.top-recruit-box .ttl {
  width: 30%;
  margin-top: -150px;
}
.top-recruit-box .txt {
  width: 70%;
  font-weight: 500;
}
.top-recruit-box .txt .ttl-top {
  font-size: 4.5rem;
  font-weight: 700;
  color: #009250;
}
@media screen and (max-width: 639px) {
  .top-recruit-box {
    display: block;
    padding: 0;
    margin-bottom: 40px;
  }
  .top-recruit-box .ttl,
  .top-recruit-box .txt {
    width: 100%;
  }
  .top-recruit-box .txt .ttl-top {
    font-size: 2rem;
    margin-bottom: 5px;
  }
  .top-recruit-box .ttl {
    margin-top: 0;
  }
}

.top-recruit-box2 .txt {
  color: #fefefe;
  max-width: 1100px;
  margin: 40px auto;
}

/*recruit-head*/
.recruit-head {
  position: relative;
}
@media screen and (max-width: 639px) {
  .recruit-head {
    padding-top: 80px;
  }
}
.recruit-head .recruit-head-title {
  position: absolute;
  right: 5%;
  top: -15px;
  font-size: 1.8em;
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 600;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-feature-settings: "pkna";
  z-index: 2;
}
.recruit-head .recruit-head-title span {
  display: block;
  height: -moz-fit-content;
  height: fit-content;
  padding: 12px 3px;
  background: #009250;
  color: #fff;
  letter-spacing: 0.15em;
}
.recruit-head .recruit-head-title span:last-of-type {
  margin-right: 20px;
  background: #fff;
  color: #009250;
}
@media screen and (max-width: 639px) {
  .recruit-head .recruit-head-title {
    font-size: 1.4em;
    writing-mode: inherit;
    right: auto;
    left: 10px;
  }
  .recruit-head .recruit-head-title span {
    display: inline-block;
    padding: 3px 10px;
  }
  .recruit-head .recruit-head-title span:last-of-type {
    margin: 10px 0 0;
  }
}
.recruit-head .recruit-head-eng {
  position: relative;
  z-index: 2;
  display: block;
  margin: -30px 0 0 10px;
  font-weight: 600;
  font-size: 4em;
  line-height: 1;
  color: #E50012;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  mix-blend-mode: color-burn;
}

.recruit-head-img {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.recruit-head-img figure {
  aspect-ratio: 1.5/1;
}
@media screen and (max-width: 639px) {
  .recruit-head-img figure {
    aspect-ratio: 1.3/1;
  }
}

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

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

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

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

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

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

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

.contact-ttl-box {
  padding-left: 80px;
  display: flex;
  align-items: center;
}
.contact-ttl-box .left {
  margin-right: 60px;
}
@media screen and (max-width: 896px) {
  .contact-ttl-box {
    flex-direction: column;
    padding-left: 0;
  }
  .contact-ttl-box .left {
    margin-right: 0;
  }
}
@media screen and (max-width: 639px) {
  .contact-ttl-box {
    padding-left: 0px;
    align-items: flex-start;
  }
  .contact-ttl-box .left {
    width: 100%;
  }
}

.contact-tel-bnr a {
  background: linear-gradient(270deg, #222020 0%, #009250 25%, #21a2af 51%);
  padding: 40px 60px;
  color: #fefefe;
  display: block;
  position: relative;
  text-align: center;
  font-size: 3rem;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  transition: all 0.3s ease-out;
  background-size: 200% auto;
  background-position: 80% 50%;
}
.contact-tel-bnr a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 6px;
  font-size: 0.9em;
}
.contact-tel-bnr a:hover {
  background-position: 1% 50%;
}
@media screen and (max-width: 896px) {
  .contact-tel-bnr a {
    padding: 20px 60px;
  }
}
@media screen and (max-width: 639px) {
  .contact-tel-bnr a {
    padding: 20px 40px;
    font-size: 2rem;
  }
}

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

.pdf-btn a {
  display: block;
  text-align: center;
  background: #fff;
  color: #009250;
  font-weight: 600;
  padding: 10px 4px;
  border: 1px solid #009250;
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
  width: 300px;
  margin: 15px auto;
}
.pdf-btn a:hover {
  background: #009250;
  color: #fff;
}
.pdf-btn a:after {
  font-family: "Font Awesome 5 Free";
  content: "\f1c1";
  font-weight: 900;
  margin-left: 6px;
}
@media screen and (max-width: 639px) {
  .pdf-btn a {
    width: 100%;
    max-width: 280px;
  }
}

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

.js-marker {
  line-height: 2;
}
.js-marker.type1 span {
  padding: 10px 15px;
  color: #fff;
  background-image: linear-gradient(90deg, #009250, #009250);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0 100%;
  transition: all 2s ease;
}
.js-marker.type1.on span {
  background-size: 100% 100%;
}
.js-marker span {
  color: #6f4525;
  background-image: linear-gradient(90deg, rgba(0, 146, 80, 0.2), rgba(0, 146, 80, 0.2));
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0 35%;
  transition: all 4s ease-in-out;
}
.js-marker.on span {
  background-size: 100% 35%;
}

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

@keyframes text {
  0% {
    opacity: 0;
    transform: translateX(-20px) translateY(-10px) scale(1.3);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
/* greet_block
----------------------------------*/
.greet-area {
  position: relative;
  justify-content: flex-end;
  display: flex;
  z-index: 1;
  margin-bottom: 80px;
  padding: 80px 0;
}
.greet-area:after {
  position: absolute;
  content: "";
  width: 70%;
  height: 90%;
  top: 5%;
  left: 0;
  background: #fefefe;
  box-shadow: 0 12px 26px -2px rgba(73, 45, 24, 0.1);
  z-index: -2;
}
.greet-area:before {
  position: absolute;
  content: "";
  width: 42%;
  height: 90%;
  top: 80px;
  right: 0;
  z-index: -1;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26352/2.jpg) no-repeat center/cover;
}
.greet-area .greet-area-box {
  position: relative;
  top: 0;
  left: 0;
  width: 55%;
  padding: 60px 40px;
  margin-right: auto;
  box-sizing: border-box;
  overflow: hidden;
}
.greet-area .greet-area-box .inner {
  position: relative;
  max-width: 700px;
  margin: auto;
  z-index: 1;
}
.greet-area .greet-area-box .inner p + p {
  margin-top: 18px;
}
@media screen and (max-width: 1025px) {
  .greet-area {
    flex-direction: column;
    margin-bottom: 0;
  }
  .greet-area:before {
    width: 100%;
    height: auto;
    top: 0;
    padding-bottom: 46.25%;
  }
  .greet-area .greet-area-box {
    position: relative;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    padding: 45px 15px;
    margin: 26.25% auto 0;
  }
  .greet-area .greet-area-box::before {
    width: 70%;
    height: 70%;
    top: 50%;
    left: 50%;
    right: auto;
    background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26352/mark.png) no-repeat center/contain;
    transform: translate(-50%, -50%);
  }
  .greet-area .greet-area-box .inner p + p {
    margin-top: 12px;
  }
}
@media screen and (max-width: 639px) {
  .greet-area .greet-area-box {
    padding: 35px 15px;
  }
  .greet-area:after {
    width: 100%;
  }
}
.greet-area.type-recruit {
  margin-bottom: 0;
  padding: 40px;
}
.greet-area.type-recruit .greet-area-box {
  margin: 0 auto;
}
.greet-area.type-recruit::before {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26352/recruit-head.png) no-repeat center/contain;
  right: -150px;
  top: 0;
  width: 600px;
  height: 500px;
}
.greet-area.type-recruit::after {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26352/recruit-head2.png) no-repeat center/contain;
  left: -150px;
  top: auto;
  bottom: 0;
  box-shadow: none;
  width: 515px;
  height: 433px;
}
.greet-area.type-recruit .greet-ttl {
  font-size: 2.5rem;
}
.greet-area.type-recruit .greet-ttl span {
  color: #009250;
  font-size: 1.5rem;
  display: block;
}
@media screen and (max-width: 1025px) {
  .greet-area.type-recruit .greet-ttl {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 1101px) {
  .greet-area.type-recruit .greet-area-box {
    width: 65%;
  }
  .greet-area.type-recruit::before {
    right: -150px;
    top: 0;
    width: 400px;
    height: 333px;
  }
  .greet-area.type-recruit::after {
    left: -150px;
    top: auto;
    bottom: 0;
    width: 400px;
    height: 336px;
  }
}
@media screen and (max-width: 896px) {
  .greet-area.type-recruit .greet-area-box {
    width: 95%;
  }
  .greet-area.type-recruit::before, .greet-area.type-recruit::after {
    opacity: 0.3;
  }
}
@media screen and (max-width: 639px) {
  .greet-area.type-recruit {
    padding: 20px 0;
  }
  .greet-area.type-recruit .greet-area-box {
    width: 100%;
    padding: 35px 10px;
  }
  .greet-area.type-recruit .greet-ttl {
    font-size: 1.8rem;
  }
  .greet-area.type-recruit .greet-ttl span {
    font-size: 1.2rem;
  }
}
.greet-area .greet-ttl {
  font-size: 2.5rem;
}
.greet-area .greet-ttl span {
  color: #009250;
  font-size: 1.5rem;
  display: block;
}
@media screen and (max-width: 1025px) {
  .greet-area .greet-ttl {
    font-size: 2.2rem;
  }
}
.greet-area.type-business::before {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26352/top-greet2.jpg) no-repeat center/cover;
}
@media screen and (max-width: 639px) {
  .greet-area.type-business {
    margin-top: 40px;
    padding: 20px 0;
  }
  .greet-area.type-business .greet-area-box {
    margin: 36.25% auto 0;
  }
  .greet-area.type-business .greet-ttl {
    font-size: 1.8rem;
  }
  .greet-area.type-business .greet-ttl span {
    font-size: 1.2rem;
  }
}
.greet-area.type-area:before {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26352/top-area.jpg) no-repeat center/cover;
}

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

.greet_block {
  position: relative;
  margin: 60px 0 140px;
}
.greet_block:last-of-type {
  margin-bottom: 2%;
}
.greet_block.type_b .greet_img {
  right: 0;
}
.greet_block.type_b .greet_txt {
  margin-right: 0;
  margin-left: 0;
}

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

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

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

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

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

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

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

.business-head {
  display: flex;
  align-items: center;
}
.business-head .txt {
  width: 65%;
  color: #fefefe;
}
.business-head .ttl {
  width: 25%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.business-menu-list {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 95%;
  margin: 0 auto;
}
.business-menu-list > li {
  width: 30%;
}
.business-menu-list > li .ttl01 {
  position: absolute;
  left: 0;
  top: 15px;
  background-image: linear-gradient(to right, #600 -22.57%, #cd0000 68.82%);
  color: #fefefe;
  font-size: 1.8rem;
  padding: 5px 20px;
  white-space: nowrap;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
}
.business-menu-list > li .img img {
  height: 220px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.business-menu-list > li .txt {
  padding: 20px;
  text-align: center;
  color: #222020;
  font-weight: bold;
  font-size: 2rem;
}
.business-menu-list > li a {
  display: block;
  position: relative;
  background: #fefefe;
  box-shadow: 10px 10px 35px rgba(203, 203, 203, 0.35);
}
.business-menu-list > li a:hover {
  transform: translate(5px, 5px);
}
.business-menu-list > li a:hover .list-btn .icon {
  background-image: linear-gradient(to right, #600 -22.57%, #cd0000 68.82%);
}
.business-menu-list > li a:hover .list-btn .icon span {
  color: #fff;
}
@media screen and (max-width: 1101px) {
  .business-menu-list > li {
    width: 40%;
  }
}
@media screen and (max-width: 1025px) {
  .business-menu-list > li {
    width: 100%;
  }
  .business-menu-list > li a .ttl02 {
    margin-bottom: 20px;
  }
  .business-menu-list > li:not(:last-child) {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 639px) {
  .business-menu-list > li a .ttl02 {
    font-size: 1.5rem;
  }
  .business-menu-list > li .btn02 {
    width: 80%;
  }
}

.business-box {
  margin: 0 auto;
  width: 90%;
  background: #fefefe;
  padding: 40px;
}
.business-box .column2 {
  margin-bottom: 40px;
}
.business-box .inner {
  display: flex;
  justify-content: flex-end;
  gap: 40px;
}
.business-box .inner .ttl.top {
  margin-top: -60px;
}
.business-box .inner .img {
  margin-bottom: 15px;
  width: 70px;
}
.business-box .inner .child-txt {
  padding: 40px;
}
.business-box .inner2 {
  background: #fefefe;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 639px) {
  .business-box .inner2 {
    width: 100%;
  }
}
.business-box .inner2 .mtitle_line {
  width: 90%;
  margin: 0 auto 25px;
}
.business-box .child-img > div {
  height: 400px;
  width: 400px;
}
@media screen and (max-width: 1101px) {
  .business-box .child-img > div {
    height: 300px;
    width: 100%;
  }
}
@media screen and (max-width: 639px) {
  .business-box .child-img > div {
    height: 250px;
  }
}
.business-box .child-img > div img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.business-box .sub-txt {
  padding: 20px;
  border: 2px solid rgba(11, 54, 101, 0.5);
  border-radius: 5px;
  background: #fefefe;
}

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

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

/*menu-bnr
------------------------------------*/
.menu-bnr li a {
  display: flex;
  align-items: center;
  background: #fdfdfd;
  position: relative;
  animation: anim-out 0.2s ease-in forwards;
  overflow: hidden;
}
.menu-bnr li a:hover {
  animation: anim-in 0.2s ease-in forwards;
}
.menu-bnr li a:hover .bnr-img img {
  transform: scale(1.05);
  transition: all 0.2s ease-in;
}
.menu-bnr li a:hover .arrow {
  right: 10px;
  transition: all 0.2s ease-in;
}
.menu-bnr li a .bnr-img {
  width: 40%;
  height: 200px;
  overflow: hidden;
}
.menu-bnr li a .bnr-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
.menu-bnr li .bnr-title {
  padding-left: 20px;
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: 0.1em;
  color: #222;
  line-height: 1.4;
}
.menu-bnr li .bnr-title .eng {
  font-weight: normal;
  color: #5aaf39;
  font-family: "YakuHanJP", "Alata", "Cormorant Garamond", sans-serif;
  display: block;
  font-size: 1.6rem;
  letter-spacing: 0.1rem;
}
.menu-bnr li .arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  stroke-miterlimit: 5;
  stroke-width: 1;
  stroke: #96d04b;
}
.menu-bnr.type1 {
  display: flex;
  flex-wrap: wrap;
}
.menu-bnr.type1 li {
  width: 48%;
  margin-bottom: 25px;
}
.menu-bnr.type1 li:nth-child(2n) {
  margin-left: 4%;
}
.menu-bnr.type1 li .bnr-img {
  height: 160px;
}

@media screen and (max-width: 667px) {
  .menu-bnr li .bnr-img {
    width: 30%;
    height: 120px;
  }
  .menu-bnr li .bnr-title {
    padding-left: 15px;
    font-size: 1.4rem;
  }
  .menu-bnr li .bnr-title .eng {
    font-size: 1.2rem;
  }
  .menu-bnr.type1 li {
    width: 100%;
    margin: 0 auto 15px;
  }
  .menu-bnr.type1 li:nth-child(2n) {
    margin-left: auto;
  }
  .menu-bnr.type1 li .bnr-img {
    height: 120px;
  }
  .menu-bnr .arrow {
    transform: translateY(-50%);
    right: 10px;
  }
}
/*----------------------------------
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 #21a2af !important;
}
.form-contents .required::before {
  background: #009250 !important;
  padding: 5px 10px !important;
}
.form-contents .textarea {
  background-color: #f0f0f0 !important;
  border: none !important;
  padding: 20px 15px !important;
}
.form-contents input[type=text],
.form-contents textarea {
  font-size: 16px;
}
.form-contents .submit-btn {
  background-color: #009250 !important;
  border: none !important;
  color: #fefefe !important;
}
.form-contents .submit-btn:hover {
  color: #21a2af !important;
  background-color: #fefefe !important;
  border: 1px solid #21a2af !important;
}
.form-contents .submit-btn:hover:before {
  background-color: #21a2af !important;
}
.form-contents .custom-area p {
  padding: 10px 0;
}

@media screen and (max-width: 639px) {
  .form-contents {
    padding: 0 10px !important;
  }
  .form-contents dl {
    margin: 10px 0 !important;
  }
  .form-contents dl dt {
    float: none !important;
    padding-top: 15px !important;
  }
  .form-contents dl dd {
    padding-left: 0 !important;
    padding-bottom: 15px !important;
    padding-top: 10px !important;
    line-height: 20px !important;
  }
  .form-contents .submit-btn {
    width: 250px !important;
  }
}
/* accordion
----------------------------------*/
.accordion dt,
.accordion dd {
  position: relative;
  padding: 1em;
}
.accordion dt {
  background: linear-gradient(135deg, #333, #333);
  cursor: pointer;
  font-size: 1.7rem;
  color: #fff;
}
.accordion dt:after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f067";
  font-weight: 900;
  right: 20px;
  top: 50%;
  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;
  }
}

/*----------------------------------
text anime
----------------------------------*/
.animetxt {
  position: relative;
}
.animetxt:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 10;
  bottom: 0;
  left: 0;
}

.bottm-move:before {
  animation: topmain-anime3 1s ease-in 0s forwards;
}

@keyframes topmain-anime2 {
  0% {
    transform-origin: top;
    transform: scaleY(1);
  }
  100% {
    transform-origin: top;
    transform: scaleY(0);
  }
}
@keyframes topmain-anime3 {
  0% {
    transform-origin: right;
    transform: scaleX(1);
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
@keyframes topmain-anime4 {
  0% {
    transform-origin: left;
    transform: scaleX(1);
  }
  100% {
    transform-origin: left;
    transform: scaleX(0);
  }
}
@keyframes topmain-anime5 {
  0% {
    transform-origin: bottom;
    transform: scaleY(1);
  }
  100% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
}
.simply-scroll-container {
  position: relative;
}

.simply-scroll-clip {
  position: relative;
  overflow: hidden;
}

.simply-scroll-list {
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.simply-scroll-list li {
  float: left;
  padding: 0;
  margin: 15px 0;
  width: 400px;
  height: auto;
}
.simply-scroll-list li a img {
  display: block;
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 100%, 25px 100%);
          clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 100%, 25px 100%);
}
.simply-scroll-list li a:hover {
  filter: brightness(1.5);
}
@media screen and (max-width: 639px) {
  .simply-scroll-list li {
    width: 200px;
  }
  .simply-scroll-list li a img {
    height: 150px;
  }
}

/*what-inner
------------------------------------*/
.what-inner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.what-inner.m-b0 {
  margin-bottom: 0;
}
.what-inner .in-left {
  width: 200px;
  padding: 10px;
  text-align: center;
}
.what-inner .in-right {
  flex: 1;
  margin-left: 30px;
  font-size: 0.9em;
}
@media screen and (max-width: 639px) {
  .what-inner .in-left {
    width: 150px;
    margin-bottom: 20px;
  }
  .what-inner .in-left figure img {
    height: 230px;
  }
  .what-inner .in-right {
    width: 100%;
    flex: auto;
    margin-left: auto;
    margin-right: auto;
  }
}

/*recruit-inner*/
.recruit-inner {
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
}
.recruit-inner .recruit-left {
  width: 30%;
}
.recruit-inner .recruit-left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 10% 50%;
     object-position: 10% 50%;
}
.recruit-inner .recruit-center {
  width: 40%;
  padding: 30px;
}
.recruit-inner .recruit-right {
  width: 30%;
}
.recruit-inner .recruit-right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 100% 50%;
     object-position: 100% 50%;
}
@media screen and (max-width: 1101px) {
  .recruit-inner .recruit-left {
    width: 25%;
  }
  .recruit-inner .recruit-center {
    width: 45%;
    padding: 20px;
  }
  .recruit-inner .recruit-right {
    width: 25%;
  }
}
@media screen and (max-width: 639px) {
  .recruit-inner .recruit-left {
    width: 50%;
  }
  .recruit-inner .recruit-center {
    width: 100%;
    order: 1;
    padding: 10px;
  }
  .recruit-inner .recruit-right {
    width: 50%;
  }
}

.recruit-title {
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: inherit;
  font-size: 4rem;
  color: #009250;
  text-align: center;
  margin-bottom: 15px;
}
.recruit-title.type1 {
  text-shadow: 1px 1px 0px #009250, -1px 1px 0px #009250, 1px -1px 0px #009250, -1px -1px 0px #009250, 1px 0px 0px #009250, 0px 1px 0px #009250, -1px 0px 0px #009250, 0px -1px 0px #009250;
}
@media screen and (max-width: 1101px) {
  .recruit-title {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 1025px) {
  .recruit-title {
    font-size: 3rem;
  }
}
@media screen and (max-width: 639px) {
  .recruit-title {
    font-size: 5rem;
    margin-bottom: 10px;
    font-size: 2rem;
  }
}

.title-small {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: inherit;
  font-size: 3.5rem;
  color: #fefefe;
  text-shadow: 1px 1px 0px #009250, -1px 1px 0px #009250, 1px -1px 0px #009250, -1px -1px 0px #009250, 1px 0px 0px #009250, 0px 1px 0px #009250, -1px 0px 0px #009250, 0px -1px 0px #009250;
  margin-bottom: 15px;
  text-align: center;
}

.marker-base {
  background: linear-gradient(transparent 45%, #102777 0%);
  display: inline-block;
  padding: 0 10px 5px;
}

/*beforeafter*/
.k-flex {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 40px;
}
.k-flex .k-fitem {
  width: 48%;
  padding: 10px;
}
@media screen and (max-width: 1025px) {
  .k-flex .k-fitem {
    width: 48%;
  }
}
@media screen and (max-width: 639px) {
  .k-flex .k-fitem {
    width: 100%;
  }
}

.k-beforeAfter1 {
  position: relative;
}
.k-beforeAfter1 * {
  box-sizing: border-box;
}
.k-beforeAfter1 .before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40%;
  z-index: 2;
}
.k-beforeAfter1 .after {
  padding: 10px 10px 30px 30px;
}
.k-beforeAfter1 .before .inner img {
  height: 200px;
}
.k-beforeAfter1 .inner {
  position: relative;
  background-color: #fff;
}
.k-beforeAfter1 .inner img {
  width: 100%;
  height: 320px;
  -o-object-fit: cover;
  object-fit: cover;
  border: solid 5px #fff;
  box-shadow: 2px 2px 10px -3px rgba(0, 0, 0, 0.3);
}
.k-beforeAfter1 .inner p {
  position: absolute;
  font-weight: 600;
  top: 10px;
  right: 10px;
  letter-spacing: 0.5px;
  background: rgba(34, 34, 34, 0.8);
  border-radius: 5px;
  padding: 1px 8px 0px;
  text-align: right;
  z-index: 3;
  color: #fff;
  font-family: "YakuHanJP", "Roboto Condensed", sans-serif;
  font-size: 2rem;
}
.k-beforeAfter1 .inner p.af {
  background: rgba(223, 162, 69, 0.9);
}
.k-beforeAfter1 .inner p a {
  transition: all 0.3s ease;
}
.k-beforeAfter1 .inner p a:hover {
  opacity: 0.6;
}
@media all and (max-width: 639px) {
  .k-beforeAfter1 .before {
    width: 50%;
  }
  .k-beforeAfter1 .before .inner img {
    height: 110px;
  }
  .k-beforeAfter1 .inner img {
    height: 170px;
  }
}

.top-map {
  background-color: #fff;
  margin: 0 auto 40px;
  max-width: 760px;
}
.top-map img {
  width: 100%;
}
@media screen and (max-width: 1101px) {
  .top-map {
    width: 700px;
  }
}
@media screen and (max-width: 1025px) {
  .top-map {
    width: 90%;
    margin: 0 auto;
  }
}

/*reason-wrap*/
.reason-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.reason-wrap .heading {
  width: 32%;
}
.reason-wrap .heading .inner {
  position: sticky;
  top: 80px;
}
.reason-wrap .detail {
  width: 67%;
}
.reason-wrap .detail.detail-width {
  width: 100%;
}
@media all and (max-width: 639px) {
  .reason-wrap .heading {
    margin-bottom: 40px;
    width: 100%;
  }
  .reason-wrap .detail {
    width: 100%;
  }
}

.reason-child {
  margin-bottom: 40px;
  position: relative;
}
.reason-child .number-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 66px;
  height: 66px;
}
.reason-child .number-box .number-inner {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  width: 100%;
  height: 100%;
  max-width: 96px;
  max-height: 96px;
  border-radius: 50%;
  border: 1px solid #111;
}
.reason-child .number-box .number-inner span {
  font-size: 2rem;
  font-weight: 500;
  color: #111;
}
.reason-child .reason-right {
  position: relative;
  padding-left: calc(0% + 96px);
}
.reason-child .reason-right .r-ttl {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  padding: 16px 0 10px;
  max-height: 96px;
  border-top: 1px solid #111;
  font-size: 2.5rem;
  color: #009250;
}
@media all and (max-width: 639px) {
  .reason-child .number-box {
    width: 50px;
    height: 50px;
  }
  .reason-child .reason-right {
    padding-left: calc(0% + 70px);
  }
  .reason-child .reason-right .r-ttl {
    font-size: 1.6rem;
  }
}

.reason-image {
  position: relative;
  height: 320px;
  margin-bottom: 30px;
}
.reason-image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
}
@media all and (max-width: 639px) {
  .reason-image {
    height: 220px;
  }
}

/* phone
----------------------------------*/
.phone_txt {
  line-height: 1.2;
  margin-left: 20px;
}
.phone_txt a {
  position: relative;
  display: block;
  font-size: 3.7rem;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
}
.phone_txt a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
}
.phone_txt span {
  font-size: 1.2rem;
}
.phone_txt.mobile a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f3cd";
  font-weight: 900;
}

/*thum-item*/
.thumb-item li {
  width: 100%;
  padding: 0 !important;
}
.thumb-item li a {
  width: 100%;
  max-height: 400px;
  overflow: hidden;
  display: block;
}
.thumb-item li img {
  width: 100%;
  height: 100%;
  max-width: 100% !important;
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: contain;";
}

.thumb-item-nav {
  padding: 0 !important;
}
.thumb-item-nav li {
  overflow: hidden;
  height: 100px;
  padding: 0 !important;
}
.thumb-item-nav li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  max-height: 150px !important;
}
@media screen and (max-width: 639px) {
  .thumb-item-nav li {
    height: 80px;
  }
}
.thumb-item-nav .slick-prev,
.thumb-item-nav .slick-next {
  bottom: -59px !important;
}
.thumb-item-nav .slick-prev {
  left: 0px !important;
}
.thumb-item-nav .slick-next {
  right: 0px !important;
  left: 377px !important;
}

#medical-box {
  display: flex;
  align-items: flex-start;
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
  flex-wrap: wrap;
}
@media all and (max-width: 1101px) {
  #medical-box {
    flex-direction: column;
    justify-content: center;
    margin-bottom: 0;
    padding: 0;
  }
}
#medical-box #medical-side {
  width: 220px;
  position: sticky;
  left: 0;
  top: 80px;
  margin-bottom: 40px;
}
@media all and (max-width: 1101px) {
  #medical-box #medical-side {
    display: none;
  }
}
#medical-box #medical-main {
  flex: 1;
  margin-left: 60px;
}
@media all and (max-width: 896px) {
  #medical-box #medical-main {
    flex: 0 1 auto;
    margin: 0;
    width: 100%;
  }
}

.sidenavi_wrap {
  margin-top: 50px;
  background: #fff;
  padding: 0 10px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 2px 2px 15px -5px rgba(63, 49, 37, 0.1);
}
.sidenavi_wrap .title-mini a {
  display: block;
  background: #F4F3F3;
  color: #111;
  text-align: center;
  font-family: "YakuHanMP", "Zen Old Mincho", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 4px 0;
  margin: 0 -10px;
}
.sidenavi_wrap .title-mini a:after {
  font-family: "Font Awesome 5 Free";
  content: "\f078";
  font-weight: 900;
  margin-left: 4px;
  font-size: 14px;
  color: #009250;
}
.sidenavi_wrap .title-mini2 {
  font-weight: 700;
  letter-spacing: 0.15em;
  background: #009250;
  color: #fff;
  padding: 4px 0;
  margin: 0 -10px;
  text-align: center;
  font-size: 110%;
}
.sidenavi_wrap .side-navi {
  font-size: 1.4rem;
  line-height: 1.6;
  padding: 10px 0;
}
.sidenavi_wrap .side-navi > li a {
  display: block;
  color: #3f3125;
  position: relative;
  padding: 8px 0;
  transition: all 1s ease;
}
.sidenavi_wrap .side-navi > li a span {
  font-size: 90%;
}
.sidenavi_wrap .side-navi > li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f111";
  font-weight: 900;
  margin-right: 10px;
  color: #21a2af;
  font-size: 0.5em;
}
.sidenavi_wrap .side-navi > li a:hover {
  background: #fcf8ef;
}
.sidenavi_wrap .side-navi > li a:hover:before {
  color: #009250;
}
.sidenavi_wrap .side-navi > li:not(:last-of-type) {
  border-bottom: 1px dashed #ccc;
}