@charset "UTF-8";
/* アニメーションベンダープレフィックス込み指定 */
/* アニメーションベンダープレフィックス込み指定 */
html {
  scroll-behavior: smooth;
}

body {
  color: #221515;
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  font-weight: 500;
  position: relative;
  letter-spacing: 0.05em;
  position: relative;
}

.inline {
  display: inline-block;
}

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

#wrapper {
  overflow: hidden;
}

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

.bold {
  font-weight: 700;
}

h2,
h3 {
  line-height: 1.6;
}
h2 .ja,
h3 .ja {
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.mincho {
  font-family: "YakuHanJP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.chosei {
  margin-bottom: 60px;
}
@media all and (max-width: 639px) {
  .chosei {
    margin-bottom: 40px;
  }
}

/* 動き
----------------------------------*/
/*印象編　4-9、4-10　背景色が伸びて出現（左から・右から）　*/
.bgextend {
  animation-name: bgextendAnimeBase;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden;
  /*　はみ出た色要素を隠す　*/
  opacity: 0;
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*中の要素*/
.bgappear {
  animation-name: bgextendAnimeSecond;
  animation-duration: 1s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*印象編　4-9 背景色が伸びて出現（左から）*/
.bgLRextend::before {
  animation-name: bgLRextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background-color: #aaa;
  /*伸びる背景色の設定*/
  background-image: linear-gradient(to right, #ccc9c9, #eae9e5);
}

@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  51% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
/*印象編　4-9 背景色が伸びて出現（右から）*/
.bgRLextend::before {
  animation-name: bgRLextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #aaa;
  /*伸びる背景色の設定*/
}

@keyframes bgRLextendAnime {
  0% {
    transform-origin: right;
    transform: scaleX(0);
  }
  50% {
    transform-origin: right;
    transform: scaleX(1);
  }
  51% {
    transform-origin: left;
  }
  100% {
    transform-origin: left;
    transform: scaleX(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger,
.bgUDextendTrigger,
.bgDUextendTrigger,
.bgRLextendTrigger,
.bgLRextendTrigger {
  opacity: 0;
}

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

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

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

.loader {
  align-items: center;
  background: #faf5ef;
  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 #CE001D;
  border-radius: 50%;
  border-right: 1px solid rgba(206, 0, 29, 0.2);
  border-top: 1px solid rgba(206, 0, 29, 0.2);
  content: "";
  height: 70px;
  width: 70px;
}
.loader.off {
  display: none;
}

@keyframes loader {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* clip_left */
.clip_left {
  animation-duration: 0.3s;
  animation-timing-function: linear;
  animation-name: clip_left;
}

@keyframes clip_left {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
    background: #CE001D;
  }
  100% {
    -webkit-clip-path: inset(0 0% 0 0);
    clip-path: inset(0 0% 0 0);
    background: none;
  }
}
/* 4-6 じわっ（ぼかしから出現） */
.blur {
  animation-name: blurAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.blurTrigger {
  opacity: 0;
}

.trbr {
  display: none;
}

@media all and (max-width: 896px) {
  .trbr {
    display: block;
  }
}
/* /clip_left */
.clip_left02 {
  animation-duration: 0.4s;
  animation-timing-function: linear;
  animation-name: clip_left02;
}

@keyframes clip_left02 {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }
  100% {
    -webkit-clip-path: inset(0 0% 0 0);
    clip-path: inset(0 0% 0 0);
  }
}
/* /clip_left */
[data-aos=slidein] {
  opacity: 0;
}
[data-aos=slidein].aos-animate {
  animation-name: play;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  position: relative;
  opacity: 1 !important;
}
[data-aos=slidein].aos-animate:before {
  animation-name: maskOut;
  animation-duration: 0.5s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(109.6deg, #CE001D 11.2%, #ccc9c9 91.1%);
}

@keyframes play {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes maskOut {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}
.slidein_box {
  width: 100%;
  overflow: hidden;
}

/* header
----------------------------------*/
@keyframes hd-scrolled {
  0% {
    opacity: 0;
    transform: translate(0, -100%);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
#l-header {
  position: absolute;
  width: 100%;
  z-index: 200;
  top: 0;
  left: 0;
  transition: all 0.4s ease-in;
  background: #fefefe;
}
#l-header.is-fixed {
  position: fixed;
  background: #fefefe;
  filter: drop-shadow(2px 0px 6px rgba(109, 106, 102, 0.1));
}
#l-header.is-fixed .inner .head-right_contact {
  display: none;
}
#l-header.is-fixed .inner #logo {
  width: 285px;
}
#l-header.is-fixed .inner #logo img {
  filter: none;
}
#l-header.is-fixed .inner #logo .logo2 {
  display: none;
}
#l-header.is-fixed .inner #logo .logo {
  display: block;
}
@media all and (max-width: 1200px) {
  #l-header.is-fixed .inner #logo {
    width: 180px;
  }
}
@media all and (max-width: 896px) {
  #l-header.is-fixed .inner #logo {
    display: none;
  }
}
@media all and (max-width: 896px) {
  #l-header {
    background: transparent;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }
}
#l-header .inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 30px);
  margin: 0 auto;
  padding: 12px 0;
  align-items: center;
  justify-content: space-between;
}
@media all and (max-width: 896px) {
  #l-header .inner {
    min-width: initial;
  }
}
#l-header .inner #logo {
  transition: all 0.4s ease-in;
  width: 350px;
  z-index: 2;
}
#l-header .inner #logo .logo {
  display: none;
}
@media all and (max-width: 1200px) {
  #l-header .inner #logo {
    width: 240px;
  }
}
#l-header .head-right {
  position: relative;
  margin-left: auto;
  align-items: center;
  display: flex;
  flex-direction: row-reverse;
}
@media all and (max-width: 896px) {
  #l-header .head-right {
    display: none;
  }
}
#l-header .head-right_contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  margin-left: 13px;
}
#l-header .head-right_contact p {
  margin-right: 15px;
}
#l-header .head-right_tel {
  line-height: 1;
  text-align: center;
}
#l-header .head-right_tel span {
  color: #CE001D;
  font-size: 1.25rem;
}
#l-header .head-right_tel a {
  transition: all 0.3s ease-in;
  display: block;
  font-size: 2.5rem;
  color: #CE001D;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
}
#l-header .head-right_tel a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f095";
  font-weight: 900;
  margin-right: 5px;
  font-size: 2.4rem;
}
#l-header .head-right_tel a:hover {
  opacity: 0.6;
}

#header_nav {
  position: relative;
  width: 570px;
  transition: all 0.4s ease-in;
}
@media all and (max-width: 896px) {
  #header_nav {
    display: none;
  }
}
.is-fixed #header_nav ul li a {
  color: #221515;
  filter: none;
}
.is-fixed #header_nav ul li a.active span, .is-fixed #header_nav ul li a:hover span {
  color: #CE001D;
}
#header_nav > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
#header_nav > ul li {
  position: relative;
  text-align: center;
  padding: 0 8px;
}
#header_nav > ul li a {
  position: relative;
  display: block;
  line-height: 1.3;
  font-size: 1.75rem;
  letter-spacing: 0.1em;
  color: #221515;
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
}
#header_nav > ul li a span {
  position: relative;
  display: block;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em;
  font-size: 1rem;
  transition: all 0.3s ease-in;
  color: #CE001D;
  text-transform: uppercase;
  text-align: left;
}
#header_nav > ul li a:after {
  position: absolute;
  transition: all 0.6s ease;
  content: "";
  width: 2px;
  height: 0%;
  background: #CE001D;
  transform: translateY(50%);
  bottom: 50%;
  left: -10px;
  opacity: 0;
}
#header_nav > ul li:hover a, #header_nav > ul li:active a {
  color: #6d6a66;
}
#header_nav > ul li:hover a:after, #header_nav > ul li:active a:after {
  opacity: 1;
  height: 100%;
}
#header_nav .dropdown {
  display: none;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  top: 43px;
  padding-top: 15px;
  z-index: 999;
  width: 120px;
}
#header_nav .dropdown li {
  border-top: 1px solid #ddd;
  border-left: none;
  border-right: none;
}
#header_nav .dropdown li:not(:last-child) {
  border-bottom: 1px solid #ddd;
}
#header_nav .dropdown .dropdown-li a {
  display: block;
  width: auto;
  padding: 8px;
  font-size: 1.3rem;
  color: #6d6a66;
  background: #fefefe;
  text-shadow: none;
  filter: none;
}
#header_nav .dropdown .dropdown-li a:after {
  display: none;
}
#header_nav .dropdown .dropdown-li a:hover {
  color: #fff;
  background: #ccc9c9;
}
@media all and (max-width: 1200px) {
  #header_nav {
    width: 550px;
  }
  #header_nav > ul li a {
    font-size: 1.1rem;
    letter-spacing: 0.1em;
  }
  #header_nav > ul li a span {
    font-size: 1.5rem;
  }
}

/* page-top
----------------------------------*/
#page-top {
  position: fixed;
  bottom: 8px;
  right: 8px;
  z-index: 200;
}
#page-top a {
  display: block;
  background: #fff;
  color: #6d6a66;
  border: 1px solid #6d6a66;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  font-size: 1.1rem;
  text-align: center;
}
#page-top a:hover {
  opacity: 0.6;
}
@media all and (max-width: 896px) {
  #page-top {
    bottom: 65px;
  }
}
@media all and (max-width: 639px) {
  #page-top {
    bottom: 72px;
    right: 5px;
  }
  #page-top a {
    width: 30px;
    height: 30px;
    line-height: 28px;
    font-size: 1rem;
  }
}

/* swiper
----------------------------------*/
@keyframes zoom-in {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
@keyframes zoom-out {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.slide-img {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
}
.slide-img:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.slide-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  -o-object-position: center 60%;
     object-position: center 60%;
}
@media all and (max-width: 1200px) {
  .slide-img {
    height: 55vw;
  }
}
@media all and (max-width: 896px) {
  .slide-img {
    height: 48vw;
  }
}
@media all and (max-width: 639px) {
  .slide-img {
    height: 40vh;
  }
}

#slide-wrap {
  position: relative;
  overflow: hidden;
}
#slide-wrap .swiper-pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -50px;
  margin: auto;
}
@media all and (max-width: 896px) {
  #slide-wrap .swiper-pagination {
    bottom: -25px;
  }
}

.top-yama {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 94px;
  z-index: 100;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26385/yama.svg) repeat-x 50%/contain;
}
@media all and (max-width: 1200px) {
  .top-yama {
    height: 55px;
  }
}
@media all and (max-width: 896px) {
  .top-yama {
    height: 20px;
  }
}
@media all and (max-width: 639px) {
  .top-yama {
    height: 18px;
  }
}

/* ページネーションのサイズと色 */
.swiper-pagination-bullet {
  background-color: #CE001D !important;
  height: 10px !important;
  width: 10px !important;
  margin: 0 10px !important;
}
@media all and (max-width: 896px) {
  .swiper-pagination-bullet {
    height: 5px !important;
    width: 5px !important;
    margin: 0 5px !important;
  }
}

#slideshow {
  position: relative;
  width: 100%;
  margin-left: auto;
}
@media all and (max-width: 1200px) {
  #slideshow {
    width: 100%;
  }
}

#slider_sfeuzz_1747269504 .main_slider .swiper-wrapper .swiper-slide .main_slider__inner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom !important;
     object-position: center bottom !important;
}

@media all and (max-width: 639px) {
  #slider_sfeuzz_1747269504.slider_wrapper {
    --swiper-wrapper-height: 55vh !important;
  }
}
#catch {
  position: absolute;
  z-index: 50;
  left: 5%;
  bottom: 5%;
  transition: opacity 2s cubic-bezier(0.18, 0.06, 0.23, 1);
  z-index: 10;
  width: 50%;
  max-width: 750px;
  filter: drop-shadow(0 0 3px rgba(109, 106, 102, 0.5));
}
#catch.on {
  opacity: 1;
  transition: all 2s ease-in;
}
@media all and (max-width: 896px) {
  #catch {
    max-width: 450px;
  }
}
@media all and (max-width: 639px) {
  #catch {
    width: 90%;
  }
}

/*--------------------------------*/
.content {
  position: absolute;
  left: 4%;
  bottom: 7%;
}

._text_box {
  position: relative;
  z-index: 3;
}
._text_box:after {
  content: "";
  background-image: linear-gradient(to bottom, #CE001D, #ec0000);
  width: 8px;
  height: calc(100% + 50px);
  position: absolute;
  left: -2.76%;
  top: 5px;
  transform: translateX(-50%);
  display: block;
  font-weight: 700;
}
@media all and (max-width: 639px) {
  ._text_box:after {
    width: 5px;
    left: -1.76%;
  }
}
._text_box ._inner {
  overflow: hidden;
}
._text_box .top_mv_head {
  line-height: 1;
}
._text_box .top_mv_head span {
  font-size: 13rem;
  color: #CE001D;
  font-weight: 700;
  margin-left: 30px;
}
@media all and (max-width: 1200px) {
  ._text_box .top_mv_head span {
    font-size: 10rem;
    margin-left: 25px;
  }
}
@media all and (max-width: 896px) {
  ._text_box .top_mv_head span {
    font-size: 7rem;
    margin-left: 20px;
  }
}
@media all and (max-width: 639px) {
  ._text_box .top_mv_head span {
    font-size: 5rem;
    margin-left: 15px;
  }
}
._text_box ._bottom {
  margin-top: 0px;
  font-size: 3.5rem;
  color: #fff;
  margin-left: 30px;
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media all and (max-width: 1200px) {
  ._text_box ._bottom {
    font-size: 2.7rem;
    margin-left: 25px;
  }
}
@media all and (max-width: 896px) {
  ._text_box ._bottom {
    font-size: 2rem;
    margin-left: 20px;
  }
}
@media all and (max-width: 639px) {
  ._text_box ._bottom {
    font-size: 1.7rem;
    margin-left: 15px;
  }
}

@keyframes topMvTextBoxBorderMove {
  0% {
    height: 0;
    top: 0;
    transform: translateX(-50%);
  }
  40% {
    height: calc(100% + 50px);
    top: 0;
    transform: translateX(-50%);
  }
  60% {
    height: calc(100% + 50px);
    top: 0;
    transform: translateX(-50%);
  }
  100% {
    height: calc(100% + 50px);
    top: 0;
    transform: translateX(-50%) scale(1, 0);
  }
}
.top_mv ._scroll {
  position: absolute;
  right: 0;
  top: -48px;
  z-index: 2;
  transform: translateX(50%);
}
.top_mv ._scroll img:nth-child(2) {
  position: absolute;
  left: 0;
  top: 0;
  animation: rotate 20s linear infinite;
}
.top_mv._anime .top_mv_right_top:after {
  top: 100%;
  transition: top 0.8s ease-in-out;
}
.top_mv._anime .top_mv_right_top .all_square_anime {
  transform: translateX(0%);
  transition: all 0.4s 0.4s ease;
}
.top_mv._anime .top_mv_right_top .all_square_anime:after {
  transform: scale(0, 1);
  transition: all 0.4s 0.8s ease;
}
.top_mv._anime ._text_box:after {
  height: 0;
  top: calc(100% + 235px);
  transition: top 0.6s 0.2s ease-in-out, height 0.6s 0.2s ease-in-out;
}
.top_mv._anime ._text_box ._top .all_square_anime {
  transform: translateX(0%);
  transition: all 0.4s 0.6s ease;
}
.top_mv._anime ._text_box ._top .all_square_anime:after {
  transform: scale(0, 1);
  transition: all 0.4s 1s ease;
}
.top_mv._anime ._text_box ._bottom .all_square_anime {
  transform: translateX(0%);
  transition: all 0.4s 1s ease;
}
.top_mv._anime ._text_box ._bottom .all_square_anime:after {
  transform: scale(0, 1);
  transition: all 0.4s 1.4s ease;
}
.top_mv._border_anime .top_mv_right_top:after {
  animation: topMvRightBorderMove 3s 1.2s ease infinite;
  transform-origin: bottom center;
}
.top_mv._border_anime ._text_box:after {
  animation: topMvTextBoxBorderMove 3s 1.5s ease infinite;
  transform-origin: bottom center;
}

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

@keyframes scroll-point {
  0% {
    bottom: 0;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  50% {
    top: 180px;
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    top: 210px;
    opacity: 0;
  }
}
/* contact_bnr
----------------------------------*/
.contact_bnr {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.contact_bnr.type1 > li {
  width: 100%;
  margin-bottom: 10px;
}
.contact_bnr.type1 > li a {
  border: 1px solid #fff;
  color: #fff;
}
.contact_bnr > li {
  width: 48%;
}
.contact_bnr > li .contact_txt {
  font-size: 85%;
  text-align: center;
  margin-top: 5px;
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
@media all and (max-width: 639px) {
  .contact_bnr > li {
    width: 90%;
    margin: 0 auto 15px;
  }
  .contact_bnr > li:last-child {
    margin: 0 auto;
  }
}
.contact_bnr > li .bnr_tel {
  white-space: nowrap;
  position: relative;
  font-family: "Barlow", sans-serif;
}
.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:before {
  font-family: "Font Awesome 5 Free";
  content: "\f1ac";
  font-weight: 900;
}
.contact_bnr > li .bnr_mail:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
}
.contact_bnr > li a,
.contact_bnr > li span {
  display: block;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  box-sizing: border-box;
  font-size: 2rem;
  text-align: center;
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 10px;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.contact_bnr > li a:before,
.contact_bnr > li span:before {
  margin-right: 5px;
  position: relative;
  display: inline-block;
}
@media all and (max-width: 639px) {
  .contact_bnr > li a,
  .contact_bnr > li span {
    margin: 0 auto;
    white-space: nowrap;
    padding: 10px;
    width: 100%;
    font-size: 1.5rem;
  }
  .contact_bnr > li a:before,
  .contact_bnr > li span:before {
    font-size: 1.3rem;
    transform: translateY(-2px);
  }
}
.contact_bnr > li a:hover {
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.2);
}
.contact_bnr.footer > li a,
.contact_bnr.footer > li span {
  display: block;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

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

#l-footer {
  position: relative;
  font-size: 1.6rem;
  width: 100%;
}
#l-footer .inner {
  padding: 60px 20px;
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
}
#l-footer .footer-column {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  z-index: 2;
}
#l-footer .footer-column .footer-left {
  width: 42%;
}
#l-footer .footer-column .footer-right {
  width: 55%;
}
@media all and (max-width: 1200px) {
  #l-footer .footer-column {
    justify-content: space-around;
    max-width: 80%;
  }
  #l-footer .footer-column .footer-left {
    width: 100%;
    margin-bottom: 20px;
  }
  #l-footer .footer-column .footer-right {
    width: 100%;
  }
}
@media all and (max-width: 896px) {
  #l-footer .footer-column {
    max-width: 90%;
  }
}
@media all and (max-width: 639px) {
  #l-footer {
    font-size: 1.2rem;
  }
  #l-footer .inner {
    padding: 40px 15px;
  }
  #l-footer .footer-column {
    max-width: 100%;
  }
}

.footer_type02 {
  display: flex;
  position: relative;
  gap: 5% 5%;
  align-items: flex-start;
}
@media all and (max-width: 639px) {
  .footer_type02.res_none {
    display: flex !important;
  }
  .footer_type02.res_none figure {
    max-width: 30%;
  }
}
.footer_type02.reverse {
  flex-direction: row-reverse;
}
.footer_type02.j-center {
  justify-content: center;
}
.footer_type02.a-center {
  align-items: center;
}
.footer_type02 .information {
  max-width: 30%;
  position: relative;
}
.footer_type02 .information .logo {
  margin: 0 0 20px;
}
.footer_type02 .information .logo img {
  max-width: 280px;
}
.footer_type02 .information .address {
  font-size: 95%;
}
.footer_type02 .guidance {
  flex: 1;
}
@media all and (max-width: 896px) {
  .footer_type02 {
    display: block;
  }
  .footer_type02 .information {
    max-width: 100%;
    position: relative;
    text-align: center;
    margin: 0 0 30px;
  }
  .footer_type02 .information .logo img {
    max-width: 200px;
  }
  .footer_type02 .information .address {
    font-size: 100%;
  }
}
.footer_type02.half {
  gap: 0% 0%;
}
.footer_type02.half .figure,
.footer_type02.half figure {
  max-width: 50%;
  width: 50%;
  height: 100%;
  max-height: 50vw;
}
.footer_type02.half .txtarea {
  width: 50%;
  padding: 0px 100px;
}
@media all and (max-width: 1200px) {
  .footer_type02.half .txtarea {
    padding: 0px 50px;
  }
}
@media all and (max-width: 896px) {
  .footer_type02.half {
    display: block;
  }
  .footer_type02.half .figure,
  .footer_type02.half figure {
    max-width: 100%;
    width: 100%;
    height: 100%;
    max-height: 60vw;
  }
  .footer_type02.half .txtarea {
    width: 100%;
    padding: 30px 10px;
  }
}

.footer-bnr-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}
.footer-bnr-list > li {
  width: 48%;
}
.footer-bnr-list > li:nth-child(even) a {
  background: #ccc9c9;
}
.footer-bnr-list > li a {
  text-align: center;
  transition: all 0.3s ease;
  padding: 8px;
  display: block;
  background: #CE001D;
  border-radius: 5px;
  color: #fff;
}
.footer-bnr-list > li a i {
  margin-right: 5px;
}
.footer-bnr-list > li a:hover {
  opacity: 0.8;
}

.map-wrap {
  display: flex;
  flex-wrap: wrap;
}
.map-wrap .access-txt {
  width: 25%;
  min-width: 300px;
  background: #eae9e5;
}
.map-wrap .access-txt .inner {
  padding: 45px 25px;
}
@media all and (max-width: 639px) {
  .map-wrap .access-txt {
    width: 100%;
  }
  .map-wrap .access-txt .inner {
    padding: 30px 15px;
    text-align: left;
  }
}

.map-big {
  height: 350px;
  position: relative;
  z-index: 3;
}
@media all and (max-width: 639px) {
  .map-big {
    height: 250px;
    flex: 0 1 auto;
    width: 100%;
  }
}

/* footer_navi
----------------------------------*/
.footer_navi {
  padding: 0;
  margin: 25px auto 0;
}
.footer_navi ul {
  margin: 0 auto;
  max-width: 400px;
  display: flex;
  flex-wrap: wrap;
}
.footer_navi ul li {
  width: 33.333%;
}
.footer_navi ul li a {
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #6d6a66;
  font-size: 1.2rem;
  display: block;
}
.footer_navi ul li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f068";
  font-weight: 900;
  margin-right: 5px;
  color: #ccc9c9;
}
.footer_navi ul li a span {
  display: none;
}
.footer_navi ul li a:hover {
  opacity: 0.6;
}
.footer_navi ul li .dropdown {
  display: none;
}
.footer_navi ul li .dropdown li {
  margin-bottom: 0;
}
.footer_navi ul li .dropdown li a {
  padding-left: 20px;
  font-size: 1.2rem;
}
.footer_navi ul li .dropdown li a:before {
  content: none;
  margin-right: 0;
}

.footer_navi02 > ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px 24px;
}
@media all and (max-width: 639px) {
  .footer_navi02 > ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px 10px;
  }
  .footer_navi02 > ul .dropdown .dropdown-li a {
    display: none;
  }
}
.footer_navi02 > ul > li > a {
  color: #fff;
  position: relative;
  font-weight: normal;
  font-size: 90%;
  line-height: 1.4;
  border-bottom: 1px solid #ccc;
  display: block;
  padding: 5px 0;
  font-weight: bold;
  /* 
  &:before {
    @include awesome(\f068);
    margin-right: 5px;
    color: #fff;
  } 
  */
}
.footer_navi02 > ul > li > a span {
  display: block;
  color: #fff;
  font-weight: normal;
}
.footer_navi02 > ul > li > a:hover {
  opacity: 0.6;
}
.footer_navi02 > ul .dropdown .dropdown-li a {
  font-size: 80%;
  color: #111;
  padding: 0 0 0 10px;
}
.footer_navi02 > ul .dropdown .dropdown-li a:hover {
  opacity: 0.6;
}
.footer_navi02 > ul.white {
  margin-bottom: 30px;
}
.footer_navi02 > ul.white ul {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  text-align: center;
}
.footer_navi02 > ul.white ul li a {
  color: #fff;
}
.footer_navi02 > ul.white ul li a:before {
  color: #fff;
}

.flogo {
  max-width: 100px;
  width: 100%;
  position: relative;
  z-index: 5;
  margin: 0 auto 20px;
  text-align: center;
}

.annex a {
  display: block;
  max-width: 320px;
  padding: 8px 15px;
  background: #222;
}
@media all and (max-width: 896px) {
  .annex a {
    margin: 0 auto 20px;
  }
}

.copyright {
  background: #CE001D;
  color: #fff;
  padding: 20px 0;
  font-size: 1.2rem;
  z-index: 2;
  text-align: center;
}
@media all and (max-width: 896px) {
  .copyright {
    font-size: 12px;
    padding: 15px 0 77px;
  }
}

.address {
  text-align: center;
  font-size: 13px;
  line-height: 1.6;
}
@media all and (max-width: 896px) {
  .address {
    font-size: 12px;
  }
}

/*----------------------------------
 top-contents
----------------------------------*/
.top-gray-box {
  position: relative;
}
.top-gray-box:before {
  position: absolute;
  content: "";
  z-index: -2;
  width: 70%;
  height: 100%;
  top: -4%;
  left: 0;
  background-image: linear-gradient(to right, #ccc9c9, #f6f6f6);
  opacity: 0.7;
}

.title-big {
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 3rem;
  color: #6d6a66;
  margin-bottom: 35px;
}
@media all and (max-width: 896px) {
  .title-big {
    font-size: 2.8rem;
    margin-bottom: 25px;
  }
}
@media all and (max-width: 639px) {
  .title-big {
    font-size: 1.8rem;
  }
}

.title-big2 {
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  top: 1%;
  font-size: 4rem;
  z-index: 1;
  color: #fff;
}
@media all and (max-width: 896px) {
  .title-big2 {
    font-size: 2rem;
  }
}
@media all and (max-width: 639px) {
  .title-big2 {
    font-size: 1.8rem;
  }
}

.title-big3 {
  margin: 0 0 35px;
  position: relative;
  z-index: 3;
}
.title-big3 span {
  display: block;
  line-height: 1.4;
  padding: 0 10px;
}
.title-big3 span.eng {
  color: #CE001D;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  font-size: 6.5rem;
}
@media all and (max-width: 639px) {
  .title-big3 span.eng {
    font-size: 4rem;
  }
}
.title-big3 span.ja {
  font-size: 2.4rem;
  position: relative;
  z-index: 2;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #221515;
}
@media all and (max-width: 639px) {
  .title-big3 span.ja {
    font-size: 1.8rem;
  }
}
.title-big3.white span {
  color: #fff;
}

.title-sen {
  color: #CE001D;
  line-height: 1.5;
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 700;
  position: relative;
  text-align: center;
}
.title-sen.type1 {
  font-size: 3.2rem;
  font-weight: 700;
}
.title-sen span {
  padding: 10px 40px;
  background-color: #fff;
  font-size: 2rem;
  color: #221515;
  display: inline-block;
}
.title-sen span strong {
  font-size: 5rem;
  color: #CE001D;
}
.title-sen:before {
  border-top: 2px solid;
  content: "";
  flex-grow: 1;
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  z-index: -1;
}
.title-sen.white {
  color: #fff;
}
.title-sen.brown {
  color: #87847f;
}
.title-sen.sbc {
  color: #c0bcbc;
}
@media all and (max-width: 1200px) {
  .title-sen {
    font-size: 2.8rem;
  }
}
@media all and (max-width: 896px) {
  .title-sen {
    font-size: 2.4rem;
  }
}
@media all and (max-width: 639px) {
  .title-sen {
    font-size: 7.5vw;
  }
  .title-sen:before, .title-sen:after {
    border-top: 2px solid;
  }
  .title-sen.type1 {
    padding-top: 20px;
    font-size: 7.3vw;
  }
}

.title01 {
  line-height: 1.4;
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 2.3rem;
  margin-bottom: 20px;
  color: #221515;
  text-align: center;
}
.title01 span {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  color: #CE001D;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em;
}
@media all and (max-width: 639px) {
  .title01 {
    font-size: 1.4rem;
  }
  .title01 span {
    font-size: 1.43em;
  }
}
.title01.white {
  color: #fcfcfc;
}
.title01.white span {
  color: #fff;
}

.title02 {
  font-size: 1.4rem;
  font-weight: 700;
  padding-bottom: 5px;
  margin-bottom: 10px;
}
.title02 span {
  background: #fff;
  padding: 4px 8px;
  color: #CE001D;
  border: 1px solid #CE001D;
}
@media all and (max-width: 639px) {
  .title02 {
    font-size: 1.2rem;
  }
}

.title03 {
  color: #6d6a66;
  padding: 8px 15px;
  font-weight: 600;
  margin-top: 10px;
  font-size: 1.8rem;
  margin-bottom: 35px;
  position: relative;
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.title03 span {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #e8e4de;
  margin-right: 8px;
}
@media all and (max-width: 639px) {
  .title03 {
    font-size: 1.4rem;
  }
}
.title03:before, .title03:after {
  position: absolute;
  content: "";
  left: 0;
  height: 6px;
}
.title03:before {
  width: 40%;
  top: -6px;
  background: #ccc9c9;
}
.title03:after {
  width: 65%;
  bottom: -6px;
  background: #CE001D;
}

.title04 {
  position: relative;
  margin-bottom: 35px;
  border-left: 2px solid #CE001D;
}
.title04 .eng {
  font-size: 1.6rem;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em;
  letter-spacing: 0.2em;
  line-height: 1.6;
  color: #CE001D;
  display: block;
  text-transform: uppercase;
  padding-left: 20px;
}
.title04 .ja {
  font-size: 3.2rem;
  color: #221515;
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding-left: 10px;
}
.title04 .ja mn {
  font-size: 1.8rem;
}
.title04.type1 .eng {
  color: #ccc9c9;
}
.title04.white .ja,
.title04.white .eng {
  color: #fff;
}
@media all and (max-width: 896px) {
  .title04 {
    margin-bottom: 30px;
  }
  .title04 .eng {
    font-size: 1.15rem;
  }
  .title04 .ja {
    font-size: 1.6rem;
  }
  .title04 .ja mn {
    font-size: 1.3rem;
  }
}

/* --news--
----------------------------------*/
.news-box {
  margin: 0 auto 0;
  max-width: 1000px;
  width: 95%;
  position: relative;
  z-index: 10;
  display: flex;
  border-radius: 10px;
}
@media all and (max-width: 639px) {
  .news-box {
    flex-direction: column;
  }
}

.news-title {
  position: relative;
  text-align: center;
}
.news-title span {
  display: block;
  line-height: 1.5;
  color: #CE001D;
}
.news-title.white span {
  color: #fff;
}
.news-title .eng {
  position: relative;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 3rem;
}
.news-title .ja {
  position: relative;
  font-size: 1.6rem;
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media all and (max-width: 639px) {
  .news-title {
    margin-bottom: 15px;
  }
  .news-title .eng {
    font-size: 2rem;
  }
  .news-title .ja {
    font-size: 1.3rem;
  }
}

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

.topic-dl .topic-inner {
  display: flex;
  position: relative;
  padding: 10px 0;
}
.topic-dl .topic-inner dt {
  width: 7em;
  font-size: 1.6rem;
  font-weight: 700;
  color: #222;
}
.topic-dl .topic-inner dt img {
  margin-right: 7px;
}
@media all and (max-width: 639px) {
  .topic-dl .topic-inner dt {
    font-size: 12px;
    width: 6em;
  }
}
.topic-dl .topic-inner dd {
  padding-left: 20px;
  width: calc(100% - 8em);
}
.topic-dl .topic-inner dd a {
  font-weight: 600;
}
.topic-dl .topic-inner dd a:hover {
  color: #CE001D;
}
@media all and (max-width: 639px) {
  .topic-dl .topic-inner dd {
    padding-left: 11px;
    width: calc(100% - 7em);
  }
}
@media all and (max-width: 639px) {
  .topic-dl {
    padding-bottom: 40px;
  }
}

.top-bg {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26385/top-bg01.jpg) no-repeat center/cover;
  background-attachment: fixed;
  height: 400px;
}
@media all and (max-width: 1200px) {
  .top-bg {
    background-attachment: scroll;
  }
}

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

/* contents
----------------------------------*/
.single {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 0;
  position: relative;
}
@media all and (max-width: 1200px) {
  .single {
    padding: 120px 10px;
  }
}
.single.type1 {
  padding: 120px 0 0;
}
@media all and (max-width: 639px) {
  .single.type1 {
    padding: 40px 10px 0;
  }
}

.single02 {
  margin: 0 auto;
  padding: 120px 0;
}
@media all and (max-width: 1200px) {
  .single02 {
    width: 100%;
    padding: 120px 10px;
  }
}
.single02.type1 {
  padding: 120px 0 0;
}
@media all and (max-width: 639px) {
  .single02.type1 {
    padding: 40px 10px 0;
  }
}

.single03 {
  max-width: 1500px;
  margin: 0 auto;
  padding: 120px 10px;
  position: relative;
}
@media all and (max-width: 1200px) {
  .single03 {
    padding: 120px 10px;
  }
}

.single.phalf,
.single02.phalf,
.single03.phalf,
.single04.phalf {
  padding: 40px 0;
}
@media all and (max-width: 1200px) {
  .single.phalf,
  .single02.phalf,
  .single03.phalf,
  .single04.phalf {
    padding: 40px 10px;
  }
}
@media all and (max-width: 896px) {
  .single.phalf,
  .single02.phalf,
  .single03.phalf,
  .single04.phalf {
    padding: 20px 0;
  }
}

.single04 {
  position: relative;
  margin: 0 auto;
  padding: 120px 0;
  max-width: calc(100% - 120px);
}
.single04.inner {
  z-index: 2;
}
@media all and (max-width: 896px) {
  .single04 {
    max-width: calc(100% - 40px);
    padding: 40px 0;
  }
}

.padding-top {
  padding-top: 120px;
}
@media all and (max-width: 896px) {
  .padding-top {
    padding-top: 40px;
  }
}

.margin-top {
  margin-top: -120px;
}
@media all and (max-width: 896px) {
  .margin-top {
    margin-top: -40px;
  }
}

.margin-top2 {
  margin-top: -40px;
}
@media all and (max-width: 896px) {
  .margin-top2 {
    margin-top: -20px;
  }
}

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

.lsingle {
  float: left;
}

.rsingle {
  float: right;
}

.mbox {
  background: #fefefe;
  padding: 30px;
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
.mbox.wk {
  border: 1px solid #ccc9c9;
}
.mbox.sd {
  box-shadow: 0 0 8px rgba(109, 106, 102, 0.1);
}
.mbox.filter {
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.mbox.transparent {
  background: transparent;
}
@media all and (max-width: 639px) {
  .mbox {
    padding: 15px;
  }
}

.mbox2 {
  background: rgba(109, 106, 102, 0.1);
  padding: 30px;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
@media all and (max-width: 639px) {
  .mbox2 {
    padding: 15px;
  }
}

.mbox3 {
  position: relative;
  background: #fefefe;
  border-top: 5px solid #CE001D;
  padding: 30px;
  z-index: 3;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
@media all and (max-width: 639px) {
  .mbox3 {
    padding: 15px;
  }
}

.top-mbox {
  background: #fefefe;
  padding: 30px;
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  margin-top: -120px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.small-box {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}
.small-box.type1 {
  max-width: 800px;
}
.small-box.type2 {
  max-width: 650px;
}

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

.sentence2 p + p {
  margin-top: 12px;
}

.bg-grid {
  /* border-top: 1px solid #555;
  border-bottom: 1px solid #555;*/
  background-image: linear-gradient(90deg, transparent 95%, rgba(204, 204, 204, 0.2) 50%, rgba(204, 204, 204, 0.2)), linear-gradient(0deg, transparent 95%, rgba(204, 204, 204, 0.2) 50%, rgba(204, 204, 204, 0.2));
  background-size: 20px 20px;
  background-repeat: repeat;
  position: relative;
}
.bg-grid:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #f6f6f6;
  z-index: -1;
  opacity: 0.4;
}

.bg-grid2 {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26385/grid2.png) repeat;
}
.bg-grid2.type1 {
  border: 10px solid #CE001D;
}
@media all and (max-width: 639px) {
  .bg-grid2.type1 {
    border: 5px solid #CE001D;
  }
}

.bg-movie {
  border: 10px solid #e8e4de;
}
@media all and (max-width: 639px) {
  .bg-movie {
    border-top: 5px solid #e8e4de;
    border-bottom: 5px solid #e8e4de;
    border-left: 0px solid #e8e4de;
    border-right: 0px solid #e8e4de;
  }
}

.bg-title {
  position: relative;
  height: 450px;
}
.bg-title: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/26385/bg-title.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  filter: hue-rotate(351deg);
}
@media all and (max-width: 896px) {
  .bg-title {
    height: 300px;
  }
  .bg-title:before {
    background-attachment: scroll;
  }
}

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

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

/* mtitle
----------------------------------*/
.mtitle-mini {
  text-align: center;
}
.mtitle-mini .eng {
  font-size: 1.2rem;
  color: #CE001D;
  position: relative;
  z-index: 2;
  display: block;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.mtitle {
  margin: 0 auto 35px;
  position: relative;
  text-align: center;
}
.mtitle .eng {
  font-size: 5rem;
  color: #CE001D;
  position: relative;
  z-index: 2;
  display: block;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
  background: linear-gradient(30deg, #CE001D 0%, #ff5353 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
}
.mtitle .ja {
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 2;
  font-size: 2.2rem;
  color: #221515;
}
.mtitle.sbc span.eng {
  color: #ccc9c9;
}
.mtitle.white {
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
.mtitle.white span {
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
.mtitle.white span.eng {
  color: #fff;
}
.mtitle.white span.ja {
  border-bottom-color: #fefefe;
}
.mtitle.mtitle_left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .mtitle {
    text-align: center;
    margin: 0 auto 30px;
  }
  .mtitle .eng {
    font-size: 2.4rem;
  }
  .mtitle .ja {
    font-size: 1.6rem;
  }
}

.mtitle2 {
  position: relative;
  margin-bottom: 50px;
}
.mtitle2.type1 {
  margin: -40px 0 20px 10px;
  position: relative;
  z-index: 4;
}
.mtitle2.sbc .eng {
  background: #ccc9c9;
}
.mtitle2 span {
  display: inline-block;
  padding: 3px 8px;
}
.mtitle2 .eng {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em;
  font-size: 1.6rem;
  text-transform: inherit;
  color: #CE001D;
  background: #CE001D;
  color: #fff;
}
.mtitle2 .ja {
  font-size: 2rem;
  background: #fff;
  color: #CE001D;
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media all and (max-width: 639px) {
  .mtitle2 .eng {
    font-size: 1.3rem;
  }
  .mtitle2 .ja {
    font-size: 1.5rem;
  }
}

.mtitle3 {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-feature-settings: "pkna";
  position: absolute;
  min-height: 100px;
  top: 0;
  left: 0;
}
.mtitle3 .ja {
  display: block;
  font-size: 2.4rem;
  color: #6d6a66;
  letter-spacing: 0.2em;
  line-height: 1.6;
}
.mtitle3 .eng {
  display: block;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em;
  font-size: 2rem;
  color: #d3cbc0;
}
@media all and (max-width: 639px) {
  .mtitle3 {
    writing-mode: inherit;
    position: static;
    margin-bottom: 20px;
    min-height: initial;
    min-height: auto;
  }
  .mtitle3.type1 {
    text-align: center;
  }
  .mtitle3 .ja {
    font-size: 1.7rem;
  }
  .mtitle3 .eng {
    font-size: 1.4rem;
  }
}

.mtitle_middle {
  position: relative;
  margin-bottom: 24px;
  padding: 0 0 4px 1em;
  border-bottom: 1px dotted #cdc19e;
  font-size: 1.3em;
  font-weight: 600;
}
.mtitle_middle:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 2px;
  transform: translateY(-50%);
  height: 100%;
  background: #CE001D;
}
.mtitle_middle.white:before {
  content: "";
  position: absolute;
  top: 15%;
  left: 0;
  width: 2px;
  height: 50%;
  background: #ccc9c9;
}
.mtitle_middle a {
  color: #221515;
}
.mtitle_middle a:hover {
  color: #ccc9c9;
}
@media all and (max-width: 639px) {
  .mtitle_middle {
    font-size: 1.1em;
    margin-bottom: 13px;
  }
}

.mtitles {
  margin-bottom: 15px;
}
.mtitles .eng {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: inherit;
  color: #CE001D;
  font-size: 3.2rem;
  margin-right: 10px;
}
.mtitles .ja {
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #6d6a66;
  font-size: 1.6rem;
}
@media all and (max-width: 639px) {
  .mtitles {
    margin-bottom: 10px;
  }
  .mtitles .eng {
    font-size: 2.2rem;
  }
  .mtitles .ja {
    font-size: 1.3rem;
  }
}

.mtitle_line {
  position: relative;
  margin-bottom: 20px;
  color: #6d6a66;
  border-top: 2px solid rgba(206, 0, 29, 0.6);
  font-size: 1.8rem;
  padding: 6px 10px 16px;
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.mtitle_line span {
  font-size: 1.4rem;
  color: #CE001D;
  margin-left: 10px;
}
.mtitle_line:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  content: "";
  opacity: 0.5;
  background-image: repeating-linear-gradient(-45deg, #CE001D, #CE001D 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  backface-visibility: hidden;
}
@media all and (max-width: 639px) {
  .mtitle_line {
    font-size: 1.4rem;
  }
  .mtitle_line span {
    font-size: 12px;
  }
}

.mtitle_balloon {
  font-size: 2.4rem;
  margin-bottom: 15px;
  font-weight: 700;
}
.mtitle_balloon span {
  position: relative;
  display: inline-block;
  padding-bottom: 18px;
  line-height: 1.3em;
  overflow: hidden;
  line-height: 1.8;
}
.mtitle_balloon span.eng {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em;
  font-size: 5rem;
}
.mtitle_balloon span:before, .mtitle_balloon span:after {
  content: "";
  display: block;
  border-bottom: 3px solid #333;
  position: absolute;
  width: 50%;
  bottom: 6px;
}
.mtitle_balloon span:before {
  left: -5px;
}
.mtitle_balloon span:after {
  right: -5px;
}
.mtitle_balloon span i {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 3px solid #333;
  transform: rotate(135deg);
  position: absolute;
  left: 50%;
  margin-left: -5px;
  bottom: 2px;
}
.mtitle_balloon.center {
  text-align: center;
}
.mtitle_balloon.white span:before, .mtitle_balloon.white span:after {
  border-bottom-color: #fefefe;
}
.mtitle_balloon.white span i {
  border-color: #fefefe;
}
@media all and (max-width: 639px) {
  .mtitle_balloon {
    font-size: 1.7rem;
  }
  .mtitle_balloon span.eng {
    font-size: 2.4rem;
  }
}

.mtitle-bll {
  font-size: 1.7rem;
  font-weight: 700;
  border-bottom: 2px solid #eeeeee;
  position: relative;
  margin-bottom: 15px;
  line-height: 1.5;
  padding-bottom: 8px;
}
.mtitle-bll:after {
  position: absolute;
  content: "";
  display: block;
  bottom: -2px;
  width: 100px;
  height: 2px;
  background: #CE001D;
}
@media all and (max-width: 639px) {
  .mtitle-bll {
    font-size: 1.6rem;
  }
}

.mtitle4 {
  font-weight: normal;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.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: 2px;
  height: 1.6rem;
  background-color: #ccc9c9;
}
.mtitle4 span:before {
  left: -15px;
  transform: rotate(-25deg);
}
.mtitle4 span:after {
  right: -15px;
  transform: rotate(25deg);
}
.mtitle4.white span:before, .mtitle4.white span:after {
  background-color: #fdd000;
}
@media all and (max-width: 639px) {
  .mtitle4 {
    font-size: 1.4rem;
  }
}
@media all and (max-width: 320px) {
  .mtitle4 span:before {
    left: -5px;
  }
  .mtitle4 span:after {
    right: -5px;
  }
}

.mtitle_sub {
  padding-left: 0.5em;
  font-weight: 600;
  position: relative;
  border-left: 6px solid #CE001D;
  margin-bottom: 8px;
  color: #6d6a66;
  line-height: 1.6;
  text-align: left;
  font-size: 1.6rem;
}
.mtitle_sub span {
  color: #CE001D;
  padding-left: 5px;
  font-size: 0.9em;
}
.mtitle_sub:before {
  position: absolute;
  left: -6px;
  bottom: 0;
  content: "";
  width: 6px;
  height: 50%;
  background-color: #ccc9c9;
}
@media all and (max-width: 639px) {
  .mtitle_sub {
    font-size: 1.3rem;
  }
}

.mtitle_point {
  position: relative;
  margin-bottom: 30px;
  font-size: 2rem;
  text-align: center;
  line-height: 1.6;
  color: #221515;
  font-weight: 600;
}
.mtitle_point span {
  font-size: 3rem;
}
.mtitle_point:after {
  content: "";
  width: 100px;
  height: 3px;
  background: #CE001D;
  display: block;
  margin: 10px auto 0;
}
@media all and (max-width: 639px) {
  .mtitle_point {
    font-size: 1.5rem;
  }
  .mtitle_point span {
    font-size: 1.8rem;
  }
}

.mtitle_box {
  background: #CE001D;
  color: #fff;
  font-size: 1.6rem;
  position: relative;
  padding: 15px 30px 15px 15px;
  margin-bottom: 20px;
  line-height: 1.4;
  display: flex;
  align-items: center;
  border-radius: 3px;
}
.mtitle_box.type1 {
  background-color: #6d6a66;
}
@media all and (max-width: 639px) {
  .mtitle_box {
    font-size: 1.3rem;
    display: block;
  }
  .mtitle_box .profile {
    display: block;
    padding: 4px 0 0;
  }
}

.mtitle_box2 {
  background: #CE001D;
  font-size: 2.2rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 15px 10px 15px 20px;
  margin-bottom: 25px;
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.mtitle_box2 .small-cap {
  font-weight: normal;
  font-size: 14px;
}
.mtitle_box2:before {
  background-color: #ccc9c9;
  content: "";
  display: block;
  transform: rotate(60deg);
  position: absolute;
  bottom: -10px;
  right: -150px;
  width: 300px;
  height: 280px;
}
@media all and (max-width: 639px) {
  .mtitle_box2 {
    font-size: 15px;
    line-height: 1.5;
    padding: 10px 10px 10px 15px;
    padding-right: 40px;
  }
  .mtitle_box2 span {
    font-size: 12px;
  }
  .mtitle_box2:before {
    width: 215px;
    right: -170px;
  }
}

.mtitle_box3 {
  background: #EFEFEE;
  color: #221515;
  font-size: 2.2rem;
  padding: 15px 5px;
  margin-bottom: 10px;
  text-align: center;
}
.mtitle_box3.type1 {
  background-color: #221515;
  color: #fff;
}
.mtitle_box3.type2 {
  background: #eee5b6;
}
.mtitle_box3.type3 {
  background: #c9e5cf;
}
.mtitle_box3.type4 {
  background: #efd0a8;
}
.mtitle_box3.type5 {
  background: #c5efef;
}
@media all and (max-width: 639px) {
  .mtitle_box3 {
    font-size: 1.4rem;
  }
}

.mtext0 {
  font-size: 1.6rem;
}
.mtext0.type1 {
  color: #777;
  text-align: center;
  letter-spacing: 0.2em;
  margin: 20px auto;
}
@media all and (max-width: 639px) {
  .mtext0 {
    font-size: 1.3rem;
  }
  .mtext0.type1 {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
  }
}

.mtext1 {
  font-size: 2rem;
  line-height: 1.6;
}
.mtext1.type1 {
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 30px;
  color: #6d6a66;
}
@media all and (max-width: 639px) {
  .mtext1 {
    font-size: 1.5rem;
  }
}

.mtext2 {
  font-size: 2.8rem;
}
@media all and (max-width: 639px) {
  .mtext2 {
    font-size: 2rem;
  }
}

.mtext3 {
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 2.4rem;
  text-align: center;
  color: #ff0226;
}
@media all and (max-width: 639px) {
  .mtext3 {
    font-size: 1.8rem;
  }
}

.txt-num {
  text-align: center;
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 1.8rem;
  color: #6d6a66;
}
.txt-num span {
  font-size: 2.8rem;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #9b0016;
  margin-right: 10px;
}
@media all and (max-width: 639px) {
  .txt-num {
    font-size: 1.4rem;
  }
  .txt-num span {
    font-size: 2rem;
  }
}

.mtitle_category {
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.mtitle_category:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0ca";
  font-weight: 900;
  margin-right: 5px;
  color: #CE001D;
}
.mtitle_category.new:before {
  font-family: "Font Awesome 5 Free";
  content: "\f044";
  font-weight: 900;
}
@media all and (max-width: 639px) {
  .mtitle_category {
    font-size: 1.4rem;
  }
}

/* btn
----------------------------------*/
.btn-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-wrap p:first-of-type {
  margin-right: 25px;
}
@media all and (max-width: 639px) {
  .btn-wrap p:first-of-type {
    margin: 0 auto;
  }
}
@media all and (max-width: 639px) {
  .btn-wrap {
    display: block;
  }
}

/*矢印が右に移動する*/
.btn04 {
  text-align: center;
}
.btn04.type-right {
  text-align: right;
}
.btn04 a {
  /*矢印と下線の基点とするためrelativeを指定*/
  position: relative;
  /*形状*/
  display: inline-block;
  padding: 0 20px;
  color: #333;
  text-decoration: none;
  outline: none;
}
.btn04 a:before {
  content: "";
  /*絶対配置で下線の位置を決める*/
  position: absolute;
  bottom: -8px;
  left: 15%;
  /*下線の形状*/
  width: 85%;
  height: 1px;
  background: #333;
  /*アニメーションの指定*/
  transition: all 0.3s;
}
.btn04 a:after {
  content: "";
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  bottom: -3px;
  right: 0;
  /*矢印の形状*/
  width: 15px;
  height: 1px;
  background: #333;
  transform: rotate(35deg);
  /*アニメーションの指定*/
  transition: all 0.3s;
}
.btn04 a:hover:before {
  left: 20%;
}
.btn04 a:hover:after {
  right: -5%;
}

.btn_base {
  font-size: 1.4rem;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  position: relative;
  z-index: 1;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}
.btn_base.btn_biyo-n01 {
  overflow: hidden;
  padding: 1rem 6rem;
  color: #fff;
  border-radius: 0;
  background: #ccc9c9;
  border-radius: 20px;
  box-shadow: 3px 3px 7px rgba(143, 92, 0, 0.4784313725);
}
.btn_base.btn_biyo-n01 span {
  position: relative;
}
.btn_base.btn_biyo-n01::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  content: "";
  transition: all 0.5s ease-in-out;
  transform: translateX(-80%) translateY(-25px);
  z-index: -1;
  border-radius: 50%;
  background: #f39b41;
}
.btn_base.btn_biyo-n01:hover {
  color: #fff;
}
.btn_base.btn_biyo-n01:hover::before {
  width: 400px;
  height: 400px;
  transform: translateX(-1%) translateY(-175px);
}

.btn01 a {
  text-align: center;
  width: 300px;
  max-width: 100%;
  margin: 20px auto;
  color: #fff;
  display: block;
  padding: 8px 5px;
  background: #CE001D;
  border: 2px solid #CE001D;
  border-radius: 35px;
  font-weight: bold;
}
.btn01 a:hover {
  background: #fff;
  color: #CE001D;
}
.btn01.type1 a {
  background: #fdd000;
  border: 2px solid #fdd000;
  color: #ccc9c9;
}
.btn01.type1 a:hover {
  background: #fff;
  color: #ccc9c9;
}
.btn01.mail {
  flex-basis: 100%;
}
.btn01.mail a {
  background: #fdd000;
  margin: 15px auto 25px;
}
.btn01.mail a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 5px;
}
@media all and (max-width: 639px) {
  .btn01 a {
    width: 95%;
  }
}

.btn02 {
  max-width: 280px;
  width: 90%;
  margin: 20px auto 0;
}
.btn02 a {
  display: block;
  position: relative;
  padding: 15px 0;
  background-color: #fdfdfc;
  border: 1px solid #6d6a66;
  line-height: 24px;
  text-align: center;
  color: #6d6a66;
}
.btn02 a i {
  display: block;
  position: absolute;
  top: 50%;
  right: -10px;
  width: 45px;
  height: 1px;
  background-color: #6d6a66;
  transition: all 0.3s ease;
}
.btn02 a:hover i {
  width: 30px;
}

.btn03 {
  max-width: 480px;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}
.btn03.left {
  margin-left: 0;
}
.btn03 a {
  display: block;
  position: relative;
  padding: 15px 5px;
  background: #CE001D;
  border: 1px solid #CE001D;
  text-align: center;
  color: #fff;
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}
.btn03 a span {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.btn03 a:after {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  margin-left: 10px;
}
.btn03 a:hover {
  background: #fff;
  color: #6d6a66;
}
.btn03.type1 a {
  background: #fff;
  border: 1px solid #fff;
  color: #ccc9c9;
}
.btn03.type1 a:hover {
  background: #ccc9c9;
  color: #fff;
}

.btn_wk a {
  letter-spacing: 0.2em;
  text-align: center;
  position: relative;
  color: #555;
  background: #fff;
  border: 1px solid #555;
  padding: 6px 10px;
  max-width: 180px;
  width: 80%;
  margin-top: 35px;
  margin-bottom: 5px;
  margin-left: auto;
  margin-right: auto;
  display: table;
  transition: all 0.3s ease-in-out;
}
.btn_wk a span {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.btn_wk a i {
  font-size: 90%;
  margin-right: 5px;
}
.btn_wk a:before, .btn_wk a:after {
  content: "";
  position: absolute;
  border: solid #555;
  width: 10px;
  height: 10px;
  transition: all 0.3s ease-in-out;
}
.btn_wk a:before {
  top: -6px;
  left: -6px;
  border-width: 1px 0 0 1px;
}
.btn_wk a:after {
  bottom: -6px;
  right: -6px;
  border-width: 0 1px 1px 0;
}
.btn_wk a:hover {
  color: #fff;
  background: #CE001D;
  border-color: transparent;
}
.btn_wk a:hover:before, .btn_wk a:hover:after {
  width: calc(100% + 11px);
  height: calc(100% + 11px);
  border-color: #CE001D;
}
.btn_wk.sbc a:hover {
  color: #fff;
  background: #ccc9c9;
}
.btn_wk.sbc a:hover:before, .btn_wk.sbc a:hover:after {
  border-color: #ccc9c9;
}
.btn_wk.btn-r a {
  margin-right: 5px;
}

.btn_wk2 a {
  letter-spacing: 0.2em;
  text-align: center;
  position: relative;
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
  padding: 6px 10px;
  max-width: 180px;
  width: 80%;
  margin-top: 35px;
  margin-bottom: 5px;
  margin-left: auto;
  margin-right: auto;
  display: table;
  transition: all 0.3s ease-in-out;
}
.btn_wk2 a span {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.btn_wk2 a i {
  font-size: 90%;
  margin-right: 5px;
}
.btn_wk2 a:before, .btn_wk2 a:after {
  content: "";
  position: absolute;
  border: solid #fff;
  width: 10px;
  height: 10px;
  transition: all 0.3s ease-in-out;
}
.btn_wk2 a:before {
  top: -6px;
  left: -6px;
  border-width: 1px 0 0 1px;
}
.btn_wk2 a:after {
  bottom: -6px;
  right: -6px;
  border-width: 0 1px 1px 0;
}
.btn_wk2 a:hover {
  background: #CE001D;
  border-color: transparent;
}
.btn_wk2 a:hover:before, .btn_wk2 a:hover:after {
  width: calc(100% + 11px);
  height: calc(100% + 11px);
  border-color: #CE001D;
}
.btn_wk2.btn-r a {
  margin-right: 5px;
}

.btns {
  margin-top: 15px;
  margin-bottom: 15px;
}
.btns a {
  display: table;
  width: auto;
  margin-left: auto;
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #6d6a66;
  border-bottom: 2px solid #CE001D;
  padding: 5px;
  font-size: 1.3rem;
}
.btns a:after {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  margin-left: 5px;
  font-weight: 600;
}
.btns a:hover {
  border-bottom: 2px solid #ccc9c9;
}

/* news
----------------------------------*/
.news .news-inner {
  display: flex;
  flex-wrap: wrap;
  padding: 18px 6px;
  border-top: 1px solid #ccc;
}
.news .news-inner:last-of-type {
  border-bottom: 1px solid #ccc;
}
@media all and (max-width: 639px) {
  .news .news-inner {
    padding: 12px 4px;
  }
}
.news dt {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  width: 7em;
}
@media all and (max-width: 639px) {
  .news dt {
    width: 6em;
  }
}
.news dd a {
  font-weight: 500;
  color: #6d6a66;
  font-size: 90%;
}
.news dd a:hover {
  opacity: 0.7;
}
@media all and (max-width: 639px) {
  .news dd {
    line-height: 1.4;
  }
}

.news-bl {
  overflow: hidden;
}
.news-bl dt {
  float: left;
  width: 8em;
  padding: 5px;
  line-height: 1.3;
  color: #CE001D;
  text-align: center;
  border: 1px solid #CE001D;
  border-radius: 30px;
  background: #fefefe;
  font-size: 1.3rem;
}
@media all and (max-width: 639px) {
  .news-bl dt {
    font-size: 12px;
  }
}
.news-bl dd {
  padding: 0 0 12px 9.2em;
  line-height: 1.6;
  border-bottom: 1px dotted #dddddd;
  margin: 0 0 10px;
}
.news-bl dd a {
  color: #6d6a66;
  background-image: linear-gradient(to right, #CE001D, #CE001D);
  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: 700;
}
.news-bl dd a:hover {
  background-position: 0 100%;
  background-size: 100% 1px;
}
.news-bl dd:last-child {
  margin: 0;
  border-bottom: none;
}
@media all and (max-width: 639px) {
  .news-bl dt {
    float: none;
    width: 180px;
  }
  .news-bl dd {
    padding: 8px 5px;
    text-align: left;
  }
}

.news-bl2 {
  overflow: hidden;
  padding: 10px 0;
}
.news-bl2 dt {
  float: left;
  width: 7em;
  color: #6d6a66;
}
.news-bl2 dd {
  padding: 0 0 10px 7.5em;
  line-height: 1.6;
  border-bottom: 1px solid #ccc;
  margin: 0 0 10px;
}
.news-bl2 dd a {
  color: #6d6a66;
}
.news-bl2 dd a:hover {
  color: #CE001D;
}
.news-bl2 dd:last-child {
  margin: 0;
  border-bottom: none;
}
@media all and (max-width: 639px) {
  .news-bl2 dt {
    float: none;
    width: 180px;
  }
  .news-bl2 dd {
    padding: 8px 5px;
    text-align: left;
  }
}

/* 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/26385/page-title.jpg) no-repeat center 35%/cover;
  overflow: hidden;
}
.page-title:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #000;
  opacity: 0.6;
}
.page-title.type1 {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26385/page-title2.jpg) no-repeat center 85%/cover;
}
.page-title .inner {
  margin: 0 auto;
  padding: 180px 0 80px;
  max-width: 1200px;
}
.page-title .page-lead {
  position: relative;
  text-align: center;
  color: #6d6a66;
  text-shadow: 0 0 4px rgba(109, 106, 102, 0.1);
  line-height: 1.5;
}
.page-title .page-lead span {
  display: block;
  color: #fff;
}
.page-title .page-lead .ja {
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 3rem;
}
.page-title .page-lead .eng {
  font-size: 5rem;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media all and (max-width: 896px) {
  .page-title .inner {
    width: 100%;
    padding: 90px 0 35px;
  }
  .page-title .page-lead .ja {
    font-size: 1.6rem;
  }
  .page-title .page-lead .eng {
    font-size: 2rem;
  }
}

.bg-mori {
  position: relative;
}
.bg-mori: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/26385/ita.jpg) no-repeat 50%/cover;
  filter: brightness(0.4);
}

.bg-footer {
  position: relative;
}
.bg-footer: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/26385/footer.jpg) no-repeat 50% 40%/cover;
  filter: brightness(0.5);
  z-index: -1;
}

.bg-kikori {
  position: relative;
}
.bg-kikori:before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26385/nenrin.png);
  left: -7%;
  top: 0;
  filter: brightness(0.5);
  opacity: 0.1;
}

.bg-greet {
  position: relative;
}
.bg-greet:before, .bg-greet:after {
  content: "";
  position: absolute;
  width: 350px;
  height: 280px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url(../img/1.jpg);
  filter: invert(1);
  top: 10%;
}
.bg-greet.type1:before {
  content: "";
  position: absolute;
  width: 400px;
  left: 0;
  height: 300px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url(../img/1.jpg);
  filter: invert(0);
  top: 40%;
}
.bg-greet.type1:after {
  content: "";
  position: absolute;
  width: 400px;
  height: 300px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url(../img/1.jpg);
  filter: invert(0);
  top: 10%;
  right: 0;
}
@media all and (max-width: 639px) {
  .bg-greet:before, .bg-greet:after {
    content: "";
    position: absolute;
    width: 25%;
    height: 100px;
    z-index: -1;
    opacity: 0.7;
    display: none;
  }
  .bg-greet.type1:before, .bg-greet.type1:after {
    width: 100px;
    height: 100px;
  }
}

.bg-greet2 {
  position: relative;
}
.bg-greet2:before, .bg-greet2:after {
  content: "";
  position: absolute;
  width: 350px;
  height: 280px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  top: 10%;
}
.bg-greet2:before {
  left: 0;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26385/2.jpg);
}
.bg-greet2:after {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26385/4.jpg);
  right: 0;
  bottom: 0;
  top: auto;
}
@media all and (max-width: 639px) {
  .bg-greet2:before, .bg-greet2:after {
    content: "";
    position: absolute;
    width: 25%;
    height: 100px;
    z-index: -1;
    opacity: 0.7;
  }
}

.greet {
  margin: 0 auto 30px;
  max-width: 610px;
  letter-spacing: 0;
  line-height: 2;
}

.bg-gradient {
  position: relative;
}
.bg-gradient:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(to right, #CE001D, #ccc9c9);
  z-index: -2;
  opacity: 0.1;
}
.bg-gradient.type1 {
  margin-bottom: 20px;
}
.bg-gradient.type1:before {
  position: absolute;
  content: "";
  width: calc(100% - 40px);
  height: 100%;
  transform: translate(-50%, 0);
  top: 0;
  left: 50%;
  background-image: linear-gradient(45deg, #ccc9c9, #e8e4de);
  z-index: -2;
  opacity: 0.1;
}
@media all and (max-width: 639px) {
  .bg-gradient.type1 {
    margin-bottom: 5px;
  }
  .bg-gradient.type1:before {
    width: calc(100% - 10px);
  }
}
.bg-gradient.type2 {
  margin: 20px auto;
}
.bg-gradient.type2:before {
  position: absolute;
  content: "";
  width: calc(100% - 40px);
  height: 100%;
  transform: translate(-50%, 0);
  top: 0;
  left: 50%;
  background-image: linear-gradient(45deg, #CE001D, #e8e4de);
  z-index: -2;
  opacity: 0.05;
}
@media all and (max-width: 639px) {
  .bg-gradient.type2 {
    margin: 5px auto;
  }
  .bg-gradient.type2:before {
    width: calc(100% - 10px);
  }
}

.bg-gradient2 {
  position: relative;
  overflow: hidden;
}
.bg-gradient2:before {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 26px;
  background: #000029;
  transform: skewY(6deg);
  opacity: 0.2;
}
.bg-gradient2:after {
  content: "";
  position: absolute;
  bottom: -222px;
  left: 0;
  width: 100%;
  height: 20px;
  background: #000a73;
  transform: skewY(25deg);
  opacity: 0.2;
}

.bg-gradient3 {
  position: relative;
}
.bg-gradient3:before {
  content: "";
  position: absolute;
  top: -53px;
  right: -180px;
  width: 100%;
  height: 30px;
  background: #CE001D;
  transform: skewY(11deg);
  opacity: 0.2;
}
.bg-gradient3:after {
  content: "";
  position: absolute;
  top: -30px;
  right: -282px;
  width: 100%;
  height: 20px;
  background: #CE001D;
  transform: skewY(26deg);
  opacity: 0.2;
}

.bg-01 {
  position: relative;
  background-image: linear-gradient(16deg, rgba(116, 116, 116, 0.05) 0%, rgba(116, 116, 116, 0.05) 25%, transparent 25%, transparent 96%, rgba(177, 177, 177, 0.08) 96%, rgba(177, 177, 177, 0.08) 100%), linear-gradient(236deg, rgba(148, 148, 148, 0.04) 0%, rgba(148, 148, 148, 0.04) 53%, transparent 53%, transparent 59%, rgba(56, 56, 56, 0.02) 59%, rgba(56, 56, 56, 0.02) 100%), linear-gradient(284deg, rgba(16, 16, 16, 0.03) 0%, rgba(16, 16, 16, 0.03) 46%, transparent 46%, transparent 71%, rgba(181, 181, 181, 0.1) 71%, rgba(181, 181, 181, 0.1) 100%), linear-gradient(316deg, rgba(197, 197, 197, 0.02) 0%, rgba(197, 197, 197, 0.02) 26%, transparent 26%, transparent 49%, rgba(58, 58, 58, 0.02) 49%, rgba(58, 58, 58, 0.02) 100%), linear-gradient(90deg, rgb(255, 255, 255), rgb(255, 255, 255));
}
.bg-01.type1 {
  background-image: linear-gradient(-164deg, rgba(206, 0, 29, 0.05) 0%, rgba(206, 0, 29, 0.05) 25%, transparent 25%, transparent 96%, rgba(206, 0, 29, 0.03) 96%, rgba(206, 0, 29, 0.03) 100%), linear-gradient(236deg, rgba(206, 0, 29, 0.04) 0%, rgba(206, 0, 29, 0.04) 53%, transparent 53%, transparent 59%, rgba(250, 245, 239, 0.7) 59%, rgba(250, 245, 239, 0.7) 100%), linear-gradient(265deg, rgba(206, 0, 29, 0.04) 0%, rgba(206, 0, 29, 0.04) 46%, transparent 46%, transparent 71%, rgba(206, 0, 29, 0.05) 71%, rgba(206, 0, 29, 0.05) 100%), linear-gradient(316deg, rgba(250, 245, 239, 0.8) 0%, rgba(250, 245, 239, 0.8) 26%, transparent 26%, transparent 49%, rgba(250, 245, 239, 0.9) 49%, rgba(250, 245, 239, 0.9) 100%), linear-gradient(90deg, #fff, #fff);
}

.bg-02 {
  position: relative;
}
.bg-02:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 30%;
  background: #f6f6f6;
  right: 0;
  top: 0px;
}
.bg-02 .bg-02_inner {
  position: relative;
  padding: 140px 0 40px;
}
.bg-02 .bg-02_inner:before {
  content: "";
  display: block;
  position: absolute;
  width: 55%;
  height: 80%;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26385/np.jpeg);
  right: 0;
  background-repeat: no-repeat;
  background-size: cover;
  /* background-attachment: fixed; */
  background-position: center center;
}
.bg-02 .bg-02_inner .inner_text {
  width: 40%;
  margin-right: auto;
  padding: 0 60px;
  line-height: 2;
}
.bg-02 .bg-02_inner .inner_text img._sp {
  display: none;
}
@media all and (max-width: 639px) {
  .bg-02 .bg-02_inner:before {
    width: 90%;
    height: 45%;
  }
  .bg-02 .bg-02_inner .inner_text {
    width: 100%;
    margin-top: 100px;
  }
  .bg-02 .bg-02_inner .inner_text ._sp {
    display: block;
    width: 100%;
    margin-top: 30px;
  }
}

.bg-contact {
  position: relative;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26385/bg-contact.jpg) no-repeat bottom/cover;
  background-attachment: fixed;
}
.bg-contact:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.6;
}
@media all and (max-width: 1200px) {
  .bg-contact {
    background-attachment: scroll;
  }
}
@media all and (max-width: 639px) {
  .bg-contact {
    padding: 10px;
  }
}
.bg-contact .contact-box {
  color: #fff;
  text-align: center;
}
.bg-contact .contact-box h3 {
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 1.6rem;
  margin-bottom: 30px;
  line-height: 1.6;
}
@media all and (max-width: 639px) {
  .bg-contact .contact-box h3 {
    font-size: 1.25rem;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
  }
}

.map-pin {
  font-size: 3rem;
  line-height: 1.4;
  color: #fff;
  text-align: center;
  animation: bounce-anm2 2s ease infinite;
}
@media all and (max-width: 896px) {
  .map-pin {
    font-size: 2.4rem;
  }
}

.bg-area {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26385/bg-area.jpg) no-repeat bottom/cover;
  background-attachment: fixed;
}
@media all and (max-width: 1200px) {
  .bg-area {
    background-attachment: scroll;
  }
}
@media all and (max-width: 639px) {
  .bg-area {
    padding: 10px;
  }
}
.bg-area .area-wrapper {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.bg-area .area-wrapper .area-box {
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  padding: 60px 30px;
  width: 50%;
  text-align: center;
}
.bg-area .area-wrapper .area-box .tel-btn {
  text-align: center;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em;
  font-size: 2.8rem;
  margin-top: 25px;
}
.bg-area .area-wrapper .area-box .tel-btn span {
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 1.8rem;
  margin-left: 10px;
}
.bg-area .area-wrapper .area-box .tel-btn a {
  display: block;
  color: #fff;
  font-size: 3.6rem;
  line-height: 1.2;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.bg-area .area-wrapper .area-box .tel-btn a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f098";
  font-weight: 900;
  margin-right: 10px;
}
.bg-area .area-wrapper .area-box .tel-btn a:hover {
  opacity: 0.6;
}
@media all and (max-width: 639px) {
  .bg-area .area-wrapper .area-box {
    margin: auto;
    width: 100%;
    padding: 40px 15px;
  }
  .bg-area .area-wrapper .area-box .tel-btn {
    font-size: 2rem;
    margin-top: 20px;
  }
  .bg-area .area-wrapper .area-box .tel-btn span {
    font-family: "YakuHanJP", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: 700;
    letter-spacing: 0.05em;
    font-size: 1.4rem;
  }
  .bg-area .area-wrapper .area-box .tel-btn a {
    font-size: 2.8rem;
  }
}

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

.about-img {
  width: 48%;
  max-height: 500px;
  overflow: hidden;
  border-radius: 15px 0 0 15px;
  box-shadow: 0 0 10px rgba(109, 106, 102, 0.1);
}
.about-img.type1 {
  border-radius: 0 15px 15px 0;
}
.about-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
@media all and (max-width: 896px) {
  .about-img {
    height: 280px;
    width: 100%;
    order: -1;
    border-radius: 10px;
    margin-bottom: 25px;
  }
  .about-img.type1 {
    border-radius: 10px;
  }
}
@media all and (max-width: 639px) {
  .about-img {
    height: 180px;
    border-radius: 5px;
  }
  .about-img.type1 {
    border-radius: 5px;
  }
}

.about-box {
  letter-spacing: 0.15em;
  width: 48%;
  padding: 0 40px;
  position: relative;
}
@media all and (max-width: 1200px) {
  .about-box {
    margin-left: 0;
    padding: 0 20px;
  }
}
@media all and (max-width: 896px) {
  .about-box {
    width: 100%;
  }
}
@media all and (max-width: 639px) {
  .about-box {
    padding: 0 15px;
  }
}

.mask {
  position: relative;
  -webkit-clip-path: circle(1%);
          clip-path: circle(1%);
  transition: 0.6s ease-in all;
}
.mask.on {
  -webkit-clip-path: circle(120%);
          clip-path: circle(120%);
}

.bg-base {
  background: rgba(206, 0, 29, 0.2);
}
.bg-base.type1 {
  background: rgba(206, 0, 29, 0.5);
}
.bg-base.type2 {
  background: #ce001d;
}

.bg-sub {
  position: relative;
}
.bg-sub.type1 {
  background: linear-gradient(90deg, #b3afaf 0%, #b3afaf 70%, #ccc9c9 70%, #ccc9c9 100%);
}
.bg-sub.type2 {
  background-color: #ccc9c9;
}

.bg-gray {
  position: relative;
}
.bg-gray:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: #f6f6f6;
}
.bg-gray.bg-half:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 80%;
  bottom: 0;
  left: auto;
  right: 0;
  background: linear-gradient(to bottom, #e8e4de, transparent);
}

.bg-beige {
  position: relative;
  z-index: 0;
}
.bg-beige:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #eae9e5;
  z-index: -1;
  opacity: 0.5;
}
.bg-beige.type1 {
  background: transparent;
}
.bg-beige.type1:before {
  position: absolute;
  content: "";
  z-index: -2;
  width: 60%;
  height: 60%;
  top: 0;
  right: 0;
  background-image: linear-gradient(to bottom, #ccc9c9, transparent);
  opacity: 0.1;
}
.bg-beige.type1:after {
  position: absolute;
  content: "";
  z-index: -1;
  width: 60%;
  height: 98%;
  top: 1%;
  right: 0;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26385/bg-living.png);
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.2;
}
@media all and (max-width: 896px) {
  .bg-beige.type1:after {
    width: 100%;
    height: 45%;
    top: auto;
    bottom: 1%;
    background-size: contain;
  }
}
@media all and (max-width: 639px) {
  .bg-beige.type1:after {
    height: 55%;
  }
}

.bg-ivory {
  position: relative;
  border: 10px solid #e8e4de;
}
.bg-ivory.type1 {
  border: 10px solid #CE001D;
}
@media all and (max-width: 639px) {
  .bg-ivory.type1 {
    border: 5px solid #CE001D;
  }
}
.bg-ivory:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: transparent;
  -webkit-clip-path: polygon(12% 0, 100% 0%, 88% 100%, 0% 100%);
          clip-path: polygon(12% 0, 100% 0%, 88% 100%, 0% 100%);
}
@media all and (max-width: 639px) {
  .bg-ivory {
    border: 5px solid #e8e4de;
  }
}

/* tbl
----------------------------------*/
.company {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 5px;
}
.company th,
.company td {
  padding: 15px;
  vertical-align: middle;
}
.company th {
  position: relative;
  background: #6d6a66;
  color: #fff;
  font-weight: 500;
}
.company td {
  background: #f6f6f6;
  padding-left: 25px;
}
@media all and (max-width: 639px) {
  .company th {
    width: 28%;
    padding: 5px;
  }
  .company td {
    padding-left: 15px;
  }
}

@media all and (max-width: 896px) {
  .tbl-scroll {
    overflow-x: scroll;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
}

.tbl-profile {
  width: 100%;
}
.tbl-profile th,
.tbl-profile td {
  padding: 10px 5px;
  font-size: 1.4rem;
  vertical-align: middle;
  border-bottom: 1px solid #ddd;
}
@media all and (max-width: 639px) {
  .tbl-profile th,
  .tbl-profile td {
    font-size: 12px;
  }
}
.tbl-profile th {
  width: 22%;
  text-align: left;
  color: #6d6a66;
}
.tbl-profile.type1 th {
  width: 25%;
}
@media all and (max-width: 639px) {
  .tbl-profile.type1 th {
    width: 30%;
  }
}

.tbl {
  width: 100%;
  border-top: 1px solid #ccc;
}
.tbl th,
.tbl td {
  padding: 15px;
  vertical-align: middle;
  border-bottom: 1px solid #ccc;
}
.tbl th span,
.tbl td span {
  font-size: 90%;
}
.tbl th {
  background: #f6f6f6;
  font-weight: 600;
}
.tbl td {
  background: #fff;
}
@media all and (max-width: 639px) {
  .tbl th,
  .tbl td {
    padding: 8px 5px;
  }
  .tbl.type1 th,
  .tbl.type1 td {
    text-align: center;
    display: block;
    width: 100%;
  }
  .tbl.type1 th.tleft,
  .tbl.type1 td.tleft {
    text-align: left;
  }
}

.tbl2 {
  width: 100%;
}
.tbl2 thead th {
  background: #b50019;
  color: #fff;
}
.tbl2 thead .normal {
  background: #fefefe;
  color: #6d6a66;
}
.tbl2 th,
.tbl2 td {
  padding: 15px;
  vertical-align: middle;
  border: 1px solid #ccc;
}
.tbl2 th {
  background: rgba(204, 201, 201, 0.2);
  color: #6d6a66;
}
.tbl2 tr:nth-child(even) td {
  background: rgba(250, 245, 239, 0.4);
}
@media all and (max-width: 639px) {
  .tbl2 th,
  .tbl2 td {
    padding: 10px;
  }
  .tbl2 td {
    font-size: 90%;
  }
}

.tbl_new {
  width: 100%;
}
.tbl_new tr th,
.tbl_new tr td {
  vertical-align: middle;
  padding: 15px 10px;
}
.tbl_new tr th {
  font-weight: 700;
  width: 25%;
  border-right: 1px solid #eeddc8;
}
@media all and (max-width: 639px) {
  .tbl_new tr th {
    width: 30%;
  }
}
.tbl_new tr:nth-child(odd) th, .tbl_new tr:nth-child(odd) td {
  background: #f6f6f6;
}

.tbl-border0 {
  width: 100%;
  border-top: 1px solid #ddd;
  margin: auto;
  width: 100%;
}
.tbl-border0 th,
.tbl-border0 td {
  padding: 10px;
  vertical-align: middle;
  font-size: 13px;
  border-bottom: 1px solid #ddd;
}
@media all and (max-width: 896px) {
  .tbl-border0 th,
  .tbl-border0 td {
    font-size: 11px;
  }
}

.tbl-border {
  width: 100%;
}
.tbl-border th,
.tbl-border td {
  padding: 10px;
  border-bottom: 2px solid;
  vertical-align: middle;
}
@media all and (max-width: 639px) {
  .tbl-border th,
  .tbl-border td {
    padding: 10px;
    font-size: 1.2rem;
  }
}
.tbl-border th {
  width: 25%;
  border-color: #CE001D;
}
.tbl-border th.th-1 {
  width: 45%;
}
@media all and (max-width: 639px) {
  .tbl-border th {
    width: 30%;
  }
}
.tbl-border td {
  border-color: #e9e9e9;
}

.tbl-border2 {
  width: 100%;
  border-top: 1px solid #ddd;
}
.tbl-border2 th,
.tbl-border2 td {
  padding: 15px 10px;
  border-bottom: 1px solid #ddd;
  vertical-align: middle;
  text-align: left;
  font-weight: 500;
}
.tbl-border2 th a,
.tbl-border2 td a {
  color: #b8b2a8;
  transition: all 0.3s ease;
  padding-top: 5px;
}
.tbl-border2 th a:hover,
.tbl-border2 td a:hover {
  opacity: 0.6;
}
.tbl-border2 td.sub-td {
  width: 20%;
}
@media all and (max-width: 639px) {
  .tbl-border2 th,
  .tbl-border2 td {
    padding: 10px 5px;
  }
  .tbl-border2.type1 th,
  .tbl-border2.type1 td {
    display: block;
    width: 100%;
    padding: 10px 5px;
    line-height: 1.6;
    font-size: 90%;
  }
  .tbl-border2.type1 td.sub-td {
    width: 100%;
    text-align: center;
  }
  .tbl-border2.type1 th {
    background: #f6f6f6;
  }
}

.marker {
  padding: 0 4px;
  margin-left: 4px;
  background: #fff;
  color: #ec0000;
}

.price {
  color: #ccc9c9;
  font-size: 1.2em;
}
.price span {
  display: block;
  font-size: 1.4rem;
  color: #6d6a66;
  letter-spacing: 0;
}
@media all and (max-width: 639px) {
  .price {
    font-size: 1.5rem;
  }
  .price span {
    font-size: 13px;
  }
}

.timetable-wrap {
  box-shadow: 0 0 4px rgba(232, 228, 222, 0.2);
  margin-bottom: 20px;
}

.timetable {
  width: 100%;
  border-top: 2px solid #CE001D;
}
.timetable th,
.timetable td {
  border-bottom: 1px solid #ccc;
  padding: 15px 5px;
  text-align: center;
  vertical-align: middle;
  line-height: 1.5;
}
.timetable th .txt,
.timetable td .txt {
  letter-spacing: 0;
  font-size: 12px;
}
@media all and (max-width: 639px) {
  .timetable th,
  .timetable td {
    font-size: 12px;
    padding: 10px 5px;
  }
}
.timetable .thead th {
  border-top: 0;
}
.timetable .th-1 {
  width: 35%;
  font-weight: 600;
  text-align: center;
}
.timetable .circle {
  color: #ccc9c9;
}
.timetable .circle:before {
  font-family: "Font Awesome 5 Free";
  content: "\f111";
  font-weight: 900;
}
@media all and (max-width: 639px) {
  .timetable {
    padding: 15px 10px;
  }
  .timetable .th-1 {
    width: 25%;
  }
}

.triangle {
  color: #fdd000;
}
.triangle:before {
  font-family: "Font Awesome 5 Free";
  content: "\f5c9";
  font-weight: 900;
}

/* ggmap
----------------------------------*/
.ggmap {
  position: relative;
  padding-bottom: 46.25%;
  height: 0;
  overflow: hidden;
}
.ggmap iframe,
.ggmap object,
.ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ggmap.youtube {
  padding-bottom: 56.25%;
}

.ggmap2 {
  position: relative;
  padding-bottom: 30.25%;
  height: 0;
  overflow: hidden;
}
.ggmap2 iframe,
.ggmap2 object,
.ggmap2 embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ggmap2.youtube {
  padding-bottom: 56.25%;
}

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

.list_check.type1 {
  display: flex;
  flex-wrap: wrap;
}
.list_check.type1 li {
  width: 48%;
  padding: 0;
}
.list_check.type1 li:nth-child(2n) {
  margin-left: 4%;
}
@media all and (max-width: 639px) {
  .list_check.type1 li {
    width: 95%;
    margin: 0 auto 5px;
  }
  .list_check.type1 li:nth-child(2n) {
    margin-left: auto;
  }
}
.list_check li {
  padding: 8px;
  font-weight: 700;
  background: #fefefe;
  margin-bottom: 5px;
}
.list_check li span {
  font-weight: normal;
  font-size: 0.9em;
  display: block;
  padding: 10px;
  background: rgba(234, 233, 229, 0.2);
  margin-top: 10px;
}
.list_check li a {
  color: #CE001D;
  border-bottom: 1px dotted #CE001D;
}
.list_check li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: 900;
  margin-right: 10px;
  color: #CE001D;
}
@media all and (max-width: 639px) {
  .list_check li {
    width: 98%;
    margin: 0 auto 10px;
    font-size: 1.2rem;
  }
}

.list_check2.type1 {
  display: flex;
  flex-wrap: wrap;
}
.list_check2.type1 li {
  width: 48%;
}
.list_check2.type1 li:nth-child(2n) {
  margin-left: 4%;
}
@media all and (max-width: 639px) {
  .list_check2.type1 li {
    width: 95%;
    margin: 0 auto 5px;
  }
  .list_check2.type1 li:nth-child(2n) {
    margin-left: auto;
  }
}
.list_check2 li {
  padding: 2px 8px 2px 30px;
  position: relative;
}
.list_check2 li .num {
  color: #CE001D;
  margin: 0 4px;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.list_check2 li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 8px;
  color: #ccc9c9;
}
.list_check2 li:not(:last-child) {
  margin-bottom: 4px;
}

.list-inline li {
  display: inline-block;
  padding: 1px;
}
.list-inline li:not(:last-of-type):after {
  content: "/";
  margin: 0 1px;
  color: #ccc9c9;
  font-weight: normal;
}
@media all and (max-width: 639px) {
  .list-inline li {
    display: block;
    padding: 0;
  }
  .list-inline li:before {
    content: "-";
    color: #ccc9c9;
  }
  .list-inline li:not(:last-of-type):after {
    display: none;
  }
}

.list_num li {
  position: relative;
  padding: 6px 4px 6px 50px;
  font-size: 2rem;
  margin-bottom: 5px;
  color: #6d6a66;
}
.list_num li span {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3.5rem;
  color: #ccc9c9;
}
@media all and (max-width: 639px) {
  .list_num li {
    font-size: 1.3rem;
  }
  .list_num li span {
    font-size: 2.8rem;
  }
}

.ol-list {
  counter-reset: number;
  list-style: none;
}
.ol-list li {
  line-height: 2;
  position: relative;
  padding-left: 60px;
  color: #fff;
  line-height: 1.6;
}
.ol-list li:not(:last-child) {
  border-bottom: 1px solid #ddd;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.ol-list li:before {
  counter-increment: number;
  content: "0" counter(number) ".";
  display: inline-block;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  left: 0;
  top: 0;
  position: absolute;
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  color: #fff;
  line-height: 1;
}
@media all and (max-width: 639px) {
  .ol-list {
    padding-left: 0;
  }
  .ol-list li {
    padding-left: 40px;
  }
  .ol-list li:before {
    font-size: 1.6rem;
  }
}

.list_disc.type1 li:before {
  color: #ccc9c9;
}
.list_disc.type2 li:before {
  content: "・";
}
.list_disc.type2 li:not(:last-of-type) {
  margin-bottom: 5px;
  border-bottom: none;
}
.list_disc li {
  position: relative;
}
.list_disc li:not(:last-of-type) {
  margin-bottom: 5px;
  border-bottom: 1px solid #ccc;
}
.list_disc li:before {
  content: "●";
  color: #CE001D;
  font-size: 9px;
  margin-right: 5px;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.area-list li {
  width: 24%;
  margin-right: 1.3333333333%;
  margin-bottom: 20px;
  font-weight: 600;
  padding: 3px;
  border: 0.9px solid #CE001D;
  color: #221515;
  text-align: center;
  box-shadow: 4px 4px #CE001D;
}
.area-list li:nth-child(4n) {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .area-list li {
    width: 48%;
    margin-right: 4%;
  }
  .area-list li:nth-child(2n) {
    margin-right: 0;
  }
}

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

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

.blog-wrap {
  display: flex;
  flex-wrap: wrap;
}
.blog-wrap * {
  transition: 0.3s;
}
.blog-wrap > li {
  width: 24%;
  margin: 0 0.5% 20px 0.5%;
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  padding: 15px 10px;
}
@media all and (max-width: 1200px) {
  .blog-wrap > li {
    width: 49%;
  }
}
.blog-wrap > li > a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}
.blog-wrap > li > a:hover ~ .blog-img img {
  opacity: 1;
  transform: scale(1.2);
}
@media all and (max-width: 639px) {
  .blog-wrap > li {
    width: 90%;
    margin: 0 auto 10px;
  }
}

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

.blog-detail {
  padding-top: 10px;
}

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

.blog-category {
  display: inline-block;
  padding: 5px;
  line-height: 1.3;
  text-align: center;
  background: #111;
}

.blog-date {
  background: #CE001D;
  width: 100px;
  padding: 5px;
  line-height: 1.3;
  text-align: center;
  display: inline-block;
  color: #fff;
  font-size: 12px;
}

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

.blog-title {
  font-weight: 700;
  line-height: 1.3;
  margin: 10px 0;
}

.blog-txt {
  line-height: 1.5;
  color: #CE001D;
  padding: 10px;
}
@media all and (max-width: 639px) {
  .blog-txt {
    font-size: 12px;
  }
}

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

.blog_new {
  margin-bottom: 30px;
}
.blog_new a {
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  padding: 5px 0;
}
.blog_new a .image {
  width: 35%;
  height: 74px;
  overflow: hidden;
}
.blog_new a .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
.blog_new a .detail {
  width: 60%;
}
.blog_new a .detail .entry_title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #6d6a66;
  font-size: 1.3rem;
}
.blog_new a .date_new {
  font-size: 1.2rem;
  color: #CE001D;
}
.blog_new a .date_new:before {
  font-family: "Font Awesome 5 Free";
  content: "\f017";
  font-weight: 900;
  margin-right: 5px;
}
@media all and (max-width: 639px) {
  .blog_new a .detail {
    font-size: 1.2rem;
  }
  .blog_new a .date_new {
    font-size: 1.1rem;
  }
}

.category_nav li:not(:last-child) {
  margin-bottom: 5px;
}
.category_nav li a {
  display: block;
  padding: 10px;
  font-size: 13px;
  text-align: center;
  color: #fff;
  background: #CE001D;
}
.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: #ccc9c9;
}
.category_nav li:last-child a {
  border-bottom: none;
}

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

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

.img-hv {
  transition: all 0.4s ease-in;
}
.img-hv:hover {
  opacity: 0.6;
}

.w300 {
  width: 300px;
}
@media all and (max-width: 639px) {
  .w300.type1 {
    width: 100%;
  }
}

.w250 {
  width: 250px;
}

.spbr {
  display: none;
}

.color1 {
  color: #CE001D;
}

.color2 {
  color: #ccc9c9;
}

.color3 {
  color: #820012;
}

.brown {
  color: #6d6a66;
}

.relative {
  position: relative;
}
.relative.type1 {
  z-index: 5;
}

.bigger {
  font-size: 105%;
  line-height: 2.4;
}
@media all and (max-width: 639px) {
  .bigger {
    line-height: 2;
  }
}

.smaller {
  font-size: 0.95em;
  letter-spacing: 0;
}

.num {
  font-weight: 700;
}
.num a {
  color: #CE001D;
  font-size: 2.8rem;
  text-align: center;
  margin-left: 5px;
}
@media all 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: #CE001D;
}

.ri-su {
  max-width: 500px;
  margin: 0 auto 30px;
  filter: drop-shadow(2px 4px 6px rgba(31, 31, 31, 0.1215686275));
}

/* breadcrumb
----------------------------------*/
.breadcrumb {
  max-width: 1200px;
  margin: 20px auto 20px;
  font-size: 1.2rem;
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.breadcrumb li {
  display: inline;
  color: #aaa;
}
.breadcrumb li a {
  color: #CE001D;
}
.breadcrumb li + li:before {
  margin: 0 10px;
  content: ">";
}
@media all and (max-width: 639px) {
  .breadcrumb {
    font-size: 12px;
  }
}

/* form
----------------------------------*/
.form-pattern-1 dl dt:not(.pattern-exclusion) span.required::before {
  content: "必須";
  color: #fff;
  background: #CE001D !important;
}

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

.form {
  margin: 0 auto;
  width: 90%;
}
.form dl dt {
  float: left;
  width: 280px;
  padding-top: 20px;
}
.form dl dt span {
  color: #fff;
  background: #CE001D;
  padding: 5px 8px;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 20px;
  position: relative;
  top: -2px;
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.form dl dt span.nini {
  color: #6d6a66;
  background: #e8e4de;
}
.form dl dd {
  padding-left: 280px;
  padding-bottom: 20px;
  padding-top: 23px;
  line-height: 1.5;
  border-bottom: 1px dotted #cccccc;
}
.form dl dd:last-child {
  border-bottom: none;
}
.form .textarea,
.form textarea {
  border: 0;
  padding: 20px 15px;
  width: 100%;
  background: #f5f5f5;
  border-radius: 0;
  -webkit-appearance: none;
}
.form .textarea {
  height: 30px;
}
.form .textarea02 {
  width: 48.5%;
  margin-right: 3%;
}
.form .textarea02:last-child {
  margin-right: 0;
}
.form .textarea03 {
  width: 20%;
  margin-right: 1%;
}
.form .textarea04 {
  width: 48% !important;
  margin-right: 0.5%;
}
.form button {
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  display: block;
  color: #fff;
  text-align: center;
  transition: all 0.2s ease-in-out 0s;
  border: 1px solid #CE001D;
  padding: 12px 5px;
  margin: 0 auto;
  width: 250px;
  background: #CE001D;
  border-radius: 25px;
}
.form button:hover {
  background: #fff;
  color: #CE001D;
}
.form button:before {
  font-weight: normal;
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 10px;
}
.form .select-wrap {
  position: relative;
  display: inline-block;
  min-width: auto;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  color: #333;
}
@media all and (max-width: 639px) {
  .form .select-wrap {
    margin-top: 10px;
  }
}
.form .select-wrap select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  z-index: 2;
  display: block;
  width: 200%;
  width: -webkit-calc(100% + 5em);
  margin: 0;
  padding: 11px 35px 11px 11px;
  padding: 0.6875rem 2.1875rem 0.6875rem 0.6875rem;
  background: transparent;
  border: 0;
  outline: none;
  line-height: 1.5;
}
.form .entypo-down-open-mini:before {
  font-family: "FontAwesome";
  content: "\f0ab";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 12px;
  right: 0.75rem;
  margin-top: -8px;
  margin-top: -0.5rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  color: #CE001D;
}
.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: #CE001D;
  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 #CE001D;
  border-bottom: 3px solid #CE001D;
  transform: rotate(45deg);
  z-index: 1;
}
.form label.checkbox_text input[type=checkbox] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  left: -40px;
  width: 20px;
  height: 20px;
  display: block;
  box-shadow: 41px 0px #fff;
  z-index: 2;
  margin: 0px;
  padding: 0px;
}
.form label.checkbox_text input[type=checkbox]:checked {
  box-shadow: none;
}
.form label.checkbox_text input[type=checkbox]:checked:focus {
  box-shadow: 40px 0px #666;
  opacity: 0.1;
}
.form label.checkbox_text input[type=checkbox]:focus {
  box-shadow: 41px 0px #eee;
}
.form input[type=text],
.form textarea {
  font-size: 16px;
}
@media all and (max-width: 639px) {
  .form input[type=text],
  .form textarea {
    transform: scale(0.9);
    margin-left: -5px;
  }
}

.fm-txt {
  font-size: 12px;
  text-align: center;
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
@media all and (max-width: 639px) {
  .fm-txt {
    font-size: 11px;
    text-align: left;
  }
}

.thanks {
  padding: 40px;
  border: 3px solid #CE001D;
  box-shadow: 0 0 0 8px rgba(206, 0, 29, 0.2);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
}
@media all and (max-width: 639px) {
  .thanks {
    max-width: 94%;
    padding: 30px 15px;
  }
}

.shadow {
  box-shadow: 0 0 10px rgba(109, 106, 102, 0.1);
}

.shadow2 {
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
}

.policy {
  padding: 0;
  background: #fefefe;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

/* accordion
----------------------------------*/
.accordion {
  margin-top: 50px;
}
.accordion dt,
.accordion dd {
  position: relative;
  padding: 1em;
}
.accordion dt {
  background: #CE001D;
  color: #fff;
  cursor: pointer;
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 1.6rem;
}
.accordion dt:after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f067";
  font-weight: 900;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
}
.accordion dt.on:after {
  font-family: "Font Awesome 5 Free";
  content: "\f068";
  font-weight: 900;
}
.accordion dd {
  display: none;
  padding: 20px;
  background: #fff;
}
@media all and (max-width: 639px) {
  .accordion {
    margin-top: 30px;
  }
  .accordion dt,
  .accordion dd {
    padding: 0.8em 0.6em;
  }
  .accordion dt {
    font-size: 1.2rem;
    letter-spacing: 0.05em;
  }
  .accordion dt:after {
    font-size: 0.9rem;
    right: 8px;
  }
}

.mtitle_small {
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #221515;
  position: relative;
  margin-bottom: 10px;
}
.mtitle_small span {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em;
  font-size: 110%;
}
.mtitle_small small {
  font-size: 0.8em;
}
.mtitle_small:before {
  font-family: "Font Awesome 5 Free";
  content: "\f138";
  font-weight: 900;
  margin-right: 5px;
  color: #CE001D;
}

.mtitle_small2 {
  position: relative;
  margin-bottom: 5px;
  padding-left: 20px;
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.mtitle_small2:before {
  position: absolute;
  content: "";
  background-color: #CE001D;
  width: 10px;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.mtitle_small3 {
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 20px 0;
  font-weight: 600;
  font-size: 3rem;
  border-top: 2px solid;
  border-bottom: 2px solid;
  margin-bottom: 15px;
  text-align: center;
  margin-bottom: 70px;
  line-height: 1.8;
}
.mtitle_small3.white {
  color: #fff;
  font-weight: 600;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.mtitle_small3.type1 {
  padding: 15px 0;
  border-bottom: 1px dashed;
  font-size: 2.5rem;
}
.mtitle_small3 img {
  max-width: 250px;
  display: block;
  margin: 0 auto;
}
@media all and (max-width: 1200px) {
  .mtitle_small3 {
    padding: 20px 0;
    font-size: 2.2rem;
  }
  .mtitle_small3.type1 {
    font-size: 2rem;
    margin-bottom: 40px;
  }
}
@media all and (max-width: 639px) {
  .mtitle_small3 {
    padding: 10px 0;
    font-size: 1.8rem;
    line-height: 1.6;
  }
  .mtitle_small3.type1 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
}

.mtitle_small4 {
  position: relative;
  background: #fff;
  border: 1px solid #ddd;
  font-size: 2rem;
  padding: 15px 15px 15px 30px;
  margin-bottom: 30px;
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.mtitle_small4 span {
  font-size: 1.6rem;
}
.mtitle_small4:before {
  position: absolute;
  top: 15%;
  left: 8px;
  width: 6px;
  height: 70%;
  content: "";
  background: #CE001D;
}
.mtitle_small4.type1:before {
  background: #ccc9c9;
}
@media all and (max-width: 639px) {
  .mtitle_small4 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    padding: 12px 12px 12px 24px;
  }
  .mtitle_small4 span {
    font-size: 1.3rem;
  }
}

/*photoギャラリー*/
.gallery {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.gallery.p_none li p {
  display: none;
}
.gallery.col5 li {
  width: 19.2%;
  margin: 0 1% 1% 0;
}
.gallery.col5 li:nth-child(5n) {
  margin-right: 0;
}
.gallery.col5 li a {
  height: 150px;
}
@media all and (max-width: 639px) {
  .gallery.col5 li {
    width: 49%;
    margin-right: 2%;
    margin-bottom: 1%;
  }
  .gallery.col5 li a {
    height: 100px;
  }
  .gallery.col5 li:nth-child(2n) {
    margin-right: 0;
  }
}
.gallery.col4 li {
  width: 24%;
  margin: 0 1.3333333333% 1% 0;
}
.gallery.col4 li:nth-child(4n) {
  margin-right: 0;
}
.gallery.col4 li a,
.gallery.col4 li figure {
  height: 180px;
}
@media all and (max-width: 639px) {
  .gallery.col4 li {
    width: 49%;
    margin-right: 2%;
    margin-bottom: 1%;
  }
  .gallery.col4 li a {
    height: 100px;
  }
  .gallery.col4 li:nth-child(2n) {
    margin-right: 0;
  }
}
.gallery.col3 li {
  width: 32%;
  margin: 0 1% 1% 0;
}
.gallery.col3 li:nth-child(3n) {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .gallery.col3 li {
    width: 49%;
    margin-right: 1%;
    margin-bottom: 1%;
  }
  .gallery.col3 li:nth-child(3n) {
    margin-right: 1%;
  }
  .gallery.col3 li:nth-child(2n) {
    margin-right: 0;
  }
}
.gallery li a,
.gallery li figure {
  background: #f6f6f6;
  display: block;
  text-align: center;
  padding: 0px;
  height: 300px;
}
.gallery li a img,
.gallery li figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  -o-object-position: center 5%;
     object-position: center 5%;
  /*IE対策*/
}
@media all and (max-width: 639px) {
  .gallery li a,
  .gallery li figure {
    height: 100px;
  }
}
.gallery li p {
  margin: 5px 0;
  text-align: center;
}
.gallery li .works-txt {
  font-weight: 900;
}
.gallery li .works-txt span {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em;
  font-size: 90%;
  display: block;
}
.gallery li .fee-txt {
  font-weight: 900;
}
.gallery li .fee-txt span {
  font-size: 80%;
  display: block;
  font-weight: 500;
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.history-dl {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
  width: 85%;
}
.history-dl::before {
  position: absolute;
  content: "";
  left: 200px;
  top: 0;
  width: 1px;
  height: 100%;
  z-index: 1;
  background: #aaa;
}
.history-dl dt,
.history-dl dd {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}
.history-dl dt {
  width: 160px;
  margin-right: 40px;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #333;
  text-align: right;
  line-height: 1;
  text-shadow: 1px 1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, -1px -1px 0 #fff;
}
.history-dl dt span {
  font-size: 3rem;
  padding: 0 3px;
  color: #860001;
}
.history-dl dd {
  width: calc(100% - 200px);
  display: flex;
  flex-wrap: wrap;
  padding-left: 40px;
  align-items: flex-start;
  font-size: 1.4rem;
}
.history-dl dd .month,
.history-dl dd .txt {
  margin-bottom: 10px;
}
.history-dl dd .month {
  width: 65px;
  font-weight: 700;
  background: #ffc253;
  padding: 5px;
  text-align: center;
  border-radius: 30px;
  position: relative;
}
.history-dl dd .month.type1 {
  background-color: transparent;
}
.history-dl dd .month::before, .history-dl dd .month::after {
  position: absolute;
  content: "";
}
.history-dl dd .month::before {
  left: -40px;
  top: 50%;
  width: 42px;
  height: 1px;
  z-index: 1;
  background: #aaa;
}
.history-dl dd .month::after {
  width: 10px;
  height: 10px;
  left: -45px;
  top: 50%;
  border-radius: 100%;
  background: #9B2028;
  margin-top: -5px;
  z-index: 10;
}
.history-dl dd .txt {
  width: calc(100% - 65px);
  padding: 10px;
}
.history-dl dd .txt.type1 {
  margin-top: -17px;
}
@media all and (max-width: 639px) {
  .history-dl {
    display: block;
    width: 99%;
  }
  .history-dl::before {
    left: 0;
  }
  .history-dl dt {
    width: 60%;
    font-size: 1.4rem;
    padding-left: 20px;
    text-align: left;
    border-bottom: 0;
    margin-bottom: 0;
  }
  .history-dl dt span {
    font-size: 1.6rem;
  }
  .history-dl dd {
    width: 100%;
    padding-left: 20px;
    font-size: 1.2rem;
  }
  .history-dl dd .month::before {
    left: -20px;
    width: 25px;
  }
  .history-dl dd .month::after {
    left: -25px;
  }
}

.list2 {
  display: flex;
  flex-wrap: wrap;
  max-width: 1500px;
  margin-right: auto;
  margin-left: auto;
  margin-top: -50px;
}
@media all and (max-width: 639px) {
  .list2 {
    margin-top: -20px;
  }
}
.list2.interview-list .child {
  position: relative;
  padding-bottom: 80px;
}
.list2.type1 > li,
.list2.type1 .child {
  background: #fefefe;
  padding: 30px 40px;
}
@media all and (max-width: 639px) {
  .list2.type1 > li,
  .list2.type1 .child {
    padding: 20px;
  }
}
.list2 > li,
.list2 .child {
  width: 48%;
  margin-top: 50px;
  position: relative;
}
.list2 > li:nth-child(2n),
.list2 .child:nth-child(2n) {
  margin-left: 4%;
}
@media all and (max-width: 639px) {
  .list2 > li:nth-child(2n),
  .list2 .child:nth-child(2n) {
    margin-left: auto;
  }
}
@media all and (max-width: 639px) {
  .list2 > li,
  .list2 .child {
    width: 100%;
    margin: 20px auto 0;
  }
}

.list3 {
  display: flex;
  flex-wrap: wrap;
}
.list3 > li {
  width: 31%;
  position: relative;
  margin-right: 3.495%;
}
.list3 > li:nth-child(3n) {
  margin-right: 0;
}
.list3 > li:not(:nth-last-child(-n+3)) {
  margin-bottom: 30px;
}
@media all and (max-width: 639px) {
  .list3 > li {
    width: 95%;
    margin: 0 auto 20px;
  }
  .list3 > li:nth-child(3n) {
    margin-right: auto;
  }
  .list3 > li:last-child {
    margin-bottom: 0;
  }
}

.list4 {
  display: flex;
  flex-wrap: wrap;
  margin-left: -2%;
  margin-top: -30px;
}
.list4 li {
  margin-left: 2%;
  margin-top: 30px;
  width: 23%;
}
@media all and (max-width: 1200px) {
  .list4 li {
    width: 31.33%;
  }
}
@media all and (max-width: 639px) {
  .list4 {
    margin-left: auto;
  }
  .list4 li {
    width: 42%;
    margin: 25px auto 0;
  }
}

.box-arrow {
  position: relative;
}
.box-arrow:after {
  position: absolute;
  content: "";
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 0 30px 30px;
  border-color: transparent transparent transparent #fdd000;
  z-index: 3;
}
@media all and (max-width: 639px) {
  .box-arrow:after {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    top: auto;
    bottom: -15px;
    border-width: 15px 20px 0 20px;
    border-color: #fdd000 transparent transparent transparent;
  }
}

.caution {
  color: #ec0000;
  letter-spacing: 0;
  font-size: 1.4rem;
}
@media all and (max-width: 639px) {
  .caution {
    font-size: 1.1rem;
  }
}

.note {
  padding: 20px;
  margin-top: 10px;
  letter-spacing: 0;
  font-size: 1.5rem;
  background-color: #fff;
}
@media all and (max-width: 639px) {
  .note {
    font-size: 1.15rem;
  }
}
.note.border {
  border: 1px solid #ddd;
}
.note.type1 {
  background: #f4efe9;
}

.note2 {
  padding: 10px;
  background: #f6f6f6;
}
@media all and (max-width: 639px) {
  .note2 {
    padding: 5px;
  }
}

.note3 {
  padding: 0 15px;
}
@media all and (max-width: 639px) {
  .note3 {
    padding: 0 10px;
  }
}

.flow-dl {
  display: flex;
  flex-wrap: wrap;
}
.flow-dl .flow-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 48%;
  margin-right: 4%;
  margin-bottom: 25px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.8);
}
.flow-dl .flow-inner:nth-child(2n) {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .flow-dl .flow-inner {
    width: 100%;
    margin: 0 auto 25px;
  }
  .flow-dl .flow-inner:nth-child(2n) {
    margin-right: auto;
  }
}
.flow-dl dt {
  color: #CE001D;
  width: 60px;
  text-align: center;
  margin-right: 20px;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding-top: 8px;
}
.flow-dl dt span {
  font-size: 3.5rem;
  display: block;
  line-height: 1;
  color: #ccc9c9;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.flow-dl dd {
  width: calc(100% - 80px);
}
.flow-dl dt:not(:last-child),
.flow-dl dd:not(:last-child) {
  margin-bottom: 20px;
}
@media all and (max-width: 639px) {
  .flow-dl dt {
    font-size: 1.3rem;
  }
  .flow-dl dt span {
    font-size: 2.2rem;
  }
}

.txt1 {
  padding-left: 60px;
}
@media all and (max-width: 639px) {
  .txt1 {
    padding-left: 40px;
  }
}

.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;
  background: #333;
}
.blog-month ul li:nth-child(2n) {
  margin-left: 2%;
}
.blog-month ul li a {
  color: #fff;
  font-size: 12px;
}

#a01,
#a02,
#a03,
#a04,
#a05,
#a06,
#a07,
#a08,
#contact,
#area01,
#area02,
#area03,
#area04,
#area05,
#area06,
.anchor {
  display: block;
  padding-top: 72px;
  margin-top: -72px;
}

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

.faq dt {
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  background: #fff;
  color: #6d6a66;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-right: 16px;
  padding-left: 36px;
  line-height: 1.6;
  position: relative;
  cursor: pointer;
}
.faq dt:before {
  content: "Q";
  position: absolute;
  top: -6px;
  left: -6px;
  text-indent: 0px;
  line-height: 35px;
  color: #fff;
  background: #ccc9c9;
  width: 35px;
  height: 35px;
  text-align: center !important;
}
.faq dt:hover {
  background: #faf5ef;
}
.faq dd {
  display: none;
  position: relative;
  margin-bottom: 24px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 16px;
  padding-left: 48px;
  line-height: 2;
  position: relative;
  background: #fff;
}
.faq dd:before {
  content: "A";
  position: absolute;
  top: 0px;
  left: 0px;
  text-indent: 0px;
  font-size: 20px;
  line-height: 35px;
  color: #ec0000;
  width: 35px;
  height: 35px;
  text-align: center !important;
}
.faq dt:before,
.faq dd:before {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.faq-dl .faq-inner {
  padding: 10px;
}
.faq-dl .faq-inner:not(:last-of-type) {
  margin-bottom: 10px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e8e4de;
}
.faq-dl .faq-inner dt,
.faq-dl .faq-inner dd {
  position: relative;
  padding: 5px 5px 5px 45px;
}
.faq-dl .faq-inner dt:before,
.faq-dl .faq-inner dd:before {
  position: absolute;
  content: "";
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  left: 0;
  top: 0;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.faq-dl .faq-inner dt {
  margin-bottom: 10px;
  font-size: 110%;
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #6d6a66;
}
.faq-dl .faq-inner dt:before {
  content: "Q";
  color: #fff;
  font-size: 2rem;
  background: #CE001D;
}
.faq-dl .faq-inner dd:before {
  content: "A";
  color: #fff;
  font-size: 2rem;
  background: #ccc9c9;
}

.sns-list {
  display: flex;
  flex-wrap: wrap;
}
.sns-list.type1 {
  justify-content: center;
}
.sns-list.type2 {
  margin-left: 10px;
}
.sns-list.type2 li a {
  width: 42px;
  height: 42px;
  line-height: 42px;
  background: transparent !important;
  border: 2px solid #fff;
  box-sizing: border-box;
  filter: drop-shadow(0px 0px 3px rgba(109, 106, 102, 0.5));
}
.sns-list.type2 li a img {
  top: -4px;
  width: 22px;
}
.sns-list.type2 li a::before {
  display: none;
}
.is-fixed .sns-list.type2 li a {
  width: 38px;
  height: 38px;
  line-height: 38px;
  border: none;
  filter: none;
}
.is-fixed .sns-list.type2 li a img {
  top: -2px;
  width: 18px;
}
.is-fixed .sns-list.type2 li a.btn-online {
  background: #CE001D !important;
}
.is-fixed .sns-list.type2 li a.btn-instagram {
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat !important;
}
.is-fixed .sns-list.type2 li a.btn-instagram:before {
  display: block;
  left: -15px;
  width: 54px;
  height: 54px;
}
@media all and (max-width: 896px) {
  .sns-list.type2 {
    display: none;
  }
}
.sns-list.type3 {
  justify-content: center;
}
.sns-list.type3 li a {
  width: 42px;
  height: 42px;
  line-height: 42px;
  background: transparent !important;
  border: 2px solid #fff;
  box-sizing: border-box;
  filter: drop-shadow(0px 0px 3px rgba(109, 106, 102, 0.5));
}
.sns-list.type3 li a img {
  top: -4px;
  width: 22px;
}
.sns-list.type3 li a::before {
  display: none;
}
@media all and (max-width: 896px) {
  .sns-list.type3 {
    display: none;
  }
}
.sns-list li:not(:last-child) {
  margin-right: 10px;
}
.sns-list li a {
  width: 46px;
  height: 46px;
  line-height: 46px;
  display: block;
  text-align: center;
  position: relative;
  border-radius: 50%;
}
.sns-list li a img {
  position: relative;
  vertical-align: middle;
  width: 28px;
  z-index: 3;
  top: -2px;
}
.sns-list li a:hover img {
  transition: all 1s;
  transform: rotate(360deg);
}
.sns-list li a.btn-facebook {
  background: #1877f2;
}
.sns-list li a.btn-youtube {
  background: #ff0000;
}
.sns-list li a.btn-twitter {
  background: #1da1f2;
}
.sns-list li a.btn-line {
  background: #00b900;
}
.sns-list li a.btn-instagram {
  overflow: hidden;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
}
.sns-list li a.btn-instagram:before {
  content: "";
  position: absolute;
  top: 20px;
  left: -12px;
  width: 60px;
  height: 60px;
  background: radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
}
.sns-list li a.btn-gray {
  background: #383636;
}

.name {
  width: 170px;
  margin: -20px auto 20px;
  position: relative;
  z-index: 2;
  background: #fff;
  color: #6d6a66;
  font-weight: 600;
  text-align: center;
  padding: 15px 6px;
  box-shadow: 0 0 8px rgba(109, 106, 102, 0.05);
  line-height: 1.5;
  font-family: "YakuHanJP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 700;
  letter-spacing: 0.15em;
}
.name .small {
  font-size: 85%;
  display: block;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em;
  letter-spacing: 0.2em;
}

.vertical-content {
  margin-left: 100px;
}
.vertical-content.type1 {
  margin-left: 180px;
}
@media all and (max-width: 639px) {
  .vertical-content.type1 {
    margin-left: 0;
  }
}
@media all and (max-width: 639px) {
  .vertical-content {
    margin-left: 0;
  }
}

.box1 {
  background: #fff;
  box-shadow: 0 3 10px rgba(206, 0, 29, 0.15);
  padding: 30px;
  border-radius: 8px;
  margin-right: auto;
  margin-left: auto;
}
.box1.type1 {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
}
.box1.type1:before {
  position: absolute;
  content: "";
  left: 50%;
  top: -80px;
  width: 1px;
  height: 80px;
  z-index: 2;
  background-image: linear-gradient(to top, #ff3551, #CE001D);
  opacity: 0.7;
}
@media all and (max-width: 639px) {
  .box1 {
    padding: 25px 15px;
  }
}

.pickup {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #CE001D;
}

.flow-list {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.flow-list.type1 {
  display: block;
}
.flow-list.type1 li {
  width: 100%;
}
.flow-list.type1 li .flow-title {
  margin-bottom: 10px;
}
.flow-list li {
  width: 48%;
  margin-right: 4%;
  margin-bottom: 35px;
  align-items: center;
  padding: 25px;
  display: flex;
  flex-wrap: wrap;
  background: #fefefe;
  box-shadow: 0 0 15px rgba(109, 106, 102, 0.05);
}
.flow-list li:last-child {
  margin-bottom: 0;
}
.flow-list li.type100 {
  flex-basis: 100%;
  margin-right: 0;
}
.flow-list li:nth-child(2n) {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .flow-list li {
    width: 90%;
    margin: 0 auto 30px;
  }
  .flow-list li:nth-child(2n) {
    margin-right: auto;
  }
}
.flow-list li .flow-num {
  color: #CE001D;
  font-size: 3.5rem;
  border-right: 1px solid #CE001D;
  padding-right: 15px;
  align-self: center;
  line-height: 1.2;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.flow-list li .flow-num span {
  font-size: 1.4rem;
  display: block;
  text-align: center;
}
.flow-list li .txt {
  flex: 1;
  margin-left: 35px;
}
.flow-list li .flow-title {
  color: #CE001D;
  border-bottom: 1px solid #CE001D;
  padding-bottom: 4px;
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
}
@media all and (max-width: 639px) {
  .flow-list li {
    flex-direction: column;
  }
  .flow-list li .flow-num {
    font-size: 2.2rem;
    text-align: center;
    border-right: 0;
    padding: 0 0 4px;
    border-bottom: 1px solid #CE001D;
  }
  .flow-list li .flow-title {
    font-size: 1.3rem;
  }
  .flow-list li .txt {
    margin: 20px auto 0;
  }
}

.price-dl dt {
  background: #dfddd7;
  padding: 14px 20px;
  color: #6d6a66;
  border-top: 1px solid #ccc9c9;
  border-bottom: 1px solid #ccc9c9;
}
.price-dl dd {
  padding: 20px;
  margin-bottom: 25px;
}

.kiritori {
  height: 1px;
  border-top: 1px dashed rgba(206, 0, 29, 0.4);
  margin: 50px auto;
  width: 98%;
  display: block;
}

.kiritori2 {
  height: 1px;
  border-top: 1px dashed rgba(206, 0, 29, 0.2);
  margin: 20px auto;
  width: 98%;
  display: block;
}

.top-greet-box {
  display: flex;
  flex-wrap: wrap;
  margin-left: auto;
  margin-right: auto;
  justify-content: space-between;
  position: relative;
  z-index: 0;
  flex-direction: row-reverse;
}
.top-greet-box .in_inner {
  padding: 80px 0;
  position: relative;
}
.top-greet-box .child {
  width: 55%;
}
.top-greet-box .child.image {
  height: 580px;
}
.top-greet-box .child.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.top-greet-box .child-txt {
  width: 45%;
  padding: 0 60px;
  margin-left: auto;
  margin-right: auto;
  max-width: 650px;
  position: relative;
}
.top-greet-box .child-txt:before {
  position: absolute;
  content: "";
  background: url(../img/greet-img02.png) no-repeat;
  background-size: contain;
  width: 95%;
  height: 100%;
  top: -30%;
  left: 10%;
  z-index: -1;
  opacity: 0.6;
  filter: hue-rotate(59deg);
}
.top-greet-box .child-txt .inner {
  line-height: 2;
}
@media all and (max-width: 896px) {
  .top-greet-box .child {
    width: 98%;
  }
  .top-greet-box .child.image {
    height: 320px;
    margin-bottom: 20px;
  }
  .top-greet-box .child-txt {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
  }
  .top-greet-box .child-txt .detail {
    max-width: 95%;
    margin: 0 auto;
  }
}

.top-column2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.top-column2 .child {
  width: 55%;
}
.top-column2 .child .inner {
  max-width: 95%;
  word-break: auto-phrase;
}
.top-column2 .child-img {
  width: 41%;
  position: relative;
}
.top-column2 .child-img .inner {
  height: 600px;
}
.top-column2 .child-img .inner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media all and (max-width: 896px) {
  .top-column2 {
    flex-direction: column;
  }
  .top-column2 .child {
    width: 100%;
    padding: 5px;
  }
  .top-column2 .child-img {
    width: 100%;
    margin-top: 30px;
  }
  .top-column2 .child-img .inner {
    height: auto;
  }
}

.top-column2_sub {
  display: flex;
  flex-wrap: wrap;
}
.top-column2_sub li {
  width: 47%;
  margin: 0 2.75% auto 0;
}
.top-column2_sub li.photo-anime {
  height: 400px;
}
.top-column2_sub li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-column2_sub li:first-child {
  margin: 0px 2.75% auto 0;
}
.top-column2_sub li:first-child img {
  overflow: hidden;
}
.top-column2_sub li:nth-child(2) {
  text-align: center;
  margin: 200px 2.5% auto 0;
}
.top-column2_sub li:nth-child(2) img {
  margin: 0 auto;
}
@media all and (max-width: 639px) {
  .top-column2_sub li.photo-anime {
    height: 150px;
  }
  .top-column2_sub li img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .top-column2_sub li:first-child {
    margin: 0px 2.75% auto 0;
  }
  .top-column2_sub li:nth-child(2) {
    margin: 40px 2.5% auto 0;
  }
  .top-column2_sub li:nth-child(2) img {
    width: auto;
    height: 150px;
    margin: 0 auto;
  }
}

.column2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.column2.tp {
  align-items: flex-start;
}
.column2.te {
  align-items: flex-end;
}
.column2 .child0 {
  width: 50%;
}
.column2 .child {
  width: 48%;
}
.column2 .child2 {
  width: 40%;
}
.column2 .child3 {
  width: 58%;
}
.column2 .child4 {
  width: 30%;
}
.column2 .child5 {
  width: 65%;
}
.column2 figure {
  height: 350px;
  border: 2px solid #8b8680;
}
.column2 figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media all and (max-width: 1200px) {
  .column2 figure {
    height: 270px;
  }
}
@media all and (max-width: 639px) {
  .column2 {
    flex-direction: column;
  }
  .column2 .child0,
  .column2 .child,
  .column2 .child2,
  .column2 .child3,
  .column2 .child4,
  .column2 .child5 {
    width: 100%;
  }
  .column2 .child0.bm20,
  .column2 .child.bm20,
  .column2 .child2.bm20,
  .column2 .child3.bm20,
  .column2 .child4.bm20,
  .column2 .child5.bm20 {
    margin-bottom: 20px;
  }
  .column2 .child0.bm30,
  .column2 .child.bm30,
  .column2 .child2.bm30,
  .column2 .child3.bm30,
  .column2 .child4.bm30,
  .column2 .child5.bm30 {
    margin-bottom: 30px;
  }
  .column2 .child0.column2-img,
  .column2 .child.column2-img,
  .column2 .child2.column2-img,
  .column2 .child3.column2-img,
  .column2 .child4.column2-img,
  .column2 .child5.column2-img {
    order: -1;
    margin-bottom: 30px;
  }
  .column2 figure {
    height: 180px;
  }
}

.column2_2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.column2_2.tp {
  align-items: flex-start;
}
.column2_2 .child {
  width: 48%;
}
.column2_2 .child01 {
  width: 40%;
}
.column2_2 .child02 {
  width: 55%;
}
.column2_2 .child03 {
  width: 35%;
}
.column2_2 .child04 {
  width: 60%;
}
.column2_2 .child-txt {
  position: absolute;
  width: 50%;
  right: 0;
  padding: 35px 30px;
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border-radius: 10px;
}
.column2_2 .child-txt.type1 {
  right: auto;
  left: 0;
}
.column2_2 .child-img {
  width: 60%;
  border-radius: 10px;
  overflow: hidden;
}
.column2_2 .child-img.type1 {
  margin-left: auto;
}
@media all and (max-width: 896px) {
  .column2_2 {
    flex-direction: column;
  }
  .column2_2 .child,
  .column2_2 .child01,
  .column2_2 .child02,
  .column2_2 .child03,
  .column2_2 .child04,
  .column2_2 .child-img {
    width: 100%;
  }
  .column2_2 .child.bm10,
  .column2_2 .child01.bm10,
  .column2_2 .child02.bm10,
  .column2_2 .child03.bm10,
  .column2_2 .child04.bm10,
  .column2_2 .child-img.bm10 {
    margin-bottom: 10px;
  }
  .column2_2 .child.bm20,
  .column2_2 .child01.bm20,
  .column2_2 .child02.bm20,
  .column2_2 .child03.bm20,
  .column2_2 .child04.bm20,
  .column2_2 .child-img.bm20 {
    margin-bottom: 20px;
  }
  .column2_2 .child.column2-img,
  .column2_2 .child01.column2-img,
  .column2_2 .child02.column2-img,
  .column2_2 .child03.column2-img,
  .column2_2 .child04.column2-img,
  .column2_2 .child-img.column2-img {
    order: -1;
    margin-bottom: 30px;
  }
  .column2_2 .child.column2-fee,
  .column2_2 .child01.column2-fee,
  .column2_2 .child02.column2-fee,
  .column2_2 .child03.column2-fee,
  .column2_2 .child04.column2-fee,
  .column2_2 .child-img.column2-fee {
    order: -1;
    margin-bottom: 20px;
  }
  .column2_2 .child-txt {
    position: relative;
    width: 100%;
    margin: 20px auto 0 !important;
    padding: 0 10px !important;
  }
  .column2_2 .child-img {
    order: -1;
    margin: auto !important;
    border-radius: 10px 10px 0 0;
  }
}

.column3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.column3 .child {
  width: 32%;
  margin-bottom: 40px;
}
.column3 .child figure {
  margin-bottom: 20px;
  height: 250px;
}
.column3 .child figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.column3 .child.text-box {
  padding: 0 30px;
}
.column3 .child.text-box p + p {
  margin-top: 15px;
}
.column3 .child2 {
  width: 32%;
}
@media all and (max-width: 639px) {
  .column3 {
    flex-direction: column;
  }
  .column3 .child,
  .column3 .child2 {
    width: 100%;
    margin-bottom: 5px;
  }
  .column3 .child.bm20,
  .column3 .child2.bm20 {
    margin-bottom: 20px;
  }
  .column3 .child.text-box,
  .column3 .child2.text-box {
    padding: 25px 10px;
  }
  .column3 .child.text-box p + p,
  .column3 .child2.text-box p + p {
    margin-top: 10px;
  }
}

.column4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.column4 .child {
  width: 24%;
}
@media all and (max-width: 896px) {
  .column4 .child {
    width: 48%;
  }
  .column4 .child.bm20 {
    margin-bottom: 20px;
  }
  .column4 .child.bm30 {
    margin-bottom: 30px;
  }
}

/* bnr_contents
----------------------------------*/
.bnr_contents {
  display: block;
  color: #111;
}
.bnr_contents .inner {
  padding: 20px 20px;
  border-radius: 0 0 8px 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.bnr_contents .bnr_image {
  margin: 0 auto 24px;
  width: 110px;
  height: 110px;
}
.bnr_contents .bnr_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.bnr_contents .title {
  font-size: 1em;
  text-align: center;
  text-wrap: balance;
  font-weight: 600;
  color: #221515;
  line-height: 1.5;
  margin-bottom: 12px;
}
.bnr_contents .title span {
  display: block;
  color: #ccc9c9;
  font-size: 2.1rem;
}
.bnr_contents p {
  font-size: 1.4rem;
  color: #221515;
}
@media all and (max-width: 1367px) {
  .bnr_contents .inner .title {
    font-size: 1.3em;
  }
}
@media all and (max-width: 896px) {
  .bnr_contents .inner .bnr_image {
    width: 80px;
    height: 80px;
  }
}
@media all and (max-width: 639px) {
  .bnr_contents .inner {
    padding: 25px 20px;
    min-height: auto;
  }
  .bnr_contents .inner .bnr_image {
    width: 80px;
    height: 80px;
  }
  .bnr_contents .inner .title {
    font-size: 1.4rem;
  }
}

/* bnr_contents
----------------------------------*/
.bnr_contents2 {
  display: block;
  color: #221515;
}
.bnr_contents2 .inner {
  background-color: #fff;
  padding: 40px 30px;
  border-radius: 16px;
}
.bnr_contents2 .bnr_image {
  margin: 0 auto 24px;
  width: 130px;
}
.bnr_contents2 .title {
  font-size: 1.3em;
  text-align: center;
}
.bnr_contents2 .title span {
  display: block;
  color: #ccc9c9;
  font-size: 1.4rem;
}
.bnr_contents2 p {
  font-size: 1.4rem;
}
.bnr_contents2 .bnr_btn {
  display: block;
  margin: 24px auto 0;
  width: 40px;
}

.bnr-column6 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.bnr-column6 > .child {
  width: 15%;
  margin: 0 1% 3% 0;
}
.bnr-column6 > .child:nth-child(4n) {
  margin: 0 0 3% 0;
}
@media all and (max-width: 896px) {
  .bnr-column6 > .child {
    width: 49%;
    margin: 0 1% 3% 0;
  }
  .bnr-column6 > .child:nth-child(2n) {
    margin: 0 0 3% 0;
  }
  .bnr-column6 > .child:nth-child(3n) {
    margin: 0 1% 3% 0;
  }
}
@media all and (max-width: 639px) {
  .bnr-column6 > .child {
    width: 98%;
    margin: 0 auto 25px;
  }
  .bnr-column6 > .child:nth-child(3n) {
    margin: 0 auto 3% 0;
  }
}

/* slick
----------------------------------*/
#slider-wrap {
  position: relative;
  margin: 10px auto;
}

.slider-item {
  width: 100%;
  max-width: 700px;
  border: 2px solid #ccc9c9;
  padding: 25px !important;
  background: #fff;
}

.slide-arrow {
  position: absolute;
  top: 50%;
  z-index: 200;
  width: 20px;
  height: 20px;
  top: 50%;
  margin-top: -10px;
  transform: rotate(45deg);
  cursor: pointer;
}
@media all and (max-width: 639px) {
  .slide-arrow {
    width: 15px;
    height: 15px;
    margin-top: -7px;
  }
}
.slide-arrow.prev-arrow {
  left: 50%;
  margin-left: -370px;
  border-bottom: solid 2px;
  border-left: solid 2px;
  border-color: #CE001D;
}
@media all and (max-width: 1200px) {
  .slide-arrow.prev-arrow {
    left: 10px;
    margin-left: 0;
  }
}
@media all and (max-width: 639px) {
  .slide-arrow.prev-arrow {
    border-color: #ccc9c9;
  }
}
.slide-arrow.next-arrow {
  right: 50%;
  margin-right: -370px;
  border-top: solid 2px;
  border-right: solid 2px;
  border-color: #CE001D;
}
@media all and (max-width: 1200px) {
  .slide-arrow.next-arrow {
    right: 10px;
    margin-right: 0;
  }
}
@media all and (max-width: 639px) {
  .slide-arrow.next-arrow {
    border-color: #ccc9c9;
  }
}

/*news_box
----------------------------------*/
.news_box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.news_box .news_title {
  width: 20%;
}
.news_box .news_list,
.news_box .news_contents {
  width: 76%;
}

.top_image {
  height: 240px;
}
@media all and (max-width: 639px) {
  .top_image {
    height: 160px;
  }
}

.common_image {
  position: relative;
  overflow: hidden;
}
.common_image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
}

/* top_works
----------------------------------*/
.top_works {
  max-width: 100%;
  margin-left: auto;
}

/* slick_list
----------------------------------*/
.slick_list {
  margin-bottom: 56px;
}
.slick_list .top_blog {
  margin-right: 32px;
}

/* top_blog
----------------------------------*/
#top_1 .top_blog .inner {
  color: #fff;
}

.top_blog {
  display: block;
  position: relative;
  color: #221515;
}
.top_blog:hover {
  color: #6d6a66;
  opacity: 0.8;
}
.top_blog .inner {
  padding: 24px 24px 24px;
}

.date {
  display: block;
  font-size: 1.2rem;
}

.date_entry {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 1.2rem;
  font-weight: 500;
}

.top_blog_title {
  margin: 8px 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top_blog_txt {
  font-size: 1.3rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.more {
  position: absolute;
  bottom: 16px;
  right: 16px;
  color: #CE001D;
  font-size: 1.2rem;
}
.more::after {
  margin-left: 0.5em;
  font-family: "Font Awesome 5 Free";
  content: "\f0da";
  font-weight: 900;
}

.top_blog_category {
  position: absolute;
  bottom: 8px;
  left: 8px;
  z-index: 2;
  padding: 0.2em 2em;
  background-color: #fff;
  border: 1px solid #CE001D;
  border-radius: 5em;
  color: #CE001D;
  text-align: center;
}

.blog_topics li a {
  position: relative;
  display: block;
  padding: 16px;
  color: #CE001D;
  border-bottom: 1px dotted #ccc;
}
.blog_topics li a::after {
  position: absolute;
  top: 50%;
  right: 1%;
  transform: translateY(-50%);
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  color: #CE001D;
}
.blog_topics li a:hover {
  background-color: #CE001D;
}
.blog_topics li a .topics_detail {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  align-items: center;
}
.blog_topics li a .topics_detail .image {
  width: 16%;
}
.blog_topics li a .topics_detail .text {
  width: 80%;
  margin-left: 10px;
}
.blog_topics li a .time_date {
  width: 104px;
  color: #CE001D;
  font-size: 1.2rem;
}

.slide_list,
.slide_list2 {
  position: relative;
  display: none;
}
.slide_list li,
.slide_list2 li {
  margin-right: 0.1%;
}
.slide_list li img,
.slide_list2 li img {
  width: auto;
  height: 350px;
  transition: filter 0.2s ease-in;
  filter: saturate(0.95);
}
.slide_list li:hover img,
.slide_list2 li:hover img {
  filter: saturate(0.4);
}
@media all and (max-width: 639px) {
  .slide_list li,
  .slide_list2 li {
    margin-right: 2%;
  }
  .slide_list li img,
  .slide_list2 li img {
    height: 90px;
  }
}

.slide_list3,
.slide_list4 {
  gap: 10px;
  text-align: center;
}
.slide_list3 img,
.slide_list4 img {
  height: 400px;
  width: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: filter 0.2s ease-in;
}
@media all and (max-width: 1100px) {
  .slide_list3 img,
  .slide_list4 img {
    height: 200px;
    width: 225px;
  }
}
@media all and (max-width: 639px) {
  .slide_list3 img,
  .slide_list4 img {
    height: 150px;
    width: 220px;
  }
}

.name-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  flex-direction: row-reverse;
  font-weight: 600;
  margin: 10px auto 40px;
}
.name-box p {
  color: #9b0016;
}
.name-box p span {
  display: block;
  font-size: 1.3rem;
  color: #6d6a66;
}
@media all and (max-width: 639px) {
  .name-box p span {
    font-size: 12px;
  }
}
.name-box p:first-child {
  margin-left: 30px;
}

.about-txt {
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 70px;
       column-gap: 70px;
}
@media all and (max-width: 639px) {
  .about-txt {
    -moz-column-count: inherit;
         column-count: inherit;
  }
}

.txt {
  font-size: 1.4rem;
}
@media all and (max-width: 639px) {
  .txt {
    font-size: 1.2rem;
  }
}

.top-anchor {
  display: flex;
  max-width: 800px;
  margin: 30px auto 0;
  flex-wrap: wrap;
  justify-content: space-between;
}
.top-anchor li {
  width: 31%;
}
.top-anchor li a {
  display: block;
  width: 100%;
  text-align: center;
}
.top-anchor li img {
  max-width: 80%;
  margin: 0 auto;
}
.top-anchor li .anchor-title {
  position: relative;
  margin-top: 20px;
}
.top-anchor li .anchor-title span {
  padding: 10px 0;
  font-family: "YakuHanJP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 700;
  letter-spacing: 0.15em;
  border-top: 0.9px solid #CE001D;
  border-bottom: 0.9px solid #CE001D;
  letter-spacing: 0.15em;
}
@media all and (max-width: 639px) {
  .top-anchor li .anchor-title span {
    display: block;
    font-size: 1.2rem;
    line-height: 1.3;
    padding: 6px 0;
  }
}
.top-anchor li .anchor-title:after {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  bottom: -30px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 12.5px 0 12.5px;
  border-color: #CE001D transparent transparent transparent;
}

/* top_main
----------------------------------*/
.top_main {
  overflow: hidden;
  margin-bottom: 20px;
}
.top_main .inner {
  position: relative;
  margin: 40px 0 60px;
}
.top_main .inner .top_main_contents {
  position: relative;
  max-width: calc(100% - 100px);
  margin: 0 auto;
}
.top_main .inner .top_main_contents .top_main_txt {
  position: relative;
  width: 750px;
  left: 0%;
  max-width: 100%;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  padding: 35px 50px;
}
.top_main .inner .top_main_contents .top_main_img {
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 40px;
  width: 800px;
  max-width: 100%;
}
.top_main .inner .top_main_contents .top_main_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
@media all and (max-width: 896px) {
  .top_main .inner .top_main_contents .top_main_img {
    display: none;
  }
}
.top_main .inner .top_main_contents .top_main_img_small {
  display: none;
}
@media all and (max-width: 896px) {
  .top_main .inner .top_main_contents .top_main_img_small {
    display: block;
    margin-bottom: 30px;
  }
}
@media all and (max-width: 896px) {
  .top_main .inner .top_main_contents {
    max-width: 90%;
    margin: auto;
  }
  .top_main .inner .top_main_contents .top_main_txt {
    left: 0%;
    padding: 15px;
  }
}
@media all and (max-width: 639px) {
  .top_main .inner .top_main_contents {
    max-width: 95%;
  }
}

.clinic-list li {
  margin-bottom: 30px;
}
.clinic-list li a {
  display: block;
  width: 100%;
  height: 280px;
  overflow: hidden;
}
.clinic-list li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: contain;";
}
.clinic-list li p {
  font-size: 1.4rem;
  padding: 5px;
  line-height: 1.5;
}
@media all and (max-width: 639px) {
  .clinic-list li a {
    height: 200px;
  }
  .clinic-list li a img {
    -o-object-fit: cover;
       object-fit: cover;
    font-family: "object-fit: cover;";
  }
  .clinic-list li p {
    font-size: 13px;
  }
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: 50px;
}
.feature-list > li {
  width: 31.333%;
  position: relative;
  margin: 0 1% 80px;
  background: #f6f6f6;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
@media all and (max-width: 639px) {
  .feature-list > li {
    width: 95%;
    margin: 0 auto 50px;
  }
  .feature-list > li:last-child {
    margin: 0 auto;
  }
}
.feature-list > li:nth-child(3n+2) {
  transform: translateY(40px);
}
@media all and (max-width: 639px) {
  .feature-list > li:nth-child(3n+2) {
    transform: none;
  }
}
.feature-list > li:nth-child(3n) {
  transform: translateY(80px);
}
@media all and (max-width: 639px) {
  .feature-list > li:nth-child(3n) {
    transform: none;
  }
}
.feature-list > li .feature-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.feature-list > li .feature-inner:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 97%;
  height: 97%;
  border: 2px solid #fff;
}
@media all and (max-width: 639px) {
  .feature-list > li .feature-inner:before {
    border: 1px solid #fff;
  }
}
.feature-list > li figure {
  height: 260px;
}
.feature-list > li figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
@media all and (max-width: 896px) {
  .feature-list > li figure {
    width: 100%;
    height: auto;
  }
}
.feature-list > li .feature-num {
  display: block;
  position: absolute;
  text-align: center;
  font-size: 6rem;
  line-height: 1;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #fff;
  left: 30px;
  top: -30px;
  z-index: 3;
  text-shadow: 1px 1px 0px #ccc9c9, -1px 1px 0px #ccc9c9, 1px -1px 0px #ccc9c9, -1px -1px 0px #ccc9c9, 1px 0px 0px #ccc9c9, 0px 1px 0px #ccc9c9, -1px 0px 0px #ccc9c9, 0px -1px 0px #ccc9c9;
}
.feature-list > li .feature-num:before {
  position: absolute;
  content: "Feature";
  left: -18px;
  top: -20px;
  color: #ccc9c9;
  text-shadow: none;
  transform: rotate(-13deg);
  font-size: 2.4rem;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em;
}
@media all and (max-width: 639px) {
  .feature-list > li .feature-num:before {
    font-size: 1.8rem;
    left: -14px;
    top: -35px;
  }
}
.feature-list > li .feature-num:first-letter {
  font-size: 5rem;
}
@media all and (max-width: 639px) {
  .feature-list > li .feature-num {
    height: 70px;
    line-height: 70px;
    font-size: 4.5rem;
  }
  .feature-list > li .feature-num:first-letter {
    font-size: 3.5rem;
  }
}
.feature-list > li .feature-txt {
  position: relative;
  padding: 15px 15px 20px;
  flex: 1;
  font-size: 1.4rem;
}
@media all and (max-width: 639px) {
  .feature-list > li .feature-txt {
    padding: 20px 10px;
    font-size: 1.2rem;
  }
}
.feature-list > li .feature-title {
  font-size: 2rem;
  line-height: 1.4;
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  color: #CE001D;
  margin-bottom: 20px;
}
@media all and (max-width: 639px) {
  .feature-list > li .feature-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
}

.article-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.article-box .left {
  width: 30%;
}
.article-box .right {
  width: 68%;
}
@media all and (max-width: 896px) {
  .article-box {
    padding: 0 10px;
  }
  .article-box .left {
    width: 100%;
  }
  .article-box .right {
    width: 100%;
  }
}

.mtext-top {
  font-size: 2.4rem;
  letter-spacing: 0.2rem;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.7;
  color: #CE001D;
}
.mtext-top.type1 {
  margin: 0 auto -25px;
  z-index: 3;
}
.mtext-top span {
  position: relative;
  display: inline-block;
  padding-top: 26px;
  padding-left: 5px;
  padding-right: 5px;
  font-size: 3rem;
  line-height: 1.2;
}
.mtext-top span:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  color: #fdfdfd;
  transform: translateX(-50%);
  width: 80px;
  height: 24px;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26385/point.png) no-repeat center/contain;
}
@media all and (max-width: 639px) {
  .mtext-top {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  .mtext-top.type1 {
    margin: 0 auto -15px;
  }
  .mtext-top span {
    padding-top: 20px;
    font-size: 2rem;
  }
  .mtext-top span:before {
    width: 60px;
    height: 18px;
  }
}

.half-box {
  width: 50%;
  margin-left: auto;
  padding: 40px;
  color: #fff;
}
@media all and (max-width: 639px) {
  .half-box {
    padding: 25px 15px;
    width: 100%;
  }
}

.greet-lead-box {
  max-width: 1000px;
  padding: 35px 30px;
  background: #fff;
  margin: -50px auto 0;
  position: relative;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
@media all and (max-width: 639px) {
  .greet-lead-box {
    padding: 20px 15px;
    margin-top: 0;
  }
}

.top-business-list {
  padding-bottom: 40px;
}
.top-business-list li {
  position: relative;
}
.top-business-list li:nth-child(2) {
  transform: translateY(50px);
}
@media all and (max-width: 639px) {
  .top-business-list li:nth-child(2) {
    transform: none;
  }
}
.top-business-list figure {
  box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;
  margin-bottom: 20px;
}
@media all and (max-width: 639px) {
  .top-business-list {
    padding: 0 20px;
  }
}

.top-business-title {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}
.top-business-title:before {
  position: absolute;
  content: "";
  left: 50%;
  bottom: -40px;
  width: 1px;
  height: 30px;
  background: #fff;
  z-index: 2;
}
.top-business-title .ja {
  display: block;
  font-size: 2.4rem;
  letter-spacing: 0.15em;
}
.top-business-title .eng {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em;
  font-size: 1.1em;
  color: #e2c4a1;
}
@media all and (max-width: 639px) {
  .top-business-title .eng {
    font-size: 1.3rem;
  }
  .top-business-title .ja {
    font-size: 1.8rem;
  }
}

.list6 {
  display: flex;
  flex-wrap: wrap;
}
.list6 li {
  width: calc((100% - 60px) / 6);
  margin-right: 12px;
}
.list6 li:nth-child(6n) {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .list6 li:nth-child(6n) {
    margin-right: auto;
  }
}
@media all and (max-width: 639px) {
  .list6 {
    justify-content: space-between;
  }
  .list6 li {
    width: 48%;
    margin-right: auto;
    margin-bottom: 20px;
  }
}

.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 2s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.1s forwards;
}
.js-span-text.on span:nth-child(2) {
  animation: text 2s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.2s forwards;
}
.js-span-text.on span:nth-child(3) {
  animation: text 2s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.3s forwards;
}
.js-span-text.on span:nth-child(4) {
  animation: text 2s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.4s forwards;
}
.js-span-text.on span:nth-child(5) {
  animation: text 2s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.5s forwards;
}
.js-span-text.on span:nth-child(6) {
  animation: text 2s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.6s forwards;
}
.js-span-text.on span:nth-child(7) {
  animation: text 2s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.7s forwards;
}
.js-span-text.on span:nth-child(8) {
  animation: text 2s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.8s forwards;
}
.js-span-text.on span:nth-child(9) {
  animation: text 2s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.9s forwards;
}
.js-span-text.on span:nth-child(10) {
  animation: text 2s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1s forwards;
}
.js-span-text.on span:nth-child(11) {
  animation: text 2s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.1s forwards;
}
.js-span-text.on span:nth-child(12) {
  animation: text 2s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.2s forwards;
}
.js-span-text.on span:nth-child(13) {
  animation: text 2s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.3s forwards;
}
.js-span-text.on span:nth-child(14) {
  animation: text 2s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.4s forwards;
}
.js-span-text.on span:nth-child(15) {
  animation: text 2s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.5s forwards;
}
.js-span-text.on span:nth-child(16) {
  animation: text 2s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.6s forwards;
}
.js-span-text.on span:nth-child(17) {
  animation: text 2s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.7s forwards;
}
.js-span-text.on span:nth-child(18) {
  animation: text 2s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.8s forwards;
}
.js-span-text.on span:nth-child(19) {
  animation: text 2s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.9s forwards;
}
.js-span-text.on span:nth-child(20) {
  animation: text 2s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2s forwards;
}
.js-span-text.on span:nth-child(21) {
  animation: text 2s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.1s forwards;
}
.js-span-text.on span:nth-child(22) {
  animation: text 2s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.2s forwards;
}
.js-span-text.on span:nth-child(23) {
  animation: text 2s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.3s forwards;
}
.js-span-text.on span:nth-child(24) {
  animation: text 2s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.4s forwards;
}
.js-span-text.on span:nth-child(25) {
  animation: text 2s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.5s forwards;
}
.js-span-text.on span:nth-child(26) {
  animation: text 2s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.6s forwards;
}
.js-span-text.on span:nth-child(27) {
  animation: text 2s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.7s forwards;
}
.js-span-text.on span:nth-child(28) {
  animation: text 2s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.8s forwards;
}
.js-span-text.on span:nth-child(29) {
  animation: text 2s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.9s forwards;
}
.js-span-text.on span:nth-child(30) {
  animation: text 2s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3s forwards;
}
.js-span-text.on span:nth-child(31) {
  animation: text 2s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.1s forwards;
}
.js-span-text.on span:nth-child(32) {
  animation: text 2s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.2s forwards;
}
.js-span-text.on span:nth-child(33) {
  animation: text 2s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.3s forwards;
}
.js-span-text.on span:nth-child(34) {
  animation: text 2s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.4s forwards;
}
.js-span-text.on span:nth-child(35) {
  animation: text 2s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.5s forwards;
}

@keyframes text {
  0% {
    opacity: 0;
    transform: translateX(-20px) translateY(-10px) scale(1.5);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
spc {
  padding: 0.3em;
}

.TextTyping span {
  display: none;
}

.TextTyping::after {
  content: "｜";
  animation: typinganime 0.8s ease infinite;
}

@keyframes typinganime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.glowAnime span {
  opacity: 0;
}

.glowAnime.glow span {
  animation: glow_anime_on 1s ease-out forwards;
}

@keyframes glow_anime_on {
  0% {
    opacity: 0;
    text-shadow: 0 0 0 #fff, 0 0 0 #fff;
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 10px #fff, 0 0 15px #fff;
  }
  99% {
    opacity: 1;
    text-shadow: 0 0 0 #fff, 0 0 0 #fff;
  }
  100% {
    opacity: 1;
    text-shadow: none;
  }
}
.mini {
  font-size: 90%;
}

.mini2 {
  font-size: 85%;
}

.list-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.list-btn li {
  width: 45%;
  margin: 0 auto;
}
.list-btn li a {
  position: relative;
  display: block;
  box-sizing: border-box;
  box-shadow: 4px 4px #eee;
  background: #fff;
  border-radius: 5px;
  border: 1px solid #CE001D;
  box-shadow: 0 0 0 4px rgba(206, 0, 29, 0.2);
  color: #6d6a66;
  padding: 20px 5px;
  text-align: center;
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  width: 100%;
  height: 100%;
  font-size: 1.6rem;
}
.list-btn li a:hover {
  background: rgba(206, 0, 29, 0.1);
}

.list-btn2 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.list-btn2 li {
  width: 32%;
  margin: 0 1.995% 20px 0;
}
.list-btn2 li:first-child h2 {
  text-align: center;
}
.list-btn2 li:first-child h2 span {
  display: block;
  line-height: 1.4;
}
.list-btn2 li:first-child h2 .eng {
  color: #CE001D;
  font-size: 2.2rem;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.list-btn2 li:first-child h2 .ja {
  color: #6d6a66;
  font-size: 1.6rem;
}
@media all and (max-width: 1200px) {
  .list-btn2 li:first-child h2 .eng {
    font-size: 2rem;
  }
  .list-btn2 li:first-child h2 .ja {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
  }
}
@media all and (max-width: 639px) {
  .list-btn2 li:first-child h2 .eng {
    font-size: 1.8rem;
  }
  .list-btn2 li:first-child h2 .ja {
    font-size: 1.3rem;
  }
}
.list-btn2 li:not(:first-of-type) a {
  position: relative;
  border: 1px solid #ccc9c9;
  box-sizing: border-box;
  display: block;
  background: #fff;
  color: #6d6a66;
  padding: 25px 5px;
  text-align: center;
  line-height: 1.6;
  font-size: 1.6rem;
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  overflow: hidden;
  box-shadow: 4px 4px #ccc9c9;
}
.list-btn2 li:not(:first-of-type) a:before {
  position: absolute;
  content: "";
  width: 70px;
  height: 70px;
  border-bottom: 0.2em solid #ccc9c9;
  border-right: 0.2em solid #ccc9c9;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
.list-btn2 li:nth-child(3n) {
  margin-right: 0;
}
@media all and (max-width: 1200px) {
  .list-btn2 li:not(:first-of-type) a {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    padding: 20px 5px;
  }
}
@media all and (max-width: 639px) {
  .list-btn2 li {
    width: 95%;
    margin: 0 auto 12px;
  }
  .list-btn2 li:last-child {
    margin: 0 auto;
  }
  .list-btn2 li:not(:first-of-type) a {
    font-size: 1.3rem;
    padding: 15px 5px;
  }
  .list-btn2 li:nth-child(3n) {
    margin-right: auto;
  }
}
.list-btn2 li a:hover {
  background: #d8d6d6;
}
.list-btn2 li a:hover span {
  color: #fff;
}
.list-btn2 li a:hover:before {
  border-bottom: 0.2em solid #e8e4de;
  border-right: 0.2em solid #e8e4de;
}

.deco {
  position: relative;
}
.deco:before, .deco:after {
  content: "";
  position: absolute;
  width: 60%;
  height: 500px;
}
@media all and (max-width: 639px) {
  .deco:before, .deco:after {
    width: 70%;
  }
}
.deco:before {
  right: 0;
  top: 0;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26385/deco01.png) no-repeat right top/contain;
}
.deco:after {
  left: 0;
  bottom: 0;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26385/deco02.png) no-repeat left bottom/contain;
}
.deco.type1:before, .deco.type1:after {
  content: "";
  position: absolute;
  width: 40%;
  height: 400px;
  opacity: 0.4;
}
@media all and (max-width: 639px) {
  .deco.type1:before, .deco.type1:after {
    width: 60%;
    opacity: 0.2;
  }
}
.deco.type2:before, .deco.type2:after {
  content: "";
  position: absolute;
  width: 40%;
  height: 400px;
  opacity: 0.7;
}
@media all and (max-width: 639px) {
  .deco.type2:before, .deco.type2:after {
    width: 60%;
    opacity: 0.5;
  }
}
.deco .inner {
  position: relative;
  z-index: 2;
}

.img-wk:before {
  left: 10px;
}

.img-wk2:before {
  right: 10px;
}

.img-wk,
.img-wk2 {
  position: relative;
  width: calc(100% - 20px);
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
}
.img-wk:before,
.img-wk2:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 10px;
  border: 1px solid #ddd;
}
@media all and (max-width: 639px) {
  .img-wk,
  .img-wk2 {
    width: calc(100% - 10px);
    margin-left: auto;
    margin-right: 0;
  }
  .img-wk:before,
  .img-wk2:before {
    right: 10px;
    left: auto;
  }
}

.icon {
  text-align: center;
  margin: 0 auto 20px;
  width: 90px;
}
@media all and (max-width: 896px) {
  .icon {
    margin: 0 auto 10px;
    width: 50px;
  }
}

@keyframes fuwafuwas {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, -5px);
  }
  100% {
    transform: translate(0, 0);
  }
}
.fuwafuwas {
  animation-name: fuwafuwas;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
  -webkit-animation-name: fuwafuwas;
  -webkit-animation-duration: 4s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease;
  -moz-animation-name: fuwafuwas;
  -moz-animation-duration: 4s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: ease;
  -ms-animation-name: fuwafuwas;
  -ms-animation-duration: 4s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: ease;
}

.btn-list2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.btn-list2 li {
  width: 48%;
}
@media all and (max-width: 639px) {
  .btn-list2 {
    flex-direction: column;
  }
  .btn-list2 li {
    width: 100%;
  }
  .btn-list2 li:not(:last-of-type) {
    margin-bottom: 15px;
  }
}

.bnr-btn {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
}
.bnr-btn a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  transition: all 0.2s ease-in;
  background: #CE001D;
  background: repeating-linear-gradient(135deg, #CE001D 0, #CE001D 5px, #d8001e 5px, #d8001e 10px);
}
.bnr-btn a figure {
  width: 70%;
  height: 240px;
  overflow: hidden;
  position: relative;
  margin-left: auto;
}
.bnr-btn a figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  transition: all 0.8s ease;
  display: block;
}
@media all and (max-width: 639px) {
  .bnr-btn a figure {
    width: 55%;
    height: 140px;
  }
}
.bnr-btn a p {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: block;
  z-index: 2;
  font-size: 12px;
}
.bnr-btn a p span {
  padding: 3px 8px;
  color: #fff;
  background: #ccc9c9;
  display: inline-block;
}
.bnr-btn a h3 {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: block;
  transform-origin: right bottom;
  z-index: 2;
  line-height: 1.5;
}
.bnr-btn a h3 span {
  transition: all 0.8s ease;
  display: block;
}
.bnr-btn a h3 .eng {
  text-shadow: 0 0 6px rgba(109, 106, 102, 0.8);
  font-size: 5rem;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #fff;
  line-height: 1.5;
}
.bnr-btn a h3 .ja {
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 2rem;
  border: 1px solid #fff;
  padding: 3px 10px;
  display: inline-block;
  text-align: center;
  background: #fff;
  color: #CE001D;
}
@media all and (max-width: 896px) {
  .bnr-btn a p {
    right: 10px;
    bottom: 10px;
    font-size: 10px;
  }
  .bnr-btn a p span {
    padding: 2px 6px;
  }
  .bnr-btn a h3 {
    left: 10px;
    bottom: 10px;
  }
  .bnr-btn a h3 .ja {
    font-size: 1.2rem;
    line-height: 1.3;
    letter-spacing: 0.1em;
    text-align: left;
  }
  .bnr-btn a h3 .eng {
    font-size: 2.3rem;
  }
}
.bnr-btn a:hover figure img {
  transform: scale(1.2);
}
.bnr-btn a:hover h3 span {
  text-shadow: none;
}
.bnr-btn a:hover h3 .ja {
  background: transparent;
  color: #fff;
}

.tcenter_pc {
  text-align: center;
}
@media all and (max-width: 639px) {
  .tcenter_pc {
    text-align: left;
  }
}

.tcenter_space {
  text-align: center;
  text-wrap: balance;
  word-break: auto-phrase;
}

.flow-lead-box {
  max-width: 1000px;
  padding: 30px;
  background: #fefefe;
  margin: -100px auto 0;
  position: relative;
  box-shadow: 0 0 8px rgba(109, 106, 102, 0.1);
}
@media all and (max-width: 639px) {
  .flow-lead-box {
    max-width: 94%;
    padding: 15px;
    margin-top: -30px;
  }
}

.feature-dl .inner {
  display: flex;
  flex-wrap: wrap;
  background: rgba(254, 254, 254, 0.6);
  padding: 20px;
  box-shadow: 0 0 10px rgba(109, 106, 102, 0.1);
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - 20px);
}
.feature-dl .inner dt {
  position: relative;
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 2rem;
  color: #fefefe;
  z-index: 1;
  background: #b50019;
  top: 0;
  left: -30px;
  padding: 6px 12px;
}
.feature-dl .inner dd {
  flex: 1;
}
.feature-dl .inner:not(:first-child) {
  margin-top: 40px;
}
@media all and (max-width: 639px) {
  .feature-dl .inner {
    flex-direction: column;
  }
  .feature-dl .inner dt {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
}
.feature-dl .feature-title {
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  letter-spacing: 0.05em;
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  color: #ccc9c9;
  padding-bottom: 5px;
  border-bottom: 1px solid #ccc9c9;
  margin-bottom: 20px;
}
@media all and (max-width: 639px) {
  .feature-dl .feature-title {
    font-size: 1.4rem;
  }
}

.top-bnr-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 50px;
  padding: 0 20px;
}
@media all and (max-width: 639px) {
  .top-bnr-list {
    grid-template-columns: 1fr;
    gap: 50px 0;
    padding: 0 10px;
  }
}
.top-bnr-list .top-bnr-wrap {
  display: block;
  height: 100%;
  position: relative;
}
.top-bnr-list .top-bnr-wrap:hover figure img {
  transform: scale(1.1);
}
.top-bnr-list .top-bnr-wrap:hover .morebtn {
  background: #CE001D;
  color: #fff;
}
.top-bnr-list .top-bnr-title {
  position: absolute;
  left: -10px;
  top: 10px;
  z-index: 2;
}
.top-bnr-list .top-bnr-title span {
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: #fff;
  padding: 8px;
  font-size: 1.6rem;
  color: #111;
  border-left: 3px solid #e5e3e3;
}
.top-bnr-list .top-bnr-title span num {
  font-size: 2rem;
  margin-right: 5px;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #b3afaf;
}
@media all and (max-width: 639px) {
  .top-bnr-list .top-bnr-title span {
    background: #fff;
    font-size: 1.3rem;
  }
  .top-bnr-list .top-bnr-title span num {
    font-size: 1.6rem;
  }
}
.top-bnr-list figure {
  width: 100%;
  height: 320px;
  overflow: hidden;
}
.top-bnr-list figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.2s ease-in all;
}
@media all and (max-width: 639px) {
  .top-bnr-list figure {
    height: 220px;
  }
}
.top-bnr-list .top-bnr-txt {
  max-width: 92%;
  padding: 20px 20px 50px;
  background: #fff;
  position: relative;
  margin: -30px auto 0;
  color: #6d6a66;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  letter-spacing: 0.1rem;
}
@media all and (max-width: 639px) {
  .top-bnr-list .top-bnr-txt {
    padding: 15px 15px 35px;
  }
}
.top-bnr-list .morebtn {
  text-align: center;
  width: 160px;
  background: #fff;
  border: 1px solid #CE001D;
  color: #CE001D;
  border-radius: 40px;
  position: relative;
  z-index: 2;
  padding: 5px 0;
  margin: -20px auto 0;
  font-size: 90%;
  transition: 0.2s ease-in all;
}

.top-bnr-list2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
}
.top-bnr-list2 > li {
  width: 33.3%;
  position: relative;
  margin-bottom: 20px;
}
.top-bnr-list2 > li.col2 {
  width: 49%;
}
@media all and (max-width: 639px) {
  .top-bnr-list2 > li.col2 {
    width: 48%;
  }
}
.top-bnr-list2 > li.col2 a .top-bnr-img {
  height: 200px;
}
.top-bnr-list2 > li a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}
.top-bnr-list2 > li a:hover {
  transition: all 0.2s ease-in;
}
.top-bnr-list2 > 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-list2 > 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-list2 > li a:hover .btn-arrow i {
  border-bottom-color: #fefefe;
}
.top-bnr-list2 > li a:hover .btn-arrow i:before {
  border-right-color: #fefefe;
}
.top-bnr-list2 > li a:hover .top-bnr-img img {
  padding: 0;
  transform: scale(1.05);
  opacity: 0.9;
}
@media all and (max-width: 1200px) {
  .top-bnr-list2 {
    width: 98%;
  }
}
@media all and (max-width: 896px) {
  .top-bnr-list2 {
    width: 90%;
  }
}
@media all and (max-width: 639px) {
  .top-bnr-list2 {
    width: 98%;
    margin: 40px auto 0;
  }
  .top-bnr-list2 > li {
    width: 100%;
    margin-bottom: 20px;
  }
}
.top-bnr-list2 .top-bnr-img {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  background-image: linear-gradient(to top, #4f0000, #221515);
}
.top-bnr-list2 .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.2s ease-in;
  opacity: 0.35;
}
@media all and (max-width: 896px) {
  .top-bnr-list2 .top-bnr-img {
    height: 200px;
  }
}
.top-bnr-list2 .btn-arrow {
  width: 70px;
  height: 70px;
  position: absolute;
  right: 3%;
  bottom: 5%;
  text-align: center;
  line-height: 60px;
  border: 1px solid transparent;
  border-radius: 100%;
  transition: all 0.2s ease-in;
}
.top-bnr-list2 .btn-arrow::before, .top-bnr-list2 .btn-arrow::after {
  border-radius: 100%;
  box-sizing: inherit;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.top-bnr-list2 .btn-arrow::before {
  border: 1px solid transparent;
}
.top-bnr-list2 .btn-arrow::after {
  border: 0 solid transparent;
}
@media all and (max-width: 896px) {
  .top-bnr-list2 .btn-arrow {
    width: 50px;
    height: 50px;
  }
}
.top-bnr-list2 .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-list2 .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-list2 .top-bnr-title {
  font-weight: 500;
  padding: 15px 5px;
  line-height: 1.4;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 98%;
}
.top-bnr-list2 .top-bnr-title .eng {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  color: #fefefe;
  display: block;
  font-weight: 700;
}
.top-bnr-list2 .top-bnr-title .ja {
  display: block;
  color: #fefefe;
  font-size: 3.2rem;
}
@media all and (max-width: 896px) {
  .top-bnr-list2 .top-bnr-title .eng {
    font-size: 1.4rem;
  }
  .top-bnr-list2 .top-bnr-title .ja {
    font-size: 1.6rem;
  }
}
.top-bnr-list2 .top-bnr-txt {
  color: #222;
  padding: 10px;
  font-size: 1.4rem;
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.top-bnr-list2 .h-num {
  position: absolute;
  bottom: 5%;
  right: 2%;
  color: #333;
}
.top-bnr-list2 .h-num span {
  font-size: 2rem;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0 5px;
}
@media all and (max-width: 896px) {
  .top-bnr-list2 .h-num {
    font-size: 1.3rem;
  }
  .top-bnr-list2 .h-num span {
    font-size: 1.6rem;
  }
}

.med-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.med-wrap .med-side {
  width: 20%;
  position: sticky;
  left: 0;
  top: 110px;
}
@media all and (max-width: 896px) {
  .med-wrap .med-side {
    top: 20px;
  }
}
@media all and (max-width: 639px) {
  .med-wrap .med-side {
    width: 100%;
  }
}
.med-wrap .med-side-category li a {
  display: block;
  background: #fff;
  color: #6d6a66;
  padding: 10px;
  position: relative;
  transition: 0.2s ease-in all;
}
.med-wrap .med-side-category li a:after {
  color: #e8e4de;
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: 900;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
}
.med-wrap .med-side-category li a:hover {
  background: #d8001e;
  color: #fff;
}
.med-wrap .med-side-category li a:hover:after {
  color: #fff;
}
.med-wrap .med-side-category li:not(:last-of-type) {
  margin-bottom: 8px;
}
@media all and (max-width: 639px) {
  .med-wrap .med-side-category {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .med-wrap .med-side-category li {
    width: 48%;
  }
  .med-wrap .med-side-category li a {
    line-height: 1.4;
    font-size: 13px;
  }
}
.med-wrap .med-block {
  flex: 1;
  margin-left: 25px;
}
@media all and (max-width: 639px) {
  .med-wrap .med-block {
    flex: 0 1 auto;
    margin: 30px 0 0;
  }
}

.list-concern-box {
  padding: 40px 20px 20px;
  border-radius: 10px;
  background: #fff;
}
.list-concern-box .list-concern {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.list-concern-box .list-concern li {
  position: relative;
  width: 48%;
  padding: 15px 15px 15px 50px;
  font-size: 1.8rem;
  margin-bottom: 10px;
  border-bottom: 2px solid #ccbf94;
}
.list-concern-box .list-concern li::before {
  position: absolute;
  content: "";
  transform: translateY(-50%);
  left: 4px;
  top: 50%;
  height: 35px;
  width: 35px;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26385/check.png) no-repeat center/contain;
}
@media all and (max-width: 639px) {
  .list-concern-box {
    padding: 25px 15px 15px;
  }
  .list-concern-box .list-concern li {
    padding: 10px 10px 10px 40px;
    font-size: 1.3rem;
    width: 96%;
    margin: 0 auto 5px;
  }
  .list-concern-box .list-concern li::before {
    height: 25px;
    width: 25px;
  }
  .list-concern-box .list-concern li:last-child {
    margin: 0 auto;
  }
}

.top-link {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media all and (max-width: 896px) {
  .top-link {
    margin: auto;
    width: 80%;
  }
}
@media all and (max-width: 639px) {
  .top-link {
    width: 100%;
  }
}
.top-link li {
  width: 19.2%;
  margin: 0.5% 0;
}
.top-link li a {
  display: block;
  position: relative;
  height: 260px;
  overflow: hidden;
  background: #000;
}
@media all and (max-width: 1200px) {
  .top-link li a {
    height: 230px;
  }
}
.top-link li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  transition: 0.2s all ease-in;
}
.top-link li a:hover img {
  opacity: 0.8;
  transform: scale(1.1);
}
@media all and (max-width: 896px) {
  .top-link li {
    width: 49%;
    margin: 1% 0;
  }
  .top-link li a {
    height: 200px;
  }
  .top-link li:last-child {
    margin-bottom: 0;
  }
}
.top-link li .menu-btn-title {
  position: absolute;
  padding: 10px 5px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-feature-settings: "pkna";
  left: 15px;
  top: 15px;
  color: #6d6a66;
  background: rgba(254, 254, 254, 0.9);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  z-index: 2;
  font-size: 1.8rem;
  letter-spacing: 0.25em;
}
@media all and (max-width: 896px) {
  .top-link li .menu-btn-title {
    padding: 8px 4px;
    font-size: 1.4rem;
  }
}
.top-link li .arrow {
  position: absolute;
  stroke-miterlimit: 5;
  stroke-width: 1;
  stroke: #fefefe;
  right: 15px;
  bottom: 15px;
  z-index: 4;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 1.1rem;
  text-align: center;
  color: #fefefe;
}
.top-link li .arrow:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 2px solid #fefefe;
  border-radius: 100%;
}
@media all and (max-width: 896px) {
  .top-link li .arrow {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 0.9rem;
  }
}

.top-list2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}
@media all and (max-width: 639px) {
  .top-list2 {
    max-width: 400px;
    width: 95%;
  }
}
.top-list2 li {
  position: relative;
  text-align: center;
  width: 31%;
  margin: 30px 1% 0;
  padding: 15px 10px 30px;
  box-shadow: 0 0 8px rgba(206, 0, 29, 0.06);
  background: #f6eee3;
  background: linear-gradient(16deg, rgba(169, 200, 234, 0.2) 0%, rgba(169, 200, 234, 0.2) 25%, transparent 25%, transparent 96%, rgba(169, 218, 234, 0.15) 96%, rgba(169, 218, 234, 0.15) 100%), linear-gradient(236deg, rgba(169, 200, 234, 0.15) 0%, rgba(169, 200, 234, 0.15) 53%, transparent 53%, transparent 59%, rgba(169, 200, 234, 0.1) 59%, rgba(169, 200, 234, 0.1) 100%), linear-gradient(284deg, rgba(169, 218, 234, 0.08) 0%, rgba(169, 218, 234, 0.08) 46%, transparent 46%, transparent 71%, rgba(195, 214, 233, 0.15) 71%, rgba(195, 214, 233, 0.15) 100%), linear-gradient(316deg, rgba(195, 214, 233, 0.15) 0%, rgba(195, 214, 233, 0.15) 26%, transparent 26%, transparent 49%, rgba(169, 200, 234, 0.1) 49%, rgba(169, 200, 234, 0.1) 100%), linear-gradient(90deg, #fff, #fff);
}
.top-list2 li img {
  display: block;
  width: 120px;
  margin: 0 auto 10px;
}
@media all and (max-width: 639px) {
  .top-list2 li {
    width: 100%;
    margin: 30px 0 0;
    padding: 5px 5px 25px;
  }
  .top-list2 li img {
    display: block;
    width: 80px;
  }
}
.top-list2 li .num {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 2rem;
  position: absolute;
  left: 50%;
  top: -20px;
  background: #fff;
  color: #7c98b5;
  width: 40px;
  height: 40px;
  line-height: 40px;
  transform: translateX(-50%);
  position: relative;
  z-index: 2;
  display: block;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0 0 0 4px #98b2ce;
}
.top-list2 li .txt {
  font-size: 1.8rem;
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  position: relative;
  color: #6d6a66;
  z-index: 2;
  line-height: 1.4;
}
.top-list2 li .txt .small {
  display: block;
  font-size: 0.8em;
}
@media all and (max-width: 639px) {
  .top-list2 li .txt {
    font-size: 1.4rem;
  }
}

.menu-list {
  width: 98%;
  margin: auto;
}
.menu-list.type1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.menu-list.type1 li {
  width: 48%;
  margin: 10px 0;
}
@media all and (max-width: 639px) {
  .menu-list.type1 li {
    width: 100%;
  }
}
.menu-list > li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 8px 4px;
}
.menu-list > li p {
  display: inline-block;
  line-height: 1.5;
}
.menu-list > li:before {
  background: radial-gradient(#aaa 20%, transparent 0) center center/8px 8px;
  content: "";
  display: inline-block;
  flex: 1;
  height: 4px;
  margin: 0 1.2em;
}
@media all and (max-width: 639px) {
  .menu-list > li:before {
    margin: 0 5px;
  }
}
.menu-list > li .left {
  order: -1;
  max-width: 65%;
  position: relative;
}
.menu-list > li .left:after {
  content: ".";
  display: inline-block;
  width: 0;
  color: transparent;
  pointer-events: none;
}
@media all and (max-width: 639px) {
  .menu-list > li .left {
    max-width: 65%;
  }
}
.menu-list > li .right {
  max-width: 35%;
  text-align: right;
  color: #CE001D;
}
.menu-list > li .right a {
  color: #6d6a66;
}
.menu-list > li .right a i.fa-file-pdf {
  color: #c6181f;
}
.menu-list > li .right a i {
  font-size: 110%;
  margin-right: 5px;
}

.txt-doc a {
  color: #6d6a66;
}
.txt-doc a i.fa-file-pdf {
  color: #c6181f;
}
.txt-doc a i {
  font-size: 110%;
  margin-right: 5px;
}

.txt-under {
  transition: all 0.3s ease;
}
.txt-under a {
  text-decoration: underline;
}
.txt-under a:hover {
  text-decoration: none;
}

.footer-contact {
  background: #9b0016;
  background: linear-gradient(135deg, #CE001D 18%, #9b0016 18%);
}
.footer-contact .footer-contact-box {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.footer-contact .footer-contact-box .left {
  width: 27%;
  position: relative;
}
.footer-contact .footer-contact-box .left .footer-title {
  margin-top: -20px;
  max-width: 200px;
  border: 1px solid #fff;
  border-radius: 10px;
  padding: 8px;
}
.footer-contact .footer-contact-box .right {
  width: 70%;
  font-size: 1.4rem;
}
.footer-contact .footer-contact-box .right .txt {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 20px;
}
@media all and (max-width: 639px) {
  .footer-contact .footer-contact-box {
    padding: 30px 15px;
  }
  .footer-contact .footer-contact-box .left {
    width: 100%;
    margin: 0 auto 20px;
  }
  .footer-contact .footer-contact-box .left .footer-title {
    width: 45%;
    position: absolute;
    right: 0;
    top: 10px;
  }
  .footer-contact .footer-contact-box .right {
    width: 100%;
    font-size: 1.1rem;
  }
  .footer-contact .footer-contact-box .right .txt {
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 0.1em;
  }
}

.contact-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.contact-list > li {
  flex: 1 0 auto;
  position: relative;
}
.contact-list > li:nth-child(2):before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  width: 1px;
  height: 50%;
  background: #fff;
  transform: rotate(8deg) translateY(-50%);
}
@media all and (max-width: 639px) {
  .contact-list > li:nth-child(2):before {
    transform: translateX(-50%);
    width: 90%;
    top: -1px;
    height: 1px;
    left: 50%;
  }
}
@media all and (max-width: 1200px) {
  .contact-list > li {
    flex: 0 1 auto;
    width: 48%;
  }
}
@media all and (max-width: 1200px) and (max-width: 1200px) {
  .contact-list > li:last-child {
    width: 80%;
    margin: 20px auto 0;
  }
}
@media all and (max-width: 1200px) and (max-width: 1200px) and (max-width: 639px) {
  .contact-list > li:last-child {
    margin-top: 0;
  }
}
@media all and (max-width: 639px) {
  .contact-list > li {
    width: 100%;
    margin: 0 auto 10px;
  }
}
.contact-list > li .bnr_tel {
  white-space: nowrap;
  position: relative;
  border: none;
  font-size: 3.5rem;
  line-height: 1;
}
@media all and (max-width: 639px) {
  .contact-list > li .bnr_tel {
    font-size: 3rem;
  }
}
.contact-list > li .bnr_tel:before {
  font-family: "Font Awesome 5 Free";
  content: "\f098";
  font-weight: 900;
}
.contact-list > li .bnr_fax {
  color: #fff;
  font-size: 2.8rem;
}
.contact-list > li .bnr_fax:before {
  font-family: "Font Awesome 5 Free";
  content: "\f1ac";
  font-weight: 900;
}
@media all and (max-width: 639px) {
  .contact-list > li .bnr_fax {
    font-size: 2rem;
  }
}
.contact-list > li .bnr_mail {
  color: #fff;
  font-size: 1.8rem;
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.contact-list > li .bnr_mail:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
}
@media all and (max-width: 639px) {
  .contact-list > li .bnr_mail {
    font-size: 1.3rem;
  }
}
.contact-list > li a,
.contact-list > li span {
  display: block;
  color: #fff;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  transition: all 0.3s ease;
  padding: 5px;
}
.contact-list > li a:before,
.contact-list > li span:before {
  font-size: 0.9em;
  margin-right: 8px;
  position: relative;
  display: inline-block;
}
@media all and (max-width: 639px) {
  .contact-list > li a,
  .contact-list > li span {
    margin: 0 auto;
    white-space: nowrap;
    width: 100%;
  }
}
.contact-list > li a:hover {
  opacity: 0.5;
}

.area-map {
  max-width: 500px;
  width: 95%;
  margin: 0 auto 50px;
  transition: all 0.3s ease;
}
@media all and (max-width: 639px) {
  .area-map {
    margin: 0 auto 25px;
  }
}

.grid {
  position: relative;
  margin: 0 auto !important;
  padding: 0 !important;
  width: 100% !important;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.grid-item {
  padding: 10px;
  background: #fefefe;
  transition: 0.3s ease-in-out;
  width: calc(33.3% - 7px) !important;
  margin-right: 10px;
  margin-bottom: 10px;
}
.grid-item .gallery {
  width: 100%;
  height: 240px;
  text-align: center;
  vertical-align: middle;
  overflow: hidden;
  margin-bottom: 5px;
  position: relative;
}
.grid-item table {
  font-size: 1.4rem;
}
.grid-item:nth-child(3n) {
  margin-right: 0px;
}
.grid-item a {
  display: block;
  text-align: center;
  width: 100%;
  height: 240px;
  margin-bottom: 10px;
  overflow: hidden;
  background: #fff;
}
.grid-item * {
  transition: 0.3s;
}
.grid-item h5 {
  font-size: 1.4rem;
  text-align: center;
  color: #6d6a66;
  font-weight: 400;
  letter-spacing: 0.2em;
}
.grid-item img {
  vertical-align: middle;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.grid-item .ttl {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 50%;
  opacity: 0;
  color: #6d6a66;
  letter-spacing: 0.2em;
  font-size: 13px;
}
.grid-item .ttl span {
  margin-top: 5px;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em;
  font-size: 11px;
  display: inline;
  background: #6d6a66;
  color: #fff;
  padding: 4px 20px;
  border-radius: 20px;
}
.grid-item a:hover .ttl {
  opacity: 1;
}
.grid-item a:hover img {
  opacity: 0.2;
  transform: scale(1.2);
}

@media all and (max-width: 896px) {
  .grid-item {
    transition: 0.3s ease-in-out;
    width: calc(100% - 0px) !important;
    margin-right: 0;
  }
  .grid-item:last-child {
    margin-bottom: 0;
  }
  .grid-item table {
    font-size: 1.2rem;
  }
  .grid-item .gallery {
    height: 200px;
  }
  .grid-item .gallery a {
    height: 200px;
  }
}
.works-ttl {
  font-size: 1.6rem;
  margin: 10px 0;
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.works-ttl span {
  font-size: 1.3rem;
  padding: 2px 10px;
  border-radius: 5px;
  background: #fdd000;
  color: #6d6a66;
  display: table;
  margin-bottom: 3px;
  letter-spacing: 0.05em;
}
@media all and (max-width: 896px) {
  .works-ttl {
    font-size: 1.3rem;
  }
  .works-ttl span {
    font-size: 1.1rem;
  }
}

.inner-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.inner-box .inner-left {
  max-width: 220px;
  width: 45%;
}
.inner-box .inner-right {
  max-width: 300px;
  width: 55%;
}
.inner-box .inner-main {
  width: 100%;
  margin-top: 35px;
}
@media all and (max-width: 639px) {
  .inner-box .inner-left {
    order: -1;
    width: 100%;
  }
  .inner-box .inner-right {
    order: 2;
    width: 100%;
  }
  .inner-box .inner-main {
    order: 1;
    margin: 25px auto;
  }
}

/* news_top */
.blog_topics.type1 {
  width: 100%;
}
.blog_topics li a {
  display: block;
  color: #221515;
  position: relative;
  padding: 15px;
  border-bottom: 1px dotted #ccc;
}
.blog_topics li a::after {
  position: absolute;
  top: 50%;
  right: 1%;
  transform: translateY(-50%);
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  color: #CE001D;
}
.blog_topics li a:hover {
  background-color: #f7f7f7;
}
.blog_topics li a .topics_detail {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  align-items: center;
}
.blog_topics li a .topics_detail .imgbox {
  width: 15%;
}
.blog_topics li a .topics_detail .textbox {
  width: 80%;
  margin-left: 10px;
}
.blog_topics li a .time_date {
  width: 120px;
  font-size: 1.2rem;
  color: #CE001D;
}

/*business_list*/
.business_list {
  position: relative;
  display: block;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 80px;
  margin-bottom: 80px;
}
.business_list .business_box {
  display: block;
  width: calc(33.3333333333% - 10px);
  position: relative;
  border-radius: 5px;
  margin-bottom: 30px;
  min-height: 400px;
}
.business_list .business_box:first-child {
  border-radius: 0 5px 5px 0;
}
.business_list .business_box:last-child {
  margin-right: 0;
  border-radius: 5px 0 0 5px;
}
.business_list .business_box:hover {
  z-index: 30;
  box-shadow: 0px 6px 9px 0px rgba(0, 0, 0, 0.3);
}
.business_list .business_box:hover .bg_area:before {
  opacity: 0.5;
  z-index: 10;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.business_list .business_box:hover .bg_area:after {
  opacity: 0.7;
}
.business_list .business_box:hover .service_txt {
  position: relative;
  max-height: 400px;
  margin-bottom: 43px;
  font-weight: 400;
  visibility: visible;
  opacity: 1;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
.business_list .business_box:hover h3 {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.business_list .business_box:hover h4 {
  background-color: #fff;
  color: #CE001D;
}
.business_list .text_box {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  height: 100%;
}
.business_list .text_box .num {
  position: relative;
  display: block;
  text-align: center;
  font-size: 3rem;
  color: #fff;
  z-index: 10;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.business_list .text_box h3 {
  position: relative;
  display: block;
  font-weight: 400;
  font-size: 1.8rem;
  text-align: center;
  margin: 0px auto 40px;
  z-index: 10;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.business_list .text_box p {
  position: relative;
  max-height: 0;
  visibility: hidden;
  opacity: 0;
  width: 85%;
  max-width: 320px;
  margin: 0 auto;
  font-size: 13px;
  line-height: 30px;
  letter-spacing: 0;
  z-index: 10;
  font-weight: 700;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.business_list .text_box h4 {
  position: relative;
  width: 195px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border: 1px solid #fff;
  letter-spacing: 0.04em;
  font-size: 14px;
  border-radius: 5px;
  z-index: 10;
  margin: 0 auto;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: background 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media all and (max-width: 1367px) {
  .business_list {
    justify-content: center;
  }
  .business_list .business_box {
    width: calc(50% - 50px);
  }
}
@media all and (max-width: 639px) {
  .business_list {
    justify-content: center;
  }
  .business_list .business_box {
    width: 90%;
    margin: 0 auto 20px;
  }
  .business_list .business_box:last-child {
    margin: 0 auto;
  }
  .business_list .business_box:hover .service_txt {
    display: none;
  }
  .business_list .text_box .num {
    font-size: 2rem;
  }
  .business_list .text_box h3 {
    font-size: 1.5rem;
  }
}

/*top-menu*/
.top-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  justify-content: space-between;
}
.top-menu * {
  transition: all 0.4s ease-in-out;
}
.top-menu > li {
  position: relative;
  width: calc(25% - 15px);
  background: #fff;
  flex-wrap: wrap;
}
.top-menu > li .txt {
  width: 100%;
  padding: 10px 5px 0;
  font-size: 90%;
}
.top-menu > li .txt .txt-btn {
  text-align: right;
  font-size: 11px;
  margin-top: 10px;
}
.top-menu > li .txt .txt-btn span {
  border-radius: 20px;
  padding: 3px 20px;
  background: #555;
  color: #fff;
}
@media all and (max-width: 896px) {
  .top-menu > li .txt .txt-btn {
    font-size: 10px;
  }
}
.top-menu > li a {
  position: absolute;
  z-index: 5;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.top-menu > li .half-img {
  width: 100%;
  overflow: hidden;
}
.top-menu > li .half-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  /*IE対策*/
  transition: all 0.8s ease;
}
.top-menu > li .half-ttl {
  background-image: linear-gradient(to right, #CE001D 0%, #CE001D 25%, 25%, #e20020 50%, #6d6a66 50%, #6d6a66 100%);
  background-size: 200% 100%;
  background-position: 0 0;
  color: #fff;
  width: 100%;
  padding: 15px;
}
.top-menu > li .half-ttl.type1 {
  background-image: linear-gradient(to right, #ccc9c9 0%, #ccc9c9 25%, 25%, #d6d3d3 50%, #6d6a66 50%, #6d6a66 100%);
}
.top-menu > li:hover .half-img img {
  transform: scale(1.15);
}
.top-menu > li:hover .half-ttl {
  background-position: 100% 0;
}
.top-menu > li:hover i {
  width: 50px;
}
.top-menu > li i {
  position: absolute;
  display: block;
  width: 100px;
  height: 1px;
  background: #fff;
  right: 0;
  bottom: 20px;
  z-index: 3;
}
.top-menu .top-menu-title {
  font-size: 1.6rem;
  line-height: 1.5;
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.top-menu .top-menu-title span {
  font-size: 1.8rem;
  display: block;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em;
}
@media all and (max-width: 1200px) {
  .top-menu li .half-ttl {
    padding: 10px;
  }
  .top-menu li .top-menu-title {
    font-size: 1.4rem;
    letter-spacing: 0.1em;
  }
  .top-menu li .top-menu-title span {
    font-size: 1.6rem;
  }
  .top-menu li i {
    width: 70px;
    bottom: 10px;
  }
  .top-menu li:hover i {
    width: 30px;
  }
}
@media all and (max-width: 896px) {
  .top-menu li {
    width: 100%;
    margin: 0 auto;
    display: flex;
  }
  .top-menu li .half-img {
    width: 40%;
    height: 150px;
  }
  .top-menu li .half-ttl {
    width: 60%;
  }
  .top-menu li .top-menu-title {
    font-size: 1.2rem;
  }
  .top-menu li .top-menu-title span {
    font-size: 1.4rem;
  }
  .top-menu li:not(:last-child) {
    margin-bottom: 10px;
  }
}
@media all and (max-width: 639px) {
  .top-menu li .half-img {
    height: 100px;
  }
}

.greet-lead {
  position: relative;
  z-index: 2;
  margin-bottom: 50px;
  color: #CE001D;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-size: 7rem;
}
.greet-lead:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 80px;
  height: 4px;
  background-image: linear-gradient(to right, #CE001D 0%, #CE001D 50%, #ccc9c9 50%, #ccc9c9 100%);
}
.greet-lead span {
  font-size: 2rem;
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-left: 10px;
  text-shadow: none;
}
@media all and (max-width: 896px) {
  .greet-lead {
    font-size: 3rem;
  }
  .greet-lead span {
    font-size: 1.4rem;
  }
}

.instagram-btn a {
  position: absolute;
  width: 164px;
  height: 164px;
  display: block;
  border-radius: 50%;
  color: #fff;
  background: #ccc9c9;
  background-repeat: repeat;
  border: 1px solid #ccc9c9;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  right: 20px;
  bottom: -80px;
  z-index: 2;
  transition: border 0.5s ease-out;
}
.instagram-btn a i {
  font-size: 2rem;
  display: block;
  height: 26px;
  line-height: 26px;
  transition: color 0.5s ease-out;
}
.instagram-btn a .instagram-btn-text {
  display: block;
  text-transform: uppercase;
  padding: 10px 0 0;
  transition: color 0.5s ease-out;
  font-size: 14px;
  letter-spacing: 0.1em;
}
@media all and (max-width: 639px) {
  .instagram-btn a .instagram-btn-text {
    font-size: 1.2rem;
  }
}
.instagram-btn a:hover {
  background: #fff;
  border: 1px solid #ccc9c9;
  color: #ccc9c9;
}
@media all and (max-width: 639px) {
  .instagram-btn a {
    transform: translate(-50%, -50%);
    right: 50%;
    left: 50%;
    width: 115px;
    height: 115px;
    bottom: auto;
  }
}

.insta_link {
  display: block;
  max-width: 481px;
  margin: 120px auto 0;
  border-top: 1px solid #CE001D;
  border-bottom: 1px solid #CE001D;
  position: relative;
  padding: 24px 0;
  transition: 0.4s;
}
.insta_link img {
  display: block;
  position: absolute;
  height: 40px;
  top: -26px;
  left: 30px;
}
.insta_link p {
  position: relative;
  display: table;
  margin: auto;
  color: #CE001D;
  font-size: 30px;
  font-size: 1.875rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  padding-left: 39px;
}

/*what-inner
------------------------------------*/
.what-inner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  max-width: 90%;
  margin: 0 auto;
  justify-content: space-between;
}
.what-inner.white .read {
  color: #fff;
}
.what-inner.m-b0 {
  margin-bottom: 0;
}
.what-inner .in-left {
  width: 370px;
}
.what-inner .in-left .inner {
  background-color: #f6f6f6;
  border-radius: 5px;
  color: #CE001D;
  padding: 30px;
}
.what-inner .in-left .read {
  font-size: 3rem;
  font-weight: 600;
}
.what-inner .in-left .read span {
  font-size: 1.8rem;
}
.what-inner .in-left.type1 {
  width: 33%;
}
.what-inner .in-right {
  flex: 1;
  margin-left: 40px;
}
@media all and (max-width: 896px) {
  .what-inner .in-left {
    width: 100%;
    margin-bottom: 20px;
  }
  .what-inner .in-left .read {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  .what-inner .in-left.type1 {
    width: 100%;
    margin-bottom: 0;
  }
  .what-inner .in-right {
    width: 100%;
    flex: auto;
    margin-left: auto;
    margin-right: auto;
  }
}

/* 画像の位置を交互に入れ替える */
.item-list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin-bottom: 60px;
}
@media all and (max-width: 639px) {
  .item-list {
    margin-bottom: 30px;
  }
}
.item-list .item3 {
  width: 31.2%;
  position: relative;
  margin-right: 3%;
  box-sizing: border-box;
  box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25;
}
.item-list .item3 .inner {
  padding: 15px;
  background-color: #fff;
}
.item-list .item3:nth-child(3n) {
  margin-right: 0;
}
.item-list .item3:nth-child(n+4) {
  margin-top: 1.5em;
}
.item-list .item3 .item-image3 {
  height: 250px;
}
.item-list .item3 .item-image3 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media all and (max-width: 639px) {
  .item-list .item3 {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 30px;
  }
  .item-list .item3:nth-child(3n) {
    margin-right: auto;
  }
  .item-list .item3 .item-image3 {
    height: 200px;
  }
}
.item-list.center {
  justify-content: center;
}
.item-list.center .item2,
.item-list.center .item3,
.item-list.center .item4 {
  margin: 1%;
}
.item-list.start {
  justify-content: start;
}
.item-list.start .item2,
.item-list.start .item3,
.item-list.start .item4 {
  margin: 1%;
}

.mini-ribon {
  padding-left: 60px;
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 5px;
}
.mini-ribon span {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 10px;
  margin: 0;
  padding: 10px 0;
  z-index: 2;
  width: 40px;
  text-align: center;
  font-size: 17px;
  color: #fff;
  background: #CE001D;
}
.mini-ribon span:after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  height: 0;
  width: 0;
  border-left: 20px solid #CE001D;
  border-right: 20px solid #CE001D;
  border-bottom: 10px solid transparent;
}
@media all and (max-width: 639px) {
  .mini-ribon {
    font-size: 1.8rem;
  }
}

/*covid-wrap
----------------------------------------*/
.covid-wrap,
.covid-wrap2 {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  z-index: 20;
  cursor: pointer;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #e8e4de;
  position: relative;
  margin-bottom: 30px;
}
.covid-wrap.type1,
.covid-wrap2.type1 {
  border: 1px solid #111;
}
.covid-wrap.type1 .covid-title,
.covid-wrap2.type1 .covid-title {
  background-color: #111;
}

.covid-img {
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  top: -19px;
  width: 100px;
}
@media all and (max-width: 639px) {
  .covid-img {
    top: -19px;
    width: 60px;
  }
}

.covid-title,
.covid-title2 {
  position: relative;
  background: #e8e4de;
  padding: 15px 5px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  transition: all 0.3s ease;
  cursor: pointer;
}
.covid-title:hover,
.covid-title2:hover {
  background: #6d6a66;
  color: #fff;
}
.covid-title:after,
.covid-title2:after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f067";
  font-weight: 900;
  right: 30px;
  top: 50%;
  transition: all 0.3s ease;
  transform: translateY(-50%);
  font-size: 1.4rem;
}
.covid-title.on:after,
.covid-title2.on:after {
  transform: translateY(-50%) rotate(45deg);
}
.covid-title.on2:after,
.covid-title2.on2:after {
  transform: translateY(-50%) rotate(45deg);
}
@media all and (max-width: 639px) {
  .covid-title,
  .covid-title2 {
    padding: 10px 30px 10px 5px;
    font-size: 1.4rem;
  }
  .covid-title:after,
  .covid-title2:after {
    right: 10px;
    width: 18px;
    height: 18px;
    font-size: 1.2rem;
  }
}

.read {
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 40px;
  font-size: 2rem;
  color: #ccc9c9;
  font-weight: bold;
}
@media all and (max-width: 1200px) {
  .read {
    font-size: 1.8rem;
  }
}
@media all and (max-width: 639px) {
  .read {
    font-size: 1.4rem;
  }
}

.covid-content,
.covid-content2 {
  display: none;
  background: #fefefe;
  padding: 30px;
}
@media all and (max-width: 639px) {
  .covid-content,
  .covid-content2 {
    padding: 15px 10px;
  }
}

/*recruit*/
.reasons-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px 20px;
  margin-top: 150px;
}
.reasons-list.type1 > li {
  width: 31%;
}
.reasons-list > li {
  width: 47%;
  background: #fefefe;
  border-radius: 20px;
  padding: 30px;
  border: 2px solid #ccc9c9;
  filter: drop-shadow(15px 15px 28px #fff);
}
.reasons-list > li .icon {
  margin: -100px auto 10px;
  width: 101px;
  height: 101px;
}
.reasons-list > li .icon.type1 {
  margin: 0 auto 0;
}
.reasons-list > li .icon img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.reasons-list > li .ttl {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 10px;
}
.reasons-list > li .ttl span {
  font-size: 2rem;
  color: #CE001D;
  font-weight: 600;
}
.reasons-list > li .txt {
  font-family: 1.6rem;
}
@media screen and (max-width: 1101px) {
  .reasons-list > li {
    padding: 20px;
  }
  .reasons-list > li .ttl span {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1025px) {
  .reasons-list > li {
    padding: 20px;
  }
  .reasons-list > li .icon {
    width: 100px;
    height: 100px;
  }
}
@media screen and (max-width: 639px) {
  .reasons-list > li {
    width: 100%;
    margin-bottom: 40px;
  }
  .reasons-list > li:last-child {
    margin-bottom: 0;
  }
  .reasons-list > li .icon {
    margin: -50px auto 10px;
    width: 70px;
    height: 70px;
  }
  .reasons-list > li .txt {
    font-family: 1.4rem;
  }
  .reasons-list > li .ttl {
    font-size: 1.5rem;
  }
  .reasons-list > li .ttl span {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 1025px) {
  .reasons-list {
    gap: 30px 20px;
    margin-top: 90px;
  }
}
@media screen and (max-width: 639px) {
  .reasons-list {
    margin-top: 75px;
  }
  .reasons-list.type1 > li {
    width: 100%;
  }
}

.illust01 {
  position: absolute;
  width: 160px;
  right: 30px;
  bottom: -30px;
}
@media all and (max-width: 639px) {
  .illust01 {
    width: 90px;
    right: 0;
  }
}

.illust02 {
  position: absolute;
  width: 160px;
  left: -30px;
  bottom: -30px;
}
@media all and (max-width: 639px) {
  .illust02 {
    width: 50px;
    left: 0;
  }
}

.parallax_txt {
  position: absolute;
  bottom: 0;
  left: 0;
}

.parallax_txt span {
  display: block;
  padding-left: 15%;
  animation: animate-banner 20s linear infinite;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  font-size: 24rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
  opacity: 0.6;
  font-family: "Raleway", sans-serif;
}
@media all and (max-width: 639px) {
  .parallax_txt span {
    font-size: 13rem;
  }
}

@keyframes animate-banner {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-115%);
  }
}
.title-bg {
  position: relative;
  white-space: nowrap;
  text-align: center;
  margin: 0 auto 30px;
}
.title-bg span.eng {
  line-height: 1.2;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 10rem;
  color: #eef6f9;
  text-transform: uppercase;
  display: block;
}
.title-bg span.ja {
  font-size: 2.2rem;
  color: #221515 !important;
}
@media all and (max-width: 1200px) {
  .title-bg span.eng {
    font-size: 8rem;
  }
}
@media all and (max-width: 896px) {
  .title-bg span.eng {
    font-size: 5rem;
    letter-spacing: 0.05em;
  }
}
@media all and (max-width: 639px) {
  .title-bg span.eng {
    font-size: 3rem;
  }
}
.title-bg.sbc span {
  color: #e4e5e7;
}
.title-bg.gray span {
  color: #eee;
}
.title-bg.beige span {
  color: #f9f5f3;
}
.title-bg.white span {
  color: #fff;
}
.title-bg.center span {
  transform: translateX(-50%);
  left: 50%;
}
.title-bg.right span {
  left: auto;
  right: 2%;
}
.title-bg.bottom span {
  top: auto;
  bottom: 2%;
  left: 2%;
}
.title-bg.gradation span.eng {
  color: #00918f;
  background: linear-gradient(30deg, #CE001D 0%, #ff5353 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  letter-spacing: 0.01em;
}
.title-bg.type-concept span {
  top: -50px;
  left: 20%;
}
@media all and (max-width: 896px) {
  .title-bg.type-concept span {
    top: -30px;
    left: 0;
  }
}

.img_flex {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}
.img_flex > li {
  display: inline-block;
  width: 24%;
}
.img_flex > li img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  position: relative;
}
.img_flex > li:nth-child(2), .img_flex > li:nth-child(4) {
  margin-top: -40px;
}
.img_flex.col3 > li {
  width: 32%;
}
@media all and (max-width: 639px) {
  .img_flex {
    margin-top: 30px;
  }
  .img_flex > li:nth-child(2) {
    margin-top: -20px;
  }
}

/* top-contents
----------------------------------*/
/* top-contents
----------------------------------*/
.top_slide_box {
  position: relative;
  height: 100vh;
}
@media all and (max-width: 896px) {
  .top_slide_box {
    height: auto;
  }
}

.top_slide_box .txt_area {
  position: absolute;
  width: 50%;
  height: auto;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media all and (max-width: 896px) {
  .top_slide_box .txt_area {
    width: 95%;
    margin: 0 auto;
    position: relative;
    top: auto;
    transform: initial;
  }
}

.top_slide_box .slide_inner {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  overflow: hidden;
  align-items: center;
  position: relative;
  gap: 20px;
  height: 100%;
}

.top_slide_box .slide_inner > ul {
  width: 33%;
  height: 100%;
}