@charset "UTF-8";
/*=======================================================================
# mixins
========================================================================*/
/* 共通 */
.ab {
  border: red solid 2px;
}

body {
  color: #333333;
  font-family: "ヒラギノ明朝 ProN", serif;
  line-height: 1.5;
}

img {
  width: 100%;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

a {
  text-decoration: none;
  color: black;
}
a:hover {
  opacity: 0.7;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0px auto;
}

.clear::after {
  content: "";
  clear: both;
  display: block;
}

.section-title {
  font-size: 30px;
  line-height: 80px;
}
@media screen and (max-width: 767px) {
  .section-title {
    font-size: 15px;
    line-height: 40px;
  }
}

/* header */
header {
  background-color: #fccf03;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 10px 0;
  z-index: 100;
  box-shadow: 3px 3px rgba(0, 0, 0, 0.16);
}

.header-logo-wrapper {
  display: flex;
  align-items: center;
}

.header-log {
  width: 65px;
}

.header-inner {
  display: flex;
  align-items: center;
}

.header-title {
  margin-left: 30px;
}

.header-nav {
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .header-nav {
    display: none;
  }
}

.header-nav-list {
  display: flex;
}

.header-nav-item:not(:first-child) {
  margin-left: 50px;
}

/* TOP */
.top {
  background-image: url(../img/top.jpg);
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 650px;
  margin-top: 73.71px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top {
    height: 200px;
  }
}

.top2 {
  background-image: url(../img/top2.jpg);
  background-size: contain;
  background-position: center;
  width: 100%;
  height: 650px;
  margin-top: 73.71px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top2 {
    height: 200px;
  }
}

.top3 {
  background-image: url(../img/top3.jpg);
  background-size: contain;
  background-position: center;
  width: 100%;
  height: 650px;
  margin-top: 73.71px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top3 {
    height: 200px;
  }
}

.top-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.top-title {
  font-size: 45px;
  font-weight: bold;
  color: white;
}
@media screen and (max-width: 767px) {
  .top-title {
    font-size: 18px;
  }
}

.swiper-button-next {
  width: 40px;
  height: 40px;
  background: url(../img/arrow-right.png) no-repeat center center/cover;
  margin-top: -20px;
  right: calc(50% - 600px);
}
.swiper-button-next::after {
  display: none;
}

.swiper-button-prev {
  width: 40px;
  height: 40px;
  background: url(../img/arrow-left.png) no-repeat center center/cover;
  margin-top: -20px;
  left: calc(50% - 600px);
}
.swiper-button-prev::after {
  display: none;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #fff;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: #fccf03;
}

/* ABOUT */
.about-title {
  line-height: 80px;
  font-weight: bold;
  background-color: #fccf03;
  box-shadow: 3px 3px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 767px) {
  .about-title {
    line-height: 40px;
  }
}

.about-container {
  display: flex;
  align-items: center;
}

.about-sub-title {
  font-weight: bold;
  position: relative;
  margin-left: 100px;
}
@media screen and (max-width: 767px) {
  .about-sub-title {
    margin-left: 30px;
    font-size: 13px;
  }
}
.about-sub-title::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 1px;
  top: 50%;
  left: -75px;
  background-color: #000;
  text-align: center;
  background-color: #808080;
}
@media screen and (max-width: 767px) {
  .about-sub-title::before {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .about-wrapper {
    display: flex;
    align-items: center;
    margin-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  .about-wrapper {
    margin-top: 20px;
  }
}

@media screen and (min-width: 768px) {
  .about-wrapper2 {
    display: flex;
    flex-flow: row-reverse;
    align-items: center;
    margin-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  .about-wrapper2 {
    margin-top: 20px;
  }
}

.about-text {
  padding: 0 50px;
  flex: 0 0 50%;
}
@media screen and (max-width: 767px) {
  .about-text {
    padding: 0 0 20px;
    font-size: 12px;
  }
}

.about-picture {
  flex: 0 0 50%;
  background-color: #fff;
  box-shadow: 10px 10px 5px rgba(96, 96, 96, 0.16);
}

/* PICK UP */
.pickup {
  background-color: #fff;
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .pickup {
    margin-top: 50px;
  }
}

.pickup-title {
  line-height: 80px;
  font-weight: bold;
  box-shadow: 3px 3px rgba(0, 0, 0, 0.16);
  background-color: #fccf03;
}
@media screen and (max-width: 767px) {
  .pickup-title {
    line-height: 40px;
  }
}

.pickup-container {
  display: flex;
  align-items: center;
}

.pickup-sub-title {
  font-weight: bold;
  position: relative;
  margin-left: 100px;
}
.pickup-sub-title::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 1px;
  top: 50%;
  left: -75px;
  background-color: #000;
  text-align: center;
  background-color: #808080;
}
@media screen and (max-width: 767px) {
  .pickup-sub-title {
    font-size: 10px;
  }
}

.pickup-main-phot {
  margin-top: 100px;
  padding-top: 55%;
  background: url(../img/pickup-1.jpg) top right/80.5% no-repeat;
}
@media screen and (max-width: 767px) {
  .pickup-main-phot {
    margin-top: 50px;
    background: url(../img/pickup-1.jpg) no-repeat center center/cover;
  }
}

.pickup-top {
  position: relative;
}

@media screen and (min-width: 768px) {
  .pickup-item {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-color: #fff;
    padding: 60px;
    opacity: 0.8;
  }
}
@media screen and (max-width: 767px) {
  .pickup-item {
    padding: 20px 0 0 0;
  }
}

.pickup-name {
  font-size: 50px;
}
@media screen and (max-width: 767px) {
  .pickup-name {
    font-size: 20px;
  }
}

.pickup-ms {
  margin: 30px 0;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .pickup-ms {
    margin: 15px 0;
    line-height: 1.5;
    font-size: 14px;
  }
}

.pickup-text {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .pickup-text {
    margin-top: 40px;
  }
}

@media screen and (min-width: 768px) {
  .pickup-wrapper {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 767px) {
  .pickup-wrapper {
    display: flex;
    flex-direction: column-reverse;
  }
}

.pickup-setumei-img {
  flex: 0 0 30%;
}

.pickup-top-title {
  text-align: center;
  font-size: 40px;
  position: relative;
  padding-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .pickup-top-title {
    font-size: 20px;
    padding-bottom: 20px;
  }
}
.pickup-top-title::after {
  position: absolute;
  content: "";
  width: 120px;
  height: 2px;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%);
  background-color: #fccf03;
  margin-top: 200px;
}

.pickup-setumei {
  margin: 50px auto;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .pickup-setumei {
    margin: 20px auto;
    width: 100%;
  }
}

.pickup-setumei-text {
  line-height: 2;
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .pickup-setumei-text {
    line-height: 1.5;
    margin-top: 20px;
    font-size: 14px;
  }
}

@media screen and (min-width: 768px) {
  .pickup-list {
    display: flex;
    justify-content: space-between;
    margin-bottom: 100px;
  }
}

.pickup-sub3 {
  flex: 0 0 27.77%;
  box-shadow: 3px 3px rgba(0, 0, 0, 0.13);
}

.pickup-sub3-text {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  padding: 20px 0;
}

@media screen and (min-width: 768px) {
  .pickup-phot-baner {
    width: 100%;
    padding: 150px 0;
    background-image: url(../img/hodohodoyatennpo2.jpeg);
    background-size: cover;
    color: floralwhite;
    font-size: 20px;
    position: relative;
  }
  .pickup-phot-baner::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.13);
  }
}
@media screen and (max-width: 767px) {
  .pickup-phot-baner {
    width: 100%;
    padding: 150px 0;
    background-image: url(../img/hodohodoyatennpo3.jpeg);
    background-size: cover;
    color: floralwhite;
    font-size: 20px;
    position: relative;
  }
  .pickup-phot-baner::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.13);
  }
}

.pickup-wagarasi-title {
  font-size: 30px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .pickup-wagarasi-title {
    margin-top: 20px;
    font-size: 15px;
  }
}

.pickup-wagarasi-text {
  margin-top: 35px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .pickup-wagarasi-text {
    margin-top: 20px;
    font-size: 13px;
  }
}

/* shop link */
.shop-link-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 250px;
}
@media screen and (max-width: 767px) {
  .shop-link-wrapper {
    height: 100px;
  }
}

.shop-link-log img {
  width: 150px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .shop-link-log img {
    width: 60px;
  }
}

@media screen and (max-width: 767px) {
  .shop-log-link {
    font-size: 12px;
    margin-left: 20px;
  }
}

/* ITEMS */
.section-title-item {
  font-size: 30px;
  line-height: 2.66;
  background-color: #fccf03;
  text-align: center;
  margin-bottom: 100px;
  box-shadow: 3px 3px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 767px) {
  .section-title-item {
    margin-bottom: 50px;
  }
}

@media screen and (min-width: 768px) {
  .items-wrapper {
    display: flex;
    align-items: center;
    padding: 20px 0;
  }
}

.items-wrapper-left {
  flex: 0 0 40%;
}

.items-wrapper-right-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.items-item {
  margin: 0 auto;
}
.items-item h3 {
  font-size: 25px;
  font-weight: bold;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .items-item h3 {
    font-size: 18px;
    letter-spacing: 0.1em;
  }
}

.items-item-img {
  flex: 0 0 30%;
}

.items-wrapper-right-bottom {
  width: 90%;
  margin: 20px auto;
}
@media screen and (max-width: 767px) {
  .items-wrapper-right-bottom {
    font-size: 15px;
  }
}

@media screen and (min-width: 768px) {
  .items-wrapper-set {
    display: flex;
    padding: 20px 0;
  }
}

.items-set-right {
  flex: 0 0 60%;
}

.items-set-right-h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50%;
  letter-spacing: 0.2em;
}
.items-set-right-h3 h3 {
  font-weight: bold;
  font-size: 25px;
}
@media screen and (max-width: 767px) {
  .items-set-right-h3 h3 {
    font-size: 18px;
  }
}

.items-set-list {
  margin-left: 30px;
  line-height: 3;
}
@media screen and (max-width: 767px) {
  .items-set-list {
    line-height: 1.5;
    margin-left: 15px;
    margin-top: 20px;
  }
}

/* information */
.footer-title {
  line-height: 80px;
  font-size: 30px;
  text-align: center;
  background-color: #fccf03;
  margin-top: 100px;
  margin-bottom: 30px;
  box-shadow: 3px 3px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 767px) {
  .footer-title {
    line-height: 40px;
    font-size: 15px;
    margin-top: 50px;
  }
}

.map-wrapper {
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .map-wrapper {
    padding: 0;
  }
}

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

@media screen and (min-width: 768px) {
  .info-container {
    display: flex;
    margin-bottom: 100px;
    margin-top: 100px;
  }
}

@media screen and (min-width: 768px) {
  .info-wrapper {
    flex: 0 0 60%;
  }
}

@media screen and (min-width: 768px) {
  .info-wrapper-left {
    display: flex;
    align-items: center;
  }
}

.info-log {
  flex: 0 0 30%;
  padding: 30px;
}
@media screen and (max-width: 767px) {
  .info-log {
    display: none;
  }
}

.info-address {
  margin: 0 auto;
}
.info-address p {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 40px;
}
@media screen and (max-width: 767px) {
  .info-address p {
    font-size: 15px;
    line-height: 20px;
    margin: 50px 0;
  }
}

.info-img {
  flex: 0 0 40%;
}

/* footer */
.footer-cp {
  line-height: 80px;
  font-size: 15px;
  text-align: center;
  background-color: #fccf03;
}
@media screen and (max-width: 767px) {
  .footer-cp {
    line-height: 3;
    font-size: 8px;
  }
}

/* toggle-list*/
#item-link {
  position: relative;
}

#toggle-list {
  display: none;
  position: absolute;
  left: -25px;
  width: 100px;
  font-size: 5px;
  background-color: #fccf03;
}

.toggle {
  -moz-text-align-last: justify;
       text-align-last: justify;
  padding: 0 5px;
}

.toggle a {
  line-height: 32px;
}

#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 14px;
  line-height: 1;
  z-index: 99;
}

#page-top a {
  background: #fccf03;
  text-decoration: none;
  color: #fff;
  width: 60px;
  padding: 28px 5px;
  text-align: center;
  display: block;
  border-radius: 90px;
  opacity: 0.9;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  #page-top a {
    width: 46px;
    padding: 6px 2px;
  }
}

#page-top a:hover {
  text-decoration: none;
  opacity: 0.5;
}

.item {
  width: 100%;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
}

.bigimg {
  position: absolute;
  width: 80%;
  max-width: 1200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.close-btn {
  color: #fff;
  font-size: 40px;
  position: absolute;
  right: 30px;
  top: 100px;
}

.close-btn a {
  color: #fff;
  text-decoration: none;
}

.drawer-icon {
  position: fixed;
  top: 20px;
  right: 16px;
  z-index: 300;
  display: none;
  transition: transform 0.5s ease 0s;
}
@media screen and (max-width: 767px) {
  .drawer-icon {
    display: block;
  }
}
.drawer-icon.is-active {
  transform: translatex(-200px);
}
.drawer-icon.is-active .drawer-icon-bar1 {
  transform: rotate(-45deg);
  top: 8px;
}
.drawer-icon.is-active .drawer-icon-bar2 {
  display: none;
}
.drawer-icon.is-active .drawer-icon-bar3 {
  transform: rotate(45deg);
  top: 8px;
}

.drawer-icon-bars {
  width: 22px;
  height: 20px;
  position: relative;
}

.drawer-icon-bar1,
.drawer-icon-bar2,
.drawer-icon-bar3 {
  position: absolute;
  width: 22px;
  height: 4px;
  background-color: #fff;
  top: 0;
  left: 0;
}

.drawer-icon-bar1 {
  top: 0;
}

.drawer-icon-bar2 {
  top: 8px;
}

.drawer-icon-bar3 {
  top: 16px;
}

.drawer-content {
  width: 200px;
  height: 100%;
  position: fixed;
  right: 0;
  top: 0;
  background-color: #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
  z-index: 299;
  transform: translateX(105%);
  transition: transform 0.5s ease 0s;
}
.drawer-content.is-active {
  transform: translateX(0);
}

.drawer-content-item {
  border-bottom: 1px dotted #707070;
}
.drawer-content-item a {
  display: block;
  color: #707070;
  text-decoration: none;
  padding: 18px 20px;
  position: relative;
}
.drawer-content-item a::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 11px;
  background: url(../img/arrow-b@3x.png) no-repeat center center/contain;
}

.drawer-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 298;
  display: none;
}
.drawer-background.is-active {
  display: block;
}