@charset "UTF-8";

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

body {
  color: #4C4948;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/24661/bg-body.jpg) repeat;
  color: #111;
  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.1em;
}

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

a:hover {
  color: #6c9299;
}

#wrapper {
  overflow: hidden;
}

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

.bold {
  font-weight: 600;
}

h2,
h3 {
  line-height: 1.6;
}

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

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

/* 動き
----------------------------------*/
/*印象編　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, #b6c9cc, #f5f0e8);
}

@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: #f4f6f6;
  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 #6c9299;
  border-radius: 50%;
  border-right: 1px solid rgba(108, 146, 153, 0.2);
  border-top: 1px solid rgba(108, 146, 153, 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: #6c9299;
  }

  100% {
    -webkit-clip-path: inset(0 0% 0 0);
    clip-path: inset(0 0% 0 0);
    background: none;
  }
}

/* /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, #6c9299 11.2%, #b6c9cc 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: relative;
  transition: all 0.4s ease-in;
}

#l-header.is-fixed {
  position: fixed;
  width: 100%;
  z-index: 200;
  top: 0;
  left: 0;
  background: #fefefe;
  filter: drop-shadow(2px 0px 6px rgba(90, 84, 77, 0.1));
}

#l-header.is-fixed .inner .head-right_contact {
  display: none;
}

#l-header.is-fixed .inner #logo {
  width: 260px;
}

@media all and (max-width: 896px) {
  #l-header {
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}

#l-header .inner {
  display: flex;
  flex-wrap: wrap;
  max-width: calc(100% - 120px);
  width: 95%;
  margin: 0 auto;
  padding: 20px 0;
  align-items: center;
  justify-content: space-between;
}

@media all and (max-width: 1100px) {
  #l-header .inner {
    max-width: calc(100% - 80px);
  }
}

@media all and (max-width: 896px) {
  #l-header .inner {
    min-width: initial;
  }
}

#l-header .inner #logo {
  width: 320px;
  transition: all 0.4s ease-in;
}

@media all and (max-width: 896px) {
  #l-header {
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}

#l-header .head-right {
  position: relative;
  margin-left: auto;
}

@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-bottom: 10px;
}

#l-header .head-right_tel {
  line-height: 1.4;
  text-align: center;
}

#l-header .head-right_tel a {
  transition: all 0.3s ease-in;
  display: block;
  font-size: 2.4rem;
  color: #5a544d;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
}

#l-header .head-right_tel a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f098";
  font-weight: 900;
  margin-right: 5px;
}

#l-header .head-right_tel a:hover {
  opacity: 0.6;
}

#header_nav {
  position: relative;
  width: 630px;
  text-align: center;
}

@media all and (max-width: 896px) {
  #header_nav {
    display: none;
  }
}

#header_nav ul {
  display: flex;
  flex-wrap: wrap;
}

#header_nav ul li {
  position: relative;
  flex: 1 0 auto;
}

#header_nav ul li a {
  position: relative;
  display: block;
  line-height: 1.4;
  font-size: 1.2rem;
  color: #5a544d;
  font-family: "BIZ UDPGothic", "YakuHanJP", "Zen Maru Gothic", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  letter-spacing: 0.1em;
}

#header_nav ul li a span {
  transition: all 0.3s ease-in;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  position: relative;
  display: block;
  font-size: 1.6rem;
  color: #999;
  font-weight: 700;
}

#header_nav ul li a.active span,
#header_nav ul li a:hover span {
  color: #6c9299;
}

@media all and (max-width: 1100px) {
  #header_nav ul li a {
    font-size: 1.4rem;
  }
}

#header_nav .dropdown {
  display: none;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  top: 35px;
  padding-top: 26px;
  z-index: 999;
  width: 100%;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
}

#header_nav .dropdown .dropdown-li {
  border-right: 0;
  margin: 0;
  border-bottom: 1px solid #e2e2e2;
  border-left: 0px solid #e2e2e2;
}

#header_nav .dropdown .dropdown-li:last-child {
  border-bottom: 0px solid #e2e2e2;
  border-right: 0px solid #e2e2e2;
}

#header_nav .dropdown .dropdown-li:after {
  display: none;
}

#header_nav .dropdown .dropdown-li a {
  display: block;
  padding: 10px 0;
  font-size: 1.1rem;
  letter-spacing: 0;
  color: #5a544d;
  background: #fefefe;
  line-height: 2.4;
}

#header_nav .dropdown .dropdown-li a.lh01 {
  line-height: 1.2;
}

#header_nav .dropdown .dropdown-li a:hover {
  background: #6c9299;
  color: #fff;
}

/* page-top
----------------------------------*/
#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 200;
}

#page-top a {
  display: block;
  background: #fff;
  color: #5a544d;
  border: 1px solid #5a544d;
  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: 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);
    filter: blur(12px);
  }

  10% {
    filter: blur(6px);
  }

  15% {
    filter: blur(0);
  }

  100% {
    transform: scale(1);
  }
}

.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {
  animation: zoom-in 8s linear 0s 1 normal both;
}

.swiper-slide {
  position: relative;
}

.swiper-slide:before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  right: 0;
  top: 0;
  background-position: 50%;
  background-size: cover;
  z-index: -1;
}

.swiper-container {
  width: 93%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 0px;
}

.slide-img {
  overflow: hidden;
  width: 100%;
  height: 100vh;
}

.slide-img::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #0c0e16;
  opacity: 0.4;

}

.slide-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}

@media all and (max-width: 1100px) {
  .slide-img {
    height: 70vh;
  }
}

@media all and (max-width: 896px) {
  .slide-img {
    height: 55vh;
  }
}

@media all and (max-width: 639px) {
  .slide-img {
    height: 40vh;
  }
}

#slide-wrap {
  position: relative;
}

#slide-wrap .swiper-pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -50px;
  margin: auto;
  display: none;
}

@media all and (max-width: 896px) {
  #slide-wrap .swiper-pagination {
    bottom: -25px;
  }
}

/* ページネーションのサイズと色 */
.swiper-pagination-bullet {
  background-color: #6c9299 !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;
}

/*#slideshow::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 110%;
  background: #2ca6e0;
  z-index: -1;
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 21% 100%);
          clip-path: polygon(0 0, 100% 0%, 100% 100%, 21% 100%);
}*/
@media all and (max-width: 896px) {
  #slideshow {}
}

.swiper-container {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 0px;
}

@media all and (max-width: 1100px) {
  .swiper-container {
    max-width: calc(100% - 80px);
  }
}

@media all and (max-width: 896px) {
  .swiper-container {
    width: 100%;
    max-width: calc(100% - 20px);
  }
}

#catch {
  position: absolute;
  z-index: 50;
  left: 3%;
  bottom: 20%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-3%, 0%);
  -ms-transform: translate(-50%, -50%);
  width: 68%;
}

#catch h1 {
  width: 80%;
  margin: 0 auto;
}

#catch h3 span {
  display: block;
  font-size: 2.5rem;
  padding-bottom: 10px;
}

#catch h3.on {
  opacity: 1;
  transition: 2s;
}

@media all and (max-width: 1100px) {
  #catch h3 {
    font-size: 3rem;
  }
}

@media all and (max-width: 896px) {
  #catch h3 {
    font-size: 1.8rem;
  }
}

@media all and (max-width: 639px) {
  #catch h3 {
    font-size: 1.3rem;

  }

  #catch h3 span {
    font-size: 1.1rem;
    padding-bottom: 10px;
  }

  #catch {
    width: 100%;
  }
}

#catch p {
  font-size: 3rem;
  font-family: "BIZ UDPGothic", "YakuHanJP", "Zen Maru Gothic", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5), 0 0 12px rgba(0, 0, 0, 0.5);
  transition: opacity 2s cubic-bezier(0.18, 0.06, 0.23, 1);
  opacity: 0;
}

#catch p.on {
  opacity: 1;
  transition: 2s;
}

@media all and (max-width: 1100px) {
  #catch p {
    font-size: 2.3rem;
  }
}

@media all and (max-width: 896px) {
  #catch p {
    font-size: 1.8rem;
  }
}

@media all and (max-width: 639px) {
  #catch p {
    font-size: 1.4rem;
  }
}

.lePeek span {
  animation-name: lePeek;
}

@keyframes lePeek {
  25% {
    transform: rotateX(30deg) translateY(10px) rotate(-13deg);
  }

  50% {
    transform: translateY(-22px) rotate(3deg) scale(1.1);
  }
}

/* scrolldown
----------------------------------*/
#scrolldown {
  position: absolute;
  right: 25px;
  bottom: 0;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-feature-settings: "pkna";
  font-size: 1rem;
  z-index: 100;
  height: 180px;
}

#scrolldown:before,
#scrolldown:after {
  position: absolute;
  content: "";
  z-index: 2;
  left: 50%;
}

#scrolldown:before {
  width: 1px;
  height: 100px;
  bottom: 0;
  background: #4C4948;
  transform: translateX(-50%);
}

#scrolldown:after {
  width: 8px;
  height: 8px;
  background: rgba(108, 146, 153, 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;
  }

  30% {
    opacity: 1;
  }

  100% {
    top: 170px;
    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;
  margin-top: 100px;
}

.contact_bnr.type1>li {
  width: 100%;
}

.contact_bnr>li {
  width: 48%;
}

.contact_bnr>li .contact_txt {
  font-size: 85%;
  text-align: center;
  margin-top: 5px;
  font-family: "BIZ UDPGothic", "YakuHanJP", "Zen Maru Gothic", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.contact_bnr>li .bnr_tel {
  white-space: nowrap;
  position: relative;
}

.contact_bnr>li .bnr_tel:before {
  font-family: "Font Awesome 5 Free";
  content: "\f2a0";
  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; */
  border: 1px solid #000;
  color: #000;
  background: transparent;
  box-sizing: border-box;
  font-size: 1.4rem;
  text-align: center;
  font-family: "BIZ UDPGothic", "YakuHanJP", "Zen Maru Gothic", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 10px;
  transition: all 0.3s ease;
  padding: 20px 30px;
  border-radius: 35px;
  position: relative;
}

.contact_bnr>li a::after,
.contact_bnr>li span::after {
  content: "●";
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  transition: all 0.5s ease;
}

.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(3px);
  backdrop-filter: blur(3px);
  background: rgba(255, 255, 255, 0.2);
}

@media all and (max-width: 896px) {
  .contact_bnr>li {
    width: 100%;
    margin: 0 auto 15px;
  }

  .contact_bnr>li:last-child {
    margin: 0 auto;
  }

  .contact_bnr>li a,
  .contact_bnr>li span {
    font-size: 1.2rem;
  }
}

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

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

.bg_footer::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #dcf4ff;
  z-index: -2;
}

@media all and (max-width: 896px) {
  .bg_footer::before {
    border-radius: 100px 100px 0 0;
  }
}

@media all and (max-width: 639px) {
  .bg_footer::before {
    border-radius: 60px 60px 0 0;
  }
}

footer {
  position: relative;
}

#l-footer {
  position: relative;
  font-size: 1.4rem;
  width: 100%;
  color: #5a544d;
  padding-bottom: 60px;
  padding-top: 60px;
}

#l-footer .inner {
  padding: 60px;
  position: relative;
  z-index: 3;
  max-width: 90%;
  margin: 0 auto;
  background: #fefefe;
}

#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;
  margin-bottom: 40px;
}

#l-footer .footer-column .footer-left {
  width: 42%;
}

#l-footer .footer-column .footer-right {
  width: 55%;
}

@media all and (max-width: 1100px) {
  #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 {
    padding-bottom: 80px;
  }

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

.footer-bnr-list>li a {
  text-align: center;
  transition: all 0.3s ease;
  padding: 8px;
  display: block;
  background: #6c9299;
  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: #f5f0e8;
}

.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 40px;
}

.footer_navi ul {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}

.footer_navi ul li {
  flex: 1 0 auto;
}

.footer_navi ul li a {
  font-family: "BIZ UDPGothic", "YakuHanJP", "Zen Maru Gothic", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #5a544d;
  font-size: 1.2rem;
  display: block;
  text-align: center;
}

.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;
}

.flogo {
  max-width: 300px;
  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 {
  font-size: 1.2rem;
  z-index: 2;
  text-align: center;
}

@media all and (max-width: 896px) {
  .copyright {
    font-size: 12px;
  }
}

.address {
  text-align: center;
  font-size: 13px;
  line-height: 1.6;
}

@media all and (max-width: 896px) {
  .address {
    font-size: 12px;
  }
}

#fixed-btn {
  position: fixed;
  z-index: 200;
  bottom: 140px;
  right: 0;
}

#fixed-btn a {
  display: block;
  font-weight: 600;
  color: #fff;
  font-size: 1.5rem;
  padding: 10px;
  background: #6c9299;
  position: relative;
  text-align: center;
  border-radius: 20px 0 0 20px;
  writing-mode: vertical-rl;
}

#fixed-btn a:hover {
  opacity: 0.8;
}

#fixed-btn a:not(:last-child) {
  margin-bottom: 10px;
}

#fixed-btn a:nth-child(2) {
  background: #a2c51a;
}

@media all and (max-width: 896px) {
  #fixed-btn {
    display: none;
  }
}

/*----------------------------------
 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, #b6c9cc, #f6f6f6);
  opacity: 0.7;
}

.title-big {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 4em;
  line-height: 1.2;
  z-index: 1;
  color: #faf7f8;
  text-shadow: 1px 1px 0px #b6c9cc, -1px 1px 0px #b6c9cc, 1px -1px 0px #b6c9cc, -1px -1px 0px #b6c9cc, 1px 0px 0px #b6c9cc, 0px 1px 0px #b6c9cc, -1px 0px 0px #b6c9cc, 0px -1px 0px #b6c9cc;
  margin-bottom: 25px;
}

@media all and (max-width: 896px) {
  .title-big {
    font-size: 3.2rem;
    margin-bottom: 20px;
  }
}

@media all and (max-width: 639px) {
  .title-big {
    font-size: 2.6rem;
  }
}

.title01 {
  line-height: 1.4;
  font-size: 1.7rem;
  color: #5a544d;
}

.title01 .eng {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  color: #6c9299;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
}

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

  .title01 .eng {
    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: #6c9299;
}

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

.title03 {
  color: #5a544d;
  padding: 8px 15px;
  font-weight: 600;
  margin-top: 10px;
  font-size: 1.8rem;
  margin-bottom: 35px;
  position: relative;
  font-family: "BIZ UDPGothic", "YakuHanJP", "Zen Maru Gothic", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.title03 span {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  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: #b6c9cc;
}

.title03:after {
  width: 65%;
  bottom: -6px;
  background: #6c9299;
}

/* --news--
----------------------------------*/
.news-box {
  position: relative;
  margin: 0 auto 60px;
  max-width: 1200px;
  max-width: 95%;
  z-index: 10;
}

@media all and (max-width: 896px) {
  .news-box {
    flex-direction: column;
  }
}

.news-title {
  position: relative;
  padding-right: 30px;
  text-align: left;
}

.news-title span {
  display: block;
  line-height: 1.6;
}

.news-title .eng {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 3rem;
  color: #6c9299;
}

.news-title .ja {
  font-family: "BIZ UDPGothic", "YakuHanJP", "Zen Maru Gothic", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 1.8rem;
  position: relative;
  color: #5a544d;
}

.news-title.type1 .eng {
  color: #5a544d;
}

@media all and (max-width: 896px) {
  .news-title {
    padding: 0 0 15px;
    writing-mode: inherit;
    border-right: none;
    text-align: center;
  }

  .news-title .eng {
    font-size: 2.2rem;
    margin-right: 10px;
  }

  .news-title .ja {
    font-size: 1.4rem;
  }
}

.news-right {
  flex: 1;
}

@media all and (max-width: 896px) {
  .news-right {
    width: 100%;
    padding: 0;
  }
}

.topic-dl .topic-inner {
  display: flex;
  border-bottom: 1px dotted #ccc;
  position: relative;
  padding: 10px 0;
}

.topic-dl .topic-inner:before {
  width: 40px;
  border-bottom: 1px solid #b6c9cc;
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
}

.topic-dl .topic-inner dt {
  width: 7em;
  font-size: 1.4rem;
  font-weight: 700;
  color: #222;
}

@media all and (max-width: 639px) {
  .topic-dl .topic-inner dt {
    font-size: 12px;
  }
}

.topic-dl .topic-inner dd {
  padding-left: 20px;
}

.topic-dl .topic-inner dd a {
  font-weight: 600;
}

.topic-dl .topic-inner dd a:hover {
  color: #6c9299;
}

@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/24661/top-bg01.jpg) no-repeat center/cover;
  background-attachment: fixed;
  height: 400px;
}

@media all and (max-width: 1100px) {
  .top-bg {
    background-attachment: scroll;
  }
}

.map-link {
  font-weight: 700;
  color: #6c9299;
  border-bottom: 1px solid #6c9299;
}

.map-link:before {
  font-family: "Font Awesome 5 Free";
  content: "\f3c5";
  font-weight: 900;
  margin-right: 5px;
}

/* contents
----------------------------------*/
.single0 {
  margin: 0 auto;
  padding: 100px 0;
  position: relative;
}

@media all and (max-width: 1100px) {
  .single0 {
    padding: 100px 10px;
  }
}

.single {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 0;
  position: relative;
}

@media all and (max-width: 1100px) {
  .single {
    padding: 100px 10px;
  }
}

.single02 {
  margin: 0 auto;
  padding: 100px 0;
}

@media all and (max-width: 1100px) {
  .single02 {
    width: 100%;
    padding: 100px 10px;
  }
}

.single03 {
  max-width: 1500px;
  margin: 0 auto;
  padding: 100px 0;
  position: relative;
}

@media all and (max-width: 1100px) {
  .single03 {
    padding: 100px 10px;
  }
}

.single.phalf,
.single02.phalf,
.single03.phalf,
.single04.phalf {
  padding: 40px 0;
}

@media all and (max-width: 1100px) {

  .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: 80px 0;
  max-width: calc(100% - 80px);
}

.single04.inner {
  z-index: 2;
}

@media all and (max-width: 896px) {
  .single04 {
    max-width: calc(100% - 40px);
    padding: 40px 0;
  }
}

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

@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 #ddd;
}

.mbox.sd {
  box-shadow: 0 0 8px rgba(90, 84, 77, 0.1);
}

.mbox.transparent {
  background: transparent;
}

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

.mbox2 {
  background: rgba(250, 245, 239, 0.6);
  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 #6c9299;
  padding: 30px;
  z-index: 3;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

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

.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;
}

.bg-grid2.type1 {
  border: 10px solid #6c9299;
}

@media all and (max-width: 639px) {
  .bg-grid2.type1 {
    border: 5px solid #6c9299;
  }
}

.bg-movie {
  border: 10px solid rgba(182, 201, 204, 0.2);
}

@media all and (max-width: 639px) {
  .bg-movie {
    border-top: 5px solid rgba(182, 201, 204, 0.2);
    border-bottom: 5px solid rgba(182, 201, 204, 0.2);
    border-left: 0px solid rgba(182, 201, 204, 0.2);
    border-right: 0px solid rgba(182, 201, 204, 0.2);
  }
}

#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
----------------------------------*/
.mtitle0 {
  position: relative;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.mtitle0 .eng {
  font-size: 5rem;
  color: #2ca6e0;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-weight: 900;
  background: linear-gradient(to right, #2ca6e0, #a6d4e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-right: 15px;
  position: relative;
}

.mtitle0 .ja {
  font-family: "BIZ UDPGothic", "YakuHanJP", "Zen Maru Gothic", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 1.8rem;
  color: #5a544d;
  position: relative;
}

.mtitle0.type2 .ja {
  display: block;
  font-size: 2.4rem;
  margin-left: 45px;
}

.mtitle0.type2 .eng {
  font-size: 3.4rem;
}

.mtitle0.white .eng {
  background: linear-gradient(to right, #fff, #fff);
  -webkit-background-clip: text;
}

.mtitle0.white .ja {
  color: #fff;
}

.mtitle0.white:after {
  color: #fff;
}

.mtitle0.black .ja {
  color: #6c9299;

}

.mtitle0.black:after {
  color: #000;
}

.mtitle0.black .eng {
  -webkit-background-clip: text;
}

.mtitle0.mtitle_left {
  text-align: left;
}

.mtitle0.mtitle_left:after {
  left: 0;
  transform: translateX(0%);
}

@media all and (max-width: 896px) {
  .mtitle0 {
    margin: 0 auto 50px;
  }

  .mtitle0 .eng {
    font-size: 2.8rem;
    padding-left: 35px;
  }

  .mtitle0 .eng::before {
    width: 30px;
    height: 30px;
  }

  .mtitle0 .ja {
    font-size: 1.5rem;
  }
}

@media all and (max-width: 639px) {
  .mtitle0 {
    margin: 0 auto 30px;
  }

  .mtitle0 .eng {
    font-size: 2rem;
    padding-left: 25px;
    padding-right: 10px;
  }

  .mtitle0 .eng::before {
    width: 20px;
    height: 20px;
  }

  .mtitle0 .ja {
    font-size: 1.1rem;
  }

  .mtitle0.type2 .eng {
    font-size: 2rem;
  }

  .mtitle0.type2 .ja {
    font-size: 1.2rem;
  }
}

.mtitle {
  margin: 0 auto 40px;
  position: relative;
}

.mtitle .eng {
  font-size: 2.3rem;
  color: #4C4948;
  position: relative;
  z-index: 2;
  display: block;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  padding-left: 35px;
}

.mtitle .eng::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 25px;
  height: 28px;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/24661/logo-img.png) no-repeat center/contain;
}

.mtitle .ja {
  font-family: "BIZ UDPGothic", "YakuHanJP", "Zen Maru Gothic", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  position: relative;
  z-index: 2;
  font-size: 3.2rem;
  color: #5a544d;
}

.mtitle.sbc span.eng {
  color: #b6c9cc;
}

.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: 896px) {
  .mtitle .ja {
    font-size: 2.5rem;
  }

  .mtitle .eng {
    font-size: 1.6rem;
  }
}

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

  .mtitle .ja {
    font-size: 1.8rem;
  }
}

.mtitle2 {
  position: relative;
  margin-bottom: 50px;
}

.mtitle2.type1 {
  margin: -40px 0 20px 10px;
  position: relative;
  z-index: 4;
}

.mtitle2.sbc .eng {
  background: #b6c9cc;
}

.mtitle2 span {
  display: inline-block;
  padding: 3px 8px;
}

.mtitle2 .eng {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 1.6rem;
  text-transform: inherit;
  color: #6c9299;
  background: #6c9299;
  color: #fff;
}

.mtitle2 .ja {
  font-size: 2rem;
  background: #fff;
  color: #5a544d;
  font-family: "BIZ UDPGothic", "YakuHanJP", "Zen Maru Gothic", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
}

@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: #5a544d;
  letter-spacing: 0.2em;
  line-height: 1.6;
}

.mtitle3 .eng {
  display: block;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 2rem;
  color: #6c9299;
}

@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;
  }
}

.mtitles {
  margin-bottom: 15px;
}

.mtitles .eng {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: inherit;
  color: #fff;
  text-shadow: 1px 1px 0px #b6c9cc, -1px 1px 0px #b6c9cc, 1px -1px 0px #b6c9cc, -1px -1px 0px #b6c9cc, 1px 0px 0px #b6c9cc, 0px 1px 0px #b6c9cc, -1px 0px 0px #b6c9cc, 0px -1px 0px #b6c9cc;
  font-size: 3.2rem;
  margin-right: 10px;
}

.mtitles .ja {
  font-family: "BIZ UDPGothic", "YakuHanJP", "Zen Maru Gothic", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #5a544d;
  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: #5a544d;
  border-top: 2px solid rgba(108, 146, 153, 0.6);
  font-size: 1.8rem;
  padding: 6px 10px 16px;
  font-family: "BIZ UDPGothic", "YakuHanJP", "Zen Maru Gothic", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.mtitle_line span {
  font-size: 1.4rem;
  color: #6c9299;
  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, #6c9299, #6c9299 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;
}

.mtitle_balloon span.eng {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  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;
  border-right: 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: #6c9299;
}

@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: #b6c9cc;
}

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

@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 #6c9299;
  margin-bottom: 8px;
  color: #5a544d;
  line-height: 1.6;
  text-align: left;
  font-size: 1.6rem;
}

.mtitle_sub span {
  color: #6c9299;
  padding-left: 5px;
  font-size: 0.9em;
}

.mtitle_sub:before {
  position: absolute;
  left: -6px;
  bottom: 0;
  content: "";
  width: 6px;
  height: 50%;
  background-color: #b6c9cc;
}

@media all and (max-width: 639px) {
  .mtitle_sub {
    font-size: 1.3rem;
  }
}

.mtitle_point {
  position: relative;
  margin-bottom: 15px;
  font-size: 2rem;
  text-align: center;
  line-height: 1.4;
  font-family: "BIZ UDPGothic", "YakuHanJP", "Zen Maru Gothic", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #5a544d;
}

.mtitle_point:after {
  content: "";
  width: 30px;
  height: 2px;
  background: #b6c9cc;
  display: block;
  margin: 10px auto 0;
}

@media all and (max-width: 639px) {
  .mtitle_point {
    font-size: 1.5rem;
  }
}

.mtitle_box {
  background: #6c9299;
  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;
}

.mtitle_box:before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f3c5";
  font-weight: 900;
  display: block;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
}

@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: #6c9299;
  font-size: 2.2rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 15px 10px 15px 20px;
  margin-bottom: 25px;
  font-family: "BIZ UDPGothic", "YakuHanJP", "Zen Maru Gothic", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.mtitle_box2 .small-cap {
  font-weight: normal;
  font-size: 14px;
}

.mtitle_box2:before {
  background-color: #b6c9cc;
  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: #d3e1ec;
  color: #5a544d;
  font-size: 1.8rem;
  padding: 15px 5px;
  margin-bottom: 20px;
  text-align: center;
}

.mtitle_box3.type1 {
  background: #eed1c5;
}

.mtitle_box3.type2 {
  background: #cde1b0;
}

.mtitle_box3.type3 {
  background: #c9e5cf;
}

.mtitle_box3.type4 {
  background: #efd0a8;
}

.mtitle_box3.type5 {
  background: #c5efef;
}

.mtitle_box3 span {
  font-size: 1.4rem;
}

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

  .mtitle_box3 span {
    font-size: 1.2rem;
  }
}

.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: "BIZ UDPGothic", "YakuHanJP", "Zen Maru Gothic", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-align: center;
  margin-bottom: 30px;
  color: #5a544d;
}

@media all and (max-width: 639px) {
  .mtext1 {
    font-size: 1.5rem;
  }
}

.mtext2 {
  font-size: 2.2rem;
}

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

.mtext3 {
  font-family: "BIZ UDPGothic", "YakuHanJP", "Zen Maru Gothic", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 2.4rem;
}

@media all and (max-width: 639px) {
  .mtext3 {
    font-size: 1.5rem;
  }
}

.txt-small {
  font-size: 1.3rem;
  color: #5a544d;
}

.txt-num {
  text-align: center;
  font-family: "BIZ UDPGothic", "YakuHanJP", "Zen Maru Gothic", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 1.8rem;
  color: #5a544d;
}

.txt-num span {
  font-size: 2.8rem;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #56767c;
  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: "BIZ UDPGothic", "YakuHanJP", "Zen Maru Gothic", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.mtitle_category:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0ca";
  font-weight: 900;
  margin-right: 5px;
  color: #6c9299;
}

.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;
  }
}

.btn01 a {
  width: 260px;
  margin: 40px auto 20px;
  color: #4C4948;
  display: block;
  padding: 20px 30px;
  border: 1px solid #4C4948;
  border-radius: 35px;
  font-weight: bold;
  position: relative;
  font-size: 1.2rem;
}

.btn01 a::after {
  content: "●";
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  transition: all 0.5s ease;
}

.btn01 a:hover {
  background: #b6c9cc;
  border: 1px solid #b6c9cc;
  color: #fff;
}

.btn01 a:hover::after {
  right: 20px;
}

.btn01.type1 {
  background: #b6c9cc;
  border: 2px solid #b6c9cc;
}

.btn01.type1:hover {
  background: #fff;
  color: #b6c9cc;
}

.btn01.type2 a {
  color: #4C4948;
  border: none;
  background: #fff;
}

.btn01.type2 a:hover {
  opacity: 0.6;
}

.btn01.mail {
  flex-basis: 100%;
}

.btn01.mail a {
  background: #fde792;
  margin: 15px auto 25px;
}

.btn01.mail a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 5px;
}

.btn01.left a {
  margin-left: 0;
}

@media all and (max-width: 639px) {
  .btn01 a {
    width: 95%;
    font-size: 1rem;
    padding: 15px 30px;
  }

  .btn01.left a {
    margin-left: auto;
  }
}

.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 #5a544d;
  line-height: 24px;
  text-align: center;
  color: #5a544d;
}

.btn02 a i {
  display: block;
  position: absolute;
  top: 50%;
  right: -10px;
  width: 45px;
  height: 1px;
  background-color: #5a544d;
  transition: all 0.3s ease;
}

.btn02 a:hover i {
  width: 30px;
}

.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: 250px;
  width: 90%;
  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: "Lato", sans-serif;
  font-weight: 700;
  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: #6c9299;
  border-color: transparent;
}

.btn_wk a:hover:before,
.btn_wk a:hover:after {
  width: calc(100% + 11px);
  height: calc(100% + 11px);
  border-color: #6c9299;
}

.btn_wk.sbc a:hover {
  color: #fff;
  background: #b6c9cc;
}

.btn_wk.sbc a:hover:before,
.btn_wk.sbc a:hover:after {
  border-color: #b6c9cc;
}

.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: "Lato", sans-serif;
  font-weight: 700;
  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: #6c9299;
  border-color: transparent;
}

.btn_wk2 a:hover:before,
.btn_wk2 a:hover:after {
  width: calc(100% + 11px);
  height: calc(100% + 11px);
  border-color: #6c9299;
}

.btn_wk2.btn-r a {
  margin-right: 5px;
}

.btn03 a {
  color: #4e433b;
  font-size: 2rem;
  position: relative;
  padding: 30px;
  text-align: center;
  border-radius: 5px;
  display: block;
  background: #fff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.btn03 a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border-right: 3px dashed #b6c9cc;
  border-left: 3px dashed #b6c9cc;
}

.btn03 a:hover {
  opacity: 0.8;
}

.btn03.type2 a {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/24661/bg-02.jpg);
}

@media all and (max-width: 896px) {
  .btn03 a {
    font-size: 1.5rem;
  }
}

/* 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: "Lato", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  width: 7em;
}

@media all and (max-width: 639px) {
  .news dt {
    width: 6em;
  }
}

.news dd a {
  font-weight: 500;
  color: #5a544d;
  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;
  padding: 5px 20px;
  line-height: 1.3;
  color: #6c9299;
  text-align: center;
  border: 1px solid #6c9299;
  border-radius: 30px;
  background: #fefefe;
  font-size: 1.3rem;
  font-family: "Lato", sans-serif;
}

@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: #5a544d;
  background-image: linear-gradient(to right, #6c9299, #6c9299);
  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: #5a544d;
}

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

.news-bl2 dd a:hover {
  color: #6c9299;
}

.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;
  overflow: hidden;
}

.page-title::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACAQMAAABIeJ9nAAAABlBMVEUAAAAAAAClZ7nPAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjaGBgAAABhACBKN161wAAAABJRU5ErkJggg==);
  opacity: 0.9;
}

.page-title::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/24661/1.jpg) no-repeat center 70%/cover;
}

.page-title .inner {
  margin: 0 auto;
  padding: 180px 0 100px;
  max-width: 1200px;
}

.page-title .page-lead {
  position: relative;
  text-align: center;
  color: #5a544d;
  text-shadow: 0 0 4px rgba(90, 84, 77, 0.1);
  line-height: 1.6;
}

.page-title .page-lead:before {
  position: absolute;
  content: "";
  width: 80px;
  height: 63px;
  top: -70px;
  left: 0;
  right: 0;
  margin: auto;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/24661/logo-img02.png) no-repeat center/contain;
}

@media all and (max-width: 896px) {
  .page-title .page-lead:before {
    width: 50px;
  }
}

.page-title .page-lead span {
  display: block;
  color: #fff;
}

.page-title .page-lead .ja {
  font-family: "BIZ UDPGothic", "YakuHanJP", "Zen Maru Gothic", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 2.2rem;
}

.page-title .page-lead .eng {
  font-size: 1.8rem;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
}

@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: 1.4rem;
  }
}

@media all and (max-width: 639px) {
  .page-title .page-lead:before {
    width: 30px;
  }
}

.bg-gradient {
  position: relative;
}

.bg-gradient:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(to right, #6c9299, #b6c9cc);
  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, #b6c9cc, #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, #6c9299, #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-sdgs {
  position: relative;
}

.bg-sdgs .inner {
  margin: 15px;
}

.bg-sdgs:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 15px;
  top: 0;
  left: 0;
  background-image: linear-gradient(90deg, #e5021e 0%, #e5021e 5.75%, #d7a601 5.75%, #d7a601 11.65%, #1b963b 11.65%, #1b963b 17.55%, #c50e2a 17.55%, #c50e2a 23.45%, #e83517 23.45%, #e83517 29.35%, #00a6d8 29.35%, #00a6d8 35.25%, #fabd00 35.25%, #fabd00 41.15%, #970b32 41.15%, #970b32 47.05%, #ed6905 47.05%, #ed6905 52.95%, #dc097a 52.95%, #dc097a 58.85%, #f3a20b 58.85%, #f3a20b 64.75%, #d49206 64.75%, #d49206 70.65%, #417a36 70.65%, #417a36 76.55%, #0075ba 76.55%, #0075ba 82.45%, #28a839 82.45%, #28a839 88.35%, #004c88 88.35%, #004c88 94.25%, #022f66 94.25%, #022f66 100%);
}

.bg-sdgs:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 15px;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(-90deg, #e5021e 0%, #e5021e 5.75%, #d7a601 5.75%, #d7a601 11.65%, #1b963b 11.65%, #1b963b 17.55%, #c50e2a 17.55%, #c50e2a 23.45%, #e83517 23.45%, #e83517 29.35%, #00a6d8 29.35%, #00a6d8 35.25%, #fabd00 35.25%, #fabd00 41.15%, #970b32 41.15%, #970b32 47.05%, #ed6905 47.05%, #ed6905 52.95%, #dc097a 52.95%, #dc097a 58.85%, #f3a20b 58.85%, #f3a20b 64.75%, #d49206 64.75%, #d49206 70.65%, #417a36 70.65%, #417a36 76.55%, #0075ba 76.55%, #0075ba 82.45%, #28a839 82.45%, #28a839 88.35%, #004c88 88.35%, #004c88 94.25%, #022f66 94.25%, #022f66 100%);
}

@media all and (max-width: 639px) {
  .bg-sdgs .inner {
    margin: 10px;
  }

  .bg-sdgs:before {
    height: 10px;
  }

  .bg-sdgs:after {
    height: 10px;
  }
}

.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(108, 146, 153, 0.05) 0%, rgba(108, 146, 153, 0.05) 25%, transparent 25%, transparent 96%, rgba(108, 146, 153, 0.03) 96%, rgba(108, 146, 153, 0.03) 100%), linear-gradient(236deg, rgba(108, 146, 153, 0.04) 0%, rgba(108, 146, 153, 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(108, 146, 153, 0.04) 0%, rgba(108, 146, 153, 0.04) 46%, transparent 46%, transparent 71%, rgba(108, 146, 153, 0.05) 71%, rgba(108, 146, 153, 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 {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/24661/bg-02.jpg);
}

.bg-03 {
  position: relative;
}

.bg-03::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/24661/bg-05.jpg) no-repeat center/cover;
  opacity: 0.15;
  z-index: -1;
}

.deco-anime {
  animation: rotate_anime 1.2s cubic-bezier(0.87, 0.01, 0, 0.99) infinite;
}

.deco-anime2 {
  animation: rotate_anime2 1.2s cubic-bezier(0.87, 0.01, 0, 0.99) infinite;
}

@keyframes rotate_anime {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(0deg);
  }

  30% {
    transform: rotate(5deg);
  }

  85% {
    transform: rotate(5deg);
  }

  90% {
    transform: rotate(0deg);
  }
}

@keyframes rotate_anime2 {
  0% {
    transform: rotate(0deg);
  }

  35% {
    transform: rotate(0deg);
  }

  40% {
    transform: rotate(-5deg);
  }

  95% {
    transform: rotate(-5deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

@keyframes bounce-anm {
  0% {
    transform: translateY(0);
  }

  10% {
    transform: translateY(0);
  }

  20% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-3px);
  }

  50% {
    transform: translateY(0);
  }

  60% {
    transform: translateY(-3px);
  }

  80% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes bounce-anm2 {
  0% {
    transform: translateY(0);
  }

  10% {
    transform: translateY(0);
  }

  20% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-6px);
  }

  50% {
    transform: translateY(0);
  }

  60% {
    transform: translateY(-6px);
  }

  80% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(0);
  }
}

.bg-contact {
  position: relative;
  border-radius: 200px 200px 0 0;
  padding: 0 60px;
  max-width: 90%;
  margin: 0 auto;
}

@media all and (max-width: 1100px) {
  .bg-contact {
    background-attachment: scroll;
  }
}

@media all and (max-width: 639px) {
  .bg-contact {
    padding: 10px;
  }
}

/* .bg-contact .contact-box {
  color: #fff;
} */
.bg-contact .contact-box h3 {
  font-family: "BIZ UDPGothic", "YakuHanJP", "Zen Maru Gothic", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  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/24661/bg-area.jpg) no-repeat bottom/cover;
  background-attachment: fixed;
}

@media all and (max-width: 1100px) {
  .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: "Lato", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 2.8rem;
  margin-top: 25px;
}

.bg-area .area-wrapper .area-box .tel-btn span {
  font-family: "BIZ UDPGothic", "YakuHanJP", "Zen Maru Gothic", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  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: "Lato", sans-serif;
  font-weight: 500;
  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: "BIZ UDPGothic", "YakuHanJP", "Zen Maru Gothic", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: 700;
    letter-spacing: 0.2em;
    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(90, 84, 77, 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: 1100px) {
  .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(108, 146, 153, 0.2);
}

.bg-base.type1 {
  background: linear-gradient(90deg, #56767c 0%, #56767c 70%, #6c9299 70%, #6c9299 100%);
}

.bg-base.type2 {
  background: linear-gradient(to bottom, transparent 0%, transparent 50%, rgba(108, 146, 153, 0.2) 50%, rgba(108, 146, 153, 0.2) 100%);
}

.bg-base2 {
  position: relative;
}

.bg-base2::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/24661/bg-01.jpg);
  opacity: 0.5;
  z-index: -1;
}

.bg-base3 {
  position: relative;
}

.bg-base3:before {
  position: absolute;
  content: "";
  width: 95%;
  height: 70%;
  bottom: 0;
  right: 0;
  /* background: linear-gradient(to right, #b6c9cc 50%, rgba(108, 146, 153, 0.6) 100%); */
  background: #dcf4ff;
  z-index: -1;
  opacity: 0.8;
}

@media all and (max-width: 639px) {
  .bg-base3:before {
    height: 90%;
  }
}

.bg-sub {
  background: rgba(182, 201, 204, 0.1);
}

.bg-sub.type1 {
  background: linear-gradient(90deg, #98b3b7 0%, #98b3b7 70%, #b6c9cc 70%, #b6c9cc 100%);
}

.bg-sub.type2 {
  background: linear-gradient(to bottom, transparent 0%, transparent 50%, rgba(182, 201, 204, 0.2) 50%, rgba(182, 201, 204, 0.2) 100%);
}

.bg-triangle {
  position: relative;
  overflow: hidden;
}

.bg-triangle .inner {
  position: relative;
  z-index: 2;
}

.bg-triangle:before {
  position: absolute;
  content: "";
  width: 25%;
  height: 100%;
  top: 0;
  left: -300px;
  background-image: linear-gradient(to right bottom, #b6c9cc 0%, #b6c9cc 50%, #b6c9cc 65%, #b6c9cc 75.5%, #b6c9cc 82.85%, #b6c9cc 88%, #b6c9cc 100%);
  transform: skew(20deg);
  z-index: 1;
  opacity: 0.2;
}

.bg-triangle:after {
  position: absolute;
  content: "";
  width: 5%;
  height: 100%;
  bottom: 0;
  right: 2%;
  background: #b6c9cc;
  transform: skew(20deg);
  opacity: 0.2;
}

@media all and (max-width: 896px) {
  .bg-triangle:before {
    left: -180px;
  }
}

@media all and (max-width: 639px) {
  .bg-triangle:before {
    left: -80px;
    transform: skew(10deg);
    width: 40%;
  }

  .bg-triangle:after {
    display: none;
  }
}

.bg-triangle.type1:before {
  opacity: 0.1;
}

.bg-triangle.type1:after {
  opacity: 0.1;
}

.bg-gray {
  position: relative;
}

.bg-gray:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/24661/ferture_bg.jpg) no-repeat center top;
  z-index: -2;
  background-size: cover;
}

.bg-gray.type2:after {}

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

@media all and (max-width: 639px) {
  .bg-gray.type2:after {
    width: 300px;
    height: 370px;
    left: -50px;
  }
}

.bg-beige {
  position: relative;
  background: #F7F7F7;
}

.bg-beige.type1 {
  background: transparent;
  margin-top: 100px;
}

.bg-beige.type1:before {
  position: absolute;
  content: "";
  z-index: -2;
  width: 60%;
  height: 90%;
  top: 3%;
  right: 0;
  background-image: linear-gradient(to bottom, #f4f6f6, transparent);
  background: #f2fbff;
}

@media all and (max-width: 896px) {
  .bg-beige.type1::after {
    width: 100%;
  }
}

@media all and (max-width: 639px) {
  .bg-beige.type1:after {
    height: 55%;
    height: 100px;
  }

  .bg-beige.type1.type1 {
    margin-top: 40px;
  }
}

.bg-ivory {
  position: relative;
  border: 10px solid #e8e4de;
}

.bg-ivory.type1 {
  border: 10px solid #6c9299;
}

@media all and (max-width: 639px) {
  .bg-ivory.type1 {
    border-top: 5px solid #6c9299;
    border-bottom: 5px solid #6c9299;
    border-left: 0px solid #6c9299;
    border-right: 0px solid #6c9299;
  }
}

.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-top: 5px solid #e8e4de;
    border-bottom: 5px solid #e8e4de;
    border-left: 0px solid #e8e4de;
    border-right: 0px 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: #6c9299;
  color: #fff;
  font-weight: 500;
  white-space: nowrap;
}

.company th::after {
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: #f9f9f9;
  border-width: 10px;
  border-left-color: #6c9299;
  margin-top: -10px;
}

.company td {
  background: #f7f7f7;
  padding-left: 25px;
}

.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: 26%;
  text-align: left;
  color: #5a544d;
}

.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 th {
    white-space: nowrap;
  }

  .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 {
  color: #fff;
}

.tbl2 thead .normal {
  background: #fefefe;
  color: #5a544d;
}

.tbl2 th,
.tbl2 td {
  padding: 15px;
  vertical-align: middle;
  border: 1px solid #ccc;
  background: #fefefe;
}

.tbl2 th {
  background: rgba(182, 201, 204, 0.2);
  color: #5a544d;
}

@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: #faf5ef;
}

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

.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: #b6c9cc;
  font-size: 1.2em;
}

.price span {
  display: block;
  font-size: 1.4rem;
  color: #5a544d;
  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 #6c9299;
}

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

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

.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.type2 {
  padding-bottom: 36.25%;
}

.ggmap iframe,
.ggmap object,
.ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ggmap.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;
  text-indent: -1em;
  padding-left: 2em;
}

.list_check li a {
  color: #6c9299;
  border-bottom: 1px dotted #6c9299;
}

.list_check li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: 900;
  margin-right: 10px;
  color: #6c9299;
}

@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: #6c9299;
  margin: 0 4px;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  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: #b6c9cc;
}

.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: #b6c9cc;
  font-weight: normal;
}

@media all and (max-width: 639px) {
  .list-inline li {
    display: block;
    padding: 0;
  }

  .list-inline li:before {
    content: "-";
    color: #b6c9cc;
  }

  .list-inline li:not(:last-of-type):after {
    display: none;
  }
}

/*time-list*/
.time-list.type_center {
  max-width: 480px;
  margin: 0 auto;
}

.time-list li {
  display: flex;
  position: relative;
}

.time-list li .txtarea {
  order: 1;
  padding: 0px 40px 30px 40px;
}

.time-list li .txtarea:before {
  content: "";
  position: absolute;
  left: 168px;
  top: 0;
  height: 100%;
  width: 2px;
  background-color: #d3d3d3;
}

.time-list li .txtarea:last-child:before {
  display: none;
}

.time-list li .txtarea:after {
  content: "";
  position: absolute;
  left: 160px;
  top: 0;
  width: 20px;
  height: 20px;
  background-color: #6c9299;
  z-index: 1;
  border: 2px solid #6c9299;
  border-radius: 50%;
}

.time-list li .ttl {
  font-size: 1.4rem;
  line-height: 1.4;
}

.time-list li .time {
  flex: 0 0 150px;
  text-align: end;
  min-width: 0;
  overflow-wrap: break-word;
  padding-bottom: 1rem;
  color: #b6c9cc;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.5rem;
}

@media all and (max-width: 1100px) {
  .time-list {
    padding-left: 0;
  }

  .time-list li .txtarea {
    order: 1;
    padding: 0px 0px 30px 40px;
    text-align: left;
  }

  .time-list li .txtarea:before {
    content: "";
    position: absolute;
    left: 88px;
  }

  .time-list li .txtarea:last-child:before {
    display: none;
  }

  .time-list li .txtarea:after {
    content: "";
    position: absolute;
    left: 79px;
  }

  .time-list li .time {
    flex: 0 0 70px;
  }
}

@media all and (max-width: 639px) {
  .time-list {
    padding-left: 0;
  }

  .time-list li .txtarea {
    order: 1;
    padding: 0px 0px 30px 40px;
    text-align: left;
  }

  .time-list li .txtarea:before {
    content: "";
    position: absolute;
    left: 88px;
  }

  .time-list li .txtarea:last-child:before {
    display: none;
  }

  .time-list li .txtarea:after {
    content: "";
    position: absolute;
    left: 79px;
  }

  .time-list li .time {
    flex: 0 0 72px;
    font-size: 1.3rem;
  }
}

.list_voice {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 85%;
  margin: 0 auto 75px;
}

.list_voice.type2 {
  margin-bottom: 0;
}

.list_voice>li {
  width: 40%;
}

.list_voice>li:nth-child(2) {
  margin-top: 100px;
}

.list_voice>li .img img {
  height: 400px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 30px;
}

.list_voice>li .ttl {
  text-align: center;
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.list_voice>li .sub_ttl {
  text-align: center;
  margin-bottom: 20px;
}

.list_voice>li .sub_ttl span {
  background: #b6c9cc;
  color: #fff;
  border-radius: 20px;
  padding: 5px 15px;
}

@media all and (max-width: 896px) {
  .list_voice {
    width: 100%;
  }

  .list_voice>li {
    width: 45%;
  }
}

@media all and (max-width: 639px) {
  .list_voice>li {
    width: 100%;
  }

  .list_voice>li .img img {
    height: 250px;
  }
}

.list-inline2.type1 li {
  background: #b6c9cc;
}

.list-inline2 li {
  display: inline-block;
  padding: 4px 15px;
  color: #fefefe;
  background: #b6c9cc;
  border-radius: 5px;
  margin: 2px;
  opacity: 1 !important;
}

@media all and (max-width: 639px) {
  .list-inline2 li {
    padding: 3px 10px;
  }
}

.list_num li {
  position: relative;
  padding: 6px 4px 6px 50px;
  font-size: 2rem;
  margin-bottom: 5px;
  color: #5a544d;
}

.list_num li span {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3.5rem;
  color: #b6c9cc;
}

@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: "Lato", sans-serif;
  font-weight: 500;
  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: #b6c9cc;
}

.list_disc.type2 li:before {
  content: "・";
}

.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: #6c9299;
  font-size: 9px;
  margin-right: 5px;
}

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

#top-blog .blog-img {
  height: 200px;
}

@media all and (max-width: 1100px) {
  #top-blog .blog-img {
    height: 160px;
  }
}

@media all and (max-width: 896px) {
  #top-blog .blog-img {
    height: 130px;
  }
}

@media all and (max-width: 639px) {
  #top-blog .blog-img {
    height: 90px;
  }
}

.blog-wrap {
  display: flex;
  flex-wrap: wrap;
}

.blog-wrap * {
  transition: 0.3s;
}

.blog-wrap>li {
  width: 31.333%;
  margin: 1%;
  position: relative;
  background: #fefefe;
  overflow: hidden;
  border-radius: 10px;
}

.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: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 auto;
    border-radius: 5px;
  }

  .blog-wrap>li:not(:last-child) {
    margin: 0 auto 10px;
  }

  .blog-wrap>li .blog-img {
    width: 32%;
  }

  .blog-wrap>li .blog-detail {
    width: 68%;
    padding: 10px 10px 10px 20px;
  }
}

.blog-img {
  width: 100%;
  height: 160px;
  overflow: hidden;
}

@media all and (max-width: 639px) {
  .blog-img {
    height: 140px;
  }
}

.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: 15px;
}

.blog-date {
  color: #5a544d;
  text-align: center;
  display: inline-block;
  color: #b6c9cc;
  border: 1px solid #b6c9cc;
  border-radius: 30px;
  padding: 1px 10px;
  font-size: 1.4rem;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
}

@media all and (max-width: 639px) {
  .blog-date {
    font-size: 1.15rem;
  }
}

.blog-date2 {
  color: #5a544d;
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.blog-date2 span {
  font-family: "BIZ UDPGothic", "YakuHanJP", "Zen Maru Gothic", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.blog-date2:before {
  font-family: "Font Awesome 5 Free";
  content: "\f017";
  font-weight: 900;
  margin-right: 2px;
  color: #6c9299;
}

@media all and (max-width: 639px) {
  .blog-date2 {
    font-size: 1.1rem;
  }
}

.blog-title {
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-family: "BIZ UDPGothic", "YakuHanJP", "Zen Maru Gothic", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-top: 10px;
}

@media all and (max-width: 639px) {
  .blog-title {
    margin-top: 5px;
  }
}

.blog-txt {
  line-height: 1.5;
  color: #6c9299;
  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: #5a544d;
  padding: 4px 5px;
  font-size: 12px;
}

.blog_topics {
  width: 100%;
  border-top: 1px solid #ddd;
}

.blog_topics li {
  border-bottom: 1px solid #ddd;
}

.blog_topics li a {
  display: block;
  color: #5a544d;
  padding: 15px;
  transition: 0.3s ease-in all;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.blog_topics li a:hover {
  background-color: rgba(250, 245, 239, 0.5);
}

.blog_topics li a .topics_detail {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  align-items: center;
}

.blog_topics li a .topics_detail .imgbox {
  overflow: hidden;
  width: 25%;
  height: 140px;
  border-radius: 5px;
}

.blog_topics li a .topics_detail .imgbox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.3s ease-in all;
}

.blog_topics li a .topics_detail .textbox {
  width: 75%;
  padding-left: 20px;
  line-height: 1.5;
}

.blog_topics li a .topics_detail .textbox h3 {
  margin: 5px 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.blog_topics li a .topics_detail .textbox p {
  font-size: 1.3rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.blog_topics li a .time_date {
  display: inline-block;
  font-size: 1.4rem;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #5a544d;
}

.blog_topics li a .time_date:before {
  font-family: "Font Awesome 5 Free";
  content: "\f017";
  font-weight: 900;
  margin-right: 3px;
}

@media all and (max-width: 896px) {
  .blog_topics li a .topics_detail .imgbox {
    height: 120px;
  }
}

@media all and (max-width: 639px) {
  .blog_topics li a {
    padding: 10px 5px;
  }

  .blog_topics li a .topics_detail .imgbox {
    width: 30%;
    height: 90px;
  }

  .blog_topics li a .topics_detail .textbox {
    width: 70%;
    padding-left: 10px;
    line-height: 1.5;
  }

  .blog_topics li a .topics_detail .textbox p {
    font-size: 1rem;
  }

  .blog_topics li a .time_date {
    font-size: 1.15rem;
  }
}

.category_nav {
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 5px;
}

.category_nav li {
  box-sizing: border-box;
}

.category_nav li:not(:last-child) {
  border-bottom: 1px solid #ddd;
}

.category_nav li a {
  text-align: center;
  display: block;
  padding: 8px;
  background: transparent;
  color: #fff;
  background: #f6eee3;
  background: #a2c51a;
}

.category_nav li a:hover {
  opacity: 0.6;
}

@media all and (max-width: 896px) {
  .category_nav {
    max-width: 200px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}

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

@media all and (max-width: 639px) {
  .small {
    font-size: 1rem;
  }
}

.img-box {
  text-align: center;
  margin: 0 auto;
  width: 70%;
}

.link-btn a {
  text-align: center;
  display: block;
  border: 1px solid #dfe5e1;
  max-width: 400px;
  padding: 10px 30px;
  background: #fff;
}

.link-btn a:hover img {
  transition: all 0.5s ease;
  transform: scale(0.9);
}

@media all and (max-width: 896px) {
  .link-btn {
    margin-bottom: 20px;
  }

  .link-btn a {
    max-width: 100%;
  }
}

.icon_img {
  height: 2.2em;
  padding: 0 5px;
}

.video-box {
  padding-top: 60px;
  padding-bottom: 60px;
  width: 80%;
  margin: 0 auto;
}

.video-box video {
  width: 100%;
  border-radius: 20px;
}

@media all and (max-width: 639px) {
  .video-box {
    width: 95%;
    padding-top: 0;
    padding-bottom: 0;
  }
}

@media all and (max-width: 639px) {
  .sp-chpusei {
    height: 400px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .sp-chpusei.type1 {
    -o-object-position: center 20%;
    object-position: center 20%;
  }
}

.link-list .inner:not(:last-child) {
  margin-bottom: 15px;
}

.link-list .inner.not-link a {
  pointer-events: none;
}

.img-h100 {
  height: 100%;
}

.img-h100 img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media all and (max-width: 896px) {
  .img-h100 {
    height: 300px;
  }
}

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

.color2 {
  color: #b6c9cc;
}

.color3 {
  color: #4c686d;
}

.brown {
  color: #5a544d;
}

.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: #6c9299;
  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: "\f2a0";
  font-weight: 900;
  margin-right: 5px;
}

.num a:hover {
  color: #6c9299;
}

/* breadcrumb
----------------------------------*/
.breadcrumb {
  max-width: 1200px;
  margin: 20px auto 20px;
  font-size: 1.2rem;
  font-family: "BIZ UDPGothic", "YakuHanJP", "Zen Maru Gothic", "游ゴシック 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: #6c9299;
}

.breadcrumb li+li:before {
  margin: 0 10px;
  content: ">";
}

@media all and (max-width: 639px) {
  .breadcrumb {
    font-size: 12px;
  }
}

/* form
----------------------------------*/
.thanks {
  padding: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  background: #f7f7f7;
}

@media all and (max-width: 639px) {
  .thanks {
    max-width: 94%;
    padding: 30px 15px;
  }
}

.shadow {
  box-shadow: 0 0 10px rgba(90, 84, 77, 0.1);
}

.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: #fff;
  cursor: pointer;
  font-family: "BIZ UDPGothic", "YakuHanJP", "Zen Maru Gothic", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 1.6rem;
  border-top: 1px dotted #6c9299;
  border-bottom: 1px dotted #6c9299;
  color: #6c9299;
}

.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: "BIZ UDPGothic", "YakuHanJP", "Zen Maru Gothic", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #5a544d;
  padding-bottom: 4px;
  border-bottom: 1px solid #6c9299;
  position: relative;
  margin-bottom: 15px;
}

.mtitle_small span {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 110%;
}

.mtitle_small:before {
  font-family: "Font Awesome 5 Free";
  content: "\f138";
  font-weight: 900;
  margin-right: 5px;
  color: #6c9299;
}

.mtitle_small2 {
  position: relative;
  margin-bottom: 5px;
  padding-left: 20px;
  font-family: "BIZ UDPGothic", "YakuHanJP", "Zen Maru Gothic", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.mtitle_small2:before {
  position: absolute;
  content: "";
  background-color: #6c9299;
  width: 10px;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.mtitle_small2.type2 {
  padding-left: 0;
}

.mtitle_small2.type2:before {
  display: none;
}

.mtitle_small2.type2 span {
  position: relative;
  padding-left: 20px;
}

.mtitle_small2.type2 span:before {
  position: absolute;
  content: "";
  background-color: #6c9299;
  width: 10px;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.mtitle_small3 {
  font-family: "BIZ UDPGothic", "YakuHanJP", "Zen Maru Gothic", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #5a544d;
  padding: 10px 0;
  font-size: 1.6rem;
  border-top: 1px solid #6c9299;
  border-bottom: 1px solid #6c9299;
  margin-bottom: 15px;
}

.mtitle_small3:before {
  content: "＋";
  margin-right: 8px;
  color: #6c9299;
}

.mtitle_small3.type1 {
  border-top: 1px solid #b6c9cc;
  border-bottom: 1px solid #b6c9cc;
}

.mtitle_small3.type1:before {
  color: #b6c9cc;
}

@media all and (max-width: 639px) {
  .mtitle_small3 {
    padding: 6px 0;
    font-size: 1.3rem;
  }
}

.mtitle_small4 {
  font-size: 2rem;
  color: #4C4948;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.mtitle_small4 .ja {
  padding-left: 10px;
}

.mtitle_small4.white {
  color: #fff;
}

@media all and (max-width: 639px) {
  .mtitle_small4 {
    margin-bottom: 10px;
    font-size: 1.5rem;
  }
}

.mtitle_small5 {
  position: relative;
  margin-bottom: 5px;
  padding-left: 20px;
  margin-left: 1%;
  font-family: "BIZ UDPGothic", "YakuHanJP", "Zen Maru Gothic", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 2.1rem;
}

.mtitle_small5:before {
  position: absolute;
  content: "";
  background-color: #6c9299;
  width: 10px;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

@media all and (max-width: 639px) {
  .mtitle_small5 {
    font-size: 1.6rem;
  }
}

/*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 {
  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 2% 4.5% 0;
}

.gallery.col3 li:nth-child(3n) {
  margin-right: 0;
}

@media all and (max-width: 896px) {
  .gallery.col3 li {
    margin: 0 2% 7% 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 {
  height: 240px;
}

.gallery li a {
  background: #f6f6f6;
  display: block;
  text-align: center;
  padding: 0px;
  height: 100%;
}

.gallery li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center 5%;
  object-position: center 5%;
}

@media all and (max-width: 639px) {
  .gallery li a {
    height: 100px;
  }
}

.gallery li p {
  margin: 5px 0;
  text-align: center;
  font-size: 1.2rem;
  background: #f5f0e8;
  padding: 5px 3px;
}

.gallery li .works-txt {
  font-weight: 900;
}

.gallery li .works-txt span {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  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: "BIZ UDPGothic", "YakuHanJP", "Zen Maru Gothic", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

@media all and (max-width: 896px) {
  .gallery li {
    height: 180px;
  }
}

@media all and (max-width: 639px) {
  .gallery li {
    height: 150px;
  }

  .gallery li p {
    font-size: 1rem;
  }
}

.slide_list {
  position: relative;
  margin: 80px 0;
}

.slide_list li {
  margin-left: 10px;
  border-radius: 10px;
  width: 320px;
}

.slide_list li img {
  width: auto;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  -o-object-fit: cover;
  object-fit: cover;
}

.slide_list li p {
  display: none;
}

.slide_list li a {
  transition: all 0.6s ease;
}

.slide_list li a:hover {
  opacity: 0.6;
}

@media all and (max-width: 1100px) {
  .slide_list li img {
    height: 240px;
  }
}

@media all and (max-width: 896px) {
  .slide_list li {
    margin-left: 10px;
  }

  .slide_list li img {
    border-radius: 5px;
    height: 200px;
  }
}

@media all and (max-width: 639px) {
  .slide_list li {
    width: 150px;
  }

  .slide_list li img {
    height: 150px;
  }
}

.list2 {
  display: flex;
  flex-wrap: wrap;
  max-width: 1500px;
  margin-right: auto;
  margin-left: auto;
  margin-top: -50px;
}

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

.list2.interview-list .child {
  position: relative;
  padding-bottom: 80px;
}

.list2.type1>li,
.list2.type1 .child {
  background: #fefefe;
  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: 896px) {

  .list2>li:nth-child(2n),
  .list2 .child:nth-child(2n) {
    margin-left: auto;
  }
}

@media all and (max-width: 896px) {

  .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: 1100px) {
  .list4 li {
    width: 31.33%;
  }
}

@media all and (max-width: 639px) {
  .list4 {
    margin-left: auto;
  }

  .list4 li {
    width: 90%;
    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 #fde792;
  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: #fde792 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;
  background: #FEF9FA;
  border-radius: 8px;
  letter-spacing: 0;
  font-size: 1.5rem;
}

@media all and (max-width: 639px) {
  .note {
    font-size: 1.15rem;
  }
}

.note.type1 {
  background: #f4efe9;
}

.note2 {
  padding: 20px;
  border-top: 4px dotted #999;
  border-bottom: 4px dotted #999;
}

@media all and (max-width: 639px) {
  .note2 {
    padding: 20px 10px;
  }
}

.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: #6c9299;
  width: 60px;
  text-align: center;
  margin-right: 20px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding-top: 8px;
}

.flow-dl dt span {
  font-size: 3.5rem;
  display: block;
  line-height: 1;
  color: #b6c9cc;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  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: rgba(182, 201, 204, 0.1);
  color: #5a544d;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-right: 16px;
  padding-left: 36px;
  line-height: 1.6;
  position: relative;
  cursor: pointer;
  transition: all 1s ease;
}

.faq dt:before {
  content: "Q";
  position: absolute;
  top: -6px;
  left: -6px;
  text-indent: 0px;
  line-height: 35px;
  color: #fff;
  background: #b6c9cc;
  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: "Lato", sans-serif;
  font-weight: 700;
  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: "Lato", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.faq-dl .faq-inner dt {
  margin-bottom: 10px;
  font-size: 110%;
  font-family: "BIZ UDPGothic", "YakuHanJP", "Zen Maru Gothic", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #5a544d;
}

.faq-dl .faq-inner dt:before {
  content: "Q";
  color: #fff;
  font-size: 2rem;
  background: #6c9299;
}

.faq-dl .faq-inner dd:before {
  content: "A";
  color: #fff;
  font-size: 2rem;
  background: #b6c9cc;
}

.sns-list {
  display: flex;
  flex-wrap: wrap;
}

.sns-list.type1 {
  justify-content: center;
}

.sns-list li:not(:last-child),
.sns-list .child:not(:last-child) {
  margin-right: 10px;
}

.sns-list li a,
.sns-list .child a {
  width: 42px;
  height: 42px;
  display: block;
  text-align: center;
  line-height: 42px !important;
  position: relative;
  border-radius: 50%;
}

.sns-list li a img,
.sns-list .child a img {
  position: relative;
  vertical-align: middle;
  width: 26px;
  z-index: 3;
  top: -1.5px;
}

.sns-list li a:hover,
.sns-list .child a:hover {
  opacity: 0.7;
}

.sns-list li a.btn-mail,
.sns-list .child a.btn-mail {
  background: #6c9299;
}

.sns-list li a.btn-mail i,
.sns-list .child a.btn-mail i {
  font-size: 2rem;
  color: #fff;
}

.sns-list li a.btn-facebook,
.sns-list .child a.btn-facebook {
  background: #1877f2;
}

.sns-list li a.btn-twitter,
.sns-list .child a.btn-twitter {
  background: #1da1f2;
}

.sns-list li a.btn-line,
.sns-list .child a.btn-line {
  background: #00B900;
}

.sns-list li a.btn-rakuten,
.sns-list .child a.btn-rakuten {
  background: #bf0000;
}

.sns-list li a.btn-yahoo,
.sns-list .child a.btn-yahoo {
  background: #df0f16;
}

.sns-list li a.btn-amazon,
.sns-list .child a.btn-amazon {
  background: #f69400;
}

.sns-list li a.btn-amazon2,
.sns-list .child a.btn-amazon2 {
  background: #5a544d;
  pointer-events: none;
}

.sns-list li a.btn-qoo10,
.sns-list .child a.btn-qoo10 {
  background: #e82b39;
}

.sns-list li a.btn-qoo102,
.sns-list .child a.btn-qoo102 {
  background: #5a544d;
  pointer-events: none;
}

.sns-list li a.btn-instagram,
.sns-list .child a.btn-instagram {
  overflow: hidden;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
}

.sns-list li a.btn-instagram:before,
.sns-list .child a.btn-instagram:before {
  content: "";
  position: absolute;
  top: 18px;
  left: -10px;
  width: 50px;
  height: 50px;
  background: radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
}

.sns-list li a.btn-gray,
.sns-list .child a.btn-gray {
  background: #383636;
}

.name {
  width: 170px;
  margin: -20px auto 20px;
  position: relative;
  z-index: 2;
  background: #fff;
  color: #5a544d;
  font-weight: 600;
  text-align: center;
  padding: 15px 6px;
  box-shadow: 0 0 8px rgba(90, 84, 77, 0.05);
  line-height: 1.5;
}

.name .small {
  font-size: 85%;
  display: block;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  letter-spacing: 0.2em;
}

.greet {
  font-weight: 600;
  letter-spacing: 0;
  line-height: 2;
  color: #5a544d;
  font-size: 1.6rem;
}

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

.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(108, 146, 153, 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, #a8bfc3, #6c9299);
  opacity: 0.7;
}

@media all and (max-width: 639px) {
  .box1 {
    padding: 25px 15px;
  }
}

.pickup {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #6c9299;
}

.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(90, 84, 77, 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: #6c9299;
  font-size: 3.5rem;
  border-right: 1px solid #6c9299;
  padding-right: 15px;
  align-self: center;
  line-height: 1.2;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  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: #6c9299;
  border-bottom: 1px solid #6c9299;
  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 #6c9299;
  }

  .flow-list li .flow-title {
    font-size: 1.3rem;
  }

  .flow-list li .txt {
    margin: 20px auto 0;
  }
}

.price-dl dt {
  background: #ede4d6;
  padding: 14px 20px;
  color: #5a544d;
  border-top: 1px solid #b6c9cc;
  border-bottom: 1px solid #b6c9cc;
}

.price-dl dd {
  padding: 20px;
  margin-bottom: 25px;
}

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

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

.top-cont02 {
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}

.top-cont02 .inner {
  position: relative;

}

.top-cont02 .inner .top-cont02-img {
  width: 46%;
}

.top-cont02 .inner .top-cont02-img img {
  filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.2));
}

.top-cont02 .inner .top-cont02-img .img01 {
  z-index: 0;
  width: 100%;
}

.top-cont02 .inner .top-cont02-img .img02 {
  width: 45%;
  z-index: 1;
  margin-top: -60px;
  margin-left: auto;
}

.top-cont02 .inner .top-cont02-txt {
  width: 50%;
}

.top-cont02 .inner .top-cont02-txt p+p {
  margin-top: 10px;
}

.top-cont02.type1 {
  max-width: 1500px;
  width: 95%;
}

.top-cont02.type1 .inner .top-cont02-img {
  width: 45%;
}

.top-cont02.type1 .inner .top-cont02-img .img01,
.top-cont02.type1 .inner .top-cont02-img .img02 {
  filter: drop-shadow(16px 16px 0px #e6e6e6);
}

.top-cont02.type1 .inner .top-cont02-img .img01 img,
.top-cont02.type1 .inner .top-cont02-img .img02 img {
  width: calc(100% - 16px);
  border-radius: 30px;
  overflow: hidden;
}

@media all and (max-width: 896px) {

  .top-cont02.type1 .inner .top-cont02-img .img01,
  .top-cont02.type1 .inner .top-cont02-img .img02 {
    filter: drop-shadow(8px 8px 0px #e6d9c4);
  }

  .top-cont02.type1 .inner .top-cont02-img .img01 img,
  .top-cont02.type1 .inner .top-cont02-img .img02 img {
    width: calc(100% - 8px);
  }
}

.top-cont02.type1 .inner .top-cont02-img .img02 {
  margin-top: 40px;
}

.top-cont02.type1 .inner .top-cont02-txt {
  width: 72%;
  margin-left: auto;
  color: #fff;
}

@media all and (max-width: 1100px) {
  .top-cont02 .inner .top-cont02-img .img01 {
    height: 400px;
  }

  .top-cont02 .inner .top-cont02-img .img01 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

@media all and (max-width: 896px) {
  .top-cont02 .inner {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
  }

  .top-cont02 .inner .top-cont02-img {
    width: 100%;
    margin-bottom: 20px;
    order: -1;
  }

  .top-cont02 .inner .top-cont02-img .img01 {
    height: 250px;
  }

  .top-cont02 .inner .top-cont02-img .img02 {
    margin-top: -80px;
    max-width: 350px;
  }

  .top-cont02 .inner .top-cont02-txt {
    width: 100%;
    margin: auto;
  }

  .top-cont02.type1 {
    width: 100%;
  }

  .top-cont02.type1 .inner .top-cont02-img {
    width: 100%;
  }

  .top-cont02.type1 .inner .top-cont02-txt {
    width: 100%;
  }
}

@media all and (max-width: 639px) {
  .top-cont02 .inner {
    max-width: calc(100% - 10px);
  }

  .top-cont02 .inner .top-cont02-img .img02 {
    margin-top: -40px;
    max-width: 300px;
  }

  .top-cont02.type1 .inner .top-cont02-img .img02 {
    margin-top: 20px;
  }
}

.top-cont03 {
  margin-top: 100px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 60px 0;
}

.top-cont03 .inner {
  display: flex;
  gap: 40px;
}

.top-cont03 .inner .top-cont03-img {
  width: 400px;
}

.top-cont03 .inner .top-cont03-img img {
  border-radius: 20px;
}

@media all and (max-width: 639px) {
  .top-cont03 {
    margin-top: 50px;
  }

  .top-cont03 .inner {
    flex-direction: column;
  }

  .top-cont03 .inner .top-cont03-img {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media all and (max-width: 1100px) {
  .flex_txt_area {
    flex-direction: column;
  }

  .flex_txt_area>div {
    width: 100% !important;
  }
}

.top_service_box {
  display: flex;
  flex-wrap: wrap;
  margin-top: 100px;
}

.top_service_box>li {
  width: 50%;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  gap: 40px;
}

.top_service_box>li:nth-child(1),
.top_service_box>li:nth-child(3) {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.top_service_box>li:nth-child(1),
.top_service_box>li:nth-child(2) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.top_service_box>li .num_ttl {
  display: flex;
  justify-content: space-between;
  width: 70%;
  margin-bottom: 20px;
  font-family: "Lato", sans-serif;
  font-weight: bold;
  font-size: 2rem;
}

.top_service_box>li .num_ttl .ttl {
  color: rgba(255, 255, 255, 0.6);
}

.top_service_box>li .txt .sub_ttl {
  font-size: 2rem;
  font-weight: bold;
}

.top_service_box>li .icon {
  margin-bottom: 0;
}

@media all and (max-width: 1100px) {
  .top_service_box {
    margin-top: 50px;
  }

  .top_service_box>li {
    padding: 20px;
  }

  .top_service_box>li .num_ttl {
    width: 100%;
    font-size: 1.5rem;
  }

  .top_service_box>li .txt .sub_ttl {
    font-size: 1.6rem;
  }
}

@media all and (max-width: 639px) {
  .top_service_box>li {
    width: 100%;
  }

  .top_service_box>li:nth-child(1),
  .top_service_box>li:nth-child(3) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
}

.top-greet-lead {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-feature-settings: "pkna";
  position: absolute;
  left: 20px;
  top: 20px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: inherit;
  z-index: 2;
  letter-spacing: 0.15em;
  font-size: 3rem;
  color: #fff;
  line-height: 1;
}

@media all and (max-width: 1100px) {
  .top-greet-lead {
    font-size: 2.4rem;
  }
}

@media all and (max-width: 896px) {
  .top-greet-lead {
    font-size: 2rem;
    letter-spacing: 0.1em;
  }
}

@media all and (max-width: 639px) {
  .top-greet-lead {
    left: 15px;
    top: 15px;
    font-size: 1.6rem;
  }
}

.top-greet-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}

@media all and (max-width: 896px) {
  .top-greet-wrap {
    flex-direction: column;
    margin: 0;
  }
}

@media all and (max-width: 639px) {
  .top-greet-wrap {
    justify-content: center;
  }
}

.top-greet-img1 {
  width: 46%;
  position: relative;
}

.top-greet-img1 img {
  width: 100%;
}

@media all and (max-width: 896px) {
  .top-greet-img1 {
    width: 100%;
    margin-bottom: 4%;
    margin-left: auto;
    margin-right: auto;
  }

  .top-greet-img1 img {
    height: 300px;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

@media all and (max-width: 639px) {
  .top-greet-img1 {
    margin-bottom: 6%;
    width: calc(100% - 10px);
  }
}

.top-greet-box {
  width: 50%;
  position: relative;
  z-index: 2;
}

.top-greet-box p {
  letter-spacing: 0.15em;
  line-height: 2;
}

.top-greet-box .mtext3 {
  line-height: 1.5;
}

@media all and (max-width: 896px) {
  .top-greet-box {
    width: 100%;
    margin: 0 auto;
  }
}

@media all and (max-width: 639px) {
  .top-greet-box {
    width: calc(100% - 10px);
    display: flex;
    flex-wrap: wrap;
  }

  .top-greet-box p {
    line-height: 1.8;
  }
}

.img_flex_box {
  display: flex;
  margin: 0 20px;
  flex-wrap: wrap;
}

.img_flex_box>li {
  width: 25%;
  padding: 20px;
}

.img_flex_box>li img {
  border-radius: 20px;
}

@media all and (max-width: 896px) {
  .img_flex_box>li {
    width: 50%;
    padding: 10px;
  }
}

.top-greet-txt {
  margin: 6% auto 0;
  order: -1;
  width: 95%;
}

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

@media all and (max-width: 1100px) {
  .top-greet-txt {
    width: 98%;
  }

  .top-greet-txt p+p {
    margin-top: 10px;
  }
}

@media all and (max-width: 639px) {
  .top-greet-txt {
    margin: 0 auto 6%;
  }
}

.top-greet-img-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.top-greet-img-box .message-ttl {
  position: absolute;
  top: 10px;
  left: 10px;
  max-width: 400px;
  width: 57%;
  z-index: 1;
}

@media all and (max-width: 1100px) {
  .top-greet-img-box .message-ttl {
    left: 5px;
  }
}

@media all and (max-width: 639px) {
  .top-greet-img-box .message-ttl {
    left: 5px;
    width: 52%;
  }
}

.top-greet-img-box .img-box1 {
  width: 39%;
}

.top-greet-img-box .img-box2 {
  width: 52%;
}

.top-greet-img-box img {}

@media all and (max-width: 639px) {
  .top-greet-img-box {
    align-items: center;
    order: 2;
  }

  .top-greet-img-box .img-box1 {
    width: 40%;
  }

  .top-greet-img-box .img-box2 {
    width: 54%;
  }
}

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

.top-column2 .child {
  width: 47%;
  padding: 10px 20px;
  table-layout: fixed;
  word-wrap: break-word;
}

.top-column2 .child-img {
  width: 50%;
  position: relative;
}

@media all and (max-width: 896px) {
  .top-column2 {
    flex-direction: column;
  }

  .top-column2 .child {
    width: 100%;
    padding: 5px;
  }

  .top-column2 .child-img {
    width: 100%;
    order: -1;
    margin-bottom: 20px;
  }
}

.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 .child {
  width: 48%;
}

.column2 .child2 {
  width: 40%;
}

.column2 .child3 {
  width: 58%;
}

.column2 .child4 {
  width: 35%;
}

.column2 .child5 {
  width: 62%;
}

@media all and (max-width: 896px) {
  .column2 {
    flex-direction: column;
  }

  .column2 .child,
  .column2 .child2,
  .column2 .child3,
  .column2 .child4,
  .column2 .child5 {
    width: 100%;
  }

  .column2 .child.bm20,
  .column2 .child2.bm20,
  .column2 .child3.bm20,
  .column2 .child4.bm20,
  .column2 .child5.bm20 {
    margin-bottom: 20px;
  }

  .column2 .child.bm30,
  .column2 .child2.bm30,
  .column2 .child3.bm30,
  .column2 .child4.bm30,
  .column2 .child5.bm30 {
    margin-bottom: 30px;
  }

  .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 .child.child-img,
  .column2 .child2.child-img,
  .column2 .child3.child-img,
  .column2 .child4.child-img,
  .column2 .child5.child-img {
    margin-bottom: 20px;
  }
}

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

.column3 .child {
  width: 33%;
}

.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%;
  }

  .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;
  }
}

.paypay-box {
  padding: 20px;
  margin-top: 10px;
  background: #E72A2B;
  border-radius: 8px;
  letter-spacing: 0;
  font-size: 1.5rem;
  color: #fff;
}

@media all and (max-width: 639px) {
  .paypay-box {
    font-size: 1.15rem;
  }
}

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

.slider-item {
  width: 100%;
  max-width: 700px;
  border: 2px solid #b6c9cc;
  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: #6c9299;
}

@media all and (max-width: 1100px) {
  .slide-arrow.prev-arrow {
    left: 10px;
    margin-left: 0;
  }
}

@media all and (max-width: 639px) {
  .slide-arrow.prev-arrow {
    border-color: #b6c9cc;
  }
}

.slide-arrow.next-arrow {
  right: 50%;
  margin-right: -370px;
  border-top: solid 2px;
  border-right: solid 2px;
  border-color: #6c9299;
}

@media all and (max-width: 1100px) {
  .slide-arrow.next-arrow {
    right: 10px;
    margin-right: 0;
  }
}

@media all and (max-width: 639px) {
  .slide-arrow.next-arrow {
    border-color: #b6c9cc;
  }
}

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

.name-box p span {
  display: block;
  font-size: 1.3rem;
  color: #5a544d;
}

@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 #6c9299;
  border-bottom: 0.9px solid #6c9299;
  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: #6c9299 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;
  }
}

.merit__list {
  position: relative;
  margin: 80px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 30px;
}

.merit__list li {
  width: 31%;
  margin: 0 1% 50px;
  padding: 20px;
  border: 2px solid #D2D6D4;
  border-radius: 10px;
  position: relative;
  filter: drop-shadow(6px 6px 0px rgba(37, 53, 43, 0.2));
  background-color: #fff;
}

@media all and (max-width: 1100px) {
  .merit__list li {
    padding: 15px;
  }
}

@media all and (max-width: 896px) {
  .merit__list li {
    width: 47%;
  }
}

.merit__list li.b-m50 {
  margin-bottom: 50px;
}

.merit__list .list__num {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: -44px;
  text-align: center;
}

.merit__list .list__num span {
  background-color: #6c9299;
  color: #fff;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  line-height: 2.2;
  display: inline-block;
  border: 10px solid #fff;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 3rem;
}

.merit__list .list__icon {
  margin: 20px auto 0;
  max-width: 150px;
}

.merit__list .list__title {
  font-size: 2rem;
  font-weight: bold;
  position: relative;
  text-align: center;
  margin-bottom: 20px;
}

@media all and (max-width: 1100px) {
  .merit__list .list__title {
    font-size: 1.6rem;
  }
}

.merit__list .list__title span {
  border-bottom: 3px dotted #6c9299;
  padding-bottom: 7px;
}

.merit__list .list__txt {
  margin: 10px auto 0;
}

@media all and (max-width: 639px) {
  .merit__list {
    margin: 50px auto 0;
  }

  .merit__list li {
    width: 100%;
    padding: 10px;
    filter: drop-shadow(2px 2px 0px rgba(37, 53, 43, 0.2));
  }

  .merit__list .list__num span {
    width: 70px;
    height: 70px;
    line-height: 2.6;
    font-size: 22px;
  }

  .merit__list .list__icon {
    margin: 10px auto 0;
    max-width: 70px;
  }

  .merit__list .list__title {
    font-size: 18px;
  }

  .merit__list .list__txt {
    margin: 10px auto 10px;
    font-size: 1rem;
  }
}

.merit__list.type2>li {
  margin-bottom: 20px;
}

.merit__list.type2 .list__txt {
  font-size: 2.5rem;
  text-align: center;
  font-weight: bold;
}

@media all and (max-width: 639px) {
  .merit__list.type2 .list__txt {
    font-size: 25px;
  }
}

.merit__list.type2 .list__icon {
  width: 30%;
}

.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: "Lato", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  left: 30px;
  top: -30px;
  z-index: 3;
  text-shadow: 1px 1px 0px #b6c9cc, -1px 1px 0px #b6c9cc, 1px -1px 0px #b6c9cc, -1px -1px 0px #b6c9cc, 1px 0px 0px #b6c9cc, 0px 1px 0px #b6c9cc, -1px 0px 0px #b6c9cc, 0px -1px 0px #b6c9cc;
}

.feature-list>li .feature-num:before {
  position: absolute;
  content: "Feature";
  left: -18px;
  top: -20px;
  color: #b6c9cc;
  text-shadow: none;
  transform: rotate(-13deg);
  font-size: 2.4rem;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  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: "BIZ UDPGothic", "YakuHanJP", "Zen Maru Gothic", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-align: center;
  color: #6c9299;
  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%;
  }
}

.covid-area {
  position: relative;
}

.covid-area:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: rgba(232, 228, 222, 0.5);
}

.covid-wrap {
  max-width: 1000px;
  width: 95%;
  margin: 0 auto;
  background: #fff;
  border-radius: 10px;
  padding: 35px;
  z-index: 20;
  cursor: pointer;
}

@media all and (max-width: 639px) {
  .covid-wrap {
    padding: 20px 15px;
  }
}

.covid-title {
  border: 2px solid #e8e4de;
  padding: 10px 5px;
  text-align: center;
  font-size: 2rem;
  line-height: 1.6;
  color: #5a544d;
  font-family: "BIZ UDPGothic", "YakuHanJP", "Zen Maru Gothic", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  position: relative;
  transition: all 0.3s ease;
}

.covid-title:hover {
  background: rgba(250, 245, 239, 0.6);
}

.covid-title:after {
  position: absolute;
  content: "";
  right: 15px;
  top: 15px;
  width: 16px;
  height: 16px;
  border-top: 2px solid #b6c9cc;
  border-right: 2px solid #b6c9cc;
  transform: rotate(135deg);
}

@media all and (max-width: 639px) {
  .covid-title {
    padding: 10px 40px 10px 5px;
    font-size: 1.4rem;
  }

  .covid-title:after {
    right: 12px;
    width: 12px;
    height: 12px;
  }
}

.covid-content {
  display: none;
}

.mtext-top {
  font-size: 2.4rem;
  letter-spacing: 0.2rem;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.7;
  color: #6c9299;
}

.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/24661/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: "Lato", sans-serif;
  font-weight: 700;
  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;
}

.js-span-text.on span:nth-child(36) {
  animation: text 2s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.6s forwards;
}

.js-span-text.on span:nth-child(37) {
  animation: text 2s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.7s forwards;
}

.js-span-text.on span:nth-child(38) {
  animation: text 2s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.8s forwards;
}

.js-span-text.on span:nth-child(39) {
  animation: text 2s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.9s forwards;
}

.js-span-text.on span:nth-child(40) {
  animation: text 2s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4s forwards;
}

.js-span-text.on span:nth-child(41) {
  animation: text 2s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.1s forwards;
}

.js-span-text.on span:nth-child(42) {
  animation: text 2s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.2s forwards;
}

.js-span-text.on span:nth-child(43) {
  animation: text 2s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.3s forwards;
}

.js-span-text.on span:nth-child(44) {
  animation: text 2s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.4s forwards;
}

.js-span-text.on span:nth-child(45) {
  animation: text 2s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.5s forwards;
}

.js-span-text.on span:nth-child(46) {
  animation: text 2s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.6s forwards;
}

.js-span-text.on span:nth-child(47) {
  animation: text 2s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.7s forwards;
}

.js-span-text.on span:nth-child(48) {
  animation: text 2s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.8s forwards;
}

.js-span-text.on span:nth-child(49) {
  animation: text 2s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.9s forwards;
}

.js-span-text.on span:nth-child(50) {
  animation: text 2s cubic-bezier(0.3, 0.72, 0.56, 0.99) 5s forwards;
}

.js-span-text.on span:nth-child(51) {
  animation: text 2s cubic-bezier(0.3, 0.72, 0.56, 0.99) 5.1s forwards;
}

.js-span-text.on span:nth-child(52) {
  animation: text 2s cubic-bezier(0.3, 0.72, 0.56, 0.99) 5.2s forwards;
}

.js-span-text.on span:nth-child(53) {
  animation: text 2s cubic-bezier(0.3, 0.72, 0.56, 0.99) 5.3s forwards;
}

.js-span-text.on span:nth-child(54) {
  animation: text 2s cubic-bezier(0.3, 0.72, 0.56, 0.99) 5.4s forwards;
}

.js-span-text.on span:nth-child(55) {
  animation: text 2s cubic-bezier(0.3, 0.72, 0.56, 0.99) 5.5s forwards;
}

.js-span-text.on span:nth-child(56) {
  animation: text 2s cubic-bezier(0.3, 0.72, 0.56, 0.99) 5.6s forwards;
}

.js-span-text.on span:nth-child(57) {
  animation: text 2s cubic-bezier(0.3, 0.72, 0.56, 0.99) 5.7s forwards;
}

.js-span-text.on span:nth-child(58) {
  animation: text 2s cubic-bezier(0.3, 0.72, 0.56, 0.99) 5.8s forwards;
}

.js-span-text.on span:nth-child(59) {
  animation: text 2s cubic-bezier(0.3, 0.72, 0.56, 0.99) 5.9s forwards;
}

.js-span-text.on span:nth-child(60) {
  animation: text 2s cubic-bezier(0.3, 0.72, 0.56, 0.99) 6s 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: 23%;
  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 #6c9299;
  box-shadow: 0 0 0 4px rgba(108, 146, 153, 0.2);
  color: #5a544d;
  padding: 20px 5px;
  text-align: center;
  font-family: "BIZ UDPGothic", "YakuHanJP", "Zen Maru Gothic", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  width: 100%;
  height: 100%;
  font-size: 1.6rem;
}

.list-btn li a:hover {
  background: rgba(108, 146, 153, 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: #6c9299;
  font-size: 2.2rem;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.list-btn2 li:first-child h2 .ja {
  color: #5a544d;
  font-size: 1.6rem;
}

@media all and (max-width: 1100px) {
  .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 #b6c9cc;
  box-sizing: border-box;
  display: block;
  background: #fff;
  color: #5a544d;
  padding: 25px 5px;
  text-align: center;
  line-height: 1.6;
  font-size: 1.6rem;
  font-family: "BIZ UDPGothic", "YakuHanJP", "Zen Maru Gothic", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  overflow: hidden;
  box-shadow: 4px 4px #b6c9cc;
}

.list-btn2 li:not(:first-of-type) a:before {
  position: absolute;
  content: "";
  width: 70px;
  height: 70px;
  border-bottom: 0.2em solid #b6c9cc;
  border-right: 0.2em solid #b6c9cc;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.list-btn2 li:nth-child(3n) {
  margin-right: 0;
}

@media all and (max-width: 1100px) {
  .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: #c5d4d6;
}

.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/24661/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/24661/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: #6c9299;
  background: repeating-linear-gradient(135deg, #6c9299 0, #6c9299 5px, #72969d 5px, #72969d 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: #b6c9cc;
  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(90, 84, 77, 0.8);
  font-size: 5rem;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  line-height: 1.5;
}

.bnr-btn a h3 .ja {
  font-family: "BIZ UDPGothic", "YakuHanJP", "Zen Maru Gothic", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 2rem;
  border: 1px solid #fff;
  padding: 3px 10px;
  display: inline-block;
  text-align: center;
  background: #fff;
  color: #6c9299;
}

@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;
  }
}

.flow-lead-box {
  max-width: 1000px;
  padding: 30px;
  background: #fefefe;
  margin: -100px auto 0;
  position: relative;
  box-shadow: 0 0 8px rgba(90, 84, 77, 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(90, 84, 77, 0.1);
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - 20px);
}

.feature-dl .inner dt {
  position: relative;
  font-family: "BIZ UDPGothic", "YakuHanJP", "Zen Maru Gothic", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 2rem;
  color: #fefefe;
  z-index: 1;
  background: #60848b;
  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: "BIZ UDPGothic", "YakuHanJP", "Zen Maru Gothic", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  letter-spacing: 0.2em;
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  color: #b6c9cc;
  padding-bottom: 5px;
  border-bottom: 1px solid #b6c9cc;
  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: #6c9299;
  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: "BIZ UDPGothic", "YakuHanJP", "Zen Maru Gothic", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  background: #fff;
  padding: 8px;
  font-size: 1.6rem;
  color: #111;
  border-left: 3px solid #d4dfe1;
}

.top-bnr-list .top-bnr-title span num {
  font-size: 2rem;
  margin-right: 5px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #98b3b7;
}

@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: #5a544d;
  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 #6c9299;
  color: #6c9299;
  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-medical-list02 {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 10px;
  align-items: center;
}

.top-medical-list02 li {
  width: 23%;
}

.top-medical-list02 li:not(:nth-last-child(-n+4)) {
  margin-bottom: 35px;
}

@media all and (max-width: 639px) {
  .top-medical-list02 li {
    width: calc((100% - 20px) / 2);
  }

  .top-medical-list02 li:not(:nth-last-child(-n+2)) {
    margin-bottom: 30px;
  }
}

.top-medical-list02 .txt {
  text-align: center;
  margin-top: 8px;
}

.top-medical-list02 a {
  text-align: center;
}

.top-medical-list02 a figure {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: #faf5ef;
  display: flex;
  align-items: center;
  transition: all 0.2s ease-in;
  box-shadow: 0 0 0 8px rgba(182, 201, 204, 0.3);
  transform: translateY(-4px);
  margin: 0 auto 5px;
}

.top-medical-list02 a figure img {
  padding: 0 30px;
  display: block;
}

@media all and (max-width: 639px) {
  .top-medical-list02 a figure {
    width: 90px;
    height: 90px;
  }

  .top-medical-list02 a figure img {
    padding: 0 15px;
  }
}

.top-medical-list02 a .top-medical-title02 span {
  font-family: "BIZ UDPGothic", "YakuHanJP", "Zen Maru Gothic", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #6c9299;
  transition: all 0.2s ease-in;
  font-size: 1.6rem;
}

@media all and (max-width: 639px) {
  .top-medical-list02 a .top-medical-title02 span {
    font-size: 1.3rem;
  }
}

.top-medical-list02 a:hover figure {
  transform: translateY(-10px);
}

.top-medical-list02 a:hover .top-medical-title02 span {
  opacity: 0.7;
}

.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: #5a544d;
  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: #72969d;
  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/24661/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: 1100px) {
  .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: #5a544d;
  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(108, 146, 153, 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: "Lato", sans-serif;
  font-weight: 500;
  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: "BIZ UDPGothic", "YakuHanJP", "Zen Maru Gothic", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  position: relative;
  color: #5a544d;
  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;
  }
}

.top-split {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0 20px;
}

.top-split.type1 {
  margin-top: 20px;
}

@media all and (max-width: 896px) {
  .top-split.type1 {
    margin-top: 0;
  }
}

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

.top-split .child {
  width: calc(50% - 10px);
}

.top-split .child.split-1 {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/24661/split01.jpg) no-repeat center/cover;
}

.top-split .child.split-2 {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/24661/split02.jpg) no-repeat center/cover;
}

.top-split .child.split-3 {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/24661/split03.jpg) no-repeat center/cover;
}

.top-split .child.split-4 {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/24661/split04.jpg) no-repeat center/cover;
}

@media all and (max-width: 896px) {
  .top-split .child.split-4 {
    margin: 0 auto;
  }
}

@media all and (max-width: 896px) {
  .top-split .child {
    width: calc(100% - 20px);
    margin: 0 auto 20px;
  }
}

.top-split .child a {
  display: block;
  position: relative;
  height: 360px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.top-split .child a:before {
  position: absolute;
  content: "";
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid #fff;
  background: rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease-in;
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
}

@media all and (max-width: 1100px) {
  .top-split .child a {
    height: 280px;
  }
}

@media all and (max-width: 896px) {
  .top-split .child a {
    height: auto;
    padding: 40px 0;
  }

  .top-split .child a:before {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border: 2px solid #fff;
  }
}

.top-split .child a .inner {
  position: relative;
  z-index: 3;
  text-align: center;
  font-weight: 600;
}

.top-split .child a .split-title {
  text-align: center;
  color: #fff;
  margin-bottom: 0;
  font-family: "BIZ UDPGothic", "YakuHanJP", "Zen Maru Gothic", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 2.2rem;
  line-height: 1.5;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2), 0 0 10px rgba(0, 0, 0, 0.2);
}

.top-split .child a .split-title .eng {
  display: block;
  line-height: 1.8;
  font-size: 4.8rem;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
}

@media all and (max-width: 1100px) {
  .top-split .child a .split-title {
    font-size: 1.8rem;
  }

  .top-split .child a .split-title .eng {
    font-size: 4rem;
  }
}

@media all and (max-width: 896px) {
  .top-split .child a .split-title {
    font-size: 1.4rem;
  }

  .top-split .child a .split-title .eng {
    font-size: 2.4rem;
  }
}

.top-split .child a .split-txt {
  color: #fff;
  max-width: 80%;
  margin: 0 auto;
}

@media all and (max-width: 896px) {
  .top-split .child a .split-txt {
    font-size: 1.2rem;
    padding: 0 20px;
    max-width: 90%;
  }
}

.top-split .child a .split-more {
  width: 130px;
  padding: 4px 0;
  text-align: center;
  background: #fff;
  color: #111;
  border-radius: 30px;
  margin: 25px auto 0;
  transition: all 0.2s ease-in;
  font-size: 90%;
  font-family: "BIZ UDPGothic", "YakuHanJP", "Zen Maru Gothic", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.top-split .child a:hover:before {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.top-split .child a:hover .split-more {
  background: #6c9299;
  color: #fff;
}

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

.menu-list>li .right a {
  color: #5a544d;
}

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

.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: #56767c;
  background: linear-gradient(135deg, #6c9299 18%, #56767c 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;
  }
}

.footer_link_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer_link_list>li {
  width: 48%;
}

.footer_link_list>li a {
  display: block;
  background: #6c9299;
  padding: 15px;
  color: #fff;
  border-radius: 30px;
  text-align: center;
  font-weight: bold;
}

.footer_link_list>li a:hover {
  opacity: 0.6;
}

.footer_link_list>li:nth-child(2) a {
  background: #a2c51a;
}

@media all and (max-width: 639px) {
  .footer_link_list {
    gap: 10px;
  }

  .footer_link_list>li {
    width: 100%;
  }
}

.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: 1100px) {
  .contact-list>li {
    flex: 0 1 auto;
    width: 48%;
  }
}

@media all and (max-width: 1100px) and (max-width: 1100px) {
  .contact-list>li:last-child {
    width: 80%;
    margin: 20px auto 0;
  }
}

@media all and (max-width: 1100px) and (max-width: 1100px) 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: "BIZ UDPGothic", "YakuHanJP", "Zen Maru Gothic", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.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: "Lato", sans-serif;
  font-weight: 500;
  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;
}

.contact-ttl-box {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: center;
}

@media all and (max-width: 639px) {
  .contact-ttl-box {
    flex-direction: column;
    gap: 0px;
  }
}

.contact_flex_box {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
}

.contact_flex_box .inner {
  width: 50%;
  padding: 20px;
}

.contact_flex_box .inner .txt {
  padding-left: 1em;
}

@media all and (max-width: 896px) {
  .contact_flex_box .inner {
    width: 100%;
  }
}

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

  .contact_flex_box .inner {
    padding: 0;
  }

  .contact_flex_box .inner:not(:last-child) {
    margin-bottom: 15px;
  }
}

.contact-tel-bnr a {
  display: block;
  position: relative;
  text-align: center;
  font-size: 5rem;
  font-weight: 500;
  transition: all 0.3s ease-out;
  background-size: 200% auto;
  background-position: 99% 50%;
  color: #4C4948;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  letter-spacing: 6px;
  line-height: 1;
}

.contact-tel-bnr a:hover {
  color: #b6c9cc;
}

@media all and (max-width: 1100px) {
  .contact-tel-bnr a {
    font-size: 4rem;
  }
}

@media all and (max-width: 639px) {
  .contact-tel-bnr a {
    font-size: 2.5rem;
    line-height: 1.2;
  }
}

.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;
  }
}

.u-timeline3 {
  display: flex;
  flex-wrap: wrap;
  line-height: 1.4;
}

.u-timeline3 * {
  box-sizing: border-box;
}

.u-timeline3>dt {
  width: 8em;
  padding-top: 3.5em;
}

.u-timeline3>dt>b {
  position: relative;
  display: block;
  font-size: 1.6em;
  font-weight: 600;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #6c9299;
  text-align: right;
  padding-right: 0.5em;
}

.u-timeline3>dd {
  width: calc(100% - 8em - 20px);
  padding: 2em 0 2em 20px;
  border-left: solid 2px #000;
}

.u-timeline3>dd>.inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
  padding: 10px;
  margin-left: 1em;
  border-left: solid 8px #b6c9cc;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
}

.u-timeline3>dd>.inner>.image {
  width: 25%;
  order: 2;
}

.u-timeline3>dd>.inner>.image img {
  width: 100%;
}

.u-timeline3>dd>.inner>.container {
  width: 75%;
  order: 1;
  padding: 10px;
}

.u-timeline3>dd>.inner>.container>.title {
  font-size: 1.8rem;
  font-family: "BIZ UDPGothic", "YakuHanJP", "Zen Maru Gothic", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  border-bottom: solid 1px #b6c9cc;
  padding-bottom: 5px;
  margin-bottom: 15px;
}

.u-timeline3>dd>.inner::before {
  content: "";
  position: absolute;
  top: 1.7em;
  left: -30px;
  display: inline-block;
  border-style: solid;
  border-width: 15px;
  border-color: transparent #b6c9cc transparent transparent;
}

.u-timeline3>dd>.inner::after {
  position: absolute;
  top: 2.7em;
  left: -53px;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background-color: #6c9299;
  border-radius: 50%;
}

@media all and (max-width: 896px) {
  .u-timeline3>dt {
    border-left: solid 2px #000;
    margin-left: 1em;
    padding-top: 1em;
    padding-left: 2.5em;
  }

  .u-timeline3>dd {
    width: calc(100% - 1em);
    margin-left: 1em;
    padding-top: 0.5em;
  }

  .u-timeline3>dd>.inner>.image {
    width: 100%;
    order: 1;
  }

  .u-timeline3>dd>.inner>.container {
    width: 100%;
    order: 2;
  }

  .u-timeline3>dd>.inner>.container>.title {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }

  .u-timeline3>dd>.inner::after {
    top: 2.8em;
    left: -49px;
  }
}

.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: #5a544d;
  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: #5a544d;
  letter-spacing: 0.2em;
  font-size: 13px;
}

.grid-item .ttl span {
  margin-top: 5px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 11px;
  display: inline;
  background: #5a544d;
  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: "BIZ UDPGothic", "YakuHanJP", "Zen Maru Gothic", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.works-ttl span {
  font-size: 1.3rem;
  padding: 2px 10px;
  border-radius: 5px;
  background: #fde792;
  color: #5a544d;
  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;
  }
}

.circle3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 1000px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.circle3 li {
  width: 25%;
}

.circle3 li .inner {
  font-family: "BIZ UDPGothic", "YakuHanJP", "Zen Maru Gothic", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 2rem;
  width: 95%;
  margin: 10px auto;
  border-radius: 46% 54% 31% 69%/51% 59% 41% 49%;
  background: rgba(108, 146, 153, 0.7);
  color: #fff;
  padding: 35px 20px;
  text-align: center;
  line-height: 1.5;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 3px 6px #ddd;
}

.circle3 li:nth-child(odd) {
  animation: FloatVertical 3s ease-in-out infinite alternate;
}

.circle3 li:nth-child(even) {
  animation: FloatVertical02 3s ease-in-out infinite alternate;
}

.circle3 li:nth-child(even) .inner {
  background: rgba(182, 201, 204, 0.9);
  border-radius: 63% 37% 59% 41%/36% 38% 62% 64%;
}

@media all and (max-width: 1100px) {
  .circle3 li .inner {
    font-size: 1.8rem;
  }
}

@media all and (max-width: 896px) {
  .circle3 li {
    width: 49%;
    padding: 0 1%;
  }

  .circle3 li .inner {
    width: 98%;
    padding: 30px 15px;
    margin: 5px auto;
    box-shadow: 2px 4px #ddd;
  }

  .circle3 li:nth-child(1) .inner,
  .circle3 li:nth-child(4) .inner {
    background: rgba(108, 146, 153, 0.7);
    border-radius: 30% 70% 48% 22%/64% 52% 58% 45%;
  }

  .circle3 li:nth-child(2) .inner,
  .circle3 li:nth-child(3) .inner {
    background: rgba(182, 201, 204, 0.9);
    border-radius: 60% 30% 65% 38%/46% 48% 72% 74%;
  }

  .circle3 li:nth-child(5) .inner {
    background: rgba(108, 146, 153, 0.8);
    border-radius: 58% 50% 38% 60%/64% 50% 55% 40%;
  }
}

@media all and (max-width: 639px) {
  .circle3 li .inner {
    padding: 25px 10px;
    font-size: 1.3rem;
  }
}

@keyframes FloatVertical {
  0% {
    transform: translate3d(0, 0.7vw, 0);
  }

  50% {
    transform: translate3d(0, 0vw, 0);
  }

  100% {
    transform: translate3d(0, 0.7vw, 0);
  }
}

@keyframes FloatVertical02 {
  0% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, 0.7vw, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

.circle4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 1000px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.circle4 li {
  width: 33.3333333333%;
}

.circle4 li .inner {
  font-family: "BIZ UDPGothic", "YakuHanJP", "Zen Maru Gothic", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 2rem;
  width: 95%;
  margin: 10px auto;
  border-radius: 46% 54% 31% 69%/51% 59% 41% 49%;
  background: rgba(108, 146, 153, 0.7);
  color: #fff;
  padding: 35px 20px;
  text-align: center;
  line-height: 1.5;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 3px 6px #ddd;
}

.circle4 li:nth-child(odd) {
  animation: FloatVertical 3s ease-in-out infinite alternate;
}

.circle4 li:nth-child(even) {
  animation: FloatVertical02 3s ease-in-out infinite alternate;
}

.circle4 li:nth-child(even) .inner {
  background: rgba(182, 201, 204, 0.9);
  border-radius: 63% 37% 59% 41%/36% 38% 62% 64%;
}

@media all and (max-width: 1100px) {
  .circle4 li .inner {
    font-size: 1.8rem;
  }
}

@media all and (max-width: 896px) {
  .circle4 li {
    width: 49%;
    padding: 0 1%;
  }

  .circle4 li .inner {
    width: 98%;
    padding: 30px 15px;
    margin: 5px auto;
    box-shadow: 2px 4px #ddd;
  }

  .circle4 li:nth-child(1) .inner,
  .circle4 li:nth-child(4) .inner {
    background: rgba(108, 146, 153, 0.7);
    border-radius: 30% 70% 48% 22%/64% 52% 58% 45%;
  }

  .circle4 li:nth-child(2) .inner,
  .circle4 li:nth-child(3) .inner {
    background: rgba(182, 201, 204, 0.9);
    border-radius: 60% 30% 65% 38%/46% 48% 72% 74%;
  }

  .circle4 li:nth-child(5) .inner {
    background: rgba(108, 146, 153, 0.8);
    border-radius: 58% 50% 38% 60%/64% 50% 55% 40%;
  }
}

@media all and (max-width: 639px) {
  .circle4 li .inner {
    padding: 25px 10px;
    font-size: 1.3rem;
  }
}

@keyframes FloatVertical {
  0% {
    transform: translate3d(0, 0.7vw, 0);
  }

  50% {
    transform: translate3d(0, 0vw, 0);
  }

  100% {
    transform: translate3d(0, 0.7vw, 0);
  }
}

@keyframes FloatVertical02 {
  0% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, 0.7vw, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

.top-item-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 40px;
  margin-bottom: 60px;
}

.top-item-list.type2 {
  margin-bottom: 0;
}

.top-item-list>li {
  width: 31%;
}

.top-item-list>li.w100 {
  width: 100%;
}

.top-item-list>li a {
  display: block;
  position: relative;
}

.top-item-list>li a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 70%;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/24661/logo-img.png) no-repeat center/contain;
  z-index: -1;
  opacity: 0.5;
  transition: all 0.5s ease;
}

.top-item-list>li a:hover::after {
  width: 80%;
  height: 80%;
}

.top-item-list>li .ttl {
  font-size: 2.2rem;
  font-weight: bold;
  color: #5a544d;
}

.top-item-list>li .price {
  background: #b6c9cc;
  color: #fff;
  padding: 5px;
  border-radius: 5px;
  margin: 0 auto;
  width: 80%;
  font-size: 1.6rem;
}

.top-item-list>li .price.b-m5 {
  margin-bottom: 5px;
}

.top-item-list>li .btn01 a {
  width: 90%;
}

@media all and (max-width: 896px) {
  .top-item-list>li {
    width: 48%;
  }
}

@media all and (max-width: 639px) {
  .top-item-list>li {
    width: 100%;
  }
}

.top-item-list>li p {
  text-align: center;
}

@media all and (max-width: 639px) {
  .top-item-list {
    padding: 0 0 40px;
  }
}

.top-intro {
  overflow: hidden;
  position: relative;
  padding: 80px 0;
}

.top-intro:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/24661/bg-03.jpg) no-repeat center/cover;
  z-index: 1;
  opacity: 0.15;
}

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

@media all and (max-width: 639px) {
  .top-intro {
    background: #f5f0e8;
    overflow: hidden;
  }
}

.top-box {
  width: 700px;
  background: #fefefe;
  padding: 35px;
  position: relative;
  z-index: 2;
  margin: 0 auto;
  position: relative;
  font-size: 1.05em;
}

@media all and (max-width: 896px) {
  .top-box {
    max-width: 70%;
    padding: 15px;
    font-size: 1.1rem;
  }
}

@media all and (max-width: 639px) {
  .top-box {
    max-width: 95%;
    margin: 0 auto 0;
  }
}

.grid-box {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #99b3b8;
  border-left: 1px solid #99b3b8;
}

.grid-box.type1 {
  border-top: 1px solid #e3eaeb;
  border-left: 1px solid #e3eaeb;
}

.grid-box.type1 .grid-child {
  border-bottom: 1px solid #e3eaeb;
  border-right: 1px solid #e3eaeb;
}

.grid-box.type1 .grid-child .grid-title {
  color: #7a9da2;
}

.grid-box.type1 .grid-child:nth-child(1),
.grid-box.type1 .grid-child:nth-child(3n+1),
.grid-box.type1 .grid-child:nth-child(3n) {
  background: rgba(245, 240, 232, 0.5);
}

@media all and (max-width: 896px) {
  .grid-box.type1 .grid-child:nth-child(3n) {
    background: none;
  }

  .grid-box.type1 .grid-child:nth-child(even) {
    background: rgba(245, 240, 232, 0.5);
  }
}

.grid-box .grid-child {
  width: 33.3333%;
  background: #fff;
  letter-spacing: 0;
  line-height: 2;
  border-bottom: 1px solid #99b3b8;
  border-right: 1px solid #99b3b8;
  padding: 30px;
}

.grid-box .grid-child .grid-title {
  font-family: "BIZ UDPGothic", "YakuHanJP", "Zen Maru Gothic", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 1.8rem;
  color: #41595e;
  margin-bottom: 15px;
}

.grid-box .grid-child .grid-title span {
  font-size: 2.6rem;
  margin-right: 10px;
}

.grid-box .grid-child:nth-child(1),
.grid-box .grid-child:nth-child(4n+1),
.grid-box .grid-child:nth-child(4n) {
  background: rgba(250, 245, 239, 0.5);
}

@media all and (max-width: 896px) {
  .grid-box .grid-child {
    padding: 20px;
    width: 100%;
  }

  .grid-box .grid-child .grid-title {
    font-size: 1.3rem;
  }

  .grid-box .grid-child .grid-title span {
    margin-right: 5px;
    font-size: 2rem;
    letter-spacing: 0.1em;
  }

  .grid-box .grid-child:nth-child(1),
  .grid-box .grid-child:nth-child(4n+1),
  .grid-box .grid-child:nth-child(4n) {
    background: #fff !important;
  }

  .grid-box .grid-child:nth-child(even) {
    background: rgba(250, 245, 239, 0.5);
  }
}

.grid-box2 {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #99b3b8;
  border-left: 1px solid #99b3b8;
}

.grid-box2.type1 {
  border-top: 1px solid #e3eaeb;
  border-left: 1px solid #e3eaeb;
}

.grid-box2.type1 .grid-child {
  border-bottom: 1px solid #e3eaeb;
  border-right: 1px solid #e3eaeb;
}

.grid-box2.type1 .grid-child .grid-title {
  color: #7a9da2;
}

.grid-box2.type1 .grid-child:nth-child(1),
.grid-box2.type1 .grid-child:nth-child(4n+1),
.grid-box2.type1 .grid-child:nth-child(4n) {
  background: rgba(245, 240, 232, 0.5);
}

@media all and (max-width: 896px) {
  .grid-box2.type1 .grid-child:nth-child(even) {
    background: rgba(245, 240, 232, 0.5);
  }
}

.grid-box2 .grid-child {
  width: 50%;
  background: #fff;
  letter-spacing: 0;
  line-height: 2;
  border-bottom: 1px solid #99b3b8;
  border-right: 1px solid #99b3b8;
  padding: 30px;
}

.grid-box2 .grid-child .grid-title {
  font-family: "BIZ UDPGothic", "YakuHanJP", "Zen Maru Gothic", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 1.8rem;
  color: #41595e;
  margin-bottom: 15px;
}

.grid-box2 .grid-child .grid-title span {
  font-size: 2.6rem;
  margin-right: 10px;
}

.grid-box2 .grid-child:nth-child(1),
.grid-box2 .grid-child:nth-child(4n+1),
.grid-box2 .grid-child:nth-child(4n) {
  background: rgba(250, 245, 239, 0.5);
}

@media all and (max-width: 896px) {
  .grid-box2 .grid-child {
    padding: 20px;
    width: 100%;
  }

  .grid-box2 .grid-child .grid-title {
    font-size: 1.3rem;
  }

  .grid-box2 .grid-child .grid-title span {
    margin-right: 5px;
    font-size: 2rem;
    letter-spacing: 0.1em;
  }

  .grid-box2 .grid-child:nth-child(1),
  .grid-box2 .grid-child:nth-child(4n+1),
  .grid-box2 .grid-child:nth-child(4n) {
    background: #fff !important;
  }

  .grid-box2 .grid-child:nth-child(even) {
    background: rgba(250, 245, 239, 0.5);
  }
}

/* order form
----------------------------------*/
.order_tbl {
  width: 100%;
}

.order_tbl td {
  width: 50%;
}

#courier table {
  width: 100%;
  margin: 0 auto;
}

#courier table th {
  white-space: nowrap;
  border-bottom: 1px solid #ccc;
  vertical-align: middle;
}

#courier table td {
  font-family: "YakuHanJP", helvetica, Helvetica Neue, YuGothic, "Yu Gothic", "游ゴシック", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: bold;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #ccc;
  padding: 0.8em 1.5em;
  line-height: 1.5em;
  vertical-align: middle;
}

@media all and (max-width: 896px) {
  #courier table tr {
    display: flex;
    flex-direction: column;
  }

  #courier table th,
  #courier table td {
    width: 100%;
    border: none;
  }

  #courier table th {
    background: #f6f6f6;
  }
}

#courier .box-img {
  display: flex;
  flex-wrap: wrap;
}

@media all and (max-width: 896px) {
  #courier .box-img div {
    width: 100%;
  }

  #courier .box-img div.b-img {
    text-align: center;
  }
}

.order-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
  margin-bottom: 30px;
  row-gap: 40px;
}

.order-list>li {
  width: 31%;
}

@media all and (max-width: 896px) {
  .order-list>li {
    width: 48%;
  }
}

@media all and (max-width: 639px) {
  .order-list>li {
    width: 100%;
  }
}

.order-list>li .main_contens .txtarea {
  padding: 15px;
}

.order-list>li .main_contens p {
  padding: 0;
  color: #4C4948;
  white-space: nowrap;
}

.order-list>li .main_contens .ciment {
  font-size: 1.3rem;
}

.order-list>li .main_contens .img {
  height: 300px;
}

@media all and (max-width: 896px) {
  .order-list>li .main_contens .img {
    height: 220px;
  }
}

.order-list>li .main_contens .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.order-list>li .main_contens .name {
  font-size: 1.8rem;
  font-weight: bold;
  background: #F5F0E8;
  color: #5a544d;
  height: 4.5em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "BIZ UDPGothic", "YakuHanJP", "Zen Maru Gothic", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  width: 100%;
  margin: 0 auto 20px;
}

.order-list>li .main_contens .name span {
  display: flex;
  font-size: 1.2rem;
  margin-top: 5px;
  opacity: 0.6;
}

.order-list>li .main_contens .sub_a {
  color: #6c9299;
}

.order-list>li .main_contens .sub_a span {
  padding-left: 5px;
}

.order-list>li .main_contens .ciment span {
  position: relative;
  display: inline-block;
}

.order-list>li .main_contens .ciment span::before {
  font-family: "Font Awesome 5 Free";
  content: "\f078";
  font-weight: 900;
  position: absolute;
  z-index: 4;
  top: 50%;
  right: 2rem;
  margin-top: -0.5rem;
  font-size: 1rem;
  line-height: 1;
  color: #000;
}

.order-list>li .main_contens .ciment select {
  z-index: 2;
  padding: 7px 35px 7px 7px;
  outline: none;
  line-height: 1.5;
  position: relative;
  overflow: hidden;
  min-width: 150px;
  display: inline-block;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  color: #333;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0 7px;
}

.goukei {
  background: #cde1b0;
  color: #4C4948;
  text-align: center;
  margin-bottom: 60px;
  padding: 10px;
  white-space: nowrap;
}

.goukei input {
  background: #f0f0f0;
  padding: 15px;
  border-radius: 0;
  border: 0;
  margin: 0 10px;
}

@media all and (max-width: 639px) {
  .goukei input {
    margin: 0;
  }
}

.order-form-txt.type2 {
  margin-top: 60px;
}

/*セレクトボックス のスタイル*/
.cp_ipselect {
  overflow: hidden;
  width: 90%;
  margin: 1em auto;
  text-align: center;
}

.cp_ipselect select {
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 14px;
}

.cp_ipselect select::-ms-expand {
  display: none;
}

.cp_ipselect.cp_sl01 {
  position: relative;
  border: 1px solid #bbbbbb;
  border-radius: 2px;
  background: #ffffff;
}

.cp_ipselect.cp_sl01::before {
  position: absolute;
  top: 1em;
  right: 0.9em;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #666666;
  pointer-events: none;
}

.cp_ipselect.cp_sl01 select {
  padding: 8px 38px 8px 8px;
  color: #666666;
}

/*　//セレクトボックス のスタイル */
/* TOP gallery
----------------------------------*/
#loopSlide {
  margin-top: 100px;
}

#loopSlide.type2 {
  margin-top: 0px;
}

.simply-scroll-container {
  position: relative;
}

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

.simply-scroll-list {
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.simply-scroll-list li {
  float: left;
  padding: 0;
  margin: 15px 10px;
  width: 300px;
  height: auto;
}

.simply-scroll-list li a img {
  display: block;
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}

.simply-scroll-list li a:hover {
  filter: brightness(1.5);
}

/*----------------------------------
contact-form
----------------------------------*/
.form-contents {
  width: 100% !important;
  height: auto !important;
  padding: 35px 30px !important;
  border-radius: 15px 15px 0 0 !important;
}

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

.form-contents button {
  border: 1px solid #b6c9cc !important;
}

.form-contents .required::before {
  background: #6c9299 !important;
  padding: 0 !important;
  content: "*" !important;
  color: #ec0000 !important;
  background: transparent !important;
}

.form-contents .textarea {
  background-color: #f0f0f0 !important;
  border: none !important;
  padding: 20px 15px !important;
}

.form-contents input[type=text],
.form-contents textarea {
  font-size: 16px;
}

.form-contents .submit-btn {
  background-color: #b6c9cc !important;
  border: none !important;
  color: #fefefe !important;
}

.form-contents .submit-btn:hover {
  color: #b6c9cc !important;
  background-color: #fefefe !important;
  border: 1px solid #b6c9cc !important;
}

.form-contents .submit-btn:hover:before {
  background-color: #b6c9cc !important;
}

.form-contents .custom-area p {
  padding: 10px 0;
}

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

  .form-contents dl {
    margin: 10px 0 !important;
  }

  .form-contents dl dt {
    float: none !important;
    padding-top: 15px !important;
  }

  .form-contents dl dd {
    padding-left: 0 !important;
    padding-bottom: 15px !important;
    padding-top: 10px !important;
    line-height: 20px !important;
  }

  .form-contents .submit-btn {
    width: 250px !important;
  }
}

.business_list {
  padding-top: 20px;
  width: 85%;
  margin: 0 auto;
}

.business_list>li {
  position: relative;
  background: #fefefe;
  border-radius: 5px;
  transition: all 0.4s ease !important;
}

.business_list>li:not(:last-child) {
  margin-bottom: 100px;
}

.business_list>li:nth-child(even) {
  transform: translateX(-50px);
}

.business_list>li:nth-child(odd) {
  transform: translateX(50px);
}

.business_list>li .business_container {
  display: flex;
  flex-wrap: wrap;
  color: #5a544d;
}

.business_list>li .business_container .business_title {
  position: relative;
  top: 20px;
  line-height: 1.2;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-feature-settings: "pkna";
  font-family: "Lato", sans-serif;
  font-weight: 600;
  letter-spacing: 0.2em;
  font-size: 1.6rem;
  width: 12%;
  color: rgba(108, 146, 153, 0.5);
}

@media all and (max-width: 639px) {
  .business_list>li .business_container .business_title {
    font-size: 1.4rem;
  }
}

.business_list>li .business_container .business_detail {
  position: relative;
  width: 88%;
  top: -20px;
  right: -20px;
}

.business_list>li .business_container .business_detail .business_img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  overflow: hidden;
  height: 400px;
}

.business_list>li .business_container .business_detail .business_img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.4s ease;
}

.business_list>li .business_container .business_detail .business_txt {
  margin: -20px 30px 10px 10px;
}

.business_list>li .business_container .business_detail .business_txt .business_area {
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
}

.business_list>li .business_container .business_detail .business_txt .business_area span {
  display: inline-block;
  padding: 15px 30px;
  text-align: center;
  background: #2ca6e0;
  color: #fff;
  line-height: 1;
  border-radius: 5px;
  font-size: 2.3rem;
}

@media all and (max-width: 639px) {
  .business_list>li .business_container .business_detail .business_txt .business_area span {
    font-size: 1.6rem;
    padding: 10px 15px;
  }
}

.business_list>li .business_container .business_detail .business_txt .business_explain {
  margin-left: -10px;
  padding: 10px;
  width: 95%;
}

.business_list>li .business_container .business_detail .business_txt .business_more {
  position: relative;
  display: table;
  padding: 0 20px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: 10px;
  font-size: 90%;
  letter-spacing: 0.3em;
  color: #555;
  transition: all 0.4s ease;
}

.business_list>li .business_container .business_detail .business_txt .business_more::before,
.business_list>li .business_container .business_detail .business_txt .business_more::after {
  content: "";
  position: absolute;
  background: #aaa;
  transition: all 0.4s ease;
}

.business_list>li .business_container .business_detail .business_txt .business_more:before {
  bottom: -8px;
  left: 15%;
  width: 85%;
  height: 1px;
}

.business_list>li .business_container .business_detail .business_txt .business_more:after {
  bottom: -3px;
  right: 0;
  width: 15px;
  height: 1px;
  transform: rotate(35deg);
}

.business_list>li .business_container .business_detail .business_txt .business_more:hover {
  opacity: 0.6;
}

@media all and (max-width: 896px) {
  .business_list {
    padding-top: 10px;
    width: calc(100% - 10px);
    margin-bottom: 40px;
  }

  .business_list>li a .business_title {
    line-height: 1.6;
    font-size: 1.3rem;
  }

  .business_list>li a .business_detail {
    top: -10px;
    right: -10px;
  }

  .business_list>li a .business_detail .business_txt {
    margin: -10px 20px 10px 10px;
  }

  .business_list>li a .business_detail .business_txt .business_area {
    margin-bottom: 10px;
  }

  .business_list>li a .business_detail .business_txt .business_area span {
    padding: 5px 10px;
  }

  .business_list>li a .business_detail .business_txt .business_explain {
    margin-left: 0;
  }

  .business_list>li a .business_detail .business_txt .business_more {
    margin-top: 10px;
  }
}

@media all and (max-width: 639px) {
  .business_list>li {
    width: 95%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .business_list>li:nth-child(even) {
    transform: translateX(0);
  }

  .business_list>li:nth-child(odd) {
    transform: translateX(0);
  }

  .business_list>li .business_container .business_detail .business_img {
    height: 250px;
  }
}



.fea_text_box {}


.fea_text_box h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}




.fea_text_box h3 span {}

.fea_text_box p {
  font-size: 2rem;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #fff;
}

.sou_tex {
  color: #f9dd6c;
}


.mm59 {
  max-width: 1080px;
}



@media all and (max-width: 639px) {

  .fea_text_box h3,
  .fea_text_box p {
    font-size: 4vw;
  }

  .bg-gray:before {
    background-position-x: 32%;
  }
}


/* 実績紹介用スライダー */
.achievement-slider-area {
  max-width: 1200px;
  margin: 0 auto;
}

.achievement-slider {
  margin-bottom: 8px;
  position: relative;
}

/* 中央以外のスライドを薄くする */
.achievement-slider .slick-slide {
  opacity: 0.35;
  transition: opacity 0.24s;
}

/* 中央のスライドだけくっきり */
.achievement-slider .slick-current {
  opacity: 1;
}

/* 画像/タイトル演出はそのまま */
.achievement-banner-link {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 1.2em;
  box-shadow: 0 2px 18px 0 rgba(10, 8, 32, 0.12);
}

.achievement-banner-img {
  width: 100%;
  display: block;
  border-radius: 1.2em;
  transition: filter 0.24s;
}

.achievement-title {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1em 0.6em;
  background: rgba(16, 32, 48, 0.85);
  color: #fff;
  text-align: center;
  font-size: 1.13em;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.22s;
  pointer-events: none;
}

.achievement-banner-link:hover .achievement-title,
.achievement-banner-link:focus .achievement-title {
  opacity: 1;
}

.achievement-banner-link {
  cursor: default;
  /* 指にならない */
}

/* サムネ：5枚見切れなしにするための最小 */
.achievement-slider-thumb {
  max-width: 560px;
  margin: 0 auto;
}

.achievement-slider-thumb .slick-slide {
  padding: 2px 6px;
  opacity: 0.5;
  transition: opacity 0.18s;
}

.achievement-slider-thumb .slick-current {
  opacity: 1;
}

.achievement-thumb-img {
  width: 100%;
  border-radius: 0.5em;
  box-shadow: 0 1px 6px 0 rgba(10, 8, 32, 0.12);
  border: 2px solid transparent;
  transition: border 0.2s;
}

.achievement-slider-thumb .slick-current .achievement-thumb-img {
  border: 2px solid #004eb7;
}

/* slickデフォ矢印の見た目を軽く整える（画像はslick標準） */
.achievement-slider .slick-prev,
.achievement-slider .slick-next {
  width: 44px;
  height: 44px;
  z-index: 10;
}

.achievement-slider .slick-prev:hover,
.achievement-slider .slick-next:hover,
.achievement-slider .slick-prev:focus,
.achievement-slider .slick-next:focus {
  background: rgba(255, 255, 255, 0.9);
  color: #3a5b88;
}

.achievement-slider .slick-prev {
  left: -24px;
}

.achievement-slider .slick-next {
  left: auto;
  right: -24px;
}

@media (max-width: 639px) {
  .achievement-slider-area {
    max-width: 100vw;
    margin-left: 0;
    margin-right: 0;
  }

  .achievement-slider-thumb {
    max-width: 100vw;
    margin-left: 0;
    margin-right: 0;
  }

  /* スマホは見切れなし前提なので余計なpaddingを消す */
  .achievement-slider .slick-slide {
    padding: 0 0;
  }

  .achievement-slider .slick-prev {
    left: 0;
  }

  .achievement-slider .slick-next {
    right: 0;
  }

  /* サムネは5枚表示。幅は等分で小さく並ぶ */
  .achievement-slider-thumb .slick-slide {
    padding: 2px 4px;
  }
}

.achievement-slider-wrap {
  position: relative;
}

/* 矢印ボタン本体 */
.achievement-slider .custom-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;

  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid #3a5b88;
  color: #3a5b88;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;
  cursor: pointer;
}

/* バナーに被せる位置 */
.achievement-slider .slick-prev.custom-arrow {
  left: 12px;
  /* ←内側に入れて被せる */
}

.achievement-slider .slick-next.custom-arrow {
  right: 12px;
  /* ←同じく内側 */
}

/* slickデフォの文字を消す */
.achievement-slider .slick-prev:before,
.achievement-slider .slick-next:before {
  content: none;
}

/* スマホ微調整 */
@media (max-width: 639px) {
  .achievement-slider .custom-arrow {
    width: 38px;
    height: 38px;
  }

  .achievement-slider .slick-prev.custom-arrow {
    left: 6px;
  }

  .achievement-slider .slick-next.custom-arrow {
    right: 6px;
  }

  .achievement-slider .slick-slide {
    opacity: 1;
  }
}


/* タブ用CSS */
.modern-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 1.5rem;
  background: rgba(30, 35, 60, 0.11);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 24px 0 rgba(10, 8, 32, 0.20);
  padding: 4px;
  width: fit-content;
  align-items: stretch; /* 要素の高さを隣と揃えるため追加 */
}

.modern-tab-btn {
  padding: 0.75em 2em;
  background: transparent;
  border: none;
  outline: none;
  color: #2952da;
  font-size: 1.1em;
  font-weight: 700;
  border-radius: 2em;
  position: relative;
  z-index: 1;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition:
    color 0.23s,
    box-shadow 0.18s;
  overflow: hidden;
}

.modern-tab-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2em;
  background: linear-gradient(90deg, #2952da 60%, #020510 120%);
  opacity: 0;
  z-index: -1;
  transition:
    opacity 0.30s cubic-bezier(.4, 1, .6, 1);
}

.modern-tab-btn.active {
  color: #fff;
  box-shadow: 0 1px 10px 0 rgba(47, 73, 160, 0.14);
}

.modern-tab-btn.active::before {
  opacity: 1;
}

.modern-tab-viewport {
  position: relative;
  height: auto;
  min-height: 375px;
}

.modern-tab-content {
  border-radius: 1.2em;
  padding: 2rem 2.5rem 2.2rem 2.5rem;
  box-shadow: 0 4px 36px -8px rgba(44, 80, 255, 0.17);
}

.modern-tab-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.modern-tab-content li {
  margin-bottom: 1.2em;
  padding-bottom: .5em;
  border-bottom: 1px solid rgba(99, 129, 192, 0.13);
}

.modern-tab-content li:last-child {
  border-bottom: none;
}

.modern-tab-content h4 {
  font-size: 1.08em;
  font-weight: 700;
  color: #f7f8f9;
  margin-bottom: 0.15em;
}

.modern-tab-content p {
  color: #f7f8f9;
  font-size: 0.96em;
}

@media (max-width: 650px) {

  .modern-tabs {
    backdrop-filter: blur(4px);
  }

  .modern-tab-content,
  .modern-tab-viewport {
    padding: 1.2rem 0.6rem;
    min-height: 300px;
    /* 高さの確保：本文エリアが見切れないように調整 */
  }

  .modern-tabs {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
  }

  .modern-tab-btn {
    width: 100%;
    text-align: center;
    padding: 0.50em 2em;
    box-sizing: border-box;
  }

  .modern-tabs-relative {
    width: 100%;
  }
}
