@charset "utf-8";

/* ---------------------------------------------------------------------------------------------

　   POPUP

--------------------------------------------------------------------------------------------- */
.top-popup {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .35s ease, visibility .35s ease;
}
.top-popup.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.top-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  opacity: 0;
  transition: opacity .35s ease;
}
.top-popup.is-open .top-popup__overlay {
  opacity: 1;
}
.top-popup__content {
  position: relative;
  z-index: 1;
  width: min(92vw, 60rem);
  transform: translateY(1rem) scale(.98);
  opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
}
.top-popup.is-open .top-popup__content {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.top-popup__image {
  display: block;
  width: 100%;
  height: auto;
}
.top-popup__close {
  position: absolute;
  top: -1.6rem;
  right: -1.6rem;
  width: 3.2rem;
  height: 3.2rem;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #333;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
}
body.is-popup-open {
  overflow: hidden;
}
@media only screen and ( max-width : 767px ) {
  .top-popup {
    padding: 1.5rem;
  }
  .top-popup__content {
    width: 94vw;
  }
  .top-popup__close {
    top: -1.2rem;
    right: -1.2rem;
    width: 2.8rem;
    height: 2.8rem;
    font-size: 1.9rem;
  }
}

/* ---------------------------------------------------------------------------------------------

　   MV

--------------------------------------------------------------------------------------------- */

#mv {
  position: relative;
}
.mv_title {
  position: absolute;
  z-index: 2;
}
.mv_title_inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3.5rem;
}
.mv_img {
  width: 100%;
  height: 100%;
}
.mv_title h1 {
  color: #fff;
}
.mv_title h1 span {
  display: inline-block;
  transition: .6s;
}

.mv_title h1 {
  opacity: 0;
}
@media only screen and ( max-width : 767px ) {
  #mv {
    height: 100svh;
  }
  .mv_title {
    font-size: 3.2rem;
    left: 0;
    top: 0;
    padding-top: 10rem;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mv_title h1 {
    text-shadow: 0px 0px 1rem rgba(8, 94, 153, 0.9);
  }
  .mv_title_logo img {
    width: 20rem;
    height: auto;
    display: block;
  }
  .mv_title_inner {
    align-items: center;
  }
  #mv .mv_title_btn {
    width: 34rem;
  }
  #mv .mv_title_btn_sp {
    font-size: 2.4rem;
    height: 6rem;
    max-width: 34rem;
  }
  #mv .mv_title_btn_sp:after {
    width: 3.2rem;
    height: 3.2rem;
    right: 1rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  /*
    フルスクリーンMV
    デザイン基準: 画面幅 1200px のとき 見出し 76px / ロゴ 338px
    → 比例は calc(◯px * 100vw / 1200)。超ワイドでは min() で 76px / 338px 上限。
    狭いPCでは比例で縮小、極端に潰れないよう見出しだけ clamp の下限を付与。
  */
  #mv {
    height: calc(100vh - 11rem);
    min-height: 78rem;
    overflow: hidden;
  }
  .mv_img {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    margin: 0;
  }
  .mv_img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .mv_title {
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-sizing: border-box;
  }
  /* .container と同じ幅・余白（style.css の .container に合わせる） */
  .mv_title_inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: calc(var(--inner) + 4rem);
    margin-left: auto;
    margin-right: auto;
    padding-left: 3rem;
    padding-right: 3rem;
    box-sizing: border-box;
    gap: clamp(2rem, 4vw, 5rem);
  }
  .mv_title h1 {
    margin: 0;
    font-size: clamp(40px, calc(76 * 100vw / 1200), 76px);
    line-height: 1.35;
    letter-spacing: 0.02em;
    text-shadow: none;
  }
  .mv_title_logo {
    flex-shrink: 0;
  }
  .mv_title_logo img {
    width: min(338px, calc(338 * 100vw / 1200));
    height: auto;
    display: block;
  }
}

/* 1200px以下のPCでテキスト折り返しを抑える微調整 */
@media print, screen and ( min-width : 768px ) and ( max-width : 1200px ) {
  .mv_title_inner {
    gap: clamp(1.2rem, 2.4vw, 2.8rem);
  }
  .mv_title h1 {
    font-size: clamp(34px, calc(64 * 100vw / 1200), 64px);
    line-height: 1.3;
  }
  .mv_title_logo img {
    width: min(300px, calc(300 * 100vw / 1200));
  }
}


/* ---------------------------------------------------------------------------------------------

　   COMMON

--------------------------------------------------------------------------------------------- */
.title {
  text-align: center;
  color: var(--mainColor);
  font-weight: 700;
}
.title span {
  display: inline-block;
  letter-spacing: .3em;
  padding-bottom: .2em;
}
@media only screen and ( max-width : 767px ) {
  .title {
    margin-bottom: 3.5rem;
  }
  .title span {
    border-bottom: .2rem solid var(--mainColor);
    font-size: 2rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  .title {
    margin-bottom: 7rem;
  }
  .title span {
    border-bottom: .4rem solid var(--mainColor);
    font-size: 3.8rem;
  }
}


/* ---------------------------------------------------------------------------------------------

　   TRIP

--------------------------------------------------------------------------------------------- */
#trip {
  background: #e7f2f7;
}
.trip_title {
  text-align: center;
}
.trip_sub_title {
  text-align: center;
  color: var(--mainColor);
  font-weight: 700;
  letter-spacing: 0.1em;
}
.pickup_item_title {
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: .7rem;
}
.pickup_item_tags {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.pickup_item_tags li {
  border: .2rem solid var(--mainColor);
  border-radius: 2rem;
  color: var(--mainColor);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.pickup_item_txt {
  font-weight: 700;
  line-height: 1.8em;
  text-align: justify;
}
.pickup_item_img img {
  width: 100%;
}
.pickup_inner {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pickup_more_btn {
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--mainColor);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 0 auto;
}
.pickup_more_label {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.pickup_more_icon {
  display: block;
  width: 7rem;
  height: 7rem;
  background: url(../img/index/more.svg) no-repeat center / 100%;
}
@media only screen and ( max-width : 767px ) {
  #pickup {
    margin-bottom: 7rem;
  }
  .trip_title img {
    width: 26.4rem;
  }
  #pickup-slider {
    padding: 0 3rem;
  }
  .pickup_splide .splide__track {
    overflow: hidden;
  }
  .pickup_splide .splide__slide {
    width: 100%;
  }
  .pickup_splide .splide__arrow {
    width: 1.5rem;
    height: 2.7rem;
    top: clamp(7.4rem, 24vw, 11.6rem);
    transform: translateY(-50%);
    border-radius: 0;
    background: transparent;
    opacity: 1;
  }
  .pickup_splide .splide__arrow svg {
    display: none;
  }
  .pickup_splide .splide__arrow--prev {
    left: 0;
    background: url(../img/prev.svg) no-repeat center / 100%;
  }
  .pickup_splide .splide__arrow--next {
    right: 0;
    background: url(../img/next.svg) no-repeat center / 100%;
  }
  .pickup_more_btn {
    display: none;
  }
  .trip_title { 
    margin-bottom: 5rem;
  }
  .trip_sub_title {
    font-size: 1.6rem;
    margin-bottom: 3rem;
  }
  .pickup_item_title {
    font-size: 1.9rem;
  }
  .pickup_item_tags {
    margin-bottom: 1.4rem;
  }
  .pickup_item_tags li {
    font-size: 1.4rem;
    height: 2.6rem;
    min-width: 6.4rem;
    padding: 0 1rem;
  }
  .pickup_item_txt {
    font-size: 1.3rem;
  }
  .situation_img {
    margin-bottom: 3.5rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  #pickup {
    margin-bottom: 11rem;
  }
  /* PCはSplide未マウント運用のため、初期hiddenを解除 */
  .pickup_splide {
    visibility: visible;
  }
  #pickup:not(.is-expanded) .pickup_item:nth-child(n+4) {
    display: none;
  }
  .pickup_splide .splide__track {
    overflow: visible;
  }
  .pickup_splide .splide__list {
    display: flex;
    flex-wrap: wrap;
  }
  .pickup_splide.splide.is-initialized:not(.is-active) .splide__list {
    display: flex;
  }
  .pickup_more_btn {
    width: 7rem;
    height: 7rem;
    margin-top: 6rem;
    transition: .3s;
    padding: 0;
  }
  .pickup_more_btn:hover {
    opacity: .75;
  }
  #pickup.is-expanded .pickup_more_icon {
    background-image: url(../img/index/arrow_up.svg);
  }
  .trip_title {
    margin-bottom: 10rem;
  }
  .trip_title img {
    width: 66rem;
  }
  .trip_sub_title {
    font-size: 2.9rem;
    margin-bottom: 4.5rem;
  }
  .situation_img {
    margin-bottom: 6rem;
  }
  .pickup_item {
    width: 31rem;
    margin-right: 4.7rem;
    margin-top: 4.5rem;
  }
  .pickup_item:nth-child(-n+3) {
    margin-top: 0;
  }
  .pickup_item:nth-child(3n) {
    margin-right: 0;
  }
  .pickup_item_title {
    font-size: 2.3rem;
  }
  .pickup_item_tags {
    margin-bottom: 2rem;
  }
  .pickup_item_tags li {
    font-size: 1.7rem;
    height: 3rem;
    min-width: 7.5rem;
    padding: 0 1rem;
  }
  .pickup_item_txt {
    font-size: 1.7rem;
  }
}

/* ---------------------------------------------------------------------------------------------

　   ふるさと納税

--------------------------------------------------------------------------------------------- */
.furusato_title {
  text-align: center;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: .15em;
}
.furusato_title span {
  color: var(--mainColor);
}
.furusato_txt h3 {
  color: var(--mainColor);
  font-weight: 700;
  line-height: 2;
}
.furusato_txt p {
  line-height: 2.2;
  letter-spacing: .15em;
  font-weight: 700;
}
.howto_item_txt {
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.8;
}
.photo_bg img {
  width: 100%;
}
@media only screen and ( max-width : 767px ) {
  .furusato_title {
    font-size: 2.9rem;
    margin-bottom: 6rem;
  }
  .furusato_logo {
    width: 17.8rem;
    margin: 0 auto 5rem;
  }
  .furusato_txt h3 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 3rem;
  }
  .furusato_txt p {
    text-align: center;
    font-size: 1.5rem;
  }
  .furusato_point {
    margin: 5rem auto 10rem;
  }
  #howto {
    margin-bottom: 12rem;
  }
  .howto_inner {
    width: 27rem;
    margin: 0 auto 4rem;
  }
  .howto_item {
    display: flex;
    align-items: flex-end;
    flex-direction: row-reverse;
    margin-bottom: 3rem;
  }
  .howto_item01 {
    display: block;
    margin-bottom: 5rem;
  }
  .howto_item01 figure {
    width: 13.2rem;
    margin: 0 auto 3rem;
  }
  .howto_item01 .howto_item_txt span {
    color: var(--mainColor);
  }
  .howto_item_txt {
    font-size: 1.8rem;
    text-align: center;
  }
  .howto_item01 .btn {
    max-width: 27rem;
    margin: 1.5rem auto 0;
  }
  .howto_arrow {
    display: none;
  }
  .howto_item_img {
    width: 9rem;
    margin-left: 1.8rem;
  }
  .howto_item_txt {
    width: calc(100% - 10.8rem);
  }
  .howto_item01 .howto_item_txt {
    width: 100%;
  }
  .howto_item02 .howto_item_txt:before,
  .howto_item03 .howto_item_txt:before,
  .howto_item04 .howto_item_txt:before {
    content: "";
    display: block;
    width: 4.8rem;
    height: 5.5rem;
    margin: 0 auto;
  }
  .howto_item02 .howto_item_txt:before {
    background: url(../img/index/1.svg) no-repeat center / 100%;
  }
  .howto_item03 .howto_item_txt:before {
    background: url(../img/index/2.svg) no-repeat center / 100%;
  }
  .howto_item04 .howto_item_txt:before {
    background: url(../img/index/3.svg) no-repeat center / 100%;
  }
  .select_img {
    margin-bottom: 5rem;
  }
  .select_txt {
    text-align: center;
    font-weight: 700;
    font-size: 1.9rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    letter-spacing: .15em;
  }
  .select_txt span {
    color: var(--mainColor);
  }
}
@media print, screen and ( min-width : 768px ) {
  #furusato {
    padding: 20rem 0;
  }
  .furusato_title {
    font-size: 5.8rem;
    margin-bottom: 12rem;
  }
  .furusato_logo {
    width: 35.5rem;
  .howto_item01 .btn:after {
    width: 2.4rem;
    height: 2.4rem;
  }
    margin-right: 9rem;
  }
  .furusato_txt {
    width: calc(100% - 44.5rem);
  }
  .furusato_txt h3 {
    font-size: 3.7rem;
    margin-bottom: 3rem;
  }
  .furusato_txt p {
    font-size: 2.8rem;
  }
  .furusato_point {
    margin: 16rem auto 21rem;
  }
  #howto {
    margin-bottom: 28rem;
  }
  .howto_inner {
    margin-bottom: 5rem;
  }
  .howto_item {
    flex: auto;
    text-align: center;
  }
  .howto_item01 {
    width: 25rem;
  }
  .howto_item01 .btn {
    font-size: 1.9rem;
    width: 19rem;
    margin: 0 auto;
    height: 4.8rem;
    border-width: .2rem;
    padding-right: 5rem;
    margin-top: 1.5rem;
  }
  .howto_item01 .btn:after {
    width: 2.8rem;
    height: 2.8rem;
  }
  .howto_arrow {
    width: 7.4rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .howto_arrow img {
    width: 2.6rem;
  }
  .howto_item_img img {
    height: 27.4rem;
    width: auto;
  }
  .howto_item_txt {
    font-size: 2.2rem;
    margin-top: 1.5rem;
  }
  .select_img {
    margin-bottom: 10rem;
  }
}

/* ---------------------------------------------------------------------------------------------

　   PLAN

--------------------------------------------------------------------------------------------- */
#plan {
  background: var(--mainColor);
}
.plan_title {
  text-align: center;
}

.spot_item,
.spot_item_img {
  position: relative;
}
.spot_item:last-child {
  margin-bottom: 0;
}
.spot_item_label {
  position: absolute;
  z-index: 2;
}
.spot_item_title {
  line-height: 1.7;
}
.spot_item_info {
  background: #fff;
}
.spot_item_txt {
  color: #fff;
  position: relative;
}
.spot_item_txt_txt {
  font-weight: 700;
  line-height: 1.8;
  text-align: justify;
}
.spot_item_price {
  font-weight: 700;
  line-height: 1;
}
.spot_item_price span {
  color: var(--mainColor);
}
.stay_title {
  text-align: center;
}
.stay_sub_title {
  color: #fff;
  font-weight: 700;
  text-align: center;
  letter-spacing: .15em;
}
.stay_item {
  color: #fff;
}
.stay_item_title {
  letter-spacing: .1em;
}
.stay_item_txt {
  font-weight: 700;
  text-align: justify;
  line-height: 1.8;
}
.stay_btn .btn:last-child {
  margin-bottom: 0;
}
#instagram a {
  display: block;
  margin: 0 auto;
}
@media only screen and ( max-width : 767px ) {
  .plan_title {
    margin-bottom: 6rem;
  }
  .spot_list {
    max-width: 28.5rem;
    margin: 0 auto;
  }
  .spot_item {
    margin-bottom: 10rem;
  }
  .spot_item:after {
    content: "";
    width: 3rem;
    height: 1.7rem;
    background: url(../img/index/arrow_down.svg) no-repeat center / contain;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -5.4rem;
  }
  .spot_item:last-child:after {
    content: none;
  }
  .spot_item_txt {
    display: flex;
    flex-direction: column;
  }
  .spot_item_label {
    width: 7.5rem;
    height: 7.5rem;
    top: -1.8rem;
    left: -2.4rem;
  }
  .spot_item_img {
    margin-bottom: 1rem;
    order: 1;
  }
  .spot_item_title {
    font-size: 1.9rem;
    margin-bottom: 1rem;
    order: 1;
  }
  .spot_item_txt_txt {
    order: 3;
  }
  .spot_item_info {
    order: 2;
    display: flex;
    align-items: center;
    height: 3.4rem;
    border-radius: 4rem;
    padding: 0 2rem;
    position: relative;
    color: var(--mainColor);
    max-width: 24rem;
    margin-bottom: 1.5rem;
  }
  .spot_item_info:before {
    content: "";
    width: .2rem;
    height: 100%;
    background: var(--mainColor);
    position: absolute;
    top: 0;
    left: 10rem;
  }
  .spot_item_logo {
    width: 6.6rem;
    margin-right: 3rem;
  }
  .spot_item_price {
    width: calc(100% - 9.6rem);
    letter-spacing: .1em;
  }
  #stay {
    margin-top: 5rem;
  }
  .stay_title {
    margin-bottom: 10rem;
  }
  .stay_title img {
    width: 26.5rem;
  }
  .stay_sub_title {
    font-size: 2.3rem;
    margin-bottom: 2rem;
  }
  .stay_inner {
    max-width: 28.5rem;
    margin: 0 auto 5rem;
  }
  .stay_item {
    margin-bottom: 3rem;
  }
  .stay_item:last-child {
    margin-bottom: 0;
  }
  .stay_item_title {
    font-size: 1.9rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
  }
  .stay_item_img img {
    width: 100%;
  }
  .stay_btn {
    margin-bottom: 6rem;
  }
  .stay_btn .btn {
    margin-bottom: 2rem;
    max-width: 27rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  .plan_title {
    margin-bottom: 12rem;
  }
  .spot_item {
    margin-bottom: 9.2rem;
  }
  .spot_item_img {
    width: 31rem;
    margin-right: 4rem;
  }
  .spot_item_img:after {
    content: "";
    width: 2.5rem;
    height: 1.5rem;
    background: url(../img/index/arrow_down.svg) no-repeat center / contain;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -5.4rem;
  }
  .spot_item:last-child .spot_item_img:after {
    content: none;
  }
  .spot_item_label {
    width: 8.8rem;
    height: 8.8rem;
    top: -2.4rem;
    left: -2.4rem;
  }
  .spot_item_txt {
    width: calc(100% - 35rem);
  }
  .spot_item_info {
    width: 22rem;
    height: 22rem;
    margin-left: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    color: #222;
  }
  .spot_item_title {
    font-size: 3.1rem;
    margin-bottom: 2rem;
  }
  .spot_item_txt_txt {
    font-size: 1.7rem;
    margin-right: 26.5rem;
  }
  .spot_item_logo {
    width: 14.8rem;
    margin-bottom: .5rem;
  }
  .spot_item_price {
    text-align: center;
    font-size: 3rem;
  }
  #stay {
    margin-top: 12rem;
  }
  .stay_title {
    margin-bottom: 22rem;
  }
  .stay_title img {
    width: 60.8rem;
  }
  .stay_sub_title {
    font-size: 4.4rem;
    margin-bottom: 4rem;
  }
  .stay_inner {
    margin-bottom: 9rem;
  }
  .stay_item {
    width: 30.8rem;
  }
  .stay_item_title {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
  }
  .stay_item_txt {
    font-size: 1.7rem;
  }
  .stay_btn {
    margin-bottom: 12rem;
  }
  .stay_btn .btn {
    margin-bottom: 6rem;
  }
  #instagram a {
    width: 80rem;
  }
}

/* ---------------------------------------------------------------------------------------------

　   FAQ

--------------------------------------------------------------------------------------------- */
#faq {
  background: url(../img/index/dot.jpg) no-repeat center / cover;
}
.faq_inner {
  background: #fff;
}
.faq_item:last-child {
  margin-bottom: 0;
}
.faq_item_title,
.faq_item_txt {
  position: relative;
}
.faq_item_title:before,
.faq_item_txt:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
}
.faq_item_title:before {
  background: url(../img/index/q.svg) no-repeat center / contain;
}
.faq_item_txt:before {
  background: url(../img/index/a.svg) no-repeat center / contain;
}
.faq_item_title {
  color: var(--mainColor);
  letter-spacing: .1em;
}
.faq_item_txt p {
  text-align: justify;
  font-weight: 500;
  letter-spacing: .05em;
}
@media only screen and ( max-width : 767px ) {
  .faq_inner {
    border-radius: 1.5rem;
    padding: 4.5rem 2rem;
  }
  .faq_list {
    margin-bottom: 3rem;
  }
  .faq_item {
    margin-bottom: 4.5rem;
  }
  .faq_item_title:before,
  .faq_item_txt:before {
    width: 3.4rem;
    height: 3.4rem;
  }
  .faq_item_title,
  .faq_item_txt {
    padding-left: 4rem;
  }
  .faq_item_title {
    font-size: 1.5rem;
    min-height: 3.4rem;
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
  }
  .faq_item_txt {
    font-size: 1.3rem;
  }
  .faq_item_txt p {
    line-height: 1.7;
  }
}
@media print, screen and ( min-width : 768px ) {
  .faq_inner {
    border-radius: 3rem;
    padding: 7rem 8rem 10rem;
  }
  .faq_list {
    margin-bottom: 9rem;
  }
  .faq_item {
    margin-bottom: 6rem;
  }
  .faq_item_title:before,
  .faq_item_txt:before {
    width: 6.5rem;
    height: 6.5rem;
  }
  .faq_item_title,
  .faq_item_txt {
    padding-left: 8rem;
  }
  .faq_item_title {
    font-size: 2.9rem;
    height: 6.5rem;
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
  }
  .faq_item_txt {
    font-size: 2rem;
  }
  .faq_item_txt p {
    line-height: 2;
  }
}

/* ---------------------------------------------------------------------------------------------

　   ONE STOP

--------------------------------------------------------------------------------------------- */
.onestop_title {
  position: relative;
  text-align: center;
  letter-spacing: .1em;
  line-height: 1.8;
}
.onestop_title:before {
  content: "";
  background: url(../img/index/ico-mail.svg) no-repeat center / contain;
  display: block;
  margin: 0 auto 2rem;
}
.onestop_txt {
  text-align: center;
  font-weight: 500;
  line-height: 1.7;
}
@media only screen and ( max-width : 767px ) {
  #onestop {
    background: #e7f2f7;
  }
  .onestop_title {
    font-size: 1.7rem;
    margin-bottom: 3.5rem;
  }
  .onestop_title:before {
    width: 6.5rem;
    height: 3.9rem;
  }
  .onestop_txt {
    margin-top: 4rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  .onestop_title {
    font-size: 3rem;
    margin-bottom: 5rem;
  }
  .onestop_title:before {
    width: 10.4rem;
    height: 6.2rem;
  }
  .onestop_img {
    max-width: 80.5rem;
    margin: 0 auto;
  }
  .onestop_txt {
    font-size: 1.7rem;
    margin-top: 5rem;
  }
}

/* ---------------------------------------------------------------------------------------------

　   加盟店募集

--------------------------------------------------------------------------------------------- */
#join {
  background: var(--mainColor);
  color: #fff;
}
.join_title {
  letter-spacing: .1em;
}
.join_title span {
  display: inline-block;
  position: relative;
}
.join_title span:before {
  content: "";
  background: url(../img/ico-shop.svg) no-repeat center / contain;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.join_txt {
  line-height: 1.8;
  font-weight: 700;
}
@media only screen and ( max-width : 767px ) {
  .join_title {
    text-align: center;
    font-size: 3.1rem;
    margin-bottom: 3rem;
  }
  .join_title span {
    padding-left: 5rem;
  }
  .join_title span:before {
    width: 3.4rem;
    height: 3rem;
  }
  .join_inner {
    margin-bottom: 4.5rem;
  }
  .join_txt {
    font-size: 1.8rem;
    text-align: center;
    letter-spacing: .1em;
    margin-bottom: 5rem;
  }
  .join_logo {
    width: 14.5rem;
    margin: 0 auto;
  }
  #join .btn {
    max-width: 100%;
    font-size: 1.5rem;
    height: 3.6rem;
  }
  #join .btn:after {
    width: 2.2rem;
    height: 2.2rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  .join_inner {
    max-width: 84rem;
    margin: 0 auto 9rem;
  }
  .join_content {
    width: 50rem;
  }
  .join_logo {
    width: 26rem;
  }
  .join_title {
    font-size: 5rem;
    margin-bottom: 3rem;
  }
  .join_title span {
    padding-left: 7.6rem;
  }
  .join_title span:before {
    width: 5.4rem;
    height: 4.8rem;
  }
  .join_txt {
    font-size: 2.8rem;
  }
  #join .btn {
    font-size: 2.7rem;
    max-width: 64rem;
  }
}

/* ---------------------------------------------------------------------------------------------

　   XXX

--------------------------------------------------------------------------------------------- */

@media only screen and ( max-width : 767px ) {
}
@media print, screen and ( min-width : 768px ) {
}

/* ---------------------------------------------------------------------------------------------

　   テキストアニメーション

--------------------------------------------------------------------------------------------- */

/* アニメーション要素の基本スタイル */
.anime-up {
  opacity: 1;
}
