@charset "UTF-8";
:root {
  --base-color: #bece4a;
}

/* アニメーションベンダープレフィックス込み指定 */
/* アニメーションベンダープレフィックス込み指定 */
body {
  color: #1a1103;
  font-family: "Zen Maru Gothic", "YakuHanJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.55rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  font-weight: 400;
  position: relative;
  letter-spacing: 0.1em;
  background: #f9f9f7;
  overflow-x: hidden;
}

a {
  color: rgb(182.5760869565, 200.2804347826, 54.2195652174);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

#wrapper {
  overflow: hidden;
}
#wrapper.contents {
  overflow: initial;
  position: relative;
}
#wrapper.contents::before {
  position: absolute;
  content: "";
  top: -30px;
  left: -30px;
  width: 250px;
  height: 250px;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26848/mv-circle2.png) no-repeat;
  background-size: contain;
  z-index: 2;
}
@media all and (max-width: 896px) {
  #wrapper.contents::before {
    top: 0;
    left: 0;
    width: 150px;
    height: 150px;
  }
}
@media all and (max-width: 639px) {
  #wrapper.contents::before {
    top: -20px;
    left: -20px;
  }
}
#wrapper.contents #l-header .inner #logo {
  width: 120px;
}
@media all and (max-width: 896px) {
  #wrapper.contents #l-header .inner #logo {
    top: 17px;
    width: 100px;
    left: 5px;
  }
}
@media all and (max-width: 639px) {
  #wrapper.contents #l-header .inner #logo {
    width: 75px;
    top: 5px;
    left: 12px;
  }
}

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

.bold {
  font-weight: 600;
}

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

.mincho {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}

.eng {
  font-family: "Poppins", sans-serif;
}

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

.en-big {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}

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

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

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

/* splash
----------------------------------*/
#splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fefefe;
  z-index: 9999999;
  text-align: center;
  color: #333;
}
#splash::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26848/ld-mao.png);
  opacity: 0.1;
  z-index: -1;
  background-size: 50%;
}

#splash-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
}
#splash-logo img {
  width: 100%;
  height: 100%;
}
@media all and (max-width: 896px) {
  #splash-logo {
    width: 200px;
  }
}
@media all and (max-width: 639px) {
  #splash-logo {
    width: 180px;
  }
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#wrapper {
  position: relative;
}

body.appear #wrapper {
  animation-name: PageAnimeAppear;
  animation-duration: 1s;
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* header
----------------------------------*/
@keyframes hd-scrolled {
  0% {
    opacity: 0;
    transform: translate(0, -100%);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.gradient {
  background: linear-gradient(45deg, #ccc, #d4e078, #eee);
  background-size: 600% 600%;
  animation: anim-gradient 10s ease infinite;
}

@keyframes anim-gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
#l-header {
  width: 100%;
  position: absolute;
  z-index: 200;
  top: 0;
  left: 0;
}
#l-header.is-hide {
  transform: translateY(-100%);
}
#l-header .inner {
  position: relative;
}
#l-header .inner #logo {
  width: 160px;
  position: absolute;
  top: 10px;
  left: 20px;
  z-index: 15;
  text-align: center;
}
@media all and (max-width: 1100px) {
  #l-header .inner #logo {
    width: 120px;
    top: 50px;
  }
}
@media all and (max-width: 896px) {
  #l-header .inner #logo {
    width: 90px;
    top: 45px;
  }
}
@media all and (max-width: 639px) {
  #l-header .inner #logo {
    width: 75px;
    top: 5px;
    left: 12px;
  }
}
#l-header .head-right {
  margin-left: auto;
  margin-right: 0;
}
@media all and (max-width: 896px) {
  #l-header .head-right {
    display: none;
  }
}

.head-right {
  margin-left: auto;
  margin-right: 0;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  width: 100%;
  background: #fefefe;
}

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

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

.swiper-slide {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.swiper-slide:before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  left: 0;
  top: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 1;
  border-radius: 20px;
  animation: zoom-in 11s linear 0s 1 normal both;
}
.swiper-slide.slide1:before {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26848/1.jpg);
}
.swiper-slide.slide2:before {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26848/2.jpg);
}
.swiper-slide.slide3:before {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26848/3.jpg);
}
@media all and (max-width: 896px) {
  .swiper-slide {
    border-radius: 0;
  }
  .swiper-slide:before {
    border-radius: 0;
  }
}

.slide-img {
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media all and (max-width: 1100px) {
  .slide-img {
    height: 60vw;
  }
}
@media all and (max-width: 896px) {
  .slide-img img {
    width: 60%;
  }
}
@media all and (max-width: 639px) {
  .slide-img {
    height: 70vh;
  }
  .slide-img img {
    width: 80%;
  }
}
.slide-img video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* slideshow
----------------------------------*/
.slide-wrap {
  position: relative;
}
.slide-wrap:before {
  content: "";
  position: absolute;
  top: -10%;
  right: 0;
  width: 35%;
  height: 55vh;
  background: #a7d3f3;
  border-bottom-left-radius: 100%;
  z-index: -1;
}
.slide-wrap:after {
  content: "";
  position: absolute;
  bottom: -10%;
  left: 0;
  width: 500px;
  height: 500px;
  background: #2a9e2f;
  border-left: 0;
  z-index: -1;
  border-radius: 0 100% 100% 0;
}
@media all and (max-width: 896px) {
  .slide-wrap:before {
    height: 25vh;
  }
  .slide-wrap:after {
    width: 300px;
    height: 300px;
    bottom: 0%;
  }
}
@media all and (max-width: 639px) {
  .slide-wrap {
    overflow: hidden;
  }
  .slide-wrap:before {
    height: 15vh;
  }
  .slide-wrap:after {
    width: 150px;
    height: 150px;
    bottom: 0%;
  }
}

#slide-bg {
  position: relative;
  padding: 0;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
#slide-bg::before {
  display: inline-block;
  position: absolute;
  bottom: 55px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 190px;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26848/slide_dog01.png) no-repeat center/contain;
  content: "";
}
#slide-bg::after {
  display: inline-block;
  position: absolute;
  bottom: 55px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 150px;
  height: 190px;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26848/slide_dog02.png) no-repeat center/contain;
  content: "";
  animation: bounceInUp 1s ease 0s 1 normal;
  z-index: -1;
}
@media all and (max-width: 1100px) {
  #slide-bg {
    width: 100%;
    padding: 0;
  }
}
@media all and (max-width: 896px) {
  #slide-bg::before, #slide-bg::after {
    bottom: -20px;
    width: 100px;
    height: 127px;
  }
}

@keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate(-50%, 0) translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    transform: translate(-50%, 0) translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    transform: translate(-50%, 0) translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    transform: translate(-50%, 0) translate3d(0, -5px, 0) scaleY(0.985);
  }
  100% {
    transform: translate(-50%, 0) translateZ(0);
  }
}
#slideshow {
  width: calc(100% - 100px);
  margin: 0 auto;
  position: relative;
  margin-top: 60px;
}
#slideshow .swiper-wrapper {
  z-index: -2;
}
#slideshow:before {
  position: absolute;
  content: "";
  top: -60px;
  left: -60px;
  width: 250px;
  height: 250px;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26848/mv-circle3.png) no-repeat;
  background-size: contain;
  z-index: 2;
}
@media all and (max-width: 1100px) {
  #slideshow:before {
    width: 180px;
    height: 180px;
  }
}
@media all and (max-width: 896px) {
  #slideshow:before {
    width: 150px;
    height: 150px;
  }
}
@media all and (max-width: 639px) {
  #slideshow {
    margin: 0 auto;
    width: 100%;
  }
  #slideshow:before {
    width: 120px;
    height: 120px;
    top: 0;
    left: 0;
  }
}

#catch {
  z-index: 150;
  position: absolute;
  left: 50%;
  top: 45%;
  opacity: 0;
  width: 650px;
  transform: translate(-50%, -50%);
}
#catch.on {
  opacity: 1;
  transition: 2s;
}
@media all and (max-width: 1100px) {
  #catch {
    width: 350px;
  }
}
@media all and (max-width: 639px) {
  #catch {
    width: 80%;
  }
}

.fv-contact {
  z-index: 10;
  position: absolute;
  left: 49%;
  transform: translatex(-50%);
  top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 68%;
}
.fv-contact .tel {
  text-align: center;
  color: #fefefe;
  text-shadow: 0 0 10px rgba(51, 51, 51, 0.2);
  font-weight: 600;
  font-size: 2.8rem;
  font-family: "Zen Maru Gothic", "YakuHanJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.fv-contact .tel a {
  color: #fefefe;
}
.fv-contact .tel a:hover {
  color: #d4e078;
}
.fv-contact .tel .ttl {
  font-size: 1.1rem;
}
.fv-contact .mail a {
  font-size: 2.5rem;
  text-align: center;
  font-weight: 500;
  color: #fefefe;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fv-contact .mail a i {
  color: #fefefe;
  font-size: 4rem;
  margin-right: 5px;
}
.fv-contact .mail a:hover {
  color: #d4e078;
}
.fv-contact .mail a:hover i {
  color: #d4e078;
}
@media all and (max-width: 1100px) {
  .fv-contact {
    width: 80%;
  }
}
@media all and (max-width: 896px) {
  .fv-contact {
    width: 85%;
    left: 45%;
  }
  .fv-contact .tel {
    font-size: 2.3rem;
  }
  .fv-contact .tel .ttl {
    font-size: 1rem;
  }
  .fv-contact .mail a {
    font-size: 1.5rem;
  }
  .fv-contact .mail a i {
    font-size: 2.5rem;
  }
}
@media all and (max-width: 639px) {
  .fv-contact {
    display: block;
    top: 50vh;
    left: 5%;
    transform: none;
  }
  .fv-contact .tel {
    text-align: left;
  }
  .fv-contact .mail {
    margin-top: 10px;
  }
  .fv-contact .mail a {
    justify-content: flex-start;
    text-align: left;
  }
}

#scrolldown {
  position: absolute;
  right: 15px;
  bottom: 0px;
  color: #fefefe;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-feature-settings: "pkna";
  font-size: 1.4rem;
  z-index: 100;
  height: 200px;
}
#scrolldown:before, #scrolldown:after {
  position: absolute;
  content: "";
  z-index: 2;
  left: 50%;
}
#scrolldown:before {
  width: 1px;
  height: 100px;
  bottom: 0;
  background: #fefefe;
  transform: translateX(-50%);
}
#scrolldown:after {
  width: 8px;
  height: 8px;
  background: rgba(254, 254, 254, 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;
  }
}
/* footer
----------------------------------*/
#l-footer {
  font-size: 1.5rem;
  margin-left: auto;
  position: relative;
  padding: 30px 60px 120px;
}
#l-footer::before {
  position: absolute;
  content: "";
  left: 0;
  top: -85px;
  width: 102%;
  height: 90px;
  z-index: 100;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26848/wave2.svg) no-repeat center bottom/100%;
  overflow: hidden;
  z-index: -2;
}
#l-footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f9f9f7;
  z-index: -2;
}
#l-footer .inner {
  z-index: 20;
  display: flex;
  align-items: center;
  padding-top: 60px;
}
#l-footer .inner > div {
  width: 50%;
}
#l-footer .inner .footer_left {
  width: 50%;
}
#l-footer .inner .footer_right {
  width: 65%;
}
@media all and (max-width: 1100px) {
  #l-footer {
    padding-bottom: 120px;
  }
  #l-footer .inner {
    align-items: center;
  }
}
@media all and (max-width: 896px) {
  #l-footer .inner {
    flex-direction: column;
  }
  #l-footer .inner > div {
    width: 100%;
    text-align: center;
  }
}
@media all and (max-width: 639px) {
  #l-footer {
    font-size: 1.2rem;
    border-radius: 30px 30px 0 0;
    padding: 40px 20px 65px;
  }
  #l-footer .inner {
    padding-top: 0;
  }
  #l-footer::before {
    top: -38px;
    height: 40px;
  }
}

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

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

.footer-map-title {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  right: -20px;
  top: -40px;
  width: 85px;
  height: 80px;
  background: #d4e078;
  border-radius: 50%;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #fff;
}
@media all and (max-width: 1100px) {
  .footer-map-title {
    right: 0;
  }
}
@media all and (max-width: 639px) {
  .footer-map-title {
    width: 65px;
    height: 60px;
    font-size: 1.4rem;
  }
}

.footer_contact {
  background: #d4e078;
}
.footer_contact .contact_box {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
.footer_contact .contact_box .left,
.footer_contact .contact_box .right {
  width: 50%;
  padding: 30px;
}
.footer_contact .contact_box .contact_btn a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer_contact .contact_box .contact_btn a .contact_img {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  background: #fff;
  transition: all 0.4s ease;
}
.footer_contact .contact_box .contact_btn a .contact_img img {
  position: absolute;
  width: 42px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.footer_contact .contact_box .contact_btn a .contact_ttl {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 4rem;
  white-space: nowrap;
  color: #fff;
  margin-left: 20px;
  line-height: 1.4;
  transition: all 0.4s ease;
  white-space: nowrap;
}
.footer_contact .contact_box .contact_btn a .contact_ttl span {
  display: block;
  font-size: 1.3rem;
  font-family: "Zen Maru Gothic", "YakuHanJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  padding-top: 0.5em;
}
.footer_contact .contact_box .contact_btn a:hover {
  opacity: 0.5;
}
.footer_contact .contact_box .right {
  border-left: 1px solid #c4c4c4;
}
.footer_contact .contact_box .right .contact_btn a .contact_ttl {
  font-family: "Zen Maru Gothic", "YakuHanJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 3rem;
}
@media all and (max-width: 896px) {
  .footer_contact .contact_box .left,
  .footer_contact .contact_box .right {
    width: 100%;
  }
  .footer_contact .contact_box .contact_btn a .contact_ttl {
    font-size: 4rem;
  }
  .footer_contact .contact_box .right {
    border-top: 1px solid #c4c4c4;
    border-left: none;
  }
  .footer_contact .contact_box .right .contact_btn a .contact_ttl {
    font-size: 3.5rem;
  }
}
@media all and (max-width: 639px) {
  .footer_contact .contact_box .contact_btn a .contact_ttl {
    font-size: 2.5rem;
  }
  .footer_contact .contact_box .contact_btn a .contact_img {
    width: 60px;
    height: 60px;
  }
  .footer_contact .contact_box .left,
  .footer_contact .contact_box .right {
    padding: 15px;
  }
  .footer_contact .contact_box .right .contact_btn a .contact_ttl {
    font-size: 2.2rem;
  }
}

.footer_img img {
  height: 400px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 50%;
     object-position: center 50%;
  z-index: -2;
  position: relative;
}
@media all and (max-width: 1100px) {
  .footer_img img {
    height: 300px;
  }
}

.sns_btn a {
  display: block;
  text-align: center;
  border: 1px solid #fff;
  padding: 10px 25px;
  border-radius: 80px;
  color: #fff;
  max-width: 200px;
  font-size: 0.8em;
}
.sns_btn a:hover {
  background: #fff;
  color: #bece4a;
}
.sns_btn a span {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
@media all and (max-width: 639px) {
  .sns_btn a {
    margin: auto;
  }
}

/* footer_navi
----------------------------------*/
.footer_navi {
  position: relative;
}
@media all and (max-width: 896px) {
  .footer_navi {
    display: none;
  }
}
.footer_navi ul {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
}
.footer_navi ul li {
  width: 50%;
}
.footer_navi ul li a {
  color: #3e3127;
  font-size: 1.4rem;
  position: relative;
  text-align: left;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}
.footer_navi ul li a span {
  transition: 0.2s all ease-in-out;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  position: relative;
  display: block;
  color: #d4e078;
  font-size: 1.2rem;
  text-align: left;
}
@media all and (max-width: 639px) {
  .footer_navi ul li a {
    font-size: 1.2rem;
  }
}
.footer_navi ul li a:hover {
  color: #bece4a;
}
.footer_navi ul li .dropdown {
  margin-top: 10px;
  padding: 8px 5px 5px;
}
@media all and (max-width: 639px) {
  .footer_navi ul li .dropdown {
    padding: 10px;
  }
}
.footer_navi ul li .dropdown .dropdown-ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 15px;
  max-width: 320px;
}
.footer_navi ul li .dropdown .dropdown-li {
  width: 100%;
}
.footer_navi ul li .dropdown .dropdown-li:first-of-type {
  display: block;
}
.footer_navi ul li .dropdown .dropdown-li a {
  font-size: 13px;
  color: #ddd;
  line-height: 1.5;
  letter-spacing: 0;
  border: none;
  display: block;
}
.footer_navi ul li .dropdown .dropdown-li a:before {
  background: #fff;
}

.footer_navi_sub {
  position: relative;
}
.footer_navi_sub ul {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
}
.footer_navi_sub ul li {
  width: 33.3333333333%;
}
.footer_navi_sub ul li a {
  color: #3e3127;
  font-size: 1.3rem;
  position: relative;
  text-align: left;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}
.footer_navi_sub ul li a span {
  transition: 0.2s all ease-in-out;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  position: relative;
  display: block;
  color: #d4e078;
  font-size: 1.2rem;
  text-align: left;
}
@media all and (max-width: 639px) {
  .footer_navi_sub ul li a {
    font-size: 1.1rem;
  }
}
.footer_navi_sub ul li a:hover {
  color: #bece4a;
}
@media all and (max-width: 639px) {
  .footer_navi_sub ul li {
    width: 50%;
  }
}

.flogo {
  z-index: 5;
  margin-bottom: 40px;
  max-width: 150px;
  width: 95%;
}
@media all and (max-width: 896px) {
  .flogo {
    margin-left: auto;
    margin-right: auto;
  }
}

.address {
  font-size: 13px;
}
.address a {
  border-bottom: 1px dashed #888;
}
@media all and (max-width: 896px) {
  .address {
    font-size: 12px;
  }
}

.copyright {
  padding: 0 0 20px;
  font-size: 1.2rem;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
@media all and (max-width: 896px) {
  .copyright {
    font-size: 11px;
  }
}

/* contents
----------------------------------*/
.single {
  max-width: 1150px;
  margin: 0 auto;
  padding: 100px 0;
  position: relative;
}
@media all and (max-width: 1100px) {
  .single {
    width: 85%;
    padding: 80px 0;
  }
}

.single00 {
  max-width: 1150px;
  margin: 0 auto;
  padding: 10px 0;
  position: relative;
}
@media all and (max-width: 1100px) {
  .single00 {
    width: 85%;
    padding: 80px 0;
  }
}

.single01 {
  position: relative;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 0 100px;
}
@media all and (max-width: 1100px) {
  .single01 {
    width: 95%;
    padding: 0 0 60px;
  }
}

.single02 {
  margin: 0 auto;
  padding: 80px 0;
  position: relative;
}
@media all and (max-width: 1100px) {
  .single02 {
    padding: 80px 10px;
  }
}

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

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

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

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

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

.lsingle {
  float: left;
}

.rsingle {
  float: right;
}

.mbox {
  background: #fefefe;
  padding: 35px 30px;
  position: relative;
  z-index: 3;
  max-width: 1200px;
}
.mbox.transparent {
  background: transparent;
}
.mbox.p-non {
  padding: 0;
}
.mbox.bd {
  position: relative;
  padding: 40px;
  border: 1px solid #bece4a;
}
.mbox.bd3 {
  position: relative;
  padding: 40px;
  border: 30px solid #f9f9f7;
  border-radius: 25px;
}
.mbox.bd2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: calc(100% - 40px);
  width: calc(100% - 40px);
  border-top: 2px dashed #bece4a;
  border-bottom: 2px dashed #bece4a;
}
.mbox.sd {
  box-shadow: 0.5rem 0.5rem 10px rgba(51, 51, 51, 0.1), -0.5rem -0.5rem 8px rgba(218, 218, 218, 0.1);
  border-radius: 15px;
}
.mbox.kk {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26848/bg-01.jpg);
  padding: 40px;
}
@media all and (max-width: 639px) {
  .mbox.kk {
    padding: 40px 20px;
    width: 95%;
  }
}
.mbox.kk::after, .mbox.kk::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 60px;
}
.mbox.kk::after {
  border-top: 2px solid #1a1103;
  border-left: 2px solid #1a1103;
  top: -10px;
  left: -10px;
}
.mbox.kk::before {
  border-bottom: 2px solid #1a1103;
  border-right: 2px solid #1a1103;
  bottom: -10px;
  right: -10px;
}
@media all and (max-width: 639px) {
  .mbox {
    padding: 15px;
  }
  .mbox.bd {
    padding: 20px;
  }
  .mbox.bd3 {
    position: relative;
    padding: 25px 20px;
    border: 20px solid #f9f9f7;
    border-radius: 25px;
  }
}

.mbox2 {
  background: #faf8f4;
  padding: 40px 35px;
  border-radius: 10px;
}

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

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

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

.trig {
  text-align: right;
}
@media all and (max-width: 896px) {
  .trig {
    text-align: left;
  }
}

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

.bg-nami {
  position: relative;
  background: #fff;
}
.bg-nami::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 0;
  width: 100%;
  height: 150px;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26848/nami.png) no-repeat top/cover;
  z-index: -1;
}
.bg-nami::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: 0;
  width: 100%;
  height: 150px;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26848/nami.png) no-repeat top/cover;
  z-index: -1;
  transform: scaleY(-1);
}

#main {
  float: left;
  width: 76%;
}
#main .mbox {
  min-height: 300px;
}
@media all and (max-width: 896px) {
  #main .mbox {
    min-height: initial;
  }
}
#main .mbox a {
  font-weight: 600;
  text-decoration: underline;
}
#main .mbox a:hover {
  text-decoration: none;
}
@media all and (max-width: 896px) {
  #main {
    float: none;
    width: 100%;
  }
}

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

.s-contena {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: calc(100% - 150px);
  margin: 0 auto;
  padding: 80px 0;
  position: relative;
}
@media all and (max-width: 1100px) {
  .s-contena {
    max-width: 95%;
    padding: 40px 0;
  }
}

.s-main {
  width: 78%;
}
@media all and (max-width: 1100px) {
  .s-main {
    width: 75%;
  }
}
@media all and (max-width: 896px) {
  .s-main {
    width: 100%;
  }
}

.s-side {
  width: 18%;
  height: 100vh;
  position: sticky;
  right: 0;
  top: 100px;
}
@media all and (max-width: 1100px) {
  .s-side {
    width: 20%;
  }
}
@media all and (max-width: 896px) {
  .s-side {
    width: 100%;
    height: auto;
    position: relative;
    top: 0;
    margin-bottom: 50px;
  }
}

/* mtitle
----------------------------------*/
.mtitle {
  font-weight: 500;
  margin: 0 auto 40px;
  text-align: center;
}
.mtitle.b-min {
  margin-bottom: 20px;
}
.mtitle .eng {
  font-size: 2rem;
  color: #bece4a;
  position: relative;
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
.mtitle .ja {
  font-size: 3rem;
  color: #232323;
  font-weight: 600;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}
.mtitle.white {
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
.mtitle.white span {
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
.mtitle.white span:after {
  background-color: #eee;
}
.mtitle.white span.ja {
  border-bottom-color: #fefefe;
}
.mtitle.mtitle_left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}
.mtitle.mtitle_left span:after {
  left: 0;
  transform: none;
}
.mtitle.mtitle_right {
  text-align: right;
  margin-right: 0;
  margin-left: 0;
}
.mtitle.mtitle_right span:after {
  left: 0;
  transform: none;
}
@media all and (max-width: 639px) {
  .mtitle {
    text-align: center;
  }
  .mtitle .eng {
    font-size: 1.2rem;
  }
  .mtitle .ja {
    font-size: 1.8rem;
  }
}

.mtitle1 {
  position: relative;
  font-size: 1.5rem;
  font-weight: 600;
  color: #bece4a;
  margin-bottom: 40px;
}
.mtitle1 .eng {
  font-size: 20rem;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-weight: 300;
  background: #fefefe;
  padding-right: 20px;
  line-height: 1;
}
@media all and (max-width: 896px) {
  .mtitle1 .eng {
    font-size: 15rem;
  }
}
@media all and (max-width: 639px) {
  .mtitle1 .eng {
    font-size: 5rem;
  }
}
.mtitle1 .ja {
  font-size: 2rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  position: absolute;
  top: 65%;
  right: 1.5rem;
  transform: translateY(-50%);
}
@media all and (max-width: 639px) {
  .mtitle1 .ja {
    font-size: 1rem;
    top: 75%;
  }
}
.mtitle1 .eng2 {
  font-size: 15rem;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-weight: 800;
  background: #fefefe;
  padding-right: 20px;
  line-height: 1;
}
@media all and (max-width: 896px) {
  .mtitle1 .eng2 {
    font-size: 10rem;
  }
}
@media all and (max-width: 639px) {
  .mtitle1 .eng2 {
    font-size: 4rem;
    letter-spacing: 0;
  }
}
.mtitle1 .ja2 {
  font-size: 1.5rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  position: absolute;
  top: 65%;
  right: 1.5rem;
  transform: translateY(-50%);
}
@media all and (max-width: 896px) {
  .mtitle1 .ja2 {
    font-size: 1.3rem;
  }
}
@media all and (max-width: 639px) {
  .mtitle1 .ja2 {
    font-size: 11px;
    top: 95%;
    right: 0.5rem;
    text-align: right;
  }
}
.mtitle1::after {
  content: "";
  background-color: #bece4a;
  height: 5px;
  width: 100%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: -1;
}
@media all and (max-width: 639px) {
  .mtitle1::after {
    height: 3px;
  }
}
.mtitle1.type1 {
  text-align: right;
}
.mtitle1.type1 .eng,
.mtitle1.type1 .eng2 {
  padding-right: 0;
  padding-left: 20px;
}
.mtitle1.type1 .ja,
.mtitle1.type1 .ja2 {
  right: auto;
  left: 0.5rem;
}
.mtitle1.sub .eng,
.mtitle1.sub .eng2 {
  background: #9fa69f;
  color: #fefefe;
}
.mtitle1.sub .ja,
.mtitle1.sub .ja2 {
  color: #fefefe;
}
.mtitle1.sub::after {
  background-color: #fefefe;
}

.mtitle2 {
  font-size: 2rem;
  position: relative;
  font-weight: 600;
  position: relative;
  padding-left: 15px;
  margin-bottom: 20px;
  line-height: 1.2;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}
.mtitle2 span {
  display: block;
  font-size: 1.2rem;
  color: #bece4a;
  font-weight: 600;
  font-family: "Zen Maru Gothic", "YakuHanJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.mtitle2:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(to top, #bece4a, #d4e078);
}
@media all and (max-width: 639px) {
  .mtitle2 {
    font-size: 1.6rem;
  }
  .mtitle2 span {
    font-size: 1.2rem;
  }
  .mtitle2 .viewbtn {
    font-size: 13px;
  }
}

.mtitle3 {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-feature-settings: "pkna";
  position: absolute;
  min-height: 100px;
  top: 40px;
  left: 30px;
}
.mtitle3 .ja {
  display: block;
  font-size: 2.6rem;
  border-right: 2px solid #bece4a;
  letter-spacing: 0.2em;
  padding-right: 5px;
  font-weight: 500;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}
.mtitle3 .eng {
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  color: #bece4a;
  padding-left: 3px;
  font-weight: 400;
}
@media all and (max-width: 896px) {
  .mtitle3 {
    left: 0px;
    top: 0px;
    min-height: 50px;
    margin-bottom: 20px;
    writing-mode: inherit;
    position: relative;
  }
  .mtitle3 .ja {
    border-right: none;
  }
}
@media all and (max-width: 639px) {
  .mtitle3 .ja {
    font-size: 1.6rem;
  }
  .mtitle3 .eng {
    font-size: 1.3rem;
  }
}

.mtitle_line {
  font-size: 2.2rem;
  position: relative;
  font-weight: 600;
  margin-bottom: 30px;
  padding-top: 8px;
  padding-left: 8px;
  padding-bottom: 10px;
  color: #1a1103;
  letter-spacing: 0.2rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}
.mtitle_line span {
  display: block;
  font-size: 1.4rem;
  color: #1a1103;
}
.mtitle_line:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  content: "";
  opacity: 0.6;
  background-image: repeating-linear-gradient(-45deg, #1a1103, #1a1103 1px, transparent 1px, transparent 3px);
  background-size: 4px 4px;
  backface-visibility: hidden;
}
@media all and (max-width: 639px) {
  .mtitle_line {
    font-size: 1.4rem;
  }
  .mtitle_line span {
    font-size: 1.2rem;
  }
}

.mtitle_circle {
  position: relative;
  clear: both;
  margin-bottom: 20px;
  padding-left: 1.5em;
  line-height: 1.3;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 2.4rem;
  font-weight: 500;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.4);
  padding-bottom: 1rem;
}
@media all and (max-width: 896px) {
  .mtitle_circle {
    font-size: 2rem;
  }
}
@media all and (max-width: 639px) {
  .mtitle_circle {
    font-size: 1.6rem;
    letter-spacing: 0.15em;
  }
}
.mtitle_circle.type1:before {
  border: 0.25em solid #a7d3f3;
}
.mtitle_circle.type2:before {
  border: 0.25em solid #d4e077;
}
.mtitle_circle.type3:before {
  border: 0.25em solid #c7b6e0;
}
.mtitle_circle.type4:before {
  border: 0.25em solid #f6b26b;
}
.mtitle_circle.type5:before {
  border: 0.25em solid #2a9e2f;
}
.mtitle_circle.type6:before {
  border: 0.25em solid #f1c2c2;
}
.mtitle_circle::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0.2em;
  width: 1em;
  height: 1em;
  margin: auto;
  border: 0.25em solid #d4e078;
  border-radius: 50%;
  box-sizing: border-box;
}
.mtitle4 {
  font-weight: normal;
  text-align: center;
  font-size: 2.6rem;
  line-height: 1.5;
  letter-spacing: 0.1rem;
  color: #bece4a;
}
.mtitle4 span {
  position: relative;
  display: inline-block;
  min-width: 10%;
}
.mtitle4 span:before, .mtitle4 span:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1px;
  height: 5rem;
  background-color: #bece4a;
}
.mtitle4 span:before {
  left: -11px;
  transform: rotate(-20deg);
}
.mtitle4 span:after {
  right: -11px;
  transform: rotate(20deg);
}
.mtitle4.white span:before, .mtitle4.white span:after {
  background-color: #d4e078;
}
@media all and (max-width: 639px) {
  .mtitle4 {
    font-size: 2rem;
  }
}
@media all and (max-width: 320px) {
  .mtitle4 span:before {
    left: -3px;
  }
  .mtitle4 span:after {
    right: -3px;
  }
}
.mtitle4.min {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
}
.mtitle4.min span:before, .mtitle4.min span:after {
  width: 2px;
  height: 3rem;
}

.mtitle_sub {
  padding-left: 0.5em;
  font-weight: 600;
  position: relative;
  border-left: 6px solid #bece4a;
  margin: 8px 0 15px;
  font-size: 1.1em;
  line-height: 1.4;
  text-align: left;
}
.mtitle_sub .hissu {
  color: #fff;
  background: rgb(204.4130434783, 216.8652173913, 114.1347826087);
  padding: 5px 8px;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 20px;
}
.mtitle_sub:before {
  position: absolute;
  left: -6px;
  bottom: 0;
  content: "";
  width: 6px;
  height: 50%;
  background-color: #d4e078;
}

.mtitle_box {
  background: rgb(182.5760869565, 200.2804347826, 54.2195652174);
  color: #fefefe;
  font-size: 2rem;
  position: relative;
  padding: 5px 10px;
  margin-bottom: 15px;
  font-weight: 500;
}
.mtitle_box span {
  font-weight: normal;
  font-size: 14px;
  padding-left: 10px;
}
@media all and (max-width: 639px) {
  .mtitle_box {
    font-size: 1.5rem;
  }
}

.mtitle_box2 {
  display: flex;
  align-items: center;
  background: #bece4a;
  position: relative;
  padding: 10px 20px 10px 50px;
  margin-bottom: 25px;
  color: #ffffff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  border-radius: 30px;
}
@media all and (max-width: 896px) {
  .mtitle_box2 {
    font-size: 1.5rem;
  }
}
@media all and (max-width: 639px) {
  .mtitle_box2 {
    font-size: 1.35rem;
    letter-spacing: 0.15em;
  }
}
.mtitle_box2.type1 {
  background: #d4e078;
}
.mtitle_box2:before {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  content: "●";
  color: #f9f9f7;
  font-size: 0.7em;
}
@media all and (max-width: 639px) {
  .mtitle_box2 {
    display: block;
    margin-bottom: 20px;
    padding: 6px 15px 6px 40px;
    letter-spacing: 0.15em;
  }
  .mtitle_box2:before {
    left: 15px;
  }
}

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

.mtext2 {
  font-size: 3rem;
  letter-spacing: 0.1rem;
  line-height: 1.6;
}
.mtext2.line {
  padding-bottom: 0.3em;
}
.mtext2 span {
  font-style: italic;
  padding: 5px 15px;
  border-bottom: 2px solid #1a1103;
  border-top: 2px solid #1a1103;
  color: #1a1103;
}
@media all and (max-width: 639px) {
  .mtext2 {
    font-size: 1.8rem;
    padding: 4px 8px;
  }
}

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

.mtext4 {
  font-size: 3rem;
  letter-spacing: 0.1rem;
  line-height: 1.6;
}
.mtext4 span {
  padding-bottom: 0.3em;
  letter-spacing: 0.1em;
  position: relative;
}
.mtext4 span::after {
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #3e3127;
  content: "";
  bottom: 0;
  left: 0;
}
@media all and (max-width: 639px) {
  .mtext4 {
    font-size: 1.8rem;
    padding: 4px 8px;
    line-height: 2.2;
  }
  .mtext4 span {
    border-bottom: 1px solid #3e3127;
  }
  .mtext4 span::after {
    content: none;
  }
}

.greet_ch {
  font-weight: 600;
  line-height: 5rem;
}

.mtext-top span {
  position: relative;
  display: inline-block;
  padding-top: 26px;
  padding-left: 3px;
  padding-right: 3px;
  font-size: 2.6rem;
  margin-top: 15px;
}
.mtext-top span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  color: #fdfdfd;
  transform: translateX(-50%);
  width: 80px;
  height: 24px;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26848/point.png) no-repeat center/contain;
}

.mtitle_category {
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: normal;
}
.mtitle_category:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0ca";
  font-weight: 900;
  margin-right: 5px;
  color: #bece4a;
}

/* btn
----------------------------------*/
.btn01 {
  width: -moz-fit-content;
  width: fit-content;
}
.btn01 a {
  position: relative;
  color: #1a1103;
  font-size: 2.5rem;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
.btn01 a .arrow {
  position: relative;
  padding-left: 90px;
}
.btn01 a .arrow::before {
  font-family: "Font Awesome 5 Free";
  content: "\f061";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}
.btn01 a .arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #d4e078;
  z-index: -1;
  transition: all 0.4s ease;
}
.btn01:hover a .arrow::after {
  width: 75px;
  height: 75px;
}
.btn01.right {
  margin-left: auto;
}
.btn01.white {
  margin-left: auto;
  margin-right: auto;
}
.btn01.white a {
  color: #fff;
}

.btn02 {
  width: 300px;
  margin: 20px auto 20px;
}
.btn02.right {
  margin-right: 0;
}
.btn02.left {
  margin-left: 0;
}
.btn02 a {
  display: block;
  position: relative;
  padding: 15px 0;
  background-color: #bece4a;
  line-height: 24px;
  letter-spacing: 0.1rem;
  font-size: 1.6rem;
  text-align: center;
  color: #ffffff;
}
.btn02 a i {
  display: block;
  position: absolute;
  top: 50%;
  right: -10px;
  width: 50px;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease;
}
.btn02 a:hover i {
  width: 34px;
}
@media all and (max-width: 639px) {
  .btn02 {
    width: 260px;
  }
  .btn02 a {
    font-size: 1.4rem;
  }
}

.btn03 {
  background-color: #fff;
  border-radius: 100px;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
  text-align: center;
  display: block;
  padding: 15px 10px;
  margin-bottom: 10px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  transition: 0.1s linear;
  color: #3e3127;
  font-weight: 600;
}
.btn03::after {
  width: 15px;
  height: 9px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  content: "";
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26848/arrow_btn.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.btn03:hover {
  transform: translateY(3px);
  box-shadow: none;
  background-color: #E6E5E4;
}

.btn-more {
  position: relative;
  z-index: 4;
}
.btn-more a {
  display: block;
  width: 16em;
  text-align: center;
  font-weight: 600;
  font-size: 1.4rem;
  color: #bece4a;
  padding: 8px 10px;
  border: 1px solid #bece4a;
  border-radius: 40px;
  margin-left: auto;
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
}
.btn-more a:after {
  font-family: "Font Awesome 5 Free";
  content: "\f061";
  font-weight: 900;
  margin-left: 4px;
  display: inline-block;
  position: relative;
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
}
.btn-more a:hover {
  background: #d4e078;
  color: #fff;
  border: 1px solid #fff;
}
.btn-more a:hover:after {
  transform: translateX(4px);
}
.btn-more.center a {
  margin: auto;
}
.btn-more.left a {
  margin-right: auto;
  margin-left: 0;
}
@media all and (max-width: 639px) {
  .btn-more a {
    font-size: 13px;
  }
}

/* news
----------------------------------*/
.news-bl {
  overflow: hidden;
}
.news-bl dt {
  float: left;
  width: 7em;
  padding: 5px;
  line-height: 1.3;
  color: #bece4a;
  font-family: "Zen Maru Gothic", "YakuHanJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 1.3rem;
}
@media all and (max-width: 639px) {
  .news-bl dt {
    font-size: 1.2rem;
  }
}
.news-bl dd {
  padding: 0 0 5px 8em;
  line-height: 1.6;
  margin: 0 0 5px;
}
.news-bl dd a {
  color: #333;
  background-image: linear-gradient(to right, #bece4a, #d4e078);
  padding-bottom: 0.25em;
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  transition: background-size 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-weight: 500;
}
.news-bl dd a:hover {
  background-position: 0 100%;
  background-size: 100% 1px;
}
.news-bl dd:last-child {
  margin: 0;
  border-bottom: none;
}
.news-bl dd .cate {
  display: inline-block;
  padding: 3px 5px;
  font-size: 1rem;
  background: #bece4a;
  color: #fefefe;
  margin-right: 10px;
}
@media all and (max-width: 639px) {
  .news-bl dt {
    float: none;
  }
  .news-bl dd {
    padding: 8px 5px;
  }
}

.news-ul li {
  border-bottom: 1px solid rgba(190, 206, 74, 0.5);
}
.news-ul li:last-child {
  border-bottom: none;
}
.news-ul li a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 15px 40px 15px 0;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #333;
}
.news-ul li a:after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  top: 50%;
  right: 20px;
  border-top: 1px solid #bece4a;
  border-right: 1px solid #bece4a;
  transform: rotate(45deg) translateY(-50%);
  transition: 0.3s ease-in-out;
}
.news-ul li a:hover:after {
  right: 10px;
}
@media all and (max-width: 1100px) {
  .news-ul li a {
    padding: 15px 40px 15px 0;
  }
}
.news-ul .day {
  font-size: 15px;
  width: 20%;
  color: #333;
  font-family: "Zen Maru Gothic", "YakuHanJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-weight: 400;
}
.news-ul .title {
  width: 75%;
  font-weight: 600;
}
@media all and (max-width: 1100px) {
  .news-ul .day,
  .news-ul .title {
    width: 100%;
  }
}

.link-news {
  position: relative;
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}
@media all and (max-width: 896px) {
  .link-news {
    margin-top: 20px;
  }
}
.link-news .link {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #bece4a;
  padding-right: 30px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}
.link-news:before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid #bece4a;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s ease-in-out;
}
.link-news:after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  top: 50%;
  right: 10px;
  border-top: 1px solid #bece4a;
  border-right: 1px solid #bece4a;
  transform: rotate(45deg) translateY(-50%);
  transition: 0.3s ease-in-out;
}
.link-news:hover:before {
  background: #bece4a;
}
.link-news:hover:after {
  border-color: #fefefe !important;
}

/* page-title
----------------------------------*/
.page-title {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26848/3.jpg) no-repeat center 30%/cover;
  width: 100%;
  margin: 0 auto;
}
.page-title:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #3e3127;
  opacity: 0.3;
}
.page-title .inner {
  margin: 0 auto;
  padding: 200px 0 200px;
  max-width: 1150px;
  overflow: hidden;
}
.page-title .inner .page-lead {
  color: #fff;
  font-size: 1.8rem;
  position: relative;
  text-align: center;
}
.page-title .inner .page-lead .ja {
  font-weight: 600;
  font-size: 2.8rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}
.page-title .inner .page-lead .eng {
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #fff;
}
@media all and (max-width: 639px) {
  .page-title .inner .page-lead .eng {
    font-size: 1rem;
  }
  .page-title .inner .page-lead .ja {
    font-size: 2rem;
  }
}
@media all and (max-width: 1100px) {
  .page-title .inner {
    padding: 200px 0 170px;
  }
}
@media all and (max-width: 896px) {
  .page-title .inner {
    padding: 150px 0 100px;
  }
}
@media all and (max-width: 639px) {
  .page-title .inner {
    padding: 120px 0 120px;
  }
}

.section-title {
  background-color: #a7d3f3;
  position: absolute;
  text-align: center;
  left: 0;
  right: 0;
  top: -80px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 25px;
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  padding: 20px 0;
  line-height: 1.8;
  z-index: 2;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), inset 0 -4px 10px rgba(255, 255, 255, 0.1), inset 0 4px 10px rgba(255, 255, 255, 0.05);
}
.section-title.type2 {
  background-color: #d4e077;
}
.section-title.type3 {
  background-color: #c7b6e0;
}
.section-title.type4 {
  background-color: #f6b26b;
}
.section-title.type5 {
  background-color: #2a9e2f;
}
.section-title.type6 {
  background-color: #f1c2c2;
}
.section-title span {
  display: block;
  font-size: 2rem;
}
@media all and (max-width: 1100px) {
  .section-title {
    max-width: 540px;
  }
}
@media all and (max-width: 896px) {
  .section-title {
    max-width: 400px;
    font-size: 2.2rem;
    top: -55px;
  }
  .section-title span {
    font-size: 1.6rem;
  }
}
@media all and (max-width: 639px) {
  .section-title {
    max-width: 80%;
    font-size: 1.6rem;
    position: relative;
    top: auto;
    margin-bottom: 30px;
    padding: 15px 0;
  }
  .section-title span {
    font-size: 1.3rem;
  }
}

.sec_title {
  position: relative;
  margin-bottom: 90px;
  margin-top: 25%;
}
@media screen and (max-width: 480px) {
  .sec_title {
    margin-top: 40px;
    margin-bottom: 50px;
  }
}
.sec_title.type2 h3 {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26848/ttl_bg2.png);
}
.sec_title.type3 h3 {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26848/ttl_bg3.png);
}
.sec_title.type4 h3 {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26848/ttl_bg4.png);
}
.sec_title.type5 h3 {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26848/ttl_bg5.png);
}
.sec_title.type6 h3 {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26848/ttl_bg6.png);
}
.sec_title h3 {
  font-size: 3rem;
  color: #fff;
  font-weight: bold;
  background-size: 100% 100%;
  width: 35%;
  padding-top: 33px;
  padding-bottom: 43px;
  text-align: center;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26848/ttl_bg.png);
}
@media screen and (max-width: 897px) {
  .sec_title h3 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 480px) {
  .sec_title h3 {
    font-size: 1.57rem;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.sec_title p {
  position: absolute;
  right: 0;
  left: auto;
  width: 60%;
  bottom: 0;
}
@media screen and (max-width: 897px) {
  .sec_title p {
    position: static;
    width: 80%;
    margin-right: 0;
    margin-left: auto;
    margin-top: 10px;
  }
}
@media screen and (max-width: 480px) {
  .sec_title p {
    width: 100%;
  }
}
.sec_title img {
  position: absolute;
  right: 0;
  width: 80%;
  bottom: 65px;
  z-index: -1;
}
@media screen and (max-width: 480px) {
  .sec_title img {
    position: static;
    margin-top: 10px;
    width: 100%;
  }
}

.sec_title_sub {
  position: relative;
}
.sec_title_sub.type2 h3 {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26848/ttl_bg2.png);
}
.sec_title_sub.type3 h3 {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26848/ttl_bg3.png);
}
.sec_title_sub.type4 h3 {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26848/ttl_bg4.png);
}
.sec_title_sub.type5 h3 {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26848/ttl_bg5.png);
}
.sec_title_sub.type6 h3 {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26848/ttl_bg6.png);
}
.sec_title_sub h3 {
  font-size: 3rem;
  color: #fff;
  font-weight: bold;
  background-size: 100% 100%;
  width: 35%;
  padding-top: 33px;
  padding-bottom: 43px;
  text-align: center;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26848/ttl_bg.png);
  margin: auto;
}
@media screen and (max-width: 897px) {
  .sec_title_sub h3 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 480px) {
  .sec_title_sub h3 {
    font-size: 1.57rem;
    width: 100%;
    max-width: 270px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.sec_title_sub p {
  position: absolute;
  right: 0;
  left: auto;
  width: 60%;
  bottom: 0;
}
@media screen and (max-width: 897px) {
  .sec_title_sub p {
    position: static;
    width: 80%;
    margin-right: 0;
    margin-left: auto;
    margin-top: 10px;
  }
}
@media screen and (max-width: 480px) {
  .sec_title_sub p {
    width: 100%;
  }
}

/* bg
---------------------------------*/
.bg-01 {
  position: relative;
}
.bg-01::before {
  content: "";
  position: absolute;
  top: 2%;
  left: 0;
  width: 980px;
  height: 650px;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/25027/bg-01_1.png) no-repeat left/contain;
  z-index: -1;
}
.bg-01::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 980px;
  height: 650px;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/25027/bg-01_2.png) no-repeat left/contain;
  transform: scale(-1, 1);
  z-index: -1;
}
@media all and (max-width: 896px) {
  .bg-01::before {
    height: 530px;
  }
  .bg-01::after {
    height: 530px;
  }
}

.bg-base {
  background: rgba(190, 206, 74, 0.1);
  position: relative;
}
.bg-base.type1 {
  background-image: linear-gradient(to bottom, rgba(188, 92, 112, 0.5), rgba(190, 206, 74, 0.2));
}
.bg-base.type1:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26848/bg-fixed.jpg) no-repeat bottom/cover;
  background-attachment: fixed;
  opacity: 0.8;
}
@media all and (max-width: 1100px) {
  .bg-base.type1:before {
    background-attachment: scroll;
  }
}
.bg-base.type1:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #bece4a url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26848/raster2.png) repeat;
  opacity: 0.3;
  z-index: -1;
}
.bg-base.type1 .deco {
  position: relative;
}
.bg-base.type1 .deco::after, .bg-base.type1 .deco::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 60px;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26848/wave.webp) repeat-x bottom left/contain;
  left: 0;
}
@media all and (max-width: 639px) {
  .bg-base.type1 .deco::after, .bg-base.type1 .deco::before {
    height: 54px;
  }
}
.bg-base.type1 .deco::after {
  top: 0;
  transform: rotate(-180deg);
}
.bg-base.type1 .deco::before {
  bottom: 0;
}
.bg-base.type2 {
  background: transparent;
}
.bg-base.type2:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: -2;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26848/deco1.png), url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26848/deco2.png);
  background-position: 0% 10%, 100% 90%;
  background-repeat: no-repeat, no-repeat;
  opacity: 0.3;
}
.bg-base.type3 {
  background: transparent;
}
.bg-base.type3:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-image: linear-gradient(to bottom, transparent, rgba(190, 206, 74, 0.4));
  opacity: 0.3;
}
.bg-base.type4 {
  background: transparent;
  margin-bottom: 40px;
}
.bg-base.type4:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  border-radius: 8px;
  z-index: -2;
  background-image: linear-gradient(to bottom left, #bece4a, #d4e078);
  opacity: 0.3;
}
@media all and (max-width: 639px) {
  .bg-base.type4:before {
    width: calc(100% - 10px);
    height: calc(100% - 10px);
  }
}

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

/* tbl
----------------------------------*/
.tbl {
  width: 100%;
}
.tbl th,
.tbl td {
  padding: 5px;
  vertical-align: middle;
  border: 1px solid #b3b3b3;
  font-size: 1.2rem;
  text-align: center;
}
.tbl th {
  background: #c4c4c4;
}
@media all and (max-width: 639px) {
  .tbl th,
  .tbl td {
    padding: 5px;
    font-size: 1.1rem;
  }
}

.tbl2 {
  width: 100%;
}
.tbl2 .month-row {
  background-color: #edeeed;
}
.tbl2 .treatment-row {
  background-color: #edeeed;
}
.tbl2 th,
.tbl2 td {
  padding: 10px;
  vertical-align: middle;
  border: 1px solid #e4e2dc;
  font-weight: 500 !important;
  letter-spacing: 0.1em;
  background: #fff;
}
.tbl2 th span,
.tbl2 td span {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
}
@media all and (max-width: 896px) {
  .tbl2 th span,
  .tbl2 td span {
    font-size: 1.15rem;
  }
}
@media all and (max-width: 639px) {
  .tbl2 th span,
  .tbl2 td span {
    font-size: 1.1rem;
  }
}
.tbl2 th {
  background: #edeeed;
}
.tbl2 th.type1 {
  background: rgba(237, 238, 237, 0.4);
}
@media all and (max-width: 896px) {
  .tbl2 th,
  .tbl2 td {
    padding: 5px;
  }
}
.tbl_new {
  margin: 0 auto;
  width: 100%;
}
.tbl_new tr th,
.tbl_new tr td {
  vertical-align: middle;
  padding: 15px 10px;
}
.tbl_new tr th {
  font-weight: 600;
  width: 30%;
  text-align: left;
  padding-left: 30px;
  letter-spacing: 0;
}
@media all and (max-width: 639px) {
  .tbl_new tr th {
    width: 25%;
    padding-left: 10px;
  }
}
.tbl_new tr:nth-child(odd) th, .tbl_new tr:nth-child(odd) td {
  background: #f0f0f0;
}

.tbl-border {
  width: 100%;
}
.tbl-border th,
.tbl-border td {
  padding: 15px;
  border-bottom: 1px solid #333;
  vertical-align: middle;
}
@media all and (max-width: 639px) {
  .tbl-border th,
  .tbl-border td {
    padding: 10px;
    font-size: 1.2rem;
  }
}
.tbl-border th {
  width: 25%;
  text-align: left;
  font-weight: 600;
  border-bottom-color: #333;
}
.tbl-border th.th-1 {
  width: 45%;
}
@media all and (max-width: 639px) {
  .tbl-border th {
    width: 33%;
  }
}
.tbl-border.type01 th,
.tbl-border.type01 td {
  font-size: 1.4rem;
}
.tbl-border.type01 th {
  width: 35%;
}
@media all and (max-width: 639px) {
  .tbl-border.type01 th {
    width: 30%;
  }
}

.price {
  font-family: "Zen Maru Gothic", "YakuHanJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-weight: 600;
  font-size: 2rem;
  color: #bece4a;
  text-align: right;
}
.price span {
  font-size: 1.5rem;
  font-family: "Zen Maru Gothic", "YakuHanJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
@media all and (max-width: 639px) {
  .price {
    font-size: 2rem;
  }
  .price span {
    font-size: 1.2rem;
  }
}

.p-tbl {
  width: 100%;
}
.p-tbl tr {
  border-bottom: 1px solid #b3b3b3;
}
.p-tbl tr:last-child {
  border-bottom: none;
}
.p-tbl th,
.p-tbl td {
  padding: 15px 10px;
  vertical-align: middle;
  text-align: center;
  border-right: 1px solid #b3b3b3;
}
.p-tbl th:last-child,
.p-tbl td:last-child {
  border-right: none;
}
.p-tbl td {
  font-family: "Zen Maru Gothic", "YakuHanJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.p-tbl td.txt {
  font-family: "Zen Maru Gothic", "YakuHanJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  text-align: left;
  font-size: 13px;
  width: 40%;
  padding: 15px;
}
@media all and (max-width: 639px) {
  .p-tbl td.txt {
    font-size: 1rem;
    padding: 10px;
  }
}
@media all and (max-width: 639px) {
  .p-tbl th,
  .p-tbl td {
    padding: 10px 5px;
    font-size: 1rem;
  }
}

.company {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 5px;
}
.company th,
.company td {
  padding: 15px;
  vertical-align: middle;
}
.company th {
  width: 30%;
  position: relative;
  background: #bece4a;
  color: #fff;
  font-weight: 600;
}
.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: #bece4a;
  margin-top: -10px;
}
@media all and (max-width: 639px) {
  .company th {
    width: 40%;
  }
}
.company td {
  background: #f9f9f9;
  padding-left: 20px;
}

.tbl0 {
  width: 100%;
  margin-bottom: 30px;
}
.tbl0 th,
.tbl0 td {
  padding: 5px;
  border: 0;
  font-size: 1.3rem;
  border-bottom: 1px solid #555;
  color: #1a1103;
  vertical-align: middle;
}
@media all and (max-width: 639px) {
  .tbl0 th,
  .tbl0 td {
    font-size: 0.9rem;
  }
}
.tbl0 th {
  font-weight: normal;
  background: none;
  color: #333;
  font-weight: 600;
}
.tbl0 th:after, .tbl0 th:before {
  display: none;
}
.tbl0 th.nmb {
  font-family: "Zen Maru Gothic", "YakuHanJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.tbl0.type1 th,
.tbl0.type1 td {
  font-size: 1.5rem;
  padding: 5px 10px;
  text-align: center;
  border: 1px solid #ccc;
}
@media all and (max-width: 639px) {
  .tbl0.type1 th,
  .tbl0.type1 td {
    padding: 3px 5px;
    font-size: 1.2rem;
  }
  .tbl0.type1 th:nth-child(1), .tbl0.type1 th:nth-child(2),
  .tbl0.type1 td:nth-child(1),
  .tbl0.type1 td:nth-child(2) {
    width: 10%;
  }
  .tbl0.type1 th:nth-child(3), .tbl0.type1 th:nth-child(4), .tbl0.type1 th:nth-child(5),
  .tbl0.type1 td:nth-child(3),
  .tbl0.type1 td:nth-child(4),
  .tbl0.type1 td:nth-child(5) {
    width: 20%;
  }
}
.tbl0.type1 th {
  background: rgba(190, 206, 74, 0.1);
}

.f-tbl {
  width: 100%;
}
.f-tbl tr {
  border-bottom: 1px solid #d4e078;
}
.f-tbl tr:last-child {
  border-bottom: none;
}
.f-tbl th,
.f-tbl td {
  padding: 10px 15px;
  font-size: 1.3rem;
}
@media all and (max-width: 896px) {
  .f-tbl th,
  .f-tbl td {
    padding: 5px 10px;
    font-size: 1.1rem;
  }
}
.f-tbl th {
  color: #1a1103;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-weight: 600;
}
.f-tbl.ja th {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}

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

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin-bottom: 10px;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/* list
----------------------------------*/
.list_check li {
  padding: 8px;
  font-weight: 600;
}
.list_check li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: 900;
  margin-right: 8px;
  color: #bece4a;
}
.list_check li:not(:last-child) {
  margin-bottom: 4px;
  border-bottom: 1px solid #ccc;
}

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

.list_disc.type0 > li {
  padding: 0 !important;
}
.list_disc.type0 > li:before {
  content: "・";
  color: #1a1103;
  font-size: inherit;
}
.list_disc.type0 > li:not(:last-of-type) {
  margin-bottom: 0px;
  border-bottom: 0px dashed #e4e2dc;
  margin-bottom: 0px;
}
.list_disc.type0 > li span {
  font-size: 90%;
}
.list_disc.type1 > li:before {
  color: #a7d3f3;
}
.list_disc.type2 > li:before {
  color: #d4e077;
}
.list_disc.type3 > li:before {
  color: #c7b6e0;
}
.list_disc.type4 > li:before {
  color: #f6b26b;
}
.list_disc.type5 > li:before {
  color: #2a9e2f;
}
.list_disc.type6 > li:before {
  color: #f1c2c2;
}
.list_disc.sbc > li:before {
  color: #d4e078;
}
.list_disc.white > li {
  padding: 0 !important;
  color: #fff;
}
.list_disc.white > li:before {
  content: "・";
  font-size: inherit;
  color: #fff;
}
.list_disc.white > li:not(:last-of-type) {
  margin-bottom: 0px;
  border-bottom: 0px dashed #e4e2dc;
}
.list_disc.type7 > li {
  padding: 0;
}
.list_disc.type7 > li:not(:last-of-type) {
  margin-bottom: 0px;
  border-bottom: 0px dashed #e4e2dc;
}
.list_disc.type8 > li {
  padding: 0;
  margin-left: 1em;
}
.list_disc.type8 > li:before {
  content: "└";
  margin-right: 3px;
  color: #888;
  font-size: 1em;
}
.list_disc.type8 > li:not(:last-of-type) {
  margin-bottom: 2px;
  border-bottom: 0px dashed #e4e2dc;
}
.list_disc > li {
  padding: 5px 0;
  letter-spacing: 0.1em;
}
.list_disc > li.d_none::before {
  content: none;
}
.list_disc > li:not(:last-of-type) {
  margin-bottom: 5px;
  border-bottom: 1px dashed #e4e2dc;
}
.list_disc > li:before {
  content: "●";
  margin-right: 5px;
  color: #bece4a;
  font-size: 0.5em;
}

.list-btn {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto 50px;
}
.list-btn li {
  width: 23.5%;
  margin: 0 1.995% 10px 0;
}
.list-btn li a {
  display: block;
  color: #bece4a;
  font-weight: 600;
  padding: 10px 3px;
  text-align: center;
  width: 100%;
  height: 100%;
  line-height: 1.5;
  font-size: 1.4rem;
  letter-spacing: 0;
  border: 1px solid #bece4a;
}
.list-btn li a:hover {
  background: #bece4a;
  color: #fefefe;
}
.list-btn li:nth-child(4n) {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .list-btn li {
    width: 98%;
    margin: 0 auto 10px;
  }
  .list-btn li:nth-child(4n) {
    margin: 0 auto;
  }
}
.list-btn.type1 {
  margin: 0 auto;
}
.list-btn.type1 li {
  width: 48%;
  margin: 0 1.995% 10px 0;
}
.list-btn.type1 li a {
  background: #bece4a;
  border: none;
  color: #fefefe;
  border-radius: 5px;
  font-size: 1.6rem;
  font-weight: 500;
}
.list-btn.type1 li a:hover {
  background: rgb(135.0130434783, 148.1052173913, 40.0947826087);
}
.list-btn.type1 li:nth-child(2n) {
  margin-right: 0;
}
@media all and (max-width: 896px) {
  .list-btn.type1 li {
    width: 23%;
  }
  .list-btn.type1 li:nth-child(2n) {
    margin-right: 1.995%;
  }
  .list-btn.type1 li:nth-child(4n) {
    margin-right: 0;
  }
}
@media all and (max-width: 639px) {
  .list-btn.type1 li {
    width: 32%;
  }
  .list-btn.type1 li a {
    font-size: 1.4rem;
  }
  .list-btn.type1 li:nth-child(2n) {
    margin-right: 1.995%;
  }
  .list-btn.type1 li:nth-child(3n) {
    margin-right: 0;
  }
}

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

.img-box {
  text-align: center;
  position: relative;
  z-index: -1;
}
.img-box.type1 {
  margin-top: -150px;
}
@media all and (max-width: 896px) {
  .img-box.type1 {
    margin-top: -50px;
  }
}

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

.w300 {
  width: 300px;
}

.spbr {
  display: none;
}

.color1 {
  color: #bece4a;
}

.color2 {
  color: #d4e078;
}

.color3 {
  color: #d4e078;
}

.relative {
  position: relative;
}

.num {
  font-weight: 600;
}
.num a {
  color: #bece4a;
  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: #d4e078;
}

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

.txt-link {
  font-weight: 600;
  text-decoration: underline;
}
.txt-link:hover {
  text-decoration: none;
}

.telbnr {
  max-width: 500px;
  margin: 30px auto 30px;
}
.telbnr li {
  border: 3px solid #ccc;
  padding: 10px 10px;
  text-align: center;
  border-radius: 50px;
}
.telbnr li a {
  display: block;
  font-size: 2.4rem;
  font-weight: 600;
  color: #bece4a;
}
.telbnr li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
}
.telbnr li a:hover {
  color: #bece4a;
}
@media all and (max-width: 639px) {
  .telbnr {
    max-width: 90%;
  }
  .telbnr li {
    width: 100%;
    margin: 0 auto 30px;
  }
  .telbnr li:last-of-type {
    margin-left: auto;
  }
  .telbnr li a {
    font-size: 2rem;
  }
}

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

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

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

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

.thanks {
  padding: 40px;
  border: 3px solid #d4e078;
  background: #fefefe;
  max-width: 700px;
  margin: 0 auto;
  border-radius: 20px;
}
@media all and (max-width: 639px) {
  .thanks {
    max-width: 90%;
    padding: 30px 20px;
  }
}

.shadow {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.policy {
  padding: 30px;
  background: rgba(255, 255, 255, 0.8);
}

.title-big {
  margin-bottom: 60px;
}
.title-big .eng {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  display: block;
  font-size: 1.5rem;
  color: #bece4a;
  margin-bottom: 1.5rem;
}
.title-big .ja {
  font-size: 3rem;
  font-weight: 500;
  color: #1a1103;
  position: relative;
}
.title-big .ja .mini {
  display: block;
  font-size: 1.5rem;
}
.title-big .ja::after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 0;
  width: 56px;
  height: 2px;
  background-image: repeating-linear-gradient(to right, var(--base-color), var(--base-color) 5px, transparent 5px, transparent 10px);
}
.title-big.center {
  text-align: center;
}
.title-big.center .ja::after {
  left: 50%;
  transform: translateX(-50%);
}
.title-big.color2 .ja:after {
  color: #d4e078;
}
.title-big.color3 .ja:after {
  color: #d4e078;
}
@media all and (max-width: 639px) {
  .title-big {
    margin-bottom: 50px;
  }
  .title-big .eng {
    font-size: 1.5rem;
  }
  .title-big .ja {
    font-size: 1.8rem;
  }
}

.mtitle-bll {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  border-bottom: 2px solid #e4e2dc;
  position: relative;
  margin-bottom: 15px;
  line-height: 1.5;
  padding-bottom: 8px;
}
@media all and (max-width: 896px) {
  .mtitle-bll {
    font-size: 1.5rem;
  }
}
@media all and (max-width: 639px) {
  .mtitle-bll {
    font-size: 1.35rem;
    letter-spacing: 0.15em;
  }
}
.mtitle-bll:after {
  position: absolute;
  content: "";
  display: block;
  bottom: -2px;
  width: 100px;
  height: 2px;
  background: #bece4a;
}
.mtitle-bll.type1:after {
  background: #a7d3f3;
}
.mtitle-bll.type2:after {
  background: #d4e077;
}
.mtitle-bll.type3:after {
  background: #c7b6e0;
}
.mtitle-bll.type4:after {
  background: #f6b26b;
}
.mtitle-bll.type5:after {
  background: #2a9e2f;
}
.mtitle-bll.type6:after {
  background: #f1c2c2;
}
.mtitle-bll.white {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  border-bottom: 2px solid #e4e2dc;
}
@media all and (max-width: 896px) {
  .mtitle-bll.white {
    font-size: 1.4rem;
  }
}
@media all and (max-width: 639px) {
  .mtitle-bll.white {
    font-size: 1.26rem;
  }
}
.mtitle-bll.white:after {
  background: #fff;
}
@media all and (max-width: 639px) {
  .mtitle-bll {
    letter-spacing: 0.12em;
  }
  .mtitle-bll.type2 {
    letter-spacing: 0.1em;
  }
}

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

.mtitle_small2 {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
  font-weight: 600;
}
.mtitle_small2.type6:before {
  background-color: #f1c2c2;
}
.mtitle_small2:before {
  content: "";
  background-color: #bece4a;
  width: 10px;
  height: 4px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.mtitle_small3 {
  font-weight: bold;
  color: #1a1103;
  padding: 10px 0;
  font-size: 1.6rem;
  border-top: 2px dashed #bece4a;
  border-bottom: 2px dashed #bece4a;
  margin-bottom: 20px;
  height: 5em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.5;
}
@media all and (max-width: 639px) {
  .mtitle_small3 {
    padding: 6px 4px;
    font-size: 1.3rem;
  }
}

.mtitle_small4 {
  position: relative;
  border: 1px solid #e4e2dc;
  padding: 15px 15px 15px 30px;
  margin-bottom: 25px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  letter-spacing: 0.15em;
  line-height: 1.5;
  color: #1a1103;
  border-radius: 5px;
  background: #fff;
}
@media all and (max-width: 896px) {
  .mtitle_small4 {
    font-size: 1.6rem;
  }
}
@media all and (max-width: 639px) {
  .mtitle_small4 {
    font-size: 1.45rem;
  }
}
.mtitle_small4 span {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  display: block;
}
@media all and (max-width: 896px) {
  .mtitle_small4 span {
    font-size: 1.15rem;
  }
}
@media all and (max-width: 639px) {
  .mtitle_small4 span {
    font-size: 1.1rem;
  }
}
.mtitle_small4:before {
  position: absolute;
  top: 15%;
  left: 10px;
  width: 5px;
  height: 70%;
  content: "";
  background: rgba(190, 206, 74, 0.8);
  border-radius: 30px;
}
.mtitle_small4.type1:before {
  background: rgba(167, 211, 243, 0.8);
}
.mtitle_small4.type2:before {
  background: rgba(212, 224, 119, 0.8);
}
.mtitle_small4.type3:before {
  background: rgba(199, 182, 224, 0.8);
}
.mtitle_small4.type4:before {
  background: rgba(246, 178, 107, 0.8);
}
.mtitle_small4.type5:before {
  background: rgba(42, 158, 47, 0.8);
}
.mtitle_small4.type6:before {
  background: rgba(241, 194, 194, 0.8);
}
@media all and (max-width: 639px) {
  .mtitle_small4 {
    padding: 10px 10px 10px 20px;
    margin-bottom: 20px;
  }
  .mtitle_small4:before {
    left: 5px;
  }
}

/*photoギャラリー
----------------------------*/
.gallery {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.gallery li {
  width: 18.5%;
  margin: 0 1.3333333333% 25px 0;
}
.gallery li:nth-child(5n) {
  margin-right: 0;
}
.gallery li a {
  background: rgba(196, 196, 196, 0.2);
  display: block;
  text-align: center;
  padding: 0px;
  height: 140px;
}
.gallery li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  /*IE対策*/
}
.gallery li p {
  font-size: 12px;
  text-align: center;
  line-height: 1.2;
  margin-top: 5px;
  letter-spacing: 0;
}
@media all and (max-width: 639px) {
  .gallery li {
    width: 31%;
    margin: 0 1% 20px;
  }
  .gallery li:nth-child(5n) {
    margin: 0 1% 20px;
  }
  .gallery li:nth-child(3n) {
    margin-right: 0;
  }
  .gallery li a {
    height: 100px;
  }
  .gallery li p {
    font-size: 12px;
  }
}
.gallery.col3 li {
  width: 31%;
  margin: 0 1% 60px;
}
.gallery.col3 li:nth-child(3n) {
  margin-right: 0;
}
.gallery.col3 li a {
  height: 120px;
  background: #fefefe;
}
.gallery.col3 li a img {
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: contain;";
}
.gallery.col3 li p {
  font-size: 12px;
  text-align: center;
  line-height: 1.2;
}
.gallery.col4 li {
  width: 23%;
  margin: 0 1% 20px;
}
.gallery.col4 li:nth-child(4n) {
  margin-right: 0;
}
.gallery.col4 li a {
  height: 250px;
  background: #fefefe;
}
.gallery.col4 li a img {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
.gallery.col4 li p {
  text-align: left;
}
@media all and (max-width: 896px) {
  .gallery.col4 li a {
    height: 150px;
  }
}
@media all and (max-width: 639px) {
  .gallery.col4 li {
    width: 48%;
    margin: 0 1% 10px;
  }
  .gallery.col4 li:nth-child(4n) {
    margin: 0 1% 10px;
  }
  .gallery.col4 li:nth-child(2n) {
    margin-right: 0;
  }
  .gallery.col4 li a {
    height: 150px;
  }
}

.list2 {
  display: flex;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
}
.list2.type0 li {
  text-align: center;
}
.list2.type0 li:nth-child(even) .num {
  color: #d4e078;
}
.list2.type0 li:nth-child(even) .num a {
  color: #d4e078;
}
.list2.type0 li h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  color: #1a1103;
}
@media all and (max-width: 896px) {
  .list2.type0 li h3 {
    font-size: 1.5rem;
  }
}
@media all and (max-width: 639px) {
  .list2.type0 li h3 {
    font-size: 1.35rem;
    letter-spacing: 0.15em;
  }
}
.list2.type0 li .num {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 3.2rem;
  font-family: "Zen Maru Gothic", "YakuHanJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  color: #d4e078;
  margin: 10px auto 5px;
}
@media all and (max-width: 896px) {
  .list2.type0 li .num {
    font-size: 2.6rem;
  }
}
@media all and (max-width: 639px) {
  .list2.type0 li .num {
    font-size: 2rem;
  }
}
.list2.type0 li .num span {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 2.4rem;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
@media all and (max-width: 896px) {
  .list2.type0 li .num span {
    font-size: 2rem;
  }
}
@media all and (max-width: 639px) {
  .list2.type0 li .num span {
    font-size: 1.6rem;
    letter-spacing: 0.15em;
  }
}
.list2.type0 li .num a {
  transition: 0.3s ease-in all;
  color: #d4e078;
}
.list2.type0 li .num a:hover {
  opacity: 0.7;
}
.list2.type0 li p {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
}
@media all and (max-width: 896px) {
  .list2.type0 li p {
    font-size: 1.15rem;
  }
}
@media all and (max-width: 639px) {
  .list2.type0 li p {
    font-size: 1.1rem;
  }
}
.list2.type1 li {
  text-align: center;
}
.list2.type1 li:nth-child(even) .num {
  color: #a7d3f3;
}
.list2.type1 li:nth-child(even) .num a {
  color: #a7d3f3;
}
.list2.type1 li h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  color: #1a1103;
}
@media all and (max-width: 896px) {
  .list2.type1 li h3 {
    font-size: 1.5rem;
  }
}
@media all and (max-width: 639px) {
  .list2.type1 li h3 {
    font-size: 1.35rem;
    letter-spacing: 0.15em;
  }
}
.list2.type1 li .num {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 3.2rem;
  font-family: "Zen Maru Gothic", "YakuHanJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  color: #a7d3f3;
  margin: 10px auto 5px;
}
@media all and (max-width: 896px) {
  .list2.type1 li .num {
    font-size: 2.6rem;
  }
}
@media all and (max-width: 639px) {
  .list2.type1 li .num {
    font-size: 2rem;
  }
}
.list2.type1 li .num span {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 2.4rem;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
@media all and (max-width: 896px) {
  .list2.type1 li .num span {
    font-size: 2rem;
  }
}
@media all and (max-width: 639px) {
  .list2.type1 li .num span {
    font-size: 1.6rem;
    letter-spacing: 0.15em;
  }
}
.list2.type1 li .num a {
  transition: 0.3s ease-in all;
  color: #a7d3f3;
}
.list2.type1 li .num a:hover {
  opacity: 0.7;
}
.list2.type1 li p {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
}
@media all and (max-width: 896px) {
  .list2.type1 li p {
    font-size: 1.15rem;
  }
}
@media all and (max-width: 639px) {
  .list2.type1 li p {
    font-size: 1.1rem;
  }
}
.list2.type_2 li {
  text-align: center;
}
.list2.type_2 li:nth-child(even) .num {
  color: #d4e077;
}
.list2.type_2 li:nth-child(even) .num a {
  color: #d4e077;
}
.list2.type_2 li h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  color: #1a1103;
}
@media all and (max-width: 896px) {
  .list2.type_2 li h3 {
    font-size: 1.5rem;
  }
}
@media all and (max-width: 639px) {
  .list2.type_2 li h3 {
    font-size: 1.35rem;
    letter-spacing: 0.15em;
  }
}
.list2.type_2 li .num {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 3.2rem;
  font-family: "Zen Maru Gothic", "YakuHanJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  color: #d4e077;
  margin: 10px auto 5px;
}
@media all and (max-width: 896px) {
  .list2.type_2 li .num {
    font-size: 2.6rem;
  }
}
@media all and (max-width: 639px) {
  .list2.type_2 li .num {
    font-size: 2rem;
  }
}
.list2.type_2 li .num span {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 2.4rem;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
@media all and (max-width: 896px) {
  .list2.type_2 li .num span {
    font-size: 2rem;
  }
}
@media all and (max-width: 639px) {
  .list2.type_2 li .num span {
    font-size: 1.6rem;
    letter-spacing: 0.15em;
  }
}
.list2.type_2 li .num a {
  transition: 0.3s ease-in all;
  color: #d4e077;
}
.list2.type_2 li .num a:hover {
  opacity: 0.7;
}
.list2.type_2 li p {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
}
@media all and (max-width: 896px) {
  .list2.type_2 li p {
    font-size: 1.15rem;
  }
}
@media all and (max-width: 639px) {
  .list2.type_2 li p {
    font-size: 1.1rem;
  }
}
.list2.type_3 li {
  text-align: center;
}
.list2.type_3 li:nth-child(even) .num {
  color: #c7b6e0;
}
.list2.type_3 li:nth-child(even) .num a {
  color: #c7b6e0;
}
.list2.type_3 li h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  color: #1a1103;
}
@media all and (max-width: 896px) {
  .list2.type_3 li h3 {
    font-size: 1.5rem;
  }
}
@media all and (max-width: 639px) {
  .list2.type_3 li h3 {
    font-size: 1.35rem;
    letter-spacing: 0.15em;
  }
}
.list2.type_3 li .num {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 3.2rem;
  font-family: "Zen Maru Gothic", "YakuHanJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  color: #c7b6e0;
  margin: 10px auto 5px;
}
@media all and (max-width: 896px) {
  .list2.type_3 li .num {
    font-size: 2.6rem;
  }
}
@media all and (max-width: 639px) {
  .list2.type_3 li .num {
    font-size: 2rem;
  }
}
.list2.type_3 li .num span {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 2.4rem;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
@media all and (max-width: 896px) {
  .list2.type_3 li .num span {
    font-size: 2rem;
  }
}
@media all and (max-width: 639px) {
  .list2.type_3 li .num span {
    font-size: 1.6rem;
    letter-spacing: 0.15em;
  }
}
.list2.type_3 li .num a {
  transition: 0.3s ease-in all;
  color: #c7b6e0;
}
.list2.type_3 li .num a:hover {
  opacity: 0.7;
}
.list2.type_3 li p {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
}
@media all and (max-width: 896px) {
  .list2.type_3 li p {
    font-size: 1.15rem;
  }
}
@media all and (max-width: 639px) {
  .list2.type_3 li p {
    font-size: 1.1rem;
  }
}
.list2.type4 li {
  text-align: center;
}
.list2.type4 li:nth-child(even) .num {
  color: #f6b26b;
}
.list2.type4 li:nth-child(even) .num a {
  color: #f6b26b;
}
.list2.type4 li h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  color: #1a1103;
}
@media all and (max-width: 896px) {
  .list2.type4 li h3 {
    font-size: 1.5rem;
  }
}
@media all and (max-width: 639px) {
  .list2.type4 li h3 {
    font-size: 1.35rem;
    letter-spacing: 0.15em;
  }
}
.list2.type4 li .num {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 3.2rem;
  font-family: "Zen Maru Gothic", "YakuHanJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  color: #f6b26b;
  margin: 10px auto 5px;
}
@media all and (max-width: 896px) {
  .list2.type4 li .num {
    font-size: 2.6rem;
  }
}
@media all and (max-width: 639px) {
  .list2.type4 li .num {
    font-size: 2rem;
  }
}
.list2.type4 li .num span {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 2.4rem;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
@media all and (max-width: 896px) {
  .list2.type4 li .num span {
    font-size: 2rem;
  }
}
@media all and (max-width: 639px) {
  .list2.type4 li .num span {
    font-size: 1.6rem;
    letter-spacing: 0.15em;
  }
}
.list2.type4 li .num a {
  transition: 0.3s ease-in all;
  color: #f6b26b;
}
.list2.type4 li .num a:hover {
  opacity: 0.7;
}
.list2.type4 li p {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
}
@media all and (max-width: 896px) {
  .list2.type4 li p {
    font-size: 1.15rem;
  }
}
@media all and (max-width: 639px) {
  .list2.type4 li p {
    font-size: 1.1rem;
  }
}
.list2.type5 li {
  text-align: center;
}
.list2.type5 li:nth-child(even) .num {
  color: #2a9e2f;
}
.list2.type5 li:nth-child(even) .num a {
  color: #2a9e2f;
}
.list2.type5 li h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  color: #1a1103;
}
@media all and (max-width: 896px) {
  .list2.type5 li h3 {
    font-size: 1.5rem;
  }
}
@media all and (max-width: 639px) {
  .list2.type5 li h3 {
    font-size: 1.35rem;
    letter-spacing: 0.15em;
  }
}
.list2.type5 li .num {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 3.2rem;
  font-family: "Zen Maru Gothic", "YakuHanJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  color: #2a9e2f;
  margin: 10px auto 5px;
}
@media all and (max-width: 896px) {
  .list2.type5 li .num {
    font-size: 2.6rem;
  }
}
@media all and (max-width: 639px) {
  .list2.type5 li .num {
    font-size: 2rem;
  }
}
.list2.type5 li .num span {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 2.4rem;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
@media all and (max-width: 896px) {
  .list2.type5 li .num span {
    font-size: 2rem;
  }
}
@media all and (max-width: 639px) {
  .list2.type5 li .num span {
    font-size: 1.6rem;
    letter-spacing: 0.15em;
  }
}
.list2.type5 li .num a {
  transition: 0.3s ease-in all;
  color: #2a9e2f;
}
.list2.type5 li .num a:hover {
  opacity: 0.7;
}
.list2.type5 li p {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
}
@media all and (max-width: 896px) {
  .list2.type5 li p {
    font-size: 1.15rem;
  }
}
@media all and (max-width: 639px) {
  .list2.type5 li p {
    font-size: 1.1rem;
  }
}
.list2.type6 li {
  text-align: center;
}
.list2.type6 li:nth-child(even) .num {
  color: #f1c2c2;
}
.list2.type6 li:nth-child(even) .num a {
  color: #f1c2c2;
}
.list2.type6 li h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  color: #1a1103;
}
@media all and (max-width: 896px) {
  .list2.type6 li h3 {
    font-size: 1.5rem;
  }
}
@media all and (max-width: 639px) {
  .list2.type6 li h3 {
    font-size: 1.35rem;
    letter-spacing: 0.15em;
  }
}
.list2.type6 li .num {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 3.2rem;
  font-family: "Zen Maru Gothic", "YakuHanJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  color: #f1c2c2;
  margin: 10px auto 5px;
}
@media all and (max-width: 896px) {
  .list2.type6 li .num {
    font-size: 2.6rem;
  }
}
@media all and (max-width: 639px) {
  .list2.type6 li .num {
    font-size: 2rem;
  }
}
.list2.type6 li .num span {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 2.4rem;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
@media all and (max-width: 896px) {
  .list2.type6 li .num span {
    font-size: 2rem;
  }
}
@media all and (max-width: 639px) {
  .list2.type6 li .num span {
    font-size: 1.6rem;
    letter-spacing: 0.15em;
  }
}
.list2.type6 li .num a {
  transition: 0.3s ease-in all;
  color: #f1c2c2;
}
.list2.type6 li .num a:hover {
  opacity: 0.7;
}
.list2.type6 li p {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
}
@media all and (max-width: 896px) {
  .list2.type6 li p {
    font-size: 1.15rem;
  }
}
@media all and (max-width: 639px) {
  .list2.type6 li p {
    font-size: 1.1rem;
  }
}
.list2.type2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 360px));
  /* 2列のサイズ上限を設定 */
  gap: 20px;
  justify-content: center;
  /* グリッド全体を中央に */
  margin: 0 auto;
  /* ブロック自体も中央に */
  max-width: 740px;
  /* 列幅×2 + ギャップ分で全体幅を制限 */
}
.list2.type2 li {
  text-align: center;
}
.list2.type2 li:nth-child(even) .num {
  color: #d4e078;
}
.list2.type2 li:nth-child(even) .num a {
  color: #d4e078;
}
.list2.type2 li:nth-child(odd) {
  grid-column: 1/-1;
  /* 2列ぶち抜き */
  justify-self: center;
  /* 自身を中央に */
  width: min(100%, 520px);
  /* カードの最大幅（お好みで） */
}
.list2.type2 li h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  color: #1a1103;
}
@media all and (max-width: 896px) {
  .list2.type2 li h3 {
    font-size: 1.5rem;
  }
}
@media all and (max-width: 639px) {
  .list2.type2 li h3 {
    font-size: 1.35rem;
    letter-spacing: 0.15em;
  }
}
.list2.type2 li .num {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 3.2rem;
  font-family: "Zen Maru Gothic", "YakuHanJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  color: #bece4a;
  margin: 10px auto 5px;
}
@media all and (max-width: 896px) {
  .list2.type2 li .num {
    font-size: 2.6rem;
  }
}
@media all and (max-width: 639px) {
  .list2.type2 li .num {
    font-size: 2rem;
  }
}
.list2.type2 li .num span {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 2.4rem;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
@media all and (max-width: 896px) {
  .list2.type2 li .num span {
    font-size: 2rem;
  }
}
@media all and (max-width: 639px) {
  .list2.type2 li .num span {
    font-size: 1.6rem;
    letter-spacing: 0.15em;
  }
}
.list2.type2 li .num a {
  transition: 0.3s ease-in all;
  color: #bece4a;
}
.list2.type2 li .num a:hover {
  opacity: 0.7;
}
.list2.type2 li p {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
}
@media all and (max-width: 896px) {
  .list2.type2 li p {
    font-size: 1.15rem;
  }
}
@media all and (max-width: 639px) {
  .list2.type2 li p {
    font-size: 1.1rem;
  }
}
.list2.type3 {
  gap: 25px;
}
.list2.type3 li {
  transition: all 0.3s ease;
  display: block;
  background: #f9f9f7;
  border-radius: 10px;
  overflow: hidden;
  filter: drop-shadow(0 0 8px rgba(26, 17, 3, 0.08));
}
.list2.type3 li img {
  height: 280px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.list2.type3 li h3 {
  position: relative;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  letter-spacing: 0.15em;
  color: #1a1103;
  margin: 10px auto 30px;
}
@media all and (max-width: 896px) {
  .list2.type3 li h3 {
    font-size: 1.6rem;
  }
}
@media all and (max-width: 639px) {
  .list2.type3 li h3 {
    font-size: 1.45rem;
  }
}
.list2.type3 li h3:after {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 30px;
  height: 3px;
  z-index: 1;
  border-radius: 30px;
  background: #bece4a;
}
.list2.type3 li .list3-txt {
  padding: 20px 25px 30px;
}
@media all and (max-width: 1100px) {
  .list2 {
    gap: 15px 30px;
  }
  .list2.type3 {
    gap: 15px;
  }
}
@media all and (max-width: 896px) {
  .list2 {
    grid-template-columns: repeat(1, 1fr);
  }
  .list2.type1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .list2.type2 {
    grid-template-columns: repeat(1, 1fr);
  }
  .list2.type3 {
    grid-template-columns: repeat(1, 1fr);
  }
  .list2.type3 li a {
    border-radius: 5px;
  }
  .list2.type3 li a h3 {
    margin-bottom: 5px;
  }
  .list2.type3 li a h3 span {
    margin-right: 0.5em;
    display: inline;
  }
  .list2.type3 li a .list3-txt {
    padding: 10px 15px 20px;
  }
}

.list3 {
  display: flex;
  flex-wrap: wrap;
}
.list3.jc-c {
  justify-content: center;
}
.list3.ai-c {
  align-items: center;
}
.list3 > li,
.list3 .child {
  width: 31%;
  position: relative;
  margin: 0 3.495% 20px 0;
}
.list3 > li:nth-child(3n),
.list3 .child:nth-child(3n) {
  margin-right: 0;
}
@media all and (max-width: 896px) {
  .list3 > li,
  .list3 .child {
    width: 48%;
  }
  .list3 > li:nth-child(2n),
  .list3 .child:nth-child(2n) {
    margin-right: 0;
  }
  .list3 > li:nth-child(3n),
  .list3 .child:nth-child(3n) {
    margin-right: 3.495%;
  }
}
@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:nth-child(2n),
  .list3 .child:nth-child(2n) {
    margin-right: auto;
  }
}
.list3.efct.type1 > li,
.list3.efct.type1 .child {
  position: relative;
  width: 24%;
  margin: 0 1.995% 20px 0;
}
.list3.efct.type1 > li:nth-child(4n),
.list3.efct.type1 .child:nth-child(4n) {
  margin-right: 0;
}
@media all and (max-width: 1100px) {
  .list3.efct.type1 > li,
  .list3.efct.type1 .child {
    width: 48%;
    margin: 0 3.495% 20px 0;
  }
  .list3.efct.type1 > li:nth-child(2n),
  .list3.efct.type1 .child:nth-child(2n) {
    margin-right: 0;
  }
}
@media all and (max-width: 639px) {
  .list3.efct.type1 > li,
  .list3.efct.type1 .child {
    width: 95%;
    margin: 0 auto 50px;
  }
  .list3.efct.type1 > li:nth-child(2n),
  .list3.efct.type1 .child:nth-child(2n) {
    margin-right: auto;
  }
}
.list3.efct.type1 > li .nmb,
.list3.efct.type1 .child .nmb {
  color: #d4e078;
  opacity: 0.5;
}
.list3.efct.type1 > li:nth-child(2n) .nmb,
.list3.efct.type1 .child:nth-child(2n) .nmb {
  color: #d4e078;
}
.list3.efct.type2 > li,
.list3.efct.type2 .child {
  padding: 20px;
  border: 1px solid #d4e078;
}
.list3.efct.type2 > li .nmb,
.list3.efct.type2 .child .nmb {
  color: #d4e078;
  opacity: 1;
  bottom: auto;
  top: -4.5rem;
  right: auto;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  background: #fefefe;
  padding: 0 5px;
}
@media all and (max-width: 639px) {
  .list3.efct.type2 > li .nmb,
  .list3.efct.type2 .child .nmb {
    font-size: 4rem;
    top: -2.5rem;
  }
}
.list3.efct.type2 > li .txt-box h4,
.list3.efct.type2 .child .txt-box h4 {
  color: #d4e078;
}
.list3.efct.type2 > li .img-box,
.list3.efct.type2 .child .img-box {
  background: #d4e078;
  margin-top: 10px;
}
.list3.efct.type2 > li .img-box img,
.list3.efct.type2 .child .img-box img {
  border-radius: 0;
}
.list3.efct.type2 > li:nth-child(2n) .nmb,
.list3.efct.type2 .child:nth-child(2n) .nmb {
  color: #bece4a;
}
.list3.efct.type2 > li:nth-child(2n) .txt-box h4,
.list3.efct.type2 .child:nth-child(2n) .txt-box h4 {
  color: #bece4a;
}
.list3.efct > li,
.list3.efct .child {
  position: relative;
  width: 31%;
  margin: 0 3.495% 20px 0;
}
.list3.efct > li:nth-child(3n),
.list3.efct .child:nth-child(3n) {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .list3.efct > li,
  .list3.efct .child {
    width: 95%;
    margin: 0 auto 50px;
  }
  .list3.efct > li:nth-child(3n),
  .list3.efct .child:nth-child(3n) {
    margin-right: auto;
  }
}
.list3.efct > li .img-box,
.list3.efct .child .img-box {
  width: 100%;
  height: 200px;
  background: #d4e078;
}
.list3.efct > li .img-box img,
.list3.efct .child .img-box img {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  width: 100%;
  height: 100%;
  opacity: 0.8;
}
.list3.efct > li .txt-box,
.list3.efct .child .txt-box {
  padding: 20px;
}
.list3.efct > li .txt-box h4,
.list3.efct .child .txt-box h4 {
  color: #bece4a;
  font-size: 1.7rem;
  margin-bottom: 15px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-weight: 600;
}
.list3.efct > li .nmb,
.list3.efct .child .nmb {
  position: absolute;
  top: calc(200px - 5.5rem);
  right: 1rem;
  font-size: 6rem;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #fefefe;
  z-index: 1;
  line-height: 1.2;
}
@media all and (max-width: 896px) {
  .list3.efct > li .nmb,
  .list3.efct .child .nmb {
    font-size: 4rem;
    top: calc(200px - 3.5rem);
  }
}
@media all and (max-width: 896px) {
  .list3.type1 li,
  .list3.type1 .child {
    width: 31%;
    position: relative;
    margin: 0 3.495% 20px 0;
  }
  .list3.type1 li:nth-child(3n),
  .list3.type1 .child:nth-child(3n) {
    margin-right: 0;
  }
}

.list4 {
  display: flex;
  flex-wrap: wrap;
}
.list4 > li,
.list4 .child {
  width: 24%;
  margin: 0 1.3333333333% 25px 0;
}
.list4 > li:nth-child(4n),
.list4 .child:nth-child(4n) {
  margin-right: 0;
}

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

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

.flow-dl .flow-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px;
}
.flow-dl .flow-inner:not(:last-of-type) {
  margin-bottom: 10px;
  border-bottom: solid 1px #bece4a;
}
.flow-dl .flow-inner dt {
  width: 10%;
  text-align: center;
  font-family: "Zen Maru Gothic", "YakuHanJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 3rem;
  color: #bece4a;
  line-height: 1.3;
}
.flow-dl .flow-inner dt .eng {
  font-size: 1.1rem;
  color: #bece4a;
  display: block;
}
.flow-dl .flow-inner dt .eng::after {
  content: ".";
}
.flow-dl .flow-inner dd {
  width: 87%;
  border-left: 1px solid #bece4a;
  padding-left: 20px;
}
@media all and (max-width: 639px) {
  .flow-dl .flow-inner {
    padding: 6px;
  }
  .flow-dl .flow-inner dt {
    width: 20%;
    font-size: 1.7rem;
  }
  .flow-dl .flow-inner dt .eng {
    font-size: 1.25rem;
  }
  .flow-dl .flow-inner dd {
    width: 77%;
  }
}

.daily-dl {
  position: relative;
}
.daily-dl.type1 .dl-inner dt {
  background: rgb(192.1837349398, 209.7138554217, 57.7861445783);
}
.daily-dl.type2 .dl-inner dt {
  background: rgb(192.1837349398, 209.7138554217, 57.7861445783);
}
.daily-dl.type-small {
  width: 75%;
  margin: 0 auto;
}
@media all and (max-width: 639px) {
  .daily-dl.type-small {
    width: 100%;
  }
}
.daily-dl .dl-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
  position: relative;
}
.daily-dl .dl-inner.bm0 {
  margin-bottom: 0;
}
.daily-dl .dl-inner:before {
  position: absolute;
  content: "";
  height: 125%;
  width: 8px;
  top: 25px;
  left: 30px;
  background: #c4c4c4;
}
.daily-dl .dl-inner:last-child:before {
  display: none;
}
@media all and (max-width: 639px) {
  .daily-dl .dl-inner {
    width: 100%;
    margin: 0 auto 20px;
  }
  .daily-dl .dl-inner:before {
    width: 8px;
    height: 130%;
    left: 30px;
    top: 15px;
  }
}
.daily-dl .dl-inner dt {
  width: 70px;
  height: 70px;
  line-height: 70px;
  background: rgb(205.3945783133, 219.2379518072, 99.2620481928);
  border-radius: 50%;
  color: #fff;
  text-align: center;
  font-size: 1.6rem;
  position: relative;
  z-index: 4;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.daily-dl .dl-inner dt.ja {
  letter-spacing: 0.1em;
}
.daily-dl .dl-inner dt.line2 {
  line-height: 1.2;
  padding-top: 18px;
}
@media all and (max-width: 639px) {
  .daily-dl .dl-inner dt {
    font-size: 1.3rem;
  }
}
.daily-dl .dl-inner dd {
  flex: 1;
  position: relative;
  background: #fff;
  left: -10px;
  margin-top: 10px;
  padding: 15px 10px 15px 35px;
  font-weight: 600;
  z-index: 2;
}
.daily-dl .dl-inner dd ul li {
  font-size: 90%;
}
.daily-dl .dl-inner dd p:first-child {
  font-weight: bold;
  color: rgb(71.724137931, 46.8965517241, 8.275862069);
}
.daily-dl .dl-inner dd p .brown-l {
  font-weight: bold !important;
}
@media all and (max-width: 639px) {
  .daily-dl .dl-inner dd {
    margin-top: 10px;
  }
}

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

#a01,
#a02,
#a03,
#a04,
#a05,
#a06,
#a07,
#a08 {
  display: block;
  padding-top: 100px;
  margin-top: -100px;
}

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

.faq-dl .faq-inner {
  position: relative;
}
.faq-dl .faq-inner:not(:last-of-type) {
  border-bottom: 2px dashed #e7e7e7;
}
.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.3rem;
  }
}
.faq-dl .faq-inner dt:before,
.faq-dl .faq-inner dd:before {
  position: absolute;
  content: "";
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  left: 0;
  top: 0.5rem;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
.faq-dl .faq-inner dt {
  font-weight: 600;
  padding: 20px 10px;
  padding-left: 55px;
  margin: 5px auto;
  cursor: pointer;
  z-index: 2;
}
@media all and (max-width: 639px) {
  .faq-dl .faq-inner dt {
    padding-left: 45px;
  }
}
.faq-dl .faq-inner dt:before {
  content: "Q.";
  color: #1a1103;
  font-size: 3rem;
}
@media all and (max-width: 639px) {
  .faq-dl .faq-inner dt:before {
    font-size: 2rem;
  }
}
.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, #bece4a, #d4e078);
  opacity: 0.5;
  z-index: -1;
}
@media all and (max-width: 639px) {
  .faq-dl .faq-inner dt span::after {
    display: none;
  }
}
.faq-dl .faq-inner dt:hover span::after {
  width: 100%;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media all and (max-width: 639px) {
  .faq-dl .faq-inner dt:hover span {
    color: #bece4a;
  }
}
.faq-dl .faq-inner dd {
  display: none;
  margin-top: 10px;
  padding: 20px 10px 40px;
  padding-left: 55px;
}
.faq-dl .faq-inner dd:before {
  content: "A.";
  color: #bece4a;
  font-size: 3rem;
}
@media all and (max-width: 639px) {
  .faq-dl .faq-inner dd:before {
    font-size: 2rem;
  }
}

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

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

/* slide_list
----------------------------------*/
.slide_list {
  position: relative;
  display: none;
}
.slide_list li {
  margin-right: 1%;
  width: 350px;
}
.slide_list li img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
.slide_list li table,
.slide_list li p {
  display: none;
}
@media all and (max-width: 639px) {
  .slide_list li img {
    height: 180px;
  }
}

.bnr-img img:hover {
  opacity: 0.5;
  transform: scale(0.98);
  transition: all 0.3s ease;
}

/* accordion
----------------------------------*/
.accordion {
  margin-top: 40px;
}
.accordion dt,
.accordion dd {
  position: relative;
  padding: 1em;
  z-index: 20;
}
.accordion dt {
  background: #fff;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: 600;
  color: #3e3127;
}
.accordion dt:after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f067";
  font-weight: 900;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.7rem;
}
.accordion dt:hover {
  background: rgba(190, 206, 74, 0.2);
}
.accordion dt.on:after {
  font-family: "Font Awesome 5 Free";
  content: "\f068";
  font-weight: 900;
}
.accordion dd {
  display: none;
  padding: 20px;
  background: #fff;
  color: #3e3127;
  border-bottom: 1px dotted #3e3127;
}
@media all and (max-width: 639px) {
  .accordion dd {
    display: block;
  }
}

.h-img {
  width: 250px;
  height: 300px;
  overflow: hidden;
}
.h-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
@media all and (max-width: 896px) {
  .h-img {
    width: 100%;
    height: 300px;
  }
}
.h-img.h-500 {
  height: 500px;
}
@media all and (max-width: 639px) {
  .h-img.h-500 {
    width: 100%;
    height: 200px;
  }
}
.h-img.h-600 {
  height: 600px;
  width: 100%;
}
@media all and (max-width: 1100px) {
  .h-img.h-600 {
    height: 400px;
  }
}
@media all and (max-width: 896px) {
  .h-img.h-600 {
    height: 330px;
  }
}
@media all and (max-width: 639px) {
  .h-img.h-600 {
    height: 200px;
  }
}
.h-img.rd {
  border-radius: 20px;
}
.h-img.long {
  height: 400px;
}
@media all and (max-width: 896px) {
  .h-img.long {
    width: 100%;
    height: 200px;
  }
}

.btn_wk2 a {
  text-align: center;
  position: relative;
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
  padding: 10px;
  max-width: 200px;
  width: 80%;
  font-size: 90%;
  margin-top: 30px;
  margin-bottom: 6px;
  margin-left: auto;
  margin-right: auto;
  display: table;
  transition: all 0.3s ease-in-out;
  line-height: 1.4;
}
.btn_wk2 a span {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  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 {
  color: #bece4a;
  background: #fff;
  border-color: transparent;
}
.btn_wk2 a:hover:before, .btn_wk2 a:hover:after {
  width: calc(100% + 11px);
  height: calc(100% + 11px);
  border-color: #fff;
}
.btn_wk2.btn-r a {
  margin-right: 5px;
}
.btn_wk2.base a {
  color: #bece4a;
  border: 1px solid #bece4a;
}
.btn_wk2.base a:before, .btn_wk2.base a:after {
  border: solid #bece4a;
}
.btn_wk2.base a:before {
  top: -6px;
  left: -6px;
  border-width: 1px 0 0 1px;
}
.btn_wk2.base a:after {
  bottom: -6px;
  right: -6px;
  border-width: 0 1px 1px 0;
}
.btn_wk2.base a:hover {
  color: #fff;
  background: #bece4a;
  border-color: transparent;
}
.btn_wk2.base a:hover:before, .btn_wk2.base a:hover:after {
  border-color: #bece4a;
}
.btn_wk2.right a {
  margin-right: 0;
}
.btn_wk2.left a {
  margin-left: 0;
}

.s-product {
  position: relative;
  margin: 0 auto 0;
}
@media all and (max-width: 639px) {
  .s-product {
    padding-bottom: 6rem;
  }
}
.s-product.type1 {
  width: 100%;
}
.s-product.type1 .swiper-wrapper > .swiper-slide {
  margin: 0 2% 0 0;
  width: 100%;
}
@media all and (max-width: 639px) {
  .s-product.type1 {
    width: 100%;
  }
}
.s-product.type1 > .swiper-wrapper > .swiper-slide {
  width: 31.3333333333%;
}
.s-product.type1 > .swiper-wrapper > .swiper-slide:nth-child(3n) {
  margin-right: 0;
}
.s-product.type1 > .swiper-wrapper > .swiper-slide:nth-child(4n) {
  margin-right: 2%;
}
@media all and (max-width: 1100px) {
  .s-product.type1 > .swiper-wrapper > .swiper-slide:nth-child(3n) {
    margin-right: 0;
  }
  .s-product.type1 > .swiper-wrapper > .swiper-slide:nth-child(4n), .s-product.type1 > .swiper-wrapper > .swiper-slide:nth-child(2n) {
    margin-right: 2%;
  }
}
@media all and (max-width: 639px) {
  .s-product.type1 > .swiper-wrapper > .swiper-slide {
    width: 100%;
    margin: 0 auto;
  }
  .s-product.type1 > .swiper-wrapper > .swiper-slide:nth-child(4n), .s-product.type1 > .swiper-wrapper > .swiper-slide:nth-child(3n) {
    margin-right: auto;
  }
}
.s-product.type1 > .swiper-wrapper > .swiper-slide .img-area {
  position: relative;
  width: 100%;
  height: 250px;
  margin: 0 auto 20px;
  border: 1px solid #d4e078;
  box-shadow: 3px 3px 0px rgba(212, 224, 120, 0.8);
  overflow: hidden;
}
.s-product.type1 > .swiper-wrapper > .swiper-slide .img-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
@media all and (max-width: 896px) {
  .s-product.type1 > .swiper-wrapper > .swiper-slide .img-area {
    height: 200px;
  }
}
@media all and (max-width: 639px) {
  .s-product.type1 > .swiper-wrapper > .swiper-slide .img-area {
    height: 250px;
  }
}
.s-product > .swiper-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media all and (max-width: 639px) {
  .s-product > .swiper-wrapper {
    flex-wrap: nowrap;
    justify-content: initial;
  }
}
.s-product > .swiper-wrapper > .swiper-slide {
  width: 23%;
  margin: 0 2% 40px 0;
  background: transparent;
  position: relative;
}
.s-product > .swiper-wrapper > .swiper-slide:nth-child(4n) {
  margin-right: 0;
}
@media all and (max-width: 1100px) {
  .s-product > .swiper-wrapper > .swiper-slide {
    width: 48%;
  }
  .s-product > .swiper-wrapper > .swiper-slide:nth-child(2n) {
    margin-right: 0;
  }
  .s-product > .swiper-wrapper > .swiper-slide:nth-child(4n) {
    margin-right: 2%;
  }
}
@media all and (max-width: 639px) {
  .s-product > .swiper-wrapper > .swiper-slide {
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
  }
  .s-product > .swiper-wrapper > .swiper-slide:nth-child(4n), .s-product > .swiper-wrapper > .swiper-slide:nth-child(2n) {
    margin-right: auto;
  }
}
.s-product > .swiper-wrapper > .swiper-slide .img-area {
  position: relative;
  width: 100%;
  height: 250px;
  margin: 0 auto 20px;
  border: 1px solid #d4e078;
  box-shadow: 3px 3px 0px rgba(212, 224, 120, 0.8);
  overflow: hidden;
}
.s-product > .swiper-wrapper > .swiper-slide .img-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
@media all and (max-width: 639px) {
  .s-product > .swiper-wrapper > .swiper-slide .img-area {
    height: 250px;
  }
}
.s-product > .swiper-wrapper > .swiper-slide h3 {
  display: block;
  font-size: 1.8rem;
  color: #bece4a;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  margin-bottom: 15px;
  letter-spacing: 0;
}
.s-product > .swiper-wrapper > .swiper-slide .volume {
  position: absolute;
  top: -4.5rem;
  right: 1rem;
  color: #bece4a;
  text-shadow: 2px 2px 0 #fefefe, -2px 2px 0 #fefefe, 2px -2px 0 #fefefe, -2px -2px 0 #fefefe;
  font-family: "Zen Maru Gothic", "YakuHanJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 5rem;
}
.s-product > .swiper-wrapper > .swiper-slide .cate {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #d4e078;
  color: #fefefe;
  padding: 3px 10px;
  border-radius: 5px;
  letter-spacing: 0;
}
.s-product > .swiper-wrapper > .swiper-slide .txt {
  color: #333;
}
.s-product > .swiper-wrapper > .swiper-slide .btn {
  font-size: 1.2rem;
  margin-top: 10px;
  position: relative;
  text-align: right;
}
.s-product > .swiper-wrapper > .swiper-slide .btn::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  background: #d4e078;
  opacity: 0.5;
  z-index: -2;
  border-radius: 30px;
}
.s-product > .swiper-wrapper > .swiper-slide:hover {
  transition: all 0.3s ease;
}
.s-product > .swiper-wrapper > .swiper-slide:hover .img-area img {
  transition: all 0.3s ease;
}
.s-product > .swiper-wrapper > .swiper-slide:hover .btn::after {
  transition: all 0.3s ease;
  width: 30px;
  height: 30px;
}
.s-product .swiper-controller {
  display: none;
}
@media all and (max-width: 639px) {
  .s-product .swiper-controller {
    display: flex;
    gap: 2.6rem;
    align-items: center;
    justify-content: flex-end;
    margin-top: 3.2rem;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
.s-product .swiper-button-prev,
.s-product .swiper-button-next {
  position: relative;
  margin: 0;
  display: grid;
  place-content: center;
  width: 6.4rem;
  height: 6.4rem;
  cursor: pointer;
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  background-image: none;
  border-radius: 50%;
  background: #bece4a;
}
@media all and (max-width: 896px) {
  .s-product .swiper-button-prev,
  .s-product .swiper-button-next {
    width: 4rem;
    height: 4rem;
  }
}
.s-product .swiper-button-prev::before,
.s-product .swiper-button-next::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: 50%;
}
.s-product .swiper-button-prev::after,
.s-product .swiper-button-next::after {
  width: 1.2rem;
  height: 1.2rem;
  content: "";
  border: solid #fefefe;
  border-width: 2px 2px 0 0;
}
.s-product .swiper-button-prev:hover::before,
.s-product .swiper-button-next:hover::before {
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  transform: scale(1.2);
}
.s-product .swiper-button-prev::after {
  margin-left: 0.4rem;
  transform: rotate(-135deg);
}
.s-product .swiper-button-next::after {
  margin-right: 0.4rem;
  transform: rotate(45deg);
}
.s-product .swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}

.menu-list {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.menu-list > li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 5px 0;
}
.menu-list > li:not(:last-child) {
  margin-bottom: 15px;
}
.menu-list > li p {
  display: inline-block;
  line-height: 1.5;
}
.menu-list > li:before {
  background: radial-gradient(#1a1103 20%, transparent 0) center center/8px 8px;
  content: "";
  display: inline-block;
  flex: 1;
  height: 4px;
  margin: 0 1.2em;
}
@media all and (max-width: 639px) {
  .menu-list > li:not(:last-child) {
    margin-bottom: 15px;
  }
  .menu-list > li:before {
    margin: 0 5px;
  }
}
.menu-list > li .info {
  flex-basis: 100%;
  font-size: 95%;
  color: #1a1103;
  margin-top: 5px;
  padding: 5px 10px;
}
.menu-list > li .info.capt {
  margin-top: 10px;
  background: #fefefe;
}
.menu-list > li .left {
  order: -1;
  max-width: 65%;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #1a1103;
  font-size: 1.5rem;
  position: relative;
}
.menu-list > li .left .small {
  display: block;
  font-size: 1.2rem;
}
.menu-list > li .left .small::before {
  content: "[";
  padding-right: 3px;
}
.menu-list > li .left .small::after {
  content: "]";
  padding-left: 3px;
}
.menu-list > li .left:after {
  content: ".";
  display: inline-block;
  width: 0;
  color: transparent;
  pointer-events: none;
}
@media all and (max-width: 639px) {
  .menu-list > li .left {
    max-width: 50%;
    font-size: 1.3rem;
  }
  .menu-list > li .left .small {
    font-size: 1rem;
  }
}
.menu-list > li .right {
  max-width: 35%;
  text-align: right;
  font-family: "Zen Maru Gothic", "YakuHanJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 1.8rem;
  line-height: 1.1;
}
.menu-list > li .right .small {
  font-size: 1.6rem;
}
.menu-list > li .right .min {
  font-size: 1.2rem;
  font-family: "Zen Maru Gothic", "YakuHanJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.menu-list > li .right .big {
  font-size: 1.6rem;
  font-family: "Zen Maru Gothic", "YakuHanJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
}

.tab_area {
  width: 98%;
  margin: 0 auto;
  flex-wrap: wrap;
  display: flex;
  justify-content: space-between;
}
.tab_area > .content_class {
  padding: 40px 0;
  border-top: 2px solid #bece4a;
}
@media all and (max-width: 639px) {
  .tab_area > .content_class {
    padding: 25px 0;
  }
}

.tab_class {
  width: calc(50% - 20px);
  height: 50px;
  background-color: #fefefe;
  border: 2px solid #bece4a;
  color: #bece4a;
  font-weight: 600;
  border-bottom: none;
  line-height: 50px;
  margin: 0 10px;
  font-size: 15px;
  border-radius: 10px 10px 0 0;
  text-align: center;
  display: block;
  float: left;
  order: -1;
}

input[name=tab_name] {
  display: none;
}

input:checked + .tab_class {
  background-color: #bece4a;
  color: #fefefe;
}

.content_class {
  display: none;
  width: 100%;
}

input:checked + .tab_class + .content_class {
  display: block;
}

.top-info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: row-reverse;
}
.top-info .img-area {
  width: 31%;
}
.top-info .img-area .img1 {
  width: 90%;
  display: block;
}
.top-info .img-area .img1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  border-radius: 8px;
}
.top-info .img-area .img2 {
  margin: 30px 0 0 auto;
  width: 90%;
  height: 318px;
  display: block;
}
.top-info .img-area .img2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  border-radius: 8px;
  -o-object-position: 90% center;
     object-position: 90% center;
}
@media all and (max-width: 896px) {
  .top-info .img-area {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .top-info .img-area .img1 {
    width: 31%;
    height: 150px;
  }
  .top-info .img-area .img2 {
    width: 65%;
    height: 200px;
  }
}
.top-info .txt-box {
  width: 65%;
}
.top-info .txt-box .img-box {
  position: relative;
}
.top-info .txt-box .img-box .main {
  margin: 0 auto 50px;
  width: 100%;
  height: 350px;
  display: block;
}
.top-info .txt-box .img-box .main img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  border-radius: 8px;
}
.top-info .txt-box .img-box .img-deco {
  width: 200px;
  position: absolute;
  right: -10px;
  bottom: -20px;
}
.top-info .txt-box .img-box .img-deco img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: contain;";
}
.top-info .txt-box .inner {
  color: #fefefe;
  text-shadow: 0 0 10px rgba(190, 206, 74, 0.5);
}
.top-info .txt-box .inner h3 {
  font-size: 3.5rem;
  margin-bottom: 15px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}
@media all and (max-width: 896px) {
  .top-info .txt-box .inner h3 {
    font-size: 1.8rem;
  }
}
@media all and (max-width: 896px) {
  .top-info .txt-box {
    width: 100%;
  }
}
.top-info.type1 {
  flex-direction: inherit;
}
@media all and (max-width: 896px) {
  .top-info.type1 {
    justify-content: space-between;
  }
}
.top-info.type1 .img-area .img1 {
  margin: 0 0 0 auto;
}
.top-info.type1 .img-area .img2 {
  width: 80%;
  height: 330px;
  margin: 30px auto 0 0;
}
@media all and (max-width: 896px) {
  .top-info.type1 .img-area {
    margin-bottom: 15px;
  }
  .top-info.type1 .img-area .img1 {
    width: 30%;
    margin: 0;
  }
  .top-info.type1 .img-area .img2 {
    width: 65%;
    height: 200px;
    margin: 30px 0 0 auto;
  }
}
.top-info.type1 .txt-box .inner {
  color: #333;
  text-shadow: none;
}
.top-info.type1 .txt-box .inner h3 {
  color: #bece4a;
}

.goals-box {
  padding-top: 50px;
  justify-content: center;
  row-gap: 60px;
}
.goals-box > li {
  position: relative;
}
.goals-box > li figure {
  margin-bottom: 20px;
}
.goals-box > li .ttl01 {
  position: absolute;
  top: -50px;
  left: 50%;
  width: 100px;
  transform: translateX(-50%);
}
@media all and (max-width: 1100px) {
  .goals-box {
    gap: 60px 30px;
  }
  .goals-box > li {
    width: 45%;
    margin: 0;
  }
}
@media all and (max-width: 639px) {
  .goals-box > li {
    width: 100%;
  }
}

.bnr-top-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.bnr-top-list li {
  width: 48%;
  position: relative;
}
@media all and (max-width: 639px) {
  .bnr-top-list li {
    width: 100%;
    margin-bottom: 40px;
  }
  .bnr-top-list li:last-child {
    margin-bottom: 0;
  }
}
.bnr-top-list li .bnr-img-area {
  position: relative;
}
.bnr-top-list li .bnr-img-area .main {
  width: 100%;
  height: 250px;
  overflow: hidden;
}
.bnr-top-list li .bnr-img-area .main img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
.bnr-top-list li .bnr-img-area .icon {
  width: 100px;
  height: 100px;
  background: #fefefe;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 50%;
  bottom: -50px;
  transform: translateX(-50%);
}
.bnr-top-list li .bnr-img-area .icon img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: contain;";
}
.bnr-top-list li .text-area {
  padding: 60px 10px 20px;
}
.bnr-top-list li .text-area h3 {
  font-size: 3rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
  color: #232323;
}
.bnr-top-list li .text-area h3 span {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  display: block;
  color: #bece4a;
}
.bnr-top-list li .text-area .btn {
  border: 1px solid #d4e078;
  color: #d4e078;
  border-radius: 50px;
  padding: 10px 0px;
  margin: 0 auto;
  width: 80%;
  font-size: 1.8rem;
  text-align: center;
}
@media all and (max-width: 639px) {
  .bnr-top-list li .text-area .btn {
    width: 90%;
    font-size: 1.6rem;
  }
}
.bnr-top-list li:hover .bnr-img-area .main img {
  transition: all 0.3s ease;
  transform: scale(1.15);
}
.bnr-top-list li:hover .btn {
  transition: all 0.3s ease;
  background: #d4e078;
  color: #fefefe;
}

.top-link-list {
  padding: 100px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  padding: 50px 0;
}
@media all and (max-width: 639px) {
  .top-link-list {
    gap: 30px;
  }
}
.top-link-list > li {
  width: 40%;
  position: relative;
}
.top-link-list > li a {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26848/bg_sbox.jpg);
  padding: 40px;
  text-align: center;
  border-radius: 10px;
  display: block;
  color: #3e3127;
  box-shadow: 2px 2px 10px -3px rgba(84, 58, 37, 0.2);
}
.top-link-list > li a::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26848/heart01.png) no-repeat center/contain;
  width: 100px;
  height: 100px;
}
.top-link-list > li a .ja {
  font-size: 2rem;
}
.top-link-list > li a span {
  display: block;
}
.top-link-list > li a:hover {
  transform: translateY(5px);
}
.top-link-list > li a:hover::before {
  animation: haneru 0.8s linear 0s 1;
}
.top-link-list > li:nth-child(2) a::before {
  content: "";
  top: auto;
  bottom: -20px;
  left: -20px;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26848/heart02.png) no-repeat center/contain;
}
@media all and (max-width: 639px) {
  .top-link-list > li {
    width: 90%;
  }
  .top-link-list > li a {
    padding: 20px 40px;
  }
  .top-link-list > li a::before {
    width: 60px;
    height: 60px;
  }
}

.feaure-bnr {
  max-width: 1150px;
  margin-left: auto;
  margin-right: auto;
}
@media all and (max-width: 896px) {
  .feaure-bnr {
    max-width: 80%;
    margin-bottom: -40px;
  }
}
@media all and (max-width: 639px) {
  .feaure-bnr {
    max-width: 95%;
  }
}
.feaure-bnr > ul > li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  padding: 0 10px 100px;
}
.feaure-bnr > ul > li:last-child {
  padding-bottom: 50px;
}
@media all and (max-width: 639px) {
  .feaure-bnr > ul > li {
    width: 100%;
    padding: 55px 10px;
  }
}
.feaure-bnr > ul > li .img-area {
  width: 60%;
  height: 400px;
  overflow: hidden;
  background: #c4c4c4;
  border-radius: 10px;
}
.feaure-bnr > ul > li .img-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
@media all and (max-width: 1100px) {
  .feaure-bnr > ul > li .img-area {
    width: 55%;
  }
}
@media all and (max-width: 896px) {
  .feaure-bnr > ul > li .img-area {
    width: 100%;
    height: 250px;
  }
}
.feaure-bnr > ul > li .text {
  width: 35%;
}
.feaure-bnr > ul > li .text h4 {
  font-size: 2rem;
  margin-bottom: 35px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  color: #bece4a;
}
@media all and (max-width: 896px) {
  .feaure-bnr > ul > li .text h4 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}
@media all and (max-width: 1100px) {
  .feaure-bnr > ul > li .text {
    width: 40%;
  }
}
@media all and (max-width: 896px) {
  .feaure-bnr > ul > li .text {
    width: 100%;
    margin-top: 40px;
    padding: 0 10px;
  }
}
.feaure-bnr > ul > li .btn a {
  position: relative;
  display: flex;
  justify-content: end;
  margin: 0 auto;
  margin-top: 65px;
  width: 114px;
}
@media all and (max-width: 896px) {
  .feaure-bnr > ul > li .btn a {
    margin-top: 50px;
    margin-bottom: 30px;
  }
}
.feaure-bnr > ul > li .btn a .link {
  display: flex;
  align-items: center;
  font-size: 2rem;
  line-height: 1;
  color: #bece4a;
  padding-right: 60px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
@media all and (max-width: 896px) {
  .feaure-bnr > ul > li .btn a .link {
    padding-right: 50px;
  }
}
.feaure-bnr > ul > li .btn a:before {
  position: absolute;
  content: "";
  width: 45px;
  height: 45px;
  border: 1px solid #bece4a;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s ease-in-out;
}
@media all and (max-width: 896px) {
  .feaure-bnr > ul > li .btn a:before {
    width: 40px;
    height: 40px;
  }
}
.feaure-bnr > ul > li .btn a:after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  top: 50%;
  right: 25px;
  border-top: 1px solid #bece4a;
  border-right: 1px solid #bece4a;
  transform: rotate(45deg) translateY(-50%);
  transition: 0.3s ease-in-out;
}
@media all and (max-width: 896px) {
  .feaure-bnr > ul > li .btn a:after {
    right: 20px;
  }
}
.feaure-bnr > ul > li .btn a:hover {
  transition: all 0.3s ease;
}
.feaure-bnr > ul > li .btn a:hover:before {
  background: #bece4a;
}
.feaure-bnr > ul > li .btn a:hover:after {
  border-color: #fefefe !important;
}
.feaure-bnr > ul > li:nth-child(2n) .img-area {
  order: 2;
}
@media all and (max-width: 896px) {
  .feaure-bnr > ul > li:nth-child(2n) .img-area {
    order: 1;
  }
}
.feaure-bnr > ul > li:nth-child(2n) .text {
  order: -1;
}
@media all and (max-width: 896px) {
  .feaure-bnr > ul > li:nth-child(2n) .text {
    order: 2;
  }
}

/* slide_list
----------------------------------*/
.slide_left,
.slide_right {
  position: relative;
  padding-bottom: 100px;
  display: none;
}
.slide_left li,
.slide_right li {
  position: relative;
  margin-right: 2%;
  width: 250px;
  height: 250px;
}
.slide_left li img,
.slide_right li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
.slide_left li::after,
.slide_right li::after {
  content: "";
  background-image: linear-gradient(to right top, #bece4a, #d4e078, #d4e078);
  opacity: 0.2;
  z-index: -2;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: -5px;
  right: -5px;
}
.slide_left li p,
.slide_right li p {
  display: none;
}
@media all and (max-width: 896px) {
  .slide_left li,
  .slide_right li {
    width: 200px;
    height: 200px;
  }
}

.top-greet-wrap {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media all and (max-width: 896px) {
  .top-greet-wrap {
    flex-direction: column;
    margin: 45px auto 0;
    width: 80%;
  }
}
@media all and (max-width: 639px) {
  .top-greet-wrap {
    justify-content: center;
    width: 90%;
  }
}
.top-greet-wrap .top-greet-img {
  width: 35%;
  height: 600px;
  position: relative;
}
@media all and (max-width: 896px) {
  .top-greet-wrap .top-greet-img {
    width: 100%;
    height: 350px;
  }
}
.top-greet-wrap .top-greet-img .img-box1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 65%;
  height: 80%;
  overflow: hidden;
}
.top-greet-wrap .top-greet-img .img-box1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
.top-greet-wrap .top-greet-img .img-box2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30%;
  height: 65%;
  overflow: hidden;
}
.top-greet-wrap .top-greet-img .img-box2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
.top-greet-wrap .top-greet-box {
  width: 63%;
}
@media all and (max-width: 896px) {
  .top-greet-wrap .top-greet-box {
    width: 100%;
  }
}

/* fixed-btn
----------------------------------*/
.fixed-btn {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 50;
  transform: translateY(-30%);
  z-index: 1500;
}
.fixed-btn ul li {
  margin-bottom: 10px;
}
.fixed-btn ul li:nth-child(2n) a {
  background: #d4e078;
}
.fixed-btn ul li:nth-child(2n) a:hover {
  background: rgb(205.3945783133, 219.2379518072, 99.2620481928);
}
.fixed-btn ul li a {
  background: #d4e078;
  color: #fefefe;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 70px;
  text-align: center;
  border-radius: 100px 0 0 100px;
}
.fixed-btn ul li a:hover {
  transition: all 0.3s ease;
  transform: translateX(5px);
  background: rgb(192.1837349398, 209.7138554217, 57.7861445783);
}
.fixed-btn ul li .cont {
  font-size: 1.3rem;
  text-align: center;
  padding-left: 15px;
}
.fixed-btn ul li .cont i {
  display: block;
  font-size: 2rem;
}
.fixed-btn ul li:nth-child(3) {
  display: none;
}
@media all and (max-width: 639px) {
  .fixed-btn {
    top: auto;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: calc(100% - 35px);
    width: 100%;
  }
  .fixed-btn ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .fixed-btn ul li {
    width: 50%;
    margin-bottom: 0;
  }
  .fixed-btn ul li a {
    width: 100%;
    height: 60px;
    writing-mode: initial;
    border-radius: 0;
  }
  .fixed-btn ul li a:hover {
    transition: all 0.3s ease;
    transform: translateX(0);
  }
  .fixed-btn ul li .cont {
    font-size: 1rem;
    padding: 0;
  }
  .fixed-btn ul li .cont img {
    margin: 0 auto;
    display: block;
  }
  .fixed-btn ul li:nth-child(3) {
    display: block;
  }
}

.cms-area {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  border: 2px solid rgb(246.8125, 243.5375, 236.9875);
  border-radius: 20px;
  background: #faf8f4;
  padding: 30px;
}
.cms-area::after {
  content: "";
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26848/clip.png) no-repeat center/contain;
  width: 220px;
  height: 80px;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}
@media all and (max-width: 639px) {
  .cms-area::after {
    width: 120px;
  }
}
.cms-area .inner {
  background: #fefefe;
  padding: 40px;
}
@media all and (max-width: 639px) {
  .cms-area .inner {
    padding: 40px 5px;
  }
}

.faq-area {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  border: 2px solid rgb(246.8125, 243.5375, 236.9875);
  border-radius: 20px;
  background: #faf8f4;
  padding: 30px;
}
@media all and (max-width: 639px) {
  .faq-area {
    padding: 30px 10px;
  }
}
.faq-area .inner {
  background: #fefefe;
  padding: 40px;
  position: relative;
}
.faq-area .inner::after {
  content: "";
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26848/ring.png) repeat-y 50% 17px/contain;
  width: 22px;
  height: calc(100% - 17px);
  position: absolute;
  top: 50%;
  left: -5px;
  transform: translateY(-50%);
}
@media all and (max-width: 639px) {
  .faq-area .inner {
    padding: 30px 15px 30px 30px;
  }
}

.availability {
  display: flex;
  flex-wrap: wrap;
}
.availability li {
  display: block;
  position: relative;
  width: 32%;
  border-right: 1px dashed #c0c0c0;
  padding: 20px 2% 20px calc(2% - 15px);
  margin: 0 2% 25px 0;
}
.availability li:nth-child(3n), .availability li:last-child {
  border-right: none;
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .availability li {
    width: 100%;
    margin: 0 auto 25px;
    padding: 20px 2%;
    border-right: none;
    border-bottom: 1px dashed #c0c0c0;
  }
  .availability li:nth-child(3n) {
    margin: 0 auto 25px;
  }
  .availability li:last-child {
    margin-bottom: 0;
    border-bottom: none;
  }
}
.availability li .img-area {
  width: 100%;
  height: 250px;
  position: relative;
}
@media all and (max-width: 896px) {
  .availability li .img-area {
    height: 150px;
  }
}
@media all and (max-width: 639px) {
  .availability li .img-area {
    height: 200px;
  }
}
.availability li .img-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
.availability li .img-area h3 {
  background: #bece4a;
  font-size: 2rem;
  padding: 5px 10px;
  color: #fefefe;
  position: absolute;
  top: -10px;
  left: -15px;
  border-radius: 0 10px 10px 0;
}
.availability li .img-area h3::after {
  content: "";
  width: 15px;
  height: 15px;
  background: rgb(145.9891304348, 160.1456521739, 43.3543478261);
  position: absolute;
  bottom: -15px;
  left: 0;
  clip-path: polygon(0 0, 100% 50%, 100% 0);
}
@media all and (max-width: 1100px) {
  .availability li .img-area h3 {
    left: -10px;
  }
  .availability li .img-area h3::after {
    bottom: -10px;
    width: 10px;
    height: 10px;
  }
}
@media all and (max-width: 896px) {
  .availability li .img-area h3 {
    left: -5px;
    font-size: 1.3rem;
  }
  .availability li .img-area h3::after {
    bottom: -5px;
    width: 5px;
    height: 5px;
  }
}
@media all and (max-width: 639px) {
  .availability li .img-area h3 {
    font-size: 1.6rem;
  }
}
.availability li .text-area {
  padding: 10px;
  text-align: center;
  font-size: 1.3rem;
}
.availability li .text-area .aki {
  background: #faf8f4;
  padding: 5px;
  border-radius: 5px;
  margin-top: 10px;
  font-weight: 600;
  font-size: 1.5rem;
}
@media all and (max-width: 1100px) {
  .availability li .text-area {
    font-size: 1.2rem;
  }
}
@media all and (max-width: 896px) {
  .availability li .text-area {
    font-size: 1.1rem;
  }
}

/* contact-form
----------------------------------*/
.form-contents {
  width: 100% !important;
  height: auto !important;
  padding: 0 !important;
  border-radius: 15px 15px 0 0 !important;
  background: transparent !important;
}
@media all and (max-width: 1100px) {
  .form-contents {
    padding: 15px !important;
  }
}
.form-contents .required::before {
  background: #d4e078 !important;
  padding: 5px 10px !important;
}
.form-contents .nini {
  background: #bece4a !important;
  color: #fefefe !important;
  border-radius: 20px;
  padding: 5px 10px !important;
  font-size: 11px !important;
  margin-right: 5px !important;
}
.form-contents .textarea {
  background-color: #fefefe !important;
  border: none !important;
  padding: 30px 15px !important;
  border-radius: 5px !important;
}
.form-contents input[type=text],
.form-contents textarea {
  font-size: 16px;
}
.form-contents .textarea03 {
  width: 20% !important;
}
@media all and (max-width: 639px) {
  .form-contents .textarea03 {
    width: 48% !important;
  }
}
.form-contents .file-box {
  display: flex;
  align-items: center;
}
.form-contents #attachment,
.form-contents #attachment2 {
  margin-bottom: 5px;
}
@media all and (max-width: 639px) {
  .form-contents #attachment,
  .form-contents #attachment2,
  .form-contents #attachment3 {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
  }
}
@media all and (max-width: 639px) {
  .form-contents .filename,
  .form-contents .filename2,
  .form-contents .filename3 {
    text-align: center;
  }
}
.form-contents #attachment label,
.form-contents #attachment2 label,
.form-contents #attachment3 label {
  display: inline-block;
  position: relative;
  background-color: #454545;
  color: #fff;
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.5s;
  font-size: 1.5rem;
  margin-right: 20px;
  cursor: pointer;
}
@media all and (max-width: 639px) {
  .form-contents #attachment label,
  .form-contents #attachment2 label,
  .form-contents #attachment3 label {
    font-size: 1.3rem;
    text-align: center;
    margin-right: 0;
  }
}
.form-contents #attachment label:hover,
.form-contents #attachment2 label:hover,
.form-contents #attachment3 label:hover {
  background-color: #004db1;
}
.form-contents #attachment input,
.form-contents #attachment2 input,
.form-contents #attachment3 input {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.form-contents .file-name {
  flex: 1;
}
.form-contents .submit-btn {
  background-color: #bece4a !important;
  border: none !important;
  color: #fefefe !important;
  border: 1px solid #bece4a !important;
}
.form-contents .submit-btn:hover {
  color: #bece4a !important;
  background-color: #fefefe !important;
  border: 1px solid #bece4a !important;
}
.form-contents .submit-btn:hover:before {
  background-color: #bece4a !important;
}
.form-contents .custom-area p {
  padding: 10px 0;
}

@media all and (max-width: 639px) {
  .form-contents {
    padding: 0 10px !important;
  }
  .form-contents dl {
    margin: 10px 0 !important;
  }
  .form-contents dl dt {
    float: none !important;
    padding-top: 15px !important;
  }
  .form-contents dl dd {
    padding-left: 0 !important;
    padding-bottom: 15px !important;
    padding-top: 10px !important;
    line-height: 20px !important;
  }
  .form-contents .submit-btn {
    width: 250px !important;
  }
}
.thanks {
  background: #fff;
  padding: 40px;
  border: 3px solid #bece4a;
  box-shadow: 0 0 0 8px rgba(190, 206, 74, 0.2);
  max-width: 700px;
  margin: 0 auto;
}
@media all and (max-width: 639px) {
  .thanks {
    max-width: calc(100% - 20px);
    padding: 25px 15px;
  }
}

.greeting-section {
  position: relative;
  z-index: 1;
  margin: 100px auto 0;
  display: flex;
  flex-wrap: wrap;
}
.greeting-section::before {
  content: "";
  position: absolute;
  top: -195px;
  right: 20px;
  width: 200px;
  height: 200px;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26848/slide-photo1.png) no-repeat;
  background-size: contain;
  animation: circle-anime 4s ease-out infinite;
  opacity: 0.5;
}
.greeting-section .greeting-image-main {
  position: relative;
  width: 50%;
  height: 100%;
}
.greeting-section .greeting-image-main::before {
  content: "";
  position: absolute;
  bottom: -95px;
  right: 20px;
  width: 150px;
  height: 150px;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26848/slide-photo1.png) no-repeat;
  background-size: contain;
  animation: circle-anime 4s ease-out infinite;
  opacity: 0.5;
}
.greeting-section .greeting-image-main img {
  border-radius: 0 10px 10px 0;
}
.greeting-section .greeting-content {
  width: 50%;
  padding: 50px 50px 0 100px;
}
.greeting-section .greeting-content .greeting-title .title-en {
  font-weight: bold;
}
.greeting-section .greeting-content .greeting-title .title-ja {
  display: block;
  margin-top: 5px;
}
.greeting-section .greeting-content .greeting-image-sub {
  margin: 50px auto 0;
}
.greeting-section .greeting-content .greeting-image-sub img {
  border-radius: 10px;
  overflow: hidden;
}
@media all and (max-width: 896px) {
  .greeting-section::before {
    width: 150px;
    height: 150px;
  }
  .greeting-section .greeting-image-main {
    width: 30%;
    height: 680px;
  }
  .greeting-section .greeting-content {
    width: 65%;
  }
}
@media all and (max-width: 639px) {
  .greeting-section {
    display: block;
    margin: 50px auto 0;
  }
  .greeting-section::before {
    top: -100px;
    width: 100px;
    height: 100px;
  }
  .greeting-section .greeting-image-main {
    width: 72%;
    height: auto;
  }
  .greeting-section .greeting-image-main::before {
    bottom: -25px;
    right: 0;
    width: 50px;
    height: 50px;
  }
  .greeting-section .greeting-content {
    width: 100%;
    padding: 50px 20px 0 20px;
  }
  .greeting-section .greeting-content .greeting-title {
    padding: 4px 10px;
  }
}

.greeting-message {
  position: relative;
  z-index: 2;
  margin: 0 auto;
}
.greeting-message::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 320px;
  width: 180px;
  height: 180px;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26848/slide-photo1.png) no-repeat;
  background-size: contain;
  animation: circle-anime 4s ease-out infinite;
  opacity: 0.3;
}
.greeting-message__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  width: 80%;
  margin: 0 auto;
  padding: 50px 0;
}
.greeting-message__image {
  width: 35%;
  margin-top: -14%;
}
.greeting-message__image img {
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  height: auto;
}
.greeting-message__text {
  width: 55%;
  padding: 30px 0 100px;
}
.greeting-message__title {
  position: relative;
}
.greeting-message__title .title-en {
  font-weight: bold;
  display: block;
}
.greeting-message__title .title-ja {
  display: block;
  margin-top: 5px;
}
.greeting-message__body p {
  line-height: 1.8;
}
.greeting-message__body .mt-20 {
  margin-top: 20px;
}
.greeting-message__body .button {
  margin-top: 40px;
  text-align: left;
}
.greeting-message__body .button a {
  display: inline-block;
  text-align: center;
  padding: 10px 20px;
  border: 1px solid #333;
  border-radius: 5px;
  text-decoration: none;
}
.greeting-message__body .button a span {
  font-weight: bold;
}
@media all and (max-width: 896px) {
  .greeting-message::before {
    content: "";
    width: 100px;
    height: 100px;
  }
  .greeting-message__inner {
    width: 90%;
  }
  .greeting-message__image {
    width: 40%;
    margin-top: 0;
  }
  .greeting-message__text {
    width: 55%;
    padding-bottom: 150px;
  }
  .greeting-message__body .button {
    text-align: left;
  }
}
@media all and (max-width: 639px) {
  .greeting-message__inner {
    width: 90%;
    padding: 30px 0;
  }
  .greeting-message__image {
    width: 190%;
    margin: 20px -50px 30px auto;
    height: 150px;
  }
  .greeting-message__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .greeting-message__text {
    width: 100%;
    padding-bottom: 0;
  }
  .greeting-message__body .button {
    margin: 40px auto 0;
    text-align: center;
  }
  .greeting-message__body .button a {
    text-align: center;
  }
}

.top-ilst {
  position: relative;
  margin: auto;
  max-width: 500px;
  width: 90%;
}

.news-box {
  position: relative;
  background: #fff;
  padding: 50px;
  border-radius: 30px;
}
@media all and (max-width: 896px) {
  .news-box {
    padding: 70px;
  }
}
@media all and (max-width: 639px) {
  .news-box {
    padding: 50px 30px;
  }
}

.news-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
@media all and (max-width: 639px) {
  .news-title {
    flex-direction: column;
  }
}

.blog_topics {
  width: 100%;
  border-top: 1px solid #e4e2dc;
}
.blog_topics li {
  position: relative;
  border-bottom: 1px solid #e4e2dc;
}
.blog_topics li a {
  display: block;
  color: #1a1103;
  padding: 25px 20px;
  transition: 0.3s ease-in all;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.blog_topics li a::after {
  font-family: "Font Awesome 5 Free";
  content: "\f061";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 2%;
  transform: translateY(-50%);
  font-size: 2rem;
  transition: 0.3s ease-in all;
}
.blog_topics li a:hover {
  background-color: rgb(250.0928571429, 250.0928571429, 248.4571428571);
}
.blog_topics li a:hover::after {
  right: 1%;
}
.blog_topics li a .topics_detail {
  position: relative;
}
.blog_topics li a .topics_detail .textbox {
  display: flex;
  justify-content: start;
  align-items: center;
  width: 75%;
  line-height: 1.5;
}
.blog_topics li a .topics_detail .textbox h3 {
  flex: 1;
  margin: 5px 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  margin-bottom: 5px;
}
@media all and (max-width: 896px) {
  .blog_topics li a .topics_detail .textbox h3 {
    font-size: 1.4rem;
  }
}
@media all and (max-width: 639px) {
  .blog_topics li a .topics_detail .textbox h3 {
    font-size: 1.26rem;
  }
}
.blog_topics li a .time_date {
  display: inline-block;
  font-size: 1.5rem;
  font-family: "Zen Maru Gothic", "YakuHanJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #898989;
  width: 15%;
}
.blog_topics li a .time_date span {
  padding: 2px 10px;
  display: inline-block;
  color: #1a1103;
  background: rgb(224.5913043478, 232.0765217391, 170.3234782609);
  font-size: 1.2rem;
  border-radius: 5px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  margin-left: 15px;
}
@media all and (max-width: 896px) {
  .blog_topics li a .topics_detail .imgbox {
    height: 120px;
  }
  .blog_topics li a .topics_detail .time_date {
    display: inline-block;
    font-size: 1.3rem;
    font-family: "Zen Maru Gothic", "YakuHanJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #1a1103;
    width: 22%;
  }
  .blog_topics li a .topics_detail .time_date span {
    border-radius: 2px;
    padding: 1px 6px;
    font-size: 1rem;
    margin-left: 8px;
  }
}
@media all and (max-width: 639px) {
  .blog_topics li a {
    padding: 10px 5px;
  }
  .blog_topics li a .topics_detail .imgbox {
    width: 30%;
    height: 90px;
  }
  .blog_topics li a .topics_detail .textbox {
    display: block;
    width: 70%;
    line-height: 1.5;
    flex-direction: column;
  }
  .blog_topics li a .topics_detail .textbox p {
    font-size: 1rem;
  }
  .blog_topics li a .topics_detail .time_date {
    width: 100%;
    font-size: 1.1rem;
  }
  .blog_topics li a .topics_detail .time_date span {
    font-size: 0.9rem;
  }
}
.blog_topics .pages {
  text-align: center;
  margin-top: 30px;
}
.blog_topics .pages .page_next,
.blog_topics .pages .page_prev {
  display: inline-block;
  margin: 0 20px;
}
.blog_topics .pages .page_next a,
.blog_topics .pages .page_prev a {
  color: #fefefe;
  padding: 4px 5px;
  background: #bece4a;
  font-size: 12px;
}

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

.blog-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px 2.5%;
  margin-bottom: 40px;
}
@media all and (max-width: 639px) {
  .blog-wrap {
    grid-template-columns: 1fr;
    padding: 0 25px;
  }
}
.blog-wrap li {
  position: relative;
}
.blog-wrap li a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 3;
  overflow: hidden;
  padding: 10px;
  background: #fefefe;
  border-radius: 10px;
}
.blog-wrap li a:hover .morebtn {
  border-bottom-color: #d4e078;
  color: #d4e078;
}
.blog-wrap li a:hover .blog-img img {
  transform: scale(1.2);
}
.blog-wrap li .blog-date {
  display: inline-block;
  color: #898989;
  font-size: 1.2rem;
}
@media all and (max-width: 639px) {
  .blog-wrap li .blog-date {
    font-size: 12px;
  }
}
.blog-wrap li .blog-img {
  overflow: hidden;
  position: relative;
  border-radius: 15px;
}
.blog-wrap li .blog-img img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.2s ease-in all;
  -o-object-position: center;
     object-position: center;
}
.blog-wrap li .blog-img figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  background: #bece4a;
  color: #fff;
  font-size: 12px;
  padding: 2px 8px;
  font-weight: 600;
  letter-spacing: 0;
}
.blog-wrap li .blog-detail {
  padding: 15px;
}
@media all and (max-width: 639px) {
  .blog-wrap li .blog-detail {
    padding: 10px;
  }
}
.blog-wrap li .blog-title {
  overflow: hidden;
  line-height: 1.5;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  color: #111;
  margin-top: 5px;
  padding-bottom: 20px;
}
@media all and (max-width: 639px) {
  .blog-wrap li .blog-title {
    font-size: 1.2rem;
  }
}
.blog-wrap li .blog-txt {
  font-size: 1.3rem;
  margin-top: 8px;
  letter-spacing: 0;
  margin-bottom: 15px;
  color: #222;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  /*IE対策*/
  line-height: 1.8em;
  max-height: 3.6em;
}
@media all and (max-width: 639px) {
  .blog-wrap li .blog-txt {
    font-size: 12px;
    margin-bottom: 25px;
  }
}
.blog-wrap li .morebtn {
  position: absolute;
  right: 10px;
  bottom: 10px;
  color: #bece4a;
  border-bottom: 1px solid #bece4a;
  font-size: 12px;
  font-weight: 700;
  padding: 0 10px;
  transition: 0.2s ease-in all;
  letter-spacing: 0;
}
@media all and (max-width: 639px) {
  .blog-wrap li .morebtn {
    font-size: 11px;
  }
}
.blog-wrap .pages {
  display: flex;
  justify-content: center;
  margin-top: 35px;
}
.blog-wrap .pages > div {
  font-size: 13px;
  line-height: 1.4;
  padding: 10px;
}
.blog-wrap .pages > div:last-of-type {
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1px solid #ccc;
}
.blog-wrap .pages > div a {
  display: block;
  font-weight: 600;
}

.blog-date2 {
  display: inline-block;
  color: #bece4a;
  margin-right: 10px;
}
.blog-date2:before {
  font-family: "Font Awesome 5 Free";
  content: "\f017";
  font-weight: 900;
  margin-right: 5px;
}

.blog-category {
  background: #c4c4c4;
  margin-right: 5px;
}

.content-list {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.content-list li {
  position: relative;
  width: 32%;
  margin-bottom: 70px;
}
.content-list li a {
  background: #fff;
  display: block;
  padding: 50px 50px 100px;
}
.content-list li a .title-box {
  margin-bottom: 20px;
}
.content-list li a .title-box .in-title {
  width: 100%;
  line-height: 3.5rem;
}
.content-list li a .title-box .in-title .eng {
  display: block;
  color: #9d9d9d;
}
.content-list li a .title-box .in-title .ja {
  font-size: 2.8rem;
  color: #463c2f;
}
.content-list li a .title-box .in-title .ja .mini {
  font-size: 1.5rem;
  display: block;
}
.content-list li a figure {
  margin-bottom: 20px;
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.content-list li a figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.2s ease-in;
}
.content-list li a .txt {
  color: #463c2f;
}
.content-list li a .in-btn {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffa64e;
  padding: 20px 30px;
  border-radius: 50px;
  text-align: center;
  color: #fff;
  width: 70%;
  max-width: 500px;
  transition: all 0.3s ease;
}
.content-list li a:hover figure img {
  transform: scale(1.05);
}
.content-list li a:hover .in-btn {
  background: #f68e25;
}
@media all and (max-width: 1200px) {
  .content-list li {
    width: 49%;
    margin-bottom: 100px;
  }
}
@media all and (max-width: 639px) {
  .content-list li {
    width: 100%;
  }
  .content-list li a {
    padding: 30px 30px 80px;
  }
  .content-list li a .title-box .in-title .ja {
    font-size: 1.5rem;
  }
}

.top_content01 {
  position: relative;
}
.top_content01::before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  background: #faf7f6;
  width: 83%;
  height: 90%;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.top_content01 .top_2_photo {
  display: block;
  width: 100%;
}
.top_content01 .txt-box {
  position: relative;
  padding: 100px 0;
}
.top_content01 .txt-box .top_2_illust {
  display: block;
  position: absolute;
  width: 190px;
  left: -20px;
  top: -100px;
}
.top_content01 .txt-box .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1100px;
  margin: auto;
}
.top_content01 .txt-box .inner .in_left {
  width: 19%;
}
.top_content01 .txt-box .inner .in_right {
  width: 63%;
  margin-left: 80px;
}
.top_content01 .txt-box .inner .in_right .main {
  color: #2b2b2b;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
}
@media all and (max-width: 639px) {
  .top_content01 {
    margin-top: 40px;
  }
  .top_content01 .txt-box {
    padding: 30px 0;
  }
  .top_content01 .txt-box .top_2_illust {
    width: 80px;
    top: -80px;
  }
  .top_content01 .txt-box .inner {
    display: block;
  }
  .top_content01 .txt-box .inner .in_left {
    width: 100%;
  }
  .top_content01 .txt-box .inner .in_right {
    width: 100%;
    margin: 40px 0 0;
  }
}

.mainvisual__list {
  position: absolute;
  width: 100%;
  max-width: 1150px;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  left: 0;
  right: 0;
  margin: 0 auto;
  opacity: 0.4;
}
.mainvisual__list .list__photo1 {
  position: absolute;
  width: 10%;
  top: 48%;
  left: -1%;
  animation: circle-anime 4s ease-out infinite;
  filter: drop-shadow(0 0 10px #dddddd);
}
.mainvisual__list .list__photo3 {
  left: 30%;
  top: 3%;
  width: 12%;
  position: absolute;
  animation: circle-anime 4s ease-out 1.5s infinite;
}
.mainvisual__list .list__photo5 {
  position: absolute;
  width: 10%;
  top: 62%;
  right: 23%;
  animation: circle-anime 4s ease-out 2.5s infinite;
  filter: drop-shadow(0 0 10px #dddddd);
}
.mainvisual__list .list__photo7 {
  position: absolute;
  width: 10%;
  top: 67%;
  right: -4%;
  animation: circle-anime 4s ease-out infinite;
  filter: drop-shadow(0 0 10px #dddddd);
}
.mainvisual__list .list__photo8 {
  position: absolute;
  width: 10%;
  top: 8%;
  right: -5%;
  animation: circle-anime 4s ease-out infinite;
}
.mainvisual__list .list__photo9 {
  position: absolute;
  width: 6%;
  top: 35%;
  right: 32%;
  animation: circle-anime 4s ease-out infinite;
  filter: drop-shadow(0 0 10px #dddddd);
}
.mainvisual__list .list__photo10 {
  position: absolute;
  width: 17%;
  top: 5%;
  left: -8%;
  animation: circle-anime 4s ease-out infinite;
}
@media all and (max-width: 1367px) {
  .mainvisual__list {
    display: block;
    bottom: 0;
    height: 100%;
  }
  .mainvisual__list .list__photo1 {
    width: 17%;
    top: 66%;
    left: -5%;
  }
  .mainvisual__list .list__photo3 {
    width: 11%;
    top: 44%;
    left: 46%;
  }
  .mainvisual__list .list__photo5 {
    width: 18%;
    top: 73%;
    right: 3%;
  }
  .mainvisual__list .list__photo8 {
    width: 17%;
    top: 6%;
    right: -6%;
  }
  .mainvisual__list .list__photo9 {
    width: 7%;
    top: 38%;
    right: 36%;
  }
  .mainvisual__list .list__photo10 {
    width: 35%;
    top: 3%;
    left: -12%;
  }
}
@media all and (max-width: 896px) {
  .mainvisual__list {
    display: block;
    bottom: 0;
    height: 100%;
  }
  .mainvisual__list .list__photo1 {
    width: 17%;
    top: 69%;
    left: -7%;
  }
  .mainvisual__list .list__photo3 {
    width: 17%;
    top: 43%;
    left: 38%;
  }
  .mainvisual__list .list__photo5 {
    width: 18%;
    top: 76%;
    right: 3%;
  }
  .mainvisual__list .list__photo8 {
    width: 17%;
    top: 4%;
    right: 0%;
  }
  .mainvisual__list .list__photo9 {
    width: 9%;
    top: 34%;
    right: 36%;
  }
  .mainvisual__list .list__photo10 {
    width: 32%;
    top: 2%;
    left: 0%;
  }
}
@media all and (max-width: 639px) {
  .mainvisual__list .list__photo1 {
    width: 17%;
    top: 65%;
    left: -8%;
  }
  .mainvisual__list .list__photo3 {
    width: 17%;
    top: 30%;
    left: 20%;
  }
  .mainvisual__list .list__photo5 {
    width: 18%;
    top: 71%;
    right: 3%;
  }
}
@media all and (max-width: 320px) {
  .mainvisual__list .list__photo1 {
    width: 21%;
    top: 60%;
    left: -4%;
  }
  .mainvisual__list .list__photo3 {
    width: 17%;
    top: 32%;
    left: 31%;
  }
  .mainvisual__list .list__photo5 {
    width: 18%;
    top: 75%;
    right: 3%;
  }
  .mainvisual__list .list__photo7 {
    width: 20%;
    top: 50%;
    right: 6%;
  }
  .mainvisual__list .list__photo8 {
    width: 22%;
    top: 11%;
    right: -3%;
  }
  .mainvisual__list .list__photo9 {
    width: 27%;
    top: 22%;
    right: 82%;
  }
  .mainvisual__list .list__photo10 {
    width: 42%;
    top: 1%;
    left: -16%;
  }
}

@keyframes circle-anime {
  0% {
    transform: translateY(0px);
  }
  25% {
    transform: translateY(10px);
  }
  50% {
    transform: translateY(0px);
  }
  75% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0px);
  }
}
.fig-01 {
  position: relative;
  max-width: 300px;
  margin: 0 auto 30px;
}

.column2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.column2.tp {
  align-items: flex-start;
}
.column2.btm {
  align-items: flex-end;
}
.column2 .child {
  width: 48%;
}
.column2 .child01 {
  width: 400px;
}
.column2 .child02 {
  width: calc(100% - 450px);
}
.column2 .child03 {
  width: 32%;
}
.column2 .child04 {
  width: 65%;
}
.column2 .child-txt {
  width: 50%;
  padding: 0 50px;
}
.column2 .child-img {
  width: 50%;
}
@media all and (max-width: 896px) {
  .column2 {
    flex-direction: column;
  }
  .column2 .child,
  .column2 .child03,
  .column2 .child04,
  .column2 .child-txt,
  .column2 .child-img {
    width: 100%;
  }
  .column2 .child.bm20,
  .column2 .child03.bm20,
  .column2 .child04.bm20,
  .column2 .child-txt.bm20,
  .column2 .child-img.bm20 {
    margin-bottom: 20px;
  }
  .column2 .child.bm10,
  .column2 .child03.bm10,
  .column2 .child04.bm10,
  .column2 .child-txt.bm10,
  .column2 .child-img.bm10 {
    margin-bottom: 10px;
  }
  .column2 .child.column2-img,
  .column2 .child03.column2-img,
  .column2 .child04.column2-img,
  .column2 .child-txt.column2-img,
  .column2 .child-img.column2-img {
    order: -1;
    margin-bottom: 30px;
  }
  .column2 .child.column2-img2,
  .column2 .child03.column2-img2,
  .column2 .child04.column2-img2,
  .column2 .child-txt.column2-img2,
  .column2 .child-img.column2-img2 {
    order: -1;
    margin-bottom: 20px;
  }
  .column2 .child01 {
    width: 100%;
    order: -1;
    margin-bottom: 20px;
  }
  .column2 .child01 img {
    width: 100%;
  }
  .column2 .child02 {
    padding: 0 5px;
    width: 100%;
  }
  .column2 .child-img {
    order: -1;
    margin-bottom: 30px;
  }
}

.column3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.column3.type1 {
  align-items: center;
}
.column3 .child {
  width: 32%;
}
@media all and (max-width: 896px) {
  .column3 {
    flex-direction: column;
  }
  .column3 .child {
    width: 100%;
  }
  .column3 .child.bm20 {
    margin-bottom: 20px;
  }
  .column3 .child.bm30 {
    margin-bottom: 30px;
  }
}

#side-box {
  display: flex;
  align-items: flex-start;
  position: relative;
  margin: 0 auto;
  padding: 0 60px;
}
@media all and (max-width: 1100px) {
  #side-box {
    padding: 0 40px;
  }
}
@media all and (max-width: 896px) {
  #side-box {
    flex-direction: column;
    justify-content: center;
    margin-bottom: 0;
    padding: 0;
  }
}
#side-box #side-menu {
  width: 200px;
  position: sticky;
  left: 0;
  top: 40px;
  margin-bottom: 120px;
}
@media all and (max-width: 896px) {
  #side-box #side-menu {
    position: unset;
    width: 98%;
    max-width: calc(100% - 20px);
    margin: 0 auto;
  }
}
#side-box #side-main {
  flex: 1;
  margin-left: 30px;
}
@media all and (max-width: 1100px) {
  #side-box #side-main {
    margin-left: 10px;
  }
}
@media all and (max-width: 896px) {
  #side-box #side-main {
    flex: 0 1 auto;
    margin: 0;
    width: 100%;
  }
}

.sidenavi_wrap {
  margin-top: 120px;
  background: #ffffff;
  padding: 0 10px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 0 15px -5px rgba(26, 17, 3, 0.1);
}
.sidenavi_wrap.is-fixed {
  margin-top: 40px;
}
@media all and (max-width: 896px) {
  .sidenavi_wrap {
    margin-top: 60px;
  }
}
.sidenavi_wrap .title-mini {
  font-size: 1.3rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  letter-spacing: 0.15em;
  background: #bece4a;
  color: #ffffff;
  padding: 8px;
  margin: 0 -10px;
  text-align: center;
}
.sidenavi_wrap .title-mini.type1 {
  background: #d4e078;
}
@media all and (max-width: 896px) {
  .sidenavi_wrap .title-mini {
    font-size: 1.2rem;
  }
}
@media all and (max-width: 639px) {
  .sidenavi_wrap .title-mini {
    font-size: 1.15rem;
  }
}
.sidenavi_wrap .side-navi {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
  padding: 10px 0;
}
@media all and (max-width: 896px) {
  .sidenavi_wrap .side-navi {
    font-size: 1.15rem;
  }
}
@media all and (max-width: 639px) {
  .sidenavi_wrap .side-navi {
    font-size: 1.1rem;
  }
}
.sidenavi_wrap .side-navi > li a {
  display: block;
  color: #1a1103;
  position: relative;
  padding: 5px;
  transition: all 0.4s ease;
}
.sidenavi_wrap .side-navi > li a i {
  color: #bece4a;
  margin-left: 5px;
}
.sidenavi_wrap .side-navi > li a:before {
  margin-right: 5px;
  color: #bece4a;
  font-family: "Font Awesome 5 Free";
  content: "\f0da";
  font-weight: 900;
  transition: all 0.4s ease;
}
.sidenavi_wrap .side-navi > li a:hover {
  background: rgb(251.59375, 250.23125, 247.50625);
}
.sidenavi_wrap .side-navi > li a:hover:before {
  opacity: 1;
}
.sidenavi_wrap .side-navi > li:not(:last-of-type) {
  border-bottom: 1px dashed #e4e2dc;
}

.title-box-02 {
  position: relative;
  padding: 170px;
  margin-bottom: 20px;
}
.title-box-02::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26848/facility_01.jpg) no-repeat center/cover;
  z-index: -2;
}
.title-box-02::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #004484;
  opacity: 0.6;
  z-index: -1;
}
.title-box-02.type1::before {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26848/facility_02.jpg) no-repeat center/cover;
}
.title-box-02.type2::before {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26848/facility_03.jpg) no-repeat center/cover;
}
.title-box-02.type3::before {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26848/facility_04.jpg) no-repeat center/cover;
}
.title-box-02 .deco-posi .title {
  position: absolute;
  bottom: 25px;
  left: 25px;
  color: #fff;
  font-size: 1.8rem;
  width: 100%;
  line-height: 4rem;
}
.title-box-02 .deco-posi .title .eng {
  display: block;
  font-size: 2rem;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 1;
}
.title-box-02 .deco-posi .title .ja {
  font-size: 4rem;
}
.title-box-02 .deco-posi .title .ja .mini {
  font-size: 2.1rem;
  display: block;
}
@media all and (max-width: 896px) {
  .title-box-02 .deco-posi .title .ja {
    font-size: 2rem;
  }
  .title-box-02 .deco-posi .title .ja .mini {
    font-size: 1.3rem;
  }
}
@media all and (max-width: 896px) {
  .title-box-02 .deco-posi .title .ja {
    font-size: 2rem;
  }
  .title-box-02 .deco-posi .title .ja .mini {
    font-size: 1.3rem;
  }
}

.content-box + .content-box {
  margin-top: 70px;
}

.ol-list {
  counter-reset: number;
  list-style: none;
  padding: 0;
}
.ol-list.sbc > li:before {
  background: #d4e078;
}
.ol-list.sbc > li .title18 {
  color: #d4e078;
}
.ol-list.type1 {
  display: flex;
  flex-wrap: wrap;
}
.ol-list.type1 > li {
  width: 48%;
}
.ol-list.type1 > li:not(:nth-child(2n)) {
  margin-right: 4%;
}
@media all and (max-width: 639px) {
  .ol-list.type1 > li {
    width: 100%;
    margin-right: 0 !important;
  }
  .ol-list.type1 > li:not(:last-child) {
    margin-bottom: 5px;
  }
}
.ol-list.type2 > li .title18 {
  margin-bottom: 5px;
  color: #8b9b9d;
}
.ol-list.type2 > li:before {
  background: #8b9b9d;
}
.ol-list.type3 > li:before {
  background: #c7b6e0;
}
.ol-list.type4 > li:before {
  background: #f6b26b;
}
.ol-list.type5 > li:before {
  background: #2a9e2f;
}
.ol-list.type6 > li:before {
  background: #f1c2c2;
}
.ol-list > li {
  position: relative;
  padding-left: 45px;
  line-height: 1.6;
}
.ol-list > li .title18 {
  margin-bottom: 5px;
  font-weight: 600;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
}
@media all and (max-width: 896px) {
  .ol-list > li .title18 {
    font-size: 1.5rem;
  }
}
@media all and (max-width: 639px) {
  .ol-list > li .title18 {
    font-size: 1.35rem;
    letter-spacing: 0.15em;
  }
}
.ol-list > li:not(:last-child) {
  margin-bottom: 20px;
}
.ol-list > li:before {
  counter-increment: number;
  content: counter(number);
  background: #bece4a;
  display: inline-block;
  width: 1.7em;
  height: 1.7em;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1.7;
  color: #ffffff;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
@media all and (max-width: 639px) {
  .ol-list > li {
    padding-left: 35px;
  }
  .ol-list > li:not(:last-child) {
    margin-bottom: 15px;
  }
  .ol-list > li:before {
    font-size: 1.3rem;
  }
}

.daihyo_name {
  max-width: 130px;
}

.top_4_item {
  margin: auto;
  max-width: 988px;
  width: 96%;
}
.top_4_item .in {
  background: #d4e078;
  border-radius: 10px;
  padding: 40px;
  position: relative;
}
.top_4_item img {
  display: block;
  width: 100%;
}
.top_4_item img.top_4_illust {
  position: absolute;
  width: 147px;
  top: -40px;
  right: -30px;
}
.top_4_item .inner {
  display: table;
  width: 100%;
  table-layout: fixed;
}
.top_4_item .inner .left {
  width: 30%;
  float: left;
}
.top_4_item .inner .right {
  width: 66%;
  float: left;
  margin-left: 4%;
  color: #fff;
}
.top_4_item .top_4_item_text {
  letter-spacing: 0;
  font-weight: 500;
  color: #fff;
  margin-top: 30px;
}
@media all and (max-width: 639px) {
  .top_4_item {
    padding: 40px 20px;
  }
  .top_4_item .inner .left {
    width: 100%;
    margin-bottom: 10px;
  }
  .top_4_item .inner .right {
    margin-left: 0;
    width: 100%;
  }
}

.history {
  position: relative;
}
.history:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 20px;
  height: 100%;
  background-image: linear-gradient(to top, #bece4a, #bece4a, #faf8f4);
  opacity: 0.4;
  border-radius: 20px;
}
.history .history-inner {
  position: relative;
  padding-left: 60px;
}
.history .history-inner:before {
  position: absolute;
  content: "";
  left: 12px;
  top: 15px;
  width: 40px;
  height: 1px;
  background: rgba(26, 17, 3, 0.7);
}
.history .history-inner:after {
  position: absolute;
  content: "";
  left: 6px;
  top: 10px;
  width: 10px;
  height: 10px;
  background: #bece4a;
  border-radius: 50%;
}
@media all and (max-width: 639px) {
  .history .history-inner {
    padding-left: 40px;
  }
  .history .history-inner:before {
    width: 22px;
  }
}
.history .history-inner:not(:last-of-type) {
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(170, 170, 170, 0.5);
}
.history .history-inner dt {
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #d4e078;
}
@media all and (max-width: 639px) {
  .history .history-inner dt {
    font-size: 1.2em;
  }
  .history .history-inner dt span {
    font-size: 1.1rem;
  }
}
.history .history-inner dd {
  padding: 6px 10px;
}

.rinen {
  margin: 0 auto 30px;
}
.rinen.pc {
  display: block;
}
.rinen.sp {
  display: none;
}
@media all and (max-width: 896px) {
  .rinen.pc {
    display: none;
  }
  .rinen.sp {
    display: block;
  }
}

.greet-box {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  padding: 120px 0;
  padding: 40px 0;
}
.greet-box .left {
  width: 45%;
}
.greet-box .right {
  position: relative;
  width: 45%;
}
.greet-box .right .img-01,
.greet-box .right .img-02,
.greet-box .right .img-03 {
  position: absolute;
  z-index: -1;
}
.greet-box .right .img-01 img,
.greet-box .right .img-02 img,
.greet-box .right .img-03 img {
  border-radius: 50px;
  -o-object-fit: cover;
     object-fit: cover;
}
.greet-box .right .img-01 {
  top: -200px;
  right: 0;
}
.greet-box .right .img-01 img {
  width: 300px;
}
.greet-box .right .img-02 {
  top: 50%;
  transform: translateY(-50%);
  right: 110px;
}
.greet-box .right .img-02 img {
  width: 600px;
}
.greet-box .right .img-03 {
  bottom: -110px;
  right: 10px;
}
.greet-box .right .img-03 img {
  width: 210px;
  height: 180px;
}
@media all and (max-width: 1100px) {
  .greet-box {
    padding: 110px 0;
  }
  .greet-box .right .img-01 {
    top: -20px;
  }
  .greet-box .right .img-01 img {
    width: 210px;
  }
  .greet-box .right .img-02 {
    right: 45px;
  }
  .greet-box .right .img-02 img {
    width: 390px;
  }
  .greet-box .right .img-03 {
    bottom: -20px;
  }
  .greet-box .right .img-03 img {
    width: 170px;
    height: 170px;
  }
}
@media all and (max-width: 896px) {
  .greet-box {
    padding: 50px 0 0;
    flex-direction: column;
  }
  .greet-box .left {
    width: 95%;
    margin-bottom: 60px;
  }
  .greet-box .right {
    width: 95%;
  }
  .greet-box .right .img-01 {
    right: unset;
    left: 65%;
  }
  .greet-box .right .img-02 {
    left: 13%;
    right: unset;
  }
  .greet-box .right .img-02 img {
    width: 445px;
  }
  .greet-box .right .img-03 {
    bottom: -50px;
    right: 100px;
  }
  .greet-box .right .img-03 img {
    width: 170px;
    height: 170px;
  }
}
@media all and (max-width: 639px) {
  .greet-box .left {
    margin-bottom: 0;
  }
  .greet-box .right {
    height: 500px;
  }
  .greet-box .right .img-01 {
    top: 20px;
    right: 0;
    left: unset;
  }
  .greet-box .right .img-02 {
    left: 0;
    right: 20%;
  }
  .greet-box .right .img-02 img {
    width: 100%;
  }
  .greet-box .right .img-03 {
    bottom: 35px;
    right: 0;
  }
  .greet-box .right .img-03 img {
    width: 130px;
    height: 130px;
  }
}

.menu_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  max-width: 1150px;
  margin: 0 auto;
  gap: 30px 20px;
}
.menu_list > li {
  width: 31.5%;
}
.menu_list > li .menu_inner .menu_txt a {
  position: relative;
  display: block;
  padding: 2rem 2rem 4.5rem;
  border-radius: 1.5rem;
  background-color: #fff;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0s;
  overflow: hidden;
  color: #3e3127;
}
.menu_list > li .menu_inner .menu_txt a .img {
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
}
.menu_list > li .menu_inner .menu_txt a .img img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  transition: all 0.5s ease;
}
.menu_list > li .menu_inner .menu_txt a .ttl {
  color: rgb(141.5240963855, 155.3313253012, 35.6686746988);
  color: #3e3127;
}
.menu_list > li .menu_inner .menu_txt a .txt {
  margin-bottom: 20px;
}
.menu_list > li .menu_inner .menu_txt a .btn {
  position: absolute;
  bottom: -4.5rem;
  right: -4.5rem;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  background-color: #a7d3f3;
}
.menu_list > li .menu_inner .menu_txt a .btn i {
  color: #fff;
  position: absolute;
  top: 2rem;
  left: 2rem;
  fill: #fff;
  width: 1rem;
  aspect-ratio: 1/1;
}
.menu_list > li .menu_inner .menu_txt a:hover {
  box-shadow: 1em 0rem 2rem rgba(0, 0, 0, 0.05);
}
.menu_list > li .menu_inner .menu_txt a:hover .btn i {
  animation: card-fade 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0s;
}
.menu_list > li .menu_inner .menu_txt a:hover .img img {
  transform: scale(1.1);
}
.menu_list > li .menu_deco {
  width: 40%;
  text-align: left;
}
.menu_list > li:nth-child(2) .menu_inner .menu_txt a .btn {
  background: #d4e077;
}
.menu_list > li:nth-child(3) .menu_inner .menu_txt a .btn {
  background: #c7b6e0;
}
.menu_list > li:nth-child(4) .menu_inner .menu_txt a .btn {
  background: #f6b26b;
}
.menu_list > li:nth-child(5) .menu_inner .menu_txt a .btn {
  background: #2a9e2f;
}
.menu_list > li:nth-child(6) .menu_inner .menu_txt a .btn {
  background: #f1c2c2;
}
@media all and (max-width: 1367px) {
  .menu_list > li .menu_inner .menu_txt a .img img {
    height: 160px;
  }
}
@media all and (max-width: 896px) {
  .menu_list > li {
    width: 48%;
  }
}
@media all and (max-width: 639px) {
  .menu_list {
    row-gap: 20px;
  }
  .menu_list > li {
    width: 100%;
  }
  .menu_list > li .menu_inner .menu_txt a {
    padding: 1rem 1rem 2.5rem;
  }
  .menu_list > li .menu_inner .menu_txt a .img {
    border-radius: 10px;
  }
  .menu_list > li .menu_inner .menu_txt a .img img {
    height: 180px;
    border-radius: 10px;
  }
}

@keyframes card-fade {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateX(100%);
    opacity: 0;
  }
  50.1% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.listFlow.type1 li:before {
  border-top: 12px solid #a7d3f3 !important;
}
.listFlow.type1 dl dt {
  border: 1px solid #a7d3f3;
  background: #a7d3f3;
}
.listFlow.type2 li:before {
  border-top: 12px solid #d4e077 !important;
}
.listFlow.type2 dl dt {
  border: 1px solid #d4e077;
  background: #d4e077;
}
.listFlow.type3 li:before {
  border-top: 12px solid #c7b6e0 !important;
}
.listFlow.type3 dl dt {
  border: 1px solid #c7b6e0;
  background: #c7b6e0;
}
.listFlow.type4 li:before {
  border-top: 12px solid #f6b26b !important;
}
.listFlow.type4 dl dt {
  border: 1px solid #f6b26b;
  background: #f6b26b;
}
.listFlow.type5 li:before {
  border-top: 12px solid #2a9e2f !important;
}
.listFlow.type5 dl dt {
  border: 1px solid #2a9e2f;
  background: #2a9e2f;
}
.listFlow.type6 li:before {
  border-top: 12px solid #f1c2c2 !important;
}
.listFlow.type6 dl dt {
  border: 1px solid #f1c2c2;
  background: #f1c2c2;
}
.listFlow li {
  position: relative;
}
.listFlow li:not(:last-child) {
  margin-bottom: 12px;
  padding-bottom: 12px;
}
.listFlow li:not(:last-child):before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 40px;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid #bece4a;
}
.listFlow dl {
  display: table;
  width: 100%;
}
.listFlow dl dt {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  display: table-cell;
  padding: 10px 0;
  border: 1px solid #bece4a;
  background: #bece4a;
  width: 100px;
  color: #ffffff;
  text-align: center;
  vertical-align: middle;
  line-height: 1.3;
}
@media all and (max-width: 896px) {
  .listFlow dl dt {
    font-size: 1.15rem;
  }
}
@media all and (max-width: 639px) {
  .listFlow dl dt {
    font-size: 1.1rem;
  }
}
.listFlow dl dt .num {
  display: block;
  font-size: 2.8rem;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
.listFlow dl dd {
  display: table-cell;
  padding: 30px 25px;
  vertical-align: middle;
  background: #ffffff;
  border: 1px solid #e4e2dc;
  box-sizing: border-box;
}
@media all and (max-width: 896px) {
  .listFlow dl dt .num {
    font-size: 2.2rem;
  }
  .listFlow dl dd {
    padding: 25px 20px;
  }
}
@media all and (max-width: 639px) {
  .listFlow.type1 li:before {
    border-top: 6px solid #d4e078 !important;
  }
  .listFlow li:not(:last-child) {
    margin-bottom: 6px;
    padding-bottom: 6px;
  }
  .listFlow li:not(:last-child):before {
    left: 24px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #bece4a;
  }
  .listFlow dl dt {
    width: 60px;
  }
  .listFlow dl dt .num {
    font-size: 1.8rem;
  }
  .listFlow dl dd {
    padding: 20px 15px;
  }
}

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

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

.chosei3 {
  margin-bottom: 40px;
}
@media all and (max-width: 896px) {
  .chosei3 {
    margin-bottom: 30px;
  }
}

.chosei4 {
  margin-bottom: 25px;
}
@media all and (max-width: 896px) {
  .chosei4 {
    margin-bottom: 15px;
  }
}

@keyframes anim_para1 {
  0% {
    transform: translateY(0);
  }
  33.33333% {
    transform: translateY(-50px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes anim_para2 {
  0% {
    transform: translateY(0);
  }
  66.66666% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes anim_para3 {
  0% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-50px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes anim_para4 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-50px);
  }
  100% {
    transform: translateY(0);
  }
}
.bg_para1,
.bg_para2 {
  position: fixed;
  z-index: -2;
  transform-origin: 50% 50%;
  border-radius: 50%;
  display: none;
}

.bg_para1 {
  width: 511px;
  height: 511px;
  background-color: #a7d3f3;
  top: 35%;
  animation: anim_para2 5.5s ease-in-out infinite;
  right: -280px;
  opacity: 0.9;
}
.bg_para1.type2 {
  background-color: #bbcf1d;
}
.bg_para1.type3 {
  background-color: #c7b6e0;
}
.bg_para1.type4 {
  background-color: #f6b26b;
}
.bg_para1.type5 {
  background-color: #2a9e2f;
}
.bg_para1.type6 {
  background-color: #f1c2c2;
}
@media screen and (max-width: 897px) {
  .bg_para1 {
    width: 255px;
    height: 255px;
    right: -134px;
  }
}
@media screen and (max-width: 480px) {
  .bg_para1 {
    width: 158px;
    height: 158px;
    right: -74px;
  }
}

.bg_para2 {
  width: 348px;
  height: 348px;
  background-color: #d4e078;
  top: 37%;
  animation: anim_para2 4.5s ease-in-out infinite;
  left: -100px;
  opacity: 0.4;
}
.bg_para2.type2 {
  background-color: #a7d3f3;
}
.bg_para2.type3 {
  background-color: #f6b26b;
}
.bg_para2.type4 {
  background-color: #a7d3f3;
}
.bg_para2.type5 {
  background-color: #c7b6e0;
}
.bg_para2.type6 {
  background-color: #bece4a;
}
@media screen and (max-width: 897px) {
  .bg_para2 {
    width: 228px;
    height: 228px;
    left: -94px;
  }
}
@media screen and (max-width: 480px) {
  .bg_para2 {
    width: 178px;
    height: 178px;
    left: -74px;
    top: 76%;
  }
}

.watercolor_line {
  position: relative;
}
.watercolor_line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 35px;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26848/watercolor_line.png) no-repeat top/cover;
}
.watercolor_line::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 100%;
  height: 35px;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26848/watercolor_line.png) no-repeat top/cover;
}
.watercolor_line.type1::after {
  display: none;
}