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

a {
  color: rgb(3.8379888268, 110.0223463687, 225.1620111732);
  text-decoration: none;
  transition: all 0.3s ease-in;
  cursor: pointer;
}

#wrapper {
  position: relative;
}

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

.bold {
  font-weight: 600;
}

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

.title {
  font-family: "Noto Sans JP", "Zen Kaku Gothic New", "YakuHanJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  font-weight: 900 !important;
  letter-spacing: 0.1em;
}

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

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

/* 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);
  }
}
@keyframes yurayura2 {
  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 #59aa5b;
  border-radius: 50%;
  border-right: 1px solid rgba(89, 170, 91, 0.2);
  border-top: 1px solid rgba(89, 170, 91, 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);
  }
}
.body-bg {
  position: relative;
  z-index: -1;
}
.body-bg:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  opacity: 0.3;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27538/bg-header.svg) no-repeat center top/100% auto;
}
@media all and (max-width: 639px) {
  .body-bg:before {
    height: 250px;
  }
}

/* header
----------------------------------*/
@keyframes hd-scrolled {
  0% {
    opacity: 0;
    transform: translate(0, -100%);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.page_sub #l-header {
  position: fixed;
  margin-top: 20px;
}
.page_sub #l-header .inner {
  box-shadow: 2px 4px 6px -1px rgba(0, 0, 0, 0.15);
}
@media all and (max-width: 1100px) {
  .page_sub #l-header {
    position: unset;
    margin-top: 0;
  }
}

#l-header {
  width: 100%;
  transition: all 0.4s ease-in;
  z-index: 100;
}
#l-header.is-fixed {
  position: fixed;
  width: 100%;
  z-index: 200;
  top: 0;
  left: 0;
  margin-top: 10px;
}
#l-header.is-fixed::before, #l-header.is-fixed::after {
  display: none;
}
#l-header.is-fixed .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 2px 4px 6px -1px rgba(0, 0, 0, 0.15);
  transition: all 0.5s ease;
  background: #fff;
}
@media all and (max-width: 896px) {
  #l-header {
    background: transparent;
    backdrop-filter: none;
  }
}
#l-header .inner {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  max-width: 90%;
  padding: 10px 25px;
  background: #fff;
  border-radius: 10px;
  transition: all 0.5s ease;
}
#l-header .inner #logo {
  transition: all 0.4s ease-in;
  width: 280px;
  z-index: 2;
}
@media all and (max-width: 639px) {
  #l-header .inner #logo {
    width: 200px;
  }
}
#l-header .head-right {
  position: relative;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 40px;
}
@media all and (max-width: 896px) {
  #l-header .head-right {
    display: none;
  }
}
#l-header .head-right_contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}
#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: #59aa5b;
  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: "Noto Sans JP", "Zen Kaku Gothic New", "YakuHanJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  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(90, 60, 43, 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);
}
#l-header .header_sns .ig_btn a {
  background: #4fa2fc;
  color: #fff;
  border-radius: 30px;
  padding: 10px 25px;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  display: block;
}
#l-header .header_sns .ig_btn a:hover {
  opacity: 0.6;
}
@media all and (max-width: 1367px) {
  #l-header .inner {
    max-width: 98%;
  }
  #l-header .header_sns .ig_btn a {
    padding: 10px 15px;
    font-size: 0.9em;
  }
  #l-header .head-right {
    gap: 20px;
  }
}

#header_nav {
  position: relative;
  transition: all 0.4s ease-in;
}
@media all and (max-width: 1100px) {
  #header_nav {
    display: none;
  }
}
#header_nav > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  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;
  font-weight: bold;
  color: #333;
  padding: 20px 20px;
}
#header_nav > ul li a.first {
  border-radius: 60px 0 0 60px;
  padding-left: 30px;
}
#header_nav > ul li a.last {
  border-radius: 0 60px 60px 0;
  padding-right: 30px;
}
#header_nav > ul li a span {
  display: block;
  color: rgba(90, 60, 43, 0.5);
  font-family: "Jost", sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  font-size: 1.4rem;
}
#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 {
  color: rgba(89, 170, 91, 0.9);
}
#header_nav > ul li a.active {
  position: relative;
}
#header_nav > ul li a.active:before {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  background: #c9e71f;
  left: 50%;
  border-radius: 5px;
  bottom: 10px;
  transition: 0.2s opacity ease-in;
}
#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: #5a3c2b;
  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;
  }
}

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

/* 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-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {
  animation: zoom-in 8s linear 0s 1 normal both;
}

.swiper-container {
  overflow: hidden;
  width: 100%;
}

.slide-img {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 93vh;
}
.slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* はみ出しはトリミングして比率維持 */
  display: block;
  filter: drop-shadow(0px 0px #000);
}
@media all and (max-width: 1367px) {
  .slide-img {
    height: 55vw;
  }
}
@media all and (max-width: 639px) {
  .slide-img {
    height: 50vh;
  }
}

#slide-wrap {
  position: relative;
  width: 100%;
  z-index: -1;
  margin-top: 0vh;
}

#slideshow {
  position: relative;
  width: calc(100% - 80px);
  margin: 0 auto 60px;
}
@media all and (max-width: 896px) {
  #slideshow {
    width: calc(100% - 20px);
  }
}
#slideshow:before {
  position: absolute;
  content: "";
  right: -15px;
  bottom: -50px;
  width: 400px;
  height: 300px;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27538/mv_deco_bottom.svg) no-repeat left bottom/contain;
  z-index: 10;
}
#slideshow::after {
  position: absolute;
  content: "";
  left: -15px;
  top: 5px;
  width: 350px;
  height: 229px;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27538/mv_deco_top.svg) no-repeat left bottom/contain;
  z-index: 10;
}
@media all and (max-width: 639px) {
  #slideshow:before {
    width: 200px;
    height: 112px;
  }
  #slideshow::after {
    width: 180px;
    height: 112px;
  }
}

#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: 800px;
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.5));
}
#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: 0%;
  }
}
#catch p {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  writing-mode: vertical-rl;
  font-size: 3rem;
  font-weight: 500;
  color: #fff;
  line-height: 2.2;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
@media all and (max-width: 639px) {
  #catch p {
    font-size: 2rem;
  }
}

#scrolldown {
  position: absolute;
  right: 15px;
  bottom: 60px;
  color: #fefefe;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  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: #59aa5b;
}
.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: #59aa5b;
}
.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: #333;
  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%;
  }
}

/* footer
----------------------------------*/
#l-footer {
  font-size: 1.5rem;
  position: relative;
  background: #59aa5b;
}
#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: center;
  justify-content: center;
  gap: 60px;
  padding: 80px 0;
  max-width: 1300px;
  margin: 0 auto;
}
#l-footer .inner .footer_left {
  width: 30%;
  text-align: center;
}
#l-footer .inner .footer_right {
  width: 70%;
}
@media all and (max-width: 896px) {
  #l-footer .inner {
    flex-direction: column;
  }
  #l-footer .inner > div {
    width: 100%;
    text-align: center;
  }
  #l-footer .inner .footer_left {
    width: 50%;
  }
  #l-footer .inner .footer_right {
    display: none;
  }
  #l-footer .inner .flogo {
    width: 50%;
  }
}
@media all and (max-width: 639px) {
  #l-footer .inner .footer_left {
    width: 90%;
  }
  #l-footer .inner .flogo {
    width: 80%;
  }
}

.footer_img {
  display: flex;
  overflow: hidden;
}
.footer_img img {
  width: 33.3333333333%;
  height: 300px;
  object-fit: cover;
}

.footer_contact {
  margin-bottom: 30px;
}
.footer_contact > li {
  margin-left: 30px;
  margin-right: 30px;
}
.footer_contact > li.tel_link a {
  font-weight: 600;
}
.footer_contact > li a {
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #FFF;
  border-radius: 50px;
  text-align: center;
  padding: 20px 0;
  font-weight: 600;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  font-size: 2rem;
  line-height: 1;
}
.footer_contact > li a:hover {
  opacity: 0.6;
}
.footer_contact > li a i {
  font-size: 0.9em;
  margin-right: 10px;
}
.footer_contact > li:not(:last-child) {
  margin-bottom: 10px;
}
@media all and (max-width: 639px) {
  .footer_contact li a {
    font-size: 1.5rem;
  }
}

.fixed-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translate(0%, 50%);
  z-index: 150;
}
@media all and (max-width: 1100px) {
  .fixed-btn {
    display: none !important;
  }
}
.fixed-btn li {
  margin-bottom: 10px;
}
.fixed-btn li:nth-child(2) a {
  background: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat !important;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat !important;
}
.fixed-btn li:nth-child(3) a {
  background: #59aa5b;
}
.fixed-btn a {
  text-align: center;
  padding: 25px 15px;
  display: block;
  background: #4fa2fc;
  border-radius: 10px 0 0 10px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
  text-orientation: mixed;
  margin-right: 1px;
  border-radius: 50px;
}
.fixed-btn a i {
  display: inline;
  margin-bottom: 4px;
}
.fixed-btn a:hover {
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
  transform: translateY(5px);
}
.fixed-btn a:nth-child(even) {
  background: #4fa2fc;
  border: 1px solid #4fa2fc;
}
.fixed-btn a:nth-child(even):hover {
  background: #fff;
  color: #4fa2fc;
}
.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;
  }
}

/* footer_navi
----------------------------------*/
.footer_navi {
  position: relative;
  margin-bottom: 40px;
}
@media all and (max-width: 896px) {
  .footer_navi {
    display: none;
  }
}
.footer_navi ul {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0 10px;
}
.footer_navi ul li {
  width: calc((100% - 20px) / 3);
}
.footer_navi ul li a {
  color: #333;
  font-size: 1.4rem;
  position: relative;
  font-weight: 600;
  text-align: left;
  border-bottom: 1px solid #ddd;
  padding: 10px;
  display: block;
}
.footer_navi ul li a span {
  transition: 0.2s all ease-in-out;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  position: relative;
  display: block;
  color: rgba(90, 60, 43, 0.5);
  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 {
  background: rgba(255, 255, 255, 0.7);
}
.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;
}

.flogo {
  max-width: 300px;
  text-align: center;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  filter: brightness(0) invert(1);
}
@media all and (max-width: 896px) {
  .flogo {
    width: 30%;
    margin: 0 auto 40px;
  }
}
@media all and (max-width: 639px) {
  .flogo {
    width: 60%;
    margin: 0 auto 40px;
  }
}

.address {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #fff;
  text-align: center;
}
@media all and (max-width: 639px) {
  .address {
    font-size: 12px;
    margin-bottom: 0;
  }
}

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

/*----------------------------------
 layout
----------------------------------*/
.staff_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.staff_list > li {
  width: calc((100% - 40px) / 3);
  background: rgba(89, 170, 91, 0.2);
  border-radius: 20px;
  padding: 20px;
}
.staff_list > li:nth-child(4), .staff_list > li:nth-child(5) {
  background: rgba(79, 162, 252, 0.2);
}
.staff_list > li:nth-child(4) .txt2 span, .staff_list > li:nth-child(5) .txt2 span {
  background: #4fa2fc;
}
.staff_list > li .img {
  text-align: center;
}
.staff_list > li .img img {
  width: 80%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
}
.staff_list > li .txt {
  font-weight: bold;
  text-align: center;
  font-size: 1.4em;
  margin-bottom: 10px;
}
.staff_list > li .txt2 span {
  display: block;
  text-align: center;
}
.staff_list > li .txt2 .bold {
  border-bottom: 2px solid #4fa2fc;
  padding: 5px 0;
  margin-bottom: 5px;
}
.staff_list > li .txt2 .small {
  font-size: 0.75em;
}
.staff_list > li .txt2 .bg {
  display: block;
  text-align: center;
  background: #59aa5b;
  border-radius: 5px;
}
@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);
  }
}

.dog_img {
  display: flex;
  justify-content: space-between;
}
.dog_img img {
  width: 49%;
}

.fas_box {
  max-width: 85%;
  margin: 80px auto 0;
}
.fas_box .inner {
  display: flex;
  align-items: center;
  gap: 100px;
}
.fas_box .inner .img {
  width: 400px;
  height: 300px;
}
.fas_box .inner .img img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fas_box .inner .txt {
  position: relative;
  flex: 1;
}
.fas_box .inner .txt .ttl {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

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

.news-title {
  position: relative;
  margin-right: 60px;
  text-align: left;
  font-weight: 600;
  width: 20%;
}
.news-title .eng {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1 !important;
  color: #59aa5b;
}
.news-title .ja {
  display: block;
  line-height: 1.4;
}
.news-title a {
  padding: 4px 20px;
  border-radius: 30px;
  max-width: 110px;
  display: block;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid #5a3c2b;
  background: #5a3c2b;
  color: #ffffff;
  margin: 20px auto 0;
  font-size: 1.1rem;
}
.news-title a:hover {
  background: transparent;
  color: #5a3c2b;
}
@media all and (max-width: 896px) {
  .news-title {
    width: calc(100% - 10px);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 45px;
    min-width: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .news-title span {
    position: relative;
  }
  .news-title .eng {
    font-size: 2.5rem;
  }
  .news-title .ja {
    margin-left: 10px;
  }
  .news-title a {
    position: absolute;
    top: 0;
    right: 0;
    padding: 2px 15px;
    font-size: 0.9rem;
    margin: 0;
  }
}
@media all and (max-width: 639px) {
  .news-title {
    margin-bottom: 20px;
  }
  .news-title .eng {
    font-size: 2.2rem;
  }
}

.news-right {
  flex: 1;
}

/* 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;
}
.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: #59aa5b;
}
@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: 45%;
  box-sizing: border-box;
  background: #59aa5b;
  border-top: 3px solid #59aa5b;
  border-right: 3px solid #59aa5b;
  border-left: 3px solid #59aa5b;
  color: #ffffff;
  padding: 15px 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.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;
    padding: 5px;
    font-size: 13px;
  }
  .category_tab li:last-child {
    margin-right: 0px;
  }
}

.panel {
  display: none;
}

/* contents
----------------------------------*/
.single03,
.col_stick,
.mbox {
  overflow: visible; /* どこかに hidden/auto があれば外す */
}

.single0 {
  margin: 0 auto;
  padding: 120px 0;
  position: relative;
}
.single0.type2 {
  padding: 120px 0 0;
}

.single {
  max-width: 1100px;
  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: 1400px;
  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.type1,
.single02.type1,
.single03.type1 {
  padding: 120px 0 0;
}
@media all and (max-width: 896px) {
  .single.type1,
  .single02.type1,
  .single03.type1 {
    padding: 60px 0 0;
  }
}
.single.type2,
.single02.type2,
.single03.type2 {
  padding: 0 0 120px;
}

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

.lsingle {
  float: left;
}

.rsingle {
  float: right;
}

/* box
----------------------------------*/
.mbox {
  background: #fefefe;
  padding: 30px;
  position: relative;
  z-index: 3;
  border-radius: 10px;
}
.mbox.type1 {
  background: #f4efe9;
}
.mbox.wk {
  border: 1px solid #59aa5b;
}
.mbox.transparent {
  background: transparent;
}
.mbox.box1 {
  border: 2px solid rgba(79, 162, 252, 0.8);
  box-shadow: 5px 5px rgba(79, 162, 252, 0.5);
}
.mbox::before {
  border-radius: 10px;
}
@media all and (max-width: 639px) {
  .mbox {
    padding: 15px 10px;
  }
}

.mbox2 {
  background: rgba(79, 162, 252, 0.05);
  padding: 30px;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  border-radius: 10px;
}
@media all and (max-width: 639px) {
  .mbox2 {
    padding: 15px;
  }
}

.mbox3 {
  position: relative;
  background: #fefefe;
  border-top: 5px solid #59aa5b;
  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(90, 60, 43, 0.1);
}
@media all and (max-width: 639px) {
  .mbox3 {
    padding: 20px 15px;
  }
}

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

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

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

/* background
----------------------------------*/
.bg-blur {
  position: relative;
}
.bg-blur::before, .bg-blur::after {
  animation: bggradient 5s ease infinite;
  position: absolute;
  content: "";
  z-index: -2;
  border-radius: 50%;
  filter: blur(50px);
  min-width: 500px;
  aspect-ratio: 1/1;
  opacity: 0.1;
}
.bg-blur:before {
  top: 10%;
  right: 6%;
  background: radial-gradient(ellipse farthest-corner at 90% 90%, #59aa5b 10%, #59aa5b 50%);
}
.bg-blur:after {
  bottom: 10%;
  left: 6%;
  background: radial-gradient(ellipse farthest-corner at 90% 90%, #4fa2fc 10%, #4fa2fc 50%);
}
@media all and (max-width: 639px) {
  .bg-blur::before, .bg-blur::after {
    min-width: 200px;
  }
}

.bg-grid {
  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-nami {
  position: relative;
  padding-top: 40px;
}
.bg-nami::before {
  content: " ";
  position: absolute;
  top: 0;
  transform: scale(1, -1);
  left: 0;
  right: 0;
  width: 100%;
  height: 100px;
  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/26822/nami.png);
  z-index: 4;
}
@media all and (max-width: 896px) {
  .bg-nami::before {
    height: 90px;
  }
}
@media all and (max-width: 639px) {
  .bg-nami::before {
    height: 40px;
  }
}

.bg-gradient {
  position: relative;
}
.bg-gradient:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(to right, #59aa5b, #4fa2fc);
  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, #4fa2fc, #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, #59aa5b, #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-01 {
  position: relative;
}
.bg-01:before {
  position: absolute;
  content: "";
  width: 450px;
  height: 450px;
  right: -40px;
  bottom: 0;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27538/deco01.png) no-repeat center/contain;
  opacity: 0.3;
}
.bg-01:after {
  position: absolute;
  content: "";
  width: 450px;
  height: 450px;
  left: -80px;
  top: 0;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27538/deco02.png) no-repeat center/contain;
  z-index: -1;
  opacity: 0.3;
}

.bg-w {
  position: relative;
}
.bg-w:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #fefefe;
  z-index: -1;
}
.bg-w.round:before {
  border-radius: 100px;
}
.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-base {
  position: relative;
  padding-bottom: 60px;
}
.bg-base.type1:before {
  background: #59aa5b;
  opacity: 0.1;
}
.bg-base:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #f6f8f6;
  z-index: -2;
}
@media all and (max-width: 896px) {
  .bg-base::before {
    border-bottom-left-radius: 200px;
  }
}
@media all and (max-width: 639px) {
  .bg-base {
    padding-bottom: 0;
  }
  .bg-base::before {
    border-bottom-left-radius: 100px;
  }
}

.bg-sub {
  position: relative;
  background: rgba(79, 162, 252, 0.1);
}
.bg-sub.type1 {
  margin: 0 auto 20px;
  width: calc(100% - 40px);
  background: linear-gradient(to bottom, rgba(250, 248, 245, 0.6), rgba(250, 248, 245, 0.4));
}
@media all and (max-width: 639px) {
  .bg-sub.type1 {
    margin: 0 auto 10px;
    width: calc(100% - 20px);
  }
}

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

/* mtitle
----------------------------------*/
.mtitle {
  margin: 0 auto 60px;
  position: relative;
}
.mtitle .eng,
.mtitle .eng2 {
  font-size: 1.8rem;
  color: #59aa5b;
  position: relative;
  z-index: 2;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  font-weight: 500;
  line-height: 1;
  display: block;
  padding-left: 0.35em;
}
.mtitle .eng2 {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
}
.mtitle .ja {
  font-weight: 600;
  position: relative;
  z-index: 2;
  font-size: 3rem;
  color: #333;
  display: block;
  line-height: 1.5;
  margin-top: 5px;
}
.mtitle.sbc span.eng, .mtitle.sbc span.eng2 {
  color: #4fa2fc;
}
.mtitle.white .eng,
.mtitle.white .eng2 {
  color: #fff;
}
.mtitle.white .eng:before,
.mtitle.white .eng2:before {
  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;
  }
  .mtitle .eng,
  .mtitle .eng2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  .mtitle .ja {
    font-size: 2.3rem;
  }
}

.mtitle2 {
  margin: 0 auto 30px;
}
.mtitle2 .ja {
  font-family: "Noto Sans JP", "Zen Kaku Gothic New", "YakuHanJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 2;
  font-size: 3rem;
  color: #333;
  display: block;
  line-height: 1.5;
  margin-top: 5px;
  position: relative;
  padding-left: 0.8em;
}
.mtitle2 .ja:before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: block;
  content: "";
  width: 8px;
  height: 1em;
  background: #59aa5b;
  border-radius: 100px;
}
.mtitle2.mtitle_left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .mtitle2 {
    margin-bottom: 15px;
  }
  .mtitle2 .ja {
    font-size: 2rem;
  }
}

.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: "Jost", sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  font-size: 2rem;
  color: #59aa5b;
}
@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;
  }
}

.mtitle4 {
  font-weight: normal;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
}
.mtitle4 span {
  position: relative;
  display: inline-block;
}
.mtitle4 span:before, .mtitle4 span:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 60px;
  height: 1px;
  background-color: #333;
}
.mtitle4 span:before {
  left: -80px;
}
.mtitle4 span:after {
  right: -80px;
}
@media all and (max-width: 639px) {
  .mtitle4 {
    font-size: 1.5rem;
  }
  .mtitle4 span:before, .mtitle4 span:after {
    width: 30px;
  }
  .mtitle4 span:before {
    left: -30px;
  }
  .mtitle4 span:after {
    right: -30px;
  }
}

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

.mtitle_line {
  position: relative;
  margin-bottom: 20px;
  color: #5a3c2b;
  border-top: 2px solid #59aa5b;
  font-size: 1.8rem;
  padding: 6px 10px 16px;
  font-family: "Noto Sans JP", "Zen Kaku Gothic New", "YakuHanJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.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, rgb(70.438247012, 137.561752988, 72.0956175299), rgb(70.438247012, 137.561752988, 72.0956175299) 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: "Jost", sans-serif;
  font-weight: 400;
  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: 2rem;
  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: 12em;
  height: 2px;
  background: #59aa5b;
}
@media all and (max-width: 639px) {
  .mtitle-bll {
    font-size: 1.6rem;
  }
}

.mtitle_sub {
  padding-left: 0.5em;
  font-weight: 600;
  position: relative;
  border-left: 6px solid #59aa5b;
  margin: 8px 0 15px;
  line-height: 1.5;
  text-align: left;
  font-size: 2rem;
}
.mtitle_sub.white {
  color: #fff;
  border-left: 6px solid #faf8f5;
}
.mtitle_sub.white:before {
  background-color: #faf8f5;
}
.mtitle_sub span {
  color: #59aa5b;
  padding-left: 8px;
  font-size: 0.9em;
}
@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: "Noto Sans JP", "Zen Kaku Gothic New", "YakuHanJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #5a3c2b;
}
.mtitle_point:after {
  content: "";
  width: 30px;
  height: 2px;
  background: #4fa2fc;
  display: block;
  margin: 10px auto 0;
}
@media all and (max-width: 639px) {
  .mtitle_point {
    font-size: 1.5rem;
  }
}

.mtitle_box {
  background: #59aa5b;
  color: #fff;
  font-size: 2rem;
  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: rgb(79.0737051793, 154.4262948207, 80.9342629482);
  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: #59aa5b;
  content: "";
  display: block;
  transform: rotate(60deg);
  position: absolute;
  bottom: -10px;
  right: -150px;
  width: 300px;
  height: 280px;
}
@media all and (max-width: 639px) {
  .mtitle_box2 {
    font-size: 15px;
    line-height: 1.5;
    padding: 10px 10px 10px 15px;
    padding-right: 40px;
  }
  .mtitle_box2 span {
    font-size: 12px;
  }
  .mtitle_box2:before {
    width: 215px;
    right: -170px;
  }
}

.mtitle_fukidashi {
  position: relative;
  padding: 0.5em 0.7em;
  border-radius: 10px;
  background-color: #59aa5b;
  color: #fff;
  font-size: 2rem;
  margin-bottom: 40px;
}
.mtitle_fukidashi.type1 {
  background-color: #4fa2fc;
}
.mtitle_fukidashi.type1:after {
  border-top: 11px solid #4fa2fc;
}
.mtitle_fukidashi:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 30px;
  width: 0;
  height: 0;
  border: 11px solid transparent;
  border-top: 11px solid #59aa5b;
}
@media all and (max-width: 639px) {
  .mtitle_fukidashi {
    font-size: 1.6rem;
  }
}

.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.7rem;
  }
  .mtext3.b-m40 {
    margin-bottom: 20px;
  }
}

.mtext-sub {
  font-weight: 600;
}
.mtext-sub span {
  background: #4fa2fc;
  color: #fff;
  display: inline-block;
  padding: 0 10px;
  margin-right: 10px;
  border-radius: 5px;
}

.mtitle_category {
  margin-bottom: 15px;
  font-size: 1.8rem;
  text-transform: uppercase;
  font-weight: 800;
}
.mtitle_category:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0ca";
  font-weight: 900;
  margin-right: 5px;
  color: #59aa5b;
}
.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;
  }
}

.mtitle_small {
  font-weight: 600;
  padding: 0 0 4px;
  font-size: 1.6rem;
  border-bottom: 1px solid #faf8f5;
  position: relative;
  margin-bottom: 10px;
}
.mtitle_small:before {
  font-family: "Font Awesome 5 Free";
  content: "\f138";
  font-weight: 900;
  margin-right: 5px;
  color: #4fa2fc;
}
.mtitle_small.type1 {
  border-bottom: 1px solid rgb(241.5, 236.1, 228);
  color: #333;
}
.mtitle_small.type1:before {
  color: #59aa5b;
}
.mtitle_small.type2 {
  border-bottom: 1px solid rgb(241.5, 236.1, 228);
  color: #333;
}
.mtitle_small.type2:before {
  color: #4fa2fc;
}
.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: #59aa5b;
  width: 10px;
  height: 4px;
  position: absolute;
  top: 0.6em;
  left: 0;
}
.mtitle_small2.white {
  color: #fff;
}
.mtitle_small2.white:before {
  background-color: #4fa2fc;
}

.mtitle_small3 {
  font-family: "Noto Sans JP", "Zen Kaku Gothic New", "YakuHanJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #5a3c2b;
  padding: 10px 0;
  font-size: 1.6rem;
  border-top: 1px solid #4fa2fc;
  border-bottom: 1px solid #4fa2fc;
  margin-bottom: 15px;
}
.mtitle_small3:before {
  content: "―";
  margin-right: 8px;
  color: #4fa2fc;
}
@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: "Noto Sans JP", "Zen Kaku Gothic New", "YakuHanJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.mtitle_small4.type1:before {
  background: rgba(79, 162, 252, 0.8);
}
.mtitle_small4:before {
  position: absolute;
  top: 15%;
  left: 8px;
  width: 6px;
  height: 70%;
  content: "";
  background: rgba(89, 170, 91, 0.8);
}
@media all and (max-width: 639px) {
  .mtitle_small4 {
    font-size: 1.6rem;
    padding: 12px 12px 12px 24px;
  }
}

/* btn
----------------------------------*/
.btn01 a {
  width: 260px;
  margin: 40px auto 20px;
  color: #5a3c2b;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(89, 170, 91, 0.2);
  display: block;
  padding: 15px 30px;
  border-radius: 40px;
  font-weight: bold;
  position: relative;
  box-shadow: 2px 4px 6px -1px rgba(0, 0, 0, 0.15);
}
.btn01 a::after {
  content: "●";
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  transition: all 0.5s ease;
  color: #59aa5b;
}
.btn01 a:hover {
  background: #59aa5b;
  color: #fff;
}
.btn01 a:hover::after {
  right: 20px;
  color: #fff;
}
.btn01.mail {
  flex-basis: 100%;
}
.btn01.mail a {
  background: #4fa2fc;
  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: #333;
}
.btn01.white a:hover::after {
  color: #59aa5b;
}
.btn01.white2 a {
  background: #fff;
  border: 1px solid #ddd;
}
.btn01.white2 a:hover {
  color: #333;
}
.btn01.white2 a:hover::after {
  color: #59aa5b;
}
@media all and (max-width: 639px) {
  .btn01 a {
    width: 95%;
    font-size: 1rem;
    padding: 15px 30px;
  }
  .btn01.left a {
    margin-left: auto;
  }
}

.btn02 {
  max-width: 280px;
  width: 90%;
  margin: 20px auto 0;
}
.btn02 a {
  display: block;
  position: relative;
  padding: 15px 0;
  background-color: white;
  border: 1px solid #5a3c2b;
  line-height: 24px;
  text-align: center;
  color: #5a3c2b;
}
.btn02 a i {
  display: block;
  position: absolute;
  top: 50%;
  right: -10px;
  width: 45px;
  height: 1px;
  background-color: #5a3c2b;
  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: rgb(253.4, 252.76, 251.8);
  border: 1px solid #d5cfca;
  line-height: 24px;
  color: #5a3c2b;
  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: rgb(241.5, 236.1, 228);
}

.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: "Jost", sans-serif;
  font-weight: 400;
  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: #59aa5b;
  border-color: transparent;
}
.btn_wk a:hover:before, .btn_wk a:hover:after {
  width: calc(100% + 11px);
  height: calc(100% + 11px);
  border-color: #59aa5b;
}
.btn_wk.sbc a:hover {
  color: #fff;
  background: #4fa2fc;
}
.btn_wk.sbc a:hover:before, .btn_wk.sbc a:hover:after {
  border-color: #4fa2fc;
}
.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: "Jost", sans-serif;
  font-weight: 400;
  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: #59aa5b;
  border-color: transparent;
}
.btn_wk2 a:hover:before, .btn_wk2 a:hover:after {
  width: calc(100% + 11px);
  height: calc(100% + 11px);
  border-color: #59aa5b;
}
.btn_wk2 .btn_wrap {
  display: flex;
}
.btn_wk2 .btn_wrap div {
  margin: 0 5px;
}
.btn_wk2 .btn_wrap.center {
  justify-content: center;
}

.btns {
  margin-bottom: 10px;
}
.btns a {
  display: table;
  width: auto;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.9em;
  letter-spacing: 0.1em;
  background: #fff;
  color: #59aa5b;
  border: 1px solid #59aa5b;
  padding: 3px 25px;
  border-radius: 30px;
}
.btns a:after {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  margin-left: 8px;
}
.btns a:hover {
  color: #fff;
  background: #59aa5b;
}
.btns.right a {
  margin-right: 0;
}
.btns.left a {
  margin-left: 0;
}
@media all and (max-width: 639px) {
  .btns {
    margin-top: 20px;
  }
  .btns a {
    padding: 3px 20px;
  }
}
.btns.line a {
  background-color: #00b900;
  border: 1px solid #00b900;
}
.btns.line a:hover {
  background: transparent;
  color: #00b900;
}

.btn_wrap {
  display: flex;
}
.btn_wrap div {
  margin: 0 5px;
}
.btn_wrap.center {
  justify-content: center;
}

/* page-title
----------------------------------*/
.page-title {
  margin-left: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-left: auto;
  width: 100%;
}
.page-title .inner {
  height: 500px;
  position: relative;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27538/p01.jpg) no-repeat center/cover;
  overflow: hidden;
}
.page-title .inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #5a3c2b;
  opacity: 0.5;
}
.page-title .page-lead {
  color: #fff;
  line-height: 1.8;
  position: absolute;
  right: 5%;
  bottom: 10%;
  transform: translate(0%, 50%);
  text-align: center;
}
.page-title .page-lead span {
  display: block;
}
.page-title .page-lead .ja {
  font-family: "Noto Sans JP", "Zen Kaku Gothic New", "YakuHanJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 3rem;
}
.page-title .page-lead .eng {
  font-size: 3rem;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  letter-spacing: 0.05em;
}
@media all and (max-width: 1367px) {
  .page-title .inner {
    height: 450px;
  }
}
@media all and (max-width: 1100px) {
  .page-title .inner {
    height: 400px;
  }
  .page-title .inner .page-lead {
    bottom: 20%;
  }
}
@media all and (max-width: 896px) {
  .page-title .inner {
    height: 300px;
  }
  .page-title .page-lead .ja {
    font-size: 1.8rem;
  }
  .page-title .page-lead .eng {
    font-size: 1.8rem;
  }
}
@media all and (max-width: 639px) {
  .page-title .inner {
    height: 200px;
  }
}

/* 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: #4fa2fc;
  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: #4fa2fc;
  margin-top: -10px;
}
.company td {
  background: #f9f9f9;
  padding-left: 20px;
  color: #333;
}

.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: #5a3c2b;
}
.tbl-profile.type1 th {
  width: 25%;
}
@media all and (max-width: 639px) {
  .tbl-profile.type1 th {
    width: 30%;
  }
}

.tbl {
  width: 100%;
  border: 1px solid #ededed;
}
.tbl.type_beige th {
  background: rgba(209, 189, 128, 0.2);
}
.tbl th,
.tbl td {
  padding: 15px;
  vertical-align: middle;
  border-bottom: 1px solid #ededed;
  border-right: 1px solid #ededed;
  font-size: 1.5rem;
}
.tbl th {
  background: rgba(89, 170, 91, 0.2);
  text-align: center;
  border-bottom: 1px solid #fff;
  width: 28%;
}
.tbl th span {
  font-size: 1.4rem;
}
.tbl td {
  background: #fefefe;
}
.tbl .cell01 {
  width: 45%;
}
.tbl .cell02 {
  width: 30%;
}
@media all and (max-width: 639px) {
  .tbl th {
    white-space: nowrap;
    text-align: center;
  }
  .tbl th,
  .tbl td {
    padding: 10px 8px;
    letter-spacing: 0;
    font-size: 1rem;
  }
}

.tbl2 {
  width: 100%;
}
.tbl2.black td {
  color: #333;
}
.tbl2 th,
.tbl2 td {
  padding: 5px 12px;
  vertical-align: middle;
}
.tbl2 th {
  font-weight: 600;
  width: 25%;
  padding: 7px 12px;
}
.tbl2 th span {
  background: #4fa2fc;
  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;
  }
}

.tbl3 {
  width: 100%;
  border-spacing: 0 10px;
  border-collapse: separate;
}
.tbl3 th,
.tbl3 td {
  padding: 5px 15px;
  vertical-align: middle;
  font-weight: 500 !important;
  font-weight: 600;
}
.tbl3 th span,
.tbl3 td span {
  font-size: 90%;
  color: #565656;
}
.tbl3 th {
  background: #F59F66;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  color: #fff;
  white-space: nowrap;
  width: 40%;
}
.tbl3 th span {
  color: #fff;
}
.tbl3 td {
  background: #fefefe;
  padding: 10px 20px;
  border: 2px solid rgba(245, 159, 102, 0.5);
  border-left: none;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
@media all and (max-width: 639px) {
  .tbl3 th {
    white-space: nowrap;
    text-align: center;
  }
  .tbl3 th,
  .tbl3 td {
    padding: 10px 8px;
    letter-spacing: 0;
    font-size: 1rem;
  }
}

.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 tr {
  border-top: 1px solid rgba(90, 60, 43, 0.2);
}
.tbl-border th,
.tbl-border td {
  padding: 10px;
  border-bottom: 1px solid rgba(90, 60, 43, 0.2);
  vertical-align: middle;
  text-align: left;
}
@media all and (max-width: 639px) {
  .tbl-border th,
  .tbl-border td {
    padding: 10px;
    font-size: 1.2rem;
  }
}
.tbl-border th {
  width: 25%;
}
.tbl-border th.th-1 {
  width: 45%;
}
@media all and (max-width: 639px) {
  .tbl-border th {
    width: 30%;
  }
}

.timetable {
  width: 100%;
  border-top: 2px solid rgb(28.8547486034, 135.5027932961, 251.1452513966);
}
.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: #4fa2fc;
}
.timetable .circle:before {
  content: "〇";
}
@media all and (max-width: 639px) {
  .timetable {
    padding: 15px 10px;
  }
  .timetable .th-1 {
    width: 25%;
  }
}

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

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

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

.list-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.list-inline li {
  display: inline-block;
  padding: 1px;
  background: #59aa5b;
  border-radius: 20px;
  padding: 3px 20px;
  font-size: 0.9em;
}
.list-inline li:not(:last-of-type):after {
  content: "/";
  margin: 0 1px;
  color: #4fa2fc;
  font-weight: normal;
}
@media all and (max-width: 639px) {
  .list-inline li {
    display: block;
    padding: 0;
  }
  .list-inline li:before {
    content: "-";
    color: #4fa2fc;
  }
  .list-inline li:not(:last-of-type):after {
    display: none;
  }
}

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

.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: rgb(53.1673306773, 103.8326693227, 54.4183266932);
  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: #4fa2fc;
  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: "Jost", sans-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: #4fa2fc;
}
.list_disc.type2 li:before {
  content: "●";
  color: #fff;
}
.list_disc.type3 li:not(:last-of-type) {
  margin-bottom: 20px;
}
.list_disc li {
  position: relative;
  text-indent: -1em;
  padding-left: 1em;
}
.list_disc li span {
  display: block;
  font-size: 0.95em;
  font-weight: 500;
}
.list_disc li:not(:last-of-type) {
  margin-bottom: 5px;
}
.list_disc li:before {
  content: "●";
  color: #59aa5b;
  font-size: 0.5em;
  padding-right: 5px;
}

.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 .note,
.list2 .child .note {
  padding: 30px;
}
.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(79, 162, 252, 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;
  }
}

.daily-dl {
  position: relative;
}
.daily-dl.type1 .inner dt .step {
  display: block;
  text-align: center;
  font-size: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  height: 100%;
  line-height: 1.3;
}
.daily-dl.type1 .inner dt .step span {
  display: block;
  font-size: 0.8em;
}
.daily-dl.type1 .inner dt .step {
  font-size: 1.5rem;
}
.daily-dl.type1 .inner dd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 20px;
}
.daily-dl.type1 .inner dd .image {
  width: 20%;
}
.daily-dl.type1 .inner dd .txt {
  width: 76%;
}
@media all and (max-width: 639px) {
  .daily-dl.type1 .inner dd {
    display: block;
    margin-left: 0px;
  }
  .daily-dl.type1 .inner dd .image {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
  }
  .daily-dl.type1 .inner dd .txt {
    width: 90%;
  }
  .daily-dl.type1 .inner dd .txt .mtext0 {
    text-align: center;
  }
}
.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: #59aa5b;
}
.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: 120%;
    left: 27px;
    top: 15px;
  }
}
.daily-dl .inner dt {
  position: relative;
  width: 80px;
  height: 80px;
  line-height: 80px;
  background: #59aa5b;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  font-size: 1.8rem;
  z-index: 4;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-weight: 500;
}
.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;
    width: 60px;
    height: 60px;
    line-height: 60px;
  }
  .daily-dl .inner dt.big {
    font-size: 2rem;
  }
}
.daily-dl .inner dd {
  flex: 1;
  position: relative;
  background: #fff;
  left: -10px;
  padding: 15px 10px 15px 35px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 3px;
  color: #333;
}
.daily-dl .inner dd .ttl {
  font-weight: bold;
  font-size: 2rem;
  color: rgb(79.0737051793, 154.4262948207, 80.9342629482);
  border-bottom: 1px dashed #ddd;
  margin-bottom: 10px;
}
.daily-dl .inner dd .ttl .mini {
  font-size: 0.8em;
  font-weight: 500;
  color: #333;
}
.daily-dl .inner dd .sub_ttl {
  font-weight: 600;
  display: block;
  margin-top: 15px;
}
.daily-dl .inner dd .sub_ttl:before {
  content: "●";
  color: #59aa5b;
  font-size: 0.8em;
}
.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 {
    padding: 0px 0px 15px 18px;
    margin-top: 10px;
  }
  .daily-dl .inner dd .ttl {
    font-size: 1.3rem;
  }
}
.daily-dl .inner dd .item {
  border-bottom: 1px dashed #ddd;
  margin-bottom: 20px;
  padding-bottom: 10px;
}

.faq-dl .faq-inner {
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 60px;
  box-shadow: rgba(17, 12, 46, 0.05) 0px 48px 100px 0px;
  padding-left: 30px;
}
.faq-dl .faq-inner:not(:last-of-type) {
  margin-bottom: 20px;
}
.faq-dl .faq-inner dt,
.faq-dl .faq-inner dd {
  position: relative;
  font-size: 1.6rem;
}
@media all and (max-width: 639px) {
  .faq-dl .faq-inner dt,
  .faq-dl .faq-inner dd {
    font-size: 1.2rem;
  }
}
.faq-dl .faq-inner dt:before,
.faq-dl .faq-inner dd:before {
  position: absolute;
  content: "";
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Jost", sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
}
.faq-dl .faq-inner dt {
  font-weight: 600;
  padding: 20px 15px;
  padding-left: 55px;
  cursor: pointer;
  z-index: 2;
}
@media all and (max-width: 639px) {
  .faq-dl .faq-inner dt {
    padding-left: 40px;
  }
}
.faq-dl .faq-inner dt:before {
  content: "Q.";
  color: #4fa2fc;
  font-size: 3rem;
}
@media all and (max-width: 639px) {
  .faq-dl .faq-inner dt:before {
    font-size: 2rem;
  }
}
.faq-dl .faq-inner dt.on:after {
  content: "－";
}
.faq-dl .faq-inner dt:after {
  content: "＋";
  position: absolute;
  top: 50%;
  right: 2%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #002F5D;
  text-align: center;
}
.faq-dl .faq-inner dt span {
  position: relative;
}
.faq-dl .faq-inner dt span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 10px;
  background-image: linear-gradient(to right, #59aa5b, #c9e71f);
  opacity: 0.5;
  z-index: -1;
}
@media all and (max-width: 639px) {
  .faq-dl .faq-inner dt span::after {
    display: none;
  }
}
@media all and (max-width: 639px) {
  .faq-dl .faq-inner dt:hover span {
    color: #59aa5b;
  }
}
.faq-dl .faq-inner:active dt:after {
  content: "－";
}
.faq-dl .faq-inner dd {
  display: none;
  padding: 20px;
  padding-left: 55px;
}
.faq-dl .faq-inner dd:before {
  content: "A.";
  color: #59aa5b;
  font-size: 3rem;
}
@media all and (max-width: 639px) {
  .faq-dl .faq-inner dd:before {
    font-size: 2rem;
  }
}
@media all and (max-width: 639px) {
  .faq-dl .faq-inner {
    padding-left: 0px;
  }
  .faq-dl .faq-inner dt:after {
    font-size: 1.2rem;
  }
  .faq-dl .faq-inner dt:before {
    font-size: 1.3rem;
  }
  .faq-dl .faq-inner dd {
    padding-left: 40px;
  }
  .faq-dl .faq-inner dd:before {
    font-size: 1.3rem;
  }
}

.flow-list {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  gap: 20px;
}
.flow-list li {
  width: calc((100% - 40px) / 1);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  background: #fefefe;
  box-shadow: 0 0 15px rgba(90, 60, 43, 0.05);
  border-radius: 5px;
}
.flow-list li.type100 {
  flex-basis: 100%;
  margin-right: 0;
}
.flow-list li .detail {
  margin-left: 20px;
}
.flow-list li .flow-num {
  color: #59aa5b;
  font-size: 3.5rem;
  align-self: center;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  border-right: 2px dashed #4fa2fc;
  padding-right: 20px;
}
.flow-list li .flow-num span {
  font-size: 1.4rem;
  display: block;
  text-align: center;
}
.flow-list li .flow-title {
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
}
@media all and (max-width: 639px) {
  .flow-list {
    gap: 10px;
  }
  .flow-list li {
    width: 100%;
    padding: 10px 15px;
  }
  .flow-list li .flow-title {
    font-size: 1.4rem;
  }
  .flow-list li .flow-num {
    font-size: 2.3rem;
    padding-right: 12px;
  }
  .flow-list li .flow-num span {
    font-size: 1.2rem;
  }
}

.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: #4fa2fc;
}
.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: #4fa2fc;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "Jost", sans-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: #333;
  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: rgb(241.5, 236.1, 228);
  padding: 14px 20px;
  color: #5a3c2b;
  border-top: 1px solid #4fa2fc;
  border-bottom: 1px solid #4fa2fc;
}
.price-dl dd {
  padding: 20px;
  margin-bottom: 25px;
}

.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: #59aa5b;
  width: 60px;
  text-align: center;
  margin-right: 20px;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  padding-top: 8px;
}
.flow-dl dt span {
  font-size: 3.5rem;
  display: block;
  line-height: 1;
  color: #4fa2fc;
  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;
  }
}

.column2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.column2.tp {
  align-items: flex-start;
}
.column2.row-r {
  flex-direction: row-reverse;
}
.column2 .child {
  width: 47%;
}
.column2 .child2 {
  width: 40%;
}
.column2 .child3 {
  width: 56%;
}
.column2 .child4 {
  width: 28%;
}
.column2 .child5 {
  width: 65%;
}
.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;
  }
}

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

#main dl .inner,
.news-right dl .inner {
  position: relative;
  border-bottom: 1px solid #e6e4e0;
  padding: 30px 20px;
}
#main dl .inner dt,
.news-right dl .inner dt {
  float: left;
  margin-right: 20px;
  text-align: center;
  background: #e6e4e0;
  color: #333;
  color: #fff;
  background: #59aa5b;
  border-radius: 30px;
  font-weight: 600;
  padding: 2px 15px;
  text-align: center;
}
#main dl .inner dd,
.news-right dl .inner dd {
  padding: 0 0 0 20px;
  color: #333;
  line-height: 1.6;
}
@media all and (max-width: 896px) {
  #main,
  .news-right {
    width: 100%;
  }
  #main dl .inner,
  .news-right dl .inner {
    width: 100%;
    padding: 5px 3px;
  }
  #main dl .inner dt,
  .news-right dl .inner dt {
    float: none;
    width: 10em;
    margin-bottom: 10px;
    margin-right: 0px;
  }
  #main dl .inner dd,
  .news-right dl .inner dd {
    padding: 5px 3px;
  }
}

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

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

.img-y {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.img-y img {
  border-radius: 20px;
}

.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;
  object-position: center;
  border-radius: 30px;
  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;
  }
}

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

.b-txt {
  border-bottom: 2px dashed rgba(90, 60, 43, 0.2);
  padding-bottom: 0.2em;
  line-height: 2.2;
  font-weight: 600;
}
.b-txt.type1:before {
  font-family: "Font Awesome 5 Free";
  content: "\f06c";
  font-weight: 900;
  color: #59aa5b;
  font-size: 1.3rem;
  padding-right: 10px;
}

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

.img-r2 {
  border-radius: 10px;
  object-fit: cover;
}

.bnr_img {
  max-width: 1100px;
  margin: auto;
}
.bnr_img a img {
  border: 10px solid #fff;
  border-radius: 20px;
}
.bnr_img a:hover {
  opacity: 0.6;
}

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

.color1 {
  color: #59aa5b;
}

.color2 {
  color: #4fa2fc;
}

.color3 {
  color: #333;
}

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

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

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

.num {
  font-weight: 700;
}
.num a {
  color: #59aa5b;
  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: #59aa5b;
}

.telbnr {
  margin: 0 auto;
  padding-top: 25px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.telbnr li {
  text-align: center;
  line-height: 1.4;
  width: 40%;
}
.telbnr li a {
  margin-top: 20px;
  display: block;
  font-size: 3rem;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #5a3c2b;
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 200px;
  white-space: nowrap;
  box-shadow: rgba(17, 12, 46, 0.05) 0px 48px 100px 0px;
}
.telbnr li a .mn {
  font-weight: 600;
  color: #5a3c2b;
  padding: 5px 20px;
  border-radius: 10px;
  display: block;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.telbnr li a i {
  padding-right: 15px;
}
.telbnr li a .icon {
  display: block;
  text-align: center;
  margin-bottom: 20px;
}
.telbnr li a .icon img {
  max-width: 40px;
}
.telbnr li a:hover {
  background: rgba(90, 60, 43, 0.1);
}
@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.5rem;
    margin-bottom: 10px;
  }
  .telbnr li a .icon {
    margin-bottom: 10px;
  }
  .telbnr li a .icon img {
    max-width: 50px;
  }
}

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

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

.note {
  padding: 1em;
  margin-top: 10px;
  background: #faf8f5;
  border-radius: 15px;
}
@media all and (max-width: 639px) {
  .note {
    font-size: 1.15rem;
  }
}
.note.type1 {
  background: #f4efe9;
}

.name {
  width: 180px;
  margin: -20px auto 20px;
  position: relative;
  z-index: 2;
  background: #fff;
  color: #5a3c2b;
  font-weight: 600;
  text-align: center;
  padding: 15px 6px;
  box-shadow: 0 0 8px rgba(90, 60, 43, 0.05);
  line-height: 1.5;
  font-size: 1.6rem;
  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;
}
.name b {
  color: rgb(122.7290836653, 187.2709163347, 124.3227091633);
  display: block;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
}
.name .small {
  font-size: 1.3rem;
  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;
}
.name .small2 {
  font-size: 0.7em;
  font-family: "Noto Sans JP", "Zen Kaku Gothic New", "YakuHanJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  letter-spacing: 0.1em;
}

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

/* breadcrumb
----------------------------------*/
.breadcrumb {
  max-width: 1100px;
  margin: 20px auto 20px;
  font-size: 1.2rem;
  text-align: center;
}
.breadcrumb li {
  display: inline;
  color: rgba(90, 60, 43, 0.5);
}
.breadcrumb li a {
  color: #5a3c2b;
}
.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: #333;
}
.form-contents .form-thanks-msg {
  background: #f3f5f7 !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.form-contents .form-thanks-msg p {
  color: #333 !important;
}
.form-contents .form-thanks-msg .back-home-btn a {
  color: #4fa2fc !important;
  border: 2px solid #4fa2fc !important;
}
.form-contents .form-thanks-msg .back-home-btn a:hover {
  background: #4fa2fc !important;
  color: #fff !important;
}
.form-contents .required::before {
  background: #59aa5b !important;
}
.form-contents .textarea {
  background-color: #f8f9fa !important;
  border: none !important;
}
.form-contents .submit-btn {
  background-color: #fff !important;
  border: none !important;
  color: #59aa5b !important;
  border-radius: 30px !important;
  position: relative !important;
  border: 1px solid #59aa5b !important;
}
.form-contents .submit-btn::before {
  display: none !important;
}
.form-contents .submit-btn:hover {
  background: #59aa5b !important;
  color: #fff !important;
}
.form-contents .custom-area p {
  padding: 10px 0;
}
.form-contents dl dd:not(.pattern-exclusion) {
  border-bottom: none !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;
  }
}
.policy {
  padding: 30px;
  background: rgb(253.4, 252.76, 251.8);
}

/* accordion
----------------------------------*/
.accordion {
  border: 1px solid #ccc;
}
.accordion dt,
.accordion dd {
  position: relative;
  padding: 1em;
}
.accordion dt {
  cursor: pointer;
  font-size: 1.7rem;
  font-family: "Noto Sans JP", "Zen Kaku Gothic New", "YakuHanJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #333;
}
.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: #333;
}
@media all and (max-width: 639px) {
  .accordion dt {
    font-size: 1.3rem;
  }
  .accordion dd {
    padding: 15px;
  }
}

/* Gallery
----------------------------------*/
.gallery {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.gallery.p_none li p {
  display: none;
}
.gallery.col4 {
  gap: 10px;
}
.gallery.col4 li {
  width: calc((100% - 45px) / 4);
}
.gallery.col4 li:nth-child(4n) {
  margin-right: 0;
}
@media all and (max-width: 896px) {
  .gallery.col4 li {
    width: calc((100% - 20px) / 3);
  }
}
@media all and (max-width: 639px) {
  .gallery.col4 li {
    width: calc((100% - 10px) / 2);
    margin-bottom: 10px;
  }
  .gallery.col4 li a {
    height: 150px;
  }
}
.gallery li a {
  display: block;
  text-align: center;
  padding: 0px;
  height: 250px;
}
.gallery li a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover;";
  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_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;
  }
}

/* anker link
----------------------------------*/
#a01,
#a02,
#a03,
#a04,
#a05,
#a06,
#a07,
#a08,
#contact,
.anchor {
  display: block;
  padding-top: 100px;
  margin-top: -100px;
}
@media all and (max-width: 1100px) {
  #a01,
  #a02,
  #a03,
  #a04,
  #a05,
  #a06,
  #a07,
  #a08,
  #contact,
  .anchor {
    padding-top: 0px;
    margin-top: 0px;
  }
}

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

.slider-item {
  width: 100%;
  max-width: 700px;
  border: 2px solid #4fa2fc;
  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: #59aa5b;
}
@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: #4fa2fc;
  }
}
.slide-arrow.next-arrow {
  right: 50%;
  margin-right: -370px;
  border-top: solid 2px;
  border-right: solid 2px;
  border-color: #59aa5b;
}
@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: #4fa2fc;
  }
}

.bg-fixed {
  position: relative;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26822/fixed_img.jpg) no-repeat center center/cover;
  background-attachment: fixed;
  width: 100%;
  height: 60vh;
}
.bg-fixed .scrolldown1 {
  top: inherit;
  bottom: 0;
  z-index: 100;
}

@media all and (max-width: 896px) {
  .bg-fixed {
    height: 30vh;
    background-attachment: inherit !important;
  }
}
.top_contact {
  max-width: 900px;
  margin: 0 auto 60px;
}
@media all and (max-width: 896px) {
  .top_contact {
    margin: 0 auto;
    max-width: 95%;
  }
}
@media all and (max-width: 639px) {
  .top_contact {
    padding: 30px 0 60px;
  }
}
.top_contact .ttl {
  text-align: center;
}
.top_contact .txt {
  margin-top: 30px;
  text-align: center;
}
@media all and (max-width: 639px) {
  .top_contact .txt {
    margin-top: 0;
  }
}
.top_contact .tel_bnr {
  position: relative;
  z-index: 100;
  margin-bottom: 30px;
}
.top_contact .tel_bnr a {
  display: block;
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid #ddd;
  background: #faf8f5;
  text-align: center;
  font-size: 3rem;
  border-radius: 60px;
  color: #59aa5b;
  font-family: "Roboto", sans-serif;
  padding: 15px 60px;
  line-height: 1.2;
}
.top_contact .tel_bnr a .small {
  font-size: 1.3rem;
  color: #333;
}
.top_contact .tel_bnr a:hover {
  color: #4fa2fc;
}
@media all and (max-width: 639px) {
  .top_contact .tel_bnr a {
    padding: 15px 30px;
    font-size: 2rem;
  }
  .top_contact .tel_bnr a .small {
    font-size: 12px;
  }
}

.btn_waku {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

a.btn-join {
  font-size: 2.2rem;
  position: relative;
  padding: 1.5rem 3rem 1.5rem 3rem;
  color: #fff;
  width: 300px;
  background: #fa8e12;
  box-shadow: 0 5px 0 #e7810c;
}
a.btn-join span {
  font-size: 1.4rem;
  display: inline-block;
  width: 100%;
  margin-bottom: 0.5em;
  padding: 0.2rem 0.5rem;
  color: #e7810c;
  border-radius: 4px;
  background: #fff;
}
a.btn-join:hover {
  transform: translate(0, 3px);
  color: #fff;
  background: #fa8e12;
  box-shadow: 0 2px 0 #e7810c;
}
a.btn-join:hover::before {
  left: 2rem;
}
@media all and (max-width: 639px) {
  a.btn-join {
    font-size: 1.5rem;
    padding: 1.5rem 3rem 1rem 3rem;
    width: 100%;
  }
  a.btn-join span {
    font-size: 1.3rem;
  }
}

a.btn-c {
  font-size: 2.2rem;
  position: relative;
  padding: 1rem 3.5rem 2.5rem 3.5rem;
  color: #fff;
  background: #23b84f;
  box-shadow: 0 5px 0 #1d9955;
}
a.btn-c span {
  font-size: 1.8rem;
  position: absolute;
  top: -1.25rem;
  left: calc(50% - 150px);
  display: block;
  width: 300px;
  padding: 0.2rem 0;
  color: #1d9955;
  border: 2px solid #1d9955;
  border-radius: 100vh;
  background: #fff;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}
a.btn-c span::before, a.btn-c span::after {
  position: absolute;
  left: calc(50% - 10px);
  content: "";
}
a.btn-c span::before {
  bottom: -10px;
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #1d9955 transparent transparent transparent;
}
a.btn-c span::after {
  bottom: -7px;
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}
a.btn-c i {
  margin-right: 1rem;
}
a.btn-c:hover {
  transform: translate(0, 3px);
  color: #fff;
  background: #23b84f;
  box-shadow: 0 2px 0 #1d9955;
}
@media all and (max-width: 896px) {
  a.btn-c {
    font-size: 2rem;
    padding: 1.5rem 2.5rem 2.5rem 2.5rem;
  }
}
@media all and (max-width: 639px) {
  a.btn-c {
    width: 100%;
    font-size: 1.5rem;
    padding: 0.5rem 2rem 1.5rem 2rem;
  }
  a.btn-c span {
    font-size: 1.3rem;
  }
}

.top_greet {
  display: flex;
  justify-content: space-between;
}
.top_greet .left {
  width: 35%;
}
.top_greet .right {
  width: 55%;
}

/* sticky-area
----------------------------------*/
.col_stick {
  width: 100%;
  margin-right: auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  position: relative;
}
@media all and (max-width: 639px) {
  .col_stick {
    padding: 0;
  }
}

/* sticky-area */
.sticky-area {
  width: 20%;
  position: sticky;
  top: 13rem;
  background-color: #fff;
  z-index: 2;
}
.sticky-area .side_image {
  text-align: center;
}

/* main-area */
.main-area {
  width: 70%;
}

/* SP */
@media all and (max-width: 1100px) {
  .clearfix.chosei3 {
    display: block;
  }
  .sticky-area {
    position: relative;
    top: 0;
    width: 100%;
    margin-bottom: 25px;
  }
  .main-area {
    width: 100%;
  }
}
@media all and (max-width: 896px) {
  .sticky-area {
    margin-bottom: 10px;
  }
  .sticky-area .side_image {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
.service_wrap {
  margin-bottom: 20px;
}
.service_wrap .item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
  align-items: center;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.service_wrap .item .image {
  width: 28%;
}
.service_wrap .item .image img {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.service_wrap .item .detail {
  width: 67%;
}
@media all and (max-width: 639px) {
  .service_wrap .item {
    display: block;
  }
  .service_wrap .item .image {
    width: 100%;
    margin-bottom: 10px;
  }
  .service_wrap .item .image img {
    height: 200px;
  }
  .service_wrap .item .detail {
    width: 100%;
  }
}

.service_wrap2 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.service_wrap2 .item {
  width: 47%;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.service_wrap2 .item .image {
  margin-bottom: 15px;
}
.service_wrap2 .item .image img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 5px;
}
@media all and (max-width: 639px) {
  .service_wrap2 {
    display: block;
  }
  .service_wrap2 .item {
    width: 100%;
  }
  .service_wrap2 .item .image img {
    height: 200px;
  }
}

.announce {
  font-size: 0.9em;
}

.ttl_col {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}
.ttl_col h2 {
  width: 30%;
  margin-right: 50px;
  margin-left: 0;
  margin-bottom: 0;
}
.ttl_col .txt {
  width: 65%;
}

.bosyu_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.bosyu_list li {
  width: calc((100% - 20px) / 2);
  box-shadow: 2px 4px 6px -1px rgba(0, 0, 0, 0.15);
  padding: 2px 8px 2px 30px;
  font-weight: 500;
  background: #fff;
  padding: 20px 30px;
  border-radius: 50px;
  text-align: center;
}
.bosyu_list li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: 900;
  color: #59aa5b;
  margin-right: 10px;
}
.bosyu_list li:not(:last-child) {
  margin-bottom: 4px;
}
@media all and (max-width: 639px) {
  .bosyu_list {
    display: block;
  }
  .bosyu_list li {
    width: 100%;
  }
}

.fukidashi {
  color: #59aa5b;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 80px;
  text-align: center;
  font-weight: 700;
  font-size: 3rem;
}
.fukidashi span {
  position: relative;
  width: fit-content;
  padding: 15px 35px 30px;
  margin-bottom: 20px;
  white-space: nowrap;
  color: #333;
}
.fukidashi span em {
  font-size: 1.3em;
  font-style: normal;
  padding: 0 10px;
}
.fukidashi span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  height: 25%;
  box-sizing: border-box;
  border: 2px solid #59aa5b;
  border-top: none;
  border-bottom-right-radius: 50px;
  border-bottom-left-radius: 50px;
  translate: -50%;
}
.fukidashi span::after {
  content: "";
  position: absolute;
  top: calc(100% + 3px);
  left: 50%;
  width: 20px;
  height: 2px;
  box-sizing: border-box;
  background-color: #59aa5b;
  box-shadow: 0 2px 0 #ffffff, 0 -2px 0 #ffffff;
  rotate: 50deg;
  translate: -50%;
}
.fukidashi span span {
  font-size: 1.2em;
}
.fukidashi .bottom span {
  font-size: 5rem;
}
@media screen and (max-width: 667px) {
  .fukidashi {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}

.balloon1 {
  position: relative;
  display: inline-block;
  margin: 1.5em 0;
  padding: 7px 30px;
  min-width: 120px;
  max-width: 100%;
  font-weight: 600;
  font-size: 2.2rem;
  background: #59aa5b;
  border-radius: 30px;
  color: #fff;
}
.balloon1.type1 {
  background: #4fa2fc;
}
.balloon1.type1:before {
  border-top-color: #4fa2fc;
}
.balloon1:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  border-top-color: #59aa5b;
}
.balloon1 span {
  margin: 0;
  padding: 0;
}
@media all and (max-width: 639px) {
  .balloon1 {
    font-size: 1.2rem;
    padding: 7px 15px;
  }
}

.top-activity-box {
  position: relative;
  display: flex;
  width: 90%;
  max-width: 1600px;
  margin-inline: auto;
  overflow: hidden;
  border-radius: 30px;
}
.top-activity-box:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #faf8f5;
  z-index: 2;
  mix-blend-mode: screen;
  opacity: 0.1;
}
.top-activity-box figure {
  width: 50%;
  aspect-ratio: 2/1.5;
}
@media all and (max-width: 1100px) {
  .top-activity-box figure {
    aspect-ratio: 5/4.6;
  }
}
@media all and (max-width: 639px) {
  .top-activity-box {
    margin-top: 0px;
    width: 95%;
  }
}

.top-activity-text-box {
  position: relative;
  max-width: 740px;
  margin: -220px auto 0;
  padding: 30px 40px;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 0.8rem 3rem rgba(0, 0, 0, 0.14);
  text-align: center;
  z-index: 2;
}
@media all and (max-width: 1100px) {
  .top-activity-text-box {
    max-width: 70%;
    margin-top: -30px;
    padding: 30px;
  }
}
@media all and (max-width: 639px) {
  .top-activity-text-box {
    max-width: 98%;
    margin-top: -35px;
    padding: 30px 20px 20px;
  }
}

.bg-dot {
  position: relative;
}
.bg-dot:before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background-image: radial-gradient(circle, #c9e71f 1px, transparent 1px);
  background-position: 0 0;
  background-size: 12px 12px;
  opacity: 0.8;
}

.rec_box {
  display: flex;
  flex-wrap: wrap;
  gap: 55px;
  width: 100%;
  margin: 0 auto;
}
.rec_box li {
  background: #fff;
  padding: 20px;
  width: calc((100% - 60px) / 2);
}
.rec_box li a .img {
  position: relative;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.rec_box li a .img img {
  transition: all 0.3s ease-in;
}
.rec_box li a .img .ttl {
  text-align: center;
  border-radius: 0 45px 0 0;
  font-size: 2.1rem;
  font-weight: 600;
  position: absolute;
  transform: translate(50% -50%);
  bottom: -1px;
  left: 0;
  color: #fff;
  background: #59aa5b;
  padding: 10px 30px;
}
.rec_box li a .btn {
  margin-left: auto;
  color: #59aa5b;
  border: 1px solid #59aa5b;
  border-radius: 30px;
  display: inline-block;
  padding: 0 10px;
}
.rec_box li a .btn i {
  font-size: 0.8em;
}
.rec_box li a .txt {
  color: #333;
  margin-bottom: 15px;
}
.rec_box li a:hover .img {
  background: #000;
}
.rec_box li a:hover .img img {
  opacity: 0.7;
}
@media all and (max-width: 896px) {
  .rec_box li a .img .ttl {
    font-size: 1.5rem;
    padding: 8px 20px 8px 10px;
    border-radius: 0 30px 0 0;
  }
}
@media all and (max-width: 639px) {
  .rec_box {
    display: block;
  }
  .rec_box li {
    width: 100%;
    margin-bottom: 10px;
  }
}

@media all and (max-width: 639px) {
  .form-contents form dl dd:not(.pattern-exclusion) label {
    display: block;
  }
}
.num_nyukyo {
  width: 250px;
  margin-top: 15px;
  text-align: center;
  padding: 5px 20px;
  border-radius: 50px;
  background-color: #f6f8e7;
  border: 2px solid #59aa5b;
  vertical-align: middle;
  margin-left: auto;
  margin-right: auto;
}
.num_nyukyo span {
  font-size: 1.5em;
  font-weight: 600;
  padding-left: 3px;
  padding-right: 3px;
  color: #59aa5b;
}