@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho+B1&family=Zen+Maru+Gothic&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DotGothic16&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css");
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  background: linear-gradient(#f82a91, #f3007a, #ef258b);
  background-attachment: fixed;
  position: relative;
}

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

a {
  color: #fff500;
  word-break: break-all;
}
a:hover {
  text-decoration: none;
}

.global_head {
  margin: 0;
  position: relative;
  z-index: 10;
}

footer {
  position: relative;
}

.wrap {
  position: relative;
  display: flex;
  background: url(../img/bg.png), url(../img/bg2.png);
  background-repeat: repeat;
  background-position: top left, center;
  background-size: 400px, 500px;
  background-attachment: fixed;
  background-blend-mode: screen;
  font-family: "DotGothic16";
}

.sub {
  width: calc((100% - 450px) / 2);
  position: relative;
  height: var(--sub-height, 100vh);
  display: flex;
  position: fixed;
  top: 0;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  .sub {
    display: none;
  }
}
@media only screen and (max-width: 900px) {
  .sub {
    display: none !important;
  }
}
.sub__logo img {
  max-width: 280px;
  width: 100%;
  filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.4));
  margin-bottom: 30px;
}
.sub__sns {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.sub__sns p {
  color: #fff;
  margin: 0 0 10px;
}
.sub__sns-content {
  display: flex;
  justify-content: center;
  gap: 0 10px;
  width: 200px;
}
.sub__sns-item {
  background-color: rgba(255, 155, 235, 0.7);
  width: 35px;
  height: 35px;
  box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 20;
}
@media only screen and (min-width: 768px) {
  .sub__sns-item {
    transition: 0.3s;
  }
  .sub__sns-item:hover {
    background-color: rgba(255, 155, 235, 0.5);
  }
}
.sub__sns-item a {
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
}
.sub__sns-icon::before {
  font-family: "Font Awesome 6 Brands";
  font-weight: 900;
  color: #fff;
  font-size: 1rem;
}
.sub__sns-icon.share-x::before {
  content: "\e61b";
}
.sub__sns-icon.share-line::before {
  content: "\f3c0";
}
.sub .local-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px 0;
}
@media only screen and (max-width: 767px) {
  .sub .local-nav {
    display: none;
  }
}
.sub .local-nav li {
  background-color: rgba(255, 155, 235, 0.7);
  width: 200px;
  height: 35px;
  position: relative;
  box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.05);
}
@media only screen and (min-width: 768px) {
  .sub .local-nav li {
    transition: 0.3s;
  }
  .sub .local-nav li:hover {
    background-color: rgba(255, 155, 235, 0.5);
  }
  .sub .local-nav li:hover::after {
    top: 22px;
  }
}
.sub .local-nav li::after {
  content: "";
  background: url(../img/arrow.png) no-repeat top left/contain;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 15px;
  width: 10px;
  height: 10px;
  transition: 0.3s;
}
.sub .local-nav a {
  color: #fff;
  text-decoration: none;
  padding: 0 20px;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}
.sub.sub-left {
  align-items: center;
  justify-content: flex-end;
  padding: 0 60px 0 20px;
}
.sub.sub-right {
  right: 0;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px;
}

.main {
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .main {
    max-width: 450px;
    box-sizing: content-box;
    border-right: 10px solid #f3007b;
    border-left: 10px solid #f3007b;
    overflow: hidden;
  }
}
.main .content {
  overflow: hidden;
  background-color: #ff9beb;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .main .content {
    padding: 20px 15px;
  }
}
@media only screen and (min-width: 768px) {
  .main .content {
    padding: 40px 15px;
  }
}

@media only screen and (max-width: 767px) {
  .entry {
    padding: 0 20px;
  }
}
@media only screen and (min-width: 768px) {
  .entry {
    padding: 0 25px;
  }
}

h2 {
  background-color: rgba(243, 0, 122, 0.4);
  color: #fff;
  text-align: center;
  padding: 5px 10px 7px;
  line-height: 1;
  font-size: 1.8rem;
}
@media only screen and (min-width: 768px) {
  h2 {
    margin: 0 0 20px;
  }
}

h3 {
  background-color: #f3007a;
  color: #fff;
  margin: 0 0 15px;
  padding: 3px 10px 5px;
  line-height: 1;
  font-size: 1.4rem;
  font-weight: normal;
}
@media only screen and (min-width: 768px) {
  h3 {
    margin: 0 0 10px;
  }
}

.head {
  margin: 0 0 7px;
  text-align: right;
}

h1 {
  margin: 0;
  -o-border-image: linear-gradient(rgba(255, 255, 255, 0.4) 0 0) 0//0 100lvi;
     border-image: linear-gradient(rgba(255, 255, 255, 0.4) 0 0) fill 0//0 100lvi;
}
@media only screen and (max-width: 767px) {
  h1 {
    padding: 10px 10px 8px 0;
  }
}
@media only screen and (min-width: 768px) {
  h1 {
    padding: 10px 18px 8px 20px;
  }
}

.sns {
  background: linear-gradient(#fff, #f1f1f1);
  margin: 0 0 25px;
  width: 95px;
  height: 30px;
  border-radius: 4px;
  border: 1px solid #bfbfc3;
}
.sns a {
  color: #111;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.sns__icon {
  width: 22px;
  height: 22px;
  background-color: #000;
  border-radius: 50%;
  margin-right: 7px;
  display: grid;
  place-content: center;
}
.sns__icon::before {
  content: "\e61b";
  font-family: "Font Awesome 6 Brands";
  font-weight: 900;
  color: #fff;
  font-size: 0.7rem;
}
.sns__text {
  position: relative;
  top: -1px;
}

@media only screen and (max-width: 767px) {
  .section {
    margin: 0 0 30px;
  }
}
@media only screen and (min-width: 768px) {
  .section {
    margin: 0 0 40px;
  }
}

@media only screen and (max-width: 767px) {
  .block {
    margin: 0 0 30px;
  }
}
@media only screen and (min-width: 768px) {
  .block {
    margin: 0 0 30px;
  }
}
.block:last-child {
  margin: 0;
}
.block p:first-of-type {
  margin-top: 0;
}
.block .list {
  margin: 0 0 0 18px;
  padding: 0;
  display: grid;
  gap: 7px 0;
  line-height: 1.5;
}
.block .note-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}
.block .note-list li {
  padding-left: 1rem;
  text-indent: -1rem;
}
.block .note-list li::before {
  content: "※";
}
.block .note-attention {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #ff0000;
}
.block .note-attention li {
  padding-left: 1rem;
  text-indent: -1rem;
}
.block .note-attention li::before {
  content: "！";
}
.block .img {
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .block .img {
    max-width: 230px;
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 768px) {
  .block .img {
    max-width: 250px;
    margin-bottom: 30px;
  }
}

.share {
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  text-align: center;
  padding: 5px 0 7px;
  display: flex;
  justify-content: center;
}
.share__item:first-child::after {
  content: "/";
  display: inline-block;
  color: #fff500;
  margin-right: 3px;
  margin-left: -5px;
}

.scroll {
  position: relative;
}

.scroll-text {
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
}

.scroll-border {
  position: relative;
  position: relative;
  width: 10px;
  height: 160px;
  overflow: hidden;
}

.scroll-border::before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  margin: auto;
}

.scroll-border::after {
  content: "";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 50%;
  animation: scrollbar 2s ease-in-out infinite;
  margin: auto;
}

@keyframes scrollbar {
  0% {
    bottom: 170px;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    bottom: -10px;
    opacity: 0;
  }
}
.bottom {
  text-align: center;
  padding-top: 5px;
}/*# sourceMappingURL=style.css.map */