@charset "UTF-8";
:root {
  --color-main: #87b22b;
  --color-accent: #c3311e;
  --color-gray: #807f80;
  --color-light-green: #cfe0aa;
  --color-text: #403f40;
}

html {
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 62.5%;
  }
}

body {
  font-family: "Zen Maru Gothic", "Meiryo", "メイリオ", "平成明朝", "Lucida Grande", Verdana, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.2;
  color: var(--color-text);
  letter-spacing: 0.01em;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 2.1rem;
  }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
  display: block;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

img {
  width: 100%;
  height: auto;
  display: block;
}

li {
  list-style: none;
}

.container {
  padding-block: 5rem;
}
@media screen and (min-width: 768px) {
  .container {
    padding-block: 10rem;
  }
}

.inner {
  padding-inline: 2rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    padding-inline: 4rem;
    max-width: calc(1000px + 8rem);
  }
}

.br {
  display: inline-block;
}

.pc {
  display: none;
}

@media screen and (min-width: 768px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
}
.section-title {
  color: var(--color-main);
  font-size: 3rem;
  text-align: center;
  line-height: 1.5;
  font-weight: 900;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .section-title {
    font-size: 4.2rem;
  }
}
.section-title::before, .section-title::after {
  content: "";
  background: url(../img/illust_hamachan_green.svg) no-repeat center/100%;
  width: 5.5rem;
  height: 5.5rem;
  position: absolute;
  top: -1rem;
  left: -6.7rem;
}
@media screen and (min-width: 768px) {
  .section-title::before, .section-title::after {
    width: 10rem;
    height: 10rem;
    top: -3rem;
    left: -12rem;
  }
}
.section-title::after {
  left: unset;
  right: -7rem;
}
@media screen and (min-width: 768px) {
  .section-title::after {
    right: -12.5rem;
  }
}

.fadeTrigger {
  opacity: 0;
}
.fadeTrigger.fadeIn {
  animation-name: fadeIn;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* ヘッダー -------------------------------------------------------------------------------------------------------- */
.header {
  padding-block: 0.4rem 0.5rem;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .header {
    padding-block: unset;
  }
}
@media screen and (min-width: 1081px) {
  .header {
    padding-block: 2rem 6rem;
  }
}
.header .inner {
  padding-inline: unset;
  max-width: unset;
  display: grid;
  grid-template-rows: auto auto auto;
  align-items: center;
}
@media screen and (min-width: 1081px) {
  .header .inner {
    padding-inline: 2rem;
    grid-template-rows: unset;
    grid-template-columns: 1fr 1.8fr 1fr;
    gap: min(4rem, 2.1vw);
  }
}
.header .inner::before, .header .inner::after {
  content: "";
  background: url(../img/header_bg_sp_top.jpg) no-repeat center/100%;
  width: 98%;
  height: 33vw;
  display: block;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .header .inner::before, .header .inner::after {
    background-image: url(../img/header_bg_pc_left.jpg);
    width: 90%;
    height: 80vw;
  }
}
@media screen and (min-width: 1081px) {
  .header .inner::before, .header .inner::after {
    height: 103%;
    margin-top: 3rem;
    width: 100%;
  }
}
.header .inner::after {
  background-image: url(../img/header_bg_sp_bottom.jpg);
}
@media screen and (min-width: 768px) {
  .header .inner::after {
    background-image: url(../img/header_bg_pc_right.jpg);
  }
}
@media screen and (min-width: 1081px) {
  .header .inner::after {
    margin-top: 3rem;
  }
}
.header__title {
  margin-inline: auto;
  width: 100%;
  padding-inline: 1.3rem 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.7rem;
}
@media screen and (min-width: 768px) {
  .header__title {
    margin-block: 2rem 3rem;
    padding-inline: 1.3rem 3.5rem;
    grid-column: 1/3;
    grid-row: 1/2;
  }
}
@media screen and (min-width: 1081px) {
  .header__title {
    padding-inline: 1.3rem 2.2rem;
    margin-inline: unset;
    gap: 2rem;
    order: unset;
    margin-block: unset;
    grid-column: unset;
    grid-row: unset;
  }
}
.header__title-text {
  text-align: center;
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-gray);
  padding-left: 1em;
}
@media screen and (min-width: 768px) {
  .header__title-text {
    font-size: 4vw;
  }
}
@media screen and (min-width: 1081px) {
  .header__title-text {
    font-size: 1.85vw;
  }
}

/* main -------------------------------------------------------------------------------------------------------- */
.main::after {
  content: "";
  position: fixed;
  opacity: 0.2;
  z-index: -1;
  background: url(../img/illust_hamachan_light.svg) no-repeat right bottom/100%;
  top: 0;
  right: 0;
  width: 75%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .main::after {
    width: 44%;
    opacity: 0.15;
  }
}
@media screen and (min-width: 1081px) {
  .main::after {
    width: 40%;
  }
}

/* news -------------------------------------------------------------------------------------------------------- */
.news {
  background: var(--color-main);
  position: relative;
  z-index: 0;
  padding-block: 4rem 5rem;
}
.news::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../img/bg.png) repeat -2rem -2rem/220%;
  opacity: 0.2;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .news::before {
    background-size: 133%;
    background-position: -4rem -4rem;
  }
}
.news .section-title {
  color: #fff;
}
.news .section-title::before, .news .section-title::after {
  content: none;
}
.news__box {
  margin-top: 3rem;
  max-height: 20rem;
  padding: 0 2rem;
  padding-block: 0.7rem;
  overflow-y: scroll;
  background: #fff;
  line-height: 1.4;
  border-radius: 0.5rem;
}
@media screen and (min-width: 768px) {
  .news__box {
    padding-inline: 2.6rem;
    padding-bottom: 0.2rem;
    padding-block: 1rem;
  }
}
.news__box::-webkit-scrollbar {
  width: 1rem;
}
.news__box::-webkit-scrollbar-thumb {
  background: var(--color-light-green);
  border-radius: 1rem;
}
.news .box-item {
  padding-block: 1.7rem 2rem;
  border-bottom: 1px solid var(--color-light-green);
}
.news .box-item:last-child {
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .news .box-item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2rem;
    padding-block: 2rem;
    font-size: 1.8rem;
  }
}
.news .box-item:first-child dt::after {
  content: "NEW";
  margin-left: 0.8em;
  background: var(--color-accent);
  color: #fff;
  display: inline-block;
  padding: 0 0.8rem 0.1rem;
  border-radius: 0.3rem;
  font-weight: 900;
  font-size: 0.8em;
  letter-spacing: 0.06em;
  transform: translateY(-0.2rem);
}
@media screen and (min-width: 768px) {
  .news .box-item:first-child dt::after {
    content: none;
  }
}
@media screen and (min-width: 768px) {
  .news .box-item:first-child dd::before {
    content: "NEW";
    margin-left: 0.8em;
    background: var(--color-accent);
    color: #fff;
    display: inline-block;
    padding: 0 0.8rem 0.1rem;
    border-radius: 0.3rem;
    font-weight: 900;
    font-size: 0.8em;
    letter-spacing: 0.06em;
    transform: translateY(-0.2rem);
    margin-left: unset;
    margin-right: 0.8em;
    padding-bottom: 0.2rem;
  }
}
.news .box-item dt {
  font-weight: 900;
  color: var(--color-main);
}
.news .box-item dd {
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .news .box-item dd {
    margin-top: unset;
  }
}

/* about -------------------------------------------------------------------------------------------------------- */
.about .inner {
  padding-inline: 1rem;
}
@media screen and (min-width: 768px) {
  .about .inner {
    padding-inline: 2rem;
  }
}
.about .section-title {
  color: var(--color-main);
}
.about__wrapper {
  padding-inline: 0.5rem;
}
@media screen and (min-width: 768px) {
  .about__wrapper {
    padding-inline: unset;
  }
}
.about__lead-text {
  color: var(--color-main);
  font-weight: 900;
  font-size: 2.5rem;
  text-align: center;
  line-height: 1.8;
  margin-right: -1.5rem;
}
@media screen and (min-width: 768px) {
  .about__lead-text {
    font-size: 4.2rem;
  }
}
.about__text {
  margin-top: 3rem;
  text-align: center;
  word-break: auto-phrase;
  font-size: 1.55rem;
  line-height: 2.4;
}
@media screen and (min-width: 768px) {
  .about__text {
    font-size: min(2.1rem, 2.3vw);
  }
}
.about__box {
  padding: 2rem;
  background: var(--color-main);
  color: #fff;
  border-radius: 2rem;
  margin-top: 4rem;
  width: 95%;
  margin-inline: auto;
  display: grid;
  gap: 1.3rem;
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .about__box {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(2rem, 2.7vw, 3rem);
    padding: 3.5rem;
    margin-top: 4.5rem;
  }
}
.about__box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../img/bg.png) repeat -2rem -2rem/220%;
  opacity: 0.15;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .about__box::before {
    background-size: 143%;
    background-position: -4rem -4rem;
    opacity: 0.15;
  }
}
.about__box-title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  order: 1;
}
@media screen and (min-width: 768px) {
  .about__box-title {
    font-size: min(4.2rem, 4.5vw);
    text-align: left;
    order: unset;
  }
}
.about__box-title .small {
  font-size: 0.6em;
  margin-left: 0.4em;
}
.about__box-image {
  margin-top: 0.8rem;
  border-radius: 1rem;
  order: 2;
}
@media screen and (min-width: 768px) {
  .about__box-image {
    margin-top: unset;
    order: unset;
  }
}
.about__box-text-wrapper {
  display: contents;
}
@media screen and (min-width: 768px) {
  .about__box-text-wrapper {
    display: block;
  }
}
.about__box-text {
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0;
  order: 3;
}
@media screen and (min-width: 768px) {
  .about__box-text {
    font-size: min(1.6rem, 1.7vw);
    margin-top: 1.5rem;
    order: unset;
  }
}

/* gallery -------------------------------------------------------------------------------------------------------- */
.gallery {
  padding-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .gallery {
    padding-bottom: 5rem;
  }
}
.gallery .inner {
  max-width: unset;
}
.gallery .grid {
  margin-inline: auto;
  margin-top: 4rem;
  --columns: 2;
  --gutter: 2rem;
}
@media screen and (min-width: 768px) {
  .gallery .grid {
    margin-top: 8rem;
    --columns: 3;
    --gutter: 4rem;
  }
}
@media screen and (min-width: 1024px) {
  .gallery .grid {
    --columns: 4;
  }
}
@media screen and (min-width: 1360px) {
  .gallery .grid {
    --columns: 6;
  }
}
.gallery .grid-sizer,
.gallery .grid-item {
  width: calc((100% - 2rem) / 2);
}
@media (min-width: 768px) {
  .gallery .grid-sizer,
  .gallery .grid-item {
    width: calc((100% - 12rem) / 4);
  }
}
.gallery .grid-sizer,
.gallery .grid-item {
  width: calc((100% - (var(--columns) - 1) * var(--gutter)) / var(--columns));
}
.gallery .grid-item {
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .gallery .grid-item {
    margin-bottom: 4rem;
  }
}
.gallery .grid-item figcaption {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-top: 0.5rem;
  display: flex;
  justify-content: center;
  -moz-column-gap: 1em;
       column-gap: 1em;
  flex-wrap: wrap;
  padding-inline: 0.2rem;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .gallery .grid-item figcaption {
    font-size: clamp(1.2rem, 1.4vw, 1.5rem);
  }
}
.gallery .grid-item figcaption .kanji {
  font-family: "Noto Sans JP", sans-serif;
}
.gallery .grid-item figcaption .name {
  text-align: center;
}
.gallery .grid-item figcaption .name .text {
  font-size: 0.95em;
}
@media screen and (min-width: 768px) {
  .gallery .grid-item figcaption .name .text {
    font-size: inherit;
  }
}
.gallery .gutter-sizer {
  width: 2rem;
}
@media screen and (min-width: 768px) {
  .gallery .gutter-sizer {
    width: 4rem;
  }
}
.gallery .grid-item--width2 {
  width: calc((100% - (var(--columns) - 1) * var(--gutter)) / var(--columns) * 2 + var(--gutter));
}

/* info -------------------------------------------------------------------------------------------------------- */
.info__list {
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .info__list {
    gap: 5rem;
    margin-top: 8rem;
  }
}
.info__list-box {
  display: grid;
  gap: 1rem;
  border-bottom: 1px solid var(--color-light-green);
  padding-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .info__list-box {
    gap: unset;
    grid-template-columns: min(25rem, 25vw) 1fr;
    padding-bottom: 5.4rem;
  }
}
.info__list-box:last-child {
  border-bottom: none;
}
.info__list-box.sponsor {
  padding-block: 0.2rem 4.2rem;
}
@media screen and (min-width: 768px) {
  .info__list-box.sponsor {
    padding-block: 1.2rem 6.8rem;
  }
}
.info__list-box dt {
  color: var(--color-main);
  font-weight: 700;
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .info__list-box dt {
    font-size: 2.1rem;
  }
}
.info__list-box dd .small {
  font-size: 0.8em;
  display: block;
  margin-top: -0.8rem;
}
@media screen and (min-width: 768px) {
  .info__list-box dd .small {
    font-size: 0.7em;
  }
}
.info-list-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-left: 1em;
}
@media screen and (min-width: 768px) {
  .info-list-content {
    gap: 3rem;
  }
}
.info-list-content__item {
  list-style: "■";
}
@media screen and (min-width: 768px) {
  .info-list-content__inside-list {
    display: flex;
    justify-content: flex-start;
    gap: 1.2em;
    row-gap: unset;
    flex-wrap: wrap;
  }
}
.info__notes {
  font-size: 0.8em;
  margin-top: 2rem;
  padding-left: 1em;
}
@media screen and (min-width: 768px) {
  .info__notes {
    font-size: 0.7em;
    margin-top: 3rem;
  }
}
.info__notes-item {
  list-style: "※";
}
.info-ticket__item-text {
  display: block;
}
.info-ticket__period {
  font-size: 0.8em;
  display: inline-block;
  font-weight: 700;
  padding-inline: 1rem;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.5;
  padding-bottom: 0.1rem;
  border-radius: 0.5rem;
  border: 2px solid;
  margin-left: 0.5rem;
  transform: translateY(-0.2rem);
}
@media screen and (min-width: 768px) {
  .info-ticket__period {
    line-height: 1.8;
    margin-left: 1rem;
  }
}
.info-ticket__period.advance {
  color: var(--color-accent);
  border: 2px solid;
  padding-inline: 1rem 0;
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .info-ticket__period.advance {
    margin-left: 1rem;
  }
}
.info-ticket__inside-list {
  padding-left: 1em;
}
@media screen and (min-width: 768px) {
  .info-ticket__inside-list {
    display: block;
  }
}
.info-ticket__inside-item {
  list-style: "・";
  border-bottom: 1px dotted var(--color-gray);
  padding-block: 1rem 1.1rem;
  width: 98%;
  line-height: 1.6;
  line-height: 1.6;
  padding-block: 1.2rem 0rem;
  border-bottom: none;
}
.info-ticket__inside-item:last-child {
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .info-ticket__inside-item {
    width: 95%;
    line-height: 1.8;
    padding-block: 1.5rem;
    padding-block: 1.6rem 0rem;
    line-height: 1.5;
  }
}
@media screen and (min-width: 768px) {
  .info-ticket__inside-item-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    row-gap: unset;
    flex-wrap: wrap;
    padding-right: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .info-ticket__inside-item-text {
    min-width: 42rem;
  }
}
.info-ticket__inside-item .code {
  font-size: 0.8em;
}
.info-ticket__inside-item-btn {
  border-radius: 10rem;
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 18rem;
  height: 2.3rem;
  font-size: 0.9em;
  border: 2px solid var(--color-accent);
  position: relative;
  margin-top: 0.4rem;
}
@media screen and (min-width: 768px) {
  .info-ticket__inside-item-btn {
    font-size: 0.8em;
    width: 20rem;
    height: 3.3rem;
    margin-top: unset;
  }
}
.info-ticket__inside-item-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.3rem;
  transform: translateY(-50%) rotate(45deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 1rem;
  height: 1rem;
  transition: all 0.3s;
}
@media (hover: hover) {
  .info-ticket__inside-item-btn:hover {
    opacity: 1;
    background: #fff;
    color: var(--color-accent);
  }
  .info-ticket__inside-item-btn:hover::after {
    border-color: var(--color-accent);
  }
}
.info-sponsor {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  align-items: center;
  gap: 3rem;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .info-sponsor {
    gap: min(7rem, 5.8vw);
    padding-right: 4rem;
  }
}
.info-contact {
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .info-contact {
    gap: 2rem;
  }
}
.info-contact__item .br {
  display: block;
}

/* フッター -------------------------------------------------------------------------------------------------------- */
.footer {
  background: var(--color-main);
  padding-block: 2.4rem 2rem;
  color: #fff;
  mix-blend-mode: multiply;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-block: 1.7rem 2rem;
    font-size: 1.8rem;
  }
}
.footer .pankuzu {
  display: none;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .footer .pankuzu {
    display: flex;
    flex-wrap: wrap;
  }
}
.footer .pankuzu__item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5em;
}
.footer .pankuzu__item:not(:last-child)::after {
  content: "";
  border-top: 0.25rem solid #fff;
  border-right: 0.25rem solid #fff;
  display: block;
  width: 1.1rem;
  height: 1.1rem;
  transform: rotate(45deg);
  margin-right: 0.7em;
}
@media screen and (min-width: 768px) {
  .footer .sp-footer {
    display: none;
  }
}
.footer .sp-footer .rsk-top {
  margin-inline: auto;
  height: 6rem;
  width: -moz-fit-content;
  width: fit-content;
}
.footer .sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-block: 2.1rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .footer .sns {
    margin-block: 1.4rem 1.6rem;
  }
}
.footer .sns__item a {
  border-radius: 10rem;
  padding: 0.3rem;
}
.footer .sns__item a.btn-fb {
  background: #1877f2;
}
.footer .sns__item a.btn-tw {
  background: #000;
}
.footer .sns__item a.btn-line {
  background: #1eb900;
}
.footer .sns__item img {
  width: 5rem;
  border-radius: 10rem;
}
.footer .copyright {
  font-size: 0.7em;
  display: block;
  text-align: center;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .footer .copyright {
    font-size: 0.7em;
    line-height: inherit;
    padding-inline: unset;
  }
}

/* ページトップ -------------------------------------------------------------------------------------------------------- */
.pagetop {
  position: fixed;
  z-index: 9999;
  bottom: 1rem;
  right: 1rem;
  background: var(--color-main);
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  border: 0.2rem solid #fff;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .pagetop {
    right: 3rem;
    bottom: 3rem;
  }
}
.pagetop::after {
  content: "";
  position: absolute;
  top: 59%;
  left: 50%;
  transform: rotate(-45deg) translate(-50%, -50%);
  transform-origin: 0 0;
  border-top: 0.5rem solid #fff;
  border-right: 0.5rem solid #fff;
  width: 1.7rem;
  height: 1.7rem;
  transition: all 0.3s;
}
@media (hover: hover) {
  .pagetop:hover {
    opacity: 1;
    background: #fff;
    border-color: var(--color-main);
  }
  .pagetop:hover::after {
    border-color: var(--color-main);
  }
}
.pagetop:active::after {
  opacity: 1;
  background: #fff;
  border-color: var(--color-main);
}
.pagetop:active::after {
  border-color: var(--color-main);
}/*# sourceMappingURL=style.css.map */