@charset "utf-8";

/********************************************************

  シャインマスカット・ぶどう狩り特集

********************************************************/

/*
  共通パーツ
=======================================================*/
/*– Color ———————–*/
[data-color="1"] {
  color: #35A22B;
}
[data-color="2"] {
  color: #A41778;
}


/*– Button ———————–*/
.myBlockBtn {
  margin-top: 48px;
  text-align: center;
}

.myBlockBtn>a {
  border-radius: 100vw;
  color: white;
  display: inline-block;
  font-weight: 700;
  line-height: 1.3;
  padding: 16px;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  transition-duration: .4s;
  z-index: 2;
}

.myBlockBtn>a::after {
  background: white;
  border-radius: 50%;
  content: "";
  display: block;
  margin: auto;
  padding-top: 100%;
  height: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: -1;
  transform: translateY(-50%) scale(0.1);
  transition: opacity .4s, transform 0s;
  transition-delay: 0s, .3s;
}

.myBlockBtn>a:hover::after {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  transition: opacity .6s, transform .4s ease-in-out;
  transition-delay: 0s;
}

.myBlockBtn>a:hover {
  opacity: 1;
}

.myBlockBtn.-green>a {
  background-color: #35A22B;
  border: 2px #35A22B solid;
}

.myBlockBtn.-green>a:hover {
  background-color: white;
  color: #35A22B;
}

.myBlockBtn.-purple>a {
  background-color: #A41778;
  border: 2px #A41778 solid;
}

.myBlockBtn.-purple>a:hover {
  background-color: white;
  color: #A41778;
}

@media screen and (max-width: 767.98px) {
  .myBlockBtn {
    margin-top: 32px;
  }
  .modBtn {
    font-size: 14px;
    font-weight: 400;
    padding: 12px 16px;
    max-width: 310px;
  }
}


/*– Flexbox ———————–*/
.modFlex {
  box-sizing: border-box;
  display: flex;
}

.modFlex.-col2 {
  gap: 16px 24px;
}

.modFlex.-col2 .modFlex__item {
  width: calc(100% / 2);
}

.modFlex.-col3 {
  gap: 40px 24px;
}

.modFlex.-col3 .modFlex__item {
  display: flex;
  flex-direction: column;
  width: calc(100% / 3);
}

.modFlex__item-img {
  border-radius: 12px;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.modFlex__item-img.-premium::before {
  background-color: #FFDF58;
  color: #6E5524;
  content: "プレミアム";
  display: inline-block;
  font-size: 16px;
  padding: 3px 28px 5px;
  position: absolute;
  top: 0;
  left: 0;
}

.modFlex__item-footer {
  margin-top: auto;
}

.modFlex__item-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
}

.modFlex__item-text {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: .02em;
}

.modFlex__item-season {
  display: flex;
  align-items: center;
  gap: 0 8px;
  font-weight: 700;
}

.modFlex__item-season::before {
  background-color: #D9D9D9;
  border-radius: 3px;
  color: #3b3b3b;
  content: "旬の時期";
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  padding: 5px 12px;
}

@media screen and (max-width: 991px) {
  .modFlex__item-season {
    font-size: 14px;
  }
  .modFlex__item-season::before {
    padding: 4px 8px;
    font-size: 12px;
  }
}


@media screen and (max-width: 767.98px) {
  .modFlex {
    flex-wrap: wrap;
  }
  .modFlex.-col2 .modFlex__item,
  .modFlex.-col3 .modFlex__item {
    width: 100%;
  }
  .modFlex__item-season {
    font-size: 16px;
  }
  .modFlex__item-season::before {
    padding: 5px 12px;
    font-size: 14px;
  }
}


/*– Title ———————–*/
.modTitle {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 56px;
  text-align: center;
  position: relative;
}

.modTitle span {
  display: inline-block;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.modTitle.-type01 {
  margin-bottom: 56px;
}

.modTitle.-type01 span {
  font-size: 34px;
  padding: 14px 66px 23px;
}

.modTitle.-type01 span::before {
  background: url(/kokunai/bus/fruits/grape/kanto/img/img_ttl_bg.svg) no-repeat center center;
  background-size: 100% auto;
  content: "";
  display: block;
  min-height: 69px;
  min-width: 335px;
  max-height: 83px;
  max-width: 507px;
  height: calc(83 / 768 * 100vw);
  width: calc(507 / 768 * 100vw);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.modTitle.-type02 {
  font-size: 26px;
  margin-bottom: 48px;
}

.modTitle.-type02 .modTitle__deco {
  background-color: white;
  padding: 0 40px;
}

.modTitle.-type02::before {
  background-color: #E4E4E4;
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

@media screen and (max-width: 767.98px) {
  .modTitle {
    font-size: 24px;
    margin-bottom: 32px;
  }
  .modTitle.-type01 {
    margin-bottom: 40px;
  }
  .modTitle.-type01 span {
    font-size: 24px;
    padding: 14px 32px 21px;
  }
  .modTitle.-type01 span::before {
    background: url(/kokunai/bus/fruits/grape/kanto/img/img_ttl_bg.svg) no-repeat center center;
    background-size: 100% auto;
  }
  .modTitle.-type02 {
    font-size: 20px;
    padding-bottom: 16px;
    margin-bottom: 32px;
  }
  .modTitle.-type02::before {
    width: 43px;
    top: auto;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
  }
  .modTitle.-type02 .modTitle__deco {
    padding: 0;
  }
}

@media screen and (max-width: 374.98px ) {
  .modTitle.-type01 span {
    font-size: 20px;
    padding: 14px 16px 18px;
  }
  .modTitle.-type01 span::before {
    background-size: calc(100% - 30px) auto;
  }
}


/*– アンカーリンク ———————–*/
.myBlockAnchor {
  box-shadow: 0px 1px 4px 1px rgba(0, 0, 0, 0.15);
  padding: 16px 40px;
}

.myBlockAnchor__nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

.myBlockAnchor__nav li {
  padding: 0 16px;
}

.myBlockAnchor__nav li a {
  font-size: 14px;
  font-weight: 700;
  padding: 0 16px;
}

.myBlockAnchor__nav li + li {
  border-left: 1px #C0C5CC solid;
}

@media screen and (max-width: 991.98px) {
  .myBlockAnchor {
    padding: 20px;
  }
}

@media screen and (max-width: 767.98px) {
  .myBlockAnchor__nav {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 8px 0;
  }
  .myBlockAnchor__nav li {
    border-bottom: 1px #C0C5CC solid;
    padding: 0;
    width: 100%;
  }

  .myBlockAnchor__nav li + li {
    border-left: none;
  }
  .myBlockAnchor__nav li a {
    font-size: 13px;
    padding: 0;
    padding-bottom: 8px;
  }
  .myBlockAnchor__nav li:last-child {
    border-bottom: none;
  }.myBlockAnchor__nav li:last-child a {
    padding-bottom: 0;
  }
}


/*
  メインコンテナー
=======================================================*/
/*– メインビジュアル ———————–*/
.myBlockMv {}


/*– シャインマスカット狩り ———————–*/
.myBlockFruit.-shineMuscat {
  padding: 90px 0 80px;
}

.myBlockFruit.-shineMuscat .modFlex__item-title {
  font-size: 24px;
}

.myBlockFruit.-shineMuscat .modFlex__item-text {
  font-size: 16px;
  margin-top: 16px;
  letter-spacing: .075em;
}

.myBlockFruit.-shineMuscat .modFlex__item-season {
  margin-top: 32px;
}

@media screen and (max-width: 767.98px) {
  .myBlockFruit.-shineMuscat {
    padding: 65px 0 56px;
  }
  .myBlockFruit.-shineMuscat .modFlex__item-title {
    font-size: 20px;
  }
  .myBlockFruit.-shineMuscat .modFlex__item-text {
    margin-top: 12px;
  }
  .myBlockFruit.-shineMuscat .modFlex__item-season {
    margin-top: 16px;
  }
}


/*– おすすめシャインマスカット狩り ———————–*/
.myBlockRecommend.-shineMuscat {
  padding: 0 0 88px;
}

@media screen and (max-width: 767.98px) {
  .myBlockRecommend.-shineMuscat {
    padding: 0 0 88px;
  }
}


/*– 基本情報 ———————–*/
.myBlockInformation {
  padding: 0 0 70px;
}

.myBlockInformation .modFlex__item img {
  width: auto;
}

.myBlockInformation .modFlex__item-title {
  color: #35a22b;
  margin-top: 21px;
  text-align: center;
}

.myBlockInformation .modFlex__item-text {
  margin-top: 18px;
}

@media screen and (max-width: 767.98px) {
  .myBlockInformation {
    padding: 36px 0 73px;
  }
}


/*– ぶどう狩り ———————–*/
.myBlockFruit.-grape {
  padding: 72px 0 90px;
}

.myBlockFruit.-grape .modFlex__item-title {
  margin-top: 12px;
}

.myBlockFruit.-grape .modFlex__item-text {
  margin-top: 0;
  margin-bottom: 16px;
}

@media screen and (max-width: 767.98px) {
  .myBlockFruit.-grape {
    padding: 36px 0 56px;
  }
}


/*– おすすめぶどう狩り ———————–*/
.myBlockRecommend.-grape {
  padding: 0 0 140px;
}

@media screen and (max-width: 767.98px) {
  .myBlockRecommend.-grape {
    padding: 0 0 72px;
  }
}


/*– よくある質問 ———————–*/
.myBlockFaq {
  background-color: #FCFAF0;
}

.myBlockFaq {
  padding: 64px 0 80px;
}

.myBlockFaq__list dt {
  background-color: #E9ECF2;
  border-radius: 8px 8px 0px 0px;
  display: flex;
  align-items: flex-start;
  gap: 0 8px;
  font-size: 16px;
  font-weight: 700;
  padding: 16px;
  margin-top: 24px;
  position: relative;
}

.myBlockFaq__list dt:first-child {
  margin-top: 0;
}

.myBlockFaq__list dt::before {
  color: #66A4F9;
  content: "Q.";
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  top: -1px;
  width: 1.5em;
  flex-shrink: 0
}

.myBlockFaq__list dd {
  background-color: white;
  border: 2px #E9ECF2 solid;
  border-top: none;
  border-radius: 0px 0px 8px 8px;
  font-size: 14px;
  padding: 16px;
  margin-bottom: 24px;
}

@media screen and (max-width: 767.98px) {
  .myBlockFaq {
    padding: 48px 0 60px;
  }
  .myBlockFaq__list dt {
    font-size: 14px;
  }
}


/*– ツアーを探す ———————–*/
.myBlockSearch {
  padding: 80px 0 104px;
}

@media screen and (max-width: 767.98px) {
  .myBlockSearch {
    padding: 56px 0 88px;
  }
  .main .rn-searchMod__input:checked + .rn-searchMod__checkBox::after {
    width: 12px;
    height: 6px;
    top: 3px!important;
    left: 4px;
  }
}
