@charset "utf-8";
/* CSS Document */

@-ms-viewport
{
  width: device-width;
  initial-scale: 1;
}
@viewport
{
  width: auto;
  initial-scale: 1;
}

.pc_appear {
  display: none;
}

.sp_appear {
  display: block;
}

html {
  font-size: 62.5%;
}

body {
  font-family: 'Noto Sans JP', sans-serif, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic';
  color: #000;
  max-width: 750px;
  margin: 0 auto;
}
#contInner {
  margin-left: 0;
}

header .logo {
  padding-bottom: 5px;
}
.logo2 img {
  border-top: 1px solid #000;
}
#wrapper {
  overflow: visible;
}
#contents, #wrapper.top #main {
  margin-bottom: 0;
}

#wrapper.top #main {
  padding-top: 0;
}

#pagetop, footer .logo {
  display: none !important;
  opacity: 0 !important;
}
footer .container {
  border-top: none;
}


.kv_area {
  background-color: #fff;
  padding-bottom: 20px;
}


/* モーダル */
.modal-container{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	background: rgba(0,0,0,50%);
	padding: 40px;
	overflow: auto;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
  box-sizing: border-box;
  z-index: 100;
}
/*モーダル本体の擬似要素の指定*/
.modal-container:before{
	content: "";
	display: inline-block;
	vertical-align: middle;
}
/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active{
	opacity: 1;
	visibility: visible;
}
/*モーダル枠の指定*/
.modal-body{
	position: relative;
  top: 5%;
}
/*モーダル内のコンテンツの指定*/
.modal-content{
  
}
.modal_close {
  display: block;
  position: absolute;
  top: 5%;
  right: 5%;
  background-color: #C3C3C3;
  width: 27px;
  height: 27px;
  border-radius: 50%;
}
.modal_close_inner {
  display: block;
  position: relative;
}
.modal_close::before, .modal_close::after { /* 共通設定 */
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px; /* 棒の幅（太さ） */
  height: 17px; /* 棒の高さ */
  background: #fff;
}
.modal_close::before {
  transform: translate(-50%,-50%) rotate(45deg);
}
 
.modal_close::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}

.modal-close:hover {
  opacity: 0.7;
  cursor: pointer;
}


/* swiper */
.swiper-container {
  position: relative;
  margin: 0 20px;
}

.swiper-slide {
  transition: all 0.3s;
}

.swiper-slide:first-child {
  margin-top: 0;
}

.swiper-button_nav {
  position: absolute;
  width: 100%;
  top: 50%;
}

.swiper-button-prev,
.swiper-button-next {
  background: #399D26;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  top: 20%;
  z-index: 10;
  cursor: pointer;
  opacity: 1;
  transition: all 0.5s;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  opacity: 0.7;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: '';
  position: relative;
  display: block;
  left: calc(50% - 5px);
  top: 50%;
	width: 15px;
	height: 15px;
	border: 7.5px solid rgba(255,255,255,0%);
	border-right: 7.5px solid #fff;
  box-sizing: border-box;
  transform: translate(-50%, -50%);
}

.swiper-button-prev {
  left: -15px;
  right: auto;
}

.swiper-button-next {
  right: -15px;
  left: auto;
  transform: scale(-1, 1);
}

.swiper-pagination {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.swiper-pagination-bullet {
  display: block;
  width: 14px !important;
  height: 14px !important;
  background-image: none !important;
  background-color: #CCDDE6 !important;
  border-radius: 50% !important;
  margin: 0 5px;
}

.swiper-pagination-bullet:after {
  border-radius: 50%;
  border: none !important
}

.swiper-pagination-bullet-active {
  background-color: #4CACE2 !important
}

.swiper-slide-active {
  /* margin-top: 20px; */
  /* margin-bottom: 0; */
  transition: all 0.3s;
}


/* コンテント */
.shop_content_area {
  overflow: visible;
  position: relative;
  margin-top: 21.333333333%;
}
.content_lead + .shop_content_area {
  margin-top: 12.537313432%;
}

.shop_content_area.mama_choice::before {
  content: '';
  width: min(104px, 27.733333333%);
  height: 18.84057971%;
  position: absolute;
  top: -30px;
  left: 0;
  background: url(../img/mama-choice.png);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 10;
}
.shop_content_area.work_women_choice::before {
  content: '';
  width: min(104px, 27.733333333%);
  height: 18.84057971%;
  position: absolute;
  top: -30px;
  left: 0;
  background: url(../img/work-women-choice.png);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 10;
}
.shop_content_area.everybody_choice::before {
  content: '';
  width: min(104px, 27.733333333%);
  height: 18.84057971%;
  position: absolute;
  top: -30px;
  left: 0;
  background: url(../img/everybody-choice.png);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 10;
}
.shop_content_area.two_of_us_choice::before {
  content: '';
  width: min(104px, 27.733333333%);
  height: 18.84057971%;
  position: absolute;
  top: -30px;
  left: 0;
  background: url(../img/two-of-us-choice.png);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 10;
}


.content_area {
  padding-bottom: 24%;
}

.nav_area + .content_area {
  margin-top: 10%;
}
.nav_list {
  width: 95%;
  margin: 0 auto;
}
.nav_item.noritake_forest_btn::before {
  content: '';
  display: block;
  width: 90%;
  border-top: 1px dashed #707070;
  padding: 8px;
  margin: 10px auto 0;
}

.tea_time.content_area {
  padding-bottom: 18%;
}

.content_lead {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.7rem;
  line-height: 40px;
  text-align: center;
  padding: 0 15px;
  margin-top: 15px;
}
.shop_info_area, .shop_basic_info_area {
  text-align: left;
  margin: 0 15px;
}
.item_ttl {
  color: #1EB2EB;
  font-size: 2.2rem;
  line-height: 32px;
  letter-spacing: 1.76px;
  font-weight: bold;
  margin-top: 8%;
}
.day .item_ttl {
  color: #F38200;
}
.tea_time .item_ttl {
  color: #C78E5D;
}
.delicious_present {
  background-color: #FFFFE5;
  padding-bottom: 18%;
}
.delicious_present .for_accordion {
  background: linear-gradient(rgba(255,255,255,0) 0%, #FFFFE5 60%);
}
.delicious_present .content_lead {
  color: #C78E5D;
  letter-spacing: 1.7px;
  font-weight: bold;
  font-family: 'Noto Sans JP', sans-serif, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic';
  margin-top: -1.5em;
}
.delicious_present .content_lead + .shop_content_area {
  margin-top: 10%;
}
.delicious_present .shop_content_area {
  margin-top: 11%;
}
.delicious_present .shop_info {
  color: #399D26;
  margin-top: 30px;
}
.delicious_present .item_img {
  padding: 0 20px;
}

.evening {
  background-color: #000;
  padding-bottom: 18%;
}
.evening .item_ttl,
.evening .content_lead,
.evening .shop_info_area,
.evening .shop_basic_info_area {
  color: #fff;
}
.evening .shop_content_area {
  margin-top: 15%;
}
.evening .for_accordion {
  background: linear-gradient(rgba(255,255,255,0) 0%, #000 60%);
}
.evening .shop_basic_info_area {
  border-top: 1px dashed #fff;
}
.noritake_forest {
  background-color: #9DC814;
  padding-bottom: 15%;
}
.noritake_forest .shop_content_area {
  margin-top: 15%;
}
.noritake_forest .content_lead {
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 32px;
  text-align: left;
  padding: 0 20px;
  font-family: 'Noto Sans JP', sans-serif, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic';
}
.noritake_forest .item_ttl,
.noritake_forest .content_lead,
.noritake_forest .shop_info_area,
.noritake_forest .shop_basic_info_area {
  color: #fff;
}
.noritake_forest .shop_basic_info_area {
  border-top: 1px dashed #fff;
}
.noritake_forest .for_accordion {
  background: linear-gradient(rgba(255,255,255,0) 0%, #9DC814 60%);
}
.forest_walk_list {
  background-color: #9DC814;
  padding-bottom: 22%;
}
.forest_walk_list .shop_content_area {
  background-color: #fff;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 6px 6px 0px #0000001A;
  border-radius: 10px;
  padding: 20px;
  margin: 0 20px;
}
.forest_walk_list .shop_content_area {
  margin-top: 26px;
}
.forest_walk_list .shop_content_area.first {
  margin-top: 0;
}
.forest_content_img {
  margin-bottom: 30px;
}
.forest_walk_list .shop_info_area {
  margin: 0;
}
.forest_walk_list .item_ttl {
  color: #399D26;
}
.forest_walk_list .item_text {
  color: #707070;
}


.shop_info {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.3em;
  margin-top: 20px;
}

.shop_basic_info_area {
  display: none;
  font-size: 1.6rem;
  line-height: 28px;
  text-align: left;
  border-top: 1px dashed #000;
  padding-top: 22px;
  margin-top: 22px;
}

.shop_info_outer.active .shop_basic_info_area {
  display: block;
}

.accordion_open_close {
  position: relative;
  text-align: center;
  font-size: 1.5rem;
  line-height: 26px;
  letter-spacing: 1.5px;
  font-weight: bold;
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 6px;
  padding: 3px;
  margin-top: 26px;
}

.accordion_open_close::after {
  content: '';
  position: absolute;
  left: 10%;
  top: calc(50% - 3px);
  width: 10px;
  height: 10px;
  border-top: none;
  border-left: none;
  border-bottom: 3px solid #000;
  border-right: 3px solid #000;
  transform: translate(-50%, -50%) rotate(45deg);
}

.for_accordion {
  position: relative;
  background: linear-gradient(rgba(255,255,255,0) 0%, #fff 60%);
  padding-top: 100px;
  margin: -100px 15px 0;
  cursor: pointer;
}

.item_text {
  font-size: 1.6rem;
  line-height: 28px;
  margin-top: 10px;
  overflow: hidden;
  display: -webkit-box;
  max-height: 8em;
}

.shop_info_outer.active .item_text {
  display: block;
  overflow: visible;
  max-height: fit-content;
}

.shop_info_outer.active  .for_accordion {
  margin-top: 0;
  padding-top: 0;
}

.shop_info_outer.active  .accordion_open_close::after {
  top: calc(50% + 3px);
  transform: translate(-50%, -50%) rotate(-135deg);
}

.shop_item_list {
  margin-top: 12px;
  overflow: hidden;
  max-height: 8em;
}
.shop_item {
  font-size: 1.6rem;
  line-height: 28px;
  font-weight: bold;
}
.shop_info_outer.active .shop_item_list {
  max-height: fit-content;
}
.item_price {
  font-weight: normal;
}


/* access info */
.recommend_information_title {
  margin-top: 16%;
}
.access_area {
  padding-bottom: 80px;
}
.access_info {
  width: min(90%, 1280px);
  margin: 11px auto 0;
}

.access_info_for {
  color: #75B745;
  font-weight: bold;
  font-size: 2.2rem;
  letter-spacing: 0.55px;
  line-height: 33px;
}

.access_info_txt {
  font-size: 1.4rem;
  letter-spacing: 0.35px;
  line-height: 22px;
  margin-top: 13px;
}

.access_info_item:not(:first-child) {
  margin-top: 30px;
}

.access_info_txt a {
  color: #0752B7;
  text-decoration: underline;
}

.access_info_txt a:hover {
  text-decoration: none;
}

.access-map {
  width: min(90%, 1280px);
  margin: 30px auto 0;
  margin-bottom: 20px;
  border-radius: 5px;
  padding: 10px;
  background-color: #fff;
}

.access-map-wrapper {
  padding-bottom: 200px;
  position: relative;
}

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

.access_area {
  padding-bottom: 60px;
}

.access_area .check_btn{
  margin: 0 auto;
  padding-top: 4%;
  padding-bottom: 0;
  text-align: center;
}
.access_area .check_btn a {
  background: #e79402;
  color: #fff;
  font-weight: bold;
  font-size: 22px;
  letter-spacing: 4px;
  padding: 30px 0;
  border-radius: 80px;
  text-decoration: none;
  position: relative;
}

.access_area .check_btn a {
  background-color: #75B745;
  width: 92%;
  padding: 5% 0;
  font-size: 20px;
}

.access_area .check_btn a::after {
  content: '';
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: calc(50% - 5px);
  transform: translate(-50%) rotate(45deg);
  right: 10%;
}
#wrapper .check_btn a {
  display: inline-block;
}

.btn_top {
  opacity: 0;
  position: fixed;
  bottom: 0;
  z-index: 100;
  transition: all 1s;
}
.btn_top_space {
  opacity: 0;
}

@media  screen and (min-width: 767px) {
  .pc_appear {
    display: block;
  }
  .sp_appear {
    display: none;
  }
  a img:hover {
    opacity: 0.7;
  }

  header {
    padding: 0;
  }
  
  footer {
    max-width: 750px;
    margin: 0 auto;
    z-index: 20;
  }

  #footerBnrLi {
    padding: 10px 10px 0;
    margin: 0 -5px;
    overflow: hidden;
    border-left: none;
    width: auto;
  }
  #footerBnrLi li {
    position: relative;
    float: left;
    width: 50%;
    padding: 0 5px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin: 0 0 10px;
  }

  footer .pageLi {
    display: none;
  }
  footer .logo {
    float: none;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-right: 0;
  }
  footer .inner {
    padding: 0;
    overflow: visible;
  }

  #footerInfo {
    background: #eee;
    padding: 15px 10px 0;
    color: #333;
  }
  #footerInfo .infoWrap {
    float: none;
    padding-bottom: 15px;
  }
  #footerInfo .address {
    float: none;
    margin-left: 0;
    margin-bottom: 0;
  }
  #footerInfo .address + p {
    margin-top: 15px;
  }
  #footerInfo .phoneTxt {
    color: #333;
  }
  #copyright {
    position: relative;
    margin: 0 -10px;
    text-align: center;
    color: #fff;
    right: 0;
    bottom: 0;
    font-size: 11px;
    background: #333;
    padding: 10px 0;
  }
}