@charset "UTF-8";
/* ----------------------------------------------- */
/* 基本設定 */
/* ----------------------------------------------- */

* {
  line-height: 1.5;
  font-family: "Zen Kaku Gothic New", 游ゴシック, "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
}

@media (hover: hover) and (pointer: fine)  {
  &:hover {
    @content;
  }
}

html {
  font-size: 2.666vw; /* 10px基準（1rem=10px） */
  scroll-behavior: smooth;
  scroll-padding-top: 65px;
  letter-spacing: 0.08em;

  @media screen and (min-width: 768px) { 
    font-size: 10px;
  }
}

p {
  font-size: 1.6rem; /* 16px */
  margin-bottom: 15px;
}

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

.pc_cont {
  display: block;
}

.sp_cont {
  display: none;
}

.index_section { }

.font_size16 {
  font-size: 1.6rem;
  letter-spacing: 0.12rem;
  line-height: 1.7;

  @media screen and (min-width: 768px) { 
    font-size: 4.2656cqw;
  }
}

.font_size22_bold {
  font-size: 2.2rem;
  letter-spacing: 0.165rem;
  font-weight: 700;

  @media screen and (min-width: 768px) { 
    font-size: 5.8652cqw;
  }
}

.scroll_target.is-visible {
  background-position: 0 0 !important;
}

.fadeIn {
  transition: 1.5s;
  opacity: 0;
}

.fadeIn.animated {
  opacity: 1;
}


/* .btn_page_link */

.btn_page_link {
  margin-bottom: 4.76%;
}

.btn_page_link a {
  position: relative;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.135rem;
  display: block;
  background-color: #000;
  width: 100%;
  min-height: 4em;
  padding: 3.49%;
  border-radius: 9999px;
  color: #fff;
  text-align: center;
  border: 2px #000 solid;
}

@media (hover: hover) and (pointer: fine) {
  .btn_page_link a:hover {
    border: 2px #000 solid;
    background-color: #fff;
    color: #000;
  }
}

.btn_page_link a::after {
  position: absolute;
  content: "";
  width: 1.8rem;
  height: 0.7rem;
  background-image: url(../img/ico_arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  right: 1.5rem;
  bottom: 50%;
  transform: translateX(-50%);

  @media screen and (min-width: 768px) {
    width: 1.8cqw;
    height: 0.7cqw;
    right: 2cqw;
  }
}

@media (hover: hover) and (pointer: fine) {
  .btn_page_link a:hover::after {
    background-image: url(../img/ico_arrow_hover.svg);
  }
}

.btn_page_link a span {
  display: block;
  font-size: 1.4rem;
  letter-spacing: 0.105rem;
}

.boundIn_animation {
  opacity: 0;
}


.boundIn_animation.active {
  animation: boundInCon 0.9s cubic-bezier(0.33, 0, 0.2, 1) 0.1s forwards;
}

.boundIn_animation.active.img-timeline02 {
  animation: boundInCon 0.9s cubic-bezier(0.33, 0, 0.2, 1) 0.2s forwards;
}

@keyframes boundInCon {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  30% {
    opacity: 1;
    transform: scale(1.03);
  }
  50% {
    transform: scale(0.99);
  }
  70% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}


/* ----------------------------------------------- */
/* header */
/* ----------------------------------------------- */

.header {
  position: fixed;
  z-index: 9999;
  transition: 0.3s;

  @media screen and (min-width: 768px) { 
    margin-top: 0;
    margin-left: 1.6rem;
    width: 280px;
    height: 98px;
  }
}

.header .logo {
  @media screen and (min-width: 768px) { 
    width: 100%;
  }
}

.header_inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  
}

.hamburger {
  display: none;
}

.nav {
  display: none;
}



/* ----------------------------------------------- */
/* PC板 3ブロック */
/* ----------------------------------------------- */
.container {
}


/* left_side -------------------- */

.left_side {
  position: fixed;
  top: 0;
  width: 30%;
  height: 100%;
  left: 0;
  background-image: url(../img/bg_pc.svg);
  border-right: 1px solid #000;
}

.left_side_inner {
  transition: 0.3s;
  position: relative;
  height: 100vh;
  margin-right: 3px;
  border-right: 1px solid #000;
  background-image: url(../img/bg_left_top.svg), url(../img/bg_left_bottom.svg);
  background-position: left 0 top 0, left 0 bottom 0; /* x, y */;
  background-repeat: no-repeat;
  background-size: 100% auto;
}

.left_side_inner .side-menu {
  position: absolute;
  right: 2vw;
  bottom: 2%;
  width: 250px;
  transition: 0.3s;
}

.left_side_inner .side-menu li {
  margin-bottom: 2.8rem;
  text-align: right
}

.left_side_inner .side-menu .nav_txt{
  font-size: 1.8rem;
  letter-spacing: 0.27rem;
}

.left_side_inner .side-menu .nav_img {
  transition: 0.3s;
  height: 4rem;
  -webkit-backface-visibility: hidden;
  background-repeat: no-repeat;
  background-position: center right;
  background-size: auto;
  padding-bottom: 0;
  margin-bottom: 0.3rem;
  margin: auto 0 auto auto;
  height: 4.2rem;
}

/* 通常Nav画像 */
.left_side_inner .nav__item.link_pickup .nav_img {
  background-image: url(../img/btn_side_pickup.svg);
  width: 15.8rem;
}

.left_side_inner .nav__item.link_others .nav_img {
  background-image: url(../img/btn_side_others.svg);
  width: 15.8rem;
}

.left_side_inner .nav__item.link_benefits .nav_img {
  background-image: url(../img/btn_side_benefits.svg);
  width: 18.4rem;
}

/* current Nav画像 */
.left_side_inner .nav__item.link_pickup .nav_img.current {
  background-image: url(../img/btn_side_pickup_active.svg);
}

.left_side_inner .nav__item.link_others .nav_img.current {
  background-image: url(../img/btn_side_others_active.svg);
}

.left_side_inner .nav__item.link_benefits .nav_img.current {
  background-image: url(../img/btn_side_benefits_active.svg);
}



/* main -------------------- */

.main {
  margin-left: 30%;
  padding-bottom: 10rem;
  width: 40%;
  background-image: url(../img/bg_sp.svg);


  @media screen and (min-width: 768px) { 
    background-image: url(../img/bg_pc.svg);
    padding-bottom: 5%;
  }
}

/* right_side -------------------- */

.right_side {
  position: fixed;
  top: 0;
  width: 30%;
  height: 100%;
  right: 0;
  background-color: #fff;
  border-left: 1px solid #000;
}

.right_side .right_side_wrapper {
  background-image: url(../img/bg_pc.svg);
  margin-left: 3px;
}

.right_side .right_side_inner {
  position: relative;
  transition: 0.3s;
  border-left: 1px solid #000;
  height: 100vh;

  background-image: url(../img/bg_right_top.svg), url(../img/bg_right_bottom.svg);
  background-position: right 0 top 0, right 0 bottom 0; /* x, y */
  background-repeat: no-repeat;
  background-size: 100% auto;
}

.right_side .pagetop {
  position: absolute;
  bottom: 1cqw;
  left: 1.2cqw;
  width: 21.88cqw;
}



/* -------   ヨコ幅で制御   ------- */
@media screen and (max-width: 1000px) { 
  .left_side {
    width: 40%;
  }
  .left_side_inner .side-menu {
    bottom: 0;
  }

  .left_side_inner .side-menu .nav_img {
    height: 3rem;
    background-size: contain;
  }

  .left_side_inner .nav__item.link_pickup .nav_img {
    width: 13.43rem;
  }

  .left_side_inner .nav__item.link_others .nav_img {
    width: 12.665rem;
  }

  .left_side_inner .nav__item.link_benefits .nav_img {
    width: 15.64rem;
  }

  .main {
    margin-left: 40%;
    width: 40%;
  }

  .right_side {
    width: 20%;
  }
}

/* ----------------------------------------------- */
/* .index_section_kv */
/* ----------------------------------------------- */

.index_section_kv {
  position: relative;
  padding-top: 5.33%;
  padding-bottom: 10%;
}

.index_section_kv .swiper {
  background-image: url(../img/mask_slide.svg);
  background-size: cover;
  background-repeat: no-repeat;
}

/* アクティブ以外のスライダーは非表示 */
.index_section_kv .swiper-slide {
  background-image: url(../img/mask_slide.svg);
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  
}

.index_section_kv .swiper-slide-active {
  opacity: 1;
  visibility: visible;
  animation: slide-fadeOut 4s; /* 2秒かけてフェードアウト */
}

.index_section_kv .slider {
  overflow: hidden;
  width: 100%;
  height: 97.6%;

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

.index_section_kv .slick-list {
  background-image: url(../img/mask_slide.svg);
  background-size: cover;
  background-position: top right;
}

.index_section_kv .slick-active,
.index_section_kv .slick-slide:has(+ .slick-active),
.index_section_kv .slick-slide:last-child {
  animation: zoom-in 4s ease-out infinite;  
}

.index_section_kv .slick-active + .slick-slide:last-child {
  animation: none;
}




/* ----------------------------------------------- */
/* .slide_over */
/* ----------------------------------------------- */

.slide_over {
  position: relative;
}

.slide_over .ttl_slide {
  position: absolute;
  width: 92.8%;
  margin: auto;
  height: 48.85%;
  top: -47.5vw;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 1;

  @media screen and (min-width: 768px) { 
    top: -19cqw;
  }
}

/* scroll-btn */
.scroll_btn_area {
  position: absolute;
  top: -8vw;
  left: 1.7%;

  @media screen and (min-width: 768px) { 
    top: -2rem;
  }
}
.scroll_btn_outer {
  position: relative;
  width: 3.2rem;
  height: 4.5rem;
}

.scroll-txt {
  position: absolute;
  display: block;
  height: 3.2rem;
  width: 4.5rem;
  writing-mode: horizontal-tb;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.169rem;
  line-height: 11px;
  color: #000;
  margin-top: 0.1rem;
  transform: rotate(90deg);
  top: 0.5rem;
}

#scroll-btn {
  position: relative;
  left: 50%;
  top: 0;
  padding-bottom: 1%;
  display: none;
}

#scroll-btn::after {
  content: '';
  position: absolute;
  width: 0.4rem;
  background: #D8D8D8;
  border-radius: 2rem;
  height: 4.5rem;
  transform: translateX(-50%);
  left: 0;
  top: 0;
}

#scroll-btn::before {
  content: '';
  position: absolute;
  width: 1rem;
  height: 1rem;
  background-color: #FABF00;
  border-radius: 50%;
  transform: translateX(-50%);
  left: 0.1rem;
  bottom: 0;
  animation: top_arrow infinite 5s;
  z-index: 10;
}

@keyframes top_arrow {
  0% {
    transform: translate(-56%, 8px);
  }

  50% {
    transform: translate(-56%, 45px);
  }

  100% {
    transform: translate(-56%, 8px);
  }
}

@-webkit-keyframes top_arrow {
  0% {
    -webkit-transform: translate(-56%, 8px);
  }

  50% {
    -webkit-transform: translate(-56%, 45px);
  }

  100% {
    -webkit-transform: translate(-56%, 8px);
  }
}

/* ----------------------------------------------- */
/* .pickup */
/* ----------------------------------------------- */

.pickup {
  
}

.pickup .ttl_pickup {
  width: 100%;
  
}

.pickup .pickup_main {
  position: relative;
  background-color: #FABF00;
  padding-bottom: 10.67%;
  container-type: inline-size;
}

.pickup .pickup_main::after {
  position: absolute;
  content: "";
  width: 100%;
  padding-top: 10.67%;
  background-image: url(../img/bg_puckup_bottom.png);
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
  bottom: -10.67cqw;
}

.pickup .pickup_summary {
  width: 84.00%;
  margin: -10% auto 0;
}

.pickup .pickup_summary .pickup_info_txt {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.24rem;
  line-height: 1.37;

  @media screen and (min-width: 768px) { 
    font-size: 8.5312cqw;
  }
}

.pickup .pickup_summary p.pickup_txt {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.135rem;
  line-height: 1.94;

  @media screen and (min-width: 768px) { 
    font-size: 4.7988cqw;
  }
}

.pickup .puckup_introduction {
    width: 92.00%;
    margin-left: auto;
    margin-top: 8%;
}

.pickup .puckup_introduction_inner {
  display: flex;
  justify-content: flex-end;
}

.pickup .img_pickup_job_tate {
  opacity: 0;
}

/* バウンス効果付き */
.pickup .img_pickup_job_tate.active {
  animation: slideInSmoothLonger 0.6s ease-out 0.3s both;
}

@keyframes slideInSmoothLonger {
  0% {
    transform: translateY(-120px);
    opacity: 0;
  }
  60% {
    transform: translateY(3px);
    opacity: 1;
  }
  80% {
    transform: translateY(-3px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.pickup .occupation { 
  margin-top: -9.4%;
}

.pickup .occupation p.occupation_kind {
  display: inline-block;
  background-color: #000000;
  color: #fff;
  padding: 2.6% 3.81%;
  font-size: 2.2rem;
  width: auto;
  margin-right: auto;
  letter-spacing: 0.165rem;
  margin-bottom: 0;

  @media screen and (min-width: 768px) { 
    font-size: 5.8652cqw;
    padding: 1.6% 3.4%;
  }
}

.pickup .occupation p {
  display: block;
  opacity: 0;
}

.pickup .occupation p.active {
  animation: slideInSmoothLonger_yoko 0.6s ease-out both;
}

@keyframes slideInSmoothLonger_yoko {
  0% {
    transform: translateX(-120px);
    opacity: 0;
  }
  60% {
    transform: translateX(2px);
    opacity: 1;
  }
  80% {
    transform: translateX(-2px);
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}


.pickup .occupation p.occupation_info {
  display: inline-block;
  background-color: #fff;
  padding: 1.4% 3.81%;
  font-size: 1.4rem;
  letter-spacing: 0.105rem;
  margin-bottom: 0;

  @media screen and (min-width: 768px) { 
    font-size: 3.7324cqw;
  }
}

.pickup .occupation p.occupation_info.active {
  animation: slideInSmoothLonger_yoko 0.5s ease-out 0.3s both;
}

.pickup .puckup_message {
  margin-right: 9.52%;
}

.pickup .puckup_message_copy {
  margin-top: 9.52%;
}

.pickup .puckup_message_txt {
  margin-top: 7.94%;
  line-height: 1.5;
}

.pickup .puckup_message_txt span {
  background-color: #FFDB65;
  display: inline-block;
  padding: 0 0 0 2px;
  background-repeat: no-repeat;
  background-position: 100% 0;
  background-size: 200% auto;
  background-image: linear-gradient(
    to right,
    #FFDB65 0%,
    #FFDB65 50%,
    #FABF00 50%,
    #FABF00 100%
  );
  transition: background-position ease 0.8s;
}



/* ----------------------------------------------- */
/* .voice */
/* ----------------------------------------------- */

.voice { 
  margin-top: 26.67%;
}

.voice .voice_inner { 
  width: 84.00%;
  margin: auto;
}

.voice .voice_ttl img {
  width: 37.14%;
}

.voice .voice_ttl p {
  position: relative;
  line-height: 1;
  padding-left: 4.76%;
  font-size: 1.4rem;

  @media screen and (min-width: 768px) { 
    font-size: 1.55cqw;
  }
}

.voice .voice_ttl p::after {
  position: absolute;
  content: "";
  width: 2.54%;
  border-bottom: 1px solid #000;
  bottom: 40%;
  left: 0;
  transform: translate(0, -70%);
}

.voice .voice_member:first-child {
  margin-bottom: 19.05%;
}

.voice .voice_member_img {
  margin-top: 12.70%;
}

.voice .voice_member_ttl {
  position: relative;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.18rem;
  padding-left: 6.67%;
  margin-top: 7.94%;
  margin-bottom: 4.76%;

  @media screen and (min-width: 768px) { 
    font-size: 2.3cqw;
  }
}

.voice .voice_member_ttl::after {
  position: absolute;
  content: "";
  background-color: #FABF00;
  width: 1.90%;
  height: 8.89875rem;
  top: 2%;
  left: 0;

  @media screen and (min-width: 768px) { 
    height: 10cqw;
  }
}



.voice .voice_member_txt {
  font-size: 1.6rem;
  letter-spacing: 0.1425rem;

  @media screen and (min-width: 768px) { 
    font-size: 1.7cqw;
    letter-spacing: 0.152cqw;
  }
}

.voice .voice_member_txt span {


  background-repeat: no-repeat;
  background-position: 100% 0;
  background-size: 200% auto;
  background-image: linear-gradient(
    to right, 
    #FFFACA 0%, 
    #FFFACA 50%, 
    #FFFFFF00 50%, 
    #FFFFFF00 100%
    );
  transition: background-position ease 0.8s;

}


/* ----------------------------------------------- */
/* .one_day */
/* ----------------------------------------------- */

.one_day { 
  margin-top: 20%;
  margin-bottom: 20%;
  overflow: hidden;
}

.one_day .one_day_inner { 
  width: 84.00%;
  margin: auto auto 4% auto;

}

.one_day .one_day_ttl img {
  width: 53.97%;
}

.one_day .one_day_ttl p {
  position: relative;
  line-height: 1;
  padding-left: 4.76%;
  font-size: 1.4rem;
  letter-spacing: 0.102rem;

  @media screen and (min-width: 768px) { 
    font-size: 1.494cqw;
    letter-spacing: 0.102cqw;
  }
}

.one_day .one_day_ttl p::after {
  position: absolute;
  content: "";
  width: 2.54%;
  border-bottom: 1px solid #000;
  bottom: 40%;
  left: 0;
  transform: translate(0, -70%);
}

.one_day .timeline {
  margin-top: 14.29%;
  
}

.one_day .timeline > li {
  position: relative;
  width: 100%;
  border-left: 1px solid #000;
  margin-left: 1.07vw;
  padding-bottom: 6.67%;

  @media screen and (min-width: 768px) { 
    margin-left: 0;
  }
}

.one_day .timeline > li:last-child {
  border: none;
}

.one_day ul.timeline > li::before {
  position: absolute;
  content: "";
  width: 0.9rem;
  height: 0.9rem;
  background-color: #FABF00;
  border-radius: 50%;
  top: 0;
  left: -0.5rem;

  @media screen and (min-width: 768px) { 
    width: 0.96cqw;
    height: 0.96cqw;
    left: -0.5cqw;
  }
}

.one_day ul.timeline .timeline-date {
  display: inline-block;
  font-size: 1.8rem;
  letter-spacing: 0.135rem;
  font-weight: 700;
  margin-left: 6.35%;
  margin-top: -4%;

  @media screen and (min-width: 768px) { 
    margin-left: 5%;
    font-size: 1.75cqw;
    margin-top: -2.6%;
  }
}

.one_day ul.timeline .timeline-content {
  margin-top: -2.5%;
  display: inline-block;
  vertical-align: top;
  font-weight: 500;
  margin-left: 3.17%;
  font-size: 1.4rem;
  width: 73.65%;
  letter-spacing: 0.14cqw;

  @media screen and (min-width: 768px) { 
    margin-top: -2.2%;
    margin-left: 5%;
    font-size: 1.5cqw;
    
  }
}

.one_day ul.timeline .timeline-content .midashi {
  display: block;
  font-size: 1.6rem;
  letter-spacing: 0.105rem;
  font-weight: 700;
  margin-bottom: 2px;

  @media screen and (min-width: 768px) { 
    font-size: 1.55cqw;
    letter-spacing: 0.3cqw;
  }
}

.one_day .img-timeline01 {
  width: 92%;
  margin-left: auto;
  margin-bottom: 13.33%;
}


/* ----------------------------------------------- */
/* .more_info */
/* ----------------------------------------------- */

.more_info {
  margin-bottom: 21%;
}

.more_info_inner {
  width: 84%;
  margin: auto;
  text-align: center;
}

.more_info .more_info_ttl {
  position: relative;
  text-align: center;
  font-weight: 700;
  font-size: 2.2rem;
  letter-spacing: 0.165rem;
  margin-bottom: 9.52%;

  @media screen and (min-width: 768px) { 
    display: inline-block;
    padding: 0 2rem;
    font-size: 2.4cqw;
  }
}

.more_info .more_info_ttl::before, .more_info .more_info_ttl::after {
  position: absolute;
  content: "";
  width: 1.995rem;
  height: 2.998rem;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: contain;

  @media screen and (min-width: 768px) { 
    width: 3cqw;
    height: 3cqw;
  }
}

.more_info .more_info_ttl::before {
  background-image: url(../img/ico_more_info_ttl.svg);
  left: 0;
}

.more_info .more_info_ttl::after {
  background-image: url(../img/ico_more_info_ttl.svg);
  right: 0;
  transform: scale(-1, 1);
}

.more_info .btn_page_link a {
  @media screen and (min-width: 768px) {
    font-size: 1.8cqw;
  }
}

.more_info .btn_page_link a span {
  @media screen and (min-width: 768px) {
    font-size: 1.4cqw;
  }
}


/* ----------------------------------------------- */
/* .others */
/* ----------------------------------------------- */

.others { }

.others .ttl_others_top img {
  width: 100%;

}

.others .others_inner {
  width: 92%;
  margin: auto 0 auto auto;
}

.others .others_main {
  background-color: #FABF00;
  padding-top: 9.21%;
  overflow: hidden;
}

.others .others_ttl img {
  width: 46.9%;
}

.others .others_ttl p {
  position: relative;
  line-height: 1;
  padding-left: 4.76%;
  padding-bottom: 0;
  font-size: 1.4rem;
  letter-spacing: 0.105rem;
  margin-bottom: 11.58%;

  @media screen and (min-width: 768px) {
    font-size: 1.55cqw;
  }
}

.others .others_ttl p::after {
  position: absolute;
  content: "";
  width: 2.54%;
  border-bottom: 1px solid #000;
  bottom: 40%;
  left: 0;
  transform: translate(0, -70%);
}

.others .swiper-wrapper{
  transition-timing-function: ease;
  padding-bottom: 12%;
}

.others .swiper-slide {
  width: 57.5%;
  margin-right: 9.52% !important;
}

@media (hover: hover) and (pointer: fine) {
  .others .swiper-slide a:hover {
    opacity: 0.7;
  }
}

.others .swiper-slide img {
  width: 63.49vw;
}

.others .swiper-slide .others_slide_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.others .swiper-slide a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.others .swiper-slide .others_slide_ttl {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.135rem;
  margin-top: 4.5cqw;
  margin-bottom: 3cqw;
  line-height: 1.2;

  @media screen and (min-width: 768px) {
    font-size: 1.88cqw;
    margin-top: 1.4cqw;
    margin-bottom: 0.8cqw;
    min-height: 0;
  }
}

.others .swiper-slide .others_slide_more {
  position: relative;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  padding-bottom: 4px;
  padding-right: 12%;
  border-bottom: 2px solid #000;
  margin-top: auto;
  margin-right: auto;

  span {
    font-size: 0.83rem;
  }
}

@media screen and (min-width: 768px) {
  .others .swiper-slide .others_slide_more {
    font-size: 1.42cqw;
  }
}

@media screen and (min-width: 930px) {
  .others .swiper-slide .others_slide_more span {
    font-size: 1rem;
  }
}

@media screen and (min-width: 1400px) {
  .others .swiper-slide .others_slide_more span {
    font-size: 1.6rem;
  }
}

.others .swiper-slide .others_slide_more::after {
  position: absolute;
  content: "";
  background-image: url(../img/ico_arrow_mini.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.1cqw;
  height: 0.5cqw;
  right: -0.35cqw;
  bottom: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  .others .swiper-slide .others_slide_more::after {
    width: 3.1vw;
    height: 1.3vw;
  }
}

.others .btn_page_link {
  margin-bottom: 0;
  padding-bottom: 22%;
}

.others .btn_page_link a {
  line-height: 2.6;

  @media screen and (min-width: 768px) {
    font-size: 1.8cqw;
  }
}



.others .ttl_others_bottom img {
  width: 100%;
}


.others .others_btn_outer {
  width: 84%;
  margin: auto;

}



/* ----------------------------------------------- */
/* .benefits */
/* ----------------------------------------------- */

.benefits { 
  margin-top: -10%;
  padding-top: 19%;
  padding-bottom: 20%;
  background-image: url(../img/bg_benefits.png);
  background-position: top;
  background-size: cover;
  color: #fff;
}

.benefits .benefits_inner {
  width: 84.00%;
  margin: auto;
}

.benefits .benefits_ttl {
  margin-bottom: 12.70%;
}

.benefits .benefits_ttl img {
  width: 60.63%;
}

.benefits .benefits_ttl p {
  position: relative;
  line-height: 1;
  padding-left: 4.76%;
  font-size: 1.4rem;
  letter-spacing: 0.105rem;

  @media screen and (min-width: 768px) {
    font-size: 1.55cqw;
  }
}

.benefits .benefits_ttl p::after {
  position: absolute;
  content: "";
  width: 2.54%;
  border-bottom: 1px solid #fff;
  bottom: 40%;
  left: 0;
  transform: translate(0, -70%);

  @media screen and (min-width: 768px) {
    border-bottom: 2px solid #fff;
  }
}

.benefits .benefits_bnr {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;

  @media screen and (min-width: 768px) {
    margin-bottom: 1cqw;
  }
}

.benefits .benefits_bnr li {
  flex: 0 0 47.62%; /* 2列 */
  margin-bottom: 20px;
  -webkit-backface-visibility: hidden;
}

.benefits .benefits_bnr li img {
  -webkit-backface-visibility: hidden;
}

.benefits .benefits_more {
}

.benefits .benefits_more {
  position: relative;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  padding-bottom: 1.2%;
  padding-right: 7%;
  border-bottom: 2px solid #fff;
  color: #fff;
  letter-spacing: 0.105rem;

  @media screen and (min-width: 768px) {
    font-size: 1.5cqw;
    letter-spacing: 0.112cqw;
  }
}

.benefits .benefits_more::after {
  position: absolute;
  content: "";
  background-image: url(../img/ico_arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 1.6rem;
  height: 0.5rem;
  right: -4%;
  bottom: 50%;
  transform: translateX(-50%);

  @media screen and (min-width: 768px) {
    width: 1.6cqw;
    height: 0.5cqw;
  }
}

.benefits .benefits_health {
  padding-bottom: 1%;
}

.benefits .benefits_health h3 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 12.70%;
  margin-bottom: 2%;

  @media screen and (min-width: 768px) {
    font-size: 1.92cqw;
    margin-top: 12.2%;
    letter-spacing: 0.144cqw;
  }
}

.benefits .benefits_health p {
  font-size: 1.6rem;
  font-weight: normal;
  letter-spacing: 0.12rem;

  @media screen and (min-width: 768px) {
    font-size: 1.705cqw;
    letter-spacing: 0.128cqw;
  }
}



/* ----------------------------------------------- */
/* .etc_top */
/* ----------------------------------------------- */

.etc_top { 
  background-color: #fff;
  background-image: url(../img/bg_sp.svg);
  margin-top: -9%;

  mask-image: url(../img/mask_etc.png);
  mask-position: top;
  mask-repeat: no-repeat;
  mask-size: cover;

  height: 9.1vw;

  @media screen and (min-width: 768px) { 
    padding-top: 10%;
    height: 0;
  }
}

/* ----------------------------------------------- */
/* .etc */
/* ----------------------------------------------- */

.etc { 
}

.etc .etc_inner { 
  width: 84.00%;
  margin: auto;
}

.etc .btn_page_link a {
  margin-top: 19.05%;
  line-height: 2.6;

  @media screen and (min-width: 768px) {
    font-size: 1.8cqw;
  }
}


/* ----------------------------------------------- */
/* footer */
/* ----------------------------------------------- */

footer {
  position: static;
  background: #000;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5% 2% 1.5%;
  z-index: 9999;

  margin-left: 30%;
  width: 40%;

  @media screen and (max-width: 1000px) {
    margin-left: 40%;
  }

  @media screen and (max-width: 850px) {
    padding: 1.5% 1% 1.5%;

  }

  @media screen and (max-width: 767px) {
    position: sticky;
    margin-left: 0;
    width: 100%;
    padding: 4.27% 4% 3%;
  }
}

footer small {
  font-size: 1rem;
}

/* ----------------------------------------------- */
/* .btn_pagetop */
/* ----------------------------------------------- */

.pagetop {
  position: fixed;
  bottom: 2vw;
  right: 20vw;
  z-index: 9998;
  transition: all 0.3s ease;

  @media screen and (max-width: 1000px) { 
    right: 8vw;
  }

  @media screen and (max-width: 767px) { 
    right: -12px;
    bottom: -4vw;
  }
}

.pagetop.sp_cont {
  width: 21.87cqw;
  height: 20.8cqw;
}

.pagetop.sp_cont a {
  display: block;
  width: 100%;
}

.pagetop.sp_cont a img {
  width: 100%;
}

.pagetop.sp_cont.near-bottom {
  bottom: 2vw;

  @media screen and (max-width: 767px) { 
    bottom: 9vw;
  }
}

@media screen and (min-width: 768px) { 
  .pagetop.sp_cont {
    opacity: 0;
    display: none !important;
  }
}

.pagetop img {
  width: 81.3px;
  height: auto;
}


/* ----------------------------------------------- */
/* bounce animation */
/* ----------------------------------------------- */
.ttl_slide img {
  opacity: 0;
  transform: scale(0);
  animation: boundIn 1.2s cubic-bezier(0.33, 0, 0.2, 1) 0.1s forwards;
}

@keyframes boundIn {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  30% {
    opacity: 1;
    transform: scale(1.15);
  }
  50% {
    transform: scale(0.95);
  }
  70% {
    transform: scale(1.05);
  }
  85% {
    transform: scale(0.98);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}



/* ----------------------------------------------- */
/* .offsetElement */
/* ----------------------------------------------- */

.ttl_pickup_top {
  position: relative;
}

/* .con {
  position: absolute;
  top: 1.6rem;
  left: 0;
  width: 100%;
  height: 100px;
  border-radius: 8px;


}

  @media screen and (min-width: 1000px) { 
    .con {
      top: 22%;
    }
  } */

/* .animation-svg {
  width: 100%;
  height: 100%;
}

.path-stroke {
  width: 100%;
  fill: none;
  stroke: #ddd;
  stroke-width: 2;
  stroke-dasharray: 5,5;
} */

/* .moving-line {
  fill: none;
  stroke: #000;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-dasharray: 200 10;
  stroke-dashoffset: -3;
  opacity: 1;
  animation: moveLine 90s ease infinite;
} */

/* @keyframes moveLine {
  0% {
    stroke-dashoffset: -375;
    opacity: 1;
  }

  100% {
    stroke-dashoffset: 375;
    opacity: 1;
  }
} */
        
