@charset "UTF-8";
/*==========================================

Global Setting
==========================================*/
:root {
  --font-noto-sans: "Noto Sans JP", sans-serif;
  --size-content: 100rem;
  --size-block: 6rem;
  --size-inline: 2.4rem;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  height: 100%;
}
[id] {
  scroll-margin-top: 5rem;
}

body {
  min-height: 100%;
  background: #f5f3d5;
  -webkit-text-size-adjust: 100%;
  font-family: var(--font-noto-sans);
  color: var(--color-base);
  font-size: 2rem;
  line-height: 1.67;
  letter-spacing: 0.1em;
}
h1,
h2,
h3,
h4,
h5,
h6,
strong {
  font-weight: bold;
  line-height: 1.3;
}
.center {
  text-align: center;
}
.caution {
  color: #cf1518;
}
.grey-disabled {
  pointer-events: none !important;
  opacity: 0.7 !important;
}
@media (hover: hover) {
  button,
  a {
    transition: opacity 0.3s;
  }
  button:hover,
  a:hover {
    opacity: 0.7;
  }
}
@media (max-width: 1048px) {
  html {
    font-size: 0.954198473282443vw;
  }
}
@media (min-width: 769px) {
  .sp {
    display: none;
  }
}
@media (max-width: 768px) {
  :root {
    --size-block: 4rem;
    --size-inline: 1.6rem;
  }
  html {
    font-size: 2.6666666667vw;
  }
  body {
    font-size: 1.2rem;
  }
  .pc {
    display: none;
  }
}

/*==========================================

Header
==========================================*/
#top .site-header {
  position: relative;
  overflow: hidden;
}
#top .site-header img {
  width: 100%;
}
#top .site-header a {
  width: 22vw;
  position: absolute;
  left: 50%;
  bottom: 2.5vw;
  margin-left: -11vw;
  opacity: 1 !important;
  transform-origin: center center;
  transform: scale(1);
  transition: transform .3s;
}
#top .site-header a:hover{
  transform: scale(1.1);
}
#top .site-header > p {
  width: 100%;
  padding: 1.6rem;
  background: #cf1518;
  color: #fff;
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  position: absolute;
  bottom: 0;
}
.site-footer {
  padding: 10rem 0 5rem;
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  #top .site-header a {
    width: 20rem;
    bottom: 3.5rem;
    margin-left: -10rem;
  }
  #top .site-header > p {
    display: none;
  }
  .site-footer {
    padding: 0 0 1.6rem;
  }
}
/*==========================================

Main & categories
==========================================*/
#top main {
  text-align: center;
  padding: var(--size-block) var(--size-inline);
}
#top main > h2 img {
  width: 24rem;
  margin: 0 auto;
}
#top main > h2{
  margin-bottom: .8rem;
}
#top .area-categories {
  max-width: var(--size-content);
  margin: var(--size-block) auto;
  padding: 5.6rem 4rem;
  border-radius: 2.4rem;
  background: #fff;
  box-shadow: 0.3rem 0.3rem 0.6rem rgba(0 0 0 /16%);
}
#top .area-categories > h3 {
  margin-bottom: 4rem;
  font-size: 3rem;
  font-weight: bold;
}
#top .area-categories .prize + .prize {
  margin-top: 6rem;
  padding-top: 3.5rem;
  border-top: 2px solid #c4c4c4;
}
#top .area-categories .prize > figure figcaption {
  margin-top: 1.6rem;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.3;
}
#top .area-categories .prize > figure figcaption strong {
  display: block;
  font-size: 2.4rem;
  line-height: 2;
}
#top .area-categories .prize .winner-list {
  width: 80%;
  margin: 3.2rem auto 0;
  padding: 1.6rem;
  border-radius: 1.6rem;
  background: #eaeaea;
}
#top .area-categories .prize .winner-list > p {
  color: #ff0000;
  font-weight: bold;
}
#top .area-categories .prize .winner-list ul {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.8rem;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0;
  /* display: flex;
  justify-content: center;
  flex-wrap: wrap; */
}
#top .area-categories .prize li {
  /* background: #666; */
  flex: 0 0 calc(100% / 8);
}
@media (max-width: 768px) {
  #top main > h2 img {
    width: 18rem;
  }
  #top .area-categories {
    margin-block: 2.4rem;
    padding: 2.4rem 1.6rem;
    border-radius: 1.6rem;
  }
  #top .area-categories > h3 {
    margin-bottom: 1.6rem;
    font-size: 2rem;
  }
  #top .area-categories .prize + .prize {
    margin-top: 3rem;
    padding-top: 2.4rem;
    border-top: 1px solid #c4c4c4;
  }
  #top .area-categories .prize > figure figcaption {
    margin-top: 0.8rem;
    font-size: 1.2rem;
  }
  #top .area-categories .prize > figure figcaption strong {
    font-size: 1.8rem;
    line-height: 1.6;
  }
  #top .area-categories .prize .winner-list {
    width: auto;
    margin-top: 1.6rem;
    padding: 1.6rem 0.8rem;
  }
  #top .area-categories .prize .winner-list > p {
    font-size: 1.6rem;
  }
  #top .area-categories .prize .winner-list ul {
    grid-template-columns: repeat(4, 1fr);
    font-size: 1.6rem;
  }
}

/*==========================================

Contact
==========================================*/
.contact-pages {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
}
.contact-pages main {
  text-align: center;
  padding: 10rem var(--size-inline);
}
.contact-pages .btn-standard {
  display: inline-block;
  width: fit-content;
  min-width: 16rem;
  height: 5rem;
  line-height: 5rem;
  border-radius: 999rem;
  border: 1px solid #cf1518;
  background: #fff;
  font-weight: bold;
  font-size: 1.8rem;
  letter-spacing: 0;
}
.contact-pages .btn-standard.return {
  background: #cbcbcb;
  border: none;
}
.contact-pages hgroup {
  margin-bottom: 5rem;
  font-weight: bold;
}
.contact-pages hgroup h1 {
  font-size: 3rem;
  line-height: 1.5;
}
.contact-pages hgroup p {
  margin-top: 1.6rem;
  font-size: 1.4rem;
}
.contact-pages .area-mailform {
  max-width: 62rem;
  margin-inline: auto;
}
.contact-pages .area-mailform .mailform-list {
  margin: 0 auto 6rem;
  text-align: left;
}
.contact-pages .area-mailform .mailform-list .err-msg {
  margin-top: 0.4rem;
  color: #cf1518;
  font-size: 0.85em;
  font-weight: bold;
}
.contact-pages .area-mailform .mailform-list dt {
  margin: 1.6rem 0 0.4rem;
}
.contact-pages .area-mailform input,
.contact-pages .area-mailform select,
.contact-pages .area-mailform .input {
  appearance: auto;
  background: #fff;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 0.4rem;
  padding: 1.4rem;
}
.contact-pages .btns-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem 2rem;
}
.contact-pages .notice {
  margin-top: 4rem;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .contact-pages main {
    padding-block: 5rem;
  }
  .contact-pages .btn-standard {
    font-size: 1.6rem;
  }
  .contact-pages hgroup {
    margin-bottom: 3rem;
  }
  .contact-pages hgroup h1 {
    font-size: 2rem;
  }
  .contact-pages hgroup p {
    font-size: 1.2rem;
  }
  .contact-pages .area-mailform .mailform-list {
    margin: 0 auto 4rem;
  }
  .contact-pages .area-mailform input,
  .contact-pages .area-mailform select,
  .contact-pages .area-mailform .input {
    font-size: 1.6rem;
  }
  .contact-pages .area-mailform select {
    height: 5rem;
  }
  .contact-pages .btns-block {
    flex-direction: column;
  }
}
/*------ Index ------*/
#contact-index dl {
  max-width: 60rem;
  margin: 0 auto 5rem;
  font-weight: bold;
}
#contact-index dl dt {
  color: #cf1518;
  font-size: 3rem;
}
#contact-index dl dd {
  margin-top: 0.8rem;
  padding: 0.8rem;
  border: 1px solid #cf1518;
  border-radius: 0.4rem;
  background: #fff;
  font-size: 1.8rem;
}
#contact-index dl dd + dt {
  margin-top: 3.2rem;
}
#contact-index .btn-standard {
  width: 26rem;
  background: #cf1518;
  color: #fff;
}
@media (max-width: 768px) {
  #contact-index dl dt {
    font-size: 1.8rem;
  }
  #contact-index dl dd {
    margin-top: 0.4rem;
    font-size: 1.4rem;
  }
  #contact-index dl dd + dt {
    margin-top: 1.6rem;
  }
}
/*------ Omikuji ------*/
#omikuji-modal {
  display: grid;
  align-items: center;
  justify-items: center;
  border: 1.6rem solid #f5f3d5;
  border-radius: 3.2rem;
  text-align: center;
  background: rgba(0 0 0 /80%);
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
#omikuji-modal.active {
  z-index: 99;
  opacity: 1;
  pointer-events: auto;
}
#modal-container {
  width: 100%;
  max-width: 40rem;
}
#img-area {
  width: 100%;
  aspect-ratio: 1;
  display: grid;
  grid-template-rows: 1fr;
}
#img-area img {
  width: 100%;
}
#omikuji-gif {
  width: 100%;
  margin-inline: auto;
  aspect-ratio: 1;
  grid-area: 1 / 1;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.5s;
  display: flex;
}
#omikuji-gif.hidden {
  transform: scale(0);
  pointer-events: none;
}
#omikuji-result {
  aspect-ratio: 1;
  grid-area: 1 / 1;
  z-index: 1;
  color: #cf1518;
  font-weight: 900;
  font-size: 18rem;
  display: flex;
}
#result-area {
  position: relative;
  top: -10rem;
}
#result-text {
  margin: 2rem auto 3rem;
  color: #fff;
  font-weight: bold;
}
#omikuji-result,
#result-area {
  transform: scale(0);
  transform-origin: center center;
  transition: transform 1s cubic-bezier(0.92, -0.02, 0.95, 0.25);
  pointer-events: none;
}
#omikuji-result.active,
#result-area.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
@media (max-width: 768px) {
  #contact-omikuji hgroup {
    margin-bottom: 6rem;
  }
  #omikuji-gif img {
    width: 20rem;
    margin: auto;
    display: block;
  }
  #omikuji-result img {
    width: 26rem;
    margin: auto;
  }
  #result-text {
    font-size: 1.6rem;
  }
}
/*------ Thanks ------*/
#contact-thanks hgroup h1 {
  margin-bottom: 6rem;
}
#contact-thanks h3 {
  font-size: 1.8rem;
}
#contact-thanks .code-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.6rem;
  max-width: 32rem;
  margin: 2rem auto 5rem;
  font-weight: bold;
  font-size: 2.6rem;
  line-height: 1;
}
#contact-thanks .code-list:has(li:nth-of-type(2)) {
  justify-content: space-between;
}
#contact-thanks .code-list li {
  flex: 0 1 calc(50% - 1.6rem);
}
@media (max-width: 768px) {
  #contact-thanks hgroup h1 {
    margin-bottom: 3rem;
  }
  #contact-thanks h3 {
    font-size: 1.4rem;
  }
  #contact-thanks .code-list {
    max-width: 28rem;
  }
}
