@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&family=Shippori+Mincho:wght@400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@100;300;400;500;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dela+Gothic+One&display=swap");
.hud {
  background: #050100;
  color: #fc9e20;
  font-family: "Courier New", ui-monospace, monospace;
  position: relative;
  isolation: isolate;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: radial-gradient(circle at 50% 48%, rgba(252, 158, 32, 0.08), transparent 42%), linear-gradient(#050100, #000);
}
.hud__ambient {
  position: absolute;
  inset: -20%;
  z-index: 0;
  background: radial-gradient(circle at 16% 32%, rgba(239, 59, 125, 0.12), transparent 12%), radial-gradient(circle at 84% 38%, rgba(159, 108, 175, 0.12), transparent 13%), radial-gradient(circle at 50% 75%, rgba(255, 238, 0, 0.06), transparent 17%);
  animation: ambient-drift 12s ease-in-out infinite alternate;
}
.hud__canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hud__header {
  position: absolute;
  inset: clamp(18px, 3vw, 44px) clamp(20px, 4vw, 64px) auto;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(90px, 0.7fr) minmax(180px, 2fr) minmax(130px, 0.9fr);
  align-items: start;
  gap: clamp(14px, 3vw, 42px);
  filter: drop-shadow(0 0 5px rgba(252, 158, 32, 0.55));
}
.hud__identity {
  display: grid;
  line-height: 0.88;
  transform: skew(-5deg);
}
.hud__identity strong {
  font-size: clamp(18px, 2vw, 30px);
  letter-spacing: -0.08em;
}
.hud__identity span {
  margin-top: 8px;
  font-size: clamp(8px, 0.8vw, 12px);
  letter-spacing: 0.22em;
}
.hud__numbers {
  display: grid;
  justify-items: end;
  font-size: clamp(13px, 1.55vw, 25px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
}
.hud__ribbon {
  display: flex;
  align-items: end;
  height: clamp(42px, 6vw, 82px);
  padding: 0 5%;
  clip-path: polygon(0 27%, 8% 27%, 13% 4%, 26% 20%, 33% 9%, 46% 28%, 62% 13%, 73% 27%, 87% 19%, 100% 33%, 94% 76%, 79% 70%, 70% 88%, 53% 70%, 41% 92%, 25% 71%, 10% 84%, 0 69%);
  background: #ffee00;
  box-shadow: 0 0 20px rgba(255, 238, 0, 0.45);
  transform: translateY(-8px);
}
.hud__ribbon span {
  flex: 1;
  height: calc(18% + var(--bar, 0%));
  border-left: 2px solid rgba(239, 59, 125, 0.8);
  background: rgba(239, 59, 125, 0.28);
}
.hud__ribbon span:nth-child(1) {
  --bar: 5%;
}
.hud__ribbon span:nth-child(2) {
  --bar: 10%;
}
.hud__ribbon span:nth-child(3) {
  --bar: 15%;
}
.hud__ribbon span:nth-child(4) {
  --bar: 20%;
}
.hud__ribbon span:nth-child(5) {
  --bar: 25%;
}
.hud__rail {
  position: absolute;
  top: 24%;
  bottom: 18%;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: min(18vw, 260px);
  pointer-events: none;
}
.hud__left {
  left: clamp(16px, 3vw, 52px);
  align-items: flex-start;
}
.hud__right {
  right: clamp(16px, 3vw, 52px);
  align-items: flex-end;
  text-align: right;
}
.hud__direction {
  position: relative;
  display: grid;
  gap: 1px;
  padding-left: 22px;
  font-size: clamp(8px, 0.85vw, 13px);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hud__direction::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 14px;
  height: 14px;
  border-left: 2px solid #fc9e20;
  border-bottom: 2px solid #fc9e20;
  transform: translateY(-50%) rotate(45deg);
}
.hud__direction--right {
  padding-right: 22px;
  padding-left: 0;
}
.hud__direction--right::before {
  right: 0;
  left: auto;
  transform: translateY(-50%) rotate(225deg);
}
.hud__code {
  position: relative;
  padding: 5px 8px;
  border-top: 1px solid rgba(252, 158, 32, 0.85);
  font-size: clamp(9px, 1vw, 15px);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.hud__code::after {
  content: "";
  position: absolute;
  top: -1px;
  width: 60px;
  border-top: 1px solid rgba(252, 158, 32, 0.7);
}
.hud__left .hud__code::after {
  left: 100%;
  transform: rotate(-18deg);
  transform-origin: left;
}
.hud__right .hud__code::after {
  right: 100%;
  transform: rotate(18deg);
  transform-origin: right;
}
.hud__code--large {
  font-size: clamp(13px, 1.5vw, 22px);
  font-weight: 700;
}
.hud__code--large span {
  font-size: 0.55em;
}
.hud__lower-left {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 4;
  width: min(44vw, 620px);
  height: clamp(92px, 15vh, 170px);
  border-top: 3px solid #ffee00;
  border-right: 3px solid #ffee00;
  clip-path: polygon(0 0, 96% 0, 100% 16%, 100% 100%, 0 100%);
  filter: drop-shadow(0 0 7px rgba(255, 238, 0, 0.35));
}
.hud__lower-right {
  position: absolute;
  right: 2vw;
  bottom: 2vh;
  z-index: 5;
  width: min(31vw, 430px);
  height: min(28vh, 230px);
}
.hud__target {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: clamp(22px, 3vmin, 38px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 238, 0, 0.8);
  transform: translate(-50%, -50%) rotate(45deg);
  box-shadow: 0 0 15px rgba(255, 238, 0, 0.6);
}
.hud__target span, .hud__target::before, .hud__target::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  background: #ffee00;
  transform: translate(-50%, -50%);
}
.hud__target span {
  width: 40%;
  height: 40%;
}
.hud__target::before {
  width: 180%;
  height: 1px;
}
.hud__target::after {
  width: 1px;
  height: 180%;
}
.hud__footer {
  position: absolute;
  left: clamp(18px, 3vw, 52px);
  right: clamp(18px, 3vw, 52px);
  bottom: clamp(10px, 1.3vh, 20px);
  z-index: 7;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: clamp(8px, 0.75vw, 12px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
  pointer-events: none;
}
.hud__scanlines, .hud__vignette {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
}
.hud__scanlines {
  background: repeating-linear-gradient(to bottom, transparent 0 3px, rgba(0, 0, 0, 0.22) 4px);
  mix-blend-mode: multiply;
  opacity: 0.45;
  animation: scan 8s linear infinite;
}
.hud__vignette {
  background: radial-gradient(circle at center, transparent 55%, rgba(0, 0, 0, 0.58) 100%), linear-gradient(90deg, rgba(239, 59, 125, 0.05), transparent 18%, transparent 82%, rgba(159, 108, 175, 0.06));
  box-shadow: inset 0 0 12vw #000;
}

.signal {
  display: flex;
  align-items: end;
  gap: 3px;
  width: min(17vw, 240px);
  height: clamp(55px, 9vh, 100px);
  padding: 8px;
  border-top: 2px solid #ef3b7d;
  border-bottom: 2px solid #ffee00;
  clip-path: polygon(0 18%, 12% 0, 28% 14%, 41% 3%, 55% 20%, 73% 5%, 100% 19%, 96% 86%, 76% 72%, 62% 94%, 43% 76%, 24% 91%, 0 71%);
  background: rgba(159, 108, 175, 0.3);
}
.signal span {
  flex: 1;
  height: var(--height, 50%);
  background: #ef3b7d;
  box-shadow: 0 0 6px rgba(239, 59, 125, 0.6);
}
.signal span:nth-child(1) {
  --height: 37%;
}
.signal span:nth-child(2) {
  --height: 54%;
}
.signal span:nth-child(3) {
  --height: 71%;
}
.signal span:nth-child(4) {
  --height: 88%;
}
.signal span:nth-child(5) {
  --height: 30%;
}
.signal span:nth-child(6) {
  --height: 47%;
}
.signal--two {
  transform: scaleX(-1);
}

.noise-panel {
  position: absolute;
  inset: 12px 10px 18px 0;
  background: repeating-conic-gradient(from 45deg, rgba(252, 158, 32, 0.82) 0 25%, transparent 0 50%) 0 0/6px 6px, linear-gradient(rgba(252, 158, 32, 0.1), rgba(239, 59, 125, 0.08));
  mask-image: linear-gradient(90deg, #000 0 82%, transparent);
  animation: noise-shift 0.22s steps(2) infinite;
}

.scale-rule {
  position: absolute;
  left: 0;
  right: 4%;
  top: 0;
  display: flex;
  justify-content: space-around;
}
.scale-rule span {
  width: 1px;
  height: 10px;
  background: #ffee00;
  box-shadow: 0 0 4px rgba(255, 238, 0, 0.7);
}

.orbit-node {
  position: absolute;
  width: clamp(62px, 8vw, 110px);
  height: clamp(24px, 3.4vw, 46px);
  border: 2px solid #ffee00;
  border-radius: 50%;
  background: rgba(239, 59, 125, 0.6);
  box-shadow: 0 0 9px rgba(239, 59, 125, 0.55), inset 0 0 10px rgba(255, 238, 0, 0.15);
  transform: rotate(-8deg);
}
.orbit-node::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 100%;
  width: 1px;
  height: 86px;
  background: #ffee00;
  transform: rotate(-24deg);
  transform-origin: bottom;
}
.orbit-node span {
  position: absolute;
  inset: 50% auto auto 50%;
  font-size: clamp(7px, 0.65vw, 10px);
  font-weight: 700;
  color: #ffee00;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}
.orbit-node--1 {
  left: 2%;
  bottom: 8%;
}
.orbit-node--2 {
  left: 30%;
  bottom: 34%;
  transform: rotate(7deg);
}
.orbit-node--3 {
  right: 18%;
  bottom: 12%;
  transform: rotate(-2deg) scale(0.8);
}
.orbit-node--4 {
  right: 0;
  bottom: 44%;
  transform: rotate(12deg) scale(0.72);
}

@keyframes ambient-drift {
  to {
    transform: translate3d(2%, -2%, 0) scale(1.06);
  }
}
@keyframes noise-shift {
  to {
    background-position: 7px -5px, 0 0;
  }
}
@keyframes scan {
  to {
    background-position-y: 36px;
  }
}
@media (max-width: 760px) {
  .hud__header {
    grid-template-columns: 0.8fr 1.4fr 1fr;
  }
  .hud__rail {
    top: 20%;
    bottom: 20%;
    width: 24vw;
  }
  .hud__lower-left {
    width: 52vw;
    height: 12vh;
  }
  .hud__lower-right {
    width: 40vw;
    opacity: 0.8;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
@media only screen and (max-width: 768px) {
  .pconly {
    display: none;
  }
}

@media only screen and (min-width: 769px) {
  .sponly {
    display: none;
  }
}

body {
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  background-color: #000;
  overflow-x: hidden;
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  background-color: #000;
}
.hero__inner {
  position: absolute;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
}
.hero__inner--ttl {
  text-align: center;
}
.hero__inner--ttl h1 {
  margin: 0;
}
.hero__inner--ttl h1 img {
  width: 95%;
  margin: 0 auto;
}
.hero__inner--ttl h2 {
  margin: 0;
  color: #fc9e20;
  font-family: "Dela Gothic One", sans-serif;
  font-style: normal;
  font-weight: 500;
}
@media only screen and (min-width: 769px) {
  .hero__inner--ttl h2 {
    font-size: 72px;
    line-height: 64px;
  }
}
@media only screen and (max-width: 768px) {
  .hero__inner--ttl h2 {
    font-size: 36px;
    line-height: 36px;
  }
}

.wrap {
  position: relative;
  border-top: solid 20px #fc9e20;
  border-bottom: solid 20px #fc9e20;
  background-image: url("../img/bgtexture.jpg");
  background-size: 28.3333333333vw;
  background-position: center;
}
.wrap::before {
  content: "";
  position: absolute;
  inset: -20px 0;
  z-index: 1;
  pointer-events: none;
  border-style: solid;
  border-width: 0 5vw;
  border-color: transparent;
  border-image-source: url("../img/border.png");
  border-image-slice: 0 180;
  border-image-width: 0 5vw;
  border-image-repeat: repeat;
}
.wrap section {
  margin-bottom: 48px;
}
.wrap section:first-child {
  margin-top: 48px;
}

.intro {
  font-family: "Courier New", ui-monospace, monospace;
  position: relative;
  z-index: 10;
  margin: 10px;
}
.intro__date {
  background: #fc9e20;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  height: 50px;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 768px) {
  .intro__date {
    max-width: 300px;
    font-size: 1.07rem;
    margin: 0 auto 25px;
  }
}
@media only screen and (min-width: 769px) {
  .intro__date {
    max-width: 450px;
    font-size: 1.35rem;
    margin: 0 auto 40px;
    padding: 10px;
  }
}
.intro__comment {
  border: solid 2px #7bb08a;
  background: #050100;
  color: #fc9e20;
  text-align: left;
  margin: 0 auto;
  padding: 36px;
}
@media only screen and (max-width: 768px) {
  .intro__comment {
    margin: 60px 0 40px;
  }
}
@media only screen and (min-width: 769px) {
  .intro__comment {
    max-width: fit-content;
    width: 750px;
    margin: 48px auto 48px;
  }
}
@media only screen and (min-width: 769px) {
  .intro__comment--ttl {
    text-align: center;
    font-size: 72px;
    font-weight: bolder;
  }
}
@media only screen and (max-width: 768px) {
  .intro__comment--ttl {
    text-align: left;
    font-size: 48px;
    font-weight: bolder;
  }
}
.intro__comment p {
  font-family: "Noto Sans JP";
  font-weight: 500;
}
@media only screen and (min-width: 769px) {
  .intro__comment p {
    font-size: 24px;
    line-height: 32px;
    margin: 36px 0;
  }
}
@media only screen and (max-width: 768px) {
  .intro__comment p {
    font-size: 20px;
    line-height: 28px;
  }
}
.intro__comment ul {
  padding: 0;
  list-style-type: none;
  font-size: 16px;
}
.intro__comment ul li:before {
  content: "※";
}
.intro__link {
  text-align: center;
}
@media only screen and (min-width: 769px) {
  .intro__link {
    margin: 50px 0;
  }
}
.intro__link a {
  text-decoration: none;
  color: #fff;
}
.intro__link a:visited {
  text-decoration: none;
  color: #fff;
}
.intro__link a {
  transition: 0.2s;
}
.intro__link a:hover {
  text-decoration: none;
  color: #bdbdbd;
}
.intro__note {
  color: #000;
  background-color: #fc9e20;
}
@media only screen and (min-width: 769px) {
  .intro__note {
    max-width: 700px;
    margin: 30px auto 0;
    padding: 35px;
  }
}
@media only screen and (max-width: 768px) {
  .intro__note {
    font-size: 15px;
    margin: 100px auto;
    padding: 10px;
  }
}
.intro__note-attention-ttl {
  font-family: "Noto Sans JP";
  font-weight: bold;
  margin: 0 0 17px;
}
@media only screen and (min-width: 769px) {
  .intro__note-attention-ttl {
    font-size: 24px;
    font-weight: bolder;
  }
}
@media only screen and (max-width: 768px) {
  .intro__note-attention-ttl {
    font-size: 28px;
  }
}
.intro__note-attention p {
  color: #000;
}
@media only screen and (min-width: 769px) {
  .intro__note-attention p {
    text-align: center;
    font-weight: bolder;
  }
}
@media only screen and (max-width: 768px) {
  .intro__note-attention p {
    font-size: 18px;
    line-height: 28px;
    text-align: left;
    font-weight: 900;
  }
}

.infotext {
  max-width: max-content;
  width: 100%;
  margin: 0 auto;
  text-align: left;
}
.infotext__text {
  margin: 0 auto 70px;
}
.infotext ul {
  margin: 0 auto 40px;
}
.infotext li {
  font-weight: 700;
  font-size: 20px;
  line-height: normal;
}

.topics__icon {
  filter: brightness(100);
}
.topics {
  position: relative;
  z-index: 6;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.topics__inner h2 {
  color: #fc9e20;
  text-align: center;
  text-align: center;
  font-size: 3em;
  font-weight: bolder;
}
.topics__inner {
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .topics__inner {
    padding: 0 10px;
  }
}
@media only screen and (min-width: 769px) {
  .topics__inner {
    max-width: 1150px;
    width: calc(100% - 30px);
  }
}
.topics__ttl {
  text-align: center;
  font-family: "Noto Sans JP";
}
@media only screen and (max-width: 768px) {
  .topics__ttl {
    margin: 0 0 30px;
  }
}
@media only screen and (min-width: 769px) {
  .topics__ttl {
    margin: 0 0 50px;
  }
}
.topics__ttl-text {
  color: #fc9e20;
  text-align: center;
  font-weight: 700;
  padding: 0;
  margin: 10px 0 8px;
  letter-spacing: 0.1rem;
}
@media only screen and (max-width: 768px) {
  .topics__ttl-text {
    font-size: 1.9rem;
  }
}
@media only screen and (min-width: 769px) {
  .topics__ttl-text {
    font-size: 2.2rem;
  }
}
@media only screen and (max-width: 768px) {
  .topics__ttl span {
    font-size: 0.85rem;
  }
}
@media only screen and (min-width: 769px) {
  .topics__ttl span {
    font-size: 0.95rem;
  }
}
.topics__area ul {
  list-style: none;
  padding: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .topics__area ul {
    margin: 0;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 769px) {
  .topics__area ul {
    margin: 0 0 7px;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.topics__area ul .topic {
  border: solid 2px #fc9e20;
  background-color: #050100;
  box-sizing: border-box;
  position: relative;
  transition: 0.3s;
}
@media only screen and (max-width: 768px) {
  .topics__area ul .topic {
    width: 48%;
    margin: 0 0 20px;
    padding: 15px 10px;
  }
}
@media only screen and (min-width: 769px) {
  .topics__area ul .topic {
    width: 25%;
    display: flex;
    flex-direction: column;
    margin: 0 8px 35px;
    padding: 15px 13px;
  }
}
.topics__area ul .topic:first-child {
  margin-top: 0;
}
.topics__area ul .topic:hover {
  box-shadow: 5px 5px 0px #fc9e20;
}
.topics__area ul .topic figure {
  position: relative;
  display: grid;
  place-items: center;
  margin: 0 auto;
  overflow: hidden;
  background: #050100;
}
@media only screen and (min-width: 769px) {
  .topics__area ul .topic figure {
    width: 250px;
    height: 250px;
  }
}
@media only screen and (max-width: 768px) {
  .topics__area ul .topic figure {
    width: calc(50vw - 48px);
    height: calc(50vw - 48px);
  }
}
.topics__area ul .topic figure a {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
}
.topics__area ul .topic figure a img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
}
@media only screen and (min-width: 769px) {
  .topics__area ul .topic figure a img {
    max-width: 250px;
    max-height: 250px;
  }
}
@media only screen and (max-width: 768px) {
  .topics__area ul .topic figure a img {
    max-width: calc(50vw - 48px);
    max-height: calc(50vw - 48px);
  }
}
.topics__area ul .topic figure .noimg {
  color: #97a5b7;
  font-weight: 600;
}
@media only screen and (max-width: 768px) {
  .topics__area ul .topic figure .noimg {
    font-size: 1.1rem;
  }
}
@media only screen and (min-width: 769px) {
  .topics__area ul .topic figure .noimg {
    font-size: 1.3rem;
  }
}
.topics__area ul .topic__text {
  font-weight: bold;
  width: 100%;
  padding: 0;
  margin: 10px 0 0;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .topics__area ul .topic__text {
    font-size: 14px;
    height: 66px;
    line-height: 23px;
  }
}
@media only screen and (min-width: 769px) {
  .topics__area ul .topic__text {
    padding: 0;
    font-size: 16px;
    height: 80px;
    overflow: hidden;
    line-height: 27px;
  }
}
.topics__area ul .topic__text:hover {
  text-decoration: none !important;
}
.topics__area ul .topic__text a {
  color: #fc9e20;
  text-decoration: none;
}
@media only screen and (max-width: 768px) {
  .topics__area ul .topic__text a {
    text-overflow: ellipsis;
    white-space: normal;
  }
}
.topics__area ul .topic__text a:hover {
  text-decoration: none !important;
}
.topics__area ul .topic__date {
  text-align: right;
  color: #7bb08a;
  letter-spacing: 0.07em;
}
@media only screen and (max-width: 768px) {
  .topics__area ul .topic__date {
    margin: 20px 0 0;
    font-size: 14px;
  }
}
@media only screen and (min-width: 769px) {
  .topics__area ul .topic__date {
    margin: 28px 0 0;
    font-size: 0.85rem;
  }
}
.topics__soon {
  color: #fff;
  text-align: center;
  font-family: "Noto Sans JP";
}
@media only screen and (max-width: 768px) {
  .topics__soon {
    margin: 30px 0 60px;
  }
}
@media only screen and (min-width: 769px) {
  .topics__soon {
    margin: 50px 0 80px;
    font-size: 1.1rem;
  }
}
.topics__more_button a {
  color: #000;
  text-decoration: none;
  font-weight: bolder;
}
.topics__more_button {
  background-color: #fc9e20;
  border: none;
  color: #ffffff;
  cursor: pointer;
  display: block;
  font-size: 1rem;
  height: 50px;
  line-height: 48px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  max-width: 250px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.topics__more_button:hover {
  box-shadow: 5px 5px 0px #fc9e20;
}

.narrow-hide {
  display: none !important;
}

.shop {
  position: relative;
  z-index: 50;
  border: solid 2px #7bb08a;
  background-color: #000;
  color: #fc9e20;
}
@media only screen and (min-width: 769px) {
  .shop {
    width: 750px;
    margin: 48px auto;
  }
}
@media only screen and (max-width: 768px) {
  .shop {
    margin: 10px;
  }
}
.shop__inner h2 {
  font-family: "Courier New", ui-monospace, monospace;
  color: #fc9e20;
  text-align: center;
  font-size: 48px;
  font-weight: bolder;
  margin: 24px auto 0;
}
.shop__inner h3 {
  font-family: "Courier New", ui-monospace, monospace;
  color: #fc9e20;
  text-align: center;
  font-size: 20px;
  font-weight: bolder;
  margin: 0 auto 24px;
}
.shop__inner {
  margin: 0 auto;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .shop__inner {
    padding: 0 10px;
  }
}
@media only screen and (min-width: 769px) {
  .shop__inner {
    max-width: 1200px;
    width: calc(100% - 30px);
  }
}
.shop__ttl {
  font-family: "Noto Sans JP";
  background: #D6DBE2;
  height: 35px;
  text-align: center;
  color: #fc9e20;
  font-weight: 600;
  letter-spacing: 1.5px;
}
@media only screen and (max-width: 768px) {
  .shop__ttl {
    left: 10px;
    width: 200px;
    font-size: 14px;
    line-height: 50px;
  }
}
@media only screen and (min-width: 769px) {
  .shop__ttl {
    left: 0;
    width: 210px;
    font-size: 16px;
    line-height: 45px;
  }
}
.shop__map {
  text-align: center;
}
@media only screen and (min-width: 769px) {
  .shop__map iframe {
    max-width: 700px;
    width: 100%;
    height: 450px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 768px) {
  .shop__map iframe {
    max-width: 100vw;
    width: 90%;
    height: 450px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 768px) {
  .shop__detail {
    padding: 30px 0 0;
  }
}
@media only screen and (min-width: 769px) {
  .shop__detail {
    padding: 0;
    display: flex;
    justify-content: center;
  }
}
@media only screen and (min-width: 769px) {
  .shop__detail-item {
    width: fit-content;
  }
}
.shop__detail-item {
  padding: 10px;
  margin: 0 auto 20px;
  line-height: 23px;
}
.shop__detail-item p {
  margin: 0;
  padding: 0;
}
@media only screen and (max-width: 768px) {
  .shop__detail-item p {
    font-size: 18px;
    line-height: 24px;
  }
}
@media only screen and (min-width: 769px) {
  .shop__detail-item p {
    font-size: 18px;
    line-height: 18px;
  }
}
.shop__detail-link {
  width: fit-content;
  margin: 0 auto;
  position: relative;
  border: #fc9e20 solid 3px;
  background: #fc9e20;
  text-align: center;
  box-sizing: border-box;
  padding: 7px 5px;
  transition: 0.5s;
}
.shop__detail-link:hover {
  box-shadow: 5px 5px 0px #fc9e20;
}
.shop__detail-link a {
  color: #000;
  font-weight: bolder;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
}

.sns {
  padding: 150px auto;
  position: relative;
  z-index: 10;
  width: fit-content;
  margin: 0 auto 24px;
  position: relative;
  border: #fc9e20 solid 3px;
  text-align: center;
  box-sizing: border-box;
  padding: 7px 5px;
  transition: 0.5s;
}
.sns__ttl {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .sns__ttl {
    margin: 0;
  }
}
@media only screen and (min-width: 769px) {
  .sns__ttl {
    margin: 0;
  }
}
.sns__pic {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .sns__pic {
    margin: 0 10px 0 0;
  }
  .sns__pic img {
    width: 40px;
    height: auto;
  }
}
@media only screen and (min-width: 769px) {
  .sns__pic {
    margin: 0 20px 0 0;
  }
  .sns__pic img {
    width: 48px;
    height: auto;
  }
}
.sns a {
  color: #fc9e20;
  font-size: 1rem;
  text-decoration: none;
  margin: 0;
  padding: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .sns a {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
}
@media only screen and (min-width: 769px) {
  .sns a {
    font-size: 2rem;
    line-height: 1.7rem;
  }
}

.global_head {
  margin: 0;
  padding: 0;
}

footer {
  margin: 0;
  padding: 0;
  background: #05294b;
}
footer .global_foot {
  border: none;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  footer .global_foot {
    margin: 0 auto;
    padding: 30px 20px 10px;
  }
}
@media only screen and (min-width: 769px) {
  footer .global_foot {
    max-width: 1200px;
    width: calc(100% - 45px);
    margin: 0 auto;
    padding: 35px 0 25px;
  }
}
footer .global_foot .guide_container {
  display: flex;
}
@media only screen and (max-width: 768px) {
  footer .global_foot .guide_container {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 768px) {
  footer .global_foot .guide_list {
    width: 49%;
    margin: 0 0 18px;
  }
}
@media only screen and (min-width: 769px) {
  footer .global_foot .guide_list {
    margin-right: 50px;
  }
}
footer .global_foot ul {
  list-style: none;
  margin: 0;
  text-align: left;
}
footer .global_foot ul li {
  font-size: 13px !important;
  margin: 0 0 13px !important;
}
footer .global_foot ul li a {
  text-decoration: none;
  color: #fff;
}
footer .global_foot ul li a:hover {
  text-decoration: underline;
}
footer .global_foot .sns_area {
  display: flex;
}
@media only screen and (max-width: 768px) {
  footer .global_foot .sns_area .item {
    margin-right: 4px;
    text-align: left;
  }
  footer .global_foot .sns_area .item img {
    width: 80%;
  }
}
@media only screen and (min-width: 769px) {
  footer .global_foot .sns_area .item {
    margin-left: 5px;
    text-align: right;
  }
  footer .global_foot .sns_area .item img {
    width: 90%;
  }
  footer .global_foot .sns_area .item img:hover {
    opacity: 0.8;
  }
}
footer .global_foot .guide_top {
  display: flex;
}
@media only screen and (max-width: 768px) {
  footer .global_foot .guide_top {
    flex-direction: column;
    margin: 0 0 20px;
  }
}
@media only screen and (min-width: 769px) {
  footer .global_foot .guide_top {
    justify-content: space-between;
    margin: 0 0 40px;
  }
}
footer .global_foot .guide_middle .lang_area {
  display: flex;
}
@media only screen and (max-width: 768px) {
  footer .global_foot .guide_middle .lang_area {
    margin: 0 0 15px;
  }
}
@media only screen and (min-width: 769px) {
  footer .global_foot .guide_middle .lang_area {
    margin: 0 0 15px;
  }
}
footer .global_foot .guide_middle .lang_area .item {
  text-align: left;
}
@media only screen and (max-width: 768px) {
  footer .global_foot .guide_middle .lang_area .item {
    margin-right: 4px;
  }
}
@media only screen and (min-width: 769px) {
  footer .global_foot .guide_middle .lang_area .item {
    margin-right: 3px;
  }
}
footer .global_foot .guide_middle .lang_area .item img {
  border-radius: 50px;
}
@media only screen and (max-width: 768px) {
  footer .global_foot .guide_middle .lang_area .item img {
    width: 70%;
  }
}
@media only screen and (min-width: 769px) {
  footer .global_foot .guide_middle .lang_area .item img {
    width: 75%;
  }
  footer .global_foot .guide_middle .lang_area .item img:hover {
    opacity: 0.8;
  }
}
footer .global_foot .guide_bottom {
  display: flex;
}
@media only screen and (max-width: 768px) {
  footer .global_foot .guide_bottom {
    flex-direction: column;
  }
}
@media only screen and (min-width: 769px) {
  footer .global_foot .guide_bottom {
    justify-content: space-between;
  }
}
@media only screen and (max-width: 768px) {
  footer .global_foot .guide_bottom .police {
    text-align: left;
  }
}
@media only screen and (min-width: 769px) {
  footer .global_foot .guide_bottom .copyright {
    text-align: center;
  }
}
footer .global_foot .guide_bottom p {
  color: #fff;
}
@media only screen and (max-width: 768px) {
  footer .global_foot .guide_bottom p {
    font-size: 11px;
  }
}
@media only screen and (min-width: 769px) {
  footer .global_foot .guide_bottom p {
    font-size: 11px;
  }
}
footer .global_foot .guide_bottom p a {
  text-decoration: none;
  color: #fff;
}
footer .global_foot .guide_bottom p a:hover {
  text-decoration: underline;
}/*# sourceMappingURL=style.css.map */