@charset "UTF-8";
/* アニメーションベンダープレフィックス込み指定 */
/* アニメーションベンダープレフィックス込み指定 */
/********************/
body {
  color: #121212;
  background: #fefefe;
  font-family: "Noto Sans JP", Lato, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  font-weight: 400;
  position: relative;
  letter-spacing: 0.05em;
}

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

@media screen and (max-width: 1025px) {
  #wrapper {
    overflow: hidden;
  }
}

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

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

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

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

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

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

.bold {
  font-weight: 600;
}

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

.mincho {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-weight: 500 !important;
}

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

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

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

.font_en {
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 700;
}

.btn-inline {
  display: inline-block;
  padding: 10px 15px;
  font-weight: 600;
  background: linear-gradient(93.39deg, #5499BC 0%, #0580d4 40%, #0690e8 60.05%, #5499BC 80.88%);
  background-size: 300%;
  background-position: left top;
  color: #fff;
  border-radius: 40px;
}
.btn-inline i {
  display: inline-block;
  padding-right: 3px;
}
.btn-inline:hover {
  background-position: 80% 0;
}

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

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

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

.loader {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fdfdfd;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
}
.loader::after {
  -webkit-animation: loader 0.5s linear infinite;
          animation: loader 0.5s linear infinite;
  border: 1px solid #5499BC;
  border-radius: 50%;
  border-right: 1px solid rgba(84, 153, 188, 0.2);
  border-top: 1px solid rgba(84, 153, 188, 0.2);
  content: "";
  height: 70px;
  width: 70px;
}
.loader.off {
  display: none;
}

@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes loader {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* header
----------------------------------*/
@-webkit-keyframes hd-scrolled {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes hd-scrolled {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
.gradient {
  position: relative;
}
.gradient:before {
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(93.39deg, #0580d4 0%, #0580d4 40%, #0478c6 60.05%, #5499BC 80.88%);
  background-size: 600% 600%;
  -webkit-animation: anim-gradient 8s ease infinite;
          animation: anim-gradient 8s ease infinite;
}

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

@keyframes anim-gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
#l-header {
  width: 100%;
  position: relative;
  z-index: 200;
  top: 0;
  left: 0;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
#l-header.is-fixed {
  position: fixed;
  background: rgba(255, 255, 255, 0.6);
  -webkit-box-shadow: 0px 0px 4px 0px rgba(153, 153, 153, 0.5);
          box-shadow: 0px 0px 4px 0px rgba(153, 153, 153, 0.5);
}
#l-header .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 95%;
  min-width: 1024px;
  margin: 0 auto;
  padding: 8px 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1025px) {
  #l-header .inner {
    min-width: initial;
  }
}
#l-header .inner #logo {
  width: 300px;
}
#l-header .inner .logo2 {
  display: none;
}
#l-header .head-right {
  margin-left: auto;
  margin-right: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
@media screen and (max-width: 1025px) {
  #l-header .head-right {
    display: none;
  }
}
#l-header .header-instagram {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #5499BC;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
#l-header .header-instagram img {
  width: 24px;
  height: 24px;
}
#l-header .header-instagram:hover {
  background: rgb(120.6428571429, 174.8571428571, 202.3571428571);
}
#l-header .head-right_contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
}
#l-header .head-right_tel a {
  background: transparent;
  color: #111;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.1;
  position: relative;
}
#l-header .head-right_tel a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
}
#l-header .head-right_tel a:hover {
  color: rgb(120.6428571429, 174.8571428571, 202.3571428571);
}

#header_nav {
  position: relative;
}
#header_nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
#header_nav ul li {
  position: relative;
  text-align: center;
}
#header_nav ul li.btn-contact .time {
  font-size: 1.2rem;
  background: #f8f8f8;
  padding: 5px 15px;
  border-radius: 5px;
}
#header_nav ul li.btn-contact a {
  padding: 5px 20px 5px 40px;
  border-radius: 30px;
  color: #5499BC;
  display: inline-block;
  position: relative;
  font-family: "Barlow", sans-serif;
  font-size: 1.9rem;
}
#header_nav ul li.btn-contact a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 14px;
}
#header_nav ul li.btn-contact a:after {
  display: none;
}
#header_nav ul li.btn-contact a:hover {
  background-position: 80% 0;
  background: #fefefe;
  color: #DED296;
}
#header_nav ul li a {
  display: block;
  color: #222;
  position: relative;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.5;
}
#header_nav ul li a span {
  display: block;
  font-size: 1.6rem;
  color: #5499BC;
  position: relative;
  font-family: "Montserrat Alternates", sans-serif;
}
#header_nav ul li a:after {
  position: absolute;
  content: "";
  width: 0;
  height: 3px;
  background: #5499BC;
  left: 0;
  bottom: -5px;
  -webkit-transition: 0.2s width ease-in;
  transition: 0.2s width ease-in;
}
#header_nav ul li a:hover span, #header_nav ul li a.active span {
  color: #555;
}
#header_nav ul li a:hover:after, #header_nav ul li a.active:after {
  width: 20px;
}
#header_nav .dropdown {
  display: none;
  position: absolute;
  left: -30px;
  top: 45x;
  z-index: 999;
  padding-top: 10px;
}
#header_nav .dropdown.drop-last {
  left: auto;
  right: -80px;
}
#header_nav .dropdown .dropdown-ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #fff;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  padding: 0;
  min-width: 180px;
}
#header_nav .dropdown .dropdown-li {
  border-right: 0;
  background: transparent;
  width: auto;
  border-radius: 0;
  border-bottom: 1px solid #efefef;
}
#header_nav .dropdown .dropdown-li:last-child {
  border-bottom: none;
}
#header_nav .dropdown .dropdown-li a {
  display: block;
  width: 100%;
  padding: 14px 20px;
  color: #333;
  font-size: 1.3rem;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
}
#header_nav .dropdown .dropdown-li a .footer-only {
  display: none;
}
#header_nav .dropdown .dropdown-li a:hover {
  background: #f5f5f5;
  color: #5499BC;
}
#header_nav .dropdown .dropdown-li a:after {
  display: none;
}

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

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

#slideshow {
  position: relative;
  margin-inline: auto;
  overflow: hidden;
  width: 97%;
  margin-left: auto;
  margin-right: auto;
  border-image-slice: 1;
  background: #fff;
  padding: 10px;
}
#slideshow:before {
  left: -8px;
  top: -8px;
}
#slideshow:before, #slideshow:after {
  position: absolute;
  content: "";
  width: 45%;
  height: 70%;
  opacity: 0.7;
  z-index: 0;
}
#slideshow:after {
  right: -8px;
  bottom: -8px;
}
#slideshow .mv {
  position: relative;
  z-index: 1;
}
#slideshow .swiper-slide {
  position: relative;
}
#slideshow .slide-img {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding-top: 40%;
  height: 85vh;
}
#slideshow .slide-img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1025px) {
  #slideshow .slide-img {
    padding-top: 50%;
    height: 60vh;
  }
}
@media screen and (max-width: 639px) {
  #slideshow .slide-img {
    padding-top: 70%;
    height: 45vh;
  }
}

#slide-wrap {
  position: relative;
  margin-bottom: 50px;
}

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

@-webkit-keyframes typinganime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes typinganime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#catch {
  z-index: 50;
  position: absolute;
  left: 107%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 10;
  width: 45%;
}
@media screen and (max-width: 1025px) {
  #catch {
    width: 55%;
  }
}
#catch .catch-sub {
  width: 50%;
  margin-right: 100px;
  margin-top: -10px;
  opacity: 0;
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
  will-change: transform, opacity;
  position: relative;
  z-index: 2;
}
#catch.on .catch-sub {
  -webkit-transition: 0.5s all cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: 0.5s all cubic-bezier(0.55, 0.05, 0.22, 0.99);
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (max-width: 1025px) {
  #catch .catch-sub {
    width: 70%;
    margin-top: -30px;
    margin-left: 1.5em;
  }
}
@media screen and (max-width: 639px) {
  #catch {
    width: auto;
    max-height: 40vh;
    left: 50%;
    top: 50%;
    bottom: auto;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  #catch img {
    height: 40vh;
    width: auto;
    max-width: none;
  }
  #catch .catch-sub {
    margin-top: -40px;
    width: 60%;
  }
}

#mask {
  width: 100%;
}
#mask .st0 {
  fill: none;
  stroke: #ffffff;
  /*マスクする線の色*/
  stroke-width: 80;
  /*線の太さを指定する*/
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
  stroke-dasharray: 1500;
  /* 線の間隔を指定する */
  stroke-dashoffset: 1500;
  /* 線の位置を指定する */
}

.slide-txt {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 40;
  font-size: 2.2rem;
  color: #fff;
  font-weight: 600;
  text-shadow: 0 0 8px rgba(73, 45, 24, 0.1);
}
.slide-txt.slide-txt01 {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 20px 20px 0 0;
}
.slide-txt.slide-txt01 img {
  width: 35%;
}
@media screen and (max-width: 1025px) {
  .slide-txt.slide-txt01 img {
    width: 65%;
  }
}
.slide-txt.slide-txt02 {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 0 0 20px 20px;
}
.slide-txt.slide-txt02 img {
  width: 45%;
}
@media screen and (max-width: 1025px) {
  .slide-txt.slide-txt02 img {
    width: 70%;
  }
}
@media screen and (max-width: 639px) {
  .slide-txt.slide-txt02 img {
    width: 85%;
  }
}
@media screen and (max-width: 639px) {
  .slide-txt.slide-txt02 {
    padding: 0 0 10px 10px;
  }
}
.slide-txt.slide-txt03 {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 20px 20px 0 0;
}
.slide-txt.slide-txt03 img {
  width: 38%;
}
@media screen and (max-width: 1025px) {
  .slide-txt.slide-txt03 img {
    width: 55%;
  }
}

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

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

@keyframes scroll-point {
  0% {
    bottom: 0;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  50% {
    top: 180px;
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    top: 210px;
    opacity: 0;
  }
}
/* contact_bnr
----------------------------------*/
.contact_bnr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact_bnr > li {
  width: 100%;
}
.contact_bnr > li:first-child {
  margin-bottom: 10px;
}
.contact_bnr > li .bnr_map i {
  display: inline-block;
  margin-right: 5px;
}
.contact_bnr > li .bnr_map {
  color: #fff;
  width: 280px;
  background: #CF5EA2;
  font-size: 1.6rem;
  padding: 15px 0;
  letter-spacing: 0.1rem;
  position: relative;
}
@media screen and (max-width: 639px) {
  .contact_bnr > li .bnr_map {
    font-size: 1.3rem;
  }
}
.contact_bnr > li .bnr_map:after {
  position: absolute;
  content: "";
  right: -25px;
  top: 50%;
  width: 50px;
  height: 1px;
  background: #fff;
  -webkit-transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
}
.contact_bnr > li .bnr_map:hover {
  background: rgba(47, 23, 118, 0.6);
}
.contact_bnr > li .bnr_map:hover:after {
  right: -32px;
}
.contact_bnr > li .bnr_tel {
  white-space: nowrap;
  position: relative;
  padding: 5px 0;
  color: #2F1776;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0;
  justify-self: center;
}
.contact_bnr > li .bnr_tel:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
  font-size: 0.6em;
}
.contact_bnr > li .bnr_tel:hover {
  color: #fdf4ed;
  background: transparent;
}
@media screen and (max-width: 639px) {
  .contact_bnr > li .bnr_tel {
    font-size: 2.4rem;
  }
}
.contact_bnr > li .bnr_mobile:before {
  font-family: "Font Awesome 5 Free";
  content: "\f3cd";
  font-weight: 900;
}
.contact_bnr > li .bnr_fax {
  background: #fdfdfd;
  color: #5499BC;
}
.contact_bnr > li .bnr_fax:before {
  font-family: "Font Awesome 5 Free";
  content: "\f1ac";
  font-weight: 900;
}
.contact_bnr > li .bnr_mail {
  width: 100%;
  font-size: 1.8rem;
  padding: 15px 20px;
  background: #fff;
  border-radius: 50px;
}
.contact_bnr > li .bnr_mail:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
}
@media screen and (max-width: 639px) {
  .contact_bnr > li .bnr_mail {
    font-size: 1.4rem;
    padding: 10px;
    width: 90%;
  }
}
.contact_bnr > li .bnr_mail:hover {
  background: rgb(192.5837320574, 57.4162679426, 138.7559808612);
  color: #fff;
}
.contact_bnr > li a,
.contact_bnr > li span {
  display: block;
  font-weight: 600;
  text-align: center;
  padding: 12px 10px;
}
.contact_bnr > li a:before,
.contact_bnr > li span:before {
  margin-right: 5px;
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 639px) {
  .contact_bnr > li a,
  .contact_bnr > li span {
    margin: 0 auto;
    white-space: nowrap;
    padding: 10px 0;
    width: 100%;
  }
}

.contact_v2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px;
}
@media screen and (max-width: 1025px) {
  .contact_v2 {
    padding: 20px 0;
  }
}
@media screen and (max-width: 480px) {
  .contact_v2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.contact_v2 .phone,
.contact_v2 .detail {
  padding: 0 3em;
}
@media screen and (max-width: 1440px) {
  .contact_v2 .phone,
  .contact_v2 .detail {
    padding: 0 20px;
  }
}
.contact_v2 .phone {
  border-right: 2px dotted rgba(222, 210, 150, 0.5);
  text-align: right;
  font-family: "Barlow", sans-serif;
}
@media screen and (max-width: 1025px) {
  .contact_v2 .phone {
    border-right: none;
    text-align: center;
  }
}
.contact_v2 .phone a {
  position: relative;
  color: #5499BC;
  font-size: 3rem;
  font-weight: 600;
}
@media screen and (max-width: 1025px) {
  .contact_v2 .phone a {
    font-size: 3rem;
  }
}
@media screen and (max-width: 639px) {
  .contact_v2 .phone a {
    font-size: 2.5rem;
  }
}
.contact_v2 .phone a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f095";
  font-weight: 900;
  margin-right: 0.2em;
}
.contact_v2 .phone a:hover {
  color: #DED296;
}
.contact_v2 .phone span {
  display: block;
  font-size: 1.4rem;
}
@media screen and (max-width: 639px) {
  .contact_v2 .phone span {
    font-size: 1.8rem;
  }
}
.contact_v2 .detail {
  font-size: 1.4rem;
  text-align: center;
}
.contact_v2 .detail .font_m {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, rgba(255, 215, 95, 0.3)));
  background: linear-gradient(transparent 50%, rgba(255, 215, 95, 0.3) 50%);
}
@media screen and (max-width: 1025px) {
  .contact_v2 .detail {
    text-align: center;
  }
}

/* footer
----------------------------------*/
#l-footer {
  position: relative;
  width: 100%;
}
#l-footer:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: -1;
}
#l-footer .inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 10px;
  z-index: 2;
}
#l-footer .footer-column {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  z-index: 2;
}
#l-footer .footer-column .footer-left {
  width: 320px;
}
#l-footer .footer-column .footer-right {
  width: calc(100% - 350px);
}
@media screen and (max-width: 1025px) {
  #l-footer .inner {
    max-width: 600px;
    padding: 50px 20px;
  }
  #l-footer .footer-column .footer-left,
  #l-footer .footer-column .footer-right {
    width: 100%;
  }
  #l-footer .footer-column .footer-right {
    margin-top: 25px;
  }
}
@media screen and (max-width: 639px) {
  #l-footer .inner {
    padding: 30px 15px;
  }
}

/* footer_navi
----------------------------------*/
.footer_navi {
  margin: 0 auto 0;
}
@media screen and (max-width: 1025px) {
  .footer_navi {
    display: none;
  }
}
.footer_navi ul {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}
.footer_navi ul > li {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}
.footer_navi ul > li:first-child {
  display: none;
}
.footer_navi ul > li a {
  position: relative;
  display: block;
  color: #333;
  font-family: "Noto Sans JP", Lato, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1025px) {
  .footer_navi ul > li a {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 639px) {
  .footer_navi ul > li a {
    font-size: 1rem;
  }
}
.footer_navi ul > li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f138";
  font-weight: 900;
  margin-right: 3px;
  color: #5499BC;
}
.footer_navi ul > li a span {
  display: none;
}
.footer_navi ul > li a:hover {
  opacity: 0.6;
}
.footer_navi ul > li .dropdown {
  display: block;
  margin-top: 5px;
}
.footer_navi ul > li .dropdown li {
  width: 100%;
  margin: 0;
}
.footer_navi ul > li .dropdown li:first-child {
  display: block;
}
.footer_navi ul > li .dropdown a {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1025px) {
  .footer_navi ul > li .dropdown a {
    font-size: 1.05rem;
  }
}
@media screen and (max-width: 639px) {
  .footer_navi ul > li .dropdown a {
    font-size: 0.95rem;
  }
}
.footer_navi ul > li .dropdown a:before {
  content: " ・";
}

.flogo {
  position: relative;
  margin: 0 auto 15px;
  text-align: center;
}
@media screen and (max-width: 1025px) {
  .flogo {
    margin: 0 auto 10px;
    width: 250px;
  }
}

.address {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1025px) {
  .address {
    font-size: 1.05rem;
  }
}
@media screen and (max-width: 639px) {
  .address {
    font-size: 0.95rem;
  }
}
.address {
  line-height: 1.6;
  text-align: center;
  color: #333;
}

.copyright {
  padding: 20px 5px;
  z-index: 2;
  color: #333;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1025px) {
  .copyright {
    font-size: 1.05rem;
  }
}
@media screen and (max-width: 639px) {
  .copyright {
    font-size: 0.95rem;
  }
}
.copyright {
  background: #555;
  color: #fff;
}
@media screen and (max-width: 1025px) {
  .copyright {
    padding: 16px 0 84px;
  }
}

.footer-contact {
  position: relative;
}
.footer-contact:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #f2f2f2;
  z-index: -1;
}
.footer-contact .contact-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer-contact .contact-box .left,
.footer-contact .contact-box .right {
  position: relative;
  width: 33.3333333333%;
  padding: 30px;
}
.footer-contact .contact-box .left .contact-btn a,
.footer-contact .contact-box .right .contact-btn a {
  position: relative;
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer-contact .contact-box .left .contact-btn a .contact-title,
.footer-contact .contact-box .right .contact-btn a .contact-title {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 3rem;
  white-space: nowrap;
  color: #5499BC;
  margin-left: 20px;
  line-height: 1.4;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  white-space: nowrap;
}
.footer-contact .contact-box .left .contact-btn a .contact-title.type1,
.footer-contact .contact-box .right .contact-btn a .contact-title.type1 {
  color: #DED296;
}
.footer-contact .contact-box .left .contact-btn a .contact-title.type2,
.footer-contact .contact-box .right .contact-btn a .contact-title.type2 {
  color: #5b9679;
}
.footer-contact .contact-box .left .contact-btn a .contact-title span,
.footer-contact .contact-box .right .contact-btn a .contact-title span {
  font-family: "Noto Sans JP", Lato, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1025px) {
  .footer-contact .contact-box .left .contact-btn a .contact-title span,
  .footer-contact .contact-box .right .contact-btn a .contact-title span {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 639px) {
  .footer-contact .contact-box .left .contact-btn a .contact-title span,
  .footer-contact .contact-box .right .contact-btn a .contact-title span {
    font-size: 1rem;
  }
}
.footer-contact .contact-box .left .contact-btn a .contact-title span,
.footer-contact .contact-box .right .contact-btn a .contact-title span {
  display: block;
  color: #333;
}
.footer-contact .contact-box .left .contact-btn a .contact-img,
.footer-contact .contact-box .right .contact-btn a .contact-img {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  background: #5499BC;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.footer-contact .contact-box .left .contact-btn a .contact-img.type1,
.footer-contact .contact-box .right .contact-btn a .contact-img.type1 {
  background: #DED296;
}
.footer-contact .contact-box .left .contact-btn a .contact-img.type2,
.footer-contact .contact-box .right .contact-btn a .contact-img.type2 {
  background: #5b9679;
}
.footer-contact .contact-box .left .contact-btn a .contact-img img,
.footer-contact .contact-box .right .contact-btn a .contact-img img {
  position: absolute;
  width: 42px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.footer-contact .contact-box .left .contact-btn a:hover .contact-title,
.footer-contact .contact-box .right .contact-btn a:hover .contact-title {
  color: rgb(110.5, 110.5, 110.5) !important;
}
.footer-contact .contact-box .left .contact-btn a:hover .contact-img,
.footer-contact .contact-box .right .contact-btn a:hover .contact-img {
  background: rgb(110.5, 110.5, 110.5) !important;
}
.footer-contact .contact-box .left + .left::before,
.footer-contact .contact-box .right::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: #dddddd;
}
@media screen and (max-width: 1025px) {
  .footer-contact .contact-box .left,
  .footer-contact .contact-box .right {
    padding: 20px;
  }
  .footer-contact .contact-box .left .contact-btn a .contact-title,
  .footer-contact .contact-box .right .contact-btn a .contact-title {
    font-size: 2.2rem;
    margin-left: 15px;
  }
  .footer-contact .contact-box .left .contact-btn a .contact-title span,
  .footer-contact .contact-box .right .contact-btn a .contact-title span {
    font-size: 1.2rem;
    letter-spacing: 0.05em;
  }
  .footer-contact .contact-box .left .contact-btn a .contact-img,
  .footer-contact .contact-box .right .contact-btn a .contact-img {
    width: 68px;
    height: 68px;
  }
  .footer-contact .contact-box .left .contact-btn a .contact-img img,
  .footer-contact .contact-box .right .contact-btn a .contact-img img {
    width: 36px;
  }
}
@media screen and (max-width: 639px) {
  .footer-contact .contact-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer-contact .contact-box .left,
  .footer-contact .contact-box .right {
    width: 100%;
    padding: 15px;
  }
  .footer-contact .contact-box .left .contact-btn,
  .footer-contact .contact-box .right .contact-btn {
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-contact .contact-box .left .contact-btn a,
  .footer-contact .contact-box .right .contact-btn a {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .footer-contact .contact-box .left .contact-btn a .contact-title,
  .footer-contact .contact-box .right .contact-btn a .contact-title {
    font-size: 2rem;
  }
  .footer-contact .contact-box .left .contact-btn a .contact-title span,
  .footer-contact .contact-box .right .contact-btn a .contact-title span {
    font-size: 1.1rem;
  }
  .footer-contact .contact-box .left .contact-btn a .contact-img,
  .footer-contact .contact-box .right .contact-btn a .contact-img {
    width: 60px;
    height: 60px;
  }
  .footer-contact .contact-box .left .contact-btn a .contact-img img,
  .footer-contact .contact-box .right .contact-btn a .contact-img img {
    width: 32px;
  }
  .footer-contact .contact-box .right::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #dddddd;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

.lsingle {
  float: left;
}

.rsingle {
  float: right;
}

.mbox {
  background: rgba(255, 255, 255, 0.9);
  padding: 35px 30px;
  position: relative;
  border-radius: 0 0 40px 0;
  z-index: 3;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
.mbox.type1 {
  background: rgba(208, 177, 244, 0.4);
}
.mbox.shadow {
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 18px 50px -10px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 18px 50px -10px;
}
.mbox.transparent {
  background: transparent;
}
@media screen and (max-width: 639px) {
  .mbox {
    padding: 20px 8px;
    border-radius: 0 0 20px 0;
  }
}

.mbox2 {
  background: rgba(0, 0, 0, 0.3);
  padding: 35px 30px;
}
@media screen and (max-width: 639px) {
  .mbox2 {
    padding: 15px;
  }
}

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

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

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

.bg-gradient {
  position: relative;
}
.bg-gradient:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #54d0ff, #9f92ff 20%, #ff7689 90%);
}

.bg-map {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.bg-map:before {
  position: absolute;
  content: "";
  width: 80%;
  height: 140%;
  right: 0;
  top: -20%;
  background: url(../img/map.png) no-repeat right 50%/contain;
}
@media screen and (max-width: 639px) {
  .bg-map:before {
    width: 90%;
  }
}

.bg-wall {
  background: url(../img/bg-wall.jpg);
}

.bg_common {
  padding-top: 80px;
}

.bg_contact {
  position: relative;
  background-color: #fefefe;
  margin-left: auto;
  margin-bottom: -50px;
  z-index: 20;
  border-radius: 0 0 0 40px;
  display: inline-block;
  float: right;
}
@media screen and (max-width: 1025px) {
  .bg_contact {
    margin-bottom: 0;
    clear: both;
    display: block;
    width: 100%;
  }
}

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

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

/* mtitle
----------------------------------*/
.mtitle {
  margin: 0 auto 35px;
  text-align: center;
  position: relative;
  z-index: 3;
  padding-top: 55px;
}
.mtitle:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 15px;
  content: attr(data-title);
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  text-align: center;
  color: transparent;
  background-image: linear-gradient(93.39deg, #0580d4 0%, #0580d4 40%, #0478c6 60.05%, #5499BC 80.88%);
  -webkit-background-clip: text;
  letter-spacing: 0;
  font-weight: 300;
}
.mtitle:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
}
.mtitle.icon1:after {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27881/icon01.png);
  background-size: 60px;
  background-repeat: no-repeat;
}
.mtitle .ja {
  font-size: 1.5rem;
  color: #1b1b1b;
}
.mtitle.white {
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}
.mtitle.white:before {
  color: #fff;
}
.mtitle.white span {
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}
.mtitle.white span:after {
  background-color: #eee;
}
.mtitle.mtitle_left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}
.mtitle.mtitle_left:before {
  left: 0;
  -webkit-transform: none;
          transform: none;
}
.mtitle.mtitle_right {
  text-align: right;
  margin-left: auto;
  margin-right: 0;
}
.mtitle.icon {
  padding-bottom: 15px;
  border-bottom: 2px dashed #555;
  border-top: 2px dashed #555;
  padding-left: 80px;
}
.mtitle.icon:before {
  left: 80px;
}
@media screen and (max-width: 639px) {
  .mtitle {
    padding-top: 45px;
  }
  .mtitle:before {
    font-size: 2.2rem;
    white-space: nowrap;
  }
  .mtitle .ja {
    font-size: 1.5rem;
  }
}

.mtitle2 {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 400;
}
.mtitle2:before {
  content: "";
  width: 20px;
  height: 1px;
  background: #ccc;
  display: inline-block;
  margin: 0 1em;
}
.mtitle2 span {
  position: relative;
  z-index: 2;
}
.mtitle2 .eng {
  font-size: 2.2rem;
  display: inline-block;
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 400;
  color: #DED296;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  letter-spacing: 0;
}
.mtitle2 .ja {
  font-size: 2rem;
  color: #333;
}
@media screen and (max-width: 639px) {
  .mtitle2:before {
    width: 15px;
  }
  .mtitle2 .eng {
    font-size: 2rem;
  }
  .mtitle2 .ja {
    font-size: 1.3rem;
  }
}
.mtitle2 {
  position: relative;
}

.mtitle3 {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  position: absolute;
  min-height: 100px;
  top: 40px;
  left: 30px;
}
.mtitle3 .ja {
  display: block;
  font-size: 2.6rem;
  border-right: 2px solid #5499BC;
  letter-spacing: 0.2em;
  padding-right: 5px;
  font-weight: 400;
}
.mtitle3 .eng {
  display: block;
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #5499BC;
  padding-left: 3px;
}
@media screen and (max-width: 639px) {
  .mtitle3 {
    left: 10px;
    top: 15px;
  }
  .mtitle3 .ja {
    font-size: 1.6rem;
  }
  .mtitle3 .eng {
    font-size: 1.3rem;
  }
}

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

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

.mtitle5 {
  position: relative;
}
.mtitle5 span {
  position: relative;
  z-index: 2;
  padding: 0 15px 8px;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-size: 1.35em;
  line-height: 1.4;
  color: #5499BC;
  display: inline-block;
}
.mtitle5:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 60%;
  background: #E4DFFB;
  opacity: 0.3;
}

.mtitle_sub {
  padding-left: 0.5em;
  font-weight: 400;
  position: relative;
  border-left: 3px solid #5499BC;
  margin: 8px 0 15px;
  font-size: 1.8rem;
  line-height: 1.4;
  text-align: left;
}
@media screen and (max-width: 639px) {
  .mtitle_sub {
    font-size: 1.4rem;
  }
}
.mtitle_sub:before {
  position: absolute;
  left: -3px;
  bottom: 0;
  content: "";
  width: 3px;
  height: 50%;
  background-color: #DED296;
}

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

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

.mtitle_middle {
  position: relative;
  border-bottom: 3px solid #eee;
  margin-bottom: 20px;
  padding-bottom: 5px;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.4;
}
@media screen and (max-width: 639px) {
  .mtitle_middle {
    font-size: 1.4rem;
  }
}
.mtitle_middle:after {
  position: absolute;
  bottom: -3px;
  left: 0;
  z-index: 2;
  content: "";
  width: 20%;
  height: 3px;
  background-color: #5499BC;
}
.mtitle_middle i {
  font-size: 0.9em;
  color: #5499BC;
}

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

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

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

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

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

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

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

.news-bl {
  overflow: hidden;
}
.news-bl .news-bl-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 8px 18px;
}
.news-bl .news-bl-inner:not(:last-of-type) {
  margin-bottom: 10px;
  border-bottom: 0.9px solid #ddd;
}
.news-bl dt {
  width: 6em;
  line-height: 1.3;
  color: #2F1776;
  text-align: center;
  font-size: 1.3rem;
}
.news-bl dt .year {
  font-size: 12px;
}
.news-bl dt .md {
  display: block;
  font-size: 1.7rem;
  font-weight: 600;
}
@media screen and (max-width: 639px) {
  .news-bl dt {
    width: 4.5em;
    font-size: 12px;
  }
  .news-bl dt .md {
    font-size: 1.3rem;
  }
}
.news-bl dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 50px;
  line-height: 1.6;
  font-size: 1.4rem;
}
.news-bl dd a {
  color: #232323;
  background-image: -webkit-gradient(linear, left top, right top, from(#5499BC), to(#2F1776));
  background-image: linear-gradient(to right, #5499BC, #2F1776);
  padding-bottom: 0.25em;
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  -webkit-transition: background-size 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: background-size 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-weight: 600;
}
.news-bl dd a:hover {
  background-position: 0 100%;
  background-size: 100% 1px;
}
@media screen and (max-width: 639px) {
  .news-bl dd {
    margin-left: 20px;
    font-size: 13px;
  }
}

/* page-title
----------------------------------*/
.page-title {
  position: relative;
  border-radius: 0 0 100px 0;
  overflow: hidden;
}
@media screen and (max-width: 1025px) {
  .page-title {
    margin-top: 10px;
  }
}
@media screen and (max-width: 639px) {
  .page-title {
    border-radius: 0 0 60px 0;
    width: 95%;
  }
}
.page-title:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #5499BC;
  opacity: 0.5;
}
.page-title .page_image {
  overflow: hidden;
  position: absolute;
  z-index: 1;
  width: 60%;
  height: 80%;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 1025px) {
  .page-title .page_image {
    width: 50%;
  }
}
@media screen and (max-width: 639px) {
  .page-title .page_image {
    width: 100%;
    -webkit-transform: none;
            transform: none;
    top: 0;
    height: 60%;
  }
}
.page-title .page_image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
  -o-object-position: center top;
     object-position: center top;
}
.page-title .inner {
  margin: 0 auto;
  height: 350px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1100px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1101px) {
  .page-title .inner {
    padding: 0 20px;
  }
}
@media screen and (max-width: 1025px) {
  .page-title .inner {
    height: 300px;
  }
}
@media screen and (max-width: 639px) {
  .page-title .inner {
    height: 45vw;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding-bottom: 30px;
  }
}
.page-title .inner .page-lead {
  font-size: 2.4rem;
  position: relative;
}
.page-title .inner .page-lead.on .eng {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 0.8;
}
.page-title .inner .page-lead.on .ja {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.page-title .inner .page-lead .eng {
  display: block;
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 700;
  font-size: 7rem;
  color: rgba(254, 254, 254, 0.7);
  line-height: 1;
  margin-top: 10px;
  letter-spacing: -0.2rem;
  opacity: 0;
  -webkit-transform: translateX(-10%);
          transform: translateX(-10%);
  -webkit-transition: 0.5s all cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: 0.5s all cubic-bezier(0.55, 0.05, 0.22, 0.99);
}
@media screen and (max-width: 639px) {
  .page-title .inner .page-lead .eng {
    margin-top: 2px;
  }
}
.page-title .inner .page-lead .ja {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  position: relative;
  z-index: 4;
  -webkit-transition: 0.5s all cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: 0.5s all cubic-bezier(0.55, 0.05, 0.22, 0.99);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
  display: inline-block;
  color: #fff;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 1300px) {
  .page-title .inner .page-lead {
    padding-left: 15px;
  }
}
@media screen and (max-width: 639px) {
  .page-title .inner .page-lead {
    font-size: 1.4rem;
    padding-left: 0;
  }
  .page-title .inner .page-lead .eng {
    font-size: 3rem;
  }
}

.stripe:before {
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 5px, hsla(0, 0%, 100%, 0.1) 0, hsla(0, 0%, 100%, 0.1) 7px);
  background-size: 200% auto;
}

.bg-01 {
  position: relative;
}
.bg-01 .inner {
  position: relative;
  padding-bottom: 70px;
}
@media screen and (max-width: 1440px) {
  .bg-01 .inner {
    padding-left: 30px;
  }
}
@media screen and (max-width: 1025px) {
  .bg-01 .inner {
    padding-left: 0;
    padding-bottom: 0;
  }
}
.bg-01:before, .bg-01:after {
  position: absolute;
  content: "";
  top: 0;
  left: auto;
  right: 0;
  width: 93%;
  height: 85%;
  border-radius: 0 0 0 40px;
}
@media screen and (max-width: 1440px) {
  .bg-01:before, .bg-01:after {
    width: 97%;
  }
}
.bg-01:before {
  background-color: #5499BC;
  opacity: 0.7;
}

.greet-img {
  position: absolute;
  -webkit-box-shadow: 0 0 8px rgba(73, 45, 24, 0.1);
          box-shadow: 0 0 8px rgba(73, 45, 24, 0.1);
  overflow: hidden;
  right: -10%;
  bottom: -40px;
  width: 50%;
  height: 300px;
  border-radius: 30px 0 30px 0;
}
@media screen and (max-width: 1025px) {
  .greet-img {
    position: initial;
    width: 90%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 639px) {
  .greet-img {
    height: 250px;
  }
}

.bg-02 {
  position: relative;
}
.bg-02:before {
  position: absolute;
  content: "";
  left: 0;
  top: -120px;
  width: 93%;
  height: calc(100% + 120px);
  background: #f2f2f2;
  z-index: -1;
}
.bg-02.type1:before {
  top: 0;
  height: 100%;
}
@media screen and (max-width: 1025px) {
  .bg-02.type1:before {
    width: 100%;
  }
}
.bg-02.type-purple:before {
  left: auto;
  right: 0;
}

.bg-02 {
  position: relative;
}
.bg-02:before {
  position: absolute;
  content: "";
  left: 0;
  top: -120px;
  width: 93%;
  height: calc(100% + 120px);
  background: #f2f2f2;
  z-index: -1;
}
@media screen and (max-width: 1440px) {
  .bg-02:before {
    width: 97%;
  }
}
.bg-02.type2:before {
  top: 0;
  height: 100%;
}

.bg-03 {
  position: relative;
}
.bg-03:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 80%;
  height: 100%;
  background: #5499BC;
  z-index: 0;
  opacity: 0.5;
  border-radius: 0 0 40px 0;
}
@media screen and (max-width: 639px) {
  .bg-03:before {
    width: 100%;
  }
}
.bg-03:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 80%;
  height: 100%;
  background: url(../img/bg-03.jpg) center/cover;
  z-index: -1;
  opacity: 0.3;
  -webkit-filter: blur(3px);
          filter: blur(3px);
  border-radius: 0 0 40px 0;
}
@media screen and (max-width: 639px) {
  .bg-03:after {
    width: 100%;
  }
}

.bg-04 {
  position: relative;
}
.bg-04:before {
  position: absolute;
  content: "";
  left: 0;
  top: -120px;
  width: 93%;
  height: calc(100% + 120px);
  background: rgba(222, 210, 150, 0.1);
  z-index: -1;
}
@media screen and (max-width: 1440px) {
  .bg-04:before {
    width: 97%;
  }
}

.bg-fixed {
  position: relative;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27881/bg-fixed.jpg) no-repeat center center/cover;
  background-attachment: fixed;
  width: 100%;
  height: 40vh;
}
.bg-fixed:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2) url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27881/raster.png) repeat;
  z-index: 1;
}
.bg-fixed.type1 {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27881/2.jpg) no-repeat center center/cover;
  background-attachment: fixed;
}
.bg-fixed .scrolldown1 {
  top: inherit;
  bottom: 0;
  z-index: 100;
}
@media screen and (max-width: 1101px) {
  .bg-fixed {
    height: 35vw;
    background-attachment: inherit !important;
  }
}
@media screen and (max-width: 1025px) {
  .bg-fixed {
    height: 25vh;
  }
}

.bg-05 {
  position: relative;
}
.bg-05::after {
  content: "";
  position: absolute;
  width: 800px;
  height: 800px;
  background: url("https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27881/sankaku2.svg") no-repeat center;
  background-size: contain;
  left: -90px;
  top: 55%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -3;
  pointer-events: none;
}
.bg-05.type2::after {
  left: auto;
  right: -90px;
}
@media screen and (max-width: 639px) {
  .bg-05::after {
    width: 400px;
    height: 400px;
    left: -120px;
  }
  .bg-05.type2::after {
    left: auto;
    right: -120px;
  }
}

.bg-pattern {
  position: relative;
}
.bg-pattern:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: 900px;
  opacity: 0.5;
}

.bg-base {
  position: relative;
}
.bg-base:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#d0b1f4), color-stop(50%, rgb(217.8, 200.1, 178.2)), color-stop(65%, rgb(219.9, 205.05, 164.1)), color-stop(75.5%, rgb(220.95, 207.525, 157.05)), color-stop(82.85%, rgb(221.482, 208.779, 153.478)), color-stop(88%, rgb(221.734, 209.373, 151.786)), to(#ded296));
  background-image: linear-gradient(to bottom, #d0b1f4 0%, rgb(217.8, 200.1, 178.2) 50%, rgb(219.9, 205.05, 164.1) 65%, rgb(220.95, 207.525, 157.05) 75.5%, rgb(221.482, 208.779, 153.478) 82.85%, rgb(221.734, 209.373, 151.786) 88%, #ded296 100%);
  opacity: 0.3;
}
.bg-base.type1 {
  position: relative;
}
.bg-base.type1:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: calc(100% - 80px);
  height: calc(100% - 20px);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #f2f2f2;
  opacity: 1;
  z-index: -2;
}
@media screen and (max-width: 1101px) {
  .bg-base.type1:before {
    width: calc(100% - 10px);
    height: calc(100% - 10px);
  }
}
.bg-base.type2 .inner {
  position: relative;
  z-index: 3;
}
.bg-base.type2:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: calc(100% - 80px);
  height: calc(100% - 80px);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #fefefe;
}
@media screen and (max-width: 639px) {
  .bg-base.type2:before {
    width: calc(100% - 40px);
    height: calc(100% - 40px);
  }
}
.bg-base.type3 {
  position: relative;
}
.bg-base.type3:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: calc(100% - 80px);
  height: calc(100% - 40px);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #E4DFFB;
  opacity: 0.2;
}
@media screen and (max-width: 1101px) {
  .bg-base.type3:before {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
}

.bg-green {
  background: rgba(228, 223, 251, 0.4);
}

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

.bg-gray2 {
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#f2f2f2));
  background-image: linear-gradient(to bottom, transparent, #f2f2f2);
}

.bg-999 {
  background: #888;
}

.bg-blue {
  position: relative;
  background: transparent;
}
.bg-blue:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, right top, left top, from(#5499BC), to(#4a8dd0));
  background-image: linear-gradient(to left, #5499BC, #4a8dd0);
  opacity: 0.7;
}
.bg-blue.type1:before {
  top: 0;
  width: 100%;
  height: 100%;
  background: #2F1776;
  opacity: 0.9;
}
.bg-blue.type2:before {
  top: 0;
  width: 100%;
  height: 100%;
  background: #4a8dd0;
  opacity: 0.3;
}

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

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

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

/* tbl
----------------------------------*/
.tbl-company {
  width: 100%;
}
.tbl-company th,
.tbl-company td {
  padding: 12px 8px;
  vertical-align: top;
  border-bottom: 1px rgba(222, 210, 150, 0.7) solid;
}
.tbl-company th {
  width: 45%;
  font-weight: 600;
  text-align: left;
}
.tbl-company th.th-2 {
  background: #ddcdef;
  position: relative;
}
.tbl-company th.th-2:before {
  position: absolute;
  content: "";
  right: -20px;
  top: 0;
  width: 25px;
  height: 100%;
  background: #ddcdef;
  border-radius: 0 0 40px 0;
}
.tbl-company td {
  text-align: right;
}
.tbl-company td.td-2 {
  background: #f3f0f5;
  font-weight: 600;
  color: #2F1776;
}
@media screen and (max-width: 639px) {
  .tbl-company th,
  .tbl-company td {
    padding: 20px 4px;
    font-size: 0.95em;
  }
  .tbl-company th {
    width: 60%;
  }
}

.tbl_normal {
  width: 100%;
}
.tbl_normal.type1 th {
  width: 30%;
  font-size: 2rem;
  line-height: 1;
}
@media screen and (max-width: 639px) {
  .tbl_normal.type1 th {
    font-size: 1.6rem;
    width: 35%;
  }
}
.tbl_normal.type1 td {
  text-align: left;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-size: 0.9em;
}
.tbl_normal th,
.tbl_normal td {
  padding: 4px 5px;
  vertical-align: middle;
  border-bottom: 0.9px solid #ccc;
}
.tbl_normal th {
  width: 70%;
  text-align: left;
}
.tbl_normal td {
  text-align: right;
}

.tbl {
  width: 100%;
}
.tbl th,
.tbl td {
  padding: 15px;
  vertical-align: middle;
  border: 1px solid #ddd;
}
.tbl th {
  background: #f2f2f2;
  text-align: left;
}
.tbl th span {
  font-size: 1.4rem;
}
.tbl .cell01 {
  width: 45%;
}
.tbl .cell02 {
  width: 30%;
}
@media screen and (max-width: 639px) {
  .tbl th {
    text-align: left;
  }
  .tbl th,
  .tbl td {
    padding: 10px 8px;
    letter-spacing: 0;
  }
}

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

.tbl-border {
  width: 100%;
}
.tbl-border.tbl-mini th,
.tbl-border.tbl-mini td {
  padding: 6px 10px;
  border-width: 1px;
  font-size: 14px;
  letter-spacing: 0.1rem;
}
.tbl-border th,
.tbl-border td {
  padding: 15px;
  vertical-align: middle;
  font-size: 1.4rem;
}
@media screen and (max-width: 639px) {
  .tbl-border th,
  .tbl-border td {
    padding: 5px;
    font-size: 1.2rem;
  }
}
.tbl-border .small {
  font-size: 0.9em;
  background: #fff;
  color: #DED296;
  margin-right: 5px;
  padding: 0px 4px;
}
.tbl-border th {
  width: 22%;
  text-align: left;
  font-weight: 600;
  color: #555;
}
.tbl-border th span {
  display: block;
  background: #f8f8f8;
  text-align: center;
  padding: 5px;
  border-radius: 30px;
  width: 160px;
}
@media screen and (max-width: 639px) {
  .tbl-border th span {
    width: 125px;
  }
}
.tbl-border th.th-1 {
  width: 45%;
}
@media screen and (max-width: 639px) {
  .tbl-border th {
    width: 34%;
  }
}

.tbl-border2 {
  border-collapse: collapse;
  margin: 0 auto 40px;
  padding: 0;
  width: 100%;
}
.tbl-border2 tr {
  background-color: #fff;
  border-bottom: 2px solid #fff;
}
.tbl-border2 tr:nth-child(even) {
  background-color: #eee;
}
.tbl-border2 th,
.tbl-border2 td {
  padding: 10px;
  vertical-align: middle;
  width: 10%;
}
.tbl-border2 thead th {
  font-size: 1.3rem;
  padding: 10px;
}
.tbl-border2 thead tr {
  background-color: rgba(34, 34, 34, 0.7);
  color: #fff;
}
.tbl-border2 tbody th {
  font-size: 1.4rem;
}
.tbl-border2 .txt {
  text-align: center;
  font-size: 1.2rem;
}
@media screen and (max-width: 600px) {
  .tbl-border2 {
    border: 0;
    width: 100%;
  }
  .tbl-border2 th,
  .tbl-border2 td {
    width: auto;
  }
  .tbl-border2 th {
    background-color: rgba(34, 34, 34, 0.7);
    display: block;
    border-right: none;
  }
  .tbl-border2 th.col {
    width: 30px;
  }
  .tbl-border2 thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .tbl-border2 .txt {
    text-align: right;
  }
  .tbl-border2 tr {
    display: block;
    margin-bottom: 0.625em;
    border: 1px solid rgba(34, 34, 34, 0.7);
  }
  .tbl-border2 tr:nth-child(even) {
    background-color: #fff;
  }
  .tbl-border2 td {
    border-bottom: 1px dotted #bbb;
    display: block;
    text-align: right;
    position: relative;
    border-right: none;
  }
  .tbl-border2 td:before {
    content: attr(data-label);
    font-weight: bold;
    position: absolute;
    left: 10px;
    color: #000;
  }
  .tbl-border2 td:last-child {
    border-bottom: 0;
  }
  .tbl-border2 td.price {
    background: rgba(222, 210, 150, 0.05);
  }
  .tbl-border2 tbody th {
    color: #fff;
  }
}

.price {
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  color: #f66009;
  line-height: 1.2;
}
@media screen and (max-width: 639px) {
  .price {
    font-size: 1.4rem;
  }
}
.price.type2 {
  color: #555;
  font-size: 1.5rem;
}
.price .txt {
  font-size: 1.1rem;
}

/* ggmap
----------------------------------*/
.ggmap {
  position: relative;
  padding-bottom: 24.25%;
  height: 0;
  overflow: hidden;
  width: 90%;
  margin: 0 auto;
  border-radius: 30px;
  z-index: 10;
}
.ggmap.type1 {
  padding-bottom: 50%;
}
.ggmap.type2 {
  padding-bottom: 60%;
}
.ggmap iframe,
.ggmap object,
.ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-filter: grayscale(60%);
          filter: grayscale(60%);
}
@media screen and (max-width: 1025px) {
  .ggmap {
    padding-bottom: 40.25%;
  }
}
@media screen and (max-width: 639px) {
  .ggmap {
    padding-bottom: 50.25%;
  }
}

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

.list-policy {
  background: rgba(255, 255, 255, 0.7);
  padding: 25px;
  margin-bottom: 40px;
}
.list-policy li {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 2rem;
  padding-bottom: 5px;
  margin-bottom: 6px;
  font-weight: 600;
}
.list-policy li:before {
  content: "一、";
  margin-right: 7px;
  color: #5499BC;
}
@media screen and (max-width: 639px) {
  .list-policy {
    padding: 15px;
  }
  .list-policy li {
    font-size: 1.4rem;
  }
}

.list_check.type1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.list_check.type1 li {
  background: #2F1776;
  padding: 12px 8px;
  width: 31%;
  color: #fff;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 639px) {
  .list_check.type1 li {
    width: 95%;
    margin: 0 auto 5px;
  }
  .list_check.type1 li:nth-child(2n) {
    margin-left: auto;
  }
}
.list_check li {
  padding: 4px;
  padding-left: 30px;
  font-weight: 500;
  font-size: 1em;
  position: relative;
  margin-bottom: 5px;
}
.list_check li a {
  color: #5499BC;
  border-bottom: 1px dotted #5499BC;
}
.list_check li:before {
  position: absolute;
  left: 0;
  top: 20px;
  content: "";
  width: 10px;
  height: 2px;
  background: #DED296;
}
@media screen and (max-width: 639px) {
  .list_check li {
    width: 98%;
    margin: 0 auto 10px;
    font-size: 1.3rem;
  }
}
.list_check.type2 li {
  padding: 5px 5px 5px 40px;
  border-bottom: 2px solid #f2f2f2;
  font-size: inherit;
}
.list_check.type2 li .num {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  position: absolute;
  line-height: 1;
  left: 0;
  top: 2px;
  color: #D0B1F4;
}
.list_check.type2 li:before {
  display: none;
}

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

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

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

.num-txt {
  display: inline-block;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  font-size: 1.6rem;
  color: #fff;
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 700;
  background: #DED296;
  border-radius: 100%;
}

.ol-list {
  counter-reset: number;
  list-style: none;
  padding: 5px;
}
.ol-list.type1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.ol-list.type1 > li {
  width: 48%;
}
.ol-list.type1 > li:nth-child(2n) {
  margin-left: 4%;
}
.ol-list li {
  margin-bottom: 10px;
  padding-bottom: 5px;
  font-weight: 600;
  padding-left: 40px;
  position: relative;
}
.ol-list li:before {
  counter-increment: number;
  content: counter(number);
  background: #DED296;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  font-size: 1.6rem;
  color: #f5f3eb;
  position: absolute;
  left: 0;
  top: 0px;
  border-radius: 100%;
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 639px) {
  .ol-list li {
    font-size: 1.3rem;
  }
  .ol-list li span {
    font-size: 0.9em;
  }
  .ol-list li:before {
    font-size: 1.4rem;
  }
}

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

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

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

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

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

/* blog
----------------------------------*/
.top-blog-box {
  position: relative;
  z-index: 5;
  margin-left: auto;
  padding: 20px;
}
@media screen and (max-width: 1101px) {
  .top-blog-box {
    margin-top: 0;
  }
}
.top-blog-box .blog-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px 4%;
}
@media screen and (max-width: 639px) {
  .top-blog-box .blog-wrap {
    grid-template-columns: 1fr;
    padding: 0;
  }
}
.top-blog-box .blog-wrap li {
  position: relative;
}
.top-blog-box .blog-wrap li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
  background: #fefefe;
  border-radius: 10px;
  -webkit-box-shadow: 24px 24px 49px #e7e7e7, -24px -24px 49px #ffffff;
          box-shadow: 24px 24px 49px #e7e7e7, -24px -24px 49px #ffffff;
}
.top-blog-box .blog-wrap li a .blog-img {
  width: 30%;
  height: 90px;
}
.top-blog-box .blog-wrap li a .blog-detail {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 10px;
  position: relative;
  color: #222;
}

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

.blog-wrap li {
  position: relative;
}
.blog-wrap a {
  position: relative;
  background: #fff;
  display: block;
  padding-bottom: 10px;
}
.blog-wrap a .blog-detail {
  position: relative;
  padding: 10px 15px 30px;
}
.blog-wrap a .blog-img {
  overflow: hidden;
}
.blog-wrap a .blog-img img {
  -webkit-transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
}
.blog-wrap a:hover .blog-img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.blog-wrap a:hover .morebtn {
  border-bottom-color: #D0B1F4;
}

.morebtn {
  position: absolute;
  right: 10px;
  bottom: -10px;
  color: #5499BC;
  border-bottom: 2px solid #5499BC;
  font-size: 12px;
  font-weight: 700;
  padding: 0 10px;
  -webkit-transition: 0.2s ease-in all;
  transition: 0.2s ease-in all;
  letter-spacing: 0;
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 639px) {
  .morebtn {
    font-size: 11px;
  }
}

.pages {
  overflow: hidden;
  margin-top: 50px;
}
.pages .page_next,
.pages .page_prev {
  display: inline-block;
}
.pages .page_next a,
.pages .page_prev a {
  display: block;
  padding: 10px 20px;
  background-color: #fff;
  font-size: 13px;
}
.pages .page_next {
  float: left;
}
.pages .page_prev {
  float: right;
}

.blog-page-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  margin-bottom: 10px;
}
.blog-page-detail .blog-date2 {
  display: inline-block;
  color: #5499BC;
}
.blog-page-detail .blog-date2:before {
  font-family: "Font Awesome 5 Free";
  content: "\f017";
  font-weight: 900;
  margin-right: 5px;
}
.blog-page-detail .blog-date2 {
  margin-right: 10px;
}
.blog-page-detail .blog-category {
  background: url(../img/paper01.jpg);
  margin-right: 5px;
}

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

.blog-title {
  line-height: 1.5;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  font-weight: 600;
}
@media screen and (max-width: 639px) {
  .blog-title {
    font-size: 1.2rem;
  }
}

.blog-date {
  display: inline-block;
  color: #2F1776;
  font-size: 1.2rem;
}
.blog-date:before {
  font-family: "Font Awesome 5 Free";
  content: "\f017";
  font-weight: 900;
  margin-right: 5px;
}
@media screen and (max-width: 639px) {
  .blog-date {
    font-size: 12px;
  }
}

.top-blog-content {
  overflow: hidden;
}
@media screen and (max-width: 639px) {
  .top-blog-content {
    padding-left: 15px;
  }
}

.top-blog .pages {
  display: none;
}

.top-blog-common {
  overflow: visible !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding-bottom: 50px !important;
}
.top-blog-common .swiper-slide {
  overflow: hidden;
  width: 30rem;
  border-radius: 15px;
  background: #f6f6f6;
  display: block;
  height: auto;
}
@media screen and (max-width: 639px) {
  .top-blog-common .swiper-slide {
    width: 20rem;
  }
}
.top-blog-common .swiper-controller {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: absolute;
  left: 10px;
  bottom: -20px;
}
.top-blog-common .swiper-button-prev,
.top-blog-common .swiper-button-next {
  display: grid;
  place-content: center;
  width: 4rem;
  height: 4rem;
  cursor: pointer;
  -webkit-transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
}
.top-blog-common .swiper-button-prev {
  margin-right: 40px !important;
}
.top-blog-common .swiper-button-prev::before,
.top-blog-common .swiper-button-next::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: 50%;
  background: #fefefe;
  -webkit-box-shadow: 0.6rem 0.6rem 1rem rgba(73, 45, 24, 0.05), -0.6rem -0.6rem 1rem #DED296;
          box-shadow: 0.6rem 0.6rem 1rem rgba(73, 45, 24, 0.05), -0.6rem -0.6rem 1rem #DED296;
}
.top-blog-common .swiper-button-prev::after,
.top-blog-common .swiper-button-next::after {
  width: 1.2rem;
  height: 1.2rem;
  content: "";
  border: solid #5499BC;
  border-width: 3px 3px 0 0;
}
.top-blog-common .swiper-button-prev::after {
  margin-left: 0.4rem;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.top-blog-common .swiper-button-next::after {
  margin-right: 0.4rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.top-blog-common .swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}
.top-blog-common .swiper-button-prev,
.top-blog-common .swiper-button-next {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0;
}
.top-blog-common .swiper-button-disabled {
  pointer-events: none;
  opacity: 0.5;
}
.top-blog-common .swiper-button-disabled::before {
  -webkit-box-shadow: inset 0.6rem 0.6rem 1rem rgba(73, 45, 24, 0.05), inset -0.6rem -0.6rem 1rem #DED296;
          box-shadow: inset 0.6rem 0.6rem 1rem rgba(73, 45, 24, 0.05), inset -0.6rem -0.6rem 1rem #DED296;
}

.blog-card {
  height: 100%;
  display: block;
  position: relative;
}
.blog-card:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 5px;
  height: 3px;
  background: #5499BC;
  -webkit-transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
}
.blog-card:hover:before {
  width: 100%;
}
.blog-card figure {
  padding-top: 60%;
  position: relative;
}
.blog-card figure img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-card .content {
  padding: 0.8em 1.2em 1em;
}

.btn-more {
  margin-top: 20px;
  position: relative;
  z-index: 4;
}
.btn-more a {
  display: block;
  width: 11em;
  text-align: center;
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
  padding: 8px 10px;
  background: #4a8dd0;
  border-radius: 40px;
  margin-left: auto;
  -webkit-transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
}
.btn-more a:after {
  font-family: "Font Awesome 5 Free";
  content: "\f061";
  font-weight: 900;
  margin-left: 4px;
  display: inline-block;
  position: relative;
  -webkit-transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
}
.btn-more a:hover {
  background: #2F1776;
}
.btn-more a:hover:after {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
@media screen and (max-width: 639px) {
  .btn-more {
    margin-right: 10px;
  }
  .btn-more a {
    font-size: 13px;
  }
}

/* job
----------------------------------*/
.job-list-wrap > li:not(:last-of-type) {
  margin-bottom: 20px;
}
.job-list-wrap > li a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #fff;
  width: 100%;
  height: 100%;
  padding: 15px 20px;
  z-index: 3;
}
.job-list-wrap > li a:hover .morebtn {
  border-bottom-color: #4a8dd0;
  color: #4a8dd0;
}
.job-list-wrap > li a:hover .job-img img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
@media screen and (max-width: 639px) {
  .job-list-wrap > li a {
    padding: 12px 15px;
  }
}
.job-list-wrap > li .job-img {
  width: 100px;
  height: 100px;
  overflow: hidden;
}
.job-list-wrap > li .job-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.2s ease-in all;
  transition: 0.2s ease-in all;
}
@media screen and (max-width: 639px) {
  .job-list-wrap > li .job-img {
    width: 70px;
    height: 70px;
  }
}
.job-list-wrap > li .job-detail {
  width: 100%;
}
.job-list-wrap > li .job-title {
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1.5rem;
  color: #5499BC;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 639px) {
  .job-list-wrap > li .job-title {
    font-size: 1.2rem;
  }
}
.job-list-wrap > li .job-txt {
  font-size: 1.4rem;
  margin-top: 8px;
  letter-spacing: 0;
  margin-bottom: 15px;
  font-weight: 600;
  color: #222;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  /*IE対策*/
  line-height: 1.8em;
  max-height: 3.6em;
  overflow: hidden;
}
@media screen and (max-width: 639px) {
  .job-list-wrap > li .job-txt {
    font-size: 12px;
    margin-bottom: 25px;
  }
}
.job-list-wrap > li .naiyou {
  background: #4a8dd0;
  font-size: 12px;
  padding: 0px 4px;
  display: inline-block;
  margin-right: 5px;
  color: #fff;
}
.job-list-wrap > li .morebtn {
  position: absolute;
  right: 10px;
  bottom: 0;
  color: #5499BC;
  border-bottom: 3px solid #5499BC;
  font-size: 12px;
  font-weight: 600;
  padding: 0 10px;
  -webkit-transition: 0.2s ease-in all;
  transition: 0.2s ease-in all;
  letter-spacing: 0;
}

.job-upper {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  margin-bottom: 10px;
}
.job-upper .job-date {
  display: inline-block;
  color: #DED296;
  border-bottom: 2px solid #2F1776;
  font-weight: 600;
  font-size: 1.3rem;
}
.job-upper .job-date:before {
  font-family: "Font Awesome 5 Free";
  content: "\f017";
  font-weight: 900;
  margin-right: 5px;
}
@media screen and (max-width: 639px) {
  .job-upper .job-date {
    font-size: 12px;
  }
}
.job-upper .job-category {
  font-size: 12px;
  color: #111;
  display: inline-block;
  margin-left: 3px;
  background: #f2f2f2;
  font-weight: 600;
}

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

.w300 {
  width: 300px;
}

.spbr {
  display: none;
}

.color1 {
  color: #5499BC;
}

.color2 {
  color: #2F1776;
}

.color3 {
  color: #CF5EA2;
}

.color4 {
  color: #1d1d1d;
}

.relative {
  position: relative;
}

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

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

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

.telbnr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 30px auto 30px;
}
.telbnr li {
  width: 47%;
  border: 3px solid #E4DFFB;
  padding: 10px 10px;
  text-align: center;
  border-radius: 50px;
}
.telbnr li.telbnr-mail a {
  font-size: 2rem;
  padding-top: 5px;
}
.telbnr li.telbnr-mail a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
}
@media screen and (max-width: 639px) {
  .telbnr li.telbnr-mail a {
    font-size: 1.4rem;
    padding: 0;
  }
}
.telbnr li a {
  display: block;
  font-size: 2.4rem;
  font-weight: 600;
  color: #5499BC;
}
.telbnr li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
}
.telbnr li a:hover {
  color: #5499BC;
}
@media screen and (max-width: 639px) {
  .telbnr {
    max-width: 90%;
  }
  .telbnr li {
    width: 100%;
    margin: 0 auto 30px;
  }
  .telbnr li a {
    font-size: 2rem;
  }
}

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

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

/* form
----------------------------------*/
.pass_submit {
  /* ユーザーエージェントスタイルシートをリセット */
  border: 0;
  border-radius: 0;
  color: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  /* 高さに影響するプロパティが同じ値であることを確認 */
  font-size: 1em;
  line-height: 1.2;
  padding: 0.5em var(--padding-x);
  border-width: 2px;
  border-style: solid;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /* コンテンツを水平方向に中央揃え */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* コンテンツを垂直方向に中央揃え */
  --padding-x: 1.2em;
  border-color: transparent;
  /* button要素のborderを隠す */
  background: #2F1776;
  color: #fff;
  font-weight: 600;
}
@media screen and (max-width: 639px) {
  .pass_submit {
    margin-top: 20px;
  }
}

.textarea,
textarea {
  border: 0;
  padding: 15px;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
  background: #f0f0f0;
}

.textarea02 {
  width: 48.5%;
  margin-right: 3%;
}
.textarea02:last-child {
  margin-right: 0;
}

.textarea03 {
  width: 20%;
  margin-right: 1%;
}

.textarea04 {
  width: 300px;
  margin-right: 1%;
}

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

input[type=text],
textarea,
.textarea {
  font-size: 16px;
}
@media screen and (max-width: 639px) {
  input[type=text],
  textarea,
  .textarea {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    margin-left: -5px;
  }
}

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

.thanks {
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
}
@media screen and (max-width: 639px) {
  .thanks {
    max-width: 90%;
    padding: 30px 20px;
  }
}

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

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

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

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

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

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

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

@media screen and (max-width: 1025px) {
  .gallery li a {
    height: 120px;
  }
  .gallery li p {
    font-size: 12px;
  }
}
.list2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 4%;
}
@media screen and (max-width: 639px) {
  .list2 {
    grid-template-columns: 1fr;
  }
}
.list2.type1 > li,
.list2.type1 .child {
  background: #fefefe;
  padding: 15px;
}
.list2 > li.child-100,
.list2 .child.child-100 {
  grid-column: 2fr;
}
.list2 > li,
.list2 .child {
  position: relative;
}
.list2.type2 .child {
  background: #fefefe;
  padding: 35px 30px;
  border-radius: 0 0 40px 0;
}
.list2.type2 .child p {
  font-size: 1.5rem;
}
.list2.type2 .child p:not(:last-child) {
  margin-bottom: 15px;
}

.business-img img {
  -webkit-box-shadow: 3px 3px rgba(84, 153, 188, 0.2) !important;
          box-shadow: 3px 3px rgba(84, 153, 188, 0.2) !important;
}

.list3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px 4%;
}
.list3 .child {
  position: relative;
}
.list3 .child .box-img {
  overflow: hidden;
  border-radius: 0 0 40px 0;
  height: 330px;
}
@media screen and (max-width: 639px) {
  .list3 .child .box-img {
    height: 250px;
    width: 100%;
  }
}
.list3 .child .box-img img {
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.list3 .child .box-img img:hover {
  -webkit-transform: scale(1.12) rotate(-5deg);
          transform: scale(1.12) rotate(-5deg);
}
.list3 .child .box-img.ptop img {
  -o-object-position: top;
     object-position: top;
}
.list3.type1 li,
.list3.type1 .child {
  background: #fefefe;
  padding: 15px;
  border-radius: 8px;
  line-height: 1.6;
  font-size: 1.1em;
}
@media screen and (max-width: 639px) {
  .list3.type1 li,
  .list3.type1 .child {
    padding: 20px 10px 10px;
  }
}
.list3 li {
  position: relative;
}
@media screen and (max-width: 639px) {
  .list3 {
    width: 95%;
    grid-template-columns: 1fr;
    margin-left: auto;
    margin-right: auto;
    gap: 25px 0;
  }
}

.list4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.list4 > li {
  width: 24%;
  margin: 0 1.3333333333% 25px 0;
}
.list4 > li:nth-child(4n) {
  margin-right: 0;
}
@media screen and (max-width: 639px) {
  .list4 > li:nth-child(4n) {
    margin-right: auto;
  }
}
@media screen and (max-width: 639px) {
  .list4 > li {
    width: 95%;
    margin: 0 auto 20px;
  }
}

.type-flow {
  position: relative;
}
.type-flow li {
  position: relative;
  padding: 10px 15px;
  font-size: 1.5rem;
}
.type-flow li:before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 30px);
  background: rgba(208, 177, 244, 0.3);
  border-radius: 0 0 20px 20px;
  z-index: -1;
}

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

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

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

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

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

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

.institution-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}
.institution-box .child {
  width: 46%;
}
.institution-box .child video {
  width: 100%;
  height: 250px;
}

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

#a01,
#a02,
#a03,
#a04,
#a05,
#a06,
#a07,
#a08,
#a09,
#a10,
#a11,
#a12,
#contact,
.anchor {
  display: block;
  padding-top: 100px;
  margin-top: -100px;
}
@media screen and (max-width: 639px) {
  #a01,
  #a02,
  #a03,
  #a04,
  #a05,
  #a06,
  #a07,
  #a08,
  #a09,
  #a10,
  #a11,
  #a12,
  #contact,
  .anchor {
    padding-top: 0;
    margin-top: 0;
  }
}

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

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

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

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

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

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

@media screen and (max-width: 639px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 17px !important;
    height: 28px !important;
    background-size: 17px 28px !important;
  }
}

.point-num {
  position: relative;
  z-index: 2;
  line-height: 1;
  color: #5499BC;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 3.6rem;
  text-align: center;
  margin: 0 auto 10px;
}
@media screen and (max-width: 639px) {
  .point-num {
    font-size: 2.6rem;
    margin: -30px auto 10px;
  }
}
.point-num.type1 {
  margin-top: 0;
}
.point-num.type1:first-letter {
  color: #CF5EA2;
}
.point-num.type1 .ja {
  display: block;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", Lato, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1.6;
  font-weight: 600;
  color: #333;
  margin-top: 5px;
}

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

.sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.sns-list.type1 {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1025px) {
  .sns-list.type1 li:not(:last-child) {
    margin-right: 8px;
  }
  .sns-list.type1 li a {
    width: 36px;
    height: 36px;
    line-height: 36px;
  }
  .sns-list.type1 li a img {
    width: 18px;
  }
}
.sns-list.type2 {
  margin-left: 20px;
}
.sns-list.type2 li a:hover {
  background: #492d18;
}
@media screen and (max-width: 1025px) {
  .sns-list.type2 {
    display: none;
  }
}
.sns-list li:not(:last-child) {
  margin-right: 10px;
}
.sns-list li a {
  width: 48px;
  height: 48px;
  line-height: 48px;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  position: relative;
  border-radius: 50%;
}
.sns-list li a img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 24px;
  z-index: 3;
}
.sns-list li a:hover img {
  -webkit-transition: all 1s;
  transition: all 1s;
  -webkit-transform: rotate(360deg);
  transform: translate(-50%, -50%) rotate(360deg);
}
.sns-list li a.btn-other {
  background: #5499BC;
}
.sns-list li a.btn-other2 {
  background: #DED296;
}
.sns-list li a.btn-brown {
  background: rgb(215.9072164948, 170.2989690722, 136.0927835052);
}
.sns-list li a.btn-map {
  background: #DED296;
}
.sns-list li a.btn-lit {
  background: #918ff1;
}
.sns-list li a.btn-tiktok {
  background: #000;
}
.sns-list li a.btn-facebook {
  background: #1877f2;
}
.sns-list li a.btn-twitter {
  background: #1da1f2;
}
.sns-list li a.btn-line {
  background: #00b900;
}
.sns-list li a.btn-x {
  background: #000000;
}
.sns-list li a.btn-rakuten {
  background: #bf0000;
}
.sns-list li a.btn-youtube {
  background: #d62a29;
}
.sns-list li a.btn-yahoo {
  background: #df0f16;
}
.sns-list li a.btn-ameba {
  background: #2c883a;
}
.sns-list li a.btn-online {
  background: #5499BC;
}
.sns-list li a.btn-mercari {
  background: #e02020;
}
.sns-list li a.btn-instagram {
  overflow: hidden;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
}
.sns-list li a.btn-instagram:before {
  content: "";
  position: absolute;
  top: 20px;
  left: -12px;
  width: 60px;
  height: 60px;
  background: radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
}
.sns-list li a.btn-gray {
  background: #383636;
}

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

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

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

.title04 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-weight: 600;
  font-size: 1.7rem;
}
.title04.type-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.title04 .sub {
  color: #5499BC;
  padding-right: 10px;
  border-right: 1px solid #5499BC;
  margin-right: 10px;
}
.title04 .sub.type2 {
  border-right: none;
}
.title04 .main {
  font-size: 1.1em;
}
@media screen and (max-width: 639px) {
  .title04 {
    font-size: 1.3rem;
  }
}

.box-ttl {
  position: absolute;
  left: 0;
  top: 0;
  width: 110px;
  height: 50px;
  background: #fff;
  border-radius: 0 0 30px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.box-ttl .num {
  font-size: 5rem;
  font-family: "Barlow", sans-serif;
}
.box-ttl.type2 {
  width: 190px;
}
.box-ttl.type3 {
  height: 60px;
  border-radius: 28px 0 30px 0;
}
.box-ttl:before, .box-ttl:after {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  background: url(../img/corner.png);
  background-size: cover;
}
.box-ttl:before {
  right: -20px;
  top: 0;
}
.box-ttl:after {
  bottom: -20px;
  left: 0;
}

.box-ttl {
  font-weight: 600;
  color: #DED296;
  font-size: 1.5rem;
}
.box-ttl span {
  position: relative;
  display: block;
}
.box-ttl span:before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  position: absolute;
  left: -13px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #5499BC;
  border-radius: 7px;
}
@media screen and (max-width: 639px) {
  .box-ttl {
    font-size: 1.3rem;
  }
}

.box-ttl {
  position: absolute;
  left: 0;
  top: 0;
  width: 110px;
  height: 50px;
  background: #fff;
  border-radius: 0 0 30px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.box-ttl.type2 {
  width: 190px;
}
.box-ttl:before, .box-ttl:after {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  background: url(../img/corner.png);
  background-size: cover;
}
.box-ttl:before {
  right: -20px;
  top: 0;
}
.box-ttl:after {
  bottom: -20px;
  left: 0;
}

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

.box1 {
  position: relative;
  z-index: 4;
  margin-inline: auto;
  background: #fff;
  padding: 25px;
}
@media screen and (max-width: 639px) {
  .box1 {
    padding: 15px;
  }
}
.box1.type1 {
  margin-top: -40px;
  max-width: 700px;
}
@media screen and (max-width: 639px) {
  .box1.type1 {
    max-width: 90%;
  }
}

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

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

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

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

.content-head {
  padding: 120px 20px;
  background: url(../img/content-head01.jpg) no-repeat right center/cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 639px) {
  .content-head {
    padding: 50px 15px;
  }
}

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

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

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

.flow-list2 {
  padding-left: 120px;
  position: relative;
}
@media screen and (max-width: 639px) {
  .flow-list2 {
    padding-left: 90px;
  }
}
.flow-list2:before {
  content: "";
  width: 15px;
  height: 100%;
  background: #f6f5f7;
  margin-left: -8px;
  display: block;
  position: absolute;
  top: 0;
  left: 120px;
}
@media screen and (max-width: 639px) {
  .flow-list2:before {
    left: 90px;
  }
}
.flow-list2 > li {
  position: relative;
}
.flow-list2 > li dl {
  padding-left: 70px;
  position: relative;
  background: #fff;
  margin-left: 20px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
}
@media screen and (max-width: 639px) {
  .flow-list2 > li dl {
    padding-left: 25px;
    padding-top: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
  }
}
.flow-list2 > li dl:before, .flow-list2 > li dl:after {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
}
.flow-list2 > li dl:before {
  width: 7px;
  height: 7px;
  margin-top: -3px;
  background: rgb(209.8043478261, 193.3695652174, 111.1956521739);
  border-radius: 50%;
  left: -4px;
}
.flow-list2 > li dl:after {
  width: 50px;
  border-bottom: 1px dashed #999;
  position: absolute;
  left: 5px;
}
@media screen and (max-width: 639px) {
  .flow-list2 > li dl:after {
    width: 15px;
  }
}
.flow-list2 > li dl dt {
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (max-width: 639px) {
  .flow-list2 > li dl dt {
    font-size: 1.5rem;
  }
}
.flow-list2 > li dl dd {
  padding-top: 0.5vh;
}
.flow-list2 > li .icon {
  font-size: 12px;
  color: #fff;
  background-color: #f3b800;
  padding: 8px 20px;
  display: block;
  position: absolute;
  top: 0;
  left: -120px;
  z-index: 2;
}
@media screen and (max-width: 639px) {
  .flow-list2 > li .icon {
    padding: 5px 15px;
    left: -90px;
  }
}
.flow-list2 > li .icon:after {
  content: "";
  border-style: solid;
  border-width: 5px 0 5px 10px;
  border-color: transparent transparent transparent #f3b800;
  position: absolute;
  top: 50%;
  left: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.flow-list2 > li:not(:last-child) {
  margin-bottom: 4vh;
}

.kiritori {
  height: 1px;
  border-top: 1px solid rgba(47, 23, 118, 0.2);
  margin: 3em auto;
  max-width: 20%;
  display: block;
}

.column2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.column2 .child {
  width: 48%;
}
@media screen and (max-width: 639px) {
  .column2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .column2 .child {
    width: 100%;
  }
  .column2 .child.column2-img {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-bottom: 30px;
  }
}

.top-split {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
}
.top-split .child {
  width: 48%;
}
.top-split .child.split-1 {
  background: url(../img/split01.jpg) no-repeat center/cover;
}
.top-split .child.split-2 {
  background: url(../img/split02.jpg) no-repeat center/cover;
}
.top-split .child.split-3 {
  background: url(../img/split03.jpg) no-repeat center/cover;
}
@media screen and (max-width: 639px) {
  .top-split .child {
    width: 90%;
    margin: 0 auto 25px;
  }
}
@media screen and (max-width: ) {
  .top-split .child {
    width: 90%;
    margin: 0 auto 25px;
  }
}
.top-split .child a {
  display: block;
  position: relative;
  height: 350px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.top-split .child a:before {
  position: absolute;
  content: "";
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 2px solid #fff;
  background: rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
@media screen and (max-width: 639px) {
  .top-split .child a {
    height: auto;
    padding: 55px 0;
  }
  .top-split .child a:before {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border: 2px solid #fff;
  }
}
.top-split .child a .inner {
  position: relative;
  z-index: 3;
  text-align: center;
  font-weight: 600;
}
.top-split .child a .split-title {
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
.top-split .child a .split-title .em {
  display: block;
  font-size: 2.5rem;
}
.top-split .child a .split-title .eng {
  display: block;
  line-height: 1.6;
  font-size: 2rem;
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 700;
}
.top-split .child a .split-title .ja {
  font-size: 2rem;
}
@media screen and (max-width: 639px) {
  .top-split .child a .split-title .eng {
    font-size: 1.4rem;
  }
  .top-split .child a .split-title .em {
    font-size: 1.8rem;
  }
  .top-split .child a .split-title .ja {
    font-size: 1.6rem;
  }
}
.top-split .child a .split-txt {
  color: #fff;
  max-width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 639px) {
  .top-split .child a .split-txt {
    font-size: 1.2rem;
    padding: 0 20px;
    max-width: 90%;
  }
}
.top-split .child a .split-more {
  width: 200px;
  padding: 10px 0;
  text-align: center;
  background: #fff;
  color: #111;
  border-radius: 30px;
  margin: 20px auto 0;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.top-split .child a:hover:before {
  backdrop-filter: blur(5px);
}
.top-split .child a:hover .split-more {
  background: #5499BC;
  color: #fff;
}

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

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

.page {
  text-align: center;
}

.top-icon-list > li {
  position: relative;
  padding: 20px 15px;
  background-image: -webkit-gradient(linear, left top, right bottom, from(#fff), color-stop(#fff), to(rgba(74, 141, 208, 0.2)));
  background-image: linear-gradient(to right bottom, #fff, #fff, rgba(74, 141, 208, 0.2));
  border: 4px solid #4a8dd0;
  -webkit-box-shadow: 5px 5px #f2f2f2;
          box-shadow: 5px 5px #f2f2f2;
  font-size: 1.7rem;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 1025px) {
  .top-icon-list > li {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 20px;
  }
  .top-icon-list > li:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 639px) {
  .top-icon-list {
    margin-bottom: -20px;
  }
  .top-icon-list > li {
    width: 95%;
    margin: 0 auto 20px;
    font-size: 1.3rem;
  }
  .top-icon-list > li:nth-child(2n) {
    margin-right: auto;
  }
}

.sp-accordion-btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sp-accordion-btn .sp-accordion-icon {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
}
.sp-accordion-btn .sp-accordion-icon::before, .sp-accordion-btn .sp-accordion-icon::after {
  content: "";
  position: absolute;
  background: #5499BC;
  border-radius: 2px;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
.sp-accordion-btn .sp-accordion-icon::before {
  width: 16px;
  height: 2px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.sp-accordion-btn .sp-accordion-icon::after {
  width: 2px;
  height: 16px;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.sp-open > .sp-accordion-btn .sp-accordion-icon::before {
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.sp-open > .sp-accordion-btn .sp-accordion-icon::after {
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}

#sp-nav .globalNav > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#sp-nav .globalNav > li > a {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#sp-nav .globalNav > li > .dropdown {
  width: 100%;
}

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

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

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

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

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

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

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

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

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

.business-list-title {
  font-size: 2.2rem;
  position: absolute;
  right: 0;
  bottom: -1px;
  background: #5499BC;
  color: #fff;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  padding: 10px 30px 10px 20px;
  border-radius: 15px 0 10px 0;
}
.business-list-title .eng {
  display: block;
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
}
.business-list-title:after {
  position: absolute;
  content: "";
  right: 5px;
  top: 50%;
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: 900;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #5499BC;
}
.business-list-title:before {
  position: absolute;
  content: "";
  right: 0;
  top: -30px;
  width: 30px;
  height: 30px;
  background: url(../img/hem.svg) no-repeat right bottom/contain;
}
@media screen and (max-width: 639px) {
  .business-list-title {
    font-size: 1.4rem;
    text-shadow: none;
    padding-right: 80px;
  }
}

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

.title-big {
  padding-top: 75px;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 1025px) {
  .title-big {
    padding-top: 65px;
  }
}
@media screen and (max-width: 639px) {
  .title-big {
    padding-top: 45px;
  }
}
.title-big:before {
  font-size: 7rem;
  white-space: nowrap;
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 700;
  position: absolute;
  content: attr(data-title);
  top: 0;
  left: 50%;
  letter-spacing: 0.1rem;
  line-height: 1;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: inline-block;
  background: -webkit-gradient(linear, left top, right top, from(#5499BC), color-stop(52%, #DED296), to(#0D4E5F));
  background: linear-gradient(90deg, #5499BC 0%, #DED296 52%, #0D4E5F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
@media screen and (max-width: 1025px) {
  .title-big:before {
    font-size: 5rem;
  }
}
@media screen and (max-width: 639px) {
  .title-big:before {
    font-size: 4rem;
  }
}
.title-big.type-left {
  text-align: left;
}
.title-big.type-left:before {
  left: 0;
  -webkit-transform: none;
          transform: none;
}
.title-big.type1 {
  color: #fff;
  padding-left: 30px;
}
.title-big.type1 .ja {
  color: #fff;
}
.title-big.type1 .ja:before {
  display: none;
}
.title-big.type1:before {
  padding-left: 30px;
}
@media screen and (max-width: 1101px) {
  .title-big.type1:before {
    padding-left: 30px;
  }
}
@media screen and (max-width: 1101px) {
  .title-big.type1 {
    padding-left: 30px;
  }
}
.title-big.type2:before {
  color: transparent;
  background: #5499BC;
  -webkit-background-clip: text;
}
.title-big.type3:before {
  color: transparent;
  background: #fefefe;
  -webkit-background-clip: text;
}
.title-big.type3 .ja {
  color: #fefefe;
}
.title-big.type3 .ja:before {
  display: none;
}
.title-big.type4 {
  padding-top: 80px;
  color: #ccc;
}
.title-big.type4:before {
  top: -14px;
}
.title-big.type4 .ja {
  color: #999;
}
@media screen and (max-width: 639px) {
  .title-big.type4 {
    padding-top: 40px;
    margin-bottom: 30px;
  }
  .title-big.type4:before {
    top: -8px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.title-big.type5 {
  padding-top: 50px;
}
@media screen and (max-width: 639px) {
  .title-big.type5 {
    padding-top: 35px;
  }
}
.title-big.type5:before {
  font-size: 4.5rem;
  color: transparent;
  background: #5499BC;
  -webkit-background-clip: text;
}
@media screen and (max-width: 639px) {
  .title-big.type5:before {
    font-size: 3rem;
  }
}
.title-big .ja {
  display: block;
  font-weight: normal;
  font-size: 2rem;
  position: relative;
  z-index: 2;
  color: #5499BC;
  margin-left: 10px;
}
.title-big .ja:before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  position: absolute;
  left: -13px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #DED296;
  border-radius: 7px;
}
.title-big .ja.big {
  font-size: 2.4rem;
}
.title-big .small {
  font-size: 0.7em;
}
@media screen and (max-width: 639px) {
  .title-big .ja {
    font-size: 1.4rem;
  }
  .title-big .ja.big {
    font-size: 1.5rem;
  }
}

.title-big2 {
  padding-top: 50px;
  position: relative;
  width: 90%;
  margin: 0 auto;
  margin-bottom: -65px;
}
@media screen and (max-width: 1025px) {
  .title-big2 {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 639px) {
  .title-big2 {
    padding-top: 45px;
  }
}
.title-big2:before {
  font-size: 5rem;
  color: #5499BC;
  white-space: nowrap;
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 700;
  content: attr(data-title);
  letter-spacing: 0.1rem;
  line-height: 1;
  display: inline-block;
}
@media screen and (max-width: 1025px) {
  .title-big2:before {
    font-size: 5rem;
  }
}
@media screen and (max-width: 639px) {
  .title-big2:before {
    font-size: 3.5rem;
  }
}
.title-big2 .ja {
  display: block;
  font-weight: normal;
  font-size: 2rem;
  position: relative;
  z-index: 2;
  color: #5499BC;
  margin-left: 10px;
}

.title-center {
  text-align: center;
}
.title-center .title-big {
  display: inline-block;
}

.top-greet-box {
  padding: 60px 0 0;
  margin-inline: auto;
  color: #fff;
  font-weight: 600;
  text-shadow: 0 0 6px rgba(84, 153, 188, 0.8);
  font-size: 1.1em;
}
.top-greet-box .txt {
  width: 54%;
}
@media screen and (max-width: 1025px) {
  .top-greet-box {
    padding-top: 20px;
  }
}
@media screen and (max-width: 639px) {
  .top-greet-box {
    max-width: 100%;
    font-size: 1em;
  }
  .top-greet-box .txt {
    width: 100%;
  }
}

.section-about-style {
  overflow: hidden;
}
.section-about-style .about-style-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 7%;
}
@media screen and (max-width: 1025px) {
  .section-about-style .about-style-wrap {
    gap: 40px;
    padding: 60px 0 20px;
  }
}
@media screen and (max-width: 639px) {
  .section-about-style .about-style-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 35px;
    padding: 40px 0 0;
  }
}
.section-about-style .about-style-content {
  width: 30%;
  color: #fff;
}
@media screen and (max-width: 1025px) {
  .section-about-style .about-style-content {
    width: 38%;
  }
}
@media screen and (max-width: 639px) {
  .section-about-style .about-style-content {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.section-about-style .mtitle0 {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.8;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#5499BC), color-stop(50%, #DED296), to(#0D4E5F));
  background: linear-gradient(180deg, #5499BC 0%, #DED296 50%, #0D4E5F 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
@media screen and (max-width: 1025px) {
  .section-about-style .mtitle0 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 639px) {
  .section-about-style .mtitle0 {
    -webkit-writing-mode: horizontal-tb;
            writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    text-orientation: mixed;
    font-size: 1.8rem;
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.section-about-style .about-style-text {
  color: #333;
  font-weight: 700;
  line-height: 2.4;
  letter-spacing: 0.08em;
  text-shadow: 0 0 6px rgba(84, 153, 188, 0.18);
}
.section-about-style .about-style-text .sentence {
  width: 400px;
}
.section-about-style .about-style-text p {
  margin-bottom: 28px;
}
@media screen and (max-width: 1025px) {
  .section-about-style .about-style-text {
    font-size: 0.95em;
    line-height: 2.2;
  }
}
@media screen and (max-width: 639px) {
  .section-about-style .about-style-text {
    line-height: 2;
    font-size: 0.95em;
  }
  .section-about-style .about-style-text p {
    margin-bottom: 20px;
  }
}
.section-about-style .about-style-btn {
  margin-top: 38px;
}
@media screen and (max-width: 639px) {
  .section-about-style .about-style-btn {
    margin-top: 24px;
  }
}
.section-about-style .about-style-link {
  width: 290px;
  min-height: 64px;
  padding: 0 26px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  background: #5499BC;
  -webkit-box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
          box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
.section-about-style .about-style-link .button-text {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.section-about-style .about-style-link .arrow {
  font-size: 1.8rem;
  line-height: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.section-about-style .about-style-link:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  opacity: 0.92;
}
@media screen and (max-width: 639px) {
  .section-about-style .about-style-link {
    width: 100%;
    max-width: 290px;
    min-height: 56px;
    padding: 0 22px;
  }
  .section-about-style .about-style-link .button-text {
    font-size: 1.4rem;
  }
}
.section-about-style .about-style-visual {
  width: 49%;
  position: relative;
  min-height: 620px;
}
@media screen and (max-width: 1025px) {
  .section-about-style .about-style-visual {
    width: 46%;
    min-height: 500px;
  }
}
@media screen and (max-width: 639px) {
  .section-about-style .about-style-visual {
    width: 100%;
    min-height: 360px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.section-about-style .about-style-image {
  position: absolute;
  overflow: hidden;
  border-radius: 50%;
  background: #fff;
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.section-about-style .about-style-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.section-about-style .about-style-image.image-lg {
  width: 420px;
  height: 420px;
  top: 0;
  right: 0;
}
@media screen and (max-width: 1025px) {
  .section-about-style .about-style-image.image-lg {
    width: 320px;
    height: 320px;
  }
}
@media screen and (max-width: 639px) {
  .section-about-style .about-style-image.image-lg {
    width: 260px;
    height: 260px;
    right: 0;
    left: auto;
  }
}
.section-about-style .about-style-image.image-sm {
  width: 200px;
  height: 200px;
  left: 20px;
  bottom: 70px;
}
@media screen and (max-width: 1025px) {
  .section-about-style .about-style-image.image-sm {
    width: 150px;
    height: 150px;
    left: 0;
    bottom: 60px;
  }
}
@media screen and (max-width: 639px) {
  .section-about-style .about-style-image.image-sm {
    width: 130px;
    height: 130px;
    left: 10px;
    bottom: 10px;
  }
}
.section-about-style .about-style-image.image-single {
  position: static;
  width: 100%;
  border-radius: 0;
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  overflow: visible;
}
.section-about-style .about-style-image.image-single img {
  width: 100%;
  height: auto;
  -o-object-fit: unset;
     object-fit: unset;
  display: block;
}
.section-about-style .about-style-visual:has(.image-single) {
  min-height: unset;
}

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

.ceo-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 85%;
  margin: 0 auto;
}
@media screen and (max-width: 639px) {
  .ceo-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 95%;
  }
}
.ceo-wrap .ceo-img {
  width: 40%;
  position: relative;
}
.ceo-wrap .ceo-img figure {
  position: relative;
  display: block;
}
.ceo-wrap .ceo-img figure img {
  -webkit-box-shadow: rgba(73, 45, 24, 0.2) 4px 38px 50px 0px;
          box-shadow: rgba(73, 45, 24, 0.2) 4px 38px 50px 0px;
  border-radius: 0 0 40px 0;
}
.ceo-wrap .ceo-img figure:before {
  position: absolute;
  content: "";
  right: -30px;
  bottom: -30px;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(222, 210, 150, 0.2);
  opacity: 0.5;
  border-radius: 0 0 40px 0;
}
@media screen and (max-width: 639px) {
  .ceo-wrap .ceo-img {
    width: 100%;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    padding-right: 30px;
  }
  .ceo-wrap .ceo-img figure:before {
    right: -25px;
    bottom: -25px;
  }
}
.ceo-wrap .ceo-txt {
  width: 50%;
}
.ceo-wrap .ceo-txt .inner {
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (max-width: 639px) {
  .ceo-wrap .ceo-txt {
    width: 100%;
  }
  .ceo-wrap .ceo-txt .inner {
    padding: 25px 0 0;
    margin-top: 25px;
  }
}

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

.business-head-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 5%;
}
@media screen and (max-width: 1025px) {
  .business-head-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 639px) {
  .business-head-list {
    gap: 40px 3%;
    display: block;
  }
}
@media screen and (max-width: 639px) {
  .business-head-list li {
    margin-bottom: 20px;
  }
}
.business-head-list a {
  display: block;
  position: relative;
}
.business-head-list a .eng {
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 700;
  position: absolute;
  left: 5px;
  top: 0;
  z-index: 5;
  color: #fff;
  font-size: 3rem;
  line-height: 1;
}
@media screen and (max-width: 639px) {
  .business-head-list a .eng {
    font-size: 1.8rem;
  }
}
.business-head-list a figure {
  height: 235px;
  overflow: hidden;
  border-radius: 0 0 10px 0;
  position: relative;
}
.business-head-list a figure:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.3;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.business-head-list a figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1101px) {
  .business-head-list a figure {
    height: 200px;
  }
}
.business-head-list a figcaption {
  position: relative;
  margin-top: -30px;
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.business-head-list a figcaption .big {
  font-weight: 600;
  background: #2b2b2b;
  color: #fff;
  font-size: 1.15em;
  display: inline-block;
  padding: 8px 56px 8px 16px;
  line-height: 1.2;
  border-radius: 0 10px 10px 0;
  -webkit-transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
}
@media screen and (max-width: 639px) {
  .business-head-list a figcaption {
    margin-top: -18px;
  }
  .business-head-list a figcaption .big {
    font-size: 1.3rem;
    padding: 8px 8px 8px 10px;
    white-space: nowrap;
  }
  .business-head-list a figcaption .big:after {
    width: 15px;
    height: 15px;
    line-height: 15px;
    font-size: 11px;
    margin-left: 5px;
  }
}
.business-head-list a:hover figure img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.business-head-list a:hover figure:before {
  opacity: 0;
}
.business-head-list a:hover figcaption .big {
  background: #DED296;
}

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

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

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

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

@-webkit-keyframes text {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px) translateY(-10px) scale(1.3);
            transform: translateX(-20px) translateY(-10px) scale(1.3);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes text {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px) translateY(-10px) scale(1.3);
            transform: translateX(-20px) translateY(-10px) scale(1.3);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
/* greet_block
----------------------------------*/
.greet_block {
  position: relative;
  margin: 60px 0 140px;
}
@media screen and (max-width: 639px) {
  .greet_block {
    margin-bottom: 40px;
  }
}
.greet_block:last-of-type {
  margin-bottom: 2%;
}
.greet_block.type_b .greet_img {
  right: 0;
}
.greet_block.type_b .greet_txt {
  margin-right: 0;
  margin-left: 0;
}

.greet_img {
  overflow: hidden;
  position: absolute;
  top: -10%;
  width: 55%;
  height: 350px;
  border-radius: 0 0 0 40px;
}
.greet_img img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
}
@media screen and (max-width: 1025px) {
  .greet_img {
    width: 90%;
    margin: 0 auto;
    position: relative;
  }
}
@media screen and (max-width: 639px) {
  .greet_img {
    width: 100%;
    height: 250px;
  }
}

.greet_txt {
  position: relative;
  z-index: 3;
  width: 55%;
  max-width: 770px;
  padding: 45px;
  margin-left: auto;
  background-color: #fff;
  -webkit-box-shadow: 0 6px 15px rgba(36, 37, 38, 0.04);
          box-shadow: 0 6px 15px rgba(36, 37, 38, 0.04);
}
@media screen and (max-width: 1025px) {
  .greet_txt {
    width: 80%;
    margin: -40px auto 0;
  }
}
@media screen and (max-width: 639px) {
  .greet_txt {
    width: 95%;
    padding: 30px 20px;
  }
}

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

.top-recruit {
  position: relative;
}
.top-recruit:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: calc(100% - 80px);
  background: #f5f3eb;
  z-index: -2;
}

.top-feature-box {
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.top-feature-box .child {
  width: 33%;
  position: relative;
}
.top-feature-box .child .box-ttl span:before {
  display: none;
}
@media screen and (max-width: 1025px) {
  .top-feature-box .child {
    width: 100%;
  }
  .top-feature-box .child:not(:last-child) {
    margin-bottom: 40px;
  }
}
.top-feature-box .child .inner {
  position: relative;
  display: block;
  height: 100%;
  padding: 0 40px 100px;
  color: #333;
  font-weight: 600;
}
.top-feature-box .child .inner:hover .morebtn2 .circle {
  width: 100%;
  background: #fff;
}
.top-feature-box .child .inner:hover .morebtn2 .circle .icon.arrow {
  background: #fff;
  -webkit-transform: translate(1rem, 0);
          transform: translate(1rem, 0);
}
.top-feature-box .child .inner:hover .morebtn2 .circle .icon.arrow:before {
  border-color: #2F1776;
}
.top-feature-box .child .inner:hover .morebtn2 .button-text {
  color: #2F1776;
}
@media screen and (max-width: 639px) {
  .top-feature-box .child .inner {
    padding: 0 25px 90px;
  }
}
.top-feature-box figure {
  overflow: hidden;
  max-width: 96%;
  border-radius: 30px 0 30px 0;
}
@media screen and (max-width: 1025px) {
  .top-feature-box figure {
    height: 300px;
  }
}
@media screen and (max-width: 639px) {
  .top-feature-box figure {
    height: 250px;
  }
}
.top-feature-box figure img {
  border-radius: 0 0 40px 0;
}

.top-feature-title {
  position: relative;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 1.8rem;
  text-align: left;
  color: #1d1d1d;
}
.top-feature-title .front-txt {
  color: #DED296;
  font-weight: 600;
  font-size: 1.8rem;
  display: block;
}
.top-feature-title .front-txt .num {
  font-size: 3rem;
  margin-left: 5px;
}
@media screen and (max-width: 1025px) {
  .top-feature-title {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 639px) {
  .top-feature-title {
    font-size: 1.6rem;
  }
}

.top-feature-txt {
  font-weight: normal;
  font-size: 1.5rem;
  padding: 0 10px;
}
@media screen and (max-width: 639px) {
  .top-feature-txt {
    font-size: 1.4rem;
  }
}

.btn-feature {
  z-index: 4;
  text-align: center;
  margin: 0 auto;
}

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

.recruit-table {
  width: 100%;
  border-collapse: collapse;
}
.recruit-table th, .recruit-table td {
  padding: 18px 24px;
  border-bottom: 1px solid #dddddd;
  vertical-align: top;
  text-align: left;
  line-height: 1.8;
}
.recruit-table th {
  width: 180px;
  font-weight: 700;
  white-space: nowrap;
  color: #5499BC;
}
.recruit-table td p + p,
.recruit-table td p + ul,
.recruit-table td ul + p {
  margin-top: 10px;
}
@media screen and (max-width: 639px) {
  .recruit-table th, .recruit-table td {
    display: block;
    width: 100%;
    padding: 12px 16px;
  }
  .recruit-table th {
    border-bottom: none;
    padding-bottom: 4px;
  }
}

/* --- トップ 新着情報 --- */
.section-news {
  background: #fff;
}
.section-news .news-heading {
  text-align: center;
  margin-bottom: 24px;
}
.section-news .news-heading-eng {
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  color: #5499BC;
  font-weight: 600;
  margin-bottom: 4px;
}
.section-news .news-heading-ja {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #333;
}
.section-news .news-box {
  margin-top: 30px;
  background: #fff;
  border: 1px solid #dddddd;
  border-radius: 8px;
  padding: 10px 30px;
  width: 100%;
}
@media screen and (max-width: 639px) {
  .section-news .news-box {
    padding: 10px 16px;
  }
}
.section-news .news-list {
  list-style: none;
  width: 100%;
}
.section-news .news-list-item {
  width: 100%;
  border-bottom: 1px solid #dddddd;
}
.section-news .news-list-item:last-child {
  border-bottom: none;
}
.section-news .news-list-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 20px;
  padding: 16px 0;
  width: 100%;
  color: #333;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.section-news .news-list-item a:hover {
  color: #5499BC;
}
@media screen and (max-width: 639px) {
  .section-news .news-list-item a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4px;
    padding: 12px 0;
  }
}
.section-news .news-date {
  font-family: "Barlow", sans-serif;
  font-size: 1.4rem;
  color: #999;
  white-space: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.section-news .news-title {
  font-size: 1.5rem;
  line-height: 1.6;
}
.section-news .news-more {
  text-align: center;
  margin-top: 24px;
}
.section-news .news-more-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 28px;
  background: #5b9679;
  color: #fff;
  border-radius: 40px;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.section-news .news-more-link::after {
  content: "→";
  margin-left: 8px;
}
.section-news .news-more-link:hover {
  opacity: 0.8;
}

/* --- エントリー共通 --- */
.entry-bg {
  background: #fff;
  padding: 60px 0 80px;
}
@media screen and (max-width: 639px) {
  .entry-bg {
    padding: 40px 0 60px;
  }
}

.entry-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 1025px) {
  .entry-layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}

/* --- 記事カードグリッド --- */
.entry-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.entry-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media screen and (max-width: 1025px) {
  .entry-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 639px) {
  .entry-card-grid {
    grid-template-columns: 1fr;
  }
}

.entry-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: #333;
  display: block;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.entry-card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.entry-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.entry-card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.entry-card-body {
  padding: 14px 16px 16px;
}

.entry-card-date {
  font-size: 1.3rem;
  color: #5499BC;
  margin-bottom: 6px;
  font-family: "Barlow", sans-serif;
}
.entry-card-date i {
  margin-right: 4px;
}

.entry-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.6;
  color: #333;
}

/* --- サイドバー --- */
.entry-sidebar {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 220px;
          flex: 0 0 220px;
  width: 220px;
}
@media screen and (max-width: 1025px) {
  .entry-sidebar {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}

.entry-sidebar-block {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.entry-sidebar-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid #5499BC;
}
.entry-sidebar-heading i {
  color: #5499BC;
  margin-right: 6px;
}

.entry-archive-list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 1025px) {
  .entry-archive-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.entry-archive-btn {
  display: block;
  background: #e8f3ee;
  color: #5b9679;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.entry-archive-btn:hover {
  background: rgb(205.1885714286, 229.0114285714, 218.1828571429);
}

/* --- 記事詳細 --- */
.entry-detail {
  background: #fff;
  border-radius: 8px;
  border-top: 4px solid #5b9679;
  padding: 36px 40px 40px;
  -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  margin-bottom: 30px;
}
@media screen and (max-width: 639px) {
  .entry-detail {
    padding: 24px 20px 28px;
  }
}

.entry-detail-title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #333;
  margin-bottom: 16px;
}
@media screen and (max-width: 639px) {
  .entry-detail-title {
    font-size: 1.8rem;
  }
}

.entry-detail-hr {
  border: none;
  border-bottom: 1px solid #dddddd;
  margin-bottom: 16px;
}

.entry-detail-date {
  font-size: 1.4rem;
  color: #5b9679;
  margin-bottom: 24px;
  font-family: "Barlow", sans-serif;
}
.entry-detail-date i {
  margin-right: 4px;
}

.entry-detail-body {
  font-size: 1.6rem;
  line-height: 2;
  color: #444;
}
.entry-detail-body p + p {
  margin-top: 1em;
}

/* --- 記事ナビ・戻るボタン --- */
.entry-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  margin-bottom: 30px;
}
.entry-nav a {
  font-size: 1.4rem;
  color: #5499BC;
  text-decoration: none;
}
.entry-nav a:hover {
  text-decoration: underline;
}

.entry-nav-next {
  text-align: right;
}

.entry-back-wrap {
  text-align: center;
}

.entry-back-btn {
  display: inline-block;
  background: #5499BC;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 14px 40px;
  border-radius: 999px;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.entry-back-btn:hover {
  opacity: 0.8;
}

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

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

.fukidashi-sub {
  max-width: 800px;
  text-align: center;
  padding: 35px 20px 15px;
  background: #fff;
  font-weight: 600;
  font-size: 1.1em;
}

.top-facilities-box {
  position: relative;
  z-index: 4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1101px) {
  .top-facilities-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top-facilities-box .left {
  width: 35%;
  -ms-flex-item-align: end;
      align-self: flex-end;
}
@media screen and (max-width: 1101px) {
  .top-facilities-box .left {
    margin-bottom: 40px;
    -ms-flex-item-align: center;
        align-self: center;
  }
}
.top-facilities-box .right {
  max-width: 55%;
  min-width: 550px;
  padding-right: 50px;
}
@media screen and (max-width: 1101px) {
  .top-facilities-box .right {
    max-width: 80%;
    margin-left: auto;
  }
}
@media screen and (max-width: 1025px) {
  .top-facilities-box .right {
    padding-right: 0;
  }
}
@media screen and (max-width: 639px) {
  .top-facilities-box .right {
    max-width: 100%;
    width: 95%;
    min-width: initial;
  }
}

.policy-lead {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-size: 1.8em;
  letter-spacing: 0.15em;
  position: relative;
  padding-top: 20px;
  padding-left: 20px;
  margin-bottom: 60px;
  line-height: 1.4;
}
.policy-lead:before {
  position: absolute;
  content: "";
  left: -10px;
  top: 0;
  width: 80px;
  height: 80px;
  background: #D0B1F4;
  opacity: 0.3;
  border-radius: 50%;
}
.policy-lead span {
  position: relative;
  padding-bottom: 8px;
  z-index: 3;
  color: #2F1776;
  display: block;
}
.policy-lead span:last-of-type {
  margin-left: 40px;
}
@media screen and (max-width: 639px) {
  .policy-lead {
    font-size: 1.3em;
  }
  .policy-lead span:last-of-type {
    margin-left: 20px;
  }
}

.daily {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
@media screen and (max-width: 1025px) {
  .daily {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 639px) {
  .daily {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px 0;
  }
}
.daily {
  gap: 40px 15px;
}
.daily .daily-inner {
  padding: 15px;
  position: relative;
  background: #fff;
  border-radius: 0 0 40px 0;
}
.daily .daily-inner:nth-child(5n):before {
  display: none;
}
@media screen and (max-width: 639px) {
  .daily .daily-inner:nth-child(5n):before {
    display: block;
  }
  .daily .daily-inner:nth-child(2n):before {
    display: none;
  }
}
.daily .daily-inner:before {
  position: absolute;
  content: "";
  left: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: calc(100% + 10px);
  height: 20px;
  background: #2F1776;
  z-index: -1;
}
.daily dt {
  position: relative;
  z-index: 2;
  margin-top: -30px;
  margin-bottom: 14px;
}
.daily dt span {
  display: inline-block;
  background: #DED296;
  color: #fff;
  font-weight: 700;
  padding: 3px 15px;
  border-radius: 30px;
  font-size: 1.4rem;
}
@media screen and (max-width: 639px) {
  .daily dt span {
    font-size: 1.2rem;
  }
}
.daily dd {
  background-image: linear-gradient(rgba(222, 210, 150, 0.3) 1px, transparent 1px);
  background-size: 100% 2.5em;
  line-height: 2.5;
  font-size: 1.4rem;
  padding: 0 8px 1px;
  font-weight: 600;
}
@media screen and (max-width: 639px) {
  .daily dd {
    font-size: 1.2rem;
  }
}

/* contents-box etc
----------------------------------*/
.infomation-box {
  margin-bottom: 20px;
}

.infomation-txt {
  margin-bottom: 40px;
}

.txt-comment {
  position: relative;
  margin: 30px 0 0 120px;
  padding: 0.5rem 0 0 2rem;
}
@media screen and (max-width: 639px) {
  .txt-comment {
    margin: 30px auto 0;
  }
}
.txt-comment:before {
  content: "※";
  position: absolute;
  top: 0.5rem;
  left: 0;
  margin-right: 5px;
  color: #ac0a08;
  font-weight: 600;
}

.txt-comment2 {
  margin-bottom: 30px;
}
.txt-comment2 span {
  display: block;
  position: relative;
  padding: 0 0 0 2rem;
}
.txt-comment2 span:before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
  margin-right: 5px;
  color: #ac0a08;
  font-weight: 600;
}

.use-box {
  margin-bottom: 40px;
  position: relative;
  padding-right: 250px;
}
@media screen and (max-width: 639px) {
  .use-box {
    padding-bottom: 180px;
    padding-right: 8px;
  }
}
.use-box:after {
  content: "";
  position: absolute;
  right: 30px;
  top: -4%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 200px;
  height: 200px;
}
@media screen and (max-width: 639px) {
  .use-box:after {
    width: 150px;
    height: 150px;
    right: auto;
    top: auto;
    left: 50%;
    bottom: 20px;
    -webkit-transform: none;
            transform: none;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

/* slide_list
----------------------------------*/
.slide_left,
.slide_right {
  position: relative;
  padding-bottom: 1%;
  display: none;
  margin: 80px 0;
}
@media screen and (max-width: 639px) {
  .slide_left,
  .slide_right {
    margin: 40px 0;
  }
}
.slide_left li,
.slide_right li {
  margin-right: 1%;
  width: 200px;
}
.slide_left li img,
.slide_right li img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
.slide_left li p,
.slide_right li p {
  display: none;
}
@media screen and (max-width: 1025px) {
  .slide_left li,
  .slide_right li {
    width: 150px;
  }
  .slide_left li img,
  .slide_right li img {
    height: 150px;
  }
}

/* ==========================================================
   デザイン調整 — our-co.jp寄せ
   余白強化 / フォント / 行間 / カードUI / ボタン / AOS
   ========================================================== */
/* --- ベース: フォント・行間 --- */
body {
  font-size: 1.7rem;
  line-height: 2;
  letter-spacing: 0.06em;
  font-weight: 400;
}
@media screen and (max-width: 639px) {
  body {
    font-size: 1.5rem;
    line-height: 1.9;
  }
}

/* --- セクション余白強化 --- */
.single {
  padding: 120px 0;
}
@media screen and (max-width: 1101px) {
  .single {
    padding: 100px 15px;
  }
}
@media screen and (max-width: 639px) {
  .single {
    padding: 70px 15px;
  }
}
.single.type1 {
  padding: 0 0 120px;
}
.single.type2 {
  padding: 120px 0 0;
}

.single02 {
  padding: 120px 0;
}
@media screen and (max-width: 1101px) {
  .single02 {
    padding: 100px 15px;
  }
}
@media screen and (max-width: 639px) {
  .single02 {
    padding: 70px 15px;
  }
}

.single03 {
  padding: 120px 0;
}
@media screen and (max-width: 1101px) {
  .single03 {
    padding: 100px 15px;
  }
}
.single03.margin80 {
  margin: 120px 0;
}
@media screen and (max-width: 639px) {
  .single03.margin80 {
    margin: 60px 0 80px;
  }
}

/* --- タイトル系 --- */
.title-big {
  padding-top: 85px;
  margin-bottom: 50px;
}
@media screen and (max-width: 639px) {
  .title-big {
    padding-top: 55px;
    margin-bottom: 30px;
  }
}
.title-big:before {
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 7.5rem;
  opacity: 0.12;
  color: #5499BC;
  -webkit-text-fill-color: initial;
  -webkit-text-stroke: 0;
  -webkit-background-clip: initial;
  background: none;
}
@media screen and (max-width: 639px) {
  .title-big:before {
    font-size: 4.2rem;
  }
}
.title-big .ja {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 639px) {
  .title-big .ja {
    font-size: 2.2rem;
  }
}
.title-big {
  /* type上書き：英字は透過のみ */
}
.title-big.type2:before {
  color: #5499BC;
  opacity: 0.1;
  -webkit-text-fill-color: initial;
  background: none;
}
.title-big.type5:before {
  color: #5499BC;
  opacity: 0.1;
  -webkit-text-fill-color: initial;
  background: none;
}

.title-big2:before {
  font-family: "Montserrat Alternates", sans-serif;
}

.mtitle:before {
  font-family: "Montserrat Alternates", sans-serif;
}

.mtitle_middle {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(84, 153, 188, 0.15);
}
@media screen and (max-width: 639px) {
  .mtitle_middle {
    font-size: 1.7rem;
  }
}

/* --- 英字装飾 (グローバル) --- */
.eng,
span.eng {
  font-family: "Montserrat Alternates", sans-serif;
  letter-spacing: 0.05em;
}

/* --- sentence 行間 --- */
.sentence {
  line-height: 2.1;
}
.sentence p + p {
  margin-top: 25px;
}

/* --- b-m 余白ユーティリティ --- */
.b-m40 {
  margin-bottom: 50px !important;
}

.b-m60 {
  margin-bottom: 70px !important;
}

/* --- use-box (カード) --- */
.use-box {
  border-radius: 16px;
  padding: 45px 40px;
}
@media screen and (max-width: 639px) {
  .use-box {
    padding: 25px 18px;
    border-radius: 12px;
  }
}

/* --- top-feature-box (特徴カード) --- */
.top-feature-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.top-feature-box .btn-feature {
  grid-column: 1/-1;
}
.top-feature-box .child {
  width: auto;
  padding: 30px 20px;
  background: #fff;
  border-radius: 16px;
  -webkit-box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
          box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.top-feature-box .child:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
          box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 1025px) {
  .top-feature-box .child {
    padding: 25px 15px;
  }
}
@media screen and (max-width: 1025px) {
  .top-feature-box {
    grid-template-columns: 1fr;
  }
}
.top-feature-box .box-ttl .num {
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #5499BC;
  opacity: 0.7;
}
.top-feature-box figure {
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
}
.top-feature-box figure img {
  border-radius: 12px;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.top-feature-box figure:hover img {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}

.top-feature-txt {
  font-size: 1.5rem;
  line-height: 1.95;
  padding: 0;
}
@media screen and (max-width: 639px) {
  .top-feature-txt {
    font-size: 1.4rem;
  }
}

.btn-feature {
  width: 100%;
  text-align: center;
  margin-top: 50px;
}
@media screen and (max-width: 639px) {
  .btn-feature {
    margin-top: 30px;
  }
}

/* --- ボタン洗練 --- */
.morebtn2 {
  border-radius: 60px;
  padding: 8px;
  width: 280px;
  font-size: 1.5rem;
  -webkit-box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  -webkit-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media screen and (max-width: 639px) {
  .morebtn2 {
    width: 260px;
    font-size: 1.3rem;
  }
}
.morebtn2 .circle {
  width: 48px;
  height: 48px;
  border-radius: 24px;
  background: #5499BC;
}
.morebtn2 .button-text {
  padding: 18px 0;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #333;
}
.morebtn2:hover {
  -webkit-box-shadow: 0 6px 24px rgba(84, 153, 188, 0.15);
          box-shadow: 0 6px 24px rgba(84, 153, 188, 0.15);
}
.morebtn2:hover .circle {
  background: #5499BC;
}
.morebtn2:hover .button-text {
  color: #fff;
}
.morebtn2.type1 {
  background: #5499BC;
  width: 300px;
}
@media screen and (max-width: 639px) {
  .morebtn2.type1 {
    width: 280px;
  }
}
.morebtn2.type1 .circle {
  background: #fff;
}
.morebtn2.type1 .icon.arrow:before {
  border-color: #5499BC;
}
.morebtn2.type1 .button-text {
  color: #fff;
  font-size: 1.5rem;
}
@media screen and (max-width: 639px) {
  .morebtn2.type1 .button-text {
    font-size: 1.3rem;
  }
}
.morebtn2.type1:hover {
  background: rgb(65.0857142857, 132.1142857143, 166.1142857143);
  -webkit-box-shadow: 0 6px 24px rgba(84, 153, 188, 0.25);
          box-shadow: 0 6px 24px rgba(84, 153, 188, 0.25);
}
.morebtn2.type1:hover .button-text {
  color: #fff;
}

/* --- flow-list2 (ステップ) --- */
.flow-list2 > li .icon {
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  background-color: #5499BC;
  padding: 10px 22px;
  border-radius: 6px;
  letter-spacing: 0.05em;
}
.flow-list2 > li .icon:after {
  border-color: transparent transparent transparent #5499BC;
}
.flow-list2 > li dl dt {
  font-size: 1.9rem;
  color: #1d1d1d;
}
@media screen and (max-width: 639px) {
  .flow-list2 > li dl dt {
    font-size: 1.6rem;
  }
}
.flow-list2 > li dl dd {
  line-height: 1.95;
  padding-top: 8px;
}
.flow-list2 > li dl:before {
  background: #5499BC;
}
.flow-list2 > li:not(:last-child) {
  margin-bottom: 50px;
}

/* --- tbl-border (テーブル) --- */
.tbl-border {
  display: block;
  width: 100%;
}
.tbl-border tbody {
  display: block;
}
.tbl-border tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 12px;
  margin-bottom: 10px;
  border: none;
  background: none;
}
.tbl-border tr:last-child {
  margin-bottom: 0;
}
.tbl-border th {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 140px;
          flex: 0 0 140px;
  border-radius: 999px;
  background: #5499BC;
  color: #fff;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 14px 20px;
  width: auto;
  font-size: 1.5rem;
}
.tbl-border th span {
  display: block;
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
  border-radius: 0;
  padding: 0;
  width: auto;
  text-align: center;
}
@media screen and (max-width: 639px) {
  .tbl-border th {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100px;
            flex: 0 0 100px;
    font-size: 1.3rem;
    padding: 12px 12px;
  }
  .tbl-border th span {
    font-size: 1.3rem;
  }
}
.tbl-border td {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: #efefef;
  border-radius: 999px;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 14px 28px;
  font-size: 1.5rem;
  line-height: 1.8;
}
@media screen and (max-width: 639px) {
  .tbl-border td {
    padding: 12px 18px;
    font-size: 1.3rem;
    border-radius: 20px;
  }
}

/* --- list_check2 --- */
.list_check2 li {
  padding: 12px 0 12px 35px;
  line-height: 1.9;
  font-size: 1.6rem;
}
@media screen and (max-width: 639px) {
  .list_check2 li {
    font-size: 1.4rem;
    padding-left: 28px;
  }
}
.list_check2 li:before {
  color: #5499BC;
}

/* --- bg-01 (トップ私たちについて) 微調整 --- */
.bg-01:before, .bg-01:after {
  border-radius: 0 0 0 60px;
}
.bg-01:before {
  opacity: 0.8;
}

.top-greet-box {
  padding: 80px 0 0;
  font-size: 1.15em;
  line-height: 2;
}
@media screen and (max-width: 639px) {
  .top-greet-box {
    padding-top: 30px;
  }
}

/* --- bg-03 (サービス紹介) 微調整 --- */
.bg-03:before {
  border-radius: 0 0 60px 0;
  opacity: 0.6;
}
.bg-03:after {
  border-radius: 0 0 60px 0;
}

/* --- business-head-list (サービスカード) --- */
.business-head-list {
  gap: 50px 5%;
}
.business-head-list li a figcaption .big {
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 639px) {
  .business-head-list li a figcaption .big {
    font-size: 1.5rem;
  }
}
.business-head-list li a .eng {
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  opacity: 0.6;
}

/* --- ceo-wrap 微調整 --- */
.ceo-wrap .ceo-img figure img {
  border-radius: 16px;
}
.ceo-wrap .ceo-img figure:before {
  border-radius: 16px;
  background-color: rgba(84, 153, 188, 0.1);
}

/* --- page-title (サブページヘッダー) --- */
.page-title .page_image img {
  -webkit-filter: brightness(0.85);
          filter: brightness(0.85);
}

.page-lead .ja {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 639px) {
  .page-lead .ja {
    font-size: 2.2rem;
  }
}
.page-lead .eng {
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  opacity: 0.8;
}

/* --- footer 洗練 --- */
#l-footer .title-big2 .ja {
  font-size: 2.4rem;
}
@media screen and (max-width: 639px) {
  #l-footer .title-big2 .ja {
    font-size: 2rem;
  }
}
#l-footer .contact_v2 .phone a {
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 639px) {
  #l-footer .contact_v2 .phone a {
    font-size: 2.4rem;
  }
}
#l-footer .footer-bottom {
  padding: 60px 0 40px;
}
#l-footer .footer-bottom .company {
  font-size: 1.3rem;
  margin-top: 10px;
  opacity: 0.7;
}
#l-footer .footer-bottom .address,
#l-footer .footer-bottom .contact {
  line-height: 2;
}

/* --- breadcrumb 洗練 --- */
.breadcrumb {
  padding: 20px 0;
  font-size: 1.3rem;
  opacity: 0.8;
}

/* --- copyright --- */
.copyright {
  padding: 25px 0;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}

/* --- list3 (info.phpグリッド) --- */
.list3 .child {
  padding: 30px 20px;
  margin-bottom: 30px;
  background: #fff;
  border-radius: 16px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.list3 .child:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
.list3 .child .box-ttl {
  margin-bottom: 20px;
}
.list3 .child .box-ttl span {
  font-size: 1.6rem;
  font-weight: 600;
}

/* --- #catch (MVキャッチコピー) --- */
/* --- slide_right / infiniteslide 余白 --- */
.slide_right li img,
.slide_left li img {
  border-radius: 8px;
}

/* --- ggmap --- */
.ggmap {
  border-radius: 16px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.ggmap iframe {
  border-radius: 16px;
}

/* --- txt-comment --- */
.txt-comment {
  margin-top: 40px;
  font-size: 1.4rem;
  opacity: 0.7;
  text-align: center;
}

/* --- header 微調整 --- */
#l-header .inner #logo img {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
#l-header .inner #logo img:hover {
  opacity: 0.8;
}

/* --- グラデーションボタン共通 --- */
.about-style-link {
  width: 290px;
  min-height: 64px;
  padding: 0 26px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  background: #5499BC;
  -webkit-box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
          box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
.about-style-link .button-text {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.about-style-link .arrow {
  font-size: 1.8rem;
  line-height: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.about-style-link:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  opacity: 0.92;
}
@media screen and (max-width: 639px) {
  .about-style-link {
    width: 100%;
    max-width: 290px;
    min-height: 56px;
    padding: 0 22px;
  }
  .about-style-link .button-text {
    font-size: 1.4rem;
  }
}

/* --- #page-top --- */
#page-top a {
  background: #5499BC;
  border-radius: 50%;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
#page-top a:hover {
  background: rgb(62.2142857143, 126.2857142857, 158.7857142857);
}

/* --- section-service (サービス紹介 新レイアウト) --- */
.section-service {
  background: #fff;
  position: relative;
  overflow: hidden;
}

/* --- title-big3 --- */
.title-big3 {
  position: relative;
  padding-top: 65px;
}
.title-big3:before {
  content: attr(data-title);
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 5rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.08em;
  white-space: nowrap;
  background: -webkit-gradient(linear, left top, right top, from(#5499BC), color-stop(52%, #DED296), to(#0D4E5F));
  background: linear-gradient(90deg, #5499BC 0%, #DED296 52%, #0D4E5F 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
@media screen and (max-width: 1025px) {
  .title-big3:before {
    font-size: 4rem;
  }
}
@media screen and (max-width: 639px) {
  .title-big3:before {
    font-size: 2.6rem;
    line-height: 1.2;
  }
}
.title-big3 .ja {
  display: block;
  position: relative;
  font-size: 1.2rem;
  font-weight: normal;
  color: #000;
  margin-left: 50px;
}
@media screen and (max-width: 639px) {
  .title-big3 .ja {
    font-size: 1.1rem;
    margin-left: 44px;
  }
}
.title-big3 .ja:before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  position: absolute;
  left: -38px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #5499BC;
  -webkit-box-shadow: 12px 0 0 #DED296, 24px 0 0 #0D4E5F;
          box-shadow: 12px 0 0 #DED296, 24px 0 0 #0D4E5F;
}
@media screen and (max-width: 639px) {
  .title-big3 .ja:before {
    left: -32px;
    width: 6px;
    height: 6px;
    -webkit-box-shadow: 10px 0 0 #DED296, 20px 0 0 #0D4E5F;
            box-shadow: 10px 0 0 #DED296, 20px 0 0 #0D4E5F;
  }
}
@media screen and (max-width: 639px) {
  .title-big3 {
    padding-top: 40px;
  }
}

.top-service-list {
  margin-top: 60px;
}

.top-service-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
  position: relative;
}
.top-service-item + .top-service-item {
  margin-top: 80px;
}
.top-service-item.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.top-service-item .top-service-text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 360px;
          flex: 0 0 360px;
}
.top-service-item .top-service-text .top-service-eng {
  display: block;
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 1.3rem;
  color: #5499BC;
  letter-spacing: 0.1em;
  opacity: 0.7;
  margin-bottom: 10px;
}
.top-service-item .top-service-text .top-service-title {
  font-size: 4rem;
  font-weight: 400;
  color: #5b9679;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.top-service-item .top-service-text .top-service-desc {
  font-size: 1.5rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 30px;
}
.top-service-item .top-service-text .btn-service a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 28px;
  background: #5b9679;
  color: #fff;
  border-radius: 40px;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.top-service-item .top-service-text .btn-service a:after {
  content: "→";
  margin-left: 8px;
}
.top-service-item .top-service-text .btn-service a:hover {
  opacity: 0.8;
}
.top-service-item .top-service-img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}
.top-service-item .top-service-img::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: url("https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27881/sankaku.svg") no-repeat center;
  background-size: contain;
  right: -120px;
  top: 15%;
  -webkit-transform: translateY(-50%) rotate(2deg);
          transform: translateY(-50%) rotate(2deg);
  z-index: -3;
  pointer-events: none;
}
.top-service-item .top-service-img figure {
  position: relative;
  max-width: 100%;
  z-index: 1;
}
.top-service-item .top-service-img figure img {
  width: 100%;
  height: auto;
  display: block;
}
.top-service-item.reverse .top-service-img::after {
  display: none;
}
@media screen and (max-width: 1025px) {
  .top-service-item {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .top-service-item .top-service-text {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .top-service-item .top-service-img {
    width: 80%;
    margin: 0 auto 30px;
  }
}
@media screen and (max-width: 639px) {
  .top-service-item .top-service-text {
    position: relative;
    z-index: 1;
  }
  .top-service-item .top-service-text .top-service-title {
    font-size: 2rem;
  }
  .top-service-item .top-service-text .top-service-desc {
    font-size: 1.4rem;
  }
  .top-service-item .top-service-img {
    width: 100%;
  }
  .top-service-item .top-service-img::after {
    display: none;
  }
}

/* --- core-values --- */
.core-values-wrap {
  margin-bottom: 50px;
}

.core-values-heading {
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 8rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: #5499BC;
  margin-bottom: -0.4em;
  position: relative;
  z-index: 2;
  text-align: center;
}

.core-values-box {
  background: -webkit-gradient(linear, left top, left bottom, from(#5499BC), color-stop(52%, #DED296), to(#0D4E5F));
  background: linear-gradient(180deg, #5499BC 0%, #DED296 52%, #0D4E5F 100%);
  border-radius: 30px;
  padding: 60px 60px 60px 70px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
@media screen and (max-width: 639px) {
  .core-values-box {
    padding: 40px 28px 40px 50px;
    border-radius: 20px;
  }
}

.core-values-vertical {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 1.2rem;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.65);
}

.core-values-inner {
  position: relative;
  z-index: 1;
}

.core-values-item {
  padding: 36px 0;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.core-values-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.core-values-item:first-child {
  padding-top: 0;
}

.core-values-en {
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 700;
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: #fff;
  margin-bottom: 18px;
}
@media screen and (max-width: 639px) {
  .core-values-en {
    font-size: 2.2rem;
  }
}

.core-values-ja {
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: #fff;
}

.core-values-item p:last-child {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}

.core-values-deco {
  position: absolute;
  bottom: -30px;
  right: 20px;
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 700;
  font-size: 14rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

@media screen and (max-width: 639px) {
  .core-values-heading {
    font-size: 3rem;
  }
}

/* --- three_point --- */
.three_point {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
@media screen and (max-width: 1025px) {
  .three_point {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media screen and (max-width: 639px) {
  .three_point {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.three_point-img figure {
  border-radius: 50%;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1/1;
  margin-bottom: 28px;
}
.three_point-img figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.three_point-dots {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #5499BC;
  -webkit-box-shadow: 17px 0 0 #DED296, 0 17px 0 #ddd, 17px 17px 0 #DED296;
          box-shadow: 17px 0 0 #DED296, 0 17px 0 #ddd, 17px 17px 0 #DED296;
  margin-bottom: 34px;
  margin-left: 4px;
}

.three_point-title {
  font-size: 2.6rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: #333;
  margin-bottom: 18px;
}
@media screen and (max-width: 639px) {
  .three_point-title {
    font-size: 2rem;
  }
}

.three_point-body p {
  font-size: 1.5rem;
  line-height: 1.9;
  color: #555;
}

/* --- num-heading --- */
.num-heading {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  line-height: 1;
  font-size: 3rem;
  font-weight: 400;
}
@media screen and (max-width: 1025px) {
  .num-heading {
    font-size: 2.5rem;
  }
}
.num-heading .num-grad {
  font-size: 9rem;
  font-weight: 300;
  line-height: 1;
  background: -webkit-gradient(linear, left top, left bottom, from(#5499BC), color-stop(55%, #DED296), to(#0D4E5F));
  background: linear-gradient(180deg, #5499BC 0%, #DED296 55%, #0D4E5F 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.num-heading :not(.num-grad) {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.06em;
}

/* --- philosophy-3col --- */
.philosophy-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1025px) {
  .philosophy-3col {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.philosophy-title {
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
  line-height: 1.4;
}

.philosophy-col.col-blue .philosophy-title {
  color: #5499BC;
}
.philosophy-col.col-yellow .philosophy-title {
  color: #FFE100;
}
.philosophy-col.col-green .philosophy-title {
  color: #DED296;
}
.philosophy-col p {
  font-size: 1.5rem;
  line-height: 2.4;
  color: #444;
}

/* --- musubi-message --- */
.musubi-message-title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  line-height: 1;
}
.musubi-message-title .musubi-message-img {
  height: 60px;
  width: auto;
  display: block;
}
.musubi-message-title span {
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #333;
}
@media screen and (max-width: 639px) {
  .musubi-message-title .musubi-message-img {
    height: 44px;
  }
  .musubi-message-title span {
    font-size: 2rem;
  }
}

/* --- page-title-v2 (サブページヘッダー 新デザイン) --- */
.page-title.page-title-v2 {
  background: #fff;
  border-radius: 0;
  overflow: visible;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 80px;
  min-height: 380px;
  padding: 60px 60px;
  position: relative;
}
.page-title.page-title-v2::before {
  display: none;
}
.page-title.page-title-v2 .page-title-v2-text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 340px;
  padding-left: 0;
  position: relative;
  z-index: 2;
}
.page-title.page-title-v2 .page-title-v2-text::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: url("https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27881/sankaku.svg") no-repeat center;
  background-size: contain;
  left: -340px;
  top: -90%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
  pointer-events: none;
}
.page-title.page-title-v2 .page-title-v2-text .page-lead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.page-title.page-title-v2 .page-title-v2-text .page-lead .eng {
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 6rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #5b9679;
  opacity: 1;
  line-height: 1.1;
}
.page-title.page-title-v2 .page-title-v2-text .page-lead .ja {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #333;
  padding-left: 42px;
  position: relative;
}
.page-title.page-title-v2 .page-title-v2-text .page-lead .ja::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #5b9679;
  -webkit-box-shadow: 12px 0 0 #5b9679, 24px 0 0 #5b9679;
          box-shadow: 12px 0 0 #5b9679, 24px 0 0 #5b9679;
}
.page-title.page-title-v2 .page-title-v2-image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 900px;
  max-width: 55vw;
  padding-right: 0;
}
.page-title.page-title-v2 .page-title-v2-image figure {
  border-radius: 25rem;
  overflow: hidden;
  height: 380px;
}
.page-title.page-title-v2 .page-title-v2-image figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: none;
          filter: none;
}
@media screen and (max-width: 1025px) {
  .page-title.page-title-v2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 50px 20px 40px;
    min-height: auto;
  }
  .page-title.page-title-v2 .page-title-v2-text {
    padding-left: 20px;
    width: 100%;
  }
  .page-title.page-title-v2 .page-title-v2-text::after {
    display: none;
  }
  .page-title.page-title-v2 .page-title-v2-text .page-lead .eng {
    font-size: 3.5rem;
  }
  .page-title.page-title-v2 .page-title-v2-image {
    width: 90%;
    max-width: 100%;
    padding-right: 0;
    margin-top: 30px;
  }
  .page-title.page-title-v2 .page-title-v2-image figure {
    height: 260px;
  }
}
@media screen and (max-width: 639px) {
  .page-title.page-title-v2 .page-title-v2-text .page-lead .eng {
    font-size: 2.8rem;
  }
  .page-title.page-title-v2 .page-title-v2-image {
    width: 100%;
  }
  .page-title.page-title-v2 .page-title-v2-image figure {
    height: 200px;
    border-radius: 5rem;
  }
}

/* --- section-area (対応地域マップ) --- */
.section-area {
  position: relative;
  overflow: hidden;
}
.section-area .single {
  position: relative;
  z-index: 1;
}

.section-area-map {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 55%;
  max-width: 800px;
  pointer-events: none;
  z-index: 0;
}
.section-area-map img {
  width: 100%;
  height: auto;
  opacity: 0.3;
  display: block;
}
@media screen and (max-width: 1025px) {
  .section-area-map {
    width: 60%;
    right: -40px;
  }
}
@media screen and (max-width: 639px) {
  .section-area-map {
    width: 90%;
    right: -20px;
    top: auto;
    bottom: 0;
    -webkit-transform: none;
            transform: none;
    opacity: 0.4;
  }
}

/* --- use-box-inner (2カラム：リスト＋画像) --- */
.use-box-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
.use-box-inner .list_check2 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 639px) {
  .use-box-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}

.use-box-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 280px;
          flex: 0 0 280px;
  border-radius: 16px;
  overflow: hidden;
}
.use-box-img img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (max-width: 1025px) {
  .use-box-img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 220px;
            flex: 0 0 220px;
  }
}
@media screen and (max-width: 639px) {
  .use-box-img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .use-box-img img {
    height: 180px;
  }
}

/* --- pdf-list --- */
.pdf-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media screen and (max-width: 639px) {
  .pdf-list {
    grid-template-columns: 1fr;
  }
}

.pdf-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #555;
  color: #fff;
  text-decoration: none;
  padding: 20px 24px;
  border-radius: 6px;
  gap: 20px;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.pdf-item:hover {
  background: #555;
}

.pdf-label {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (max-width: 639px) {
  .pdf-label {
    font-size: 1.4rem;
  }
}

.pdf-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.25);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.pdf-icon {
  font-size: 2rem;
  color: #fff;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 36px;
  text-align: center;
}

/* --- env-list (むすびの環境) --- */
.env-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
}
@media screen and (max-width: 1025px) {
  .env-list {
    gap: 60px;
  }
}

.env-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
}
.env-item.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 1025px) {
  .env-item {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    gap: 30px;
  }
}

.env-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 46%;
          flex: 0 0 46%;
}
.env-img img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 10px;
}
@media screen and (max-width: 1025px) {
  .env-img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .env-img img {
    height: 240px;
  }
}
@media screen and (max-width: 639px) {
  .env-img img {
    height: 200px;
  }
}

.env-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.env-title {
  font-size: 2rem;
  font-weight: 400;
  color: #DED296;
  margin-bottom: 20px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 639px) {
  .env-title {
    font-size: 1.8rem;
  }
}

.env-body .list_disc li,
.env-body .sentence p {
  font-size: 1.5rem;
  line-height: 1.9;
  color: #444;
}

.form-pattern-1 dl dt:not(.pattern-exclusion) span.required::before {
  background: #5499BC !important;
}/*# sourceMappingURL=basis.css.map */