@charset "UTF-8";
/* アニメーションベンダープレフィックス込み指定 */
/* アニメーションベンダープレフィックス込み指定 */
body {
  color: #243d5b;
  font-family: "Shippori Mincho", "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-size: 1.6rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  font-weight: 400;
  position: relative;
  letter-spacing: 0.1em;
  background: #fefefe;
}

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

#wrapper {
  position: relative;
  overflow: hidden;
}

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

.bold {
  font-weight: 600;
}

h2,
h3 {
  line-height: 1.6;
  font-weight: normal;
}
h2 .ja,
h3 .ja {
  font-family: "Shippori Mincho", "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 400;
  letter-spacing: 0.2em;
}
h2.wg500,
h3.wg500 {
  font-weight: 500;
}

.title {
  font-family: "Shippori Mincho", "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 400;
  letter-spacing: 0.2em;
  font-weight: 900 !important;
  letter-spacing: 0.1em;
}

.ita {
  font-family: "Cormorant", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-style: italic !important;
  text-transform: inherit !important;
  letter-spacing: 0.05rem !important;
}

.u-txt {
  letter-spacing: 0.05rem;
}

.border-line {
  display: block;
  border-top: 2px dashed #c5ccdf;
  margin: 35px 0;
}

.mincho {
  font-family: "Shippori Mincho", "Shippori Mincho", "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 900;
  letter-spacing: 0.2em;
}

/* animation
----------------------------------*/
@keyframes view-zoomin {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes view-slideup {
  0% {
    opacity: 0;
    transform: translate(0, 35px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes yurayura {
  0%, 100% {
    transform: rotate(2deg);
  }
  50% {
    transform: rotate(-2deg);
  }
}
.yurayura {
  transform-origin: center bottom;
  animation: yurayura 2s linear infinite;
}

@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1);
  }
  50%, 70% {
    transform: scale(0.95);
  }
}
.poyopoyo {
  animation: poyopoyo 2s ease-out infinite;
}

.animation {
  opacity: 0;
}

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

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

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

@keyframes loader {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fuwafuwa {
  animation: fuwafuwa 3s ease-in-out infinite alternate;
  transition: 1.5s ease-in-out;
}

.fuwafuwa2 {
  animation: fuwafuwa2 3s ease-in-out infinite alternate;
  transition: 1.5s ease-in-out;
}

@keyframes fuwafuwa {
  0% {
    transform: translate(0, 0) rotate(-7deg);
  }
  50% {
    transform: translate(0, -7px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(7deg);
  }
}
@keyframes fuwafuwa2 {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(0, -15px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}
/* header
----------------------------------*/
@keyframes hd-scrolled {
  0% {
    opacity: 0;
    transform: translate(0, -100%);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
#l-header {
  position: absolute;
  z-index: 100;
  width: 100%;
  transition: all 0.4s ease-in;
  background: #fefefe;
}
#l-header.is-fixed {
  position: fixed;
  width: 100%;
  z-index: 200;
  top: 0;
  left: 0;
}
#l-header.is-fixed .inner {
  padding: 10px 5px;
  transition: all 0.5s ease;
}
#l-header.is-fixed .inner #logo {
  width: 180px;
}
@media all and (max-width: 1100px) {
  #l-header.is-fixed .inner #logo {
    width: 120px;
  }
}
@media all and (max-width: 896px) {
  #l-header {
    backdrop-filter: none;
  }
}
#l-header .inner {
  position: relative;
  padding: 20px 0;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  max-width: 90%;
  transition: all 0.5s ease;
}
@media all and (max-width: 1100px) {
  #l-header .inner {
    max-width: 95%;
  }
}
@media all and (max-width: 896px) {
  #l-header .inner {
    min-width: initial;
    padding: 10px 20px;
  }
}
#l-header .inner #logo {
  transition: all 0.4s ease-in;
  width: 200px;
  z-index: 2;
}
@media all and (max-width: 1100px) {
  #l-header .inner #logo {
    width: 140px;
  }
}
@media all and (max-width: 896px) {
  #l-header .inner #logo {
    width: 120px;
  }
}
@media all and (max-width: 639px) {
  #l-header .inner #logo {
    width: 100px;
  }
}
#l-header .head-right {
  position: relative;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 40px;
}
@media all and (max-width: 1100px) {
  #l-header .head-right {
    display: none;
  }
}
#l-header .head-right_contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}
#l-header .head-right_tel,
#l-header .head-right_mail {
  text-align: center;
  white-space: nowrap;
}
#l-header .head-right_tel span,
#l-header .head-right_mail span {
  font-size: 1.2rem;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}
#l-header .head-right_tel a,
#l-header .head-right_mail a {
  position: relative;
  display: block;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  line-height: 1.2;
  color: #2a4b66;
  background: #fff;
  border-radius: 30px;
  transition: all 0.3s ease-in;
  padding: 0 3px;
  padding: 15px 30px;
  font-size: 1.4rem;
}
#l-header .head-right_tel a:hover,
#l-header .head-right_mail a:hover {
  opacity: 0.6;
}
#l-header .head-right_txt {
  text-align: center;
}
#l-header .head-right_txt a {
  position: relative;
  display: block;
  font-family: "Shippori Mincho", "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  font-size: 1.6rem;
  transition: all 0.3s ease-in;
  border: 2px solid #fff;
  padding: 5px 15px;
  border-radius: 3px;
}
#l-header .head-right_txt a:hover {
  background: rgba(255, 255, 255, 0.2);
}
#l-header .head-right_btn a {
  position: relative;
  display: block;
  width: 38px;
  height: 38px;
  line-height: 38px;
  border: 2px solid #fff;
  box-sizing: border-box;
  font-size: 1.5rem;
  color: #fff;
  border-radius: 100%;
  filter: drop-shadow(0px 0px 3px rgba(36, 61, 91, 0.5));
  transition: all 0.3s ease-in;
}
#l-header .head-right_btn a i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#l-header .head-right_btn a:hover {
  background: rgba(255, 255, 255, 0.2);
}

#header_nav {
  position: relative;
  transition: all 0.4s ease-in;
}
@media all and (max-width: 896px) {
  #header_nav {
    display: none;
  }
}
#header_nav > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  position: relative;
  transition: all 0.5s ease;
}
#header_nav > ul li {
  position: relative;
  text-align: center;
}
#header_nav > ul li a {
  position: relative;
  display: block;
  line-height: 1.5;
  color: #243d5b;
}
#header_nav > ul li a span {
  display: block;
  color: #2a4b66;
  font-family: "Cormorant", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-size: 1.2rem;
  text-align: left;
  padding-left: 1.5em;
}
#header_nav > ul li a img {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  margin-left: auto;
  margin-right: auto;
}
#header_nav > ul li a:hover span {
  color: #4880ae;
}
#header_nav .dropdown {
  display: none;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  top: 40px;
  padding-top: 18px;
  z-index: 999;
  width: 100%;
}
#header_nav .dropdown li {
  border-right: 0px dashed #ddd;
  border-bottom: 1px solid #ddd;
}
#header_nav .dropdown li:last-child {
  border-radius: 0 0 5px 5px;
  border-bottom: 0px solid #ddd;
  overflow: hidden;
}
#header_nav .dropdown .dropdown-li a {
  display: block;
  width: auto;
  padding: 10px;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: #243d5b;
  background: #fefefe;
  text-shadow: none;
  filter: none;
}
#header_nav .dropdown .dropdown-li a:after {
  display: none;
}
#header_nav .dropdown .dropdown-li a:hover {
  background: #f2f2f2;
}
@media all and (max-width: 1367px) {
  #header_nav > ul {
    gap: 20px;
  }
}
@media all and (max-width: 1100px) {
  #header_nav > ul li {
    padding: 0 0.9em;
  }
  #header_nav > ul li a {
    font-size: 1.4rem;
  }
}

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

#page-top2 {
  width: 150px;
  height: 150px;
  position: absolute;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
#page-top2 a {
  height: 100%;
  width: 100%;
  position: absolute;
  border-top-left-radius: 100%;
  z-index: 1;
  color: #fff;
}
#page-top2 a span {
  position: absolute;
  bottom: 30px;
  left: 60px;
  z-index: 1;
  letter-spacing: -1px;
  font-size: 1.6rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#page-top2 a:after {
  content: "";
  background: #2a4b66;
  width: 300px;
  height: 300px;
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  -webkit-transform: translate(50%, 50%);
  transform: translate(50%, 50%);
  border-radius: 50%;
}
@media all and (max-width: 896px) {
  #page-top2 {
    width: 120px;
    height: 120px;
  }
  #page-top2 a span {
    bottom: 20px;
    font-size: 1.5rem;
  }
  #page-top2 a::after {
    width: 250px;
    height: 250px;
  }
}
@media all and (max-width: 639px) {
  #page-top2 a span {
    left: 63px;
    bottom: 10px;
    font-size: 1rem;
  }
  #page-top2 a::after {
    width: 160px;
    height: 160px;
  }
}

/* swiper
----------------------------------*/
@keyframes zoom-in {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.12);
  }
}
@keyframes zoom-out {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.swiper-slide {
  position: relative;
}
.swiper-slide:before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  right: 0;
  top: 0;
  background-position: 50%;
  background-size: cover;
  z-index: -1;
}
.swiper-slide.slide1:before {
  background-image: url(../img/1.jpg);
  background-position: 60% 50%;
}
.swiper-slide.slide2:before {
  background-image: url(../img/2.jpg);
  background-position: 50% 50%;
}
.swiper-slide.slide3:before {
  background-image: url(../img/3.jpg);
  background-position: 90% 50%;
}

.slide-img {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 95vh;
}
.slide-img .tp {
  object-position: left top;
}
.slide-img:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(42, 75, 102, 0) 0%, rgba(42, 75, 102, 0.3) 100%);
}
.slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover;";
}
@media all and (max-width: 1100px) {
  .slide-img {
    height: 75vw;
  }
}

#slide-wrap {
  position: relative;
  width: 100%;
}

#slideshow {
  position: relative;
  width: calc(100% - 40px);
  margin: 20px auto;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
}
#slideshow::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -4px;
  width: 102%;
  height: 90px;
  z-index: 100;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/24582/wave2.svg) no-repeat center bottom/100%;
  overflow: hidden;
}
@media all and (max-width: 639px) {
  #slideshow {
    width: calc(100% - 20px);
  }
  #slideshow:before {
    height: 40px;
  }
}

#catch {
  position: absolute;
  z-index: 50;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 2s cubic-bezier(0.18, 0.06, 0.23, 1);
  opacity: 0;
  max-width: 700px;
}
#catch.on {
  opacity: 1;
  transition: all 2s ease-in;
}
@media all and (max-width: 896px) {
  #catch {
    bottom: 30%;
  }
}
@media all and (max-width: 639px) {
  #catch {
    width: 80%;
    bottom: 20%;
  }
}

#scrolldown {
  position: absolute;
  right: 15px;
  bottom: 60px;
  color: #fefefe;
  font-family: "Cormorant", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
  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;
  transform: translateX(-50%);
}
#scrolldown:after {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 100%;
  top: 100px;
  margin-left: -4px;
  animation: scroll-point 2.3s ease-out infinite;
  animation-fill-mode: both;
}
@media all and (max-width: 896px) {
  #scrolldown {
    display: none;
  }
}

@keyframes scroll-point {
  0% {
    bottom: 0;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  50% {
    top: 180px;
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    top: 210px;
    opacity: 0;
  }
}
/* contact_bnr
----------------------------------*/
.contact_bnr > li {
  margin: 0 auto;
  text-align: center;
}
.contact_bnr > li:not(:last-child) {
  margin-bottom: 20px;
}
.contact_bnr > li a {
  display: block;
  position: relative;
}
@media all and (max-width: 896px) {
  .contact_bnr > li a {
    text-align: center;
    margin: 0 auto 20px;
  }
  .contact_bnr > li:first-of-type {
    margin-right: 0;
  }
}
.contact_bnr > li .bnr_tel {
  white-space: nowrap;
  position: relative;
  color: #fefefe;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-size: 3.4rem;
  line-height: 1.4;
}
.contact_bnr > li .bnr_tel:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
  font-size: 0.7em;
}
.contact_bnr > li .bnr_tel:hover {
  opacity: 0.6;
}
@media all and (max-width: 1100px) {
  .contact_bnr > li .bnr_tel {
    font-size: 3rem;
  }
}
@media all and (max-width: 639px) {
  .contact_bnr > li .bnr_tel {
    font-size: 2.3rem;
    text-align: center;
  }
}
.contact_bnr > li .bnr_mobile {
  background: #fefefe;
  color: #2a4b66;
}
.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: #2a4b66;
}
.contact_bnr > li .bnr_fax:before {
  font-family: "Font Awesome 5 Free";
  content: "\f1ac";
  font-weight: 900;
}
.contact_bnr > li .bnr_mail {
  background: #fefefe;
  color: #243d5b;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
  border-radius: 15px;
  max-width: 320px;
  margin: auto;
  line-height: 1.4;
  padding: 20px;
}
.contact_bnr > li .bnr_mail .small {
  font-size: 0.8em;
  margin-left: 4px;
}
.contact_bnr > li .bnr_mail:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  font-size: 0.8em;
  margin-right: 10px;
}
.contact_bnr > li .bnr_mail:hover {
  background: rgba(255, 255, 255, 0.5);
}
@media all and (max-width: 639px) {
  .contact_bnr > li .bnr_mail {
    font-size: 1.4rem;
    max-width: 100%;
  }
}

.contact_bnr2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.contact_bnr2 > li {
  width: 49%;
}
@media all and (max-width: 639px) {
  .contact_bnr2 > li {
    width: 100%;
    margin: 0 auto 15px;
  }
  .contact_bnr2 > li:last-child {
    margin: 0 auto;
  }
}
.contact_bnr2 > li .bnr_tel {
  white-space: nowrap;
  position: relative;
}
.contact_bnr2 > li .bnr_tel:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
}
.contact_bnr2 > li .bnr_mobile:before {
  font-family: "Font Awesome 5 Free";
  content: "\f3cd";
  font-weight: 900;
}
.contact_bnr2 > li .bnr_fax:before {
  font-family: "Font Awesome 5 Free";
  content: "\f1ac";
  font-weight: 900;
}
.contact_bnr2 > li .bnr_mail:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
}
.contact_bnr2 > li a,
.contact_bnr2 > li span {
  display: block;
  background: transparent;
  border: 1px solid #2a4b66;
  background: #2a4b66;
  color: #fff;
  box-sizing: border-box;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.2rem;
  padding: 12px 10px;
  transition: background 0.2s ease-in;
}
.contact_bnr2 > li a:before,
.contact_bnr2 > li span:before {
  margin-right: 5px;
  position: relative;
  display: inline-block;
}
@media all and (max-width: 639px) {
  .contact_bnr2 > li a,
  .contact_bnr2 > li span {
    margin: 0 auto;
    white-space: nowrap;
    padding: 10px 0;
    width: 100%;
    font-size: 1.5rem;
  }
  .contact_bnr2 > li a:before,
  .contact_bnr2 > li span:before {
    font-size: 1.3rem;
    transform: translateY(-2px);
  }
}
.contact_bnr2 > li a:hover {
  background: #fff;
  color: #2a4b66;
}

/* footer
----------------------------------*/
footer {
  position: relative;
  width: 100%;
}

.footer-contact {
  overflow: hidden;
  width: 80%;
  margin: 0 auto;
  z-index: 23;
  padding-bottom: 60px;
}
.footer-contact .footer-contact_inner {
  width: 100%;
  margin-inline: auto;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media all and (max-width: 896px) {
  .footer-contact .footer-contact_inner {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .footer-contact .footer-contact_inner {
    width: 95%;
  }
}
.footer-contact .footer-contact_inner > .mtitle {
  margin-bottom: 10px;
}
.footer-contact .footer-contact_inner .footer-contact_left {
  width: 50%;
}
.footer-contact .footer-contact_inner .footer-contact_left p {
  font-size: 1.3rem;
}
@media all and (max-width: 896px) {
  .footer-contact .footer-contact_inner .footer-contact_left {
    width: 80%;
    margin-bottom: 30px;
  }
  .footer-contact .footer-contact_inner .footer-contact_left .title01 {
    text-align: center;
  }
  .footer-contact .footer-contact_inner .footer-contact_left p {
    text-align: center;
  }
}
@media (max-width: 480px) {
  .footer-contact .footer-contact_inner .footer-contact_left {
    width: 100%;
  }
}
.footer-contact .footer-contact_inner .contact_bnr {
  width: 50%;
}
@media all and (max-width: 896px) {
  .footer-contact .footer-contact_inner .contact_bnr {
    width: 80%;
  }
}
@media (max-width: 480px) {
  .footer-contact .footer-contact_inner .contact_bnr {
    width: 100%;
  }
}
@media all and (max-width: 639px) {
  .footer-contact .footer-contact_inner {
    padding: 10px 0 0;
  }
}
.footer-contact .footer-contact_inner p {
  color: #fff;
  text-align: left;
  font-weight: bold;
}
@media all and (max-width: 1367px) {
  .footer-contact .footer-contact_inner {
    width: 85%;
  }
}
@media all and (max-width: 1100px) {
  .footer-contact {
    padding: 60px 0;
  }
}
@media all and (max-width: 639px) {
  .footer-contact {
    padding: 40px 0;
    width: 100%;
  }
  .footer-contact .footer-contact_inner {
    width: 90%;
  }
}

.footer_img {
  margin-top: 60px;
}
.footer_img img {
  height: 450px;
  width: 100%;
  object-fit: cover;
}
@media all and (max-width: 896px) {
  .footer_img img {
    height: 300px;
  }
}
@media all and (max-width: 639px) {
  .footer_img {
    margin-top: 0;
  }
  .footer_img img {
    height: 150px;
  }
}

#l-footer {
  font-size: 1.5rem;
  margin-left: auto;
  position: relative;
  padding: 30px 60px 120px;
}
#l-footer::before {
  position: absolute;
  content: "";
  left: 0;
  top: -85px;
  width: 102%;
  height: 90px;
  z-index: 100;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/24582/wave2.svg) no-repeat center bottom/100%;
  overflow: hidden;
}
#l-footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fefefe;
  z-index: -2;
}
#l-footer .inner {
  z-index: 20;
  color: #fff;
  display: flex;
  align-items: flex-end;
  padding-top: 60px;
}
#l-footer .inner > div {
  width: 50%;
}
@media all and (max-width: 1100px) {
  #l-footer {
    padding-bottom: 120px;
  }
  #l-footer .inner {
    align-items: center;
  }
}
@media all and (max-width: 896px) {
  #l-footer .inner {
    flex-direction: column;
  }
  #l-footer .inner > div {
    width: 100%;
    text-align: center;
  }
}
@media all and (max-width: 639px) {
  #l-footer {
    font-size: 1.2rem;
    border-radius: 30px 30px 0 0;
    padding: 40px 20px;
  }
  #l-footer .inner {
    padding-top: 0;
  }
  #l-footer::before {
    top: -38px;
    height: 40px;
  }
}

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

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

/*hed_side*/
#hed_side {
  position: fixed;
  right: 0;
  bottom: 15%;
  margin: auto;
  z-index: 222;
  -webkit-transition: 0.2s ease-in all;
  transition: 0.2s ease-in all;
}
#hed_side ul li img {
  width: 60px;
}
#hed_side ul li a {
  display: block;
  padding: 5px;
  margin-bottom: 5px;
  color: #fff;
  text-align: center;
  font-size: 18px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  transition: box-shadow 0.3s, transform 0.3s;
}
#hed_side ul li a:hover {
  opacity: 0.8;
  transform: translate(0, -2px);
}
#hed_side ul li a:visited {
  opacity: 1;
}

@media all and (max-width: 896px) {
  #hed_side {
    display: none;
    width: 100%;
    height: auto;
    top: auto;
    bottom: 62px;
  }
  #hed_side li {
    border-right: 1px solid #dadada;
  }
  #hed_side li:last-child {
    border-right: none;
  }
}
/* footer_navi
----------------------------------*/
.footer_navi {
  position: relative;
}
@media all and (max-width: 896px) {
  .footer_navi {
    display: none;
  }
}
.footer_navi ul {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
}
.footer_navi ul li {
  width: 50%;
}
.footer_navi ul li a {
  color: #243d5b;
  font-size: 1.4rem;
  position: relative;
  font-weight: 600;
  text-align: left;
}
.footer_navi ul li a span {
  transition: 0.2s all ease-in-out;
  font-family: "Cormorant", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  position: relative;
  display: block;
  color: #2a4b66;
  font-size: 1.2rem;
  text-align: left;
}
@media all and (max-width: 639px) {
  .footer_navi ul li a {
    font-size: 1.2rem;
  }
}
.footer_navi ul li a:hover {
  color: #2a4b66;
}
.footer_navi ul li .dropdown {
  margin-top: 10px;
  padding: 8px 5px 5px;
}
@media all and (max-width: 639px) {
  .footer_navi ul li .dropdown {
    padding: 10px;
  }
}
.footer_navi ul li .dropdown .dropdown-ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 15px;
  max-width: 320px;
}
.footer_navi ul li .dropdown .dropdown-li {
  width: 100%;
}
.footer_navi ul li .dropdown .dropdown-li:first-of-type {
  display: block;
}
.footer_navi ul li .dropdown .dropdown-li a {
  font-size: 13px;
  color: #ddd;
  line-height: 1.5;
  letter-spacing: 0;
  border: none;
  display: block;
}
.footer_navi ul li .dropdown .dropdown-li a:before {
  background: #fff;
}

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

.flogo {
  max-width: 180px;
  text-align: center;
  margin-bottom: 40px;
}
@media all and (max-width: 896px) {
  .flogo {
    width: 40%;
    margin: 0 auto 40px;
  }
}

.address {
  color: #243d5b;
  font-size: 1.2rem;
}
@media all and (max-width: 639px) {
  .address {
    font-size: 9px;
  }
}

.copyright {
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
  margin: 0 auto;
  color: #243d5b;
}
@media all and (max-width: 896px) {
  .copyright {
    font-size: 12px;
    padding-top: 20px;
  }
}

/*----------------------------------
 top-contents
----------------------------------*/
.top_link {
  display: flex;
  justify-content: center;
  gap: 40px;
  position: relative;
  z-index: 100;
  max-width: 80%;
  margin: -140px auto 0;
}
.top_link .inner {
  width: 300px;
}
.top_link .inner a {
  display: block;
  background: #fff;
  border-radius: 50% 50% 8px 8px;
  text-align: center;
  padding: 40px 0 30px;
  color: #243d5b;
}
.top_link .inner a .ttl {
  font-size: 1.2em;
  font-weight: 600;
}
.top_link .inner a .ttl .eng {
  display: block;
  color: #e6e9f1;
  font-size: 0.8em;
}
.top_link .inner a .icon {
  width: 55%;
  margin: 0 auto 10px;
}
.top_link .inner a:hover {
  background: #e6e9f1;
  color: #fff;
}
.top_link .inner a:hover .eng {
  color: #fff;
}
@media all and (max-width: 896px) {
  .top_link {
    gap: 20px;
  }
}
@media all and (max-width: 639px) {
  .top_link {
    max-width: 95%;
    gap: 10px;
    margin: -70px auto 0;
  }
  .top_link .inner a {
    padding: 20px 0 15px;
  }
  .top_link .inner a .icon {
    width: 45%;
    margin: 0 auto 5px;
  }
  .top_link .inner a .ttl {
    font-size: 1em;
  }
}

.top_greet {
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top_greet .center {
  width: 50%;
}
.top_greet .left {
  width: 22%;
  margin-top: -150px;
}
.top_greet .right {
  width: 22%;
  margin-bottom: -200px;
}
.top_greet .right .sp {
  display: none;
}
.top_greet .txt {
  font-size: 1.6rem;
}
@media all and (max-width: 896px) {
  .top_greet {
    flex-direction: column;
    gap: 20px;
  }
  .top_greet .center {
    width: 95%;
  }
  .top_greet .left {
    display: none;
  }
  .top_greet .right {
    width: 100%;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    gap: 40px;
  }
  .top_greet .right img {
    width: 35%;
  }
  .top_greet .right .sp {
    display: block;
  }
}
@media all and (max-width: 639px) {
  .top_greet {
    width: 100%;
  }
  .top_greet .txt {
    font-size: 1.2rem;
  }
}

.staff_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.staff_list > li {
  width: calc((100% - 100px) / 6);
  text-align: center;
  background: rgba(42, 75, 102, 0.2);
  border-radius: 20px;
  padding: 20px;
}
.staff_list > li .txt {
  font-weight: bold;
}
@media all and (max-width: 896px) {
  .staff_list > li {
    width: calc((100% - 40px) / 3);
  }
}
@media all and (max-width: 639px) {
  .staff_list > li {
    width: calc((100% - 20px) / 2);
  }
}

.reason_box {
  width: 80%;
  margin: 0 auto;
}
.reason_box .inner {
  background: #fbf9f3;
  border-radius: 20px;
  padding: 4em;
  position: relative;
}
.reason_box .inner:not(:last-of-type) {
  margin-bottom: 60px;
}
.reason_box .inner .num {
  text-align: center;
  position: absolute;
  left: 20px;
  top: -1em;
}
.reason_box .inner .num span {
  background: #2a4b66;
  border-radius: 10px;
  padding: 0 20px;
  font-weight: bold;
  color: #fff;
  display: block;
  width: fit-content;
  margin: 0 auto 0;
  font-size: 3rem;
  font-family: "Cormorant", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.reason_box .inner .ttl {
  font-weight: bold;
  font-size: 2.2rem;
  color: #243d5b;
  margin: 0 auto 20px;
  position: relative;
}
.reason_box .inner .ttl::before, .reason_box .inner .ttl::after {
  position: absolute;
  content: "";
}
.reason_box .inner .ttl::before {
  right: -1em;
  bottom: 0;
  width: 20px;
  height: 20px;
  border-right: 2px solid #243d5b;
  border-bottom: 2px solid #243d5b;
}
.reason_box .inner .ttl::after {
  top: 0;
  left: -1em;
  width: 20px;
  height: 20px;
  border-top: 2px solid #243d5b;
  border-left: 2px solid #243d5b;
}
.reason_box .inner .wrapper {
  display: flex;
  justify-content: space-between;
}
.reason_box .inner .img {
  width: 40%;
  text-align: center;
}
.reason_box .inner .img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
}
.reason_box .inner .txt_area {
  width: 55%;
}
@media all and (max-width: 1367px) {
  .reason_box {
    width: 100%;
  }
}
@media all and (max-width: 639px) {
  .reason_box .inner {
    padding: 2em 1em;
  }
  .reason_box .inner .wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .reason_box .inner .wrapper .img,
  .reason_box .inner .wrapper .txt_area {
    width: 100%;
  }
  .reason_box .inner .num span {
    font-size: 1.5rem;
  }
}

.top-motto-box {
  margin: 0 auto;
}
.top-motto-box > li {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}
.top-motto-box > li:not(:last-child) {
  margin-bottom: 40px;
}
.top-motto-box > li:nth-child(1) .num {
  background: #e6e9f1;
}
.top-motto-box > li:nth-child(2) .num {
  background: #e6e9f1;
}
.top-motto-box > li:nth-child(3) .num {
  background: #e6e9f1;
}
.top-motto-box .img {
  position: relative;
  background: #fefefe;
  border-radius: 10px;
  text-align: center;
  width: calc(50% - 40px);
}
.top-motto-box .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.top-motto-box .img .num {
  display: inline-block;
  color: #fefefe;
  border-radius: 50%;
  padding: 5px;
  width: 2em;
  height: 2em;
  line-height: 2em;
  font-size: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -0.2em;
  left: -0.2em;
}
.top-motto-box .txt {
  width: 50%;
}
.top-motto-box .txt .ttl {
  font-size: 2.3rem;
  font-weight: bold;
  margin-bottom: 15px;
}
.top-motto-box .txt p {
  padding: 0 5px;
  margin: 0 auto;
  font-size: 1.6rem;
}
.top-motto-box .txt p:not(:last-child) {
  margin-bottom: 10px;
}
.top-motto-box.type2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 35px;
}
.top-motto-box.type2 > li {
  width: calc(50% - 35px);
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
}
.top-motto-box.type2 > li:not(:last-child) {
  margin-bottom: 0;
}
.top-motto-box.type2 > li .img {
  width: 100%;
}
.top-motto-box.type2 > li .txt {
  width: 100%;
}
@media all and (max-width: 896px) {
  .top-motto-box > li .img,
  .top-motto-box > li .txt {
    width: 100%;
  }
  .top-motto-box > li .img {
    height: 350px;
  }
  .top-motto-box.type2 {
    gap: 20px;
  }
  .top-motto-box.type2 > li {
    width: calc(50% - 10px);
    gap: 10px;
  }
  .top-motto-box.type2 > li .img {
    height: 250px;
  }
}
@media all and (max-width: 639px) {
  .top-motto-box > li {
    gap: 20px;
  }
  .top-motto-box > li .txt .ttl {
    font-size: 1.8rem;
  }
  .top-motto-box > li .txt p {
    font-size: 1.2rem;
  }
  .top-motto-box > li .img {
    height: 220px;
  }
  .top-motto-box.type2 > li {
    width: 100%;
  }
  .top-motto-box.type2 > li .img {
    height: 200px;
  }
}

.top-feature-box {
  margin: 0 auto;
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
}
.top-feature-box > li {
  width: calc((100% - 40px) / 3);
  text-align: center;
  margin-right: 0 !important;
  margin-bottom: 0 !important;
}
.top-feature-box > li .ttl {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: -1em;
}
.top-feature-box > li .img {
  padding: 20px;
  padding-bottom: 10px;
  position: relative;
  text-align: center;
}
.top-feature-box > li .img::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background: #fefefe;
  z-index: -1;
  border-radius: 10px;
}
.top-feature-box > li .img img {
  width: 150px;
}
.top-feature-box > li .txt {
  text-align: left;
  padding: 0 10px;
  margin: 0 auto;
}
@media all and (max-width: 1100px) {
  .top-feature-box > li .ttl {
    font-size: 1.8rem;
  }
}
@media all and (max-width: 896px) {
  .top-feature-box > li {
    width: 46% !important;
  }
}
@media all and (max-width: 639px) {
  .top-feature-box {
    gap: 40px 20px;
  }
  .top-feature-box > li {
    width: 100% !important;
  }
  .top-feature-box > li .ttl {
    font-size: 1.6rem;
  }
  .top-feature-box > li .img {
    padding: 20px;
  }
  .top-feature-box > li .img:before {
    height: 80%;
  }
  .top-feature-box > li .img img {
    width: 150px;
  }
}

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

.title-big2 {
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
}
.title-big2 span {
  line-height: 1.2;
}
.title-big2 .eng {
  font-family: "Cormorant", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-size: 3.6rem;
  display: inline-block;
  color: #fefefe;
}
.title-big2 .ja {
  font-size: 1.8rem;
  color: #fefefe;
  margin-left: 15px;
}
@media all and (max-width: 896px) {
  .title-big2 {
    text-align: center;
  }
  .title-big2 span {
    display: block;
    text-align: center;
  }
  .title-big2 .ja {
    margin-left: 0;
  }
}
@media all and (max-width: 639px) {
  .title-big2 .eng {
    font-size: 2.8rem;
  }
  .title-big2 .ja {
    font-size: 1.4rem;
  }
}
.title-big2.white .eng {
  color: #fff;
}
.title-big2.white .ja {
  color: #fff;
}

.title-big3 {
  margin: 0 0 35px;
  position: relative;
  z-index: 3;
}
.title-big3 span {
  display: block;
  line-height: 1.4;
}
.title-big3 .eng {
  font-family: "Cormorant", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-size: 6rem;
  color: #e6e9f1;
  display: inline-block;
  background: #2a4b66;
  background: linear-gradient(to right, #2a4b66, #e6e9f1);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.title-big3 .ja {
  font-size: 2rem;
  color: #243d5b;
  position: relative;
  z-index: 2;
  line-height: 1.3;
  letter-spacing: 0.2em;
  color: #243d5b;
}
@media all and (max-width: 639px) {
  .title-big3 .eng {
    font-size: 3.5rem;
  }
  .title-big3 .ja {
    font-size: 1.6rem;
  }
}

.title-big4 {
  text-align: center;
  position: relative;
  padding-bottom: 40px;
  letter-spacing: 0.2em;
}
@media all and (max-width: 639px) {
  .title-big4 {
    padding-bottom: 25px;
  }
}
.title-big4 .inner {
  position: relative;
  display: inline-block;
}
.title-big4.type1 .txt .eng {
  color: #555;
}
.title-big4 .txt {
  display: inline-block;
  font-size: 2rem;
}
.title-big4 .txt .eng {
  font-family: "Cormorant", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-size: 4.5rem;
  line-height: 1.6;
  color: #2a4b66;
}
@media all and (max-width: 639px) {
  .title-big4 .txt {
    font-size: 1.4rem;
  }
  .title-big4 .txt .eng {
    font-size: 3rem;
  }
}
.title-big4.white .txt {
  color: #fff;
}
.title-big4.white .txt .eng {
  color: #fff;
}

.greet-block {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.greet-block .greet-img {
  position: relative;
  width: 45%;
  height: 450px;
}
.greet-block .greet-img:before {
  position: absolute;
  content: "";
  width: 230px;
  height: 230px;
  left: -50px;
  top: -60px;
  background: url(../img/apple3.png) no-repeat 50%/contain;
}
.greet-block .greet-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover;";
  object-position: center;
}
@media all and (max-width: 639px) {
  .greet-block .greet-img {
    width: 100%;
    height: 250px;
  }
  .greet-block .greet-img:before {
    width: 130px;
    height: 130px;
    left: -40px;
    top: -40px;
  }
}
.greet-block .greet-txt {
  width: 50%;
  padding: 60px 20px 100px;
  margin-left: auto;
  position: relative;
  z-index: 3;
}
.greet-block .greet-txt:before {
  position: absolute;
  content: "";
  width: 250px;
  height: 250px;
  bottom: -30px;
  right: -30px;
  background: url(../img/apple2.png) no-repeat 50%/contain;
  z-index: -1;
  opacity: 0.4;
}
.greet-block .greet-txt .inner {
  max-width: 650px;
}
@media all and (max-width: 639px) {
  .greet-block .greet-txt {
    width: 100%;
    padding: 20px;
    background: #fff;
  }
  .greet-block .greet-txt:before {
    width: 100px;
    height: 100px;
  }
}

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

.top-contact-box {
  max-width: 500px;
  margin: 50px auto 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  border: 6px solid rgba(3, 172, 239, 0.2);
  padding: 20px;
}
@media all and (max-width: 639px) {
  .top-contact-box {
    max-width: 90%;
    flex-direction: column;
    padding: 15px;
    border-radius: 10px;
    margin-top: 30px;
  }
}
.top-contact-box .tel {
  padding-right: 20px;
  border-right: 1px solid #2a4b66;
  margin-right: 20px;
}
.top-contact-box .tel a {
  display: block;
  font-weight: 600;
  font-size: 2.4rem;
  color: #2a4b66;
}
.top-contact-box .tel a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
  font-size: 2rem;
}
.top-contact-box .tel a:hover {
  opacity: 0.8;
}
@media all and (max-width: 639px) {
  .top-contact-box .tel {
    padding: 0 0 10px;
    border-right: 0;
    border-bottom: 1px solid #2a4b66;
    margin: 0 0 15px;
  }
  .top-contact-box .tel a {
    font-size: 2rem;
  }
}
.top-contact-box .access a {
  display: block;
  color: #faf8f5;
  font-weight: 600;
  font-size: 1.8rem;
}
.top-contact-box .access a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f5a0";
  font-weight: 900;
  margin-right: 5px;
  font-size: 2rem;
}
.top-contact-box .access a:hover {
  opacity: 0.8;
}
@media all and (max-width: 639px) {
  .top-contact-box .access a {
    font-size: 1.4rem;
  }
  .top-contact-box .access a:before {
    font-size: 1.3rem;
  }
}

.contact-box {
  margin: 100px auto;
}
.contact-box .txt {
  font-size: 2.3rem;
  padding: 0 20px;
  margin-bottom: 40px;
}
.contact-box .list2 li {
  background: rgba(254, 254, 254, 0.6);
  border-radius: 10px;
  padding: 30px;
}
.contact-box .list2 li .icon {
  background: #fefefe;
  border-radius: 10px;
  height: 250px;
  padding: 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.contact-box .list2 li .icon .img {
  height: 120px;
  transition: all 0.3s ease;
}
.contact-box .list2 li .icon .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.contact-box .list2 li .icon .ttl {
  font-size: 2.5rem;
  font-family: "Cormorant", serif;
  margin-bottom: 10px;
}
.contact-box .list2 li .btn {
  background: #736a63;
  color: #fefefe;
  display: block;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  font-size: 1.8rem;
  transition: all 0.3s ease;
}
.contact-box .list2 li a:hover .icon {
  background: #fefefe;
}
.contact-box .list2 li a:hover .icon .img {
  transform: scale(1.1);
}
.contact-box .list2 li a:hover .btn {
  background: #2a4b66;
  color: #fefefe;
}
@media all and (max-width: 1100px) {
  .contact-box .txt {
    font-size: 2rem;
  }
}
@media all and (max-width: 639px) {
  .contact-box {
    margin: 50px auto;
  }
  .contact-box .txt {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  .contact-box .list2 li .icon {
    height: auto;
    width: 100%;
  }
  .contact-box .list2 li .icon .ttl {
    font-size: 1.8rem;
  }
  .contact-box .list2 li .icon .img {
    height: 70px;
  }
  .contact-box .list2 li .btn {
    font-size: 1.6rem;
    padding: 10px;
  }
}

.top-concern-list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.top-concern-list li {
  width: 47%;
  margin-right: 6%;
  margin-bottom: 15px;
  background-image: linear-gradient(to right, #faf8f5, #faf8f5, #faf8f5);
  color: #243d5b;
  padding: 12px 15px;
  font-size: 1.8rem;
  border: 0.9px solid #e6e9f1;
  font-family: "Shippori Mincho", "Shippori Mincho", "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 900;
  letter-spacing: 0.2em;
}
.top-concern-list li:nth-child(2n) {
  margin-right: 0;
  transform: translateY(30px);
}
@media all and (max-width: 639px) {
  .top-concern-list li {
    width: 100%;
    font-size: 1.3rem;
    padding: 4px 10px;
    margin: 0 auto 10px;
  }
  .top-concern-list li:nth-child(2n) {
    margin-right: auto;
    transform: none;
  }
}

.pros-title {
  position: absolute;
  left: 0;
  top: 0;
  min-height: 80px;
}
.pros-title.smaller .eng {
  font-size: 4rem;
}
@media all and (max-width: 639px) {
  .pros-title.smaller .eng {
    font-size: 2rem;
  }
}
.pros-title span {
  line-height: 1.2;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
}
.pros-title .eng {
  font-family: "Cormorant", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-size: 7rem;
  color: #2a4b66;
  display: block;
  opacity: 0.7;
}
.pros-title .ja {
  font-family: "Shippori Mincho", "Shippori Mincho", "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 900;
  letter-spacing: 0.2em;
  font-size: 2.2rem;
  color: #2a4b66;
  padding: 0 15px;
  border-right: 0.9px solid #2a4b66;
  display: inline-block;
}
.pros-title.type1 .eng {
  color: #2a4b66;
}
.pros-title.type1 .ja {
  color: #2a4b66;
}
@media all and (max-width: 639px) {
  .pros-title {
    left: -15px;
  }
  .pros-title .eng {
    font-size: 2.5rem;
  }
  .pros-title .ja {
    font-size: 2rem;
  }
}

.pros-txt {
  margin-left: 120px;
}
.pros-txt.type1 {
  margin-left: 80px;
}
@media all and (max-width: 639px) {
  .pros-txt.type1 {
    margin-left: 40px;
  }
}
@media all and (max-width: 639px) {
  .pros-txt {
    margin-left: 40px;
  }
}

.comparison-box {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.comparison-box .child {
  background: rgba(42, 75, 102, 0.5);
  padding: 30px;
  width: 47%;
  position: relative;
}
.comparison-box .child .list_check2 {
  font-size: 1.4rem;
}
.comparison-box .child img {
  max-width: 300px;
  margin: 0 auto;
}
@media all and (max-width: 639px) {
  .comparison-box .child {
    width: 95%;
    margin: 0 auto 25px;
    padding: 20px;
  }
  .comparison-box .child img {
    max-width: 80%;
  }
  .comparison-box .child .pros-title {
    left: -30px;
  }
  .comparison-box .child .list_check2 {
    font-size: 13px;
  }
}

.pick-title {
  position: relative;
  z-index: 2;
  font-size: 2rem;
  padding-left: 30px;
  margin-bottom: -15px;
}
.pick-title .eng {
  line-height: 1;
  font-family: "Cormorant", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  display: block;
  font-size: 3.2rem;
  color: #2a4b66;
}
.pick-title:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 40px;
  top: -20px;
  left: 0;
  background: #2a4b66;
  transform: rotate(20deg);
}
@media all and (max-width: 639px) {
  .pick-title {
    font-size: 1.4rem;
  }
  .pick-title .eng {
    font-size: 2.2rem;
  }
  .pick-title:before {
    left: 10px;
  }
}

.top-box2 {
  margin: 80px auto;
}
@media all and (max-width: 639px) {
  .top-box2 {
    margin-bottom: 40px;
  }
}

.top-icon {
  position: relative;
}
.top-icon:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/bg-top-icon.jpg) no-repeat center/cover;
  z-index: -2;
  opacity: 0.7;
}

.top-btn a {
  display: block;
  margin: 0 auto;
  width: 350px;
  padding: 15px 20px;
  font-weight: 600;
  background: #243d5b;
  color: #faf8f5;
  border-top: 2px solid #faf8f5;
  border-bottom: 2px solid #faf8f5;
  position: relative;
}
.top-btn a i {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
}

.icon-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 30px auto 0;
}
@media all and (max-width: 639px) {
  .icon-list {
    max-width: 90%;
  }
}
.icon-list.type1 {
  justify-content: flex-start;
}
.icon-list li {
  width: 17.6%;
  margin-bottom: 30px;
  margin-right: 3%;
}
.icon-list li:nth-child(5n) {
  margin-right: 0;
}
.icon-list li a {
  display: block;
  text-align: center;
  font-weight: 600;
  line-height: 1.4;
  height: 100%;
  transition: all 0.2s cubic-bezier(0.26, 0.06, 0, 1);
  position: relative;
  padding: 25px 0;
  transition: transform 0.2s cubic-bezier(0.26, 0.06, 0, 1);
}
@media all and (max-width: 639px) {
  .icon-list li a {
    padding: 18px 0;
  }
}
.icon-list li a figure {
  margin: 0 auto 10px;
  width: 50px;
}
@media all and (max-width: 639px) {
  .icon-list li a figure {
    width: 60px;
    margin-bottom: 10px;
  }
}
.icon-list li a .icon-title {
  color: #243d5b;
  position: relative;
  z-index: 2;
  transition: all 0.2s cubic-bezier(0.26, 0.06, 0, 1);
}
@media all and (max-width: 639px) {
  .icon-list li a .icon-title {
    padding: 5px;
  }
}
.icon-list li a:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-image: linear-gradient(to right bottom, #fff, #faf8f5);
  transition: transform 0.2s cubic-bezier(0.26, 0.06, 0, 1);
  z-index: -1;
}
.icon-list li a:hover {
  z-index: 2;
}
.icon-list li a:hover:before {
  transform: translate(-50%, -50%) scale(1.07, 1.02);
  opacity: 1;
}
.icon-list li a:hover .icon-title {
  color: #2a4b66;
}
@media all and (max-width: 639px) {
  .icon-list li {
    width: 48%;
    margin-bottom: 15px;
    margin-right: 4%;
  }
  .icon-list li:nth-child(5n) {
    margin-right: 4%;
  }
  .icon-list li:nth-child(2n) {
    margin-right: 0;
  }
}
.icon-list.type2 li {
  width: 23%;
  margin-right: 2.6666666667%;
}
.icon-list.type2 li:nth-child(3n) {
  margin-right: 2.6666666667%;
}
.icon-list.type2 li:nth-child(4n) {
  margin-right: 0;
}

.contents-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 60px auto;
}
.contents-list > li {
  width: 31%;
}
.contents-list > li .ttl01 {
  position: absolute;
  right: 0;
  top: -1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.contents-list > li .ttl01 .num {
  background: #e6e9f1;
  border-radius: 50%;
  width: 3.5rem;
  height: 3.5rem;
  line-height: 3.5rem;
  text-align: center;
  color: #fefefe;
  margin-bottom: 10px;
}
.contents-list > li .ttl01 .eng {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  color: #e6e9f1;
}
.contents-list > li .ttl02 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2rem;
}
.contents-list > li .icon {
  margin-bottom: 20px;
  width: 150px;
}
.contents-list > li .btn02 {
  margin: 0 auto;
  display: block;
  position: relative;
  padding: 15px 5px;
  background: #fefefe;
  text-align: center;
  color: #e6e9f1;
  font-family: "Shippori Mincho", "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 400;
  letter-spacing: 0.2em;
  transition: all 0.3s ease;
  border-radius: 5px;
  z-index: 0;
}
.contents-list > li .btn02 span {
  transition: all 0.3s ease;
  display: block;
}
.contents-list > li .btn02::before {
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 2px solid #e6e9f1;
  border-radius: 5px;
  background: #fefefe;
  z-index: -1;
  transition: all 0.3s ease;
}
.contents-list > li .btn02::after {
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(230, 233, 241, 0.2);
  border-radius: 5px;
  z-index: -2;
}
.contents-list > li a {
  display: block;
  position: relative;
  padding: 30px;
  background: #fefefe;
  border-radius: 20px;
  box-shadow: 10px 10px 35px rgba(203, 203, 203, 0.35);
}
.contents-list > li a:hover {
  transform: translate(5px, 5px);
}
.contents-list > li a:hover .btn02 {
  background: #fff;
  color: #243d5b;
}
.contents-list > li a:hover .btn02 span, .contents-list > li a:hover .btn02::before {
  transform: translate(8px, 8px);
}
@media all and (max-width: 896px) {
  .contents-list > li {
    width: 100%;
  }
  .contents-list > li a {
    padding: 40px;
  }
  .contents-list > li a .ttl02 {
    margin-bottom: 20px;
  }
  .contents-list > li a .icon {
    width: 150px;
    margin-bottom: 20px;
  }
  .contents-list > li:not(:last-child) {
    margin-bottom: 20px;
  }
}
@media all and (max-width: 639px) {
  .contents-list > li a {
    padding: 20px;
  }
  .contents-list > li a .ttl02 {
    font-size: 1.5rem;
  }
  .contents-list > li .btn02 {
    width: 80%;
  }
}

.sec6 {
  position: relative;
  color: #fff;
}
.sec6:before, .sec6:after {
  position: absolute;
  content: "";
  width: 100%;
  top: 0;
  left: 0;
}
.sec6:before {
  height: 100%;
  background: #e6e9f1;
}
.sec6:after {
  height: 80%;
  background: url(../img/bg-sec6.jpg) no-repeat center/cover;
}
@media all and (max-width: 1100px) {
  .sec6:after {
    height: 100%;
  }
}

.sec6-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
}
.sec6-wrap .sec6-img {
  width: 25%;
}
.sec6-wrap .sec6-txt {
  width: 65%;
  padding: 40px;
  line-height: 2;
}
.sec6-wrap .sec6-name {
  font-size: 4rem;
}
.sec6-wrap .sec6-name .small {
  font-size: 2rem;
  padding-right: 10px;
}
.sec6-wrap .sec6-name .eng {
  font-family: "Cormorant", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-size: 3rem;
  letter-spacing: 0.2em;
  padding-left: 20px;
}
@media all and (max-width: 639px) {
  .sec6-wrap .sec6-name {
    font-size: 2.2rem;
    line-height: 1.3;
  }
  .sec6-wrap .sec6-name .small {
    font-size: 1.3rem;
  }
  .sec6-wrap .sec6-name .eng {
    font-size: 1.5rem;
    display: block;
  }
}
@media all and (max-width: 1100px) {
  .sec6-wrap {
    margin-bottom: 0;
  }
  .sec6-wrap .sec6-img {
    width: 35%;
  }
  .sec6-wrap .sec6-txt {
    padding: 25px;
  }
}
@media all and (max-width: 639px) {
  .sec6-wrap {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .sec6-wrap .sec6-img {
    width: 60%;
    margin-bottom: 25px;
  }
  .sec6-wrap .sec6-txt {
    width: 100%;
    padding: 15px;
  }
}

.title01 {
  line-height: 1.4;
  font-size: 1.7rem;
  margin-bottom: 20px;
  color: #2a4b66;
}
.title01 span {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  color: #2a4b66;
  font-family: "Cormorant", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media all and (max-width: 639px) {
  .title01 {
    font-size: 1.4rem;
  }
  .title01 span {
    font-size: 1.43em;
  }
}
.title01.white {
  color: #fcfcfc;
}
.title01.white span {
  color: #fff;
}

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

.title03 {
  color: #243d5b;
  padding: 8px 15px;
  font-weight: 600;
  margin-top: 10px;
  font-size: 1.8rem;
  margin-bottom: 25px;
  position: relative;
  font-family: "Shippori Mincho", "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 400;
  letter-spacing: 0.2em;
}
.title03 span {
  font-family: "Cormorant", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #faf8f5;
  margin-right: 8px;
}
@media all and (max-width: 639px) {
  .title03 {
    font-size: 1.4rem;
  }
}
.title03:before, .title03:after {
  position: absolute;
  content: "";
  left: 0;
  height: 6px;
}
.title03:before {
  width: 40%;
  top: -6px;
  background: #faf8f5;
}
.title03:after {
  width: 65%;
  bottom: -6px;
  background: #2a4b66;
}
.title03.sbc:before {
  background: #faf8f5;
}
.title03.sbc:after {
  background: #e6e9f1;
}

.title04 {
  padding: 8px 0;
  text-align: center;
  background: #2a4b66;
  margin-bottom: 15px;
  color: #fff;
}
.title04.type1 {
  background: #2a4b66;
  color: #243d5b;
}

/* --news--
----------------------------------*/
.news-box {
  margin: 0 auto 0;
  max-width: 1200px;
  border-radius: 20px;
  position: relative;
  z-index: 10;
  display: flex;
  min-height: 150px;
  padding: 100px 50px 50px;
  background: white;
  border-left: double 7px #e6e9f1;
  border-right: double 7px #e6e9f1;
}
.news-box::before {
  position: absolute;
  content: "";
  left: 50%;
  top: -5px;
  transform: translateX(-50%);
  width: 1050px;
  height: 60px;
  background: url(../img/deco03.png) no-repeat center/contain;
  z-index: -1;
}
@media all and (max-width: 896px) {
  .news-box {
    margin-top: 0;
  }
}
@media all and (max-width: 639px) {
  .news-box {
    flex-direction: column;
    padding: 20px 10px;
    margin-bottom: 40px;
  }
}

.news-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 60px;
  text-align: center;
  color: #fff;
  position: relative;
}
.news-title span {
  display: block;
}
.news-title .eng {
  font-family: "Cormorant", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  position: relative;
  font-size: 2.5rem;
  letter-spacing: 0.1em;
}
.news-title .ja {
  position: relative;
  margin: 0 auto;
  margin-bottom: 20px;
  font-family: "Shippori Mincho", "Shippori Mincho", "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 900;
  letter-spacing: 0.2em;
}
@media all and (max-width: 639px) {
  .news-title {
    margin-bottom: 30px;
  }
  .news-title .eng {
    font-size: 1.8rem;
  }
  .news-title .ja {
    font-size: 1.3rem;
    writing-mode: inherit;
    margin-bottom: 0;
  }
}

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

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

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

.panel {
  display: none;
}

.topic-dl .topic-inner {
  display: flex;
  border-bottom: 1px dotted #ccc;
  position: relative;
  padding: 10px 0;
}
.topic-dl .topic-inner:before {
  width: 40px;
  border-bottom: 1px solid #e6e9f1;
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
}
.topic-dl .topic-inner dt {
  width: 7em;
  font-size: 1.4rem;
  font-weight: 700;
  color: #222;
}
@media all and (max-width: 639px) {
  .topic-dl .topic-inner dt {
    font-size: 12px;
  }
}
.topic-dl .topic-inner dd {
  padding-left: 20px;
}
.topic-dl .topic-inner dd a {
  font-weight: 600;
}
.topic-dl .topic-inner dd a:hover {
  color: #2a4b66;
}
@media all and (max-width: 639px) {
  .topic-dl {
    padding-bottom: 40px;
  }
}

.top-bg {
  background: url(../img/top-bg01.jpg) no-repeat center/cover;
  background-attachment: fixed;
  height: 400px;
}
@media all and (max-width: 1100px) {
  .top-bg {
    background-attachment: scroll;
  }
}

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

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

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

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

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

.single.phalf,
.single02.phalf,
.single03.phalf {
  padding: 60px 0;
}
@media all and (max-width: 1100px) {
  .single.phalf,
  .single02.phalf,
  .single03.phalf {
    padding: 60px 10px;
  }
}
@media all and (max-width: 896px) {
  .single.phalf,
  .single02.phalf,
  .single03.phalf {
    padding: 30px 0;
  }
}
.single.type2,
.single02.type2,
.single03.type2 {
  padding: 120px 0 0;
}

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

.lsingle {
  float: left;
}

.rsingle {
  float: right;
}

.mbox {
  background: #fefefe;
  padding: 30px;
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  border-radius: 10px;
}
.mbox.wk {
  border: 1px solid #2a4b66;
}
.mbox.transparent {
  background: transparent;
}
.mbox.box1 {
  background: #e6e9f1;
}
.mbox::before {
  border-radius: 10px;
}
@media all and (max-width: 639px) {
  .mbox {
    padding: 15px 10px;
  }
}

.mbox2 {
  background: #769bc5;
  padding: 30px;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  border-radius: 20px;
}
@media all and (max-width: 639px) {
  .mbox2 {
    padding: 15px;
  }
}

.mbox3 {
  position: relative;
  background: #fefefe;
  border-top: 5px solid #2a4b66;
  padding: 35px 30px;
  z-index: 3;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 0 8px rgba(36, 61, 91, 0.1);
}
@media all and (max-width: 639px) {
  .mbox3 {
    padding: 20px 15px;
  }
}

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

.quotation-box {
  padding: 30px 50px;
  line-height: 2;
  background-color: #eee;
  position: relative;
}
.quotation-box .q-right {
  left: 15px;
  top: 15px;
  position: absolute;
  width: 30px;
}
.quotation-box .q-right i {
  color: #ddd;
  font-size: 4rem;
}
.quotation-box .q-left {
  right: 15px;
  bottom: 15px;
  position: absolute;
  width: 30px;
}
.quotation-box .q-left i {
  color: #ddd;
  font-size: 4rem;
}
@media all and (max-width: 639px) {
  .quotation-box {
    padding: 30px 25px;
  }
  .quotation-box .q-right {
    width: 15px;
  }
  .quotation-box .q-right i {
    font-size: 2.5rem;
  }
  .quotation-box .q-left {
    width: 15px;
  }
  .quotation-box .q-left i {
    font-size: 2.5rem;
  }
}

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

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

.photo {
  width: 100%;
  margin: 10px auto 0;
}
.photo ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  align-items: stretch;
}
.photo li {
  width: 24%;
  margin: 0.5%;
}
.photo li a {
  display: block;
  text-align: center;
  width: 100%;
  height: 200px;
  line-height: 200px;
  overflow: hidden;
  border-radius: 10px;
}
.photo li a:hover img {
  transform: scale(1.1);
}
.photo li:last-child {
  margin-right: 0px;
}
.photo li img {
  vertical-align: middle;
  width: 100%;
  height: 200px;
  object-fit: cover;
  font-family: "object-fit: cover;";
  transition: 0.2s all ease-in;
}
.photo li p {
  height: 30px;
  font-size: 1.4rem;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  margin: 3px 0 10px;
  text-align: center;
  text-overflow: ellipsis;
}

@media all and (max-width: 639px) {
  .photo ul {
    margin-right: 0;
    margin-bottom: 0;
  }
  .photo li {
    float: left;
    width: 48%;
    margin: 0 1% 10px;
  }
  .photo li a {
    width: 100%;
    height: 150px;
    line-height: 150px;
  }
  .photo li img {
    max-width: 100%;
    max-height: 145px;
  }
  .photo li p {
    width: 100%;
  }
}
.bg-grid, .bg-concern {
  /* border-top: 1px solid #555;
   border-bottom: 1px solid #555;*/
  background-image: linear-gradient(90deg, transparent 95%, rgba(204, 204, 204, 0.2) 50%, rgba(204, 204, 204, 0.2)), linear-gradient(0deg, transparent 95%, rgba(204, 204, 204, 0.2) 50%, rgba(204, 204, 204, 0.2));
  background-size: 20px 20px;
  background-repeat: repeat;
}

.bg-map {
  background: url(../img/map.png) no-repeat right bottom;
}
@media all and (max-width: 639px) {
  .bg-map {
    -webkit-background-size: auto 200px;
    background-size: auto 200px;
    background-position: right top;
  }
}

.bg-nami {
  position: relative;
}
.bg-nami::before {
  content: " ";
  position: absolute;
  bottom: 0;
  transform: scale(1, -1);
  left: 0;
  right: 0;
  width: 100%;
  height: 22px;
  background-position: top center;
  background-repeat: repeat-x;
  background-size: 100%;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/24582/nami.svg);
  z-index: 1;
}
@media all and (max-width: 896px) {
  .bg-nami::before {
    height: 90px;
  }
}
@media all and (max-width: 639px) {
  .bg-nami::before {
    height: 40px;
  }
}

.bg-chousei {
  padding-top: 150px !important;
}
@media all and (max-width: 896px) {
  .bg-chousei {
    padding-top: 100px !important;
  }
}
@media all and (max-width: 639px) {
  .bg-chousei {
    padding-top: 50px !important;
  }
}

.bg-chousei2 {
  padding-top: 100px !important;
}
@media all and (max-width: 639px) {
  .bg-chousei2 {
    padding-top: 50px !important;
  }
}

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

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

/* mtitle
----------------------------------*/
.mtitle {
  margin: 0 auto 40px;
  position: relative;
  text-align: center;
}
.mtitle .eng,
.mtitle .eng2 {
  font-size: 1.8rem;
  color: #4880ae;
  position: relative;
  z-index: 2;
  font-family: "Cormorant", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.2;
  display: block;
}
.mtitle .eng2 {
  font-family: "Cormorant", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.mtitle .ja {
  font-family: "Shippori Mincho", "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 400;
  letter-spacing: 0.2em;
  position: relative;
  z-index: 2;
  font-size: 2.6rem;
  color: #243d5b;
  display: block;
  line-height: 1.5;
  margin-top: 10px;
}
.mtitle.sbc span.eng, .mtitle.sbc span.eng2 {
  color: #e6e9f1;
}
.mtitle.white .eng,
.mtitle.white .eng2 {
  color: #fff;
}
.mtitle.white .eng:before,
.mtitle.white .eng2:before {
  color: #fff;
}
.mtitle.white .ja {
  color: #fff;
}
.mtitle.mtitle_left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}
@media all and (max-width: 896px) {
  .mtitle .eng,
  .mtitle .eng2 {
    font-size: 1.8rem;
  }
}
@media all and (max-width: 639px) {
  .mtitle {
    text-align: center;
    margin: 0 auto 20px;
  }
  .mtitle .eng,
  .mtitle .eng2 {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  .mtitle .ja {
    font-size: 1.5rem;
  }
}

.mtitle0 {
  margin-top: 50px;
  margin-bottom: 35px;
  margin-left: 0;
  position: relative;
}
.mtitle0:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -10px;
  height: 2px;
  width: 200px;
  background-image: linear-gradient(to right, #e6e9f1, #faf8f5, #faf8f5);
  opacity: 0.8;
}
.mtitle0 .eng {
  position: absolute;
  font-size: 4.8rem;
  color: #e6e9f1;
  opacity: 0.2;
  display: block;
  font-family: "Cormorant", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  top: -40px;
  left: 0.5em;
  right: 0;
  margin: 0 auto;
}
.mtitle0 .ja {
  position: relative;
  z-index: 2;
  font-size: 2.2rem;
  color: #243d5b;
  font-family: "Shippori Mincho", "Shippori Mincho", "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 900;
  letter-spacing: 0.2em;
}
@media all and (max-width: 639px) {
  .mtitle0 {
    margin-top: 35px;
  }
  .mtitle0 .eng {
    top: -25px;
    font-size: 3.4rem;
  }
  .mtitle0 .ja {
    font-size: 1.8rem;
  }
}

.mtitles {
  position: relative;
}
.mtitles .ja {
  position: relative;
  z-index: 2;
  font-size: 1.8rem;
  color: #fff;
  background: #2a4b66;
  border-radius: 20px;
  padding: 2px 15px;
  margin-bottom: 10px;
  display: inline-block;
}
@media all and (max-width: 639px) {
  .mtitles .ja {
    font-size: 1.6rem;
  }
}

.mtitle2 {
  position: relative;
  margin-bottom: 40px;
}
.mtitle2 .eng {
  font-family: "Cormorant", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-size: 1.6rem;
  color: #4880ae;
}
.mtitle2 .ja {
  font-size: 2.2rem;
  padding-right: 10px;
  color: #243d5b;
}
.mtitle2 .small {
  font-size: 1.4rem;
  display: block;
}
.mtitle2.type2 {
  margin-bottom: 10px;
}
.mtitle2.white::before {
  color: #fff;
}
.mtitle2.white .ja,
.mtitle2.white .eng {
  color: #fff;
}
.mtitle2.sbc .eng {
  color: #e6e9f1;
}
.mtitle2.sbc .ja {
  color: #fff;
}
.mtitle2.sbc:before {
  color: #e6e9f1;
}
.mtitle2.sbc2 .eng {
  color: #e6e9f1;
}
.mtitle2.sbc2 .ja {
  color: #fff;
}
.mtitle2.sbc2:before {
  color: #e6e9f1;
}
@media all and (max-width: 896px) {
  .mtitle2 .ja {
    font-size: 1.8rem;
  }
}
@media all and (max-width: 639px) {
  .mtitle2:before {
    margin-right: 3px;
  }
  .mtitle2 .eng {
    font-size: 1rem;
  }
  .mtitle2 .ja {
    font-size: 1.3rem;
  }
}

.mtitle3 {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  position: absolute;
  min-height: 100px;
  top: 0;
  left: 0;
}
.mtitle3 .ja {
  display: block;
  font-size: 2.4rem;
  color: #222;
  letter-spacing: 0.2em;
  padding-right: 5px;
  line-height: 2;
}
.mtitle3 .eng {
  display: block;
  font-family: "Cormorant", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-size: 2rem;
  color: #2a4b66;
}
@media all and (max-width: 639px) {
  .mtitle3 {
    writing-mode: inherit;
    position: static;
    margin-bottom: 20px;
    min-height: initial;
    min-height: auto;
  }
  .mtitle3 .ja {
    font-size: 1.8rem;
  }
  .mtitle3 .eng {
    font-size: 1.4rem;
  }
}

.mtitle_line {
  position: relative;
  margin-bottom: 20px;
  color: #243d5b;
  border-top: 2px solid #2a4b66;
  font-size: 1.8rem;
  padding: 6px 10px 16px;
  font-family: "Shippori Mincho", "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 400;
  letter-spacing: 0.2em;
}
.mtitle_line span {
  font-size: 1.4rem;
  color: #faf8f5;
  margin-right: 10px;
}
.mtitle_line:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  content: "";
  opacity: 0.5;
  background-image: repeating-linear-gradient(-45deg, #1b3042, #1b3042 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media all and (max-width: 639px) {
  .mtitle_line {
    font-size: 1.4rem;
  }
  .mtitle_line span {
    font-size: 12px;
  }
}

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

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

.mtitle4 {
  font-weight: normal;
  text-align: center;
  font-size: 2.5rem;
  line-height: 1.5;
  font-weight: 600;
  font-family: "Shippori Mincho", "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 400;
  letter-spacing: 0.2em;
  margin-bottom: 40px;
}
.mtitle4 span {
  position: relative;
  display: inline-block;
  min-width: 10%;
}
.mtitle4 span:before, .mtitle4 span:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 2px;
  height: 1.6rem;
  background-color: #e6e9f1;
}
.mtitle4 span:before {
  left: -15px;
  -webkit-transform: rotate(-25deg);
  transform: rotate(-25deg);
}
.mtitle4 span:after {
  right: -15px;
  -webkit-transform: rotate(25deg);
  transform: rotate(25deg);
}
.mtitle4.white span:before, .mtitle4.white span:after {
  background-color: #2a4b66;
}
@media all and (max-width: 639px) {
  .mtitle4 {
    font-size: 1.4rem;
  }
}
@media all and (max-width: 320px) {
  .mtitle4 span:before {
    left: -5px;
  }
  .mtitle4 span:after {
    right: -5px;
  }
}

.mtitle5 {
  font-weight: normal;
  font-size: 2.2rem;
  font-weight: 600;
  font-family: "Shippori Mincho", "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 400;
  letter-spacing: 0.2em;
  display: inline-block;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
}
.mtitle5 span {
  position: relative;
  border-radius: 50%;
  width: 1.2em;
  height: 1.2em;
  padding: 5px;
  display: inline-block;
}
.mtitle5 span:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: 50%;
  background: #fefefe;
  border-radius: 50%;
}
.mtitle5.color-base span {
  background: #2a4b66;
}
.mtitle5.color-sub1 span {
  background: #e6e9f1;
}
.mtitle5.color-sub2 span {
  background: #e6e9f1;
}
.mtitle5.color-sub3 span {
  background: #e6e9f1;
}
.mtitle5.color-sub4 span {
  background: #e6e9f1;
}
.mtitle5.color-sub5 span {
  background: #e6e9f1;
}
@media all and (max-width: 639px) {
  .mtitle5 {
    font-size: 1.4rem;
  }
}

.mtitle6 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 30px;
  letter-spacing: 0.1em;
  letter-spacing: 0.2em;
  line-height: 1.4em;
  margin-bottom: 40px;
}
.mtitle6 .eng {
  display: table;
  margin: 0;
  font-size: 23px;
  letter-spacing: 0.1em;
  line-height: 1em;
  margin-top: 10px;
  font-family: "Cormorant", serif;
}
.mtitle6.type1 {
  color: #2a4b66;
}
.mtitle6.type1 .eng {
  color: #e5cb7f;
}
.mtitle6.type2 {
  color: #e6e9f1;
}
.mtitle6.type2 .eng {
  color: #d3cbd1;
}
.mtitle6.type3 {
  color: #e6e9f1;
}
.mtitle6.type3 .eng {
  color: #d49766;
}
.mtitle6.type4 {
  color: #e6e9f1;
}
.mtitle6.type4 .eng {
  color: #d49766;
}
.mtitle6.type5 {
  color: #e6e9f1;
}
.mtitle6.type5 .eng {
  color: #c4c7d2;
}
.mtitle6.type6 {
  color: #e6e9f1;
}
.mtitle6.type6 .eng {
  color: #c7d3d9;
}
@media all and (max-width: 639px) {
  .mtitle6 {
    font-size: 2rem;
  }
  .mtitle6 .eng {
    font-size: 1.3rem;
  }
}

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

.mtitle_point {
  position: relative;
  margin-bottom: 15px;
  font-size: 2rem;
  text-align: center;
  line-height: 1.4;
  font-family: "Shippori Mincho", "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #243d5b;
}
.mtitle_point:after {
  content: "";
  width: 30px;
  height: 2px;
  background: #e6e9f1;
  display: block;
  margin: 10px auto 0;
}
@media all and (max-width: 639px) {
  .mtitle_point {
    font-size: 1.5rem;
  }
}

.mtitle_box {
  background: #faf8f5;
  color: #243d5b;
  font-size: 1.6rem;
  position: relative;
  padding: 15px 30px 15px 15px;
  margin-bottom: 20px;
  line-height: 1.4;
  display: flex;
  align-items: center;
}
.mtitle_box:before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f30a";
  font-weight: 900;
  display: block;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
}
@media all and (max-width: 639px) {
  .mtitle_box {
    font-size: 1.3rem;
    display: block;
  }
  .mtitle_box .profile {
    display: block;
    padding: 4px 0 0;
  }
}

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

.mtext0 {
  font-size: 1.8rem;
}
.mtext0.type1 {
  font-size: 1.6rem;
}
@media all and (max-width: 639px) {
  .mtext0 {
    font-size: 1.3rem;
  }
  .mtext0.type1 {
    font-size: 1.2rem;
  }
}

.mtext1 {
  font-size: 2rem;
  line-height: 1.6;
}
@media all and (max-width: 639px) {
  .mtext1 {
    font-size: 1.3rem;
  }
  .mtext1.b-m40 {
    margin-bottom: 20px;
  }
}

.mtext2 {
  font-size: 2.4rem;
}
@media all and (max-width: 639px) {
  .mtext2 {
    font-size: 1.5rem;
  }
  .mtext2.b-m40 {
    margin-bottom: 20px;
  }
}

.mtext3 {
  font-size: 3rem;
}
@media all and (max-width: 896px) {
  .mtext3 {
    font-size: 2.3rem;
  }
}
@media all and (max-width: 639px) {
  .mtext3 {
    font-size: 1.6rem;
  }
  .mtext3.b-m40 {
    margin-bottom: 20px;
  }
}

.point-ttl {
  font-size: 2.5rem;
  text-align: center;
  font-weight: bold;
}
.point-ttl .num {
  color: #2a4b66;
  font-size: 5rem;
  padding-right: 0.2em;
  font-family: "Cormorant", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media all and (max-width: 639px) {
  .point-ttl {
    font-size: 1.7rem;
  }
  .point-ttl .num {
    font-size: 3.5rem;
  }
}

.mtitle_category {
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-family: "Cormorant", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.mtitle_category:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0ca";
  font-weight: 900;
  margin-right: 5px;
  color: #e6e9f1;
}
.mtitle_category.new:before {
  font-family: "Font Awesome 5 Free";
  content: "\f044";
  font-weight: 900;
}
@media all and (max-width: 639px) {
  .mtitle_category {
    font-size: 1.4rem;
  }
}

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

.btn01 a {
  width: 300px;
  margin: 40px auto 20px;
  color: #2a4b66;
  display: block;
  padding: 10px 30px;
  border: 1px solid #2a4b66;
  border-radius: 40px;
  position: relative;
  font-family: "Cormorant", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.btn01.type2 a {
  width: 360px;
  padding: 10px 20px;
}
.btn01 a::after {
  content: "●";
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  transition: all 0.5s ease;
  color: #e6e9f1;
}
.btn01.type2 a::after {
  right: 12px;
}
.btn01 a:hover {
  background: #2a4b66;
  color: #fff;
}
.btn01 a:hover::after {
  right: 20px;
  color: #fff;
}
.btn01 a .ja {
  font-family: "Shippori Mincho", "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
}
.btn01.mail {
  flex-basis: 100%;
}
.btn01.mail a {
  background: #2a4b66;
  margin: 15px auto 25px;
}
.btn01.mail a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 5px;
}
.btn01.left a {
  margin-left: 0;
}
.btn01.white a {
  background: #fff;
  border: 1px solid #fff;
}
.btn01.white a:hover {
  color: #243d5b;
}
.btn01.white a:hover::after {
  color: #2a4b66;
}
.btn01.white2 a {
  background: #fff;
  border: 1px solid #ddd;
}
.btn01.white2 a:hover {
  color: #243d5b;
}
.btn01.white2 a:hover::after {
  color: #2a4b66;
}
@media all and (max-width: 639px) {
  .btn01 a {
    width: 95%;
    padding: 15px 30px;
  }
  .btn01.type2 a {
    width: 95%;
    padding: 15px 18px;
  }
  .btn01.left a {
    margin-left: auto;
  }
}

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

.btn03 {
  width: 100%;
  margin: 20px auto 0;
}
.btn03 a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 20px 40px;
  background-color: #fdfdfc;
  border: 1px solid #d5cfca;
  line-height: 24px;
  color: #243d5b;
  border-radius: 10px;
}
.btn03 a i {
  font-size: 3rem;
  border-left: 1px solid #d5cfca;
  padding: 20px 0 20px 40px;
  padding-left: 40px;
}
.btn03 a:hover {
  background: #faf8f5;
  background-color: #f2ece4;
}

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

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

.btn-big {
  position: relative;
}
.btn-big::before {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% - 0.8rem);
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
  border-radius: 100rem;
  background-color: rgba(31, 73, 102, 0.05);
}
.btn-big a {
  background: #fefefe;
  max-width: 450px;
  margin: 0 auto;
  text-align: center;
  border-radius: 100rem;
  color: #243d5b;
  font-size: 2.3rem;
  font-weight: bold;
  padding: 25px 0;
  position: relative;
  display: block;
  box-shadow: rgba(255, 255, 255, 0.6) 0.4px 5.4px 0;
  transition: all 0.5s ease;
}
.btn-big a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50px;
  border: 7px solid transparent;
  background-image: linear-gradient(135deg, white 0%, #6899c1 100%);
  background-origin: border-box; /* 背景の基準位置はボーダーも含める */
  background-clip: border-box; /* 背景の適用範囲はボーダーも含める */
  -webkit-mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
  -webkit-mask-clip: padding-box, border-box;
  -webkit-mask-composite: destination-out;
  mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
  mask-clip: padding-box, border-box;
  mask-composite: exclude;
}
.btn-big a:hover {
  box-shadow: none;
  transform: translateY(5px);
}
.btn-big a span {
  display: block;
  font-size: 0.7em;
  color: #2a4b66;
  font-family: "Cormorant", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
}

/* news
----------------------------------*/
.news .news-inner {
  display: flex;
  flex-wrap: wrap;
  padding: 18px 6px;
  border-top: 1px solid #ccc;
}
.news .news-inner:last-of-type {
  border-bottom: 1px solid #ccc;
}
@media all and (max-width: 639px) {
  .news .news-inner {
    padding: 12px 4px;
  }
}
.news dt {
  width: 8em;
  float: left;
  font-weight: 600;
  color: #243d5b;
}
@media all and (max-width: 639px) {
  .news dt {
    width: 100%;
    float: none;
  }
}
.news dd {
  color: #243d5b;
}
.news dd a {
  color: #243d5b;
}
.news dd a:hover {
  opacity: 0.5;
}

.news-bl {
  overflow: hidden;
}
.news-bl dt {
  float: left;
  width: 8em;
  padding: 5px;
  line-height: 1.3;
  color: #2a4b66;
  text-align: center;
  border: 1px solid #2a4b66;
  border-radius: 30px;
  background: #fefefe;
  font-size: 1.3rem;
}
@media all and (max-width: 639px) {
  .news-bl dt {
    font-size: 12px;
  }
}
.news-bl dd {
  padding: 0 0 12px 9.2em;
  line-height: 1.6;
  border-bottom: 1px dotted #dddddd;
  margin: 0 0 10px;
}
.news-bl dd a {
  color: #243d5b;
  background-image: linear-gradient(to right, #2a4b66, #2a4b66);
  padding-bottom: 0.25em;
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  transition: background-size 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-weight: 700;
}
.news-bl dd a:hover {
  background-position: 0 100%;
  background-size: 100% 1px;
}
.news-bl dd:last-child {
  margin: 0;
  border-bottom: none;
}
@media all and (max-width: 639px) {
  .news-bl dt {
    float: none;
    width: 180px;
  }
  .news-bl dd {
    padding: 8px 5px;
    text-align: left;
  }
}

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

/* page-title
----------------------------------*/
.page-title {
  margin-left: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-left: auto;
  width: 100%;
  background: #fefefe;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/24582/p01.jpg) no-repeat center 80%/cover;
}
.page-title.p02 {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/24582/p02.jpg) no-repeat center/cover;
}
.page-title.p03 {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/24582/p03.jpg) no-repeat center/cover;
}
.page-title.p04 {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/24582/2.jpg) no-repeat center 20%/cover;
}
.page-title.p05 {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/24582/p05.jpgg) no-repeat center/cover;
}
.page-title::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #2a4b66;
  opacity: 0.5;
}
.page-title .inner {
  height: 550px;
  position: relative;
}
.page-title .page-lead {
  color: #fff;
  line-height: 1.8;
  position: absolute;
  left: 50%;
  bottom: 35%;
  transform: translateX(-50%);
  text-align: center;
}
.page-title .page-lead span {
  display: block;
}
.page-title .page-lead .ja {
  font-family: "Shippori Mincho", "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 400;
  letter-spacing: 0.2em;
  font-size: 3rem;
}
.page-title .page-lead .eng {
  font-size: 3rem;
  font-family: "Cormorant", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  letter-spacing: 0.05em;
}
@media all and (max-width: 1100px) {
  .page-title .inner {
    height: 400px;
  }
  .page-title .inner .page-lead {
    bottom: 35%;
  }
}
@media all and (max-width: 896px) {
  .page-title .inner {
    height: 300px;
  }
  .page-title .page-lead .ja {
    font-size: 1.4rem;
  }
  .page-title .page-lead .eng {
    font-size: 1.8rem;
  }
}
@media all and (max-width: 639px) {
  .page-title .inner {
    height: 250px;
  }
  .page-title .page-lead {
    width: 75%;
  }
}

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

.bg-main {
  position: relative;
}
.bg-main:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/bg-main.jpg) repeat;
  z-index: -2;
}

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

.bg-02 {
  position: relative;
}
.bg-02:before, .bg-02:after {
  position: absolute;
  content: "";
  width: 300px;
  height: 450px;
  z-index: -1;
}
.bg-02:before {
  right: -7%;
  top: 40%;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/24582/deco01.png) no-repeat center/contain;
}
.bg-02:after {
  left: -7%;
  bottom: 10%;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/24582/deco02.png) no-repeat center/contain;
}
.bg-02.type2:before {
  background: url(../img/deco03.png) no-repeat center/contain;
}
.bg-02.type2:after {
  background: url(../img/deco04.png) no-repeat center/contain;
}
.bg-02.type3:before {
  background: url(../img/deco05.png) no-repeat center/contain;
}
.bg-02.type3:after {
  background: url(../img/deco06.png) no-repeat center/contain;
}
@media all and (max-width: 1100px) {
  .bg-02:before, .bg-02:after {
    width: 200px;
    height: 234px;
  }
  .bg-02:before {
    right: 0;
  }
  .bg-02:after {
    left: 0;
  }
}
@media all and (max-width: 896px) {
  .bg-02 {
    padding-bottom: 300px;
  }
  .bg-02:before, .bg-02:after {
    width: 200px;
    height: 234px;
    top: auto;
    bottom: 0;
  }
  .bg-02:before {
    right: 0;
  }
  .bg-02:after {
    left: 0;
  }
}
@media all and (max-width: 639px) {
  .bg-02 {
    padding-bottom: 180px;
  }
  .bg-02:before, .bg-02:after {
    width: 46%;
    height: 150px;
  }
}

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

.bg-style {
  position: relative;
}
.bg-style:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/bg-style.png) repeat;
  opacity: 0.1;
}

.bg-pickup {
  position: relative;
}
.bg-pickup:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/bg-pickup.jpg) no-repeat top center/cover;
}
.bg-pickup .inner {
  padding: 35px 20px;
}
@media all and (max-width: 1100px) {
  .bg-pickup:before {
    height: 30vh;
  }
  .bg-pickup .inner {
    width: 90%;
    padding: 0;
    margin: 28vh auto 0;
  }
}

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

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

.about-box .mtext1 {
  font-size: 2.3rem;
  margin-bottom: 30px;
}
.about-box .mtext1 span {
  font-size: 2.5rem;
}
.about-box .img-box {
  margin-bottom: 20px;
}
@media all and (max-width: 896px) {
  .about-box .img-box {
    height: 350px;
  }
  .about-box .mtext1 {
    font-size: 2.2rem;
  }
}
@media all and (max-width: 639px) {
  .about-box .img-box {
    height: 220px;
  }
  .about-box .mtext1 {
    font-size: 1.6rem;
  }
}

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

.bg-w {
  position: relative;
}
.bg-w:before {
  position: absolute;
  content: "";
  width: calc(100% - 40px);
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #fefefe;
  z-index: -1;
}
.bg-w.round:before {
  border-radius: 200px;
}
.bg-w.chosei {
  margin-bottom: 120px;
}
@media all and (max-width: 896px) {
  .bg-w.round::before {
    border-radius: 100px;
  }
}
@media all and (max-width: 639px) {
  .bg-w .single,
  .bg-w .single03 {
    width: 90%;
  }
  .bg-w::before {
    width: calc(100% - 20px);
  }
  .bg-w.round::before {
    border-radius: 30px;
  }
  .bg-w.chosei {
    margin-bottom: 60px;
  }
}

.bg-body {
  position: relative;
}
.bg-body:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #fefefe;
  z-index: -1;
}

.bg-base {
  position: relative;
  padding-bottom: 60px;
}
.bg-base:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #2a4b66;
  border-bottom-left-radius: 400px;
  z-index: -2;
}

.bg-base2 {
  position: relative;
  margin-bottom: 120px;
}
.bg-base2.type2 {
  margin-bottom: 0;
}
.bg-base2:before {
  position: absolute;
  content: "";
  width: calc(100% - 40px);
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #2a4b66;
  border-radius: 20px;
  z-index: -2;
}
@media all and (max-width: 639px) {
  .bg-base2 {
    padding: 0 1em;
  }
  .bg-base2::before {
    width: calc(100% - 20px);
  }
}

.bg-sub {
  position: relative;
}
.bg-sub:before {
  position: absolute;
  content: "";
  width: calc(100% - 40px);
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #e6e9f1;
  z-index: -2;
}
.bg-sub.round:before {
  border-radius: 40px;
}
.bg-sub .single {
  max-width: 90%;
}
@media all and (max-width: 639px) {
  .bg-sub:before {
    width: calc(100% - 20px);
  }
  .bg-sub.round:before {
    border-radius: 20px;
  }
}

.bg-green {
  background: #2a4b66;
}

.bg-triangle {
  position: relative;
  overflow: hidden;
}
.bg-triangle .inner {
  position: relative;
  z-index: 2;
}
.bg-triangle:before {
  position: absolute;
  content: "";
  width: 25%;
  height: 100%;
  top: 0;
  left: -300px;
  background-image: linear-gradient(to right bottom, #e6e9f1 0%, #f4f4f4 50%, #f7f6f4 65%, #f9f7f5 75.5%, #f9f7f5 82.85%, #faf8f5 88%, #faf8f5 100%);
  transform: skew(20deg);
  z-index: 1;
  opacity: 0.2;
}
.bg-triangle:after {
  position: absolute;
  content: "";
  width: 5%;
  height: 50%;
  bottom: 0;
  right: 2%;
  background: #e6e9f1;
  transform: skew(20deg);
  opacity: 0.2;
}
@media all and (max-width: 896px) {
  .bg-triangle:before {
    left: -180px;
  }
}
@media all and (max-width: 639px) {
  .bg-triangle:before {
    left: -80px;
    transform: skew(10deg);
    width: 40%;
  }
  .bg-triangle:after {
    display: none;
  }
}
.bg-triangle.type1:before {
  background-image: linear-gradient(to right bottom, #2a4b66 0%, #bcc4ca 50%, #dbdee0 65%, #eaebea 75.5%, #f2f2f0 82.85%, #f6f5f2 88%, #faf8f5 100%);
}
.bg-triangle.type1:after {
  background: #2a4b66;
}

.bg-gray {
  position: relative;
}
.bg-gray:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #f4f4f4;
}
.bg-gray.bg-half {
  background: transparent;
  background-image: linear-gradient(to bottom, transparent 0%, transparent 50%, #f4f4f4 50.1%, #f4f4f4 100%);
}

.bg-gray2 {
  position: relative;
  margin-bottom: 40px;
}
.bg-gray2:before {
  position: absolute;
  content: "";
  width: calc(100% - 80px);
  height: 100%;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  background: #f4f4f4;
}
@media all and (max-width: 896px) {
  .bg-gray2:before {
    width: calc(100% - 10px);
  }
}

.bg-gray3 {
  position: relative;
}
.bg-gray3:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #f4f4f4;
  opacity: 0.6;
}

.bg-999 {
  background: #aaa;
}

.bg-green {
  position: relative;
  background: transparent;
}
.bg-green:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 85%;
  background: #faf8f5;
}
@media all and (max-width: 639px) {
  .bg-green:before {
    height: 90%;
  }
}

.bg-beige {
  position: relative;
}
.bg-beige:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #faf8f5;
  z-index: -2;
  opacity: 0.8;
}

.bg-beige2 {
  background: #faf8f5;
}

/* tbl
----------------------------------*/
.company {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 5px;
}
.company th,
.company td {
  padding: 10px;
  vertical-align: middle;
}
.company th {
  position: relative;
  background: #e6e9f1;
  color: #fff;
  font-weight: 600;
  width: 25%;
}
.company th::after {
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: #f9f9f9;
  border-width: 10px;
  border-left-color: #e6e9f1;
  margin-top: -10px;
}
.company td {
  background: #f9f9f9;
  padding-left: 20px;
  color: #243d5b;
}

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

.tbl {
  width: 100%;
  border-spacing: 0 10px;
  border-collapse: separate;
}
.tbl th,
.tbl td {
  padding: 15px;
  vertical-align: middle;
  font-weight: 500 !important;
  font-weight: 600;
}
.tbl th span,
.tbl td span {
  font-size: 90%;
  color: #565656;
}
.tbl th {
  background: #e6e9f1;
  border-top-left-radius: 30px;
  color: #fff;
  white-space: nowrap;
}
.tbl th span {
  color: #fff;
}
.tbl td {
  background: #fefefe;
  padding: 15px 30px;
  border: 2px dashed rgba(230, 233, 241, 0.3);
  border-left: none;
}
@media all and (max-width: 639px) {
  .tbl th,
  .tbl td {
    padding: 10px 5px;
  }
  .tbl th {
    border-top-left-radius: 15px;
  }
  .tbl.type1 th,
  .tbl.type1 td {
    display: block;
    width: 100%;
    text-align: center;
  }
  .tbl.type1 th {
    line-height: 1.6;
  }
}

.tbl2 {
  width: 100%;
}
.tbl2.black td {
  color: #243d5b;
}
.tbl2 th,
.tbl2 td {
  padding: 5px 12px;
  vertical-align: middle;
}
.tbl2 th {
  font-weight: 600;
  width: 25%;
  padding: 7px 12px;
}
.tbl2 th span {
  background: #e6e9f1;
  color: #fefefe;
  padding: 7px 20px;
  width: 100%;
  text-align: center;
  border-radius: 30px;
  display: inline-block;
  white-space: nowrap;
}
.tbl2 td {
  border-bottom: 3px dotted #dcdad9;
}
@media all and (max-width: 639px) {
  .tbl2 th,
  .tbl2 td {
    padding: 5px;
    width: 100%;
    display: block;
  }
}

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

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

.tbl-border2 {
  width: 100%;
  border-top: 1px solid #ccc;
}
.tbl-border2 th,
.tbl-border2 td {
  padding: 10px;
  border-bottom: 1px solid #ccc;
  vertical-align: middle;
  text-align: left;
  font-weight: 500;
}
.tbl-border2 tr.type1 th {
  width: 15%;
}
.tbl-border2 tr.type1 td {
  position: relative;
  padding-left: 15px;
}
.tbl-border2 tr.type1 td::before {
  content: "：";
  position: absolute;
  transform: translateY(-50%);
  left: 0;
  top: 50%;
}
@media all and (max-width: 639px) {
  .tbl-border2 th,
  .tbl-border2 td {
    padding: 3px;
  }
  .tbl-border2 tr.type1 th {
    letter-spacing: 0.1em;
    width: 26%;
  }
  .tbl-border2 tr.type1 td {
    padding-left: 10px;
  }
}

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

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

.timetable-wrap {
  box-shadow: 0 0 4px rgba(250, 248, 245, 0.2);
  margin-bottom: 20px;
}

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

.triangle {
  color: #e6e9f1;
}
.triangle span {
  font-size: 11px;
  letter-spacing: 0;
  display: block;
  color: #c5ccdf;
  font-weight: 600;
}
@media all and (max-width: 639px) {
  .triangle span {
    font-size: 9px;
  }
}
.triangle:before {
  content: "△";
}

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

/* list
----------------------------------*/
.list_common li {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px dashed rgba(230, 233, 241, 0.5);
}
.list_common li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.list_common2 li {
  padding-bottom: 4px;
  margin-bottom: 5px;
  border-bottom: 1px dotted #ccc;
}
.list_common2 li h3 {
  font-family: "Shippori Mincho", "Shippori Mincho", "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 900;
  letter-spacing: 0.2em;
}
.list_common2 li p {
  margin-top: 5px;
}
.list_common2 li span {
  font-size: 90%;
  background: #e6e9f1;
  color: #fff;
  padding: 3px 8px;
  letter-spacing: 0.2em;
}
.list_common2 li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

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

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

.list-inline3 li {
  display: inline-block;
}
.list-inline3 li:not(:last-of-type) {
  margin-right: 5px;
}

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

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

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

.ol-list {
  counter-reset: number;
  list-style: none;
  padding: 5px;
}
.ol-list.type1 {
  display: flex;
  flex-wrap: wrap;
}
.ol-list.type1 > li {
  width: 48%;
}
.ol-list.type1 > li:nth-child(2n) {
  margin-left: 4%;
}
.ol-list > li {
  line-height: 2;
  padding-top: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc;
  position: relative;
  padding-left: 3.5em;
  padding-bottom: 10px;
}
.ol-list > li .ol-lead {
  color: #0c161e;
  font-size: 2rem;
}
.ol-list > li .inner {
  font-weight: normal;
  display: block;
  padding: 10px;
  line-height: 1.6;
  font-size: 1.4rem;
}
.ol-list > li:before {
  counter-increment: number;
  content: counter(number);
  display: inline-block;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  font-size: 2.2rem;
  color: #fefefe;
  background: #e6e9f1;
  border-radius: 50%;
  padding: 5px;
  width: 1.8em;
  height: 1.8em;
  line-height: 1.8em;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Cormorant", serif;
  font-weight: bold;
}
@media all and (max-width: 639px) {
  .ol-list > li {
    font-size: 1.2rem;
  }
  .ol-list > li .ol-lead {
    font-size: 1.4rem;
  }
  .ol-list > li .inner {
    font-size: 0.9em;
  }
  .ol-list > li:before {
    font-size: 3rem;
  }
}
@media all and (max-width: 639px) {
  .ol-list > li {
    padding-left: 2.7em;
  }
  .ol-list > li::before {
    font-size: 1.6rem;
    width: 1.6em;
    height: 1.6em;
    line-height: 1.6em;
  }
}

.list_disc.sbc li:before {
  color: #e6e9f1;
}
.list_disc.type2 li:before {
  content: "・";
  color: #fff;
}
.list_disc.type3 li:not(:last-of-type) {
  margin-bottom: 20px;
}
.list_disc li {
  position: relative;
}
.list_disc li:not(:last-of-type) {
  margin-bottom: 5px;
}
.list_disc li:before {
  content: "●";
  color: #2a4b66;
  font-size: 9px;
  margin-right: 5px;
}

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

#main .blog-wrap > li,
.news-right .blog-wrap > li {
  width: 32%;
}
@media all and (max-width: 1367px) {
  #main .blog-wrap > li,
  .news-right .blog-wrap > li {
    width: 49%;
  }
}
@media all and (max-width: 639px) {
  #main .blog-wrap > li,
  .news-right .blog-wrap > li {
    width: 90%;
  }
}

.blog2 .blog-wrap > li {
  background: rgba(230, 233, 241, 0.5);
}

.blog-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 80px;
}
.blog-wrap * {
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.blog-wrap > li {
  width: calc((100% - 80px) / 3);
  position: relative;
  background: #fff;
  padding: 4rem 2em 1.5em;
  border-radius: 10px;
}
@media all and (max-width: 1100px) {
  .blog-wrap > li {
    width: 49%;
  }
}
.blog-wrap > li > a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}
.blog-wrap > li > a:hover ~ .blog-img img {
  opacity: 1;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
@media all and (max-width: 639px) {
  .blog-wrap > li {
    width: 90%;
    margin: 0 auto 10px;
  }
}
@media all and (max-width: 639px) {
  .blog-wrap {
    margin-top: 0;
  }
  .blog-wrap > li {
    padding: 2rem 1em 0.5em;
  }
}

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

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

.blog-detail-upper {
  position: absolute;
  top: -1em;
  right: 0.5em;
  z-index: 2;
  color: #4880ae;
  font-size: 12px;
}

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

.blog-date {
  line-height: 1.3;
  text-align: center;
  display: inline-block;
  color: #4880ae;
  font-size: 3rem;
  font-family: "Cormorant", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-weight: 700;
}
@media all and (max-width: 639px) {
  .blog-date {
    font-size: 2rem;
  }
}

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

.blog-title {
  line-height: 1.3;
  margin: 10px 0;
  color: #243d5b;
}

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

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

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

.category_nav li:not(:last-child) {
  margin-bottom: 5px;
}
.category_nav li a {
  display: block;
  padding: 10px;
  font-size: 13px;
  text-align: center;
  background: #f4f4f4;
  color: #243d5b;
}
.category_nav li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0a9";
  font-weight: 900;
  margin-right: 5px;
  color: #e6e9f1;
}
.category_nav li a:hover {
  opacity: 0.5;
}
.category_nav li:last-child a {
  border-bottom: none;
}

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

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

.b_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 120px;
  border: 10px solid #fff;
  aspect-ratio: 1/1;
}
@media all and (max-width: 896px) {
  .b_img img {
    aspect-ratio: initial;
    border-radius: 60px;
  }
}
@media all and (max-width: 639px) {
  .b_img img {
    border-radius: 20px;
    border: 5px solid #fff;
  }
}

.t-indent {
  text-indent: -2em;
  padding-left: 2em;
}

.img-100 {
  display: flex;
  gap: 1%;
}
.img-100 img {
  border-radius: 20px;
  object-fit: cover;
}
.img-100 .img1 {
  width: 30%;
}
.img-100 .img2 {
  width: 69%;
}

.ig_bnr {
  margin-top: 60px;
}
.ig_bnr a {
  display: block;
}
.ig_bnr a:hover {
  transform: scale(1.1);
}

.logo_img {
  max-width: 500px;
  margin: 0 auto 40px;
  position: relative;
  background: rgba(255, 255, 255, 0.1);
}
.logo_img::before, .logo_img::after {
  position: absolute;
  top: 0;
  content: "";
  width: 10px;
  height: 100%;
  display: inline-block;
  box-sizing: border-box;
}
.logo_img::before {
  border-left: dotted 2px #e6e9f1;
  border-top: dotted 2px #e6e9f1;
  border-bottom: dotted 2px #e6e9f1;
  left: 0;
}
.logo_img::after {
  border-top: dotted 2px #e6e9f1;
  border-right: dotted 2px #e6e9f1;
  border-bottom: dotted 2px #e6e9f1;
  right: 0;
}
.logo_img img {
  width: 300px;
}

.v-img {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.v-img img {
  height: 270px;
  width: 100%;
  object-fit: cover;
}

.b-txt {
  border-bottom: 2px dashed rgba(255, 255, 255, 0.5);
  padding-bottom: 0.2em;
  line-height: 2.2;
}

.dot_line {
  color: #e6e9f1;
  font-size: 2rem;
  text-align: center;
  margin: 60px 0;
  line-height: 0.7;
}

.wave {
  margin-top: 60px;
}

.lap_img {
  position: relative;
  text-align: center;
}
.lap_img .main {
  position: relative;
  z-index: 10;
}
.lap_img .deco1,
.lap_img .deco2 {
  position: absolute;
  top: 0;
  left: 0;
}
.lap_img .deco1 {
  transform: rotate(6deg);
  z-index: 2;
}
.lap_img .deco2 {
  transform: rotate(12deg);
  z-index: 1;
}
.lap_img img {
  height: 600px;
  border: 1px solid #fff;
}
@media all and (max-width: 896px) {
  .lap_img {
    margin-bottom: 40px;
  }
  .lap_img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    padding: 0 2em;
  }
}
@media all and (max-width: 639px) {
  .lap_img img {
    height: 250px;
    padding: 0 1em;
  }
}

.img-top {
  object-position: top;
}

.img_col4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.img_col4 > div {
  width: 24%;
  height: 250px;
}
.img_col4 > div:nth-child(2) {
  margin-top: 40px;
}
.img_col4 > div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media all and (max-width: 1100px) {
  .img_col4 > div {
    width: 24%;
    height: 250px;
  }
}
@media all and (max-width: 639px) {
  .img_col4 > div {
    width: 49%;
    height: 150px;
  }
  .img_col4 > div:nth-child(2), .img_col4 > div:nth-child(4) {
    margin-top: 10px;
  }
}

.line-dot {
  border-bottom: 10px dotted #faf8f5;
  margin: 30px 0;
}
.line-dot.type2 {
  border-bottom: 6px dotted #736a63;
}

.img-box {
  height: 500px;
}
.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-r {
  border-radius: 10px;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.img-r2 {
  border-radius: 50% 50% 0 0;
  aspect-ratio: 1/1;
  object-fit: cover;
}

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

.w350 {
  width: 350px;
}

.w450 {
  width: 450px;
}
@media all and (max-width: 639px) {
  .w450 {
    max-width: 600px;
    width: 100%;
  }
}

.w200 {
  width: 200px;
}

.spbr {
  display: none;
}
@media all and (max-width: 639px) {
  .spbr {
    display: block;
  }
}

.color1 {
  color: #2a4b66;
}

.color2 {
  color: #e6e9f1;
}

.color3 {
  color: #243d5b;
}

.color4 {
  color: #fdb9c8;
}

.color5 {
  color: #243d5b;
}

.color6 {
  color: #243d5b;
}

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

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

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

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

.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: 700;
  text-decoration: underline;
}
.txt-link:after {
  font-family: "Font Awesome 5 Free";
  content: "\f101";
  font-weight: 900;
  padding-left: 5px;
}
.txt-link:hover {
  text-decoration: none;
}

.telbnr {
  margin: 0 auto;
  padding-top: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.telbnr li {
  border: 1px solid #2a4b66;
  text-align: center;
  line-height: 1.4;
  width: 70%;
  background: #e6e9f1;
  border-radius: 20px 0 20px 0;
}
.telbnr li a {
  display: block;
  font-size: 3rem;
  font-family: "Cormorant", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #2a4b66;
  background: rgba(255, 255, 255, 0.3);
  padding: 20px;
  white-space: nowrap;
}
.telbnr li a.fax {
  pointer-events: none;
  cursor: default;
}
.telbnr li a .mn {
  font-weight: 600;
  color: #2a4b66;
  background: #fff;
  padding: 5px 20px;
  border-radius: 10px;
  display: block;
  font-size: 1.5rem;
  width: 40%;
  margin: 0 auto 20px;
}
.telbnr li a .icon {
  display: block;
  text-align: center;
  margin-bottom: 20px;
}
.telbnr li a .icon img {
  max-width: 50px;
}
.telbnr li a:hover {
  background: #fefefe;
  color: #2a4b66;
}
.telbnr li a:hover .mn {
  color: #fff;
  background: #2a4b66;
}
@media all and (max-width: 1100px) {
  .telbnr li a {
    font-size: 2.5rem;
  }
}
@media all and (max-width: 896px) {
  .telbnr li {
    width: 100%;
  }
}
@media all and (max-width: 639px) {
  .telbnr {
    max-width: 100%;
  }
  .telbnr li {
    width: 100%;
  }
  .telbnr li:last-of-type {
    margin-left: auto;
  }
  .telbnr li a {
    font-size: 2rem;
    margin-top: 8px;
    border-radius: 10px;
    padding: 10px;
  }
  .telbnr li a .mn {
    border-radius: 5px;
    font-size: 1.2rem;
    margin-bottom: 10px;
    width: 80%;
  }
  .telbnr li a .icon {
    margin-bottom: 10px;
  }
  .telbnr li a .icon img {
    max-width: 30px;
  }
}

.telbnr-ttl {
  font-weight: 500;
  font-size: 1.8rem;
  color: #243d5b;
  margin-top: -25px;
}
.telbnr-ttl span {
  font-weight: 600;
  background: #2a4b66;
  color: #fff;
  padding: 2px 15px;
  border-radius: 5px;
}
@media all and (max-width: 639px) {
  .telbnr-ttl {
    font-size: 1.4rem;
  }
}

/* breadcrumb
----------------------------------*/
.breadcrumb {
  max-width: 1200px;
  margin: 20px auto 20px;
  font-size: 1.2rem;
}
.breadcrumb li {
  display: inline;
  color: rgba(255, 255, 255, 0.5);
}
.breadcrumb li a {
  color: #fff;
}
.breadcrumb li + li:before {
  margin: 0 10px;
  content: ">";
}
@media all and (max-width: 639px) {
  .breadcrumb {
    font-size: 12px;
  }
}

/* form
----------------------------------*/
.form-contents {
  width: 100% !important;
  height: auto !important;
  padding: 0 !important;
  border-radius: 15px 15px 0 0 !important;
  background: transparent !important;
  color: #243d5b;
}
.form-contents .form-thanks-msg {
  background: #f3f5f7 !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.form-contents .form-thanks-msg p {
  color: #243d5b !important;
}
.form-contents .form-thanks-msg .back-home-btn a {
  color: #e6e9f1 !important;
  border: 2px solid #e6e9f1 !important;
}
.form-contents .form-thanks-msg .back-home-btn a:hover {
  background: #e6e9f1 !important;
  color: #fff !important;
}
.form-contents .requibase_color::before {
  background: transparent !important;
  padding: 5px 10px !important;
  content: "*" !important;
  color: #e6e9f1 !important;
  font-size: 1.8rem !important;
}
.form-contents .required::before {
  background: #2a4b66 !important;
}
.form-contents .textarea {
  background-color: #f8f9fa !important;
  border: none !important;
  padding: 25px 15px !important;
  border-radius: 5px !important;
}
.form-contents input[type=text],
.form-contents textarea {
  font-size: 16px;
}
.form-contents input[type=select],
.form-contents .textarea-serect,
.form-contents .textarea-datetime {
  border-radius: 5px !important;
}
.form-contents .submit-btn {
  background-color: #fff !important;
  border: none !important;
  color: #2a4b66 !important;
  border-radius: 30px !important;
  position: relative !important;
  border: 1px solid #2a4b66 !important;
}
.form-contents .submit-btn::before {
  display: none !important;
}
.form-contents .submit-btn:hover {
  opacity: 0.6;
}
.form-contents .custom-area p {
  padding: 10px 0;
}
.form-contents dl dd:not(.pattern-exclusion) {
  border-bottom: none !important;
  padding-bottom: 0 !important;
}

@media all and (max-width: 639px) {
  .form-contents {
    padding: 0 10px !important;
  }
  .form-contents dl {
    margin: 10px 0 !important;
  }
  .form-contents dl dt {
    float: none !important;
    padding-top: 15px !important;
  }
  .form-contents dl dd {
    padding-left: 0 !important;
    padding-bottom: 15px !important;
    padding-top: 10px !important;
    line-height: 20px !important;
  }
  .form-contents .submit-btn {
    width: 250px !important;
  }
}
.thanks {
  padding: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  border-radius: 10px;
}
@media all and (max-width: 639px) {
  .thanks {
    max-width: 94%;
    padding: 30px 15px;
  }
}

.shadow {
  box-shadow: 0 0 10px rgba(36, 61, 91, 0.1);
}

.policy {
  padding: 30px;
  background: #fdfdfc;
}

/* accordion
----------------------------------*/
.accordion {
  border: 1px solid #ccc;
}
.accordion dt,
.accordion dd {
  position: relative;
  padding: 1em;
}
.accordion dt {
  cursor: pointer;
  font-size: 1.7rem;
  font-family: "Shippori Mincho", "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #243d5b;
}
.accordion dt:after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f067";
  font-weight: 900;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 1.7rem;
}
.accordion dt.on:after {
  font-family: "Font Awesome 5 Free";
  content: "\f068";
  font-weight: 900;
}
.accordion dd {
  display: none;
  padding: 25px;
  background: rgba(255, 255, 255, 0.1);
  color: #243d5b;
}
@media all and (max-width: 639px) {
  .accordion dt {
    font-size: 1.3rem;
  }
  .accordion dd {
    padding: 15px;
  }
}

.mtitle_small {
  font-weight: 600;
  padding: 0 0 4px;
  font-size: 1.6rem;
  border-bottom: 1px solid #faf8f5;
  position: relative;
  margin-bottom: 15px;
}
.mtitle_small:before {
  font-family: "Font Awesome 5 Free";
  content: "\f138";
  font-weight: 900;
  margin-right: 5px;
  color: #e6e9f1;
}
.mtitle_small.type1 {
  border-bottom: 1px solid #f2ece4;
  color: #243d5b;
}
.mtitle_small.type1:before {
  color: #2a4b66;
}
.mtitle_small.type2 {
  border-bottom: 1px solid #f2ece4;
  color: #243d5b;
}
.mtitle_small.type2:before {
  color: #e6e9f1;
}
.mtitle_small span {
  font-size: 1.45rem;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 0;
  letter-spacing: 0.05em;
}
@media all and (max-width: 639px) {
  .mtitle_small {
    padding: 4px;
    font-size: 1.3rem;
  }
  .mtitle_small span {
    font-size: 1.1rem;
  }
  .mtitle_small:before {
    font-size: 1.1rem;
  }
}

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

.mtitle_small3 {
  font-family: "Shippori Mincho", "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #243d5b;
  padding: 10px 0;
  font-size: 1.6rem;
  border-top: 1px solid #e6e9f1;
  border-bottom: 1px solid #e6e9f1;
  margin-bottom: 15px;
}
.mtitle_small3:before {
  content: "―";
  margin-right: 8px;
  color: #e6e9f1;
}
@media all and (max-width: 639px) {
  .mtitle_small3 {
    padding: 6px 0;
    font-size: 1.3rem;
  }
}

.mtitle_small4 {
  position: relative;
  background: #fff;
  border: 1px solid #ddd;
  font-size: 2rem;
  padding: 15px 15px 15px 30px;
  margin-bottom: 20px;
  font-family: "Shippori Mincho", "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 400;
  letter-spacing: 0.2em;
}
.mtitle_small4.type1:before {
  background: rgba(230, 233, 241, 0.8);
}
.mtitle_small4:before {
  position: absolute;
  top: 15%;
  left: 8px;
  width: 6px;
  height: 70%;
  content: "";
  background: rgba(42, 75, 102, 0.8);
}
@media all and (max-width: 639px) {
  .mtitle_small4 {
    font-size: 1.6rem;
    padding: 12px 12px 12px 24px;
  }
}

.mtitle_small5 {
  position: relative;
  text-align: center;
  font-family: "Shippori Mincho", "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 400;
  letter-spacing: 0.2em;
  font-size: 1.8rem;
  color: #2a4b66;
  margin-bottom: 35px;
}
.mtitle_small5:after {
  position: absolute;
  content: "";
  transform: translateX(-50%);
  left: 50%;
  bottom: -10px;
  height: 2px;
  width: 150px;
  background: #2a4b66;
}
@media all and (max-width: 639px) {
  .mtitle_small5 {
    font-size: 1.4rem;
  }
}
.mtitle_small5.sbc {
  color: #e6e9f1;
}
.mtitle_small5.sbc:after {
  background: #e6e9f1;
}

/*photoギャラリー*/
.gallery {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.gallery.p_none li p {
  display: none;
}
.gallery.col5 li {
  width: 19.2%;
  margin: 0 1% 1% 0;
}
.gallery.col5 li:nth-child(5n) {
  margin-right: 0;
}
.gallery.col5 li a {
  height: 150px;
}
@media all and (max-width: 639px) {
  .gallery.col5 li {
    width: 49%;
    margin-right: 2%;
    margin-bottom: 1%;
  }
  .gallery.col5 li a {
    height: 100px;
  }
  .gallery.col5 li:nth-child(2n) {
    margin-right: 0;
  }
}
.gallery.col4 li {
  width: 23%;
  margin: 0 2.333333% 1% 0;
}
.gallery.col4 li:nth-child(4n) {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .gallery.col4 li {
    width: 49%;
    margin-right: 2%;
    margin-bottom: 1%;
  }
  .gallery.col4 li a {
    height: 100px;
  }
  .gallery.col4 li:nth-child(2n) {
    margin-right: 0;
  }
}
.gallery.col3 li {
  width: 32%;
  margin: 0 1% 1% 0;
}
.gallery.col3 li:nth-child(3n) {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .gallery.col3 li {
    width: 49%;
    margin-right: 2%;
    margin-bottom: 1%;
  }
  .gallery.col3 li:nth-child(3n) {
    margin-right: 2%;
  }
  .gallery.col3 li:nth-child(2n) {
    margin-right: 0;
  }
}
.gallery.col2 {
  justify-content: space-between;
}
.gallery.col2 li {
  width: 48%;
}
@media all and (max-width: 639px) {
  .gallery.col2 li {
    width: 49%;
  }
  .gallery.col2 li:nth-child(3n) {
    margin-right: 2%;
  }
  .gallery.col2 li:nth-child(2n) {
    margin-right: 0;
  }
}
.gallery.type2 li a {
  height: 250px;
}
.gallery.type2 li a img {
  border-radius: 20px;
  border: 1px solid #fff;
}
.gallery li a {
  display: block;
  text-align: center;
  padding: 0px;
  height: 360px;
}
.gallery li a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover;";
  border-radius: 120px;
  border: 10px solid #fff;
}
@media all and (max-width: 639px) {
  .gallery li a {
    height: 100px;
  }
}
.gallery li p {
  font-size: 90%;
  margin: 3px 0 6px;
  text-align: center;
}
.gallery li .g-cap {
  text-align: center;
  font-size: 90%;
  margin: 2px 0 6px;
}
@media all and (max-width: 639px) {
  .gallery li a {
    height: 150px;
  }
  .gallery li a img {
    border-radius: 10px;
  }
  .gallery.type2 li a {
    height: 150px;
  }
}

.slide_wrapper {
  position: relative;
}
.slide_wrapper::before, .slide_wrapper::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 22px;
  background-size: 100%;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/24582/nami.svg) repeat-x center top;
  z-index: 1;
}
.slide_wrapper::before {
  content: " ";
  top: 0;
}
.slide_wrapper::after {
  content: " ";
  bottom: -1px;
  transform: scale(1, -1);
}
.slide_wrapper .slide_list,
.slide_wrapper .slide_list2 {
  gap: 20px;
}
.slide_wrapper .slide_list img,
.slide_wrapper .slide_list2 img {
  height: 300px;
  box-shadow: none;
}
.slide_wrapper .slide_list > li:nth-child(2n),
.slide_wrapper .slide_list2 > li:nth-child(2n) {
  margin-top: 0;
}
.slide_wrapper .slide_list {
  margin-bottom: 20px;
}
@media all and (max-width: 639px) {
  .slide_wrapper .slide_list img,
  .slide_wrapper .slide_list2 img {
    height: 150px;
  }
}

.simply-scroll-container {
  position: relative;
}

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

#loopSlide {
  overflow: hidden;
  margin: 0;
  padding: 0;
}
#loopSlide li {
  float: left;
  padding: 0;
  margin: 20px 20px 0 0;
  width: 300px;
  height: auto;
}
#loopSlide li a img {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
}
#loopSlide li a:hover {
  opacity: 0.6;
}
@media all and (max-width: 639px) {
  #loopSlide li {
    width: 200px;
  }
  #loopSlide li a img {
    height: 200px;
  }
}

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

.list3 {
  display: flex;
  flex-wrap: wrap;
}
.list3.type1 > li,
.list3.type1 .child {
  background-color: #fff;
  padding: 10px;
}
.list3 > li,
.list3 .child {
  width: 31%;
  position: relative;
  margin-right: 3.495%;
}
.list3 > li:nth-child(3n),
.list3 .child:nth-child(3n) {
  margin-right: 0;
}
.list3 > li:not(:nth-last-child(-n+3)),
.list3 .child:not(:nth-last-child(-n+3)) {
  margin-bottom: 30px;
}
@media all and (max-width: 639px) {
  .list3 > li,
  .list3 .child {
    width: 95%;
    margin: 0 auto 20px;
  }
  .list3 > li:nth-child(3n),
  .list3 .child:nth-child(3n) {
    margin-right: auto;
  }
  .list3 > li:last-child,
  .list3 .child:last-child {
    margin-bottom: 0;
  }
}
.list3 > li figure,
.list3 .child figure {
  width: 100%;
  height: 200px;
  margin-bottom: 20px;
}
.list3 > li figure img,
.list3 .child figure img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.list4 {
  display: flex;
  flex-wrap: wrap;
  margin-left: -2%;
  margin-top: -30px;
}
.list4.type1 {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  justify-content: center;
}
.list4.type1 li {
  padding: 15px;
  background: rgba(230, 233, 241, 0.2);
  border-radius: 10px;
  display: block;
  transition: all 0.2s ease-in;
}
.list4.type1 li a {
  display: block;
}
.list4.type1 li a:hover {
  position: relative;
  transform: translate(0, 10px);
}
.list4.type1 li img {
  width: 60px;
  margin: 0 auto 10px;
}
@media all and (max-width: 639px) {
  .list4.type1 > li {
    width: 48%;
  }
  .list4.type1 > li img {
    width: 50px;
  }
}
.list4 li {
  margin-left: 2%;
  margin-top: 30px;
  width: 23%;
}
@media all and (max-width: 1100px) {
  .list4 li {
    width: 31.33%;
  }
}
@media all and (max-width: 639px) {
  .list4 {
    margin-left: auto;
  }
  .list4 li {
    width: 90%;
    margin: 25px auto 0;
  }
}

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

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

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

.note {
  padding: 4em 2em;
  margin-top: 10px;
  background: rgba(42, 75, 102, 0.1);
  border-radius: 30px;
}
@media all and (max-width: 639px) {
  .note {
    font-size: 1.15rem;
  }
}
.note.type1 {
  background: #f4efe9;
}

.note2 {
  padding: 15px;
  background: rgba(42, 75, 102, 0.1);
}
@media all and (max-width: 639px) {
  .note2 {
    padding: 10px;
  }
}

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

.daily-dl {
  position: relative;
}
.daily-dl .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
  position: relative;
}
.daily-dl .inner:before {
  position: absolute;
  content: "";
  height: 125%;
  width: 8px;
  top: 25px;
  left: 36px;
  background: #e6e9f1;
}
.daily-dl .inner:last-child:before {
  display: none;
}
@media all and (max-width: 639px) {
  .daily-dl .inner {
    width: 100%;
    margin: 0 auto 20px;
  }
  .daily-dl .inner:before {
    width: 8px;
    height: 130%;
    left: 30px;
    top: 15px;
  }
}
.daily-dl .inner dt {
  position: relative;
  width: 80px;
  height: 80px;
  line-height: 80px;
  background: #e6e9f1;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
  z-index: 4;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
}
.daily-dl .inner dt.line2 {
  padding-top: 20px;
  line-height: 1;
}
.daily-dl .inner dt.big {
  font-size: 3rem;
}
@media all and (max-width: 639px) {
  .daily-dl .inner dt {
    font-size: 1.2rem;
  }
  .daily-dl .inner dt.big {
    font-size: 2rem;
  }
}
.daily-dl .inner dd {
  flex: 1;
  position: relative;
  font-weight: bold;
  background: #fff;
  left: -10px;
  margin-top: 10px;
  padding: 15px 10px 15px 25px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 3px;
  color: #243d5b;
}
.daily-dl .inner dd table th,
.daily-dl .inner dd table td {
  font-weight: 500;
}
.daily-dl .inner dd table th {
  padding-right: 1em;
}
@media all and (max-width: 639px) {
  .daily-dl .inner dd {
    margin-top: 10px;
  }
}

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

.time-list.type_center {
  max-width: 480px;
  margin: 0 auto;
}
.time-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.time-list li .txtarea {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  padding: 0px 40px 30px 40px;
}
.time-list li .txtarea:before {
  content: "";
  position: absolute;
  left: 118px;
  top: 0;
  height: 100%;
  width: 2px;
  background-color: #d3d3d3;
}
.time-list li .txtarea:last-child:before {
  display: none;
}
.time-list li .txtarea:after {
  content: "";
  position: absolute;
  left: 110px;
  top: 0;
  width: 20px;
  height: 20px;
  background-color: #2a4b66;
  z-index: 1;
  border: 2px solid #2a4b66;
  border-radius: 50%;
}
.time-list li .ttl {
  font-size: 1.4rem;
  line-height: 1.4;
}
.time-list li .time {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100px;
  flex: 0 0 100px;
  text-align: end;
  min-width: 0;
  overflow-wrap: break-word;
  padding-bottom: 1rem;
  color: #e6e9f1;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.5rem;
}

@media all and (max-width: 1100px) {
  .time-list {
    padding-left: 0;
  }
  .time-list li .txtarea {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    padding: 0px 0px 30px 40px;
    text-align: left;
  }
  .time-list li .txtarea:before {
    content: "";
    position: absolute;
    left: 88px;
  }
  .time-list li .txtarea:last-child:before {
    display: none;
  }
  .time-list li .txtarea:after {
    content: "";
    position: absolute;
    left: 79px;
  }
  .time-list li .time {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 70px;
    flex: 0 0 70px;
  }
}
@media all and (max-width: 896px) {
  .time-list-img {
    margin-bottom: 20px;
  }
  .time-list-img img {
    height: 350px;
    width: 100%;
  }
  .time-list li .time {
    flex: 0 0 120px;
  }
  .time-list li .time .txtarea {
    padding: 0px 0px 30px 80px;
  }
  .time-list li .time .txtarea::before {
    left: 158px;
  }
  .time-list li .time .txtarea::after {
    left: 149px;
  }
}
@media all and (max-width: 639px) {
  .time-list {
    padding-left: 0;
  }
  .time-list li .txtarea {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    padding: 0px 0px 30px 40px;
    text-align: left;
  }
  .time-list li .txtarea:before {
    content: "";
    position: absolute;
    left: 88px;
  }
  .time-list li .txtarea:last-child:before {
    display: none;
  }
  .time-list li .txtarea:after {
    content: "";
    position: absolute;
    left: 79px;
  }
  .time-list li .time {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 72px;
    flex: 0 0 72px;
    font-size: 1.3rem;
  }
}
.number {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-size: 4.5rem;
  color: #2a4b66;
  line-height: 1;
  top: 0;
  left: 0;
  position: absolute;
}
@media all and (max-width: 639px) {
  .number {
    font-size: 2.8rem;
    top: 10px;
  }
}

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

.blog-month {
  margin-bottom: 10px;
}
.blog-month ul {
  display: flex;
  flex-wrap: wrap;
}
.blog-month ul li {
  width: 49%;
  padding: 5px 0;
  margin-bottom: 5px;
  text-align: center;
  letter-spacing: 0;
  background: #333;
}
.blog-month ul li:nth-child(2n) {
  margin-left: 2%;
}
.blog-month ul li a {
  color: #fff;
  font-size: 12px;
}

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

.faq-dl .faq-inner {
  padding: 10px;
  margin-bottom: 10px;
  padding-bottom: 15px;
}
.faq-dl .faq-inner:first-of-type {
  border-top: 1px solid rgba(230, 233, 241, 0.6);
}
.faq-dl .faq-inner:last-of-type {
  border-bottom: 1px solid rgba(230, 233, 241, 0.6);
}
.faq-dl .faq-inner:not(:last-of-type) {
  border-bottom: 1px solid rgba(230, 233, 241, 0.6);
}
.faq-dl .faq-inner dt,
.faq-dl .faq-inner dd {
  position: relative;
  padding: 0 5px 5px 45px;
}
.faq-dl .faq-inner dt:before,
.faq-dl .faq-inner dd:before {
  position: absolute;
  content: "";
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  left: 0;
  top: 0;
  font-family: "Cormorant", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.faq-dl .faq-inner dt {
  margin-bottom: 10px;
  font-size: 110%;
  font-family: "Shippori Mincho", "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 400;
  letter-spacing: 0.2em;
}
.faq-dl .faq-inner dt:before {
  content: "Q";
  color: #fff;
  font-size: 2rem;
  background: #2a4b66;
}
.faq-dl .faq-inner dd:before {
  content: "A";
  color: #fff;
  font-size: 2rem;
  background: #4880ae;
}

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

.name {
  width: 180px;
  margin: -20px auto 20px;
  position: relative;
  z-index: 2;
  background: #fff;
  color: #243d5b;
  font-weight: 600;
  text-align: center;
  padding: 15px 6px;
  box-shadow: 0 0 8px rgba(36, 61, 91, 0.05);
  line-height: 1.5;
  font-size: 1.6rem;
  font-family: "Shippori Mincho", "Shippori Mincho", "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 900;
  letter-spacing: 0.2em;
}
.name b {
  color: #39668a;
  display: block;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  font-family: "Cormorant", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.name .small {
  font-size: 1.3rem;
  font-family: "Shippori Mincho", "Shippori Mincho", "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 900;
  letter-spacing: 0.2em;
}
.name .small2 {
  font-size: 0.7em;
  font-family: "YakuHanJP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  letter-spacing: 0.1em;
}

.greet {
  font-weight: 600;
  letter-spacing: 0;
  line-height: 2;
  color: #243d5b;
  font-size: 1.6rem;
}
@media all and (max-width: 639px) {
  .greet {
    font-size: 1.2rem;
  }
}

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

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

.pickup {
  font-family: "Cormorant", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #2a4b66;
}

.flow-list {
  margin: 100px 0;
}
.flow-list > li {
  background: #e6e9f1;
  border-radius: 20px;
  padding: 4em 4em 6em;
  max-width: 800px;
  margin-left: auto;
  position: relative;
}
.flow-list > li:not(:last-child) {
  margin-bottom: 100px;
}
.flow-list > li:nth-child(2n) {
  margin-right: auto;
  margin-left: 0;
}
.flow-list > li:nth-child(2n) .img {
  right: auto;
  left: -50px;
}
.flow-list > li .num {
  position: absolute;
  top: -0.5em;
  left: 2em;
  border: 1px solid #2a4b66;
  border-radius: 40px;
  padding: 10px 40px;
  background: #fff;
  font-family: "Cormorant", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-size: 3rem;
  line-height: 1;
  color: #2a4b66;
}
.flow-list > li .img {
  position: absolute;
  bottom: -130px;
  right: -50px;
}
.flow-list > li .img img {
  width: 350px;
  height: 200px;
  object-fit: cover;
  border: 10px solid #2a4b66;
}
.flow-list > li .txt {
  width: 100%;
  margin-top: 20px;
}
.flow-list > li .flow-title {
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: 0.2rem;
}
@media all and (max-width: 1367px) {
  .flow-list > li .img {
    right: -100px;
  }
  .flow-list > li:nth-child(2n) .img {
    left: -100px;
  }
}
@media all and (max-width: 639px) {
  .flow-list {
    margin: 50px 0;
  }
  .flow-list > li {
    border-radius: 10px;
    padding: 2em 2em 4em;
  }
  .flow-list > li:not(:last-child) {
    margin-bottom: 80px;
  }
  .flow-list > li:nth-child(2n) .img {
    right: auto;
    left: -20px;
  }
  .flow-list > li .num {
    font-size: 2rem;
    padding: 5px 20px;
    left: 1em;
  }
  .flow-list > li .img {
    position: absolute;
    bottom: -60px;
    right: -20px;
  }
  .flow-list > li .img img {
    width: 150px;
    height: 100px;
    border: 1px solid #2a4b66;
  }
  .flow-list > li .txt {
    margin-top: 10px;
  }
  .flow-list > li .flow-title {
    font-size: 1.5rem;
  }
}

.flow-list2 {
  position: relative;
  margin: 0 auto;
}
.flow-list2 .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 5px;
  position: relative;
}
.flow-list2 .inner:before {
  position: absolute;
  content: "";
  height: 125%;
  width: 8px;
  top: 25px;
  left: 30px;
  background: #e6e9f1;
}
.flow-list2 .inner:last-child:before {
  display: none;
}
@media all and (max-width: 639px) {
  .flow-list2 .inner {
    width: 100%;
    margin: 0 auto 20px;
  }
  .flow-list2 .inner:before {
    width: 8px;
    height: 130%;
    left: 30px;
    top: 15px;
  }
}
.flow-list2 .inner dt {
  position: relative;
  width: 65px;
  height: 65px;
  background: #e6e9f1;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "Cormorant", serif;
}
.flow-list2 .inner dt.big {
  font-size: 2rem;
}
.flow-list2 .inner dt span {
  font-size: 1.6rem;
  display: block;
  line-height: 1.2;
}
.flow-list2 .inner dt span.num {
  font-size: 3rem;
}
@media all and (max-width: 639px) {
  .flow-list2 .inner dt {
    font-size: 1.2rem;
  }
  .flow-list2 .inner dt.big {
    font-size: 2rem;
  }
}
.flow-list2 .inner dd {
  flex: 1;
  position: relative;
  background: #fff;
  left: -10px;
  margin-top: 10px;
  padding: 10px 30px 10px 25px;
  z-index: 2;
  color: #243d5b;
  border-radius: 3px;
}
.flow-list2 .inner dd table th,
.flow-list2 .inner dd table td {
  font-weight: 500;
}
.flow-list2 .inner dd table th {
  padding-right: 1em;
}
@media all and (max-width: 639px) {
  .flow-list2 .inner dd {
    margin-top: 10px;
  }
}
@media all and (max-width: 639px) {
  .flow-list2 {
    width: 100%;
  }
  .flow-list2 .inner:before {
    height: 110%;
  }
  .flow-list2 .inner dd {
    padding: 15px 15px 15px 20px;
  }
  .flow-list2 .inner dt {
    width: 60px;
    height: 60px;
  }
  .flow-list2 .inner dt span {
    font-size: 1rem;
  }
  .flow-list2 .inner dt span.num {
    font-size: 1.5rem;
  }
}

.price-dl dt {
  background: #f2ece4;
  padding: 14px 20px;
  color: #243d5b;
  border-top: 1px solid #e6e9f1;
  border-bottom: 1px solid #e6e9f1;
}
.price-dl dd {
  padding: 20px;
  margin-bottom: 25px;
}

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

.kiritori2 {
  height: 1px;
  border-top: 1px dashed rgba(42, 75, 102, 0.4);
  margin: 20px auto;
  width: 98%;
  display: block;
}

.column2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.column2.tp {
  align-items: flex-start;
}
.column2 .child {
  width: 48%;
}
.column2 .child2 {
  width: 40%;
}
.column2 .child3 {
  width: 58%;
}
.column2 .child4 {
  width: 30%;
}
.column2 .child5 {
  width: 68%;
}
.column2.type1 {
  width: 95%;
  margin: auto;
}
@media all and (max-width: 896px) {
  .column2.type1 {
    flex-direction: column;
  }
  .column2.type1 .child {
    width: 100%;
  }
  .column2.type1 .child.bm20 {
    margin-bottom: 20px;
  }
  .column2.type1 .child.column2-img {
    order: -1;
    margin-bottom: 30px;
  }
}
@media all and (max-width: 896px) {
  .column2 {
    flex-direction: column;
    gap: 20px;
  }
  .column2.reverse {
    flex-direction: column-reverse;
  }
  .column2 .child,
  .column2 .child2,
  .column2 .child3,
  .column2 .child4,
  .column2 .child5 {
    width: 100%;
  }
  .column2 .child.bm20,
  .column2 .child2.bm20,
  .column2 .child3.bm20,
  .column2 .child4.bm20,
  .column2 .child5.bm20 {
    margin-bottom: 20px;
  }
  .column2 .child.column2-img,
  .column2 .child2.column2-img,
  .column2 .child3.column2-img,
  .column2 .child4.column2-img,
  .column2 .child5.column2-img {
    order: -1;
    margin-bottom: 30px;
  }
}

.column3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.column3 .child1 {
  width: 180px;
}
.column3 .child2 {
  width: 300px;
}
.column3 .child3 {
  width: calc(100% - 520px);
}
@media all and (max-width: 896px) {
  .column3 .child1,
  .column3 .child2 {
    width: 48%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .column3 .child3 {
    margin-top: 15px;
    width: 100%;
  }
}
@media all and (max-width: 639px) {
  .column3 {
    flex-direction: column;
  }
  .column3 .child1,
  .column3 .child2,
  .column3 .child3 {
    width: 100%;
  }
  .column3 .child2 {
    margin-top: 15px;
  }
}

.column-full {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.column-full .child {
  width: 48%;
  margin-right: 1%;
  margin-bottom: 1%;
  border: 1px solid #ddd;
}
.column-full .child .in {
  padding: 20px;
  background-color: #fff;
}
@media all and (max-width: 639px) {
  .column-full {
    flex-direction: column;
  }
  .column-full .child {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .column-full .child.inner {
    padding: 20px 15px;
  }
  .column-full .child.column-img {
    order: -1;
  }
}

.cont01 {
  margin-top: -100px;
  position: relative;
  z-index: 100;
}
.cont01::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 110%;
  height: 100%;
  background: #fefefe;
  border-radius: 200px 200px 0 0;
  z-index: -2;
}
@media all and (max-width: 896px) {
  .cont01 {
    margin-top: -50px;
  }
  .cont01::after {
    border-radius: 100px 100px 0 0;
  }
}
@media all and (max-width: 639px) {
  .cont01::after {
    border-radius: 50px 50px 0 0;
  }
}

.top-cont02 {
  margin: 0 auto;
  width: 100%;
}
.top-cont02 .inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.top-cont02 .inner .top-cont02-img {
  width: 52%;
}
.top-cont02 .inner .top-cont02-img .img01 {
  z-index: 0;
  width: 45%;
  height: 300px;
}
.top-cont02 .inner .top-cont02-img .img01 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-cont02 .inner .top-cont02-img .img02 {
  width: 51%;
  z-index: 1;
  margin-top: -100px;
  margin-left: auto;
  height: 300px;
}
.top-cont02 .inner .top-cont02-img .img02 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-cont02 .inner .top-cont02-txt {
  width: 46%;
  padding-left: 20px;
}
.top-cont02 .inner .top-cont02-txt h2 {
  width: 300px;
  margin-bottom: 20px;
}
.top-cont02 .inner .top-cont02-txt .mtext-eng {
  text-transform: inherit;
  letter-spacing: 0.1em;
}
@media all and (max-width: 896px) {
  .top-cont02 .inner {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
  }
  .top-cont02 .inner .top-cont02-img {
    width: 100%;
    margin-top: 30px;
    order: 0;
  }
  .top-cont02 .inner .top-cont02-img .img02 {
    margin-top: -120px;
    max-width: 350px;
  }
  .top-cont02 .inner .top-cont02-txt {
    width: 100%;
    margin: auto;
    padding-left: 0;
  }
}
@media all and (max-width: 639px) {
  .top-cont02 .inner .top-cont02-img .img01 {
    width: 85%;
    height: 150px;
  }
  .top-cont02 .inner .top-cont02-img .img02 {
    margin-top: 30px;
    max-width: 300px;
    height: 150px;
    width: 85%;
  }
  .top-cont02 .inner .top-cont02-txt {
    max-width: calc(100% - 10px);
  }
}

.event_box {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 20px;
}

.service_box .txt {
  margin-bottom: 40px;
}
.service_box .img {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  text-align: center;
}
.service_box .img img {
  border-radius: 10px;
}
.service_box .img.col3 p {
  width: 30%;
}
.service_box .img.col4 p {
  width: 22%;
}
.service_box .img.col4 p span {
  display: block;
}
.service_box .btn_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}
.service_box .btn_list .btn01 a {
  margin: 0 auto;
}
@media all and (max-width: 639px) {
  .service_box .img {
    gap: 10px;
  }
  .service_box .img img {
    border-radius: 5px;
  }
  .service_box .img.col3 p {
    width: 48%;
  }
  .service_box .img.col4 p {
    width: 48%;
  }
  .service_box .btn01 {
    width: 100%;
  }
}

.ab_img {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
}
.ab_img img {
  width: calc((100% - 40px) / 3);
  border-radius: 20px;
  opacity: 0.8;
}
@media all and (max-width: 639px) {
  .ab_img {
    margin-top: 20px;
  }
  .ab_img img {
    width: calc((100% - 20px) / 3);
    border-radius: 5px;
  }
}

.top_img_box {
  display: flex;
  justify-content: space-between;
}
.top_img_box .img {
  object-fit: contain;
  height: 100%;
}
.top_img_box .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.top_img_box .img.img2 {
  width: 48%;
}
.top_img_box .img.img3 {
  width: 48%;
  padding-top: 100px;
}

.loop_txt {
  display: flex;
  width: 100%;
  overflow: hidden;
  font-family: "Cormorant", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  z-index: -1;
  color: transparent;
  -webkit-text-stroke: 2px #e6e9f1;
  opacity: 0.3;
  margin-top: 120px;
}
.loop_txt > div {
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: 150px;
}
.loop_txt > div:nth-child(odd) {
  animation: loop 50s -25s linear infinite;
}
.loop_txt > div:nth-child(even) {
  animation: loop2 50s linear infinite;
}
@media all and (max-width: 639px) {
  .loop_txt {
    margin-top: 60px;
  }
  .loop_txt > div {
    font-size: 70px;
  }
}

@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
.about_box .inner {
  width: 45%;
  position: relative;
}
.about_box .inner:nth-of-type(1), .about_box .inner:nth-of-type(3) {
  margin-left: auto;
}
.about_box .inner:nth-of-type(2) {
  margin-top: -300px;
}
.about_box .inner:nth-of-type(3) {
  margin-top: -100px;
}
.about_box .inner .ttl {
  position: absolute;
  top: -80px;
  right: 0;
  font-weight: 600;
  font-size: 2.2rem;
  margin-bottom: 20px;
  line-height: 1.5;
}
.about_box .inner .ttl .big {
  font-size: 1.5em;
  color: #2a4b66;
}
.about_box .inner .ttl .small {
  font-size: 0.8em;
}
.about_box .inner .img {
  text-align: center;
  margin-bottom: 20px;
}
.about_box .inner .img img {
  width: 90%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #e6e9f1;
}
.about_box .inner .txt {
  padding: 0 2em;
}
@media all and (max-width: 896px) {
  .about_box .inner {
    width: 100%;
  }
  .about_box .inner .detail {
    display: flex;
    margin-bottom: 40px;
    align-items: center;
  }
  .about_box .inner .detail .img {
    width: 25%;
    margin-bottom: 0;
  }
  .about_box .inner .detail .txt {
    width: 75%;
  }
  .about_box .inner:nth-of-type(1), .about_box .inner:nth-of-type(3) {
    margin-right: auto;
  }
  .about_box .inner:nth-of-type(2) {
    margin-top: 0;
  }
  .about_box .inner:nth-of-type(3) {
    margin-top: 0;
  }
  .about_box .inner .ttl {
    position: initial;
    font-size: 1.7rem;
    margin-bottom: 10px;
    text-align: center;
  }
  .about_box .inner .ttl br {
    display: none;
  }
}
@media all and (max-width: 639px) {
  .about_box .inner .ttl {
    font-size: 1.5rem;
  }
  .about_box .inner .detail {
    flex-direction: column;
    gap: 15px;
  }
  .about_box .inner .detail:last-child {
    margin-bottom: 0;
  }
  .about_box .inner .detail .img {
    width: 65%;
  }
  .about_box .inner .detail .txt {
    width: 100%;
    padding: 0 1em;
  }
}

.service_list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.service_list > li {
  width: calc((100% - 40px) / 2);
}
.service_list > li .img {
  position: relative;
  margin-bottom: 20px;
}
.service_list > li .img::before {
  position: absolute;
  content: "";
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 80px);
  height: calc(100% - 40px);
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.service_list > li .img::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  width: calc(100% - 40px);
  height: calc(100% - 80px);
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}
.service_list > li .img img {
  border-radius: 20px;
  height: 360px;
  width: 100%;
  object-fit: cover;
}
.service_list > li .img .btn01 {
  position: absolute;
  bottom: 20px;
  right: -20px;
  z-index: 10;
}
.service_list > li .ttl {
  margin-bottom: 20px;
}
.service_list > li .ttl::before {
  margin-right: 5px;
  content: "●";
  color: #e6e9f1;
}
@media all and (max-width: 896px) {
  .service_list {
    flex-direction: column;
  }
  .service_list > li {
    width: 100%;
  }
  .service_list > li .img img {
    height: 300px;
  }
}
@media all and (max-width: 639px) {
  .service_list > li .img .btn01 {
    display: block;
    width: 100%;
  }
}

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

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

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

.slide_list,
.slide_list2 {
  gap: 10px;
  text-align: center;
}
.slide_list img,
.slide_list2 img {
  height: 400px;
  width: 400px;
  object-fit: cover;
  filter: grayscale(0.4);
  filter: brightness(110%);
  transition: filter 0.2s ease-in, -webkit-filter 0.2s ease-in;
  border-radius: 10px;
  position: relative;
}
.slide_list img:hover,
.slide_list2 img:hover {
  filter: grayscale(0);
}
@media all and (max-width: 1100px) {
  .slide_list img,
  .slide_list2 img {
    height: 300px;
    width: 300px;
  }
}
@media all and (max-width: 639px) {
  .slide_list img,
  .slide_list2 img {
    height: 150px;
    width: 180px;
  }
}

.top-list li {
  padding: 8px;
  font-weight: 600;
}
.top-list li:not(:last-child) {
  margin-bottom: 10px;
  border-bottom: 1px solid #243d5b;
}
.top-list li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: 900;
  margin-right: 5px;
  color: #2a4b66;
}
.top-list.type1 li:before {
  color: #2a4b66;
}

.sinryou-list {
  font-size: 12px;
  letter-spacing: 0;
}

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

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

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

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

.bundoki {
  width: 350px;
  margin: 0 auto -90px;
  text-align: center;
  opacity: 0.5;
}
@media all and (max-width: 639px) {
  .bundoki {
    width: 85%;
  }
}

.bg-concern {
  border: 2px solid #faf8f5;
  max-width: 1200px;
  margin: -30px auto 40px;
  position: relative;
  z-index: 2;
  padding: 25px 0;
}
@media all and (max-width: 896px) {
  .bg-concern {
    max-width: 95%;
  }
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
}
.feature-list > li {
  width: 31.333%;
  position: relative;
  margin: 0 1% 80px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
}
@media all and (max-width: 639px) {
  .feature-list > li {
    width: 95%;
    margin: 0 auto 50px;
  }
}
.feature-list > li:nth-child(3n+2) {
  transform: translateY(40px);
}
@media all and (max-width: 639px) {
  .feature-list > li:nth-child(3n+2) {
    transform: none;
  }
}
.feature-list > li:nth-child(3n) {
  transform: translateY(80px);
}
@media all and (max-width: 639px) {
  .feature-list > li:nth-child(3n) {
    transform: none;
  }
}
.feature-list > li .feature-inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  position: relative;
}
.feature-list > li .feature-inner:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 97%;
  height: 97%;
  border: 2px solid #fff;
}
@media all and (max-width: 639px) {
  .feature-list > li .feature-inner:before {
    border: 1px solid #fff;
  }
}
.feature-list > li figure {
  height: 260px;
}
.feature-list > li figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover;";
}
@media all and (max-width: 896px) {
  .feature-list > li figure {
    width: 100%;
    height: auto;
  }
}
.feature-list > li .feature-num {
  display: block;
  position: absolute;
  text-align: center;
  font-size: 7rem;
  line-height: 1;
  text-shadow: 0 0 8px rgba(36, 61, 91, 0.5);
  font-family: "Cormorant", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #fff;
  left: 30px;
  top: -30px;
  z-index: 3;
  border-radius: 50%;
}
.feature-list > li .feature-num:before {
  position: absolute;
  content: "Reason";
  left: -18px;
  top: -18px;
  color: #fff;
  transform: rotate(-13deg);
  font-size: 3.2rem;
  font-family: "Cormorant", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media all and (max-width: 639px) {
  .feature-list > li .feature-num:before {
    font-size: 2.2rem;
    left: -14px;
    top: -28px;
  }
}
.feature-list > li .feature-num:first-letter {
  font-size: 5.5rem;
}
@media all and (max-width: 639px) {
  .feature-list > li .feature-num {
    height: 70px;
    line-height: 70px;
    font-size: 3.8rem;
  }
  .feature-list > li .feature-num:first-letter {
    font-size: 2.8rem;
  }
}
.feature-list > li .feature-txt {
  position: relative;
  padding: 20px 20px 30px;
  flex: 1;
  font-size: 1.4rem;
}
@media all and (max-width: 639px) {
  .feature-list > li .feature-txt {
    padding: 25px 15px;
    font-size: 1.2rem;
  }
}
.feature-list > li .feature-title {
  font-size: 1.8rem;
  line-height: 1.4;
  font-family: "Shippori Mincho", "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-align: center;
  margin-bottom: 10px;
  color: #2a4b66;
}
@media all and (max-width: 639px) {
  .feature-list > li .feature-title {
    font-size: 1.3rem;
  }
}
@media all and (max-width: 639px) {
  .feature-list {
    padding: 0 10px;
  }
}

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

.fixed-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 150;
}
@media all and (max-width: 896px) {
  .fixed-btn {
    display: none !important;
  }
}
.fixed-btn a {
  text-align: center;
  padding: 8px 6px;
  display: block;
  background: #2a4b66;
  border-radius: 5px 0 0 5px;
  color: #fff;
  font-size: 10px;
  border: 1px solid #2a4b66;
  letter-spacing: 0.05em;
}
.fixed-btn a i {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 4px;
}
.fixed-btn a:hover {
  background: #fff;
  color: #2a4b66;
}
.fixed-btn a:nth-child(even) {
  background: #e6e9f1;
  border: 1px solid #e6e9f1;
}
.fixed-btn a:nth-child(even):hover {
  background: #fff;
  color: #e6e9f1;
}
.fixed-btn a:not(:last-of-type) {
  margin-bottom: 8px;
}
@media all and (max-width: 639px) {
  .fixed-btn {
    top: auto;
    width: 100%;
    bottom: 0px;
    display: flex;
  }
  .fixed-btn a {
    background: #aa8f3e;
    padding: 0 10px;
  }
  .fixed-btn a:last-of-type {
    margin: 0;
    background: #6f5e53;
  }
}

.covid-area {
  position: relative;
}
.covid-area:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: rgba(250, 248, 245, 0.5);
}

.covid-wrap {
  max-width: 1000px;
  width: 95%;
  margin: 0 auto;
  background: #fff;
  border-radius: 10px;
  padding: 35px;
  z-index: 20;
  cursor: pointer;
}
@media all and (max-width: 639px) {
  .covid-wrap {
    padding: 20px 15px;
  }
}

.covid-title {
  border: 2px solid #faf8f5;
  padding: 10px 5px;
  text-align: center;
  font-size: 2rem;
  line-height: 1.6;
  color: #243d5b;
  font-family: "Shippori Mincho", "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 400;
  letter-spacing: 0.2em;
  position: relative;
  transition: all 0.3s ease;
}
.covid-title:hover {
  background: rgba(250, 248, 245, 0.6);
}
.covid-title:after {
  position: absolute;
  content: "";
  right: 15px;
  top: 15px;
  width: 16px;
  height: 16px;
  border-top: 2px solid #e6e9f1;
  border-right: 2px solid #e6e9f1;
  transform: rotate(135deg);
}
@media all and (max-width: 639px) {
  .covid-title {
    padding: 10px 40px 10px 5px;
    font-size: 1.4rem;
  }
  .covid-title:after {
    right: 12px;
    width: 12px;
    height: 12px;
  }
}

.covid-content {
  display: none;
}

.mtext-top span {
  position: relative;
  display: inline-block;
  padding-top: 17px;
  padding-left: 7px;
  padding-right: 7px;
  font-size: 3rem;
  line-height: 1.2;
  color: #e6e9f1;
  font-size: 2.4rem;
}
.mtext-top span:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  color: #fdfdfd;
  transform: translateX(-50%);
  width: 50px;
  height: 15px;
  background: url(../img/point.png) no-repeat center/contain;
}
@media all and (max-width: 639px) {
  .mtext-top {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  .mtext-top.type1 {
    margin: 0 auto -15px;
  }
  .mtext-top span {
    padding-top: 14px;
    font-size: 1.7rem;
  }
  .mtext-top span:before {
    width: 40px;
    height: 12px;
  }
}

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

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

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

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

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

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

.TextTyping span {
  display: none;
}

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

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

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

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

.mini2 {
  font-size: 85%;
}

.list-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.list-btn.btn-col2 {
  justify-content: space-around;
}
.list-btn.btn-col2 li {
  width: 48%;
  margin: auto;
  margin-bottom: 10px;
}
.list-btn.btn-col2 li a {
  padding: 15px 5px;
}
.list-btn.btn-col2 li a span {
  display: block;
  font-size: 1.6rem;
}
@media all and (max-width: 639px) {
  .list-btn.btn-col2 li {
    width: 100%;
    margin: 0 auto 210px;
  }
  .list-btn.btn-col2 li a {
    font-size: 1.5rem;
  }
}
.list-btn.btn-col100 {
  justify-content: space-around;
}
.list-btn.btn-col100 li {
  width: 100%;
  margin: auto;
  margin-bottom: 10px;
}
.list-btn.btn-col100 li a {
  padding: 15px 5px;
}
.list-btn.btn-col100 li a span {
  display: block;
  font-size: 1.6rem;
}
@media all and (max-width: 639px) {
  .list-btn.btn-col100 li {
    width: 100%;
    margin: 0 auto 20px;
  }
  .list-btn.btn-col100 li a {
    font-size: 1.5rem;
  }
}
.list-btn li {
  width: 31%;
  margin-right: 2%;
  margin-bottom: 20px;
}
.list-btn li:nth-child(3n) {
  margin-right: 0;
}
.list-btn li h2 {
  text-align: center;
}
.list-btn li h2 span {
  display: block;
  line-height: 1.5;
}
.list-btn li h2 .eng {
  color: #2a4b66;
  font-size: 2.2rem;
  font-family: "Cormorant", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.list-btn li h2 .ja {
  color: #243d5b;
  font-size: 1.6rem;
}
@media all and (max-width: 639px) {
  .list-btn li h2 .eng {
    font-size: 1.8rem;
  }
  .list-btn li h2 .ja {
    font-size: 1.3rem;
  }
}
.list-btn li a {
  border: 1px solid #2a4b66;
  box-sizing: border-box;
  display: block;
  background: rgba(255, 255, 255, 0.9);
  color: #243d5b;
  font-weight: 700;
  padding: 15px 5px;
  text-align: center;
  width: 100%;
  height: 100%;
  line-height: 1.6;
  font-size: 1.6rem;
  letter-spacing: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 4px 4px rgba(42, 75, 102, 0.4);
}
.list-btn li a:before {
  position: absolute;
  content: "";
  width: 70px;
  height: 70px;
  border-bottom: 0.2em solid #2a4b66;
  border-right: 0.2em solid #2a4b66;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
.list-btn li a .small {
  font-family: "Cormorant", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #2a4b66;
  display: block;
  font-size: 1.3rem;
}
.list-btn li a span {
  letter-spacing: 0.2em;
  position: relative;
  z-index: 2;
}
.list-btn li a:hover {
  background: #4880ae;
}
.list-btn li a:hover span {
  color: #fff;
}
@media all and (max-width: 639px) {
  .list-btn li {
    width: 100%;
    margin: 0 auto 10px;
  }
  .list-btn li a {
    font-size: 1.3rem;
  }
  .list-btn li a .small {
    font-size: 1rem;
  }
}
.list-btn.type1 li a {
  padding: 65px 40px 65px 0;
  border: 1px solid #1b3042;
  font-size: 2.5rem;
  text-align: right;
  background: #243d5b;
  color: #2a4b66;
}
.list-btn.type1 li a:before {
  position: absolute;
  border-bottom: 0px;
  border-right: 0px;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  opacity: 0.9;
  transition: 0.2s ease-in all;
  background: url(../img/icon01.jpg) no-repeat center/cover;
  transform: none;
}
.list-btn.type1 li a:after {
  width: 30px;
  height: 30px;
}
.list-btn.type1 li a:hover:before {
  opacity: 0.3;
}
@media all and (max-width: 639px) {
  .list-btn.type1 li a {
    font-size: 1.8rem;
    padding: 50px 40px 50px 0;
  }
}
.list-btn.type1 li:last-of-type a:before {
  background: url(../img/icon02.jpg) no-repeat center/cover;
}
.list-btn.type2 li a {
  padding: 65px 40px 65px 0;
  border: 1px solid #1b3042;
  font-size: 2.5rem;
  text-align: right;
  background: #243d5b;
  color: #2a4b66;
}
.list-btn.type2 li a:before {
  position: absolute;
  border-bottom: 0px;
  border-right: 0px;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  opacity: 0.9;
  transition: 0.2s ease-in all;
  background: url(../img/icon03.jpg) no-repeat center/cover;
  transform: none;
}
.list-btn.type2 li a:after {
  width: 30px;
  height: 30px;
}
.list-btn.type2 li a:hover:before {
  opacity: 0.3;
}
@media all and (max-width: 639px) {
  .list-btn.type2 li a {
    font-size: 1.8rem;
    padding: 50px 40px 50px 0;
  }
}
.list-btn.type2 li:last-of-type a:before {
  background: url(../img/icon04.jpg) no-repeat center/cover;
}

.list-btn2 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.list-btn2 li {
  width: 32%;
  margin: 0 1.995% 20px 0;
}
.list-btn2 li:first-child h2 {
  text-align: center;
}
.list-btn2 li:first-child h2 span {
  display: block;
  line-height: 1.4;
}
.list-btn2 li:first-child h2 .eng {
  color: #2a4b66;
  font-size: 2.2rem;
  font-family: "Cormorant", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.list-btn2 li:first-child h2 .ja {
  color: #243d5b;
  font-size: 1.6rem;
}
@media all and (max-width: 1100px) {
  .list-btn2 li:first-child h2 .eng {
    font-size: 2rem;
  }
  .list-btn2 li:first-child h2 .ja {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
  }
}
@media all and (max-width: 639px) {
  .list-btn2 li:first-child h2 .eng {
    font-size: 1.8rem;
  }
  .list-btn2 li:first-child h2 .ja {
    font-size: 1.3rem;
  }
}
.list-btn2 li:not(:first-of-type) a {
  position: relative;
  border: 1px solid #e6e9f1;
  box-sizing: border-box;
  display: block;
  background: #fff;
  color: #243d5b;
  padding: 25px 5px;
  text-align: center;
  line-height: 1.6;
  font-size: 1.6rem;
  font-family: "Shippori Mincho", "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 400;
  letter-spacing: 0.2em;
  overflow: hidden;
  box-shadow: 4px 4px #e6e9f1;
}
.list-btn2 li:not(:first-of-type) a:before {
  position: absolute;
  content: "";
  width: 70px;
  height: 70px;
  border-bottom: 0.2em solid #e6e9f1;
  border-right: 0.2em solid #e6e9f1;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
.list-btn2 li:nth-child(3n) {
  margin-right: 0;
}
@media all and (max-width: 1100px) {
  .list-btn2 li:not(:first-of-type) a {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    padding: 20px 5px;
  }
}
@media all and (max-width: 639px) {
  .list-btn2 li {
    width: 95%;
    margin: 0 auto 12px;
  }
  .list-btn2 li:last-child {
    margin: 0 auto;
  }
  .list-btn2 li:not(:first-of-type) a {
    font-size: 1.3rem;
    padding: 15px 5px;
  }
  .list-btn2 li:nth-child(3n) {
    margin-right: auto;
  }
}
.list-btn2 li a:hover {
  background: #f6f7fa;
}
.list-btn2 li a:hover span {
  color: #fff;
}
.list-btn2 li a:hover:before {
  border-bottom: 0.2em solid #faf8f5;
  border-right: 0.2em solid #faf8f5;
}

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

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

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

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

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

.bnr-btn {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
}
.bnr-btn a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  transition: all 0.2s ease-in;
  background: #2a4b66;
  background: repeating-linear-gradient(135deg, #2a4b66 0, #2a4b66 5px, #2d506d 5px, #2d506d 10px);
}
.bnr-btn a figure {
  width: 70%;
  height: 240px;
  overflow: hidden;
  position: relative;
  margin-left: auto;
}
.bnr-btn a figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover;";
  transition: all 0.8s ease;
  display: block;
}
@media all and (max-width: 639px) {
  .bnr-btn a figure {
    width: 55%;
    height: 110px;
  }
}
.bnr-btn a p {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: block;
  z-index: 2;
  font-size: 12px;
}
.bnr-btn a p span {
  padding: 3px 8px;
  color: #fff;
  background: #2a4b66;
  display: inline-block;
}
.bnr-btn a h3 {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: block;
  transform-origin: right bottom;
  z-index: 2;
  line-height: 1.5;
}
.bnr-btn a h3 span {
  transition: all 0.8s ease;
  display: block;
  text-shadow: 0 0 6px rgba(42, 75, 102, 0.8);
}
.bnr-btn a h3 .eng {
  font-size: 7rem;
  font-family: "Cormorant", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #fff;
  line-height: 1;
}
.bnr-btn a h3 .ja {
  font-family: "Shippori Mincho", "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 400;
  letter-spacing: 0.2em;
  font-size: 1.6rem;
  border: 1px solid #fff;
  padding: 3px 10px;
  color: #fff;
  display: inline-block;
  text-align: center;
}
@media all and (max-width: 639px) {
  .bnr-btn a p {
    right: 10px;
    bottom: 10px;
    font-size: 10px;
  }
  .bnr-btn a h3 {
    left: 10px;
    bottom: 10px;
  }
  .bnr-btn a h3 .ja {
    font-size: 1.3rem;
  }
  .bnr-btn a h3 .eng {
    font-size: 3.5rem;
  }
}
.bnr-btn a:hover figure img {
  transform: scale(1.2);
}
.bnr-btn a:hover h3 span {
  text-shadow: none;
}
.bnr-btn a:hover h3 .ja {
  background: #fff;
  color: #2a4b66;
}

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

.flow-lead-box {
  max-width: 1000px;
  padding: 30px;
  background: #fff;
  margin: -100px auto 0;
  position: relative;
}
@media all and (max-width: 639px) {
  .flow-lead-box {
    max-width: 94%;
    padding: 15px;
    margin-top: -30px;
  }
}

.top-point-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 30px;
  padding-bottom: 80px;
}
@media all and (max-width: 639px) {
  .top-point-list {
    grid-template-columns: 1fr;
    gap: 30px 0;
    padding-bottom: 0;
  }
}
.top-point-list li {
  background: #fff;
  position: relative;
  overflow: hidden;
}
.top-point-list li:before {
  position: absolute;
  content: "";
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
  height: 180px;
  background-image: linear-gradient(to bottom, #faf8f5 0%, #faf8f5 50%, #faf8f5 50.1%, #faf8f5 100%);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  width: 90px;
}
.top-point-list li .num {
  display: block;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Cormorant", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-size: 1.6rem;
  z-index: 2;
  line-height: 1;
}
.top-point-list li .num em {
  font-style: normal;
  font-size: 5rem;
  display: block;
  color: #2a4b66;
}
@media all and (max-width: 639px) {
  .top-point-list li .num {
    font-size: 1.3rem;
    text-align: center;
    left: 15px;
  }
  .top-point-list li .num em {
    font-size: 2.8rem;
  }
}
.top-point-list li .txt {
  position: relative;
  padding: 15px 15px 15px 120px;
  z-index: 2;
  font-weight: 600;
  color: #243d5b;
  font-size: 1.6rem;
}
@media all and (max-width: 639px) {
  .top-point-list li .txt {
    padding-left: 80px;
    font-size: 1.2rem;
  }
}

.marker-g {
  background: linear-gradient(transparent 70%, #e6d5bc 0%);
  z-index: 0;
}

.feature-dl .inner {
  display: flex;
  flex-wrap: wrap;
  background: rgba(254, 254, 254, 0.6);
  padding: 20px;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - 20px);
}
.feature-dl .inner dt {
  position: relative;
  font-family: "Shippori Mincho", "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 400;
  letter-spacing: 0.2em;
  font-size: 2rem;
  color: #fefefe;
  z-index: 1;
  background: #233e54;
  top: 0;
  left: -30px;
  padding: 6px 12px;
}
.feature-dl .inner dd {
  flex: 1;
}
.feature-dl .inner:not(:first-child) {
  margin-top: 40px;
}
@media all and (max-width: 639px) {
  .feature-dl .inner {
    flex-direction: column;
  }
  .feature-dl .inner dt {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
}
.feature-dl .feature-title {
  font-family: "Shippori Mincho", "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 900;
  letter-spacing: 0.2em;
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  color: #2a4b66;
  padding-bottom: 5px;
  border-bottom: 1px solid #e6e9f1;
  margin-bottom: 20px;
}
@media all and (max-width: 639px) {
  .feature-dl .feature-title {
    font-size: 1.4rem;
  }
}

.top-bnr-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.top-bnr-list .top-bnr-wrap {
  display: block;
  height: 100%;
  position: relative;
}
.top-bnr-list .top-bnr-wrap:hover figure img {
  transform: scale(1.2);
}
.top-bnr-list .top-bnr-wrap:hover .morebtn {
  color: #fff;
  background: #e6e9f1;
}
.top-bnr-list .top-bnr-title {
  position: absolute;
  left: -10px;
  top: 15px;
  z-index: 2;
}
.top-bnr-list .top-bnr-title span {
  font-family: "Shippori Mincho", "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 400;
  letter-spacing: 0.2em;
  background: #fff;
  padding: 8px;
  font-size: 1.6rem;
  color: #243d5b;
  border-left: 3px solid #e6e9f1;
}
@media all and (max-width: 896px) {
  .top-bnr-list .top-bnr-title {
    left: -6px;
    top: 12px;
  }
  .top-bnr-list .top-bnr-title span {
    background: #fff;
    font-size: 1.3rem;
  }
  .top-bnr-list .top-bnr-title span num {
    font-size: 1.6rem;
  }
  .top-bnr-list .top-bnr-title span i {
    font-size: 1.8rem;
  }
}
.top-bnr-list figure {
  width: 100%;
  height: 260px;
  overflow: hidden;
  border-radius: 10px;
}
.top-bnr-list figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s ease;
}
@media all and (max-width: 896px) {
  .top-bnr-list figure {
    height: 200px;
  }
}
.top-bnr-list .top-bnr-txt {
  max-width: 92%;
  padding: 20px 20px 50px;
  background: #fff;
  position: relative;
  margin: -30px auto 0;
  color: #243d5b;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  letter-spacing: 0.1rem;
}
@media all and (max-width: 639px) {
  .top-bnr-list .top-bnr-txt {
    padding: 15px 15px 35px;
  }
}
.top-bnr-list .morebtn {
  text-align: center;
  width: 160px;
  background: #fff;
  border: 2px solid #e6e9f1;
  color: #c5ccdf;
  border-radius: 40px;
  position: relative;
  z-index: 2;
  padding: 5px 0;
  margin: -20px auto 0;
  font-size: 90%;
  transition: 0.2s ease-in all;
}
.top-bnr-list > li:nth-child(2) .top-bnr-wrap .top-bnr-title span {
  border-left: 3px solid #e6e9f1;
}
.top-bnr-list > li:nth-child(2) .top-bnr-wrap .morebtn {
  color: #e6e9f1;
  border: 2px solid #e6e9f1;
}
.top-bnr-list > li:nth-child(2) .top-bnr-wrap:hover .morebtn {
  background: #e6e9f1;
  color: #fefefe;
}
.top-bnr-list > li:nth-child(3) .top-bnr-wrap .top-bnr-title span {
  border-left: 3px solid #e6e9f1;
}
.top-bnr-list > li:nth-child(3) .top-bnr-wrap .morebtn {
  color: #e6e9f1;
  border: 2px solid #e6e9f1;
}
.top-bnr-list > li:nth-child(3) .top-bnr-wrap:hover .morebtn {
  background: #e6e9f1;
  color: #fefefe;
}
.top-bnr-list > li:nth-child(4) .top-bnr-wrap .top-bnr-title span {
  border-left: 3px solid #e6e9f1;
}
.top-bnr-list > li:nth-child(4) .top-bnr-wrap .morebtn {
  color: #e6e9f1;
  border: 2px solid #e6e9f1;
}
.top-bnr-list > li:nth-child(4) .top-bnr-wrap:hover .morebtn {
  background: #e6e9f1;
  color: #fefefe;
}
@media all and (max-width: 896px) {
  .top-bnr-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media all and (max-width: 639px) {
  .top-bnr-list {
    grid-template-columns: 1fr;
    gap: 50px 0;
    padding: 0 10px;
  }
}

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

.list-concern-box {
  padding: 40px 20px 20px;
  border-radius: 10px;
  background: #fff;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.list-concern-box .list-concern {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.list-concern-box .list-concern li {
  position: relative;
  width: 100%;
  font-size: 2rem;
  font-family: "Shippori Mincho", "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 400;
  letter-spacing: 0.2em;
  padding: 15px 15px 15px 50px;
  margin-bottom: 10px;
  border-bottom: 2px solid #ccc;
}
.list-concern-box .list-concern li::before {
  position: absolute;
  content: "";
  transform: translateY(-50%);
  left: 4px;
  top: 50%;
  height: 35px;
  width: 35px;
  background: url(../img/check.png) no-repeat center/contain;
}
@media all and (max-width: 639px) {
  .list-concern-box {
    padding: 25px 15px 15px;
  }
  .list-concern-box img {
    max-width: 240px;
    width: 80%;
  }
  .list-concern-box .list-concern li {
    padding: 10px 10px 10px 35px;
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    margin: 0 auto 5px;
  }
  .list-concern-box .list-concern li::before {
    height: 20px;
    width: 20px;
  }
  .list-concern-box .list-concern li:last-child {
    margin: 0 auto;
  }
}

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

.cont_box {
  position: relative;
  display: flex;
  align-items: center;
  background: #2a4b66;
  border-radius: 20px 0 20px 0;
}
.cont_box > div {
  width: 50%;
}
.cont_box .txt {
  padding: 6em 4em;
  color: #fff;
  margin-left: auto;
}
.cont_box .img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}
.cont_box .img img {
  height: 300px;
  width: 80%;
  object-fit: cover;
}
.cont_box .img img:not(:last-child) {
  margin-bottom: 20px;
}
@media all and (max-width: 639px) {
  .cont_box {
    flex-direction: column;
  }
  .cont_box > div {
    width: 100%;
  }
  .cont_box .img {
    position: initial;
    transform: none;
    margin-top: -60px;
  }
  .cont_box .img img {
    height: 100px;
  }
  .cont_box .img img:not(:last-child) {
    margin-bottom: 10px;
  }
  .cont_box .txt {
    padding: 2em;
  }
}

.menu_list {
  display: flex;
  gap: 20px;
  margin-top: 100px;
}
.menu_list > li {
  width: calc((100% - 60px) / 4);
  background: #2a4b66;
  border-radius: 10px;
  text-align: center;
  padding: 2em;
  position: relative;
  color: #fff;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.menu_list > li::before {
  content: "●";
  position: absolute;
  top: 20px;
  left: 20px;
  color: #fff;
  font-size: 0.6em;
}
.menu_list > li::after {
  content: "●";
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
  font-size: 0.6em;
}
.menu_list > li .icon {
  margin: 0 auto 20px;
}
.menu_list > li .icon img {
  width: 200px;
}
.menu_list > li .ttl {
  margin-bottom: 20px;
  font-size: 1.2em;
}
.menu_list > li .ttl .eng {
  display: block;
  font-family: "Cormorant", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.menu_list > li .ttl .ja {
  font-weight: bold;
  font-size: 2.5rem;
}
.menu_list > li .btn01 a {
  max-width: 100%;
}
@media all and (max-width: 1100px) {
  .menu_list > li {
    padding: 0 1em;
  }
}
@media all and (max-width: 896px) {
  .menu_list {
    gap: 60px;
    flex-direction: column;
  }
  .menu_list > li {
    width: 100%;
  }
}
@media all and (max-width: 639px) {
  .menu_list {
    gap: 20px;
    margin-top: 0;
  }
  .menu_list > li .btn01 a {
    margin: 20px auto 20px;
  }
  .menu_list > li .ttl .ja {
    font-size: 1.8rem;
  }
  .menu_list > li .icon {
    margin: 20px auto;
  }
  .menu_list > li .icon img {
    width: 130px;
  }
}

.color01 {
  color: #0a4190;
}

.color02 {
  color: #ba1212;
}

.color03 {
  color: #ffc600;
}

.color04 {
  color: #aaa;
}

.color05 {
  color: #000;
}

/* calendar */
.calendar .calendar_head {
  color: #243d5b;
  text-shadow: 1px 1px 0px #fff, -1px 1px 0px #fff, 1px -1px 0px #fff, -1px -1px 0px #fff, 1px 0px 0px #fff, 0px 1px 0px #fff, -1px 0px 0px #fff, 0px -1px 0px #fff;
  font-family: "Shippori Mincho", "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 900;
  letter-spacing: 0.2em;
  font-size: 1.8rem;
}
.calendar table {
  margin: 5px auto 0;
  line-height: 2.6;
  width: 100%;
}
.calendar table th {
  text-align: center;
  vertical-align: middle;
  background: #f4f4f4;
  padding: 5px 2px;
  font-weight: normal;
  line-height: 1.5;
  border: #ccc 1px solid;
  width: 14%;
  color: #243d5b;
  font-family: "Shippori Mincho", "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 400;
  letter-spacing: 0.2em;
  font-size: 13px;
}
.calendar table td {
  color: #243d5b;
  padding-left: 5px;
  padding-right: 5px;
  background-color: #fff;
  height: 60px;
  border: #ccc 1px solid;
  width: 14%;
  line-height: 2;
  vertical-align: top;
  font-size: 12px;
}
.calendar td.off {
  background: #e7e7e7;
}
.calendar td.sat {
  background: #f0f6f9;
}
.calendar td.sun {
  background: #f9f3f1;
}
@media all and (max-width: 896px) {
  .calendar .calendar_head {
    font-size: 1.5rem;
  }
  .calendar table th {
    font-size: 12px;
  }
  .calendar table td {
    padding-left: 3px;
    padding-right: 3px;
    font-size: 10px;
  }
}

#calendar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
#calendar div.calendar:nth-child(1), #calendar div.calendar:nth-child(2) {
  width: 49%;
  padding: 0;
}
@media all and (max-width: 896px) {
  #calendar div.calendar:nth-child(1), #calendar div.calendar:nth-child(2) {
    flex-direction: column;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
  }
  #calendar div.calendar:nth-child(1) table td, #calendar div.calendar:nth-child(2) table td {
    height: 30px;
  }
}
#calendar div.calendar:nth-child(2) {
  margin-bottom: 0;
}

.span-bg span {
  background: #faf8f5;
  border: 1px solid #e6e9f1;
  color: #243d5b;
  padding: 3px 20px;
  border-radius: 20px;
  font-size: 105%;
  font-family: "Shippori Mincho", "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 400;
  letter-spacing: 0.2em;
  margin-right: 15px;
  line-height: 1.4;
}
@media all and (max-width: 896px) {
  .span-bg span {
    margin-right: 0;
    display: table;
    margin: 0 auto 5px;
  }
}

.lh2 p {
  line-height: 2;
}
@media all and (max-width: 896px) {
  .lh2 p {
    line-height: 1.8;
  }
}

.rec-board {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1200px;
}
.rec-board:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #fefefe;
  border-radius: 10px;
  border: 30px solid rgba(42, 75, 102, 0.4);
  z-index: -1;
}
.rec-board::after {
  position: absolute;
  content: "";
  width: 250px;
  height: 52px;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: url(../img/binder.png) repeat-x center top/contain;
}
.rec-board .inner {
  padding: 110px 60px 70px;
}
@media all and (max-width: 896px) {
  .rec-board:before {
    border-radius: 5px;
    border: 15px solid rgba(42, 75, 102, 0.4);
  }
  .rec-board::after {
    width: 120px;
    height: 25px;
    top: 5px;
  }
  .rec-board .inner {
    padding: 60px 25px 30px;
  }
}
@media all and (max-width: 639px) {
  .rec-board:before {
    border: 5px solid rgba(42, 75, 102, 0.4);
  }
  .rec-board .inner {
    padding: 50px 10px 30px;
  }
}

.what-inner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.what-inner .in-left {
  width: 40%;
}
.what-inner .in-left .read {
  color: #243d5b;
  font-family: "YakuHanJP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 30px;
  letter-spacing: 0.1em;
  letter-spacing: 0.2em;
  font-weight: 600;
  line-height: 1.4em;
}
.what-inner .in-left .read span {
  display: table;
  margin: 0;
  font-size: 23px;
  letter-spacing: 0.1em;
  line-height: 1em;
  color: #e6e9f1;
  margin-top: 10px;
}
.what-inner .in-right {
  width: 55%;
}
@media all and (max-width: 639px) {
  .what-inner .in-left {
    width: 100%;
  }
  .what-inner .in-left .read {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .what-inner .in-left .read span {
    font-size: 18px;
  }
  .what-inner .in-right {
    width: 100%;
  }
}

.fukidashi {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 4;
}
.fukidashi.type1 {
  text-align: left;
  margin-bottom: 15px;
}
.fukidashi.mini {
  text-align: left;
}
.fukidashi.mini span {
  font-size: 1.2rem;
}
@media all and (max-width: 639px) {
  .fukidashi.mini {
    margin-bottom: 15px;
  }
  .fukidashi.mini span {
    padding: 5px 12px;
  }
}
.fukidashi span {
  display: inline-block;
  position: relative;
  color: #fff;
  font-size: 1.8rem;
  background: #e6e9f1;
  padding: 10px 20px;
  border-radius: 30px;
}
@media all and (max-width: 639px) {
  .fukidashi span {
    font-size: 1.3rem;
  }
}
.fukidashi span:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  border-top: 10px solid #e6e9f1;
}

.ab_img img.type02 {
      width: 360px;
    border-radius: 20px;
    opacity: 0.8;
    height: auto;
    object-fit: cover;
}

.btn01 a.btn-padding-narrow {
  padding: 10px 20px;
}

/* ギフトセレクション画像群の統一スタイル */
.img.col3 .type03 {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1/1.1; /* 必要に応じて調整 */
  min-height: 220px;
  background: #fff; /* 画像が小さい時の背景色 */
}
.img.col3 .type03 a {
  width: 100%;
    background-color: #e6e9f1;
    border-radius: 8px;
}
.service_box .img.col3 p.type03 {
  width: calc(33.333% - 16px);
}
.img.col3 .type03 img {
  width: 100%;
    height: 260px;
    object-fit: contain;
    border-radius: 8px;
}
.img.col3 .type03 span {
  display: block;
  margin-top: 8px;
  min-height: 2.5em; /* キャプション高さを揃える */
  text-align: center;
  font-size: 1em;
}
.page-title.p04 {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/24582/main_visual_250609.jpg) no-repeat center 20% / cover;
}
@media all and (max-width: 1100px) {
  .img.col3 .type03 {
    min-height: 360px;
  }
.service_box .img.col3 p.type03 {
    width: calc(50% - 12px);
}
}
@media all and (max-width: 639px) {
  
  .img.col3 .type03 img {
    width: 100%;
    height: 150px;
  }
}
/*# sourceMappingURL=basis.css.map */