@charset "UTF-8";
/* アニメーションベンダープレフィックス込み指定 */
/* アニメーションベンダープレフィックス込み指定 */
/********************/
body {
  color: #101010;
  font-family: "YakuHanJP", Lato, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  font-weight: 500;
  position: relative;
}
body::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  background: #f7f7f7;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/25658/bg-body.jpg);
  opacity: 0.3;
}

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

.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;
  font-feature-settings: "palt";
}

.chosei {
  margin-bottom: 60px;
}

.chosei2 {
  margin-bottom: 30px;
}

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

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

.eng {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.bigger {
  font-size: 1.15em;
  line-height: 1.4;
}

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

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

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

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

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

.border-in.on {
  opacity: 1;
  animation: view-borderin 1s 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 #7D6B62;
  border-radius: 50%;
  border-right: 1px solid rgba(125, 107, 98, 0.2);
  border-top: 1px solid rgba(125, 107, 98, 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, #2D4A86, #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%;
  }
}
.gradient2 {
  position: relative;
}
.gradient2:before {
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(93.39deg, #A4CA68 0%, #93b55d 40%, #83a153 60.05%, #728d48 80.88%);
  background-size: 600% 600%;
  animation: anim-gradient2 8s ease infinite;
}

@keyframes anim-gradient2 {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
#l-header {
  width: 100%;
  position: absolute;
  z-index: 200;
  top: 0;
  left: 0;
  transition: all 0.2s ease-in;
  background: rgba(104, 87, 79, 0.8);
}
#l-header.is-fixed {
  position: fixed;
  background: rgba(104, 87, 79, 0.8);
  border: none;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
#l-header.is-fixed .inner #logo .logo1 {
  display: none;
}
#l-header.is-fixed .inner #logo .logo2 {
  display: block;
}
#l-header .inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1600px;
  min-width: 1000px;
  margin: 0 auto;
  padding: 0 5px;
}
#l-header .inner #logo {
  width: 350px;
  padding-left: 8px;
}
#l-header .inner .logo2 {
  display: none;
}
#l-header .head-right {
  margin-left: auto;
  margin-right: 5px;
}
@media screen and (max-width: 1025px) {
  #l-header .head-right {
    display: none;
  }
}
.head-right_contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  z-index: 2;
}
.head-right_contact.type_hamburger {
  position: relative;
  right: auto;
  top: auto;
  margin-top: 20px;
  justify-content: center;
  gap: 20px;
}
.head-right_contact.type_hamburger .head-right_fb,
.head-right_contact.type_hamburger .head-right_ig {
  width: auto;
}
.head-right_contact.type_hamburger .head-right_fb a,
.head-right_contact.type_hamburger .head-right_ig a {
  text-align: center;
  background: #7D6B62;
  color: #fefefe !important;
  border: 1px solid #7D6B62;
  height: auto;
  border-radius: 100%;
  width: 3em;
  height: 3em;
  line-height: 3em;
  text-align: center;
  display: block;
  padding: 0 !important;
}
.head-right_contact.type_hamburger .head-right_fb a:hover,
.head-right_contact.type_hamburger .head-right_ig a:hover {
  background: #fefefe;
  color: #7D6B62 !important;
}

.head-right_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 67px;
  padding: 0 14px;
  background: #334352;
  font-size: 1.4rem;
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
  flex-direction: column;
}
.head-right_btn a i {
  font-size: 2rem;
}

.head-right_ig a {
  background: #334352;
  color: #fff;
  font-weight: 600;
}
.head-right_ig a:hover {
  background: #000;
}

.head-right_fb {
  margin-left: 10px;
}
.head-right_fb a {
  background: #334352;
  color: #fff;
}
.head-right_fb a:hover {
  background: #000;
}

#header_nav {
  position: relative;
  display: flex;
}
#header_nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 10px;
}
#header_nav ul li {
  position: relative;
  text-align: center;
}
#header_nav ul li:not(:last-child) {
  border-right: 1px solid rgba(65, 54, 45, 0.2);
}
#header_nav ul li.footer-only {
  display: none;
}
#header_nav ul li.btn-contact a {
  display: inline-block;
  position: relative;
  padding: 7px 20px 8px 40px;
  border-radius: 30px;
  background: #7D6B62;
  color: #fff;
  font-feature-settings: "palt";
}
#header_nav ul li.btn-contact a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 5px;
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
}
#header_nav ul li.btn-contact a:after {
  display: none;
}
#header_nav ul li.btn-contact a.active .eng, #header_nav ul li.btn-contact a:hover .eng {
  color: #a0dbf1;
}
#header_nav ul li a {
  display: block;
  position: relative;
  font-weight: 600;
  font-size: 1.4rem;
  color: #fff;
  width: 8em;
}
#header_nav ul li a .eng {
  display: block;
  position: relative;
  font-size: 1.4rem;
  line-height: 1.3;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-style: normal;
  color: #fff;
  font-weight: normal;
}
#header_nav ul li a:after {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -3px;
  content: "";
  width: 0;
  height: 2px;
  background: #334352;
  transition: 0.2s width ease-in;
}
#header_nav ul li a:hover:after, #header_nav ul li a.active:after {
  width: 20px;
}
#header_nav .dropdown {
  display: none;
  position: absolute;
  left: 50%;
  top: 45px;
  transform: translateX(-50%);
  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(2, 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: #334352;
  width: 130px;
}
#header_nav .dropdown .dropdown-li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 12px 10px;
  color: #fff;
  font-size: 1.3rem;
  letter-spacing: 0;
}
#header_nav .dropdown .dropdown-li a .footer-only {
  display: none;
}
#header_nav .dropdown .dropdown-li a:hover {
  background: #111;
}
#header_nav .dropdown .dropdown-li a:after {
  display: none;
}

/* page-top
----------------------------------*/
#page-top {
  position: fixed;
  bottom: 10px;
  right: 7px;
  z-index: 250;
}
#page-top a {
  display: block;
  background: #7D6B62;
  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: 1101px) {
  #page-top {
    bottom: 90px;
  }
}

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

#slideshow {
  position: relative;
  overflow: hidden;
}
#slideshow img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
#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 .slide-img {
  overflow: hidden;
  width: 100%;
  height: calc(100vh - 65px);
}
#slideshow .slide-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
#slideshow .slide-img:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, #000);
  opacity: 0.3;
}
@media screen and (max-width: 1101px) {
  #slideshow .slide-img {
    height: 65vw;
  }
}
@media screen and (max-width: 764px) {
  #slideshow .slide-img {
    height: 70vh;
  }
}
#slide-wrap {
  position: relative;
}

@keyframes typinganime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#catch {
  position: absolute;
  z-index: 50;
  transform: translate(-50%, -50%);
  top: 52%;
  left: 50%;
  transition: opacity 2s cubic-bezier(0.18, 0.06, 0.23, 1);
  z-index: 10;
  text-align: center;
  width: 90%;
  margin: 0 auto;
}
#catch h3,
#catch h2 {
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
  letter-spacing: 0.11em;
  font-size: 4.5rem;
  color: #171717;
  filter: drop-shadow(0 0 5px rgba(92, 64, 49, 0.3));
  opacity: 0;
}
#catch h3.on,
#catch h2.on {
  opacity: 1;
  transition: all 2s ease-in;
}
#catch h3 {
  font-size: 3rem;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  line-height: 1.6;
  text-shadow: 1px 1px 0 rgba(92, 64, 49, 0.4);
}
@media screen and (max-width: 1025px) {
  #catch h2 {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 639px) {
  #catch h2 {
    font-size: 2.5rem;
  }
  #catch h3 {
    font-size: 1.8rem;
  }
}

.top-img {
  margin-top: 0;
}

/* @media screen and (max-width: 1100px) {
  .top-img {
    margin-top: 21px;
  }
}

@media screen and (max-width: 1000px) {
  .top-img {
    margin-top: 46px;
  }
}
@media screen and (max-width: 1025px) {
  .top-img {
    margin-top: 46px;
  }
}

@media screen and (max-width: 965px) {
  .top-img {
    margin-top: 20px;
  }
}
@media screen and (max-width: 640px) {
  .top-img {
    margin-top: 28px;
  }
} */


/***************************************************
 * Generated by SVG Artista on 4/18/2023, 2:08:15 PM
 * MIT license (https://opensource.org/licenses/MIT)
 * W. https://svgartista.net
 **************************************************/
@keyframes PageAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  40% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.1% {
    transform-origin: right;
    transform: scaleX(1);
  }
  70% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
@keyframes slideIn {
  0%, 60% {
    transform-origin: left;
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
#scrolldown {
  position: absolute;
  right: 15px;
  bottom: 60px;
  color: #fefefe;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-style: normal;
  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;
}

@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-area {
  margin-top: 80px;
  position: relative;
}
.contact-area .inner {
  padding: 0 0 60px;
}
.contact-area::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 60px);
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/25658/footer-img.jpg) no-repeat 50% 65%/cover;
  opacity: 0.15;
  z-index: -2;
  filter: blur(6px);
}
.contact-area .mtitle {
  position: relative;
  padding-bottom: 100px;
}
.contact-area .mtitle .eng {
  color: #222020 !important;
}
.contact-area .mtitle .eng::first-letter {
  color: #7D6B62;
}
.contact-area .mtitle .ja {
  color: #222020 !important;
}
.contact-area .mtitle::after {
  position: absolute;
  content: "";
  display: block;
  left: 50%;
  bottom: 0;
  width: 1px;
  height: 60px;
  background: #222020;
  transform: translateX(-50%);
}
@media screen and (max-width: 639px) {
  .contact-area .mtitle {
    padding-bottom: 60px;
  }
  .contact-area .mtitle::after {
    height: 40px;
  }
}

.contact_bnr {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 70%;
  margin: 0 auto 60px;
  max-width: 900px;
  gap: 40px;
}
@media screen and (max-width: 1101px) {
  .contact_bnr {
    width: 90%;
  }
}
@media screen and (max-width: 639px) {
  .contact_bnr {
    margin-bottom: 0;
    gap: 0;
  }
}
.contact_bnr > li {
  width: 46%;
  margin: 0 auto -50px;
}
@media screen and (max-width: 1025px) {
  .contact_bnr > li {
    width: 100%;
    margin: 0 auto 15px;
  }
}
.contact_bnr > li .bnr_tel {
  white-space: nowrap;
  position: relative;
}
.contact_bnr > li .bnr_tel:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
}
.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: #7D6B62;
}
.contact_bnr > li .bnr_fax:before {
  font-family: "Font Awesome 5 Free";
  content: "\f1ac";
  font-weight: 900;
}
.contact_bnr > li .bnr_mail {
  font-size: 1.6rem;
}
.contact_bnr > li .bnr_mail:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
}
@media screen and (max-width: 639px) {
  .contact_bnr > li .bnr_mail {
    font-size: 1.2rem;
  }
}
.contact_bnr > li a,
.contact_bnr > li span {
  display: block;
  color: #334352;
  font-size: 2rem;
  font-weight: normal;
  text-align: center;
  letter-spacing: 0.2rem;
  padding: 12px 30px;
  border: 0.9px solid #334352;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
}
.contact_bnr > li a:before,
.contact_bnr > li span:before {
  margin-right: 5px;
  position: relative;
  display: inline-block;
}
.contact_bnr > li a:hover,
.contact_bnr > li span:hover {
  color: #fff;
  background: #334352;
}
@media screen and (max-width: 639px) {
  .contact_bnr > li a,
  .contact_bnr > li span {
    margin: 0 auto;
    white-space: nowrap;
    padding: 10px 0;
    width: 100%;
    font-size: 1.5rem;
    height: auto;
  }
  .contact_bnr > li a:before,
  .contact_bnr > li span:before {
    font-size: 1.3rem;
    transform: translateY(-2px);
  }
}
.contact_bnr > li p {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 5px;
}
.contact_bnr.type1 > li {
  width: 48%;
}
.contact_bnr.type1 > li a,
.contact_bnr.type1 > li span {
  color: #334352;
  border: 0.9px solid #334352;
}
.contact_bnr.type1 > li a:hover,
.contact_bnr.type1 > li span:hover {
  background: rgba(51, 67, 82, 0.3);
}
@media screen and (max-width: 639px) {
  .contact_bnr.type1 > li {
    width: 100%;
  }
}

/* footer
----------------------------------*/
footer {
  position: relative;
}
footer::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #495a2e;
  opacity: 0.5;
  z-index: 0;
}
footer::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/25658/2.jpg) no-repeat 50% 40%/cover;
  opacity: 0.6;
  z-index: -1;
}

.gmapbox .ggmap {
  padding-bottom: 33%;
  position: relative;
}
.gmapbox .ggmap.type-footer {
  padding-bottom: 27%;
}
.gmapbox .ggmap.type-footer iframe {
  filter: grayscale(80%);
}
@media screen and (max-width: 1025px) {
  .gmapbox .ggmap.type-footer {
    padding-bottom: 45%;
  }
}
@media screen and (max-width: 1025px) {
  .gmapbox .ggmap.type-company {
    padding-bottom: 55%;
  }
}

.footer-contact-box {
  position: relative;
  background: #7D6B62;
  background-size: 600% 600%;
  animation: anim-gradient2 8s ease infinite;
  display: block;
}
.footer-contact-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #333;
  background: #2d3b49;
  background-size: 600% 600%;
  animation: anim-gradient2 8s ease infinite;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.footer-contact-box .tel-box {
  margin-top: 50px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.footer-contact-box .tel-box a:hover span {
  opacity: 0.6;
}
.footer-contact-box .tel-box span {
  padding: 20px 20px;
  font-size: 2.5rem;
  font-weight: bold;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-style: normal;
  color: #fefefe;
  transition: all 0.5s ease;
}
.footer-contact-box .tel-box span i {
  padding-right: 10px;
}
.footer-contact-box .tel-box .mail {
  font-size: 1.6rem;
  background: #fefefe;
  color: #334352;
  border-radius: 60px;
  padding: 20px 40px;
  display: block;
}
@media screen and (max-width: 639px) {
  .footer-contact-box .tel-box {
    flex-direction: column;
    margin-top: 20px;
    gap: 20px;
  }
  .footer-contact-box .tel-box .btn06 {
    width: 70px;
    height: 70px;
    line-height: 70px;
  }
  .footer-contact-box .tel-box .btn06.type2 {
    margin-left: 20px;
  }
  .footer-contact-box .tel-box span {
    font-size: 2rem;
  }
  .footer-contact-box .tel-box .mail {
    font-size: 1.2rem;
    padding: 15px 40px;
  }
}
.footer-contact-box:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
@media screen and (max-width: 639px) {
  .footer-contact-box .tel-box span {
    white-space: nowrap;
    padding: 10px;
  }
  .footer-contact-box .mtitle {
    margin: 0 auto 20px;
  }
}

#l-footer {
  font-size: 1.4rem;
  position: relative;
  margin: 0 auto;
  padding-bottom: 30px;
}
#l-footer .inner {
  margin: 0 auto;
  position: relative;
  justify-content: space-between;
  z-index: 3;
  padding: 60px 5vw;
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
#l-footer .inner > div {
  width: 48%;
}
#l-footer .inner .whitebox {
  padding: 20px 0;
}
@media screen and (max-width: 1101px) {
  #l-footer .inner .footer-left {
    width: 30%;
  }
  #l-footer .inner .footer-right {
    width: 65%;
  }
}
@media screen and (max-width: 639px) {
  #l-footer .inner .footer-left {
    width: 100%;
  }
  #l-footer .inner .footer-right {
    width: 100%;
  }
}
#l-footer .footer-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}
#l-footer .footer-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#l-footer .footer-right .footer-tel {
  text-align: right;
  margin-bottom: 20px;
}
#l-footer .footer-right .footer-tel a {
  background: #fefefe;
  color: #222020;
  padding: 10px 30px;
  border-radius: 20px;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  display: inline-block;
}
#l-footer .footer-right .footer-tel a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 639px) {
  #l-footer .footer-right .footer-tel {
    text-align: center;
    display: none;
  }
  #l-footer .footer-right .footer-tel a {
    width: 50%;
    font-size: 1.6rem;
    border-radius: 30px;
  }
}
@media screen and (max-width: 1025px) {
  #l-footer .footer-right {
    justify-content: flex-end;
  }
}
@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: 40px 5vw;
  }
}

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

.footer-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.footer-wrap .footer-left {
  width: 35%;
}
.footer-wrap .footer-right {
  width: 62%;
}
@media screen and (max-width: 1025px) {
  .footer-wrap {
    flex-direction: column;
  }
  .footer-wrap .footer-left,
  .footer-wrap .footer-right {
    width: 100%;
  }
  .footer-wrap .footer-left {
    margin-bottom: 20px;
  }
}

.footer-txt {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 25px;
}
.footer-txt em {
  font-style: normal;
  display: block;
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
  font-size: 2.2rem;
  color: #f9f9f6;
}
@media screen and (max-width: 639px) {
  .footer-txt {
    font-size: 1.2rem;
  }
  .footer-txt em {
    font-size: 1.8rem;
  }
}

.footer-txt2 {
  margin: 20px 0;
}

/* footer_navi
----------------------------------*/
.footer_navi {
  flex-basis: 100%;
  max-width: 1100px;
  margin: auto;
  padding: 60px 0;
}
.footer_navi > ul {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer_navi > ul > li:first-child {
  display: none;
}
@media screen and (max-width: 1101px) {
  .footer_navi > ul > li {
    padding: 0px;
  }
}
.footer_navi > ul > li > a {
  color: rgb(255, 255, 255);
  position: relative;
  display: block;
  font-weight: 500;
  margin-bottom: 10px;
}
.footer_navi > ul > li > a .ja {
  font-size: 1.8rem;
}
.footer_navi > ul > li > a .eng {
  display: none;
}
.footer_navi > ul > li > a:hover {
  color: #7D6B62;
}
.footer_navi > ul > li .dropdown .dropdown-li a {
  position: relative;
  color: #fff;
  padding-left: 15px;
}
.footer_navi > ul > li .dropdown .dropdown-li a::before {
  content: "-";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.footer_navi > ul > li .dropdown .dropdown-li a:hover {
  color: #7D6B62;
}
@media screen and (max-width: 1025px) {
  .footer_navi {
    display: none;
  }
}

.flogo {
  margin: 0 auto 10px 0;
  width: 300px;
  min-height: 0;
}
@media screen and (max-width: 639px) {
  .flogo {
    margin: 0 auto 20px;
    width: 55%;
    text-align: center;
  }
}

.address {
  font-size: 12px;
  color: #fefefe;
  margin-left: auto;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 639px) {
  .address {
    text-align: center;
    margin-right: auto;
  }
}

.copyright {
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
  color: #fefefe;
}
@media screen and (max-width: 1101px) {
  .copyright {
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 1025px) {
  .copyright {
    font-size: 12px;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 639px) {
  .copyright {
    padding: 0;
  }
}

/*----------------------------------
 top-contents
----------------------------------*/
.top-bnr-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  max-width: 95%;
  gap: 40px;
  padding: 80px 0;
}
.top-bnr-list > li {
  width: calc(50% - 20px);
  height: 350px;
  position: relative;
}
.top-bnr-list > li:first-child {
  width: 100%;
}
.top-bnr-list > li a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}
.top-bnr-list > li a .eng2 {
  position: absolute;
  right: 0;
  bottom: 0;
  font-family: "Jost", sans-serif;
  font-size: 8rem;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1;
  white-space: nowrap;
}
.top-bnr-list > li a:hover .btn-arrow::before {
  border-top-color: #fefefe;
  border-right-color: #fefefe;
  border-bottom-color: #fefefe;
  transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
}
.top-bnr-list > li a:hover .btn-arrow::after {
  border-top: 1px solid #fefefe;
  border-left-width: 1px;
  border-right-width: 1px;
  transform: rotate(270deg);
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s;
}
.top-bnr-list > li a:hover .btn-arrow i {
  border-bottom-color: #fefefe;
}
.top-bnr-list > li a:hover .btn-arrow i:before {
  border-right-color: #fefefe;
}
.top-bnr-list > li a:hover .top-bnr-img img {
  padding: 0;
  transform: scale(1.1);
}
.top-bnr-list .top-bnr-img {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.top-bnr-list .top-bnr-img::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #7D6B62;
  z-index: 0;
  opacity: 0.2;
}
.top-bnr-list .top-bnr-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
  -o-object-position: center center;
  object-position: center center;
  transition: all 0.6s ease;
}
.top-bnr-list .btn-arrow {
  width: 70px;
  height: 70px;
  position: absolute;
  left: 50%;
  bottom: 20%;
  transform: translateX(-50%);
  text-align: center;
  line-height: 60px;
  border: 1px solid transparent;
  border-radius: 100%;
  transition: all 0.6s ease;
}
.top-bnr-list .btn-arrow::before, .top-bnr-list .btn-arrow::after {
  border-radius: 100%;
  box-sizing: inherit;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.top-bnr-list .btn-arrow::before {
  border: 1px solid transparent;
}
.top-bnr-list .btn-arrow::after {
  border: 0 solid transparent;
}
.top-bnr-list .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;
}
.top-bnr-list .btn-arrow i:before {
  position: absolute;
  width: 10px;
  height: 8px;
  content: "";
  right: 3px;
  bottom: -1px;
  border-right: 2px solid #fefefe;
  transform: skew(45deg);
}
.top-bnr-list .btn-arrow .eng2 {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-style: normal;
}
.top-bnr-list .top-bnr-title {
  padding: 15px 5px;
  line-height: 1.6;
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 95%;
  filter: drop-shadow(0px 0px 5px rgba(92, 64, 49, 0.5));
}
.top-bnr-list .top-bnr-title .eng {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 4.5rem;
  color: #fefefe;
  display: block;
}
.top-bnr-list .top-bnr-title .ja {
  display: block;
  color: #fefefe;
  font-size: 2rem;
}
@media screen and (max-width: 1025px) {
  .top-bnr-list .top-bnr-title {
    transform: translateX(-50%);
    top: 15%;
  }
}
@media screen and (max-width: 1025px) {
  .top-bnr-list {
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
    gap: 10px;
  }
  .top-bnr-list > li {
    width: 100%;
    height: auto;
  }
  .top-bnr-list > li a .top-bnr-img {
    height: 200px;
  }
  .top-bnr-list > li a .top-bnr-title .eng {
    font-size: 1.2rem;
  }
  .top-bnr-list > li a .top-bnr-title .ja {
    font-size: 1.6rem;
  }
  .top-bnr-list > li a .btn-arrow {
    width: 50px;
    height: 50px;
  }
  .top-bnr-list > li a .btn-arrow i {
    width: 25px;
  }
}
@media screen and (max-width: 639px) {
  .top-bnr-list {
    padding: 40px 0;
  }
  .top-bnr-list > li a .top-bnr-img {
    height: 180px;
  }
  .top-bnr-list > li a .top-bnr-title .eng {
    font-size: 1.1rem;
  }
  .top-bnr-list > li a .top-bnr-title .ja {
    font-size: 1.4rem;
  }
}

.top-sec1 {
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.top-sec1:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, rgba(209, 189, 231, 0.6) 0%, rgba(209, 189, 231, 0) 100%);
}
.top-sec1.type1 {
  padding-top: 0;
}
.top-sec1.type1::before {
  background-image: linear-gradient(180deg, rgba(209, 189, 231, 0.3) 0%, rgba(209, 189, 231, 0) 100%);
}
.top-sec1.type2 {
  padding-top: 0;
}

.top-sec2 {
  position: relative;
  overflow: hidden;
}
.top-sec2:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(360deg, rgba(209, 189, 231, 0.6) 0%, rgba(209, 189, 231, 0) 100%);
}

.top-title01 {
  margin-bottom: 40px;
  text-align: center;
  font-size: 2.8rem;
}
.top-title01 em {
  font-size: 1.1em;
  color: #7D6B62;
}

.top-box1 {
  width: 55%;
  margin-left: auto;
}

.top-contents li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.top-contents li .bg-photo {
  width: 55%;
  z-index: 1;
}
.top-contents li .bg-photo.r-box {
  margin-left: auto;
}
@media screen and (max-width: 1025px) {
  .top-contents li .bg-photo {
    display: block;
    width: 95%;
    margin: 0 auto;
  }
  .top-contents li .bg-photo img {
    height: 400px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (max-width: 764px) {
  .top-contents li .bg-photo img {
    height: 350px;
  }
}
@media screen and (max-width: 639px) {
  .top-contents li .bg-photo {
    width: 100%;
  }
  .top-contents li .bg-photo img {
    height: 250px;
  }
}
.top-contents li .txtbox {
  position: absolute;
  width: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 5px;
  z-index: 2;
  line-height: 2;
}
.top-contents li .txtbox.r-box {
  right: 0;
}
.top-contents li .txtbox.l-box {
  left: 0;
}
@media screen and (max-width: 1025px) {
  .top-contents li .txtbox {
    position: relative;
    width: 92%;
    left: 0;
    right: 0;
    padding: 20px 15px;
    margin: -30px auto 0;
  }
}
@media screen and (max-width: 764px) {
  .top-contents li .txtbox {
    margin: -80px auto 0;
  }
}
@media screen and (max-width: 639px) {
  .top-contents li .txtbox {
    width: 95%;
  }
}
.top-contents li:not(:last-of-type) {
  margin-bottom: 80px;
}
@media screen and (max-width: 1025px) {
  .top-contents li:not(:last-of-type) {
    margin-bottom: 40px;
  }
}
.top-contents li a {
  margin-top: 20px;
}
.top-contents li a .morebtn2 {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* --news--
----------------------------------*/
.news-box {
  margin: 0 auto 0;
  max-width: 1200px;
  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;
  }
}

.news-title {
  text-align: center;
  font-weight: 700;
  text-align: center;
  position: relative;
  min-width: 140px;
}
.news-title span {
  display: block;
}
.news-title .eng {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-style: normal;
  color: #7D6B62;
  position: relative;
  font-size: 2rem;
}
.news-title .ja {
  font-size: 2rem;
  position: relative;
  margin: 0 auto;
  margin-bottom: 10px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-feature-settings: "pkna";
  font-weight: 700;
  max-height: 150px;
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
}
@media screen and (max-width: 639px) {
  .news-title {
    margin-bottom: 30px;
    transform: none;
    padding: 4px 8px;
    display: flex;
    flex-direction: column;
  }
  .news-title .eng {
    font-size: 2rem;
  }
  .news-title .ja {
    font-size: 1.3rem;
    writing-mode: inherit;
    margin-bottom: 0;
    order: 2;
  }
}

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

.bg-triangle {
  position: relative;
  overflow: hidden;
}
.bg-triangle .inner {
  position: relative;
  z-index: 2;
}
.bg-triangle:before {
  position: absolute;
  content: "";
  width: 25%;
  height: 100%;
  top: 0;
  left: -300px;
  background-image: linear-gradient(to right bottom, #7d6b62 0%, #494f57 50%, #3e4954 65%, #394653 75.5%, #364453 82.85%, #344452 88%, #334352 100%);
  transform: skew(20deg);
  z-index: 1;
  opacity: 0.1;
}
.bg-triangle:after {
  position: absolute;
  content: "";
  width: 5%;
  height: 50%;
  top: 0;
  right: 2%;
  background: #7D6B62;
  transform: skew(20deg);
  opacity: 0.4;
}
.bg-triangle.type1:before {
  background-image: linear-gradient(to right bottom, #334352 0%, #334352 50%, #334352 65%, #334352 75.5%, #334352 82.85%, #334352 88%, #334352 100%);
}
.bg-triangle.type1:after {
  background: #334352;
}
@media screen and (max-width: 1025px) {
  .bg-triangle:before {
    left: -180px;
  }
}
@media screen and (max-width: 639px) {
  .bg-triangle:before {
    left: -80px;
    transform: skew(10deg);
    width: 40%;
  }
  .bg-triangle:after {
    display: none;
  }
}

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

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

.single03 {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 0;
  position: relative;
  z-index: 2;
}
.single03.type_left {
  padding-left: 7%;
}
@media screen and (max-width: 1440px) {
  .single03 {
    padding: 80px 10px;
  }
}
@media screen and (max-width: 639px) {
  .single03.type_left {
    padding-left: 0;
  }
}

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

.single.type1,
.single03.type1 {
  padding-bottom: 0;
}

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

.padding-bottom {
  padding-bottom: 80px;
}

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

.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 #7D6B62;
}
.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 {
  border: 8px solid rgba(126, 159, 185, 0.7);
  padding: 35px 30px;
}
.mbox2.type1 {
  background: #fff;
}

.mbox3 {
  background: #fefefe;
  padding: 35px 30px;
  position: relative;
  z-index: 3;
  max-width: 90%;
  margin-right: auto;
  margin-left: auto;
}
.mbox3.type1 {
  border: 3px solid #7D6B62;
}
.mbox3.shadow {
  box-shadow: rgba(92, 64, 49, 0.1) 0px 18px 50px -10px;
}
.mbox3.transparent {
  background: transparent;
}

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

.sentence p + p {
  margin-top: 20px;
}
.sentence.type_mb {
  letter-spacing: 0;
  font-size: 1.5rem;
}
.sentence.type_mb p {
  margin-bottom: 30px;
}

.sentence2 p + p {
  margin-top: 10px;
}
.sentence2.type_mb {
  letter-spacing: 0;
  font-size: 1.5rem;
}

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

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

.bg-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/25658/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/25658/bg-wall.jpg);
}

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

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

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

/* mtitle
----------------------------------*/
.mtitle {
  margin: 0 auto 35px;
  text-align: center;
  position: relative;
  z-index: 3;
}
.mtitle:before {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  content: attr(data-title);
  margin-inline: auto;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 6rem;
  text-align: center;
  color: #222020;
  line-height: 1.2;
}
@media screen and (max-width: 639px) {
  .mtitle:before {
    font-size: 2.6rem;
  }
}
.mtitle .eng {
  display: block;
  font-size: 3rem;
  line-height: 1.4;
  text-align: center;
  color: #7D6B62;
}
.mtitle .ja {
  font-size: 1.8rem;
  color: #7D6B62;
}
.mtitle.white {
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}
.mtitle.white:before {
  color: #fff;
}
.mtitle.white span {
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}
.mtitle.white span:after {
  background-color: #eee;
}
.mtitle.mtitle_left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}
.mtitle.mtitle_left:before {
  text-align: left;
  margin-left: 0;
}
.mtitle.mtitle_left .eng {
  text-align: left;
}
.mtitle.mtitle_right {
  text-align: right;
  margin-left: auto;
  margin-right: 0;
}
@media screen and (max-width: 639px) {
  .mtitle {
    text-align: center;
  }
  .mtitle .eng {
    font-size: 2.5rem;
  }
  .mtitle .ja {
    font-size: 1.4rem;
  }
}

.mtitle2 {
  position: relative;
  margin-bottom: 30px;
  padding-left: 16px;
  border-left: 3px solid #7D6B62;
}
.mtitle2:before {
  content: attr(data-title);
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  color: #678b2d;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  font-size: 3rem;
}
.mtitle2 .ja {
  font-weight: 600;
  font-size: 1.2em;
  text-align: left;
}
@media screen and (max-width: 639px) {
  .mtitle2:before {
    font-size: 2.2rem;
  }
}
.mtitle2.center {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  text-align: left;
}

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

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

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

.mtitle_bline {
  margin: 0 auto 40px;
  text-align: center;
  position: relative;
  padding-bottom: 100px;
}
.mtitle_bline .eng {
  font-size: 4.5rem;
  color: #222020;
  position: relative;
  display: block;
  line-height: 1.2;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-style: normal;
}
.mtitle_bline::after {
  position: absolute;
  content: "";
  display: block;
  left: 50%;
  bottom: 0;
  width: 1px;
  height: 60px;
  background: #334352;
  transform: translateX(-50%);
}
.mtitle_bline .ja {
  font-size: 1.8rem;
  color: #222020;
  font-weight: bold;
}
.mtitle_bline.white {
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}
.mtitle_bline.white span {
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}
.mtitle_bline.white span:after {
  background-color: #eee;
}
.mtitle_bline.white span.eng:first-letter {
  color: #f9f9f6;
}
.mtitle_bline.black {
  color: #333;
}
.mtitle_bline.black span {
  color: #555;
}
.mtitle_bline.black span:after {
  background-color: #555;
}
.mtitle_bline.mtitle_left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}
.mtitle_bline.mtitle_left span:after {
  left: 0;
  transform: none;
}
@media screen and (max-width: 639px) {
  .mtitle_bline {
    text-align: center;
  }
  .mtitle_bline .eng,
  .mtitle_bline .eng2 {
    font-size: 3rem;
  }
  .mtitle_bline .ja {
    font-size: 1.3rem;
  }
}

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

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

.mtitle6 {
  font-size: 2.5rem;
  color: #222020;
  font-weight: normal;
  font-weight: bold;
}
@media screen and (max-width: 639px) {
  .mtitle6 {
    font-size: 1.8rem;
  }
}

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

.mtitle_box {
  background-image: linear-gradient(to right, #ece5f8, #D0B1F4);
  font-size: 1.7rem;
  position: relative;
  padding: 10px 15px;
  margin-bottom: 20px;
  font-weight: 600;
}
.mtitle_box a {
  color: #fff;
}
.mtitle_box .num {
  display: inline-block;
  margin-right: 8px;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 2.2rem;
  color: #7D6B62;
}
.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: #334352;
}
.mtitle_box.type2 {
  background: #2027D2;
}

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

.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;
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
}
@media screen and (max-width: 639px) {
  .mtext2 {
    font-size: 1.8rem;
    padding: 4px 8px;
  }
}
.mtext2.type_title01 {
  padding-left: 25px;
  position: relative;
}
.mtext2.type_title01:before {
  position: absolute;
  content: "";
  left: 0;
  top: -60px;
  width: 2px;
  height: calc(100% + 60px);
  background: #7E9FB9;
}
.mtext2 .small-txt {
  font-size: 2rem;
  color: #333;
}

.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: "Jost", sans-serif;
  font-weight: 600;
  font-style: normal;
}
.mtitle_category:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0ca";
  font-weight: 900;
  margin-right: 5px;
  color: #7D6B62;
}

/* btn
----------------------------------*/
.btn01 a {
  background: #7D6B62;
  text-align: center;
  width: 300px;
  margin: 15px auto;
  color: #fff;
  display: block;
  padding: 8px 5px;
  font-weight: 600;
  border-radius: 35px;
  max-width: 90%;
}
.btn01 a:hover {
  background: #334352;
  color: #fefefe;
}
.btn01.type1 a {
  background: #2D4A86;
}
.btn01.type1 a:hover {
  background: #334352;
}
.btn01.mail {
  flex-basis: 100%;
}
.btn01.mail a {
  background: #ffd803;
  margin: 15px auto 25px;
}
.btn01.mail a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 5px;
}
@media screen and (max-width: 639px) {
  .btn01 a {
    width: 95%;
  }
}

.btn02 {
  width: 300px;
  margin: 20px auto 20px;
}
.btn02 a {
  display: block;
  position: relative;
  padding: 15px 0;
  background-color: #7D6B62;
  line-height: 24px;
  letter-spacing: 0.1rem;
  font-size: 1.6rem;
  text-align: center;
  color: #ffffff;
}
.btn02 a i {
  display: block;
  position: absolute;
  top: 50%;
  right: -10px;
  width: 50px;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease;
}
.btn02 a:hover {
  opacity: 0.5;
}
.btn02 a:hover i {
  width: 34px;
}
.btn02.left {
  margin-right: auto;
  margin-left: 0;
}
@media screen and (max-width: 639px) {
  .btn02 {
    width: 260px;
  }
  .btn02 a {
    font-size: 1.4rem;
  }
}

.btn03 a {
  display: block;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 8px;
  color: #7D6B62;
  border: 2px solid #7D6B62;
}
.btn03 a:hover {
  background: #7D6B62;
  color: #fff;
}
.btn03 a:after {
  font-family: "Font Awesome 5 Free";
  content: "\f101";
  font-weight: 900;
  margin-left: 8px;
}

.btn06 {
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  background: #334352;
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 50%;
  text-align: center;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-style: normal;
}
.btn06:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: -1;
  background: inherit;
  animation: ripple 4s cubic-bezier(0.3, 0, 0.1, 1) infinite;
}
.btn06:hover {
  background-color: #7D6B62;
}
.btn06:hover:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #fff;
  animation: ripple2 1s ease-in 0s forwards;
}
.btn06.type2 {
  background: #fefefe;
  color: #334352;
  margin-left: 40px;
}

@keyframes ripple {
  0% {
    transform: scale(1, 1);
    opacity: 0;
  }
  60% {
    transform: scale(1, 1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.6, 1.6);
    opacity: 0;
  }
}
@keyframes ripple2 {
  0% {
    transform: scale(1, 1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.6, 1.6);
    opacity: 0;
  }
}
/* news
----------------------------------*/
.news .news-inner {
  padding: 15px 0;
  border-top: 1px solid rgba(92, 64, 49, 0.2);
  font-size: 1.4rem;
  font-weight: 600;
}
.news .news-inner:last-of-type {
  border-bottom: 1px solid #cfd4d5;
}
@media screen and (max-width: 639px) {
  .news .news-inner {
    font-size: 13px;
    padding: 10px 4px;
  }
}
.news dt {
  color: #7D6B62;
  float: left;
  width: 8em;
  padding: 5px;
  line-height: 1.3;
  color: #93b55d;
  text-align: center;
  border: 1px solid #93b55d;
  border-radius: 30px;
  background: #fff;
  font-size: 1.3rem;
}
.news dt .category {
  font-size: 13px;
  background: #334352;
  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;
  padding-left: 9.2em;
}
.news dd a {
  color: #222;
  background-image: linear-gradient(to right, #7D6B62, #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 dt {
  float: left;
  width: 8em;
  padding: 5px;
  line-height: 1.3;
  color: #7D6B62;
  text-align: center;
  border: 1px solid #7D6B62;
  border-radius: 30px;
  background: #fff;
  font-size: 1.3rem;
}
@media screen and (max-width: 639px) {
  .news-bl dt {
    font-size: 12px;
    float: none;
  }
}
.news-bl dd {
  padding: 0 0 12px 9.2em;
  line-height: 1.6;
  border-bottom: 1px dotted #ddd;
  margin: 0 0 10px;
}
.news-bl dd:last-child {
  margin: 0;
  border-bottom: none;
}
.news-bl dd a {
  color: #5c4031;
  background-image: linear-gradient(to right, #7D6B62, #2D4A86);
  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;
}
.news-bl dd:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
@media screen and (max-width: 639px) {
  .news-bl dd {
    margin-left: 20px;
    font-size: 13px;
    padding: 8px 5px;
  }
}

/* page-title
----------------------------------*/
.page-title {
  margin: 0 auto 0;
  position: relative;
  z-index: 1;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/25658/p01.jpg) no-repeat 50% 30%/cover;
}
.page-title.p02 {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/25658/image_2025_3_23.jpg) no-repeat 50% 50%/cover;
}
.page-title.p03 {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/25658/p03.jpg) no-repeat 50% 70%/cover;
}
.page-title.p04 {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/25658/p04.jpg) no-repeat 50% 50%/cover;
}
.page-title::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #443a35;
  z-index: -1;
  opacity: 0.4;
}
.page-title .inner {
  margin: 0 auto;
  max-width: 1500px;
  width: 90%;
  padding: 250px 0 160px;
}
.page-title .page-lead {
  position: relative;
  line-height: 1.6;
  color: #fff;
  filter: drop-shadow(0px 0px 5px rgba(92, 64, 49, 0.2));
}
.page-title .page-lead .ja {
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
  font-size: 2.4rem;
  display: block;
}
.page-title .page-lead .js-eng {
  font-size: 4.8rem;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-style: normal;
  opacity: 0;
}
.page-title .page-lead .js-eng.on {
  opacity: 1;
}
@media screen and (max-width: 1101px) {
  .page-title .page-lead .ja {
    font-size: 2rem;
  }
  .page-title .page-lead .js-eng {
    font-size: 4rem;
  }
}
@media screen and (max-width: 1025px) {
  .page-title .inner {
    padding: 120px 0 50px;
  }
  .page-title .page-lead .ja {
    font-size: 1.6rem;
  }
  .page-title .page-lead .js-eng {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 639px) {
  .page-title .inner {
    padding: 120px 0 50px;
  }
  .page-title .page-lead .ja {
    font-size: 1.2rem;
  }
  .page-title .page-lead .js-eng {
    font-size: 2rem;
  }
}

.bg-gradient {
  position: relative;
}
.bg-gradient:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(0deg, rgba(226, 226, 226, 0.94) 0%, rgba(241, 241, 241, 0) 100%);
}

.bg-01 {
  position: relative;
}
.bg-01 .inner {
  position: relative;
  padding-bottom: 70px;
}
@media screen and (max-width: 1440px) {
  .bg-01 .inner {
    padding-left: 30px;
  }
}
@media screen and (max-width: 639px) {
  .bg-01 .inner {
    padding-left: 10px;
    padding-bottom: 50px;
  }
}
.bg-01:before, .bg-01:after {
  position: absolute;
  content: "";
  top: 0;
  left: auto;
  right: 0;
  width: 93%;
  height: 95%;
  border-radius: 0 0 0 90px;
}
@media screen and (max-width: 1440px) {
  .bg-01:before, .bg-01:after {
    width: 97%;
  }
}
.bg-01:after {
  background: #fff;
  opacity: 0.2;
}

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

.bg-02 {
  position: relative;
}
.bg-02:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #222;
  opacity: 0.4;
}
.bg-02:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/25658/bg-02.jpg) no-repeat 75% bottom/cover;
  z-index: -1;
  filter: blur(5px);
}

.bg-03 {
  position: relative;
}
.bg-03:before {
  position: absolute;
  content: "";
  left: 0;
  top: -120px;
  top: -60px;
  width: 93%;
  height: calc(100% + 60px);
  border-radius: 0 0 90px 0;
  background: #f9f9f6;
  z-index: -1;
}
.bg-03.type1:before {
  top: 0;
  height: 100%;
}
@media screen and (max-width: 1025px) {
  .bg-03.type1:before {
    width: 100%;
    border-radius: 0 0 50px 0;
  }
}
.bg-03 .inner {
  padding-top: 60px;
}
.bg-03.type2 {
  margin: 80px 0;
}
.bg-03.type2::before {
  background: linear-gradient(93.39deg, #A4CA68 0%, #93b55d 40%, #83a153 60.05%, #728d48 80.88%);
  background-size: 600% 600%;
  animation: anim-gradient2 8s ease infinite;
  top: 0;
  height: 100%;
}
@media screen and (max-width: 639px) {
  .bg-03::before {
    width: 98%;
    border-radius: 0 0 40px 0;
  }
}

.bg-04 {
  position: relative;
}
.bg-04::before {
  position: absolute;
  content: "";
  z-index: -1;
  transform: translateY(-50%);
  width: 75%;
  height: 90%;
  left: -2%;
  top: 50%;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/25658/bg-04.jpg) no-repeat right top/cover;
  filter: blur(4px);
  opacity: 0.5;
}

.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/25658/bg-pattern.jpg);
  background-size: 1000px;
  opacity: 0.7;
}

.bg-base {
  position: relative;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/25658/zara.png);
}
.bg-base:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(to bottom, rgba(160, 219, 241, 0.3) 0%, rgba(88, 119, 137, 0.23) 50%, rgba(70, 94, 110, 0.215) 65%, rgba(61, 81, 96, 0.2075) 75.5%, rgba(56, 74, 89, 0.2037) 82.85%, rgba(54, 71, 86, 0.2019) 88%, rgba(51, 67, 82, 0.2) 100%);
}
.bg-base.type1 {
  position: relative;
}
.bg-base.type1:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: calc(100% - 50px);
  height: calc(100% - 40px);
  transform: translate(-50%, -50%);
  background: #f2eeea;
}
@media screen and (max-width: 1440px) {
  .bg-base.type1:before {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
}
.bg-base.type2 .inner {
  position: relative;
  z-index: 3;
}
.bg-base.type2:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: calc(100% - 80px);
  height: calc(100% - 80px);
  transform: translate(-50%, -50%);
  background: #fefefe;
  border-radius: 15px;
}
@media screen and (max-width: 1440px) {
  .bg-base.type2:before {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
}
.bg-base.type3 {
  position: relative;
}
.bg-base.type3:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  transform: translate(-50%, -50%);
  background: #334352;
  opacity: 0.2;
}

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

.bg-base3 {
  background: #ece5f8;
}
.bg-base3.type1 {
  background: rgba(125, 107, 98, 0.1);
}
.bg-base3.type2 {
  background: linear-gradient(90deg, #6f5f57 0%, #6f5f57 70%, #7D6B62 70%, #7D6B62 100%);
}

.bg-house {
  position: relative;
}
.bg-house:before, .bg-house:after {
  content: "";
  display: block;
  position: absolute;
  width: 20%;
  height: 660px;
  opacity: 0.3;
}
.bg-house:before {
  left: 0;
  top: 10%;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/25658/cakes-left.png) no-repeat left/contain;
}
.bg-house:after {
  right: 0;
  bottom: 10%;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/25658/cakes-right.png) no-repeat right/contain;
}

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

.bg-green-half {
  position: relative;
  background: transparent;
  padding-bottom: 80px;
}
.bg-green-half:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 80px;
  width: 100%;
  height: 70%;
  background: #7D6B62;
  background-size: 600% 600%;
  animation: anim-gradient2 8s ease infinite;
}
@media screen and (max-width: 1025px) {
  .bg-green-half::before {
    height: 70%;
  }
}
@media screen and (max-width: 639px) {
  .bg-green-half {
    padding-bottom: 0;
  }
  .bg-green-half::before {
    height: 80%;
    bottom: 0;
  }
}

.bg-gray {
  position: relative;
}
.bg-gray:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(242, 238, 234, 0.5);
  z-index: -2;
}
.bg-gray.type1:before {
  background: #cfd4d5;
  -webkit-mask-image: linear-gradient(to right top, #000 0%, #000 64%, rgba(0, 0, 0, 0.4) 80%, rgba(0, 0, 0, 0.2) 100%);
          mask-image: linear-gradient(to right top, #000 0%, #000 64%, rgba(0, 0, 0, 0.4) 80%, rgba(0, 0, 0, 0.2) 100%);
}
.bg-gray.bg-half-bottom {
  background: transparent;
  background-image: linear-gradient(to bottom, transparent 0%, transparent 50%, #f2eeea 50.1%, #f2eeea 100%);
}
.bg-gray.bg-half-upper {
  background: transparent;
  background-image: linear-gradient(to bottom, #f2eeea 0%, #f2eeea 50%, transparent 50.1%, transparent 100%);
}

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

.bg-999 {
  background: #888;
}

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

.bg-beige {
  position: relative;
}
.bg-beige:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #f9f9f6;
  z-index: -1;
}

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

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

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

.tbl {
  width: 100%;
}
.tbl.flower-info th,
.tbl.flower-info td {
  padding: 10px 15px;
}
.tbl thead th {
  background: rgba(207, 212, 213, 0.6);
  text-align: center;
}
.tbl th,
.tbl td {
  padding: 15px;
  vertical-align: middle;
  border: 1px solid #ddd;
}
.tbl th {
  background: #fdfdfd;
  text-align: left;
}
.tbl th span {
  font-size: 1.4rem;
}
.tbl th.item1 {
  width: 260px;
}
@media screen and (max-width: 639px) {
  .tbl th.item1 {
    width: 220px;
  }
}
.tbl .fs_xs {
  font-size: 0.8em;
}
.tbl .cell01 {
  width: 45%;
}
.tbl .cell02 {
  width: 30%;
}
@media screen and (max-width: 639px) {
  .tbl th {
    text-align: left;
  }
  .tbl th,
  .tbl td {
    padding: 10px 8px;
    letter-spacing: 0;
  }
}

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

.tbl-border {
  width: 100%;
}
.tbl-border.tbl-mini th,
.tbl-border.tbl-mini td {
  padding: 6px 10px;
  border-width: 1px;
  font-size: 14px;
  letter-spacing: 0.1rem;
}
.tbl-border th,
.tbl-border td {
  padding: 10px;
  border-bottom: 2px solid #f2eeea;
  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: #334352;
  margin-right: 5px;
  padding: 0px 4px;
}
.tbl-border th {
  width: 22%;
  text-align: left;
  font-weight: 600;
  background: #7D6B62;
  color: #fefefe;
}
.tbl-border th.th-1 {
  width: 45%;
}
.tbl-border th.th-2 {
  width: 27%;
}
@media screen and (max-width: 639px) {
  .tbl-border th {
    width: 35%;
  }
}

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

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

/* ggmap
----------------------------------*/
.ggmap {
  position: relative;
  padding-bottom: 46.25%;
  height: 0;
  overflow: hidden;
}
.ggmap.type1 {
  padding-bottom: 50%;
}
.ggmap.type2 {
  padding-bottom: 60%;
}
.ggmap.type3 {
  padding-bottom: 35%;
}
.ggmap.youtube {
  padding-bottom: 56.25%;
}
.ggmap iframe,
.ggmap object,
.ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 639px) {
  .ggmap {
    padding-bottom: 65.25%;
  }
  .ggmap.type3 {
    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: #7D6B62;
}
@media screen and (max-width: 639px) {
  .list-policy {
    padding: 15px;
  }
  .list-policy li {
    font-size: 1.4rem;
  }
}

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

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

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

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

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

.ol-list2 {
  counter-reset: number;
  list-style: none;
  padding: 5px;
}
.ol-list2 li {
  margin-bottom: 10px;
  padding-bottom: 5px;
  font-weight: 600;
  padding-left: 40px;
  position: relative;
}
.ol-list2 li:before {
  counter-increment: number;
  content: counter(number, decimal-leading-zero);
  line-height: 25px;
  text-align: center;
  font-size: 2.3rem;
  color: #7D6B62;
  position: absolute;
  left: 0;
  top: 0px;
}
@media screen and (max-width: 639px) {
  .ol-list2 li {
    font-size: 1.3rem;
  }
  .ol-list2 li span {
    font-size: 0.9em;
  }
  .ol-list2 li:before {
    font-size: 1.8rem;
  }
}

.list_disc.awards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.list_disc.awards li {
  width: 46%;
  padding: 5px 0 5px 20px;
  text-align: left;
}
.list_disc.awards li:last-of-type {
  border-bottom: 1px dashed #ccc;
}
.list_disc.awards li span {
  font-weight: 700;
}
.list_disc li,
.list_disc .child {
  padding: 5px 0 5px 20px;
  position: relative;
  text-align: left;
}
.list_disc li a,
.list_disc .child a {
  font-weight: 600;
  letter-spacing: 0.1rem;
}
.list_disc li:not(:last-of-type),
.list_disc .child:not(:last-of-type) {
  margin-bottom: 5px;
  border-bottom: 1px dashed #ccc;
}
.list_disc li:before,
.list_disc .child:before {
  position: absolute;
  content: "●";
  top: 13px;
  left: 0;
  margin-right: 5px;
  color: #7D6B62;
  font-size: 1rem;
  display: inline-block;
  transform: translateY(-3px);
}
.list_disc li .small-txt,
.list_disc .child .small-txt {
  padding-left: 10px;
  font-size: 98%;
  line-height: 1.2;
}
.list_disc li .small-txt:before,
.list_disc .child .small-txt:before {
  content: "－";
  margin-right: 5px;
  color: #334352;
  font-size: 1rem;
  display: inline-block;
  transform: translateY(-3px);
}

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

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

.btn-block {
  position: absolute;
  left: 50%;
  bottom: -40px;
  z-index: 3;
  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.05) 0px 3px 8px;
  width: 300px;
  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: #7D6B62;
  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: #7D6B62;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
}
.morebtn2:hover .circle {
  width: 101%;
  background: #7D6B62;
}
.morebtn2:hover .circle .icon.arrow {
  background: #fff;
  transform: translate(1rem, 0);
}
.morebtn2:hover .button-text {
  color: #fff;
}
.morebtn2.type1 {
  background: #7D6B62;
  width: 280px;
}
.morebtn2.type1 .circle {
  background: #fff;
}
.morebtn2.type1 .icon {
  background: #7D6B62;
}
.morebtn2.type1 .icon.arrow:before {
  border-color: #7D6B62;
}
.morebtn2.type1 .button-text {
  color: #fff;
  font-size: 1.1em;
}
.morebtn2.type1:hover .button-text {
  color: #7D6B62;
}

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

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

.blog-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px 2.5%;
  margin-bottom: 40px;
}
@media screen and (max-width: 639px) {
  .blog-wrap {
    grid-template-columns: 1fr;
    padding: 0 25px;
  }
}
.blog-wrap li {
  position: relative;
}
.blog-wrap li a {
  display: block;
  position: relative;
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: 3;
  overflow: hidden;
}
.blog-wrap li a:hover .morebtn {
  border-bottom-color: #334352;
  color: #334352;
}
.blog-wrap li a:hover .blog-img img {
  transform: scale(1.2);
}
.blog-wrap li .blog-date {
  display: inline-block;
  color: #2D4A86;
  font-size: 1.2rem;
  margin-bottom: 15px;
  padding: 5px;
  width: 100%;
  background: #f6f6f6;
}
.blog-wrap li .blog-date span {
  background: #334352;
  color: #fff;
  padding: 5px;
  margin-right: 10px;
}
@media screen and (max-width: 639px) {
  .blog-wrap li .blog-date {
    font-size: 12px;
  }
}
.blog-wrap li .category-pon {
  position: absolute;
  top: 5px;
  left: 5px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 10px;
  border-radius: 50px;
  z-index: 1;
}
/* .blog-wrap li .category-pon.on {
  background: #920014;
  color: #fff;
} */

.blog-wrap li .category-pon.on {
    display: block;
    background-color: #3b3b3b8c;
    width: 100%;
    height: -webkit-fill-available;
    border-radius: unset;
    color: #fff;
}
.blog-wrap li .category-pon p{
         margin: 50% 0 0 28%;
    font-size: 1.8rem;
}
@media screen and (max-width: 1025px) {
  .blog-wrap li .category-pon.on {
    display: block;
    background-color: #3b3b3b8c;
    width: 100%;
    height: -webkit-fill-available;
    border-radius: unset;
    color: #fff;
    top: 0;
    left: 0;
    padding: 10;
}
.blog-wrap li .category-pon p {
        margin: 65% 0 0 25%;
        font-size: 2rem;
    }
}
@media screen and (max-width: 820px){
 .blog-wrap li .category-pon.on {
    display: block;
    background-color: #3b3b3b8c;
    width: 100%;
    height: -webkit-fill-available;
    border-radius: unset;
    color: #fff;
    top: 0;
    left: 0;
    padding: 10;
}
.blog-wrap li .category-pon p {
    margin: 100% 0 0 12%;
    font-size: 1.8rem;
}
}
@media screen and (max-width: 639px) {
  .blog-wrap li .category-pon p {
    margin: 39% 0 0 28% !important;
    font-size: 1.8rem;
}
}

.blog-wrap li .category-pon.off {
  background: #e0e0e0;
  color: #000;
}
.blog-wrap li .blog-img {
  overflow: hidden;
  position: relative;
  height: 180px;
  background: #e0e0e0;
}
.blog-wrap li .blog-img img {
  width: 100%;
  /* height: 100%; */
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.2s ease-in all;
  -o-object-position: center top;
     object-position: center top;
}
.blog-wrap li .blog-img figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  background: #7D6B62;
  color: #fff;
  font-size: 12px;
  padding: 2px 8px;
  font-weight: 600;
  letter-spacing: 0;
}
.blog-wrap li .blog-detail {
  padding: 15px;
}
@media screen and (max-width: 639px) {
  .blog-wrap li .blog-detail {
    padding: 10px;
  }
}
.blog-wrap li .blog-title {
  overflow: hidden;
  line-height: 1.5;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  color: #111;
  margin-top: 5px;
  padding-bottom: 10px;
}
@media screen and (max-width: 639px) {
  .blog-wrap li .blog-title {
    font-size: 1.2rem;
  }
}
.blog-wrap li .blog-txt {
  font-size: 1.3rem;
  margin-top: 8px;
  letter-spacing: 0;
  margin-bottom: 15px;
  color: #222;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  /*IE対策*/
  line-height: 1.8em;
  max-height: 3.6em;
}
@media screen and (max-width: 639px) {
  .blog-wrap li .blog-txt {
    font-size: 12px;
    margin-bottom: 25px;
  }
}
.blog-wrap li .morebtn {
  position: absolute;
  right: 10px;
  bottom: 0;
  color: #7D6B62;
  border-bottom: 1px solid #7D6B62;
  font-size: 12px;
  font-weight: 700;
  padding: 0 10px;
  transition: 0.2s ease-in all;
  letter-spacing: 0;
}
@media screen and (max-width: 639px) {
  .blog-wrap li .morebtn {
    font-size: 11px;
  }
}
.blog-wrap.type1 {
  display: block;
}
.blog-wrap.type1 > li {
  width: 100%;
}
.blog-wrap.type1 > li:not(:last-of-type) {
  margin-bottom: 20px;
}
.blog-wrap.type1 > li a {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.blog-wrap.type1 > li a .blog-img {
  width: 180px;
}
@media screen and (max-width: 639px) {
  .blog-wrap.type1 > li a .blog-img {
    width: 80px;
  }
}
.blog-wrap.type1 > li a .blog-detail {
  width: calc(100% - 200px);
  padding: 15px;
}
@media screen and (max-width: 639px) {
  .blog-wrap.type1 > li a .blog-detail {
    width: calc(100% - 80px);
    padding: 15px 15px 30px;
  }
}
.blog-wrap.type2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 40px;
}
@media screen and (max-width: 639px) {
  .blog-wrap.type2 {
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 30px;
  }
}

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

.blog-page-detail {
  display: flex;
  align-items: center;
  font-size: 12px;
  margin-bottom: 10px;
}
.blog-page-detail .blog-date2 {
  display: inline-block;
  color: #7D6B62;
  margin-right: 10px;
}
.blog-page-detail .blog-date2:before {
  font-family: "Font Awesome 5 Free";
  content: "\f017";
  font-weight: 900;
  margin-right: 5px;
}
.blog-page-detail .blog-category {
  background: #f2eeea;
  margin-right: 5px;
}

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

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

.w300 {
  width: 300px;
}

.spbr {
  display: none;
}

.color1 {
  color: #7D6B62;
}

.color2 {
  color: #c5a54d;
}

.color3 {
  color: #2D4A86;
}

.color4 {
  color: #2027D2;
}

.relative {
  position: relative;
}

.ttl_line {
  position: absolute;
  display: block;
  bottom: 0;
  left: 50%;
  width: 60px;
  height: 1px;
  transform: translateX(-50%);
}
.ttl_line::before {
  position: absolute;
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  top: 0;
  background: #4d5a6b;
  margin-top: -1px;
  left: 0;
}
.ttl_line::after {
  position: absolute;
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  top: 0;
  background: #4d5a6b;
  margin-top: -1px;
  right: 0;
}
.ttl_line span {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background: #395780;
}

.ttl_wrapper {
  position: relative;
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 40px;
}

.line {
  margin-top: -10px;
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 102px;
  transform: translateY(-50%);
}
.line span {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: #4d6c86;
}
.line:before {
  position: absolute;
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  left: 0;
  top: 0;
  background: #4d6c86;
  margin-left: -1px;
}
.line:after {
  position: absolute;
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  left: 0;
  background: #4d6c86;
  margin-left: -1px;
  bottom: 0;
}
@media screen and (max-width: 639px) {
  .line {
    height: 72px;
  }
}

.num {
  font-weight: 600;
}
.num a {
  color: #7D6B62;
  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 {
  margin: 50px auto 0;
}
.telbnr li {
  width: 47%;
  border: 1px solid #c4c6ce;
  padding: 40px 10px;
  text-align: center;
  margin: 0 auto;
}
.telbnr li.telbnr-mail a {
  font-size: 2rem;
  padding-top: 5px;
}
.telbnr li.telbnr-mail a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
}
@media screen and (max-width: 639px) {
  .telbnr li.telbnr-mail a {
    font-size: 1.4rem;
    padding: 0;
  }
}
.telbnr li a {
  display: block;
  font-size: 3.4rem;
  font-weight: 600;
  color: #222020;
}
.telbnr li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
}
.telbnr li a:hover {
  color: #7D6B62;
}
.telbnr li .txt {
  color: #b0b2b9;
}
@media screen and (max-width: 1101px) {
  .telbnr li {
    width: 70%;
  }
}
@media screen and (max-width: 639px) {
  .telbnr {
    max-width: 90%;
  }
  .telbnr li {
    width: 100%;
    margin: 0 auto;
    padding: 20px 10px;
  }
  .telbnr li a {
    font-size: 2rem;
  }
}

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

/* breadcrumb
----------------------------------*/
.breadcrumb {
  width: 100%;
  margin: 10px auto 0;
  font-size: 1.3rem;
  position: relative;
  z-index: 2;
  padding-left: inherit !important;
}
.breadcrumb li {
  display: inline;
  color: #fff;
  filter: drop-shadow(0px 0px 2px rgba(92, 64, 49, 0.2));
}
.breadcrumb li a {
  color: #ddd1f3;
}
.breadcrumb li + li:before {
  margin: 0 8px;
  content: ">";
}
@media screen and (max-width: 1025px) {
  .breadcrumb {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 639px) {
  .breadcrumb {
    font-size: 1.1rem;
    margin: 5px auto 0;
    padding: 0 15px;
  }
}

/* form
----------------------------------*/
.form {
  margin: 0 auto;
  width: 90%;
}
.form dl dt {
  float: left;
  width: 200px;
  padding-top: 20px;
  font-weight: 600;
}
.form dl dt span {
  color: #334352;
  border-bottom: 1px solid #334352;
  padding: 5px;
  margin-right: 5px;
  font-size: 13px;
  position: relative;
  top: -2px;
}
.form dl dt span.nini {
  background: #ffd803;
  color: #5c4031;
}
.form dl dd {
  padding-left: 220px;
  padding-bottom: 20px;
  padding-top: 23px;
  line-height: 1.5;
}
.form dl dd:last-child {
  border-bottom: none;
}
.form .textarea,
.form textarea {
  border: 0;
  padding: 15px;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
  background: #fefefe;
  border-bottom: 1px solid rgba(207, 212, 213, 0.4);
}
.form .textarea02 {
  width: 48.5%;
  margin-right: 3%;
}
.form .textarea02:last-child {
  margin-right: 0;
}
.form .textarea03 {
  width: 26%;
  margin-right: 1%;
}
.form .textarea04 {
  width: 20%;
  margin-right: 1%;
}
.form .textarea04 {
  width: 20%;
  margin-right: 1%;
}
.form button {
  cursor: pointer;
  display: block;
  color: #fff;
  text-align: center;
  transition: all 0.2s ease-in-out;
  border: 1px solid #7D6B62;
  font-weight: 600;
  padding: 18px 5px;
  margin: 0 auto;
  width: 250px;
  background: #7D6B62;
  border-radius: 40px;
  font-size: 15px;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-style: normal;
}
.form button:hover {
  background: #fff;
  color: #7D6B62;
}
.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 .select-down:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0ab";
  font-weight: 900;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 12px;
  right: 0.75rem;
  margin-top: -8px;
  margin-top: -0.5rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  color: #7D6B62;
}
.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: #7D6B62;
  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 #7D6B62;
  border-bottom: 3px solid #7D6B62;
  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;
}

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

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

.thanks {
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
}

.shadow {
  box-shadow: rgba(92, 64, 49, 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;
}

.mtitle_small {
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 15px;
  border-bottom: 1px solid #ccc;
  color: #7D6B62;
  font-weight: 600;
}
.mtitle_small:before {
  content: "";
  width: 50px;
  height: 1px;
  background-color: #7D6B62;
  position: absolute;
  left: 0;
  bottom: -1px;
}

.mtitle_small2 {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
}
.mtitle_small2:before {
  content: "";
  background-color: #7D6B62;
  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%;
}
.gallery_ul > li {
  width: 31.33%;
  margin-left: 2%;
  margin-bottom: 4%;
  font-weight: 600;
}
.gallery_ul > li .photobox-wrap {
  width: 100%;
  height: 220px;
  text-align: center;
  overflow: hidden;
  background: #aaa;
  margin-bottom: 10px;
}
.gallery_ul > li .photobox-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit:contain;";
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}

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

/*photoギャラリー*/
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 3%;
}
.gallery li a {
  background: rgba(249, 249, 246, 0.2);
  display: block;
  text-align: center;
  padding: 0px;
  height: 240px;
}
.gallery li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  /*IE対策*/
}
.gallery li p {
  font-size: 14px;
  margin: 3px 0 10px;
}

.list2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 4%;
}
.list2.type1 > li,
.list2.type1 .child {
  background: #fefefe;
  padding: 15px;
}
.list2.ai-center {
  align-items: center;
}
.list2.jc-center {
  justify-content: center;
}
.list2 > li,
.list2 .child {
  position: relative;
}
.list2 > li.child-100,
.list2 .child.child-100 {
  grid-column: 2fr;
}

.business-img img {
  box-shadow: 3px 3px rgba(125, 107, 98, 0.2) !important;
}

.business-box {
  margin-top: 60px;
  margin-right: 5%;
}
.business-box .inner {
  margin: 0 auto 60px;
  width: 90%;
  background: #fefefe;
  padding: 40px;
}
.business-box .inner.last {
  margin: 0 auto;
}
.business-box .inner .flex-box {
  display: flex;
  justify-content: flex-end;
  gap: 40px;
}
.business-box .inner .ttl.top {
  margin-top: -60px;
}
.business-box .inner .ttl .mtitle3 {
  position: initial;
}
.business-box .inner .img {
  margin-bottom: 15px;
  width: 70px;
}
@media screen and (max-width: 639px) {
  .business-box .inner .img {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 639px) {
  .business-box .inner .child-txt p {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 639px) {
  .business-box .inner .child-txt p.mtext2 {
    font-size: 1.6rem;
  }
}
.business-box .inner .inner2 {
  background: #fefefe;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 639px) {
  .business-box .inner .inner2 {
    width: 100%;
  }
}
.business-box .inner .inner2 .mtitle_line {
  width: 90%;
  margin: 0 auto 25px;
}
.business-box .inner .child-img {
  width: 100%;
}
.business-box .inner .child-img > div {
  height: 400px;
  width: 400px;
}
.business-box .inner .child-img > div img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1101px) {
  .business-box .inner .child-img > div {
    height: 300px;
    width: 100%;
  }
}
@media screen and (max-width: 764px) {
  .business-box .inner .child-img > div {
    width: 100%;
    height: 350px;
  }
}
@media screen and (max-width: 639px) {
  .business-box .inner .child-img > div {
    height: 250px;
  }
}
.business-box .inner .sub-txt {
  padding: 20px;
  border: 2px solid rgba(11, 54, 101, 0.5);
  border-radius: 5px;
  background: #fefefe;
}
@media screen and (max-width: 1101px) {
  .business-box .inner {
    flex-direction: column;
    gap: 20px;
  }
  .business-box .inner .ttl {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .business-box .inner .ttl .mtitle3 {
    writing-mode: initial;
  }
}
@media screen and (max-width: 1101px) and (max-width: 639px) {
  .business-box .inner .ttl .mtitle3 {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 764px) {
  .business-box .inner .flex-box {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 639px) {
  .business-box .inner {
    width: 100%;
    padding: 20px;
  }
  .business-box .inner .flex-box {
    gap: 20px;
  }
  .business-box .inner .child-txt p {
    font-size: 1.2rem;
  }
  .business-box .inner .child-txt .mtext1 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 639px) {
  .business-box {
    margin-top: 30px;
  }
}

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

.list4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 2%;
}

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

.note {
  padding: 15px;
  margin-top: 10px;
  background: #f9f9f6;
  font-size: 1.4rem;
}

.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: #7D6B62;
}
.flow-dl .flow-inner dt .eng {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 2.5rem;
  color: #2027D2;
  margin-right: 8px;
}
.flow-dl .flow-inner dd {
  margin-top: 5px;
  padding-left: 40px;
}

.txt1 {
  font-size: 1.4rem;
  letter-spacing: 0;
}

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

.st-box > li .icon {
  width: 140px;
  margin: 0 auto 20px;
}
.st-box > li .ttl {
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 1025px) {
  .st-box > li .ttl {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 639px) {
  .st-box > li .txt {
    width: 90%;
    margin: 0 auto;
  }
}

.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 {
  display: inline-block;
  color: #7D6B62;
  font-weight: 600;
  border-bottom: 1px solid #cfd4d5;
  font-size: 12px;
  text-align: center;
}
.blog-month ul li a:hover {
  color: #ffd803;
}

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

.list-center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.list-center li {
  width: 50%;
}

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

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

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

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

.point-num {
  position: relative;
  z-index: 2;
  line-height: 1;
  color: #7D6B62;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 3.6rem;
  text-align: center;
  margin: 0 auto 10px;
}

.bnr-list {
  text-align: center;
}
.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;
}
.bnr-list li.bnr-txt {
  font-size: 2rem;
  font-weight: 600;
  line-height: 60px;
  background: #fefefe;
}

.sns-list {
  display: flex;
}
.sns-list.center {
  justify-content: center;
  margin: 15px 0;
}
.sns-list li a {
  width: 35px;
  height: 35px;
  border: 1px solid #fff;
  line-height: 35px;
  font-size: 17px;
  color: #fefefe;
  display: block;
  background: #333;
  border-radius: 100%;
  text-align: center;
  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;
}

.title01 {
  margin-bottom: 50px;
  color: #202121;
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 600;
  font-size: 3rem;
  text-align: center;
}
.title01.left {
  text-align: left;
}
@media screen and (max-width: 1025px) {
  .title01 {
    font-size: 2rem;
  }
}

.title02 {
  text-align: center;
  margin-bottom: 20px;
}
.title02 span {
  display: inline-block;
  border-bottom: 1px solid #5c4031;
  font-size: 2.2rem;
  font-weight: 600;
}
.title02 span.eng-txt {
  font-size: 4.8rem;
  line-height: 1.4;
  color: #fff;
  border-bottom-color: #f9f9f6;
}

.title03 span {
  background: #7D6B62;
  padding: 2px 5px;
  font-weight: 600;
  font-size: 1.1em;
  color: #fff;
}
.title03.type1 span {
  background: #f66009;
}
.title03.type2 span {
  background: #2D4A86;
}

.title04 {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.title04 .sub {
  font-size: 1.8rem;
  color: #7D6B62;
  padding-right: 10px;
  border-right: 1px solid #7D6B62;
  margin-right: 10px;
}
.title04 .main {
  font-size: 2rem;
}

.title05 {
  padding-bottom: 4px;
  border-bottom: 2px solid #334352;
  margin-bottom: 8px;
}
.title05 .eng {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-style: normal;
  color: #7D6B62;
  font-size: 2.8rem;
}
.title05 .ja {
  margin-left: 10px;
  font-size: 2rem;
}

.title06 {
  margin: 50px 0 80px;
  position: relative;
}
.title06 .ja {
  color: #5c4031;
  font-size: 2.4rem;
  display: block;
  padding-left: 20px;
  white-space: nowrap;
}
.title06 .eng {
  display: block;
  font-size: 12rem;
  font-family: "Jost", sans-serif;
  line-height: 1.3;
  color: #ecedf6;
  color: rgba(194, 200, 225, 0.4);
  color: #e8eaf2;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
  transform: translateY(-50%);
  white-space: nowrap;
}
.title06.type1 {
  text-align: center;
}
.title06.type1 .eng {
  left: 50%;
  transform: translate(-50%, -50%);
}
.title06.tcenter .eng {
  left: 50%;
  transform: translate(-50%, -50%);
}
.title06.brown .eng {
  color: #cfd4d5;
}
.title06.white span {
  color: #fff;
}
.title06.white .eng {
  color: rgba(255, 255, 255, 0.1);
}
.title06.white2 .eng {
  color: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 1101px) {
  .title06 .ja {
    font-size: 2rem;
  }
}
@media screen and (max-width: 1025px) {
  .title06 {
    margin-bottom: 35px;
  }
  .title06 .eng {
    font-size: 7rem;
  }
  .title06 .ja {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 639px) {
  .title06 .eng {
    font-size: 5rem;
  }
}

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

.aboutus-box {
  margin: auto;
  padding: 2rem;
  margin-top: 80px;
  background: #fff;
}
.aboutus-box .half_ttl {
  font-size: 3rem;
  text-align: center;
  margin-top: -50px;
  margin-bottom: 35px;
  padding-bottom: 10px;
  border-bottom: 1px solid #7D6B62;
  color: #7D6B62;
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
}
.aboutus-box .half_ttl.type1 {
  font-size: 2.5rem;
}
.aboutus-box .under-txt {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin: 10px 0;
}

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

.slick-track {
  display: flex !important;
}

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

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

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

.content-head {
  height: 340px;
}

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

.slide_list {
  position: relative;
  display: none;
}
.slide_list li {
  margin-right: 1%;
}
.slide_list li img {
  width: auto;
  height: 240px;
  transition: filter 0.2s ease-in;
}
.slide_list li:hover img {
  filter: grayscale(0);
}

.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;
}
.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(92, 64, 49, 0.05);
  font-weight: 600;
}
.flow-list > li.type100 {
  flex-basis: 100%;
  margin-right: 0;
}
.flow-list > li:nth-child(2n) {
  margin-right: 0;
}
.flow-list > li .flow-num {
  color: #f66009;
  font-size: 3.5rem;
  border-right: 1px solid #7D6B62;
  padding-right: 15px;
  align-self: flex-start;
  line-height: 1.2;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-style: normal;
}
.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: #7D6B62;
  border-bottom: 1px solid #7D6B62;
  padding-bottom: 4px;
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
}

.flow-list2 {
  position: relative;
  width: 85%;
  margin: 0 auto;
}
.flow-list2 .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
  position: relative;
}
.flow-list2 .inner:before {
  position: absolute;
  content: "";
  height: 110%;
  width: 8px;
  top: 25px;
  left: 36px;
  background: #7D6B62;
}
.flow-list2 .inner:last-child:before {
  display: none;
}
@media screen and (max-width: 639px) {
  .flow-list2 .inner {
    width: 100%;
    margin: 0 auto 20px;
  }
  .flow-list2 .inner:before {
    width: 8px;
    height: 130%;
    left: 30px;
    top: 15px;
  }
}
.flow-list2 .inner dt {
  position: relative;
  width: 80px;
  height: 80px;
  line-height: 80px;
  background: #7D6B62;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
  z-index: 4;
  font-family: "Jost", sans-serif;
}
.flow-list2 .inner dt.line2 {
  padding-top: 20px;
  line-height: 1;
}
.flow-list2 .inner dt.big {
  font-size: 3rem;
}
@media screen and (max-width: 639px) {
  .flow-list2 .inner dt {
    font-size: 1.2rem;
  }
  .flow-list2 .inner dt.big {
    font-size: 2rem;
  }
}
.flow-list2 .inner dd {
  flex: 1;
  position: relative;
  left: -10px;
  margin-top: 10px;
  padding: 40px 60px;
  z-index: 2;
  background: #fefefe;
  border-radius: 10px;
  box-shadow: 24px 24px 48px rgba(69, 69, 69, 0.1);
}
.flow-list2 .inner dd table th,
.flow-list2 .inner dd table td {
  font-weight: 500;
}
.flow-list2 .inner dd table th {
  padding-right: 1em;
}
@media screen and (max-width: 639px) {
  .flow-list2 .inner dd {
    margin-top: 10px;
  }
}
.flow-list2 .inner .schedule-img {
  height: 350px;
  margin-bottom: 30px;
}
.flow-list2 .inner .schedule-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 639px) {
  .flow-list2 .inner .schedule-img {
    height: 200px;
  }
}
@media screen and (max-width: 1025px) {
  .flow-list2 {
    width: 100%;
  }
}
@media screen and (max-width: 639px) {
  .flow-list2 {
    width: 100%;
  }
  .flow-list2 .inner:before {
    left: 20px;
  }
  .flow-list2 .inner dd {
    padding: 15px 20px 15px 25px;
  }
  .flow-list2 .inner dt {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
}

.kiritori {
  height: 1px;
  border-top: 1px solid rgba(146, 0, 20, 0.2);
  margin: 5em auto;
  width: 20%;
  display: block;
}

.column2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.column2.tp {
  align-items: flex-start;
}
.column2.jus_cen {
  justify-content: center;
}
.column2 .child {
  width: 48%;
}
.column2 .child01 {
  width: 40%;
}
.column2 .child02 {
  width: 55%;
}
.column2 .child03 {
  width: 35%;
}
.column2 .child04 {
  width: 60%;
}
.column2 .child-txt {
  width: 58%;
}
.column2 .child-img {
  width: 40%;
}
@media screen and (max-width: 1025px) {
  .column2 {
    flex-direction: column;
  }
  .column2 .child,
  .column2 .child2,
  .column2 .child01,
  .column2 .child02,
  .column2 .child03,
  .column2 .child04,
  .column2 .child-txt,
  .column2 .child-img {
    width: 100%;
  }
  .column2 .child.txt-box,
  .column2 .child2.txt-box,
  .column2 .child01.txt-box,
  .column2 .child02.txt-box,
  .column2 .child03.txt-box,
  .column2 .child04.txt-box,
  .column2 .child-txt.txt-box,
  .column2 .child-img.txt-box {
    padding: 20px;
  }
  .column2 .child.txt-box p,
  .column2 .child2.txt-box p,
  .column2 .child01.txt-box p,
  .column2 .child02.txt-box p,
  .column2 .child03.txt-box p,
  .column2 .child04.txt-box p,
  .column2 .child-txt.txt-box p,
  .column2 .child-img.txt-box p {
    line-height: 1.8;
  }
  .column2 .child.bm20,
  .column2 .child2.bm20,
  .column2 .child01.bm20,
  .column2 .child02.bm20,
  .column2 .child03.bm20,
  .column2 .child04.bm20,
  .column2 .child-txt.bm20,
  .column2 .child-img.bm20 {
    margin-bottom: 20px;
  }
  .column2 .child.column2-img,
  .column2 .child2.column2-img,
  .column2 .child01.column2-img,
  .column2 .child02.column2-img,
  .column2 .child03.column2-img,
  .column2 .child04.column2-img,
  .column2 .child-txt.column2-img,
  .column2 .child-img.column2-img {
    order: -1;
    margin-bottom: 30px;
  }
  .column2 .child.column2-img2,
  .column2 .child2.column2-img2,
  .column2 .child01.column2-img2,
  .column2 .child02.column2-img2,
  .column2 .child03.column2-img2,
  .column2 .child04.column2-img2,
  .column2 .child-txt.column2-img2,
  .column2 .child-img.column2-img2 {
    order: -1;
  }
  .column2 .child-img {
    order: -1;
    margin-bottom: 20px;
  }
  .column2.sp100 {
    flex-direction: inherit;
  }
  .column2.sp100 .child {
    width: 49% !important;
  }
  .column2 img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
}

.column3 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.column3 .child {
  width: calc((100% - 120px) / 3);
  margin: 0 20px auto;
}
.column3 .child a {
  height: 300px;
  display: block;
  overflow: hidden;
}
.column3 .child a:hover img {
  opacity: 0.8;
  transform: scale(1.1);
}
.column3 .child a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  transition: all 0.3s ease;
}

.column4 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.column4 .child {
  width: calc((100% - 40px) / 4);
  margin: 0 5px 20px 5px;
}
.column4 .child a {
  height: 200px;
  display: block;
  overflow: hidden;
}
.column4 .child a:hover img {
  opacity: 0.8;
  transform: scale(1.1);
}
.column4 .child a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  transition: all 0.3s ease;
}

.article-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}
.article-box .left {
  width: 25%;
  position: sticky;
  left: 0;
  top: 100px;
}
.article-box .right {
  width: 72%;
}

.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: #7D6B62;
  padding: 15px 4px;
  color: #111;
  transition: all 0.2s ease-in;
}
.btn-box a:after {
  font-family: "Font Awesome 5 Free";
  content: "\f078";
  font-weight: 900;
  margin-left: 5px;
}
.btn-box a:hover {
  background: #cfd4d5;
  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(32, 39, 210, 0.2));
  border: 4px solid #2027D2;
  box-shadow: 5px 5px #f2eeea;
  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: #334352;
  font-weight: 600;
  font-size: 13px;
  border-bottom: 2px solid #334352;
  padding: 4px 0;
}
#sp-nav .sp-info-wrap a:not(:last-of-type) {
  margin-right: 10px;
}
#sp-nav .sp-info-wrap .head-right_contact {
  display: block;
}

.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: #334352;
  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 #334352;
  border-radius: 20px;
  background: #000;
}
.service-box a .service-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit:cover;";
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  opacity: 0.8;
}
@media screen and (max-width: 639px) {
  .service-box a .service-img {
    height: 250px;
  }
}
.service-box a .service-txt-box {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -40px;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  z-index: 4;
  width: 80%;
}
@media screen and (max-width: 639px) {
  .service-box a .service-txt-box {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}
.service-box a .service-title {
  color: #111;
  line-height: 1.4;
  padding: 15px;
  transition: all 0.15s ease-in;
}
.service-box a .service-title .eng {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-style: normal;
  color: #7D6B62;
  display: block;
}
.service-box a .service-title .ja {
  font-size: 1.15em;
}
.service-box a .btn-more {
  background: #111;
  color: #fff;
  padding: 5px;
  text-align: center;
  width: 100%;
  transition: background-color 0.15s ease-in;
}
.service-box a .btn-more span {
  font-size: 0.85em;
}
.service-box a:hover .service-img img {
  opacity: 1;
}
.service-box a:hover .service-txt-box {
  box-shadow: 0 0 15px rgba(207, 212, 213, 0.2);
}
.service-box a:hover .service-txt-box .service-title {
  color: #7D6B62;
}
.service-box a:hover .service-txt-box .btn-more {
  background: #334352;
}

.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: #7D6B62;
  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: "Jost", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1.4rem;
}
.business-list-title:after {
  position: absolute;
  content: "";
  right: 5px;
  top: 50%;
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: 900;
  transform: translateY(-50%);
  color: #7D6B62;
}
.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/25658/hem.svg) no-repeat right bottom/contain;
}
@media screen and (max-width: 639px) {
  .business-list-title {
    font-size: 1.4rem;
    text-shadow: none;
    padding-right: 80px;
  }
}

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

.title-big {
  position: relative;
  text-align: center;
  z-index: 3;
  margin-bottom: 20px;
  color: #fff;
}
.title-big span {
  display: block;
}
.title-big:before {
  position: relative;
  content: attr(data-title);
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: 5.5rem;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-style: normal;
  letter-spacing: 0.1rem;
  line-height: 1.15;
  white-space: nowrap;
}
.title-big.type-left {
  text-align: left;
}
.title-big.type-left .ja {
  margin-inline: 0 !important;
}
.title-big.type-left:before {
  margin-left: 0;
}
.title-big.type1 {
  color: #121212;
}
.title-big.type1:before {
  color: transparent;
  background-image: radial-gradient(circle, #667e41 0%, #7D6B62 50%, #667e41);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 1;
}
.title-big.type2 {
  color: #121212;
}
.title-big.type2 .ja {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding: 0 6px;
}
.title-big.type2:before {
  color: transparent;
  background-image: radial-gradient(circle, #2D4A86 0%, #7D6B62 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 1;
}
.title-big .img {
  display: block;
  max-width: 750px;
  margin-inline: auto;
}
.title-big .eng {
  position: relative;
  font-size: 8rem;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-style: normal;
  color: #fefefe;
  text-shadow: 1px 1px 0px #7D6B62, -1px 1px 0px #7D6B62, 1px -1px 0px #7D6B62, -1px -1px 0px #7D6B62, 1px 0px 0px #7D6B62, 0px 1px 0px #7D6B62, -1px 0px 0px #7D6B62, 0px -1px 0px #7D6B62;
  line-height: 1;
}
.title-big .ja {
  display: block;
  font-size: 2.4rem;
  position: relative;
  z-index: 2;
}
.title-big .ja2 {
  font-size: 2.4rem;
  position: relative;
  z-index: 2;
  margin-left: 20px;
  font-weight: 700;
}
.title-big .big {
  font-size: 3rem;
}
.title-big .big em {
  font-size: 4.5rem;
  font-weight: 800;
  color: #7D6B62;
}
.title-big .small {
  font-size: 0.7em;
}
.title-big.white::before {
  background-image: radial-gradient(circle, #fefefe 0%, #fefefe 50%, #fefefe);
}
.title-big.white .ja {
  color: #fefefe;
}
@media screen and (max-width: 764px) {
  .title-big::before {
    font-size: 4.5rem;
  }
  .title-big .ja {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 639px) {
  .title-big .eng {
    font-size: 4rem;
  }
  .title-big::before {
    font-size: 2.5rem;
  }
  .title-big .ja2 {
    font-size: 1.8rem;
  }
  .title-big .ja {
    font-size: 1.3rem;
  }
}

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

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

.top-strength-more {
  padding-bottom: 120px;
}

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

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

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

.ceo-wrap {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.ceo-wrap .ceo-img {
  width: 43%;
  padding-right: 40px;
  position: relative;
}
.ceo-wrap .ceo-img figure {
  position: relative;
  display: block;
}
.ceo-wrap .ceo-img figure img {
  box-shadow: rgba(92, 64, 49, 0.2) 4px 48px 60px 0px;
}
.ceo-wrap .ceo-img figure:before {
  position: absolute;
  content: "";
  right: -30px;
  bottom: -30px;
  width: 85%;
  height: 70%;
  z-index: -1;
  background-image: linear-gradient(to right, #b97eb4, #a997d5, #fff);
  opacity: 0.5;
  filter: blur(3px);
}
.ceo-wrap .ceo-txt {
  width: 55%;
  align-self: center;
}
.ceo-wrap .ceo-txt .inner {
  max-width: 600px;
  margin: 0 auto;
}
.ceo-wrap .ceo-txt .inner p + p {
  margin-top: 20px;
}
.ceo-wrap .ceo-txt .inner.type1 {
  max-width: 780px;
}

.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 #f2eeea;
  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 #7D6B62;
  padding-left: 20px;
}
.contact-box .content .contact-box-tel {
  color: #7D6B62;
  font-weight: 600;
  font-size: 2.6rem;
  width: 200px;
  display: block;
  line-height: 1;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
}
.contact-box .content .contact-box-tel:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
  font-size: 0.6em;
}
.contact-box .content .contact-box-tel:hover {
  color: #7D6B62;
}

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

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

@keyframes text {
  0% {
    opacity: 0;
    transform: translateX(-20px) translateY(-10px) scale(1.3);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
/* greet_block
----------------------------------*/
.greet_block {
  position: relative;
}
.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;
}
@media screen and (max-width: 1025px) {
  .greet_img {
    top: 0;
    width: 100%;
    height: 100%;
  }
}

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

.greet_title {
  margin-bottom: 24px;
  color: #00381f;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.4;
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
}

.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: #7D6B62;
  margin-right: 4px;
  position: absolute;
  left: 0;
  top: 0.5em;
}
.shikaku-dl dt .list-inline li {
  padding: 0;
}
.shikaku-dl dd {
  width: 4.5em;
  text-align: right;
  font-weight: 600;
}

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

.fukidashi {
  position: relative;
  z-index: 2;
  text-align: center;
  margin: 0 auto 20px;
}
.fukidashi.type1 {
  margin-top: 0;
}
.fukidashi span {
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding: 12px 20px;
  border-radius: 40px;
  background: #f2eeea;
  font-size: 2.6rem;
  color: #7c232a;
  line-height: 1.2;
  font-weight: 600;
}
.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: #f2eeea transparent transparent transparent;
  transform: translateX(-50%);
  z-index: -1;
}

.contents-list a {
  display: block;
  position: relative;
}
.contents-list a .num {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 5rem;
  position: absolute;
  left: 0.2em;
  top: -30px;
  color: #fff;
  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);
}
.contents-list a:before {
  position: absolute;
  content: "0";
  color: #5c4031;
  left: -11px;
  top: -44px;
  font-size: 4.5rem;
  z-index: -1;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
}
.contents-list a:after {
  position: absolute;
  content: "";
  right: 9%;
  bottom: -50%;
  width: 100%;
  height: 50%;
  background-image: linear-gradient(to bottom, rgba(92, 64, 49, 0.2) 0%, rgba(92, 64, 49, 0.1) 20%, transparent 35%);
  transform: skew(-25deg);
  z-index: -1;
  opacity: 0.5;
}
.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(125, 107, 98, 0.9) 100%);
  z-index: 2;
}
.contents-list a figure img {
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
}
.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: "Jost", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 3.2rem;
  line-height: 1;
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
  z-index: 2;
}
.contents-list a .content-list_title .ja {
  font-size: 1.2em;
}
.contents-list a:hover .num {
  color: #ffd803;
}
.contents-list a:hover figure img {
  transform: scale(1.1);
}
.contents-list a:hover .content-list_title:before {
  color: #ffd803;
}

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

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

.voice-area {
  padding: 0 20px 30px;
  display: flex;
  justify-content: space-between;
}
.voice-area .voice-child {
  width: 38%;
  padding: 20px 0 0;
  position: relative;
  margin: 0 10px;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 8%, rgba(255, 255, 255, 0.8) 5.1%);
  border-radius: 20px 0 20px 0;
}
.voice-area .voice-name {
  position: relative;
  display: flex;
  align-items: center;
  padding: 8px 16px;
  background: #f2eeea;
  border-radius: 20px 0 0 0;
}
.voice-area .voice-name:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 25%;
  height: 100%;
  background-image: linear-gradient(to right, #fff, rgba(255, 255, 255, 0.6));
  -webkit-clip-path: polygon(0 0, 100% 0, 84% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 84% 100%, 0% 100%);
  opacity: 0.6;
}
.voice-area .voice-name figure {
  position: relative;
  width: 70px;
  margin-top: -20px;
}
.voice-area .voice-name .txt {
  position: relative;
  font-weight: 600;
  margin-left: 16px;
}
.voice-area .voice-name .txt em {
  font-size: 1.3em;
  color: #5c4031;
}
.voice-area .voice-comment {
  padding: 25px;
}
.voice-area .voice-comment .voice-lead {
  font-size: 1.1em;
  font-weight: 600;
  font-feature-settings: "palt";
  color: #7D6B62;
}
.voice-area .voice-comment p {
  background-size: 100% 2.5em;
  background-image: linear-gradient(to bottom, transparent 0%, transparent 96%, #dfd5cb 100%);
  line-height: 2.5em;
  letter-spacing: 0;
}
@media screen and (max-width: 1025px) {
  .voice-area {
    flex-wrap: wrap;
  }
  .voice-area .voice-child {
    width: 100%;
  }
}

.btn-fixed {
  position: fixed;
  right: 0;
  top: 25%;
  z-index: 60;
}
@media screen and (max-width: 1025px) {
  .btn-fixed {
    display: none;
  }
}
.btn-fixed a {
  position: relative;
  display: block;
  padding: 15px 10px 15px 0;
  z-index: 2;
}
.btn-fixed a:before {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, #334352 -22.57%, #7D6B62 68.82%);
  background: #334352;
  transform: translateX(10px);
  -webkit-clip-path: polygon(0 4%, 100% 0, 100% 100%, 0 92%);
          clip-path: polygon(0 4%, 100% 0, 100% 100%, 0 92%);
}
.btn-fixed a span {
  display: block;
  position: relative;
  padding: 25px 12px;
  background-image: linear-gradient(to bottom, #375ba5, #2D4A86);
  background: #7D6B62;
  -webkit-clip-path: polygon(0 3%, 100% 0, 100% 100%, 0 93%);
          clip-path: polygon(0 3%, 100% 0, 100% 100%, 0 93%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-feature-settings: "pkna";
  font-weight: 600;
  font-size: 1.8rem;
  color: #fff;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
}
.btn-fixed a span.materials:before {
  font-family: "Font Awesome 5 Free";
  content: "\f15c";
  font-weight: 900;
  margin-bottom: 8px;
  color: #fff;
}
.btn-fixed a span.attendance:before {
  font-family: "Font Awesome 5 Free";
  content: "\f274";
  font-weight: 900;
  margin-bottom: 8px;
  color: #fff;
}
.btn-fixed a:hover span {
  transform: translateX(5px);
}

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

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

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

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

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

.greet-wrap {
  width: 40%;
  margin-left: auto;
  padding: 0 4%;
}
.greet-wrap .greet-title {
  color: #7E9FB9;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 3em;
  line-height: 1;
}
.greet-wrap .greet-title em {
  font-size: 1.4em;
}
.greet-wrap .greet-txt {
  color: #fff;
  margin-top: 40px;
}

.top-area {
  position: relative;
  justify-content: flex-end;
  display: flex;
  z-index: 1;
  margin-bottom: 80px;
  padding: 80px 0;
}
.top-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/25658/area-img.jpg) no-repeat center/cover;
}
.top-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;
}
@media screen and (max-width: 639px) {
  .top-area {
    padding: 0;
    padding-bottom: 250px;
  }
  .top-area::before {
    width: 100%;
    height: 250px;
    bottom: 0;
    top: auto;
  }
  .top-area::after {
    width: 100%;
  }
}

.area-box {
  position: relative;
  top: 0;
  left: 0;
  width: 55%;
  padding: 60px 40px;
  margin-right: auto;
  box-sizing: border-box;
  overflow: hidden;
}
.area-box .inner {
  position: relative;
  max-width: 700px;
  margin: auto;
  z-index: 1;
}
.area-box .inner p + p {
  margin-top: 18px;
}
@media screen and (max-width: 639px) {
  .area-box {
    width: 100%;
    padding: 40px 20px;
  }
}

.top-business-btn .top-business-child {
  position: relative;
}
.top-business-btn .top-business-child a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  height: 100%;
}
.top-business-btn .top-business-child a:hover figure img {
  transform: scale(1.1);
}
.top-business-btn .top-business-child a figure {
  aspect-ratio: 3/2;
  overflow: hidden;
  position: relative;
  width: 55%;
  mix-blend-mode: luminosity;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
}
.top-business-btn .top-business-child a .top-business-txt {
  position: relative;
  flex: 1;
  z-index: 2;
  border-top: 2px solid #7E9FB9;
  border-bottom: 2px solid #7E9FB9;
  background-image: linear-gradient(to right, rgba(160, 219, 241, 0.5), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
}
.top-business-btn .top-business-child a .top-business-txt .top-business-inner {
  padding: 30px 0px 25px 50px;
  position: relative;
  max-width: 80%;
  color: #111;
  font-weight: 600;
}
.top-business-btn .top-business-child a .top-business-num {
  position: absolute;
  right: 40px;
  top: -40px;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: rgba(126, 159, 185, 0.6);
  color: #fff;
  font-size: 7rem;
  line-height: 1;
}
.top-business-btn .top-business-child a .top-business-title {
  display: flex;
  margin-bottom: 24px;
  align-items: center;
  z-index: 3;
}
.top-business-btn .top-business-child a .top-business-title .ja {
  font-weight: 600;
  font-size: 2.2rem;
  color: #7D6B62;
}
.top-business-btn .top-business-child a .top-business-title .icon {
  width: 40px;
  height: 40px;
  margin-left: 25px;
  background: #7D6B62;
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
  font-size: 1.4rem;
  animation: pulse 1.6s linear infinite;
  color: #fff;
}
.top-business-btn .top-business-child a .top-business-more {
  width: 190px;
  margin-left: auto;
  margin-right: 30px;
  margin-bottom: -2px;
  padding: 4px 8px;
  border: solid 2px;
  border-color: #7E9FB9 #7E9FB9 transparent #7E9FB9;
  color: #334352;
  background: #fefefe;
  font-weight: 600;
  font-size: 1.4rem;
  text-align: center;
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
}
.top-business-btn .top-business-child a:hover figure img {
  transform: scale(1.1);
}
.top-business-btn .top-business-child a:hover .top-business-more {
  background: #111;
  border-radius: 8px 8px 0 0;
  border-color: #111 #111 transparent #111;
  color: #fff;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8), 0 0 0 0 rgba(255, 255, 255, 0.8);
  }
  30% {
    box-shadow: 0 0 0 30px rgba(255, 255, 255, 0), 0 0 0 0 rgba(255, 255, 255, 0.8);
  }
  65% {
    box-shadow: 0 0 0 30px rgba(255, 255, 255, 0), 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0), 0 0 0 10px rgba(255, 255, 255, 0);
  }
}
.bg-works {
  position: relative;
}
.bg-works:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/25658/top-blueberry.jpg) no-repeat center/cover;
}
.bg-works .top-works-bg {
  position: absolute;
  right: -5%;
  top: 0;
  width: 67%;
  height: 100%;
  background: rgba(114, 132, 202, 0.7);
  transform: skew(-12deg);
  overflow: hidden;
  z-index: 2;
}
.bg-works .top-works-bg:before, .bg-works .top-works-bg:after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  height: 100%;
}
.bg-works .top-works-bg:before {
  width: 94%;
  background: rgba(100, 0, 207, 0.4);
}
.bg-works .top-works-bg:after {
  width: 88%;
  background: rgba(113, 10, 104, 0.8);
  mix-blend-mode: multiply;
}
.bg-works .top-works-inner {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 2;
  width: 47%;
  height: 380px;
  margin-left: auto;
  margin-right: 40px;
}
.bg-works .top-works-inner a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 0 40px;
}

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

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

.partner-bnr-list {
  gap: 10px 10px;
}
.partner-bnr-list li a {
  position: relative;
  display: block;
  width: 100%;
  height: 100px;
  overflow: hidden;
  background: #fafafa;
}
.partner-bnr-list li a img {
  mix-blend-mode: darken;
  position: absolute;
  display: block;
  width: 70%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.partner-bnr-list li a img.type_contain {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}

.company-dl {
  padding-top: 10px;
}
.company-dl .inner {
  display: flex;
  padding: 17px 10px;
}
.company-dl .inner:not(:last-of-type) {
  border-bottom: 1px solid rgba(126, 159, 185, 0.7);
}
.company-dl .inner dt {
  width: 8em;
  font-weight: 600;
  color: #333;
}
.company-dl .inner dd {
  flex: 1;
  margin-left: 24px;
}
@media screen and (max-width: 639px) {
  .company-dl .inner {
    flex-direction: column;
    padding: 10px 0 0;
  }
  .company-dl .inner:not(:last-of-type) {
    border-bottom: 0;
  }
  .company-dl .inner dt,
  .company-dl .inner dd {
    text-align: center;
    width: 100%;
    padding: 7px;
  }
  .company-dl .inner dt {
    background: #e8f0db;
  }
  .company-dl .inner dd {
    margin-left: 0;
  }
}

.company-img img {
  height: 450px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 20%;
     object-position: center 20%;
}
@media screen and (max-width: 1101px) {
  .company-img img {
    height: 350px;
  }
}
@media screen and (max-width: 639px) {
  .company-img img {
    height: 250px;
  }
}

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

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

.top-news-btn {
  position: absolute;
  left: -10px;
  top: 160px;
}
.top-news-btn a {
  width: 200px;
}

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

.img-insert {
  max-width: calc(100% - 80px);
  margin: 40px auto;
  height: 300px;
  position: relative;
}
.img-insert::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(93.39deg, #A4CA68 0%, #93b55d 40%, #83a153 60.05%, #728d48 80.88%);
  opacity: 0.2;
}

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

.works-list li {
  display: flex;
  padding: 30px 20px;
  border-bottom: 2px solid #121212;
}
.works-list li .works-list-img {
  width: 45%;
}
.works-list li .works-list-img a {
  display: block;
  position: relative;
}
.works-list li .works-list-img figure {
  position: relative;
  aspect-ratio: 2/1.2;
}
.works-list li .works-list-img figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.works-list li .works-list-txt {
  flex: 1;
  margin-left: 40px;
}
.works-list li .works-list-txt .title02 {
  text-align: left;
}

.recruit-head {
  position: relative;
  margin-top: 55px;
}
.recruit-head .recruit-head-img {
  aspect-ratio: 20/9;
}
.recruit-head .recruit-head-txt {
  position: absolute;
  right: 30px;
  top: -40px;
  z-index: 2;
}
.recruit-head .recruit-head-txt h3 {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-feature-settings: "pkna";
  font-size: 2.6vw;
  line-height: 1.6;
}
.recruit-head .recruit-head-txt h3 span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  background: #fff;
  padding: 12px 1px;
}
.recruit-head .recruit-head-txt h3 span:nth-child(1) {
  background: #7D6B62;
  color: #fff;
}
.recruit-head .recruit-head-txt h3 span:nth-child(2) {
  margin-right: 15px;
  padding-top: 19px;
  transform: translateY(20px);
  letter-spacing: 0.1em;
}
.recruit-head .recruit-head-txt h3 span:nth-child(3) {
  margin-right: 15px;
  background: #7D6B62;
  color: #fff;
  padding-top: 19px;
  transform: translateY(40px);
  letter-spacing: 0.1em;
}

.top-cont02 {
  margin: 0 auto;
  max-width: 1100px;
  width: 100%;
}
.top-cont02 .inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.top-cont02 .inner .top-cont02-img {
  width: 46%;
}
.top-cont02 .inner .top-cont02-img img {
  filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.2));
}
.top-cont02 .inner .top-cont02-img .img01 {
  z-index: 0;
  width: 90%;
}
.top-cont02 .inner .top-cont02-img .img02 {
  width: 45%;
  z-index: 1;
  margin-top: -60px;
  margin-left: auto;
}
.top-cont02 .inner .top-cont02-txt {
  width: 50%;
}
.top-cont02 .inner .top-cont02-txt p + p {
  margin-top: 10px;
}
.top-cont02.type1 {
  max-width: 1500px;
  width: 95%;
}
.top-cont02.type1 .inner .top-cont02-img {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 45%;
}
.top-cont02.type1 .inner .top-cont02-img .img01,
.top-cont02.type1 .inner .top-cont02-img .img02 {
  width: 48%;
  filter: drop-shadow(16px 16px 0px #cfbded);
}
.top-cont02.type1 .inner .top-cont02-img .img01 img,
.top-cont02.type1 .inner .top-cont02-img .img02 img {
  width: calc(100% - 16px);
  border-radius: 100px 5px 40px 20px;
  overflow: hidden;
}
.top-cont02.type1 .inner .top-cont02-img .img02 {
  margin-top: 40px;
}
.top-cont02.type1 .inner .top-cont02-img .img02 img {
  border-radius: 5px 40px 20px 100px;
}
.top-cont02.type1 .inner .top-cont02-txt {
  width: 50%;
}
.top-cont02.type2 {
  max-width: 1500px;
  width: 95%;
}
.top-cont02.type2 .inner .top-cont02-img {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 48%;
}
.top-cont02.type2 .inner .top-cont02-img .img01,
.top-cont02.type2 .inner .top-cont02-img .img02 {
  width: 48%;
}
.top-cont02.type2 .inner .top-cont02-img .img02 {
  margin-top: 40px;
}
@media screen and (max-width: 639px) {
  .top-cont02.type2 {
    width: 100%;
  }
  .top-cont02.type2 .inner .top-cont02-txt,
  .top-cont02.type2 .inner .top-cont02-img {
    width: 100%;
  }
}
.top-cont02.type3 {
  max-width: 1500px;
  width: 98%;
}
.top-cont02.type3 .inner .top-cont02-txt {
  width: 56%;
}
.top-cont02.type3 .inner .top-cont02-img {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 40%;
}
.top-cont02.type3 .inner .top-cont02-img .img01,
.top-cont02.type3 .inner .top-cont02-img .img02 {
  width: 48%;
}
.top-cont02.type3 .inner .top-cont02-img .img02 {
  margin-top: 40px;
}
@media screen and (max-width: 1025px) {
  .top-cont02 .inner {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
  }
  .top-cont02 .inner .top-cont02-img {
    width: 100%;
    margin-bottom: 20px;
    order: -1;
  }
  .top-cont02 .inner .top-cont02-img .img02 {
    margin-top: -80px;
    max-width: 350px;
  }
  .top-cont02 .inner .top-cont02-txt {
    width: 100%;
    margin: auto;
  }
  .top-cont02.type1 {
    width: 100%;
  }
  .top-cont02.type1 .inner .top-cont02-img {
    width: 100%;
  }
  .top-cont02.type1 .inner .top-cont02-txt {
    width: 100%;
  }
  .top-cont02.type2 {
    width: 100%;
  }
  .top-cont02.type2 .inner .top-cont02-img {
    width: 100%;
  }
}
@media screen and (max-width: 639px) {
  .top-cont02 .inner {
    max-width: calc(100% - 10px);
  }
  .top-cont02 .inner .top-cont02-img .img02 {
    margin-top: -40px;
    max-width: 300px;
  }
  .top-cont02.type1 .inner .top-cont02-img .img02 {
    margin-top: 20px;
  }
  .top-cont02.type2 .inner .top-cont02-img .img02 {
    margin-top: 20px;
  }
}

.vertical-content {
  margin-left: 150px;
}

.form-pattern-2 dl dt:not(.pattern-exclusion) span.required::before {
  background: #7D6B62 !important;
}

.form-contents dd:not(.pattern-exclusion) input.textarea {
  height: 40px !important;
}

.form-pattern-2 .submit-btn {
  background: #334352 !important;
  border: 1px solid #334352 !important;
}
.form-pattern-2 .submit-btn::before {
  transition: all 0.2s ease-in-out 0s;
}
.form-pattern-2 .submit-btn:hover {
  background: #fff !important;
  color: #334352 !important;
}
.form-pattern-2 .submit-btn:hover::before {
  background-color: #334352 !important;
}

.comi-box1 {
  position: relative;
  padding: 240px 0 100px;
}
.comi-box1:after {
  position: absolute;
  content: "";
  width: 290px;
  height: 200px;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/25658/top-comi-deko2.png) no-repeat;
  background-size: cover;
  top: 10%;
  /* left: 0; */
  right: 7%;
  margin: 0 auto;
  z-index: 1;
}
.comi-box1 .photo {
  z-index: 1;
  position: absolute;
  top: 0;
  left: -30px;
  filter: drop-shadow(10px 10px 0px #334352);
}
.comi-box1 .photo img {
  width: 860px;
  height: 390px;
  -o-object-fit: cover;
     object-fit: cover;
}
.comi-box1 .photo2 {
  position: absolute;
  z-index: 1;
  bottom: -50px;
  right: 0;
  filter: drop-shadow(10px 10px 0px #7D6B62);
}
.comi-box1 .photo2 img {
  width: 860px;
  height: 390px;
  -o-object-fit: cover;
     object-fit: cover;
}
.comi-box1 .txtarea {
  position: relative;
  z-index: 2;
  padding: 50px;
  max-width: 1000px;
  margin: 0 auto 50px;
  background-color: rgba(251, 251, 249, 0.831372549);
}
.comi-box1 .txtarea.shadow {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 18px 50px -10px;
}
.comi-box1 .txtarea2 {
  position: relative;
  z-index: 2;
  padding: 20px 50px;
  max-width: 1000px;
  margin: 0 auto;
  background-color: rgba(251, 251, 249, 0.831372549);
}
.comi-box1 .txtarea2.shadow {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 18px 50px -10px;
}

.top-bnr {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
}
.top-bnr a {
  display: block;
  text-align: center;
  padding: 30px;
  transition: all 0.4s ease;
}
.top-bnr a::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #004e71, #a0c1d1);
  background-size: 180% auto;
  background-position: right center;
  border-radius: 10px;
  z-index: -1;
  transition: all 0.4s ease-in;
}
.top-bnr a::after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  background: #fff;
  border-radius: 5px;
  z-index: -1;
}
.top-bnr a .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
.top-bnr a .inner .child {
  width: 25%;
}
.top-bnr a .inner .child-txt {
  width: 50%;
  padding: 0 20px;
}
.top-bnr a .inner .top-bnr-title {
  font-weight: 400;
  letter-spacing: 0.15em;
  color: #454545;
  font-size: 2rem;
}
.top-bnr a .inner .top-bnr-title span {
  color: #4d4d4d;
  font-size: 2.5rem;
  font-weight: 600;
}
.top-bnr a .inner .top-bnr-txt {
  color: #fff;
  background: #5b95b0;
  border: 1px solid #5b95b0;
  display: inline-block;
  padding: 5px 25px;
  font-size: 1.5rem;
  border-radius: 20px;
  margin-top: 20px;
  transition: all 0.4s ease-in;
}
.top-bnr a:hover {
  transform: translateY(-5px);
  filter: drop-shadow(0px 5px 5px rgba(0, 0, 0, 0.2));
}
.top-bnr a:hover::before {
  background-position: left center;
}
.top-bnr a:hover .top-bnr-txt {
  color: #5b95b0;
  background: #fefefe;
}

.denka-e-plan img {
  max-width: 700px;
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* category_tab
----------------------------------*/
.innerB {
  width: 100%;
  margin: auto;
  background: #fff;
  padding: 50px 50px;
  box-shadow: 0 6px 15px rgba(36, 37, 38, 0.04);
  box-sizing: border-box;
  border: 1px solid #eee;
}
.innerB.innerB_news {
  border-top: none;
  border-radius: 10px;
}
.innerB.innerB_news .category_contents {
  height: 425px;
  overflow-y: scroll;
  overflow-x: hidden;
}
.innerB.innerB_news .category_contents.type2 {
  height: auto;
  overflow-y: auto;
  overflow-x: auto;
}
.innerB.innerB_news .category_contents::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 5, 56, 0.3);
  border-radius: 10px;
  background-color: #F5F5F5;
}
.innerB.innerB_news .category_contents::-webkit-scrollbar {
  width: 6px;
  background-color: #F5F5F5;
}
.innerB.innerB_news .category_contents::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 5, 56, 0.3);
  background-color: #7D6B62;
}
@media screen and (max-width: 764px) {
  .innerB {
    padding: 30px;
  }
}
@media screen and (max-width: 639px) {
  .innerB {
    padding: 30px 20px;
  }
}

.category_tab {
  position: relative;
  display: flex;
  justify-content: center;
  text-align: center;
}
.category_tab li {
  position: relative;
  width: 27%;
  box-sizing: border-box;
  background: #7D6B62;
  border-top: 3px solid #7D6B62;
  border-right: 3px solid #7D6B62;
  border-left: 3px solid #7D6B62;
  color: #FFFFFF;
  padding: 20px 10px;
  cursor: pointer;
  margin-left: 20px;
  border-radius: 8px 8px 0 0;
  font-weight: bold;
}
.category_tab li:last-child {
  margin-right: 20px;
}
.category_tab li:nth-child(2) {
  background: #334352;
  border-top: 3px solid #334352;
  border-right: 3px solid #334352;
  border-left: 3px solid #334352;
}
.category_tab li:nth-child(3) {
  background: #334352;
  border-top: 3px solid #334352;
  border-right: 3px solid #334352;
  border-left: 3px solid #334352;
}
.category_tab li.active {
  background: #FFFFFF;
  color: #555;
}
.category_tab li.active:before {
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  content: "";
  background: #FFFFFF;
}
@media screen and (max-width: 639px) {
  .category_tab li {
    margin-left: 2px;
    width: 32%;
    padding: 5px;
    font-size: 13px;
  }
  .category_tab li:last-child {
    margin-right: 0px;
  }
}

.panel {
  display: none;
}

/* state-box
----------------------------------*/
.state-box .slider_wrap .slider img {
  height: 500px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.state-box .slider_wrap .slider-nav img {
  height: 180px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.state-box .no {
  padding: 40px 0;
}
@media screen and (max-width: 764px) {
  .state-box .slider_wrap .slider img {
    height: 250px;
  }
  .state-box .slider_wrap .slider-nav img {
    height: 120px;
  }
}

.slick-dotted.slick-slider {
  margin-top: 20px !important;
}

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

.greet-catch {
  position: relative;
  text-align: center;
  margin-bottom: 50px;
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
  font-size: 3rem;
  line-height: 5rem;
  color: #fff;
}
@media screen and (max-width: 1025px) {
  .greet-catch {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}

.link_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.link_list > li {
  width: calc((100% - 40px) / 3);
}
.link_list > li a {
  padding: 3em 2em;
  text-align: center;
  position: relative;
  border: 1px solid #bdbdbd;
  display: block;
}
.link_list > li a::before, .link_list > li a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  transform: translate(-50%, -50%);
  transition: all 0.5s ease;
}
.link_list > li a::before {
  background: #5c4031;
  opacity: 0.7;
  z-index: -1;
}
.link_list > li a::after {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/25658/presentation01.jpg) no-repeat center/cover;
  z-index: -2;
}
.link_list > li a .ttl {
  color: #fff;
  font-size: 1.3em;
  margin-bottom: 10px;
}
.link_list > li a .btns {
  background: #fff;
  border-radius: 30px;
  padding: 2px 24px;
  color: #5c4031;
  display: inline-block;
}
.link_list > li a:hover::before {
  opacity: 0;
}
.link_list > li a:hover::after {
  filter: blur(2px);
}
.link_list > li:nth-child(2) a::after {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/25658/presentation02.jpg) no-repeat center/cover;
}
.link_list > li:nth-child(3) a::after {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/25658/presentation03.jpg) no-repeat center/cover;
}
.link_list > li:nth-child(4) a::after {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/25658/presentation04.jpg) no-repeat center/cover;
}
.link_list > li:nth-child(5) a::after {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/25658/presentation05.jpg) no-repeat center/cover;
}
.link_list > li:nth-child(6) a::after {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/25658/presentation06.jpg) no-repeat center/cover;
}
@media screen and (max-width: 639px) {
  .link_list {
    gap: 10px;
  }
  .link_list > li {
    width: calc((100% - 20px) / 2);
    width: 100%;
  }
  .link_list > li a {
    padding: 3em 2em;
  }
}

.title-box {
  position: relative;
  padding: 100px;
  margin-bottom: 20px;
}
.title-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/25658/presentation01.jpg) no-repeat bottom/cover;
  z-index: -1;
}
.title-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #334352;
  opacity: 0.6;
  z-index: -1;
}
.title-box.type1::before {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/25658/presentation02.jpg) no-repeat bottom/cover;
}
.title-box.type2::before {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/25658/presentation03.jpg) no-repeat bottom/cover;
}
.title-box.type3::before {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/25658/presentation04.jpg) no-repeat bottom/cover;
}
.title-box.type4::before {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/25658/presentation05.jpg) no-repeat bottom/cover;
}
.title-box .deco-posi .title {
  position: absolute;
  bottom: 25px;
  left: 25px;
  color: #fff;
  font-size: 1.8rem;
  width: 100%;
}
.title-box .deco-posi .title .eng {
  display: block;
  font-size: 2rem;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-style: normal;
  line-height: 1;
}
.title-box .deco-posi .title .ja {
  font-size: 3rem;
}
@media screen and (max-width: 1025px) {
  .title-box .deco-posi .title .ja {
    font-size: 2rem;
  }
}

.subject_box {
  display: flex;
  flex-wrap: wrap;
  box-shadow: 10px 10px 0px rgba(92, 64, 49, 0.1);
  background-color: #fffaee;
  padding: 20px;
  border-radius: 0 20px 20px 0;
  margin-top: 30px;
  align-items: center;
}
.subject_box .box-title {
  max-width: 220px;
  width: 20%;
  padding-right: 20px;
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
}
.subject_box .box-txt {
  width: 80%;
  padding-left: 20px;
  font-weight: bold;
  border-left: 1px solid #333;
  font-size: 2rem;
}
.subject_box .box-txt span {
  font-size: 5.5rem;
  color: #920014;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-style: normal;
}
@media screen and (max-width: 639px) {
  .subject_box .box-title {
    width: 40%;
    text-align: right;
    font-size: 1.3rem;
  }
  .subject_box .box-txt {
    width: 60%;
    font-size: 1.3rem;
  }
  .subject_box .box-txt span {
    font-size: 2.5rem;
  }
}

.txt-flex {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.txt-flex li {
  width: 32%;
  background: #334352;
  color: #fff;
  padding: 5px 5px;
  margin: 2px;
  text-align: center;
  font-size: 1.5rem;
}
@media screen and (max-width: 1025px) {
  .txt-flex li {
    width: 30%;
    font-size: 1.1rem;
  }
}

.line-column3 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.line-column3 > li {
  width: 33%;
  padding: 0 30px;
}
.line-column3 > li:nth-child(n+2) {
  border-left: 1px solid #cfcfcf;
}
.line-column3 > li figure {
  width: 100%;
  margin: 0 0 30px;
}
.line-column3 > li .title02 {
  text-align: center;
}
@media screen and (max-width: 1025px) {
  .line-column3 li {
    width: 50%;
    margin-bottom: 50px;
  }
  .line-column3 li:nth-child(3) {
    border-left: none;
  }
}
@media screen and (max-width: 639px) {
  .line-column3 li {
    width: 100%;
    border-left: none !important;
    border-bottom: 1px solid #cfcfcf;
    padding: 40px 0;
    margin-bottom: 0;
  }
  .line-column3 li:last-child {
    border-bottom: none;
  }
}

.mtitle_middle {
  position: relative;
  margin-bottom: 30px;
  padding: 0 0 4px 1em;
  border-bottom: 1px dotted #aaa;
  font-size: 1.8em;
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
  color: #7D6B62;
}
.mtitle_middle:before {
  position: absolute;
  top: 15%;
  left: 0;
  width: 2px;
  height: 50%;
  content: "";
  background: #7D6B62;
}

.sticky-area02 {
  float: left;
  position: sticky;
  left: 0;
  top: 80px;
  width: 34%;
}
.sticky-area02.type1 {
  float: right;
}
@media screen and (max-width: 639px) {
  .sticky-area02 {
    float: none;
    width: 100%;
    position: relative;
    margin-bottom: 25px;
    top: 0;
  }
}

.main-area02 {
  position: relative;
  float: right;
  width: 62%;
}
.main-area02.type1 {
  float: left;
}
@media screen and (max-width: 639px) {
  .main-area02 {
    float: none;
    width: 100%;
  }
}

.mtitle_point {
  position: relative;
  color: #202121;
  font-size: 2.2rem;
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
  margin-bottom: 20px;
}
@media screen and (max-width: 639px) {
  .mtitle_point {
    font-size: 1.7rem !important;
  }
}

#medical-box {
  display: flex;
  align-items: flex-start;
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 1025px) {
  #medical-box {
    flex-direction: column;
    justify-content: center;
    margin-bottom: 0;
    padding: 0;
  }
}
#medical-box #medical-side {
  width: 200px;
  position: sticky;
  left: 0;
  top: 80px;
  margin-bottom: 80px;
}
#medical-box #medical-side .btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}
#medical-box #medical-side .btn li {
  margin: 0 5px;
  background: #7D6B62;
  border-radius: 100%;
  transition: all 0.3s ease 0s;
  max-width: 50px;
}
#medical-box #medical-side .btn li:hover {
  background: #5c4031;
}
@media screen and (max-width: 1025px) {
  #medical-box #medical-side {
    width: 95%;
    margin: 0 auto;
  }
}
#medical-box #medical-main {
  flex: 1;
  margin-left: 40px;
}
@media screen and (max-width: 1101px) {
  #medical-box #medical-main {
    margin-left: 20px;
  }
}
@media screen and (max-width: 1025px) {
  #medical-box #medical-main {
    flex: 0 1 auto;
    margin: 0;
    width: 100%;
  }
}

.sidenavi_wrap {
  margin-top: 80px;
  background: #fefefe;
  padding: 0 10px;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #ddd;
}
@media screen and (max-width: 1025px) {
  .sidenavi_wrap {
    margin-top: 40px;
  }
}
.sidenavi_wrap .title-mini {
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
  background: #334352;
  color: #fff;
  padding: 8px 0;
  margin: 0 -10px;
  text-align: center;
  font-size: 1.6rem;
}
@media screen and (max-width: 1025px) {
  .sidenavi_wrap .title-mini {
    font-size: 1.3rem;
  }
}
.sidenavi_wrap .side-navi {
  font-size: 1.2rem;
  line-height: 1.6;
  padding: 10px 0;
}
.sidenavi_wrap .side-navi > li a {
  position: relative;
  display: block;
  color: #5c4031;
  padding: 8px 0 8px 1.5em;
  transition: all 0.4s ease;
}
.sidenavi_wrap .side-navi > li a:before {
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  font-family: "Font Awesome 5 Free";
  content: "\f0da";
  font-weight: 900;
}
.sidenavi_wrap .side-navi > li a:hover {
  background: #f0ebe7;
}
.sidenavi_wrap .side-navi > li:not(:last-of-type) {
  border-bottom: 1px dashed #ccc;
}

.mtitle_icon {
  position: relative;
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
  margin-bottom: 30px;
  color: #5c4031;
  font-size: 2.2rem;
  padding: 15px 0 15px 80px;
}
.mtitle_icon .eng {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1.5rem;
  display: block;
  color: #999;
}
.mtitle_icon:before {
  position: absolute;
  content: "";
  width: 60px;
  height: 60px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/25658/about-01.png);
  background-size: contain;
}
.mtitle_icon.type1:before {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/25658/about-02.png);
}
.mtitle_icon.type2:before {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/25658/about-03.png);
}
.mtitle_icon.type3:before {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/25658/about-04.png);
}
.mtitle_icon.type4:before {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/25658/about-05.png);
}
@media screen and (max-width: 639px) {
  .mtitle_icon {
    font-size: 1.6rem;
    letter-spacing: 0.15em;
    margin-bottom: 25px;
    padding: 10px 0 10px 60px;
  }
  .mtitle_icon .eng {
    font-size: 1.2rem;
  }
  .mtitle_icon:before {
    width: 50px;
    height: 50px;
  }
}

.blog_card {
  width: 100%;
}
.blog_card ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  align-items: stretch;
}
.blog_card li {
  width: 32%;
  margin: 0 0.5% 0;
  padding: 15px;
  border: 1px solid #888;
  background: rgba(255, 255, 255, 0.7);
  position: relative;
}
.blog_card li:nth-child(n+4) {
  margin-top: 1.5em;
}
.blog_card li:hover {
  background-color: #eee;
  transition: 0.5s;
}
.blog_card li .blog_dt {
  display: block;
  font-weight: bold;
  font-size: 11px;
  color: #280000;
}
.blog_card li .blog_img {
  height: 180px;
  text-align: center;
  margin-bottom: 20px;
}
.blog_card li .blog_title {
  font-weight: bold;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 10px;
}
.blog_card li .blog_body {
  line-height: 1.2;
  font-size: 12px;
  height: 15px;
  white-space: nowrap;
  overflow: hidden;
}
.blog_card li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media all and (max-width: 1100px) {
  .blog_card {
    width: 100%;
  }
  .blog_card li {
    width: 48%;
    margin: 1%;
  }
}
@media all and (max-width: 690px) {
  .blog_card {
    width: 100%;
  }
  .blog_card li {
    float: none;
    width: 100%;
    margin: 0 0% 10px 0%;
  }
}
.flowbox {
  position: relative;
  margin: 20px auto;
  display: flex;
}
.flowbox .boxarea {
  position: relative;
  width: 48%;
}
.flowbox .boxarea .ttl {
  position: absolute;
  top: -5px;
  left: -4px;
}
.flowbox .boxarea .ttl span {
  background-color: #666;
  color: #fff;
  padding: 4px 20px;
}
.flowbox .boxarea .photo img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
.flowbox .boxarea.type2 {
  margin-left: 4%;
}
.flowbox .boxarea.type2 .ttl span {
  background-color: #920014;
  color: #fff;
  padding: 4px 28px;
}
.flowbox:before {
  position: absolute;
  content: "";
  width: 60px;
  height: 60px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/25658/arrow.png) no-repeat;
  background-size: contain;
  z-index: 2;
}
@media screen and (max-width: 1025px) {
  .flowbox::before {
    width: 40px;
    height: 35px;
  }
}
@media screen and (max-width: 639px) {
  .flowbox .boxarea .photo img {
    height: 200px;
  }
}

.news-sr {
  margin: 0px 0 0;
  font-size: 13px;
}
.news-sr dt {
  float: left;
  width: 11em;
  padding: 2px 0;
  line-height: 1.3;
  color: #fff;
  background: #7D6B62;
  text-align: center;
  border-radius: 5px;
  margin: 9px 0 0;
}
.news-sr dd {
  padding-left: 12.5em;
  padding-bottom: 5px;
  padding-top: 8px;
  line-height: 1.6;
  border-bottom: 1px dotted #aaa;
  color: #555;
}
.news-sr dd:last-child {
  border-bottom: 0px;
}
.news-sr dd span {
  font-size: 10px;
}

.under_line {
  position: relative;
  color: #920014;
  background: linear-gradient(transparent 60%, #f7c56a 0%);
}

.content-box + .content-box {
  margin-top: 80px;
}
@media screen and (max-width: 1025px) {
  .content-box + .content-box {
    margin-top: 40px;
  }
}

.in-category-pon {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 10px;
  border-radius: 50px;
  z-index: 1;
  font-size: 1.3rem;
  margin-bottom: 30px;
}
.in-category-pon.on {
  background: #920014;
  color: #fff;
}
.in-category-pon.off {
  background: #e0e0e0;
  color: #000;
}

.map-pin {
  margin-left: 50px;
}

.hata {
  width: 100%;
  margin: 80px auto;
}
.hata img {
  width: 100%;
}
/* 1) 既存の .on をまず無効化（常に透明） */
.blog-wrap li .category-pon.on,
.in-category-pon.on{
  background: transparent !important;
  color: inherit !important;
}

/* 2) 「終了しました」にだけ色を戻す（JSで付けるクラス） */
.blog-wrap li .category-pon.on.is-ended{
  background: #3b3b3b8c !important;
}
.blog-wrap li .category-pon p{
  color: white;
  font-weight: 800;
}
/* 開催中など＝終了以外だけ濃い影 */
.blog-wrap li .category-pon:not(.is-ended) p,
.in-category-pon:not(.is-ended){
  text-shadow:
    0 0 2px rgba(0,0,0,.85),
    0 2px 3px rgba(0,0,0,.85),
    0 3px 6px rgba(0,0,0,.7);
    padding-left: 20px;
    background-color: #ec3333;
    width: 90px;
    margin-right: 35% !important;
}

/* 終了しました は影なし */
.blog-wrap li .category-pon.is-ended p,
.in-category-pon.is-ended{
  -webkit-text-stroke: 0 transparent;
  text-shadow: none;
}

@media screen and (max-width: 667px) {
  .blog-wrap li .category-pon:not(.is-ended) p,
.in-category-pon:not(.is-ended){
    padding-left: 16px;
    background-color: #ec3333;
    width: 98px;
    margin-right: 32% !important;
}

}
.thanks{
  border: 1px solid #7d6b62;
  padding: 60px 60px 40px;
}

@media screen and (max-width: 667px) {
  .thanks{
  padding: 30px 10px;
}

}

