@charset "utf-8";

/********************************************************

  もも狩り特集

********************************************************/

/*
  共通パーツ
=======================================================*/
:root {
  --main-color: #E67770;
  --text-color: #2C2A29;
}

body {
  color: black;
}

.breadcrumb{
  width: 100%!important
}

.ui-static-section-wrapper {
  padding: 0;
  max-width: 100%;
}

/*– Color ———————–*/
[data-color="1"] {
  color: var(--main-color);
}

[data-color="2"] {
  background-color: #FFF0F4;
}


/*– Button ———————–*/
.myBlockBtn {
  margin-top: 48px;
  text-align: center;
}

.myBlockBtn>a {
  border-radius: 100vw;
  color: white;
  display: inline-block;
  font-weight: 700;
  line-height: 1;
  padding: 12px 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.-color01>a {
  background-color: var(--main-color);
  border: 2px var(--main-color) solid;
}

.myBlockBtn.-color01>a:hover {
  background-color: white;
  color: var(--main-color);
}

@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;
  font-weight: 700;
  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;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.modTitle.-type01 span::before {
  background: url(/kokunai/bus/fruits/peach/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: #FFF0F4;
  padding: 0 40px;
}

.modTitle.-type02::before {
  background-color: #AFAFAF;
  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/peach/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 {
  background-color: white;
  box-shadow: 0px 1px 4px 1px rgba(0, 0, 0, 0.15);
  padding: 16px 40px;
  position: relative;
  z-index: 1;
}

.myBlockAnchor__nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

.myBlockAnchor__nav li {
  padding: 0 16px;
}

.myBlockAnchor__nav li a {
  color: black;
  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 {
  position: relative;
}

.myBlockFruit.-shineMuscat .modFlex::after {
  background: url(/kokunai/bus/fruits/peach/kanto/img/bg_img01.png) no-repeat center center;
  background-size: 100% auto;
  content: "";
  display: block;
  height: 86px;
  width: 156px;
  position: absolute;
  bottom: -36px;
  right: -7vw;
}

.myBlockFruit.-shineMuscat .modFlex__item-title {
  color: var(--text-color);
  font-size: 24px;
}

.myBlockFruit.-shineMuscat .modFlex__item-text {
  font-size: 16px;
  margin-top: 16px;
  letter-spacing: .075em;
}

.myBlockFruit.-shineMuscat .modFlex__item-season {
  color: #3B3B3B;
  margin-top: 32px;
}

@media screen and (max-width: 1200px) {
  .myBlockFruit.-shineMuscat .modFlex::after {
    bottom: -40px;
    right: -38px;
  }
}

@media screen and (max-width: 767.98px) {
  .myBlockFruit.-shineMuscat {
    padding: 65px 0 56px;
  }
  .myBlockFruit.-shineMuscat .modFlex::after {
    height: 62px;
    width: 115px;
  }
  .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 20px;
  }
  .myBlockRecommend.-shineMuscat .myBlockSlider {
    padding-left: 20px;
    margin: calc(50% - 50vw);
    width: 100vw;
  }
}


/*– 基本情報 ———————–*/
.myBlockInformation {
  padding: 0 0 70px;
}

.myBlockInformation .modFlex__item img {
  width: auto;
}

.myBlockInformation .modFlex__item-title {
  color: var(--text-color);
  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;
  }
}


/*– メロンを楽しめるバスツアーが満載 ———————–*/
.myBlockOthers {
  padding: 0 0 88px;
}

.myBlockOthers .modFlex .modFlex__item-title {
  margin-top: 12px;
}

.myBlockOthers .modFlex .modFlex__item-text {
  margin-top: 2px;
}

@media screen and (max-width: 767.98px) {
  .myBlockOthers .modFlex  {
    padding: 0 10px;
  }
}

/*– メロン狩り ———————–*/
.myBlockFruit {
  padding: 72px 0 90px;
}

.myBlockFruit .modFlex__item-title {
  margin-top: 12px;
}

.myBlockFruit .modFlex__item-text {
  margin-top: 0;
  margin-bottom: 16px;
}

@media screen and (max-width: 767.98px) {
  .myBlockFruit {
    padding: 36px 0 56px;
  }
}


/*– おすすめメロン狩り ———————–*/
.myBlockRecommend {
  padding: 0 0 140px;
}

@media screen and (max-width: 767.98px) {
  .myBlockRecommend {
    padding: 0 0 72px;
  }
  .myBlockRecommend .container {
    padding: 0;
  }
  .myBlockRecommend .modTitle,
  .myBlockRecommend .myBlockBtn {
    padding: 0 20px;
  }
}


/*– よくある質問 ———————–*/
.myBlockFaq {
  background-color: #FCFAF0;
  padding: 64px 0 80px;
  position: relative;
}

.myBlockFaq::before {
  background: url(/kokunai/bus/fruits/peach/kanto/img/bg_img02.png) no-repeat center center;
  background-size: 100% auto;
  content: "";
  display: block;
  height: 137px;
  width: 174px;
  position: absolute;
  top: -52px;
  left: 20px;
}

.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: #E67770;
  content: "Q.";
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  top: -3px;
  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::before {
    height: 77px;
    width: 103px;
    top: -38px;
    left: 0;
  }
  .myBlockFaq__list dt {
    font-size: 14px;
  }
}


/*– ツアーを探す ———————–*/
.myBlockSearch {
  background-color: white;
  padding: 80px 0 104px;
}

@media screen and (max-width: 767.98px) {
  .myBlockSearch {
    padding: 56px 0 8px;
  }
  .main .rn-searchMod__input:checked + .rn-searchMod__checkBox::after {
    width: 12px;
    height: 6px;
    top: 3px!important;
    left: 4px;
  }
}
