@charset "UTF-8";
/*====================================
	base
====================================*/
html {
  font-size: 24px;
  line-height: 2;
}

@media screen and (max-width: 680px) {
  html {
    font-size: 15px;
  }
}
body,
textarea,
input,
select,
label {
  font-family: "Noto Sans JP", Arial;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  overflow-x: hidden;
  font-size: 1rem;
}

body {
  position: relative;
}

@media screen and (max-width: 680px) {
  input {
    font-size: 16px;
  }
}
a {
  text-decoration: none;
  transition: all 0.4s;
  display: block;
}

a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
}

/*====================================
	共通レイアウト
====================================*/
@media screen and (max-width: 768px) {
  .pc_only {
    display: none;
  }
}

.tb_under {
  display: none;
}
@media screen and (max-width: 768px) {
  .tb_under {
    display: block;
  }
}

.sp_only {
  display: none;
}
@media screen and (max-width: 680px) {
  .sp_only {
    display: block;
  }
}

.content__ttl {
  font-size: 2rem;
  text-align: center;
  padding-bottom: 2em;
  letter-spacing: 0.1em;
  color: #004967;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.content__ttl::after {
  content: "";
  background-image: url(../img/scrollRange_icon01.png);
  background-size: contain;
  width: 2em;
  height: 2em;
  position: absolute;
  right: -1em;
  background-repeat: no-repeat;
  bottom: 0;
}

main section.content:nth-of-type(1) {
  padding-top: 4rem;
}
@media screen and (max-width: 680px) {
  main section.content:nth-of-type(1) {
    padding-top: 2rem;
  }
}
main section.content:last-child {
  padding-bottom: 4rem;
}
@media screen and (max-width: 680px) {
  main section.content:last-child {
    padding-bottom: 2rem;
  }
}

.wrapper__inner {
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
  padding: 3rem 20px;
}
@media screen and (max-width: 680px) {
  .wrapper__inner {
    padding: 2rem 20px;
  }
}

.btn__area {
  margin-top: 2.5rem;
}
.btn__area a {
  background-color: #eb6156;
  text-align: center;
  padding: 1rem 2.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: bold;
  line-height: 1;
  border-radius: 5rem;
  color: white;
  letter-spacing: 0.1em;
}
.btn__area a span {
  display: block;
  font-size: 0.8em;
  margin-top: 0.5em;
}

/*====================================
	header
====================================*/
header .header__inner {
  padding: 1rem 20px;
}
header .header__inner nav ul {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}
header .header__inner nav ul li a {
  font-size: 0.7rem;
}

@media screen and (max-width: 768px) {
  header {
    position: fixed;
    right: 0;
    z-index: 99;
  }
  header .header__inner .hamburger {
    position: relative;
    background: #eb6156;
    cursor: pointer;
    width: 80px;
    height: 80px;
    z-index: 2;
    display: grid;
    align-items: center;
  }
}
@media screen and (max-width: 768px) and (max-width: 680px) {
  header .header__inner .hamburger {
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 768px) {
  header .header__inner .hamburger span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    border-radius: 5px;
    background: #fff;
    width: 50%;
  }
  header .header__inner .hamburger span:nth-of-type(1) {
    top: calc(45% - 0.5rem);
  }
}
@media screen and (max-width: 768px) and (max-width: 680px) {
  header .header__inner .hamburger span:nth-of-type(1) {
    top: calc(40% - 0.5rem);
  }
}
@media screen and (max-width: 768px) {
  header .header__inner .hamburger span:nth-of-type(2) {
    top: 45%;
  }
}
@media screen and (max-width: 768px) and (max-width: 680px) {
  header .header__inner .hamburger span:nth-of-type(2) {
    top: 40%;
  }
}
@media screen and (max-width: 768px) {
  header .header__inner .hamburger span:nth-of-type(3) {
    top: calc(45% + 0.5rem);
  }
}
@media screen and (max-width: 768px) and (max-width: 680px) {
  header .header__inner .hamburger span:nth-of-type(3) {
    top: calc(40% + 0.5rem);
  }
}
@media screen and (max-width: 768px) {
  header .header__inner .hamburger::after {
    content: "Menu";
    /*3つ目の要素のafterにMenu表示を指定*/
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 8px;
    color: #fff;
    font-size: 0.5rem;
    text-transform: uppercase;
  }
}
@media screen and (max-width: 768px) {
  header .header__inner .hamburger.active {
    background-color: white;
  }
  header .header__inner .hamburger.active span {
    background-color: #eb6156;
  }
  header .header__inner .hamburger.active span:nth-of-type(1) {
    top: 35%;
    transform: translateY(6px) rotate(-45deg);
    left: 25px;
    width: 40%;
  }
}
@media screen and (max-width: 768px) and (max-width: 680px) {
  header .header__inner .hamburger.active span:nth-of-type(1) {
    top: 30%;
    left: 18px;
  }
}
@media screen and (max-width: 768px) {
  header .header__inner .hamburger.active span:nth-of-type(2) {
    opacity: 0;
  }
}
@media screen and (max-width: 768px) {
  header .header__inner .hamburger.active span:nth-of-type(3) {
    top: 50%;
    transform: translateY(-6px) rotate(45deg);
    width: 40%;
    left: 25px;
  }
}
@media screen and (max-width: 768px) and (max-width: 680px) {
  header .header__inner .hamburger.active span:nth-of-type(3) {
    left: 17px;
  }
}
@media screen and (max-width: 768px) {
  header .header__inner .hamburger.active::after {
    color: #eb6156;
    content: "Close";
  }
}
@media screen and (max-width: 768px) {
  header .header__inner nav {
    position: fixed;
    width: 40%;
    height: 100vh;
    z-index: 1;
    top: 0;
    right: -120%;
    transition: all 0.6s;
    background-color: #eb6156;
    display: grid;
    align-items: center;
  }
}
@media screen and (max-width: 768px) and (max-width: 680px) {
  header .header__inner nav {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  header .header__inner nav ul {
    flex-direction: column;
    padding: 0 20px;
    gap: 0;
  }
  header .header__inner nav ul li {
    border-bottom: 1px solid white;
    width: 100%;
  }
  header .header__inner nav ul li:last-child {
    border: 0;
  }
  header .header__inner nav ul li a {
    padding: 1rem;
    text-align: center;
    color: white;
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  header .header__inner nav.active {
    right: 0;
  }
}
/*====================================
	fv
====================================*/
.fv {
  background: linear-gradient(90deg, #e2c6cf 0%, #e2c6cf 50%, #e8d1d7 50%, #e8d1d7 100%);
}
.fv h1 {
  display: none;
}
.fv img {
  height: calc(100vh - 82px);
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .fv img {
    height: auto;
  }
}

/*====================================
	footer
====================================*/
footer .copyright {
  font-size: 12px;
  text-align: center;
  padding: 0.5rem 20px;
}

/*====================================
    	pagetop
====================================*/
.pagetop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 100px;
  height: 100px;
  z-index: 90;
}
@media screen and (max-width: 680px) {
  .pagetop {
    width: 60px;
    height: 60px;
  }
}
.pagetop a {
  width: 100%;
}
.pagetop a::before {
  content: "";
  background-image: url(../img/toplink.png);
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
}

/*====================================
    main
====================================*/
.campaign p {
  text-align: center;
}
.campaign__content {
  margin-top: 1rem;
  text-align: center;
}
.campaign__content img {
  max-width: 600px;
  width: 100%;
  margin-bottom: 0.5rem;
}
.campaign__content p {
  letter-spacing: 0.1em;
  color: #eb6156;
}
.campaign__content-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}
.campaign__content-list dl {
  display: flex;
  align-items: center;
  gap: 1rem;
  gap: 0.5rem 1.5rem;
}
@media screen and (max-width: 680px) {
  .campaign__content-list dl {
    flex-direction: column;
    align-items: baseline;
  }
}
.campaign__content-list dl dt {
  flex: 1;
  line-height: 1;
  background-color: #eb6156;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  color: white;
  display: inline-block;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.campaign__content-list dl dd {
  flex: 6;
  text-align: left;
  font-size: 0.8rem;
  line-height: 1.6;
}

.merchandise__list {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr 1fr;
}
@media screen and (max-width: 1024px) {
  .merchandise__list {
    grid-template-columns: 1fr 1fr;
  }
}
.merchandise__item {
  border: 5px solid #eb6156;
  border-radius: 0.5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 20px;
}
.merchandise__item:nth-of-type(1)::before {
  content: "A賞";
  background-color: #004967;
  color: white;
  line-height: 1;
  padding: 0.4em 1em;
  position: absolute;
  top: 0;
  left: 0;
}
.merchandise__item:nth-of-type(2)::before {
  content: "B賞";
  background-color: #004967;
  color: white;
  line-height: 1;
  padding: 0.4em 1em;
  position: absolute;
  top: 0;
  left: 0;
}
.merchandise__item:nth-of-type(3)::before {
  content: "C賞";
  background-color: #004967;
  color: white;
  line-height: 1;
  padding: 0.4em 1em;
  position: absolute;
  top: 0;
  left: 0;
}
.merchandise__item:nth-of-type(4)::before {
  content: "D賞";
  background-color: #004967;
  color: white;
  line-height: 1;
  padding: 0.4em 1em;
  position: absolute;
  top: 0;
  left: 0;
}
.merchandise__item:nth-of-type(5)::before {
  content: "E賞";
  background-color: #004967;
  color: white;
  line-height: 1;
  padding: 0.4em 1em;
  position: absolute;
  top: 0;
  left: 0;
}
.merchandise__item:nth-of-type(6)::before {
  content: "F賞 - ①";
  background-color: #004967;
  color: white;
  line-height: 1;
  padding: 0.4em 1em;
  position: absolute;
  top: 0;
  left: 0;
}
.merchandise__item:nth-of-type(7)::before {
  content: "F賞 - ②";
  background-color: #004967;
  color: white;
  line-height: 1;
  padding: 0.4em 1em;
  position: absolute;
  top: 0;
  left: 0;
}
.merchandise__item:nth-of-type(8)::before {
  content: "G賞 - ①";
  background-color: #004967;
  color: white;
  line-height: 1;
  padding: 0.4em 1em;
  position: absolute;
  top: 0;
  left: 0;
}
.merchandise__item:nth-of-type(9)::before {
  content: "G賞 - ②";
  background-color: #004967;
  color: white;
  line-height: 1;
  padding: 0.4em 1em;
  position: absolute;
  top: 0;
  left: 0;
}
.merchandise__item:nth-of-type(10)::before {
  content: "H賞";
  background-color: #004967;
  color: white;
  line-height: 1;
  padding: 0.4em 1em;
  position: absolute;
  top: 0;
  left: 0;
}
.merchandise__item:nth-of-type(11)::before {
  content: "I賞";
  background-color: #004967;
  color: white;
  line-height: 1;
  padding: 0.4em 1em;
  position: absolute;
  top: 0;
  left: 0;
}
.merchandise__item:nth-of-type(12)::before {
  content: "J賞";
  background-color: #004967;
  color: white;
  line-height: 1;
  padding: 0.4em 1em;
  position: absolute;
  top: 0;
  left: 0;
}
.merchandise__item:nth-of-type(13)::before {
  content: "参加賞";
  background-color: #004967;
  color: white;
  line-height: 1;
  padding: 0.4em 1em;
  position: absolute;
  top: 0;
  left: 0;
}
.merchandise__item-ttl {
  padding: 10px 0;
  font-size: 0.8rem;
  line-height: 1.4;
  text-align: center;
}
.merchandise__item h3 {
  line-height: 1.4;
}
.merchandise__item img {
  margin-top: 1rem;
  height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
  text-align: center;
  width: 100%;
}
.merchandise__item:last-child {
  background-color: #eb6156;
  color: white;
}
@media screen and (max-width: 680px) {
  .merchandise__item:last-child {
    grid-column: span 2;
  }
}
.merchandise__item:last-child h3 {
  line-height: 1.2;
  padding: 5px 0;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  margin-bottom: 1rem;
}
.merchandise__item:last-child .present__content {
  display: flex;
  gap: 0.5rem;
  align-content: center;
  flex-wrap: wrap;
}
.merchandise__item:last-child .present__content p {
  line-height: 1.4;
  font-size: 16px;
  text-align: left;
  flex: 3;
}
@media screen and (max-width: 680px) {
  .merchandise__item:last-child .present__content p {
    font-size: 1rem;
  }
}
.merchandise__item:last-child .present__content img {
  flex: 1;
  margin-top: 0;
}
.merchandise__note {
  margin-top: 2rem;
}
.merchandise__note p strong {
  color: #eb6156;
}
.merchandise__note ul li {
  text-indent: -2em;
  padding-left: 2em;
}
.merchandise__note ul li::before {
  content: "＊";
  padding-right: 1em;
}

.sale__list {
  display: grid;
  gap: 2.5rem 1.5rem;
  grid-template-columns: 1fr 1fr 1fr;
}
@media screen and (max-width: 768px) {
  .sale__list {
    grid-template-columns: 1fr 1fr;
  }
}
.sale__item h3 {
  background-color: #eb6156;
  padding: 1em 0.5em;
  color: white;
  border-radius: 0.5rem;
  line-height: 1;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 0.8rem;
}
.sale__item img {
  aspect-ratio: 5/3;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto 1.5rem;
}
@media screen and (max-width: 768px) {
  .sale__item img {
    max-height: 150px;
  }
}
.sale__item ul {
  display: flex;
  flex-direction: column;
}
.sale__item ul li {
  font-size: 0.8rem;
}
.sale__item ul li::before {
  content: "・";
}

.venue {
  background-image: url(../img/topImg_back.jpg);
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}
.venue::before {
  content: "";
  background-color: white;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  opacity: 0.5;
  z-index: -1;
}
.venue__content {
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 680px) {
  .venue__content {
    flex-direction: column;
  }
}
.venue__map {
  flex: 1.5;
}
.venue__map iframe {
  width: 100%;
}
@media screen and (max-width: 680px) {
  .venue__map iframe {
    height: 200px;
  }
}
.venue__txt {
  flex: 1;
}
.venue__txt h3 {
  font-size: 1.2rem;
}
.venue__txt .btn__area a {
  margin: 0 auto;
}

/*====================================
   tasting
====================================*/
.tasting p {
  text-align: center;
}
.tasting p.note {
  font-size: 0.8rem;
  margin-top: 0.5rem;
  color: #eb6156;
}
.tasting__list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem 1.5rem;
  grid-template-columns: 1fr 1fr;
  margin-top: 2rem;
  justify-content: space-between;
}
.tasting__list-sub {
  gap: 2.5rem 1rem;
  margin-top: 0;
}
.tasting__list-sub .tasting__item {
  width: calc(25% - 1rem);
}
@media screen and (max-width: 1024px) {
  .tasting__list-sub .tasting__item {
    width: calc(50% - 1rem);
  }
}
.tasting__list-sub .tasting__item h3 {
  font-size: 0.8rem;
}
.tasting__list-sub .tasting__item img {
  max-height: 160px;
}
.tasting__item {
  width: calc(50% - 1.5rem);
}
@media screen and (max-width: 1024px) {
  .tasting__item {
    width: 100%;
  }
}
.tasting__item h3 {
  background-color: #eb6156;
  padding: 1em;
  color: white;
  border-radius: 0.5rem;
  line-height: 1;
  text-align: center;
  margin-bottom: 2rem;
}
.tasting__item img {
  aspect-ratio: 5/3;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
  margin: 0 auto 1.5rem;
  max-height: 300px;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .tasting__item img {
    height: auto;
  }
}

/*====================================
   map
====================================*/
.map details {
  border-radius: 0.5rem;
  margin-bottom: 10px;
}
.map summary {
  padding: 10px;
  background-color: #f7f7f7;
  border-radius: 0.5rem;
  cursor: pointer;
  outline: none;
  font-weight: bold;
  border: 1px solid #ddd;
  position: relative;
  list-style: none;
  transition: background-color 0.3s;
  text-align: center;
}
.map summary::after {
  content: "▼";
  position: absolute;
  right: 10px;
  transition: transform 0.3s ease;
}
.map details[open] summary::after {
  transform: rotate(180deg);
}
.map summary:hover {
  background-color: #e7e7e7;
}
.map details summary::-webkit-details-marker {
  display: none;
}
.map__content-inner {
  text-align: center;
}
.map__content-inner img {
  margin: 2rem auto 0;
}
/*# sourceMappingURL=style.css.map */