#home {
  /* ---------------------------------------

    /index.html

  --------------------------------------- */
}

#home .cont-cover {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: space-between;
      -ms-flex-align: space-between;
          align-items: space-between;
  gap: 3vw;
  padding: 80px 0 0;
}

@media (max-width: 767px) {
  #home .cont-cover {
    display: block;
  }
}

#home .col-left {
  width: 70%;
}

@media (max-width: 767px) {
  #home .col-left {
    width: 100%;
  }
}

#home .col-left .mv-cover {
  padding-bottom: 150px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 3vw;
}

@media (max-width: 1240px) {
  #home .col-left .mv-cover {
    display: block;
  }
}

@media (max-width: 767px) {
  #home .col-left .mv-cover {
    padding-bottom: 0px;
  }
}

#home .col-left .mv-lead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
}

@media (max-width: 1240px) {
  #home .col-left .mv-lead {
    gap: 8px;
  }
}

@media (max-width: 767px) {
  #home .col-left .mv-lead {
    margin: 50px 0 30px;
  }
}

#home .col-left .mv-lead .lead {
  margin: 0;
  position: relative;
  width: 15px;
  height: 100%;
}

@media (max-width: 1240px) {
  #home .col-left .mv-lead .lead {
    width: 50%;
    text-align: center;
    margin-bottom: 20px;
  }
}

#home .col-left .mv-lead .lead::before, #home .col-left .mv-lead .lead::after {
  display: block;
  content: "";
  width: 22px;
  height: 90px;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
}

@media (max-width: 1240px) {
  #home .col-left .mv-lead .lead::before, #home .col-left .mv-lead .lead::after {
    width: 20px;
    height: 45px;
  }
}

#home .col-left .mv-lead .lead::before {
  background-image: url("/assets/img/home/bar01.svg");
  left: -35px;
}

@media (max-width: 1240px) {
  #home .col-left .mv-lead .lead::before {
    background-image: url("/assets/img/home/bar01_sp.svg");
  }
}

#home .col-left .mv-lead .lead::after {
  background-image: url("/assets/img/home/bar02.svg");
  right: -35px;
}

@media (max-width: 1240px) {
  #home .col-left .mv-lead .lead::after {
    background-image: url("/assets/img/home/bar02_sp.svg");
  }
}

#home .col-left .mv-lead .turtle {
  width: clamp(42px, 7vw, 85px);
  margin: 0 auto;
}

@media (max-width: 1240px) {
  #home .col-left .mv-lead .turtle {
    width: 50px;
  }
}

#home .col-left .mv-lead .turtle img {
  -webkit-animation: turtle-float 3s ease-in-out infinite;
          animation: turtle-float 3s ease-in-out infinite;
}

@-webkit-keyframes turtle-float {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes turtle-float {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

#home .col-left .mv-slide {
  width: 80%;
  position: relative;
  z-index: 111;
}

@media (max-width: 1240px) {
  #home .col-left .mv-slide {
    width: 100%;
    margin-bottom: 60px;
  }
}

@media (max-width: 767px) {
  #home .col-left .mv-slide {
    width: 90%;
    margin: auto;
  }
}

#home .col-left .mv-slide img.slide-img {
  border-radius: 5vw;
}

@media (max-width: 767px) {
  #home .col-left .mv-slide img.slide-img {
    width: 100%;
    height: 310px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

#home .col-left .mv-slide .mv-illust {
  width: 15vw;
  position: absolute;
  bottom: -5vw;
  right: -5vw;
  z-index: 222;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 2s ease;
  transition: opacity 2s ease;
}

#home .col-left .mv-slide .mv-illust.is-active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1240px) {
  #home .col-left .mv-slide .mv-illust {
    bottom: -3vw;
    right: -3vw;
  }
}

@media (max-width: 767px) {
  #home .col-left .mv-slide .mv-illust {
    width: 100px;
    height: 179px;
    bottom: -4vw;
    right: -6vw;
  }
}

@media (max-width: 767px) {
  #home .col-left .mv-slide .mv-illust img.illsut-img {
    -o-object-fit: contain;
       object-fit: contain;
  }
}

#home .col-left .mv-slide .mv-illust.num02 {
  width: 24vw;
}

@media (max-width: 767px) {
  #home .col-left .mv-slide .mv-illust.num02 {
    width: 180px;
    height: 179px;
    bottom: -10vw;
    right: -6vw;
  }
}

#home .col-left .mv-slide .mv-illust.num03 {
  width: 13vw;
}

@media (max-width: 767px) {
  #home .col-left .mv-slide .mv-illust.num03 {
    width: 90px;
    height: 179px;
    bottom: -8vw;
    right: -6vw;
  }
}

#home .col-left .mv-slide .slide-item {
  border-radius: 70px;
  overflow: hidden;
}

#home .sec-intro {
  padding-bottom: 150px;
}

@media (max-width: 767px) {
  #home .sec-intro {
    padding-bottom: 0px;
  }
}

#home .sec-intro .intro-txt {
  position: relative;
  text-align: center;
  padding: 0 0 200px;
}

@media (max-width: 767px) {
  #home .sec-intro .intro-txt {
    padding: 0 10px;
  }
}

#home .sec-intro .intro-txt .txt {
  width: 500px;
  height: 100%;
  margin: 0 auto;
}

@media (max-width: 767px) {
  #home .sec-intro .intro-txt .txt {
    width: 100%;
    font-size: 14px;
    line-height: 2.5;
  }
}

#home .sec-intro .intro-txt .intro-illust {
  display: block;
  position: absolute;
  display: none;
}

@media (max-width: 767px) {
  #home .sec-intro .intro-txt .intro-illust {
    width: 100%;
    height: auto;
    position: relative;
  }
}

#home .sec-intro .intro-txt .intro-illust.is-active {
  display: block;
}

#home .sec-intro .intro-txt .intro-illust.winter.num01, #home .sec-intro .intro-txt .intro-illust.spring.num01, #home .sec-intro .intro-txt .intro-illust.summer.num01, #home .sec-intro .intro-txt .intro-illust.fall.num01 {
  width: 30%;
  height: 141px;
  bottom: 50px;
  right: 15%;
}

@media (max-width: 767px) {
  #home .sec-intro .intro-txt .intro-illust.winter.num01, #home .sec-intro .intro-txt .intro-illust.spring.num01, #home .sec-intro .intro-txt .intro-illust.summer.num01, #home .sec-intro .intro-txt .intro-illust.fall.num01 {
    width: 70%;
    height: auto;
    margin: 0 auto 30px;
    bottom: 0;
    right: 0;
  }
}

#home .sec-intro .intro-txt .intro-illust.winter.num02, #home .sec-intro .intro-txt .intro-illust.spring.num02, #home .sec-intro .intro-txt .intro-illust.summer.num02, #home .sec-intro .intro-txt .intro-illust.fall.num02 {
  width: 60%;
  height: 161px;
  bottom: 0;
  left: 0;
}

@media (max-width: 767px) {
  #home .sec-intro .intro-txt .intro-illust.winter.num02, #home .sec-intro .intro-txt .intro-illust.spring.num02, #home .sec-intro .intro-txt .intro-illust.summer.num02, #home .sec-intro .intro-txt .intro-illust.fall.num02 {
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
}

#home .sec-service {
  padding: 250px 0 150px;
}

@media (max-width: 767px) {
  #home .sec-service {
    padding: 150px 0 150px;
  }
}

#home .sec-service .sec-ttl {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

@media (max-width: 767px) {
  #home .sec-service .sec-ttl {
    font-size: 18px;
    font-weight: 700 !important;
  }
}

#home .sec-service .service-photo {
  width: 85%;
  height: 250px;
  margin: 0 auto;
  border-radius: 70px;
  margin-bottom: 50px;
  overflow: hidden;
}

@media (max-width: 767px) {
  #home .sec-service .service-photo {
    border-radius: 70px;
  }
}

#home .sec-service .service-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}

@media (max-width: 767px) {
  #home .sec-service .service-photo img {
    height: 200px;
  }
}

#home .sec-service .service-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 60px;
}

@media (max-width: 767px) {
  #home .sec-service .service-list {
    display: block;
  }
}

#home .sec-service .service-list .service-item {
  width: 40%;
}

@media (max-width: 767px) {
  #home .sec-service .service-list .service-item {
    width: 80%;
    margin: 0 auto 30px;
  }
  #home .sec-service .service-list .service-item:last-child {
    margin-bottom: 0;
  }
}

#home .sec-service .service-list .service-link:hover .service-illust {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

#home .sec-service .service-list .service-illust {
  margin-bottom: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#home .sec-service .service-list .service-ttl {
  font-size: clamp(16px, 2vw, 23px);
  font-weight: 700;
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  #home .sec-service .service-list .service-ttl {
    padding: 10px;
    border-radius: 50px;
  }
}

#home .sec-service .service-list .service-ttl span {
  display: block;
  font-size: clamp(10px, 1vw, 16px);
  margin-top: 5px;
}

#home .sec-service .service-list .service-ttl.num01 {
  padding-bottom: 24px;
  border-bottom: 5px solid #da9259;
}

@media (max-width: 767px) {
  #home .sec-service .service-list .service-ttl.num01 {
    padding-bottom: 18px;
    border: 5px solid #da9259;
    position: relative;
  }
  #home .sec-service .service-list .service-ttl.num01::before {
    display: block;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 13px solid #da9259;
    border-right: 0;
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

#home .sec-service .service-list .service-ttl.num02 {
  border-bottom: 5px solid #46af82;
  position: relative;
}

@media (max-width: 767px) {
  #home .sec-service .service-list .service-ttl.num02 {
    border: 5px solid #46af82;
  }
  #home .sec-service .service-list .service-ttl.num02::before {
    display: block;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 13px solid #46af82;
    border-right: 0;
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

#home .sec-service .service-list .service-desc {
  font-size: 16px;
}

#home .sec-recruit {
  padding-bottom: 150px;
}

@media (max-width: 767px) {
  #home .sec-recruit {
    padding-bottom: 80px;
  }
}

#home .sec-recruit .sec-ttl {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

@media (max-width: 767px) {
  #home .sec-recruit .sec-ttl {
    font-size: 18px;
  }
}

#home .sec-recruit .recruit-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 20px;
  position: relative;
}

@media (max-width: 767px) {
  #home .sec-recruit .recruit-wrap {
    display: block;
  }
}

#home .sec-recruit .recruit-wrap.is-reading-hover .recruit-turtle {
  -webkit-transform: translateX(-50%) scaleX(-1);
          transform: translateX(-50%) scaleX(-1);
}

#home .sec-recruit .recruit-btn {
  width: 40%;
}

@media (max-width: 767px) {
  #home .sec-recruit .recruit-btn {
    width: 80%;
    margin: 0 auto 30px;
  }
}

@media (max-width: 767px) {
  #home .sec-recruit .recruit-btn.entry .recruit-txt {
    font-size: 12px;
    padding: 13px 0;
  }
}

#home .sec-recruit .recruit-btn.entry .recruit-txt::before {
  display: block;
  content: "";
  width: 57px;
  height: 35px;
  background-image: url("/assets/img/home/recruit_bar01.svg");
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
}

@media (max-width: 767px) {
  #home .sec-recruit .recruit-btn.entry .recruit-txt::before {
    top: 0;
    right: 0;
    height: 26px;
  }
}

#home .sec-recruit .recruit-btn.entry .recruit-txt::after {
  display: block;
  content: "";
  width: 57px;
  height: 35px;
  background-image: url("/assets/img/home/recruit_bar02.svg");
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  right: 0;
}

@media (max-width: 767px) {
  #home .sec-recruit .recruit-btn.entry .recruit-txt::after {
    top: auto;
    bottom: 0;
    right: 0;
    height: 26px;
  }
}

#home .sec-recruit .recruit-btn.reading .recruit-txt {
  padding: 45px 0;
}

@media (max-width: 767px) {
  #home .sec-recruit .recruit-btn.reading .recruit-txt {
    font-size: 12px;
    padding: 20px 0;
  }
}

#home .sec-recruit .recruit-btn.reading .recruit-txt::before {
  display: block;
  content: "";
  width: 57px;
  height: 35px;
  background-image: url("/assets/img/home/recruit_bar01.svg");
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

@media (max-width: 767px) {
  #home .sec-recruit .recruit-btn.reading .recruit-txt::before {
    top: 0;
    right: 0;
    height: 26px;
  }
}

#home .sec-recruit .recruit-btn.reading .recruit-txt::after {
  display: block;
  content: "";
  width: 57px;
  height: 35px;
  background-image: url("/assets/img/home/recruit_bar02.svg");
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

@media (max-width: 767px) {
  #home .sec-recruit .recruit-btn.reading .recruit-txt::after {
    top: auto;
    bottom: 0;
    right: 0;
    height: 26px;
  }
}

#home .sec-recruit .recruit-btn:hover .recruit-txt {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

#home .sec-recruit .recruit-turtle {
  width: 15%;
  position: absolute;
  top: 10%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

@media (max-width: 767px) {
  #home .sec-recruit .recruit-turtle01 {
    display: block;
    width: 60px;
    position: absolute;
    top: 20px;
    right: -50px;
  }
}

@media (max-width: 767px) {
  #home .sec-recruit .recruit-turtle02 {
    display: block;
    width: 60px;
    position: absolute;
    top: 20px;
    left: -50px;
    -webkit-transform: scale(-1, 1);
            transform: scale(-1, 1);
  }
}

#home .sec-recruit .recruit-txt {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(6px);
          transform: translateY(6px);
  -webkit-transition: 0.25s;
  transition: 0.25s;
  pointer-events: none;
  width: 80%;
  font-size: clamp(11px, 1vw, 20px);
  font-weight: 500;
  text-align: center;
  position: relative;
  margin: 0 auto 20px;
  padding: 30px 0;
}

@media (max-width: 767px) {
  #home .sec-recruit .recruit-txt {
    width: 95%;
    opacity: 1;
    visibility: visible;
    font-size: 14px;
    padding: 0;
  }
}

#home .sec-recruit .recruit-link {
  display: block;
  background-color: #dec6ad;
  font-size: 40px;
  color: #fff;
  padding: 30px 20px 40px;
  border-radius: 80px;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 1240px) {
  #home .sec-recruit .recruit-link {
    font-size: clamp(20px, 1vw, 40px);
    padding: 20px 20px 30px;
  }
}

@media (max-width: 1240px) {
  #home .sec-recruit .recruit-link {
    font-size: 30px;
  }
}

#home .sec-recruit .recruit-link:hover {
  background-color: #eeaeaf;
}

#home .sec-info {
  padding-bottom: 150px;
}

@media (max-width: 767px) {
  #home .sec-info {
    padding-bottom: 80px;
  }
}

#home .sec-info .sec-ttl {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  border-bottom: 2px solid #dec6ad;
  padding: 30px 0 35px;
}

@media (max-width: 1240px) {
  #home .sec-info .sec-ttl {
    padding: 30px 0 35px;
  }
}

@media (max-width: 767px) {
  #home .sec-info .sec-ttl {
    font-size: 18px;
  }
}

#home .sec-info .sec-ttl::before {
  display: block;
  content: "";
  width: 68px;
  height: 68px;
  background-image: url("/assets/img/home/info_icon.svg");
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 1240px) {
  #home .sec-info .sec-ttl::before {
    width: 48px;
    height: 48px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

#home .sec-info .info-list {
  padding-bottom: 30px;
  border-bottom: 2px solid #dec6ad;
}

#home .sec-info .info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 30px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
}

#home .sec-info .info-item:last-child {
  margin-bottom: 0;
}

#home .sec-info .txt {
  text-decoration: none;
}

#home .sec-access {
  padding-bottom: 150px;
}

@media (max-width: 767px) {
  #home .sec-access {
    padding-bottom: 80px;
  }
}

#home .sec-access .sec-ttl {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  border-bottom: 2px solid #dec6ad;
  padding: 30px 0 35px;
}

@media (max-width: 1240px) {
  #home .sec-access .sec-ttl {
    padding: 30px 0 35px;
  }
}

@media (max-width: 767px) {
  #home .sec-access .sec-ttl {
    font-size: 18px;
  }
}

#home .sec-access .sec-ttl::before {
  display: block;
  content: "";
  width: 68px;
  height: 68px;
  background-image: url("/assets/img/home/map_icon.svg");
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 1240px) {
  #home .sec-access .sec-ttl::before {
    width: 48px;
    height: 48px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

#home .sec-access .access-txt {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  margin: 0 0 50px;
}

#home .sec-access .access-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 40px;
}

@media (max-width: 767px) {
  #home .sec-access .access-block {
    display: block;
    border-bottom: 2px solid #dec6ad;
    padding: 0 0 30px;
  }
}

#home .sec-access .map {
  position: relative;
  width: 50%;
  padding-top: 30.25%;
  height: 0;
}

@media (max-width: 767px) {
  #home .sec-access .map {
    width: 100%;
    padding-top: 50.25%;
    margin-bottom: 30px;
  }
}

#home .sec-access .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#home .sec-access .address {
  font-size: 18px;
  font-weight: 500;
}

#home .sec-event {
  padding-bottom: 150px;
}

@media (max-width: 767px) {
  #home .sec-event {
    padding-bottom: 0;
  }
}

#home .sec-event .sec-ttl {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

@media (max-width: 767px) {
  #home .sec-event .sec-ttl {
    font-size: 18px;
  }
}

#home .sec-event .event-item {
  margin: 0 20px;
}

#home .topft-turtle {
  width: 15%;
  margin: 30px auto;
}

#home .col-right {
  width: 30%;
  position: -webkit-sticky;
  position: sticky;
  top: 150px;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

@media (max-width: 1240px) {
  #home .col-right {
    width: 100%;
    top: 0;
    position: relative;
  }
}

@media (max-width: 767px) {
  #home .col-right {
    padding-bottom: 100px;
  }
}

#home .col-right .rightnav-list {
  width: 100%;
  margin: 0 auto 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(10px, 2vw, 20px);
}

@media (max-width: 1240px) {
  #home .col-right .rightnav-list {
    margin: 0 auto 30px;
  }
}

@media (max-width: 767px) {
  #home .col-right .rightnav-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 10px;
  }
}

#home .col-right .rightnav-list .rightnav-item {
  width: 80%;
}

@media (max-width: 1240px) {
  #home .col-right .rightnav-list .rightnav-item {
    width: 100%;
  }
}

@media (max-width: 767px) {
  #home .col-right .rightnav-list .rightnav-item {
    width: 30%;
  }
}

#home .col-right .rightnav-list .rightnav-item .rightnav-link {
  white-space: normal;
  display: block;
  background-color: #fff;
  width: 100%;
  padding: 20px 10px;
  text-align: center;
  font-size: clamp(12px, 1.5vw, 20px);
  font-weight: 600;
  letter-spacing: 0.1em;
  border-radius: 100px;
  border: 5px solid #dec6ad;
  -webkit-box-shadow: 3px 5px 0px 0px rgba(80, 80, 80, 0.3);
          box-shadow: 3px 5px 0px 0px rgba(80, 80, 80, 0.3);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 1240px) {
  #home .col-right .rightnav-list .rightnav-item .rightnav-link {
    padding: 25px 10px;
  }
}

@media (max-width: 767px) {
  #home .col-right .rightnav-list .rightnav-item .rightnav-link {
    font-size: 10px;
    padding: 5px 10px;
    border: 2px solid #dec6ad;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    min-height: 46px;
  }
}

#home .col-right .rightnav-list .rightnav-item .rightnav-link:hover {
  background-color: #eeaeaf;
  border: 5px solid #eeaeaf;
  color: #fff;
}

#home .col-right .rightsubnav-list {
  width: 100%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

@media (max-width: 767px) {
  #home .col-right .rightsubnav-list {
    display: none;
  }
}

#home .col-right .rightsubnav-item {
  width: 60%;
}

#home .col-right .rightsubnav-link {
  display: block;
  background-color: #dec6ad;
  padding: 10px 7px;
  text-align: center;
  border-radius: 100px;
  font-size: clamp(10px, 1.5vw, 18px);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#home .col-right .rightsubnav-link:hover {
  background-color: #fff;
  color: #dec6ad;
}

#home .col-right .rightsns-list {
  width: 100%;
  margin: 20px auto 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 767px) {
  #home .col-right .rightsns-list {
    display: none;
  }
}

#home .col-right .rightsns-link {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

#home .col-right .rightsns-link img {
  display: block;
  width: clamp(30px, 3vw, 52px);
  height: auto;
}

#home .col-right .rightsns-link:hover {
  opacity: 0.8;
}

#home .col-right .right-info {
  background-color: #eeaeaf;
  border-radius: 50px;
  padding: 10px 10px 10px 85px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  font-size: 12px;
}

@media (max-width: 1240px) {
  #home .col-right .right-info {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px 10px 15px 10px;
  }
}

@media (max-width: 767px) {
  #home .col-right .right-info {
    padding: 10px 10px 10px 85px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

#home .col-right .right-info::before {
  display: block;
  content: "";
  width: 70px;
  height: 45px;
  background-image: url("/assets/img/home/blog_hukidashi.svg");
  background-repeat: no-repeat;
  position: absolute;
  top: -20px;
  left: 5px;
}

#home .col-right .right-info .rightinfo-date {
  margin-right: 10px;
}

#home .col-right .right-info .rightinfo-txt {
  font-weight: 700;
  text-decoration: underline;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#home .col-right .right-info .rightinfo-txt:hover {
  text-decoration: none;
  color: #214484;
}
