@charset "UTF-8";

:root {
  --black: #222;
  --white: #fff;
  --purple: #8A7EF9;
  --red:#ff3600;
}

html,body {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, 3.3vw, 18px);
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  font-feature-settings: "palt";
  color: var(--white);
  width: 100%;
  background: none;
  line-height: 1.6;
  z-index: -1;
}
@media screen and (min-width: 1025px) {
  html,body {
    font-size: clamp(12px, 1.2vw, 18px);
  }
}

body {
  background: url(../img/bg.jpg) repeat;
  background-size: 100px;
  background-position: center top;
}
@media screen and (max-width: 1024px) {
  body {
    background-size: 50px;
  }
}

p {
  margin: .5em 0;
  text-align: left;
  word-break: break-all;
}
.small {
  font-size: max(11px, 80%);
}

a,
a:visited,
a:active {
  color: var(--white);
  text-decoration: underline;
}
a:hover {
  color: var(--purple);
  text-decoration: none;
}

img {
  width: 100%;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

header {
  position: relative;
}
.menu {
  position: fixed;
  right: 0;
  width: 25vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  font-size: 1.2em;
  font-family: "Cinzel", serif;
  font-weight: 600;
  font-optical-sizing: auto;
  font-style: normal;
  text-transform: uppercase;
}
.menu ul {
  border-top: 1px solid var(--red);
  border-bottom: 1px solid var(--red);
  padding: 1em 0;
}
.menu ul li a {
  text-decoration: none;
  color: var(--red);
  display: block;
  line-height: 2;
  transform: scaleX(0.9);
  transform-origin: left;
  padding: 0 .5em;
  transition: all .3s;
}
.menu ul li a:hover {
  background: linear-gradient(135deg, #000 0%, var(--red) 50%, var(--purple) 100%);
  color: var(--white);
  transform: scaleX(1);
}
.menu ul li.now a{
  color: var(--purple);
}

#left-area {
  position: fixed;
  width: 25vw;
  height: 100%;
  margin: 0;
  padding: 0;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
#left-area::before,.menu::after {
  content: 'UNDER CONSTRUCTION';
  position: absolute;
  writing-mode: vertical-rl;
  line-height: 1;
  bottom: -0.1em;
  right: -0.1em;
  font-size: 4.4vw;
  white-space: nowrap;
  text-shadow: 0 0 2px #553cfa,0 0 4px #553cfa;
  color: rgba(0,0,0,.9);
  font-weight: 700;
  z-index: -99;
  transform: scaleY(0.8);
  transform-origin: bottom;
  letter-spacing: -2px;
  font-family: "Cinzel", serif;
  font-weight: 700;
  font-optical-sizing: auto;
  font-style: normal;
  text-transform: uppercase;
}
.menu::before,#left-area::after {
  content: 'KAMITSUBAKI CITY ';
  position: absolute;
  writing-mode: vertical-rl;
  line-height: 1;
  top: -0.1em;
  left: -0.3em;
  font-size: 4.4vw;
  white-space: nowrap;
  text-shadow: 0 0 2px #553cfa,0 0 4px #553cfa;
  color: rgba(0,0,0,.9);
  font-weight: 700;
  z-index: -99;
  transform: scaleY(0.8);
  transform-origin: top;
  letter-spacing: -2px;
  font-family: "Cinzel", serif;
  font-weight: 700;
  font-optical-sizing: auto;
  font-style: normal;
  text-transform: uppercase;
}
.logo-img {
  position: relative;
  width: 70%;
  height: 100%;
  padding: 0;
  margin: 0;
  background: url(../img/left.webp) no-repeat;
  background-size: contain;
  background-position: center;
}
main {
  position: relative;
  margin: 0 auto;
  width: 50vw;
  padding: 0;
  z-index: 1;
}
#top-img {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0 auto;
}
.mainSec{
  position: relative;
  margin: 4em 0;
  padding: 1.6em;
  background: rgba(0,0,0,.5);
  border: 1px solid var(--red);
  box-shadow: 0 0 10px var(--red);
}



#menulogo {
  display: none;
  width: 70%;
  margin: 0 auto 1em 
}


/*　ハンバーガーボタン　*/
.hamburger {
  display : none;
  position: fixed;
  z-index : 999;
  right : 0;
  top   : 0;
  width : 60px;
  height: 60px;
  cursor: pointer;
  text-align: center;
  transform: translate3d(0,0,30px);
  background: none;
}
.hamburger::before {
  content: '';
  display: block;
  background: var(--red);
  width: 60px;
  height: 60px;
  border: 2px solid var(--black);
}
.hamburger span {
  display: block;
  position: absolute;
  width: 50%;
  margin: 0 auto;
  height: 3px;
  left: 0;
  right: 0;
  background: var(--white);
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 35%;
}
.hamburger span:nth-child(2) {
  top: 50%;
  opacity: 1;
}
.hamburger span:nth-child(3) {
  top: 65%;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 50%;
  left: 0;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  top: 50%;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

@media screen and (max-width: 750px) {
  .hamburger {
    width : 40px;
    height: 40px;
  }
  .hamburger::before {
    width: 40px;
    height: 40px;
  }
}

@media screen and (max-width: 1024px) {
 #left-area {
  display: none;
 }
 #top-img {
  margin-bottom: 20vw;
 }
 main {
  width: 100%;
  padding: 2em 2em 0;
 }
 .menu {
  width: 100%;
  transition: all .4s;
  background: rgba(0,0,0,.9);
  z-index: 99;
  font-size: 1.6em;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
 }
 .menu ul {
  padding: 1em 2em;
  max-width: 80%;
 }
 .menu.active {
  opacity: 1;
  visibility: visible; 
  pointer-events: auto;
 }
 #menulogo {
   display: block;
   margin-top: 1.5em;
 }
 .hamburger {
    display : block;
 }
 .menu::before, #left-area::after,#left-area::before,.menu::after {
    font-size: 20vw;
 }
}

@media screen and (max-width: 750px) {
  main {
    padding: 1em;
  }
}


h1 {
  position: absolute;
  bottom: 4%;
  right: 0;
  left: 0;
  width: 90%;
  margin: auto;
  padding: 0;
}

h2 {
  position: relative;
  font-size: 3em;
  margin: 0 auto 2.4rem;
  text-align: left;
  line-height: 1;
  font-family: "Cinzel", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  color: var(--red);
  text-align: center;
}
h2 span{
  display: block;
  transform: scaleX(0.8);
  transform-origin: center;
}
h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -.3em;
  width: 100%;
  height: .2em;
  background-image: repeating-linear-gradient(
    -45deg,
    var(--red),
    var(--red) 4px,
    var(--black) 4px,
    var(--black) 8px
  );
}

h3 {
  font-size: 1.4em;
  font-weight: 700;
  background: none;
  text-align: center;
  padding: .2rem 0 .5rem;
  line-height: 1.4;
  margin: 0;
  background: none;
  text-shadow: 0 0 4px var(--red), 0 0 4px var(--red), 0 0 10px var(--red);
}
.h3-sub {
  font-size: 1.2em;
  position: relative;
  color: var(--white);
  border: none;
  padding: 0.5em 1.5em;
  margin: 2em 0 0;
  text-align: center;
  background: var(--red);
}
.h3-sub>span {
  position: absolute;
  top: -5px;
  left: -5px;
  background: var(--white);
  color: var(--black);
  font-size: 1em;
  width: 1.5em;
  height: 1.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--black);
  text-shadow: none;
}

h4 {
  color: var(--purple);
  position: relative;
  font-size: 1em;
  font-weight: 700;
  margin: .5em 0 0;
  padding: 0;
  width: 100%;
  border-bottom: 1px solid var(--purple);
  display: inline-block;
}

span.strong {
  background: var(--red);
  color: var(--white);
  padding: 0 .3em .1em;
  margin: 0 0.2em;
  line-height: 1.2;
  display: inline-block;
  font-weight: 500;
}

.sp-br {
  display: none;
}
ul.text-list {
  padding: 0;
  list-style: none;
  list-style-position: inside;
  margin: 0;
}
ul.text-list li{
  position: relative;
  margin: .5rem 0;
  line-height: 1.4;
  padding-left: 1em;
}
ul.text-list li span{
  color: var(--white);
}
ul.text-list li::before {
  content: '';
  position: absolute;
  top: .42em;
  left: 0;
  margin: auto;
  width: .5em;
  height: .5em;
  background: var(--white);
}
ul.text-list li a span:hover{
  color: var(--purple);
}

@media screen and (max-width: 750px) {
  .sp-br {
    display: block;
  }
  .pc-br {
    display: none;
  }
}


/* campaign */
.postcard {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin: 1em auto;
}
.postcard3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}
.postcard div{
  width: calc(100% / 4);
}
.postcard3 div{
  width: calc(100% / 3 - .6em);
  margin: .3em;
}
@media screen and (max-width: 750px) {
  .postcard div {
    width: calc(100%/2);
  }
  .postcard3 div{
    width: calc(100% / 2 - .4em);
    margin: .2em;
  }
}

/* goods */
.goods-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1em;
  margin: 1em auto 0;
  font-size: .9rem;
}
.goods-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: .5em;
  padding: .5em;
  line-height: 1.2;
  position: relative;
  background: var(--white);
  color: var(--black);
  border-radius: 5px;
}
.goods-img {
  position: relative;
  padding-bottom: 100%;
  background: var(--white);
}
.goods-img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  object-fit: contain;
}
.goods-text {
  line-height: 1.4;
  font-size: .9em;
  padding: 0;
}

.goods-price {
  text-align: right;
  margin-top: auto;
  padding: 0;
  color: var(--purple);
  font-weight: 600;
}
.goods-price span {
  font-size: 80%;
}
a.goods-link {
  font-size: .9em;
  padding: .5rem;
  text-align: center;
  margin: 0;
  background: var(--black);
  color: var(--white);
  text-decoration: none;
  border-radius: 4px;
}
a.goods-link:hover {
  background: var(--purple);
  color: var(--white);
}

.tokuten {
  position: relative;
  padding: 0;
  margin: 0 auto;
  max-width: 700px;
  width: 100%;
}

@media screen and (max-width: 700px) {
  .goods-wrap {
    grid-template-columns: 1fr 1fr;
  }
  .goods-text {
    font-size: 1em;
  }
  .goods-price {
    font-size: 1.1rem;
  }
}


/* access */
.store-outer {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1em;
  font-size: .9rem;
}
.store-wrap {
  margin: 0;
  align-content: flex-start;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: .5em;
  padding: 1em;
}
.store-wrap h4 {
  text-align: center;
  margin: 0 auto;
  border: none;
  font-size: 1em;
  color: var(--white);
}
.store-map {
  width: 100%;
  padding: 0;
  margin: 0;
}
.store-text {
  width: 100%;
  line-height: 1.4;
  margin-bottom: .5em;
}
h5 {
  margin: .4rem 0 0;
  font-size: .8rem;
  font-weight: 400;
  color: var(--purple);
  padding: 0;
}
.store-text p {
  margin-top: 0;
}
.store-link {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5em;
  margin-top: auto;
}
.store-link a {
  background: var(--black);
  color: var(--white);
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
  padding: .5em 0;
  font-size: .7rem;
  border: 1px solid #444;
}
a.store-x {
  display: flex;
  align-items: center;
  justify-content: center;
}
a.store-x svg {
  width: 1em;
  margin-right: .2em;
}
.store-link a:hover {
  background: var(--purple);
  color: var(--white);
}

@media screen and (max-width: 700px) {
  .store-outer {
    grid-template-columns: 1fr;
    font-size: 1rem;
  }
  .store-wrap {
    padding: 1em 0;
  }
  .store-link a {
    font-size: .9rem;
  }
}


footer {
  width: 50vw;
  margin: 0 auto;
  padding: 0 0 2em;
  font-size: 12px;
  color: var(--white);
}
@media screen and (max-width: 1024px) {
  footer {
    width: 100%;
  }
}
footer>p {
  text-align: center;
  margin: 0;
  font-weight: 400;
}
footer p.socialshare {
  font-size: 1rem;
  margin-bottom: 0;
  font-family: "Cinzel", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  text-transform: uppercase;
}
.sns {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0 0 1em;
  font-weight: normal;
  height: 60px;
}
.sns li {
  list-style: none;
  margin: 5px;
  color: var(--white);
}
.sns li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: var(--white);
  padding: 8px;
  border-radius: 4px;
}
#t-icon a {
  padding: 10px;
  color: #000;
}
#f-icon a{
  color: #0866ff;
}
#l-icon a{
  color: #00B900;
}
.gee_logo {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  max-width: 300px;
  margin: 0 auto 2em;
}
.gee_logo a {
  background: var(--white);
  padding: .5em;
  margin: 5px;
  border-radius: 4px;
  width: 100%;
}


/* table */
.detail {
  border-collapse: separate;
  border-spacing: 0 1em;
  margin: 0;
  padding: 0;
  width: 100%;
}
.detail th,
.detail td {
  padding: .5em;
}
.detail th {
  white-space: nowrap;
  font-weight: 500;
  font-size: 85%;
  text-align: center;
  color: var(--red);
  line-height: 1.2;
  border: 1px solid #a01e00;
}
.detail td {
  border-bottom: 1px solid #a01e00;
}