@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=BIZ+UDPMincho&family=Kaisei+Opti&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "BIZ UDPMincho", serif;
  font-style: normal;
  font-weight: normal;
}

p, h1, h2, h3, h4, h5, h6, a {
  color: #3E3E3E;
  font-weight: normal;
}

p {
  font-size: 16px;
  letter-spacing: 3px;
  line-height: 32px;
}

.en {
  font-family: "Kaisei Opti", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 10px;
}
@media (max-width: 500px) {
  .en {
    letter-spacing: 5px;
  }
}

.wbr {
  display: none;
}
@media (max-width: 500px) {
  .wbr {
    display: block;
  }
}

.btn {
  font-size: 18px;
  color: #3E3E3E;
  text-decoration: none;
  letter-spacing: 4px;
  display: flex;
  align-items: center;
}
.btn:hover .btn-ring::after {
  width: 150px;
  height: 150px;
}
.btn:hover .btn-ring img {
  animation: btn-ring-migi 0.5s 1;
}
@keyframes btn-ring-migi {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.btn .btn-ring {
  width: 65px;
  height: 65px;
  display: grid;
  place-items: center;
  margin-left: 10px;
  position: relative;
}
.btn .btn-ring img {
  display: block;
}
.btn .btn-ring::after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 65px;
  height: 65px;
  background-image: url(../img/jiji-ring-blue.png);
  background-size: contain;
  background-repeat: no-repeat;
  transition: 0.3s;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ring-anime-btn 20s linear infinite;
}
@keyframes ring-anime-btn {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.header {
  height: 200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: calc(100vw - 40px);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99990;
}
.header .header-logo {
  margin-left: 30px;
}
.header .header-logo img {
  width: 75px;
}
@media (max-width: 500px) {
  .header .header-logo img {
    width: 45px;
  }
}
.header .hamburger {
  height: 123px;
  width: 123px;
  margin-right: 30px;
  display: grid;
  place-items: center;
  position: relative;
  cursor: pointer;
}
@media (max-width: 500px) {
  .header .hamburger {
    height: 100px;
    width: 100px;
    margin-right: 10px;
  }
}
.header .hamburger p {
  font-size: 18px;
}
@media (max-width: 500px) {
  .header .hamburger p {
    font-size: 14px;
  }
}
.header .hamburger::after {
  content: "";
  position: absolute;
  background-image: url(../img/header-ring.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  width: 123px;
  height: 123px;
  animation: ring-anime 20s linear infinite;
}
@media (max-width: 500px) {
  .header .hamburger::after {
    height: 100px;
    width: 100px;
  }
}
.header .hamburger:hover::after {
  animation-play-state: paused;
}
@keyframes ring-anime {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #eeaaaa;
  z-index: -100000;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: 0.3s;
}
.hero-bg img {
  width: 500px;
}
@media (max-width: 500px) {
  .hero-bg img {
    width: 300px;
  }
}

.bg-b2 {
  background-color: #e1eeaa;
}

.bg-b3 {
  background-color: #aaeeb7;
}

.bg-b4 {
  background-color: #aadcee;
}

.bg-b5 {
  background-color: #eed5aa;
}

.bg-b6 {
  background-color: #c7aaee;
}

.bg-b7 {
  background-color: #eeaad5;
}

.bg-b8 {
  background-color: #aaeed2;
}

.bg-b9 {
  background-color: #eeaacc;
}

.bg-b10 {
  background-color: #d5eeaa;
}

.marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-top: 100px;
}
@media (max-width: 500px) {
  .marquee {
    margin-top: 200px;
  }
}
.marquee .marquee__wrap {
  display: inline-flex;
  padding-top: 10px;
  will-change: transform;
}
.marquee .marquee__track {
  display: inline-flex;
  gap: 150px;
  align-items: center;
}
@media (max-width: 500px) {
  .marquee .marquee__track {
    gap: 90px;
  }
}
.marquee .marquee__track .marquee__item {
  flex: 0 0 auto;
  width: 200px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  animation: ball-ro 20s linear infinite;
  transition: 0.3s;
}
@media (max-width: 500px) {
  .marquee .marquee__track .marquee__item {
    width: 120px;
    height: 120px;
  }
}
@keyframes ball-ro {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.marquee .marquee__track .marquee__item:hover {
  animation: ball-anime 0.3s linear forwards;
}
@keyframes ball-anime {
  100% {
    transform: scale(110%);
  }
}
.marquee .marquee__track--top {
  animation: infinity-scroll-right 50s linear infinite;
  padding-right: 150px;
}
@media (max-width: 500px) {
  .marquee .marquee__track--top {
    padding-right: 90px;
  }
}
@keyframes infinity-scroll-right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
.marquee .marquee__wrap-left {
  display: inline-flex;
  margin-top: 200px;
  padding-bottom: 10px;
  will-change: transform;
}
@media (max-width: 500px) {
  .marquee .marquee__wrap-left {
    margin-top: 120px;
  }
}
.marquee .track-left {
  display: inline-flex;
  gap: 150px;
  align-items: center;
  animation: infinity-scroll-left 50s linear infinite;
  padding-right: 150px;
}
@media (max-width: 500px) {
  .marquee .track-left {
    gap: 90px;
    padding-right: 90px;
  }
}
.marquee .track-left .marquee__item {
  animation: ball-ro-l 20s linear infinite;
}
@keyframes ball-ro-l {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.about {
  margin-top: 200px;
  position: relative;
}
.about .about-text {
  width: calc(100% - 40px);
  max-width: 1280px;
  margin: 100px auto;
}
.about .about-text h2 {
  font-size: 135px;
  color: #C6D4EB;
  margin-bottom: 50px;
}
@media (max-width: 900px) {
  .about .about-text h2 {
    font-size: 90px;
  }
}
@media (max-width: 500px) {
  .about .about-text h2 {
    font-size: 40px;
    margin-bottom: 10px;
  }
}
.about .about-text h3 {
  font-size: 32px;
  letter-spacing: 12px;
  font-weight: normal;
  margin-bottom: 40px;
}
@media (max-width: 500px) {
  .about .about-text h3 {
    font-size: 24px;
    letter-spacing: 5px;
  }
}
.about .about-btn {
  width: calc(100% - 40px);
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: end;
  margin-bottom: 200px;
}
.about .about-illust {
  position: absolute;
  top: 0;
  right: 20%;
  z-index: -1;
  width: 450px;
  height: 450px;
  display: grid;
  place-items: center;
}
@media (max-width: 1200px) {
  .about .about-illust {
    right: 5%;
  }
}
@media (max-width: 900px) {
  .about .about-illust {
    top: 70%;
    left: 5%;
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 500px) {
  .about .about-illust {
    top: 110%;
    left: 5%;
    width: 300px;
    height: 300px;
  }
}
.about .about-illust img {
  width: 185px;
  animation: zou-anime 5s infinite;
}
@keyframes zou-anime {
  0% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(20deg);
  }
  100% {
    transform: rotate(-5deg);
  }
}
.about .about-illust::after {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background-image: url(../img/jiji-ring-blue.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ring-anime-btn 40s linear infinite;
}
@media (max-width: 900px) {
  .about .about-illust::after {
    width: 300px;
    height: 300px;
  }
}

.character {
  width: calc(100% - 40px);
  max-width: 1280px;
  margin: 100px auto;
}
.character .twin {
  display: grid;
  grid-template-columns: 7fr 3fr;
}
@media (max-width: 500px) {
  .character .twin {
    grid-template-columns: 1fr;
  }
}
.character .twin img {
  margin: 0 auto;
  width: 80%;
}
@media (max-width: 500px) {
  .character .twin img {
    display: none;
  }
}
.character .twin .twin-box h3 {
  font-size: 32px;
  writing-mode: vertical-rl;
  letter-spacing: 16px;
  margin: 0 auto;
}
@media (max-width: 500px) {
  .character .twin .twin-box h3 {
    margin-top: 100px;
    font-size: 24px;
  }
}

.ticker {
  margin-top: -500px;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  z-index: -100;
}
.ticker .ticker__track {
  display: inline-flex;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
  animation: marquee-right 40s linear infinite;
}
.ticker .ticker__track .ticker__content {
  flex: none;
  font-size: 135px;
  font-family: "Kaisei Opti", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 10px;
  padding-right: 100px;
  color: #ECF1FB;
}

@keyframes marquee-right {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.scene {
  width: calc(100% - 40px);
  max-width: 1280px;
  margin: 0 auto;
  margin-top: 400px;
  position: relative;
}
.scene h2 {
  font-size: 135px;
  color: #C6D4EB;
  margin-bottom: 50px;
  font-weight: normal;
}
@media (max-width: 900px) {
  .scene h2 {
    font-size: 90px;
  }
}
@media (max-width: 500px) {
  .scene h2 {
    font-size: 40px;
    margin-bottom: 10px;
  }
}
.scene h3 {
  font-size: 32px;
  letter-spacing: 12px;
  font-weight: normal;
  margin-bottom: 40px;
  line-height: 50px;
}
@media (max-width: 500px) {
  .scene h3 {
    font-size: 24px;
    letter-spacing: 5px;
  }
}
.scene::after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background-image: url(../img/jiji-ring-blue.png);
  background-size: contain;
  background-repeat: no-repeat;
  transition: 0.3s;
  top: 0;
  right: 50px;
  animation: ring-anime-btn 20s linear infinite;
}
@media (max-width: 500px) {
  .scene::after {
    display: none;
  }
}
@keyframes ring-anime-btn {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}
.scene::before {
  z-index: -1;
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background-image: url(../img/jiji-ring-blue.png);
  background-size: contain;
  background-repeat: no-repeat;
  transition: 0.3s;
  top: 150px;
  right: 0;
  animation: ring-anime-btn-2 25s linear infinite;
}
@media (max-width: 500px) {
  .scene::before {
    display: none;
  }
}
@keyframes ring-anime-btn-2 {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.scene-box {
  margin-top: 300px;
  padding-bottom: 100px;
}
.scene-box .scene-card {
  width: calc(100% - 40px);
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 900px) {
  .scene-box .scene-card {
    grid-template-columns: 1fr;
  }
}
.scene-box .scene-card .scene-card-text {
  padding-top: 200px;
}
@media (max-width: 900px) {
  .scene-box .scene-card .scene-card-text {
    padding-top: 50px;
    margin-bottom: 50px;
  }
}
.scene-box .scene-card .scene-card-text h2 {
  font-size: 32px;
  letter-spacing: 12px;
  font-weight: normal;
  margin-bottom: 20px;
  line-height: 50px;
}
@media (max-width: 500px) {
  .scene-box .scene-card .scene-card-text h2 {
    font-size: 24px;
    letter-spacing: 4px;
  }
}
.scene-box .scene-card .scene-card-text p {
  margin-bottom: 30px;
}
@media (max-width: 900px) {
  .scene-box .scene-card .chara-yellow {
    grid-column: 1;
    grid-row: 1;
  }
}
@media (max-width: 900px) {
  .scene-box .scene-card .chara-blue {
    grid-column: 1;
    grid-row: 1;
  }
}
.scene-box .scene-card .scene-card-chara {
  display: grid;
  place-items: center;
  position: relative;
}
.scene-box .scene-card .scene-card-chara img {
  width: 350px;
}
@media (max-width: 500px) {
  .scene-box .scene-card .scene-card-chara img {
    width: 300px;
  }
}
.scene-box .scene-card .scene-card-chara::after {
  position: absolute;
  content: "";
  width: 500px;
  height: 500px;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -5;
  background-color: #FFF9B1;
  animation: fluidrotate 30s ease 0s infinite;
}
@media (max-width: 500px) {
  .scene-box .scene-card .scene-card-chara::after {
    width: 300px;
    height: 300px;
  }
}
.scene-box .scene-card .scene-card-chara.chara-pink::after {
  position: absolute;
  content: "";
  width: 500px;
  height: 500px;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -5;
  background-color: #FFE2DC;
  animation: fluidrotate 30s ease 0s infinite;
}
@media (max-width: 500px) {
  .scene-box .scene-card .scene-card-chara.chara-pink::after {
    width: 300px;
    height: 300px;
  }
}
.scene-box .scene-card .scene-card-chara.chara-blue::after {
  position: absolute;
  content: "";
  width: 500px;
  height: 500px;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -5;
  background-color: #E4FDFC;
  animation: fluidrotate 30s ease 0s infinite;
}
@media (max-width: 500px) {
  .scene-box .scene-card .scene-card-chara.chara-blue::after {
    width: 300px;
    height: 300px;
  }
}
.scene-box .scene-card .scene-card-chara.chara-green::after {
  position: absolute;
  content: "";
  width: 500px;
  height: 500px;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -5;
  background-color: #E8FDE4;
  animation: fluidrotate 30s ease 0s infinite;
}
@media (max-width: 500px) {
  .scene-box .scene-card .scene-card-chara.chara-green::after {
    width: 300px;
    height: 300px;
  }
}
@keyframes fluidrotate {
  0%, 100% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
}

.ticker-scene {
  margin-top: -530px;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  z-index: -100;
}
.ticker-scene .ticker__track {
  display: inline-flex;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
  animation: marquee-right 50s linear infinite;
}
.ticker-scene .ticker__track .ticker__content {
  flex: none;
  font-size: 135px;
  font-family: "Kaisei Opti", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 10px;
  padding-right: 50px;
  color: #ECF1FB;
}
@keyframes marquee-right {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes marquee-left {
  0% {
    transform: translateX(-30%);
  }
  100% {
    transform: translateX(0);
  }
}
.ticker-scene.yellow .ticker__content {
  color: #FFF9B1;
}
.ticker-scene.pink .ticker__content {
  color: #FFEBE7;
}
.ticker-scene.pink .ticker__track {
  animation: marquee-left 50s linear infinite;
}
.ticker-scene.blue .ticker__content {
  color: #E4FDFC;
}
.ticker-scene.green .ticker__content {
  color: #E8FDE4;
}
.ticker-scene.green .ticker__track {
  animation: marquee-left 50s linear infinite;
}

.pickup {
  width: calc(100% - 40px);
  max-width: 1280px;
  margin: 0 auto;
  margin-top: 500px;
  position: relative;
}
.pickup h2 {
  font-size: 135px;
  color: #C6D4EB;
  margin-bottom: 50px;
  font-weight: normal;
}
@media (max-width: 900px) {
  .pickup h2 {
    font-size: 90px;
  }
}
@media (max-width: 500px) {
  .pickup h2 {
    font-size: 40px;
    margin-bottom: 10px;
  }
}
.pickup .pick-box {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 20px;
  overflow-x: auto;
}
.pickup .pick-box .pick-item {
  text-decoration: none;
  color: #3E3E3E;
  text-align: center;
}
.pickup .pick-box .pick-item img {
  transition: 0.3s;
  margin-top: 20px;
  width: 200px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 20px;
}
.pickup .pick-box .pick-item:hover img {
  transform: scale(110%);
}

.point-text {
  width: calc(100% - 40px);
  max-width: 1280px;
  margin: 0 auto;
  margin-top: 250px;
  position: relative;
  padding-top: 200px;
}
.point-text h2 {
  font-size: 135px;
  color: #C6D4EB;
  margin-bottom: 50px;
  font-weight: normal;
}
@media (max-width: 900px) {
  .point-text h2 {
    font-size: 90px;
  }
}
@media (max-width: 500px) {
  .point-text h2 {
    font-size: 40px;
    margin-bottom: 10px;
  }
}

.point {
  display: flex;
  max-width: 1440px;
  margin: 0 auto;
  align-items: flex-start;
}
.point .left-sticky {
  position: sticky;
  top: 0;
  flex: 0 0 50%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 900px) {
  .point .left-sticky {
    display: none;
  }
}
.point .left-sticky .sticky-img {
  position: absolute;
  opacity: 0;
  transition: 0.5s;
  max-width: 80%;
  height: auto;
}
.point .right-content {
  flex: 1;
  min-height: 100vh;
  padding: 100px 50px;
}
@media (max-width: 900px) {
  .point .right-content {
    padding: 100px 10px;
  }
}
.point .right-content .text-block {
  min-height: 500px;
  padding: 100px 0;
}
@media (max-width: 900px) {
  .point .right-content .text-block {
    padding: 20px 0;
  }
}
.point .right-content .text-block .en {
  font-family: "arial", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 14px;
  margin-bottom: 30px;
}
.point .right-content .text-block h2 {
  font-weight: bold;
  line-height: 35px;
  margin-top: 50px;
  margin-bottom: 30px;
}
.point .right-content .text-block .sticky-img-sp {
  display: none;
  width: 100%;
  margin-top: 50px;
}
@media (max-width: 900px) {
  .point .right-content .text-block .sticky-img-sp {
    display: block;
  }
}
.point .right-content .text-block .sticky-img-sp img {
  width: 100%;
}

.blog {
  width: calc(100% - 40px);
  max-width: 1280px;
  margin: 0 auto;
  margin-top: 100px;
  display: block;
}
.blog h2 {
  font-size: 135px;
  color: #C6D4EB;
  margin-bottom: 50px;
  font-weight: normal;
}
@media (max-width: 900px) {
  .blog h2 {
    font-size: 90px;
  }
}
@media (max-width: 500px) {
  .blog h2 {
    font-size: 40px;
    margin-bottom: 10px;
  }
}
.blog .blog-img-box {
  margin-top: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}
@media (max-width: 900px) {
  .blog .blog-img-box {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 500px) {
  .blog .blog-img-box {
    grid-template-columns: 1fr;
  }
}
.blog .blog-img-box .blog-img {
  width: 100%;
  display: grid;
  place-items: center;
  text-decoration: none;
  position: relative;
}
.blog .blog-img-box .blog-img::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #C6D4EB;
  z-index: -1;
  opacity: 0;
  transition: 0.3s;
}
.blog .blog-img-box .blog-img:hover::after {
  opacity: 1;
}
.blog .blog-img-box .blog-img img {
  margin: 0 auto;
  height: 90%;
}
.blog .blog-btn {
  display: flex;
  margin-top: 100px;
  justify-content: end;
}

.contact {
  width: calc(100% - 40px);
  max-width: 1280px;
  margin: 100px auto;
  margin-top: 100px;
}
.contact .contact-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 900px) {
  .contact .contact-box {
    display: block;
  }
}
@media (max-width: 900px) {
  .contact .contact-box .contact-text {
    margin: 50px auto;
  }
}
.contact .contact-box .contact-text h2 {
  font-size: 135px;
  color: #C6D4EB;
  font-weight: normal;
}
@media (max-width: 1200px) {
  .contact .contact-box .contact-text h2 {
    font-size: 120px;
  }
}
@media (max-width: 900px) {
  .contact .contact-box .contact-text h2 {
    font-size: 50px;
  }
}
.contact .contact-box .contact-btn {
  display: flex;
  align-items: center;
}
@media (max-width: 900px) {
  .contact .contact-box .contact-btn {
    margin: 0 auto;
    align-items: center;
    display: grid;
    place-items: center;
  }
}
.contact .contact-box .contact-btn:hover .btn-ring::after {
  width: 200px;
  height: 200px;
}
.contact .contact-box .contact-btn .btn-ring {
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  margin-left: 10px;
  position: relative;
}
.contact .contact-box .contact-btn .btn-ring img {
  display: block;
}
.contact .contact-box .contact-btn .btn-ring::after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  background-image: url(../img/jiji-ring-blue.png);
  background-size: contain;
  background-repeat: no-repeat;
  transition: 0.3s;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ring-anime-btn 20s linear infinite;
}
@keyframes ring-anime-btn {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.footer {
  width: calc(100% - 40px);
  max-width: 1280px;
  margin: 100px auto;
  border-top: 1px solid #C6D4EB;
  padding-top: 100px;
  margin-top: 100px;
}
.footer .footer-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 500px) {
  .footer .footer-content {
    display: block;
  }
}
@media (max-width: 500px) {
  .footer .footer-content .footer-logo {
    text-align: center;
    margin-bottom: 50px;
  }
}
.footer .footer-content .footer-logo img {
  width: 120px;
}
.footer .footer-content .footer-text {
  width: 100%;
  max-width: 500px;
}
.footer .footer-content .footer-text .footer-glid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  height: 100px;
}
.footer .footer-content .footer-text .footer-atag {
  font-size: 16px;
  text-decoration: none;
  display: block;
}
.footer .footer-content .footer-text .footer-atag:hover {
  text-decoration: underline;
}
.footer .footer-content .footer-contact p {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 30px;
  margin-top: 30px;
}
.footer .footer-content .footer-contact .footer-btn {
  padding: 20px;
  border: 1px solid #C6D4EB;
  border-radius: 10px;
  text-align: center;
}

.page-title {
  padding-top: 200px;
}
.page-title h2 {
  font-size: 135px;
  color: #C6D4EB;
  font-weight: normal;
  text-align: center;
}
@media (max-width: 900px) {
  .page-title h2 {
    font-size: 90px;
  }
}
@media (max-width: 500px) {
  .page-title h2 {
    font-size: 40px;
    margin-bottom: 10px;
  }
}
.page-title p {
  text-align: center;
}

.about-main {
  width: calc(100% - 40px);
  max-width: 1280px;
  margin: 100px auto;
}
.about-main h3 {
  letter-spacing: 7px;
}
.about-main .about-box {
  display: flex;
  align-items: center;
  position: relative;
  border-bottom: 1px solid #C6D4EB;
  padding-bottom: 100px;
}
.about-main .about-box::after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background-image: url(../img/jiji-ring-blue.png);
  background-size: contain;
  background-repeat: no-repeat;
  transition: 0.3s;
  top: 100px;
  right: -100px;
  animation: ring-anime-btn 20s linear infinite;
}
@media (max-width: 900px) {
  .about-main .about-box::after {
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 500px) {
  .about-main .about-box::after {
    top: 200px;
  }
}
.about-main .about-box::before {
  z-index: -1;
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background-image: url(../img/jiji-ring-blue.png);
  background-size: contain;
  background-repeat: no-repeat;
  transition: 0.3s;
  top: 250px;
  right: 80px;
  animation: ring-anime-btn-2 25s linear infinite;
}
@media (max-width: 900px) {
  .about-main .about-box::before {
    width: 150px;
    height: 150px;
    top: 200px;
    right: 0;
  }
}
@media (max-width: 500px) {
  .about-main .about-box::before {
    top: 300px;
  }
}
.about-main .about-box .about-img img {
  width: 300px;
}
.about-main .about-box .about-text {
  margin-top: 200px;
}
.about-main .about-box .about-text h3 {
  font-size: 32px;
  margin-bottom: 20px;
}
@media (max-width: 500px) {
  .about-main .about-box .about-text h3 {
    font-size: 24px;
    letter-spacing: 4px;
  }
}
.about-main .about-vision {
  max-width: 800px;
  margin: 200px auto;
}
.about-main .about-vision h3 {
  font-size: 20px;
  margin-bottom: 30px;
}
.about-main .about-vision .visionh3 {
  font-size: 32px;
  line-height: 50px;
}
@media (max-width: 500px) {
  .about-main .about-vision .visionh3 {
    font-size: 24px;
    letter-spacing: 4px;
  }
}
.about-main .about-vision p {
  margin-bottom: 20px;
}
.about-main .about-cara {
  margin: 200px auto;
  margin-bottom: 400px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 500px) {
  .about-main .about-cara {
    grid-template-columns: 1fr;
  }
}
.about-main .about-cara h3 {
  font-size: 20px;
  margin-bottom: 30px;
}
.about-main .about-cara .visionh3 {
  font-size: 32px;
  line-height: 50px;
}
@media (max-width: 500px) {
  .about-main .about-cara .visionh3 {
    font-size: 24px;
    letter-spacing: 4px;
  }
}
.about-main .about-cara p {
  margin-bottom: 20px;
}
.about-main .about-cara .about-cara-img img {
  width: 80%;
}

.about-mito {
  width: calc(100% - 40px);
  max-width: 1280px;
  margin: 100px auto;
  display: flex;
}
@media (max-width: 900px) {
  .about-mito {
    display: block;
  }
}
.about-mito .about-mito-img img {
  width: 350px;
  height: 350px;
}
.about-mito .about-mito-text {
  margin-left: 30px;
}
@media (max-width: 900px) {
  .about-mito .about-mito-text {
    margin: 0;
  }
}
.about-mito .about-mito-text h3 {
  font-size: 24px;
  margin: 40px 0;
  letter-spacing: 3px;
}

.about-cards {
  width: calc(100% - 40px);
  max-width: 1280px;
  margin: 100px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 900px) {
  .about-cards {
    grid-template-columns: 1fr;
  }
}
.about-cards .about-card {
  display: flex;
  margin-bottom: 30px;
}
.about-cards .about-card .about-card-img {
  margin-right: 20px;
}
.about-cards .about-card .about-card-img img {
  width: 200px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-cards .about-card .about-card-text h4 {
  font-size: 24px;
  margin-bottom: 20px;
}
.about-cards .about-card .about-card-text a {
  margin: 20px 0 0 auto;
}

.co-messe {
  width: calc(100% - 40px);
  max-width: 1280px;
  margin: 200px auto;
}
.co-messe h2 {
  font-size: 24px;
  letter-spacing: 5px;
  margin-bottom: 20px;
}
.co-messe h2 span {
  font-size: 16px;
}
.co-messe .co-messe-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 900px) {
  .co-messe .co-messe-box {
    grid-template-columns: 1fr;
  }
}
.co-messe .co-messe-box .co-messe-img img {
  width: 450px;
}
.co-messe .co-messe-box .co-messe-img h3 {
  font-size: 32px;
  letter-spacing: 5px;
  margin-top: 10px;
}
@media (max-width: 900px) {
  .co-messe .co-messe-text {
    margin-top: 40px;
  }
}
.co-messe .co-messe-text h3 {
  font-size: 24px;
  line-height: 40px;
  letter-spacing: 4px;
}
@media (max-width: 500px) {
  .co-messe .co-messe-text h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.co-messe .co-messe-text p {
  margin-bottom: 20px;
}
@media (max-width: 500px) {
  .co-messe .co-messe-text p {
    margin-bottom: 40px;
  }
}

.gaikan {
  margin: 0 auto;
  text-align: center;
}
.gaikan img {
  width: 60%;
}
@media (max-width: 500px) {
  .gaikan img {
    width: 90%;
  }
}

.co-gaiyo {
  width: calc(100% - 40px);
  max-width: 1280px;
  margin: 200px auto;
}
.co-gaiyo h2 {
  font-size: 24px;
  letter-spacing: 5px;
  margin-bottom: 20px;
}
.co-gaiyo h2 span {
  font-size: 16px;
}
.co-gaiyo .co-gaiyo-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 900px) {
  .co-gaiyo .co-gaiyo-box {
    grid-template-columns: 1fr;
  }
}
.co-gaiyo .co-gaiyo-box .co-gaiyo-glid .co-glid {
  font-size: 14px;
  display: grid;
  grid-template-columns: 1fr 3fr;
  border-bottom: 1px solid #3E3E3E;
  padding-top: 20px;
  padding-bottom: 20px;
}
.co-gaiyo .co-messe-map {
  margin: 0 auto;
}
@media (max-width: 900px) {
  .co-gaiyo .co-messe-map {
    margin-top: 100px;
  }
}

.contact-text {
  width: calc(100% - 40px);
  max-width: 1280px;
  margin: 200px auto;
}

.contact-box {
  width: calc(100% - 40px);
  max-width: 1280px;
  margin: 200px auto;
}

.mimamoti-text {
  width: calc(100% - 40px);
  max-width: 1280px;
  margin: 200px auto;
}
.mimamoti-text p {
  text-align: center;
}

.mimamori-cara {
  margin-bottom: 100px;
}
.mimamori-cara .mimamori-bg {
  width: 100vw;
  height: 450px;
}
.mimamori-cara .mimamori-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mimamori-cara .mimamori-cara-img {
  text-align: center;
  margin-top: -200px;
}
.mimamori-cara .mimamori-cara-img img {
  width: 400px;
}
@media (max-width: 500px) {
  .mimamori-cara .mimamori-cara-img img {
    width: 250px;
  }
}
.mimamori-cara .mimamori-cara-text {
  text-align: center;
}
.mimamori-cara .mimamori-cara-text h2 {
  font-size: 24px;
  margin-top: 50px;
  margin-bottom: 20px;
}
.mimamori-cara .mimamori-cara-text .mimamori-text-a {
  padding-bottom: 30px;
  width: calc(100% - 40px);
  border-bottom: 1px solid #3E3E3E;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 30px;
}
.mimamori-cara .mimamori-cara-text .mimamori-text-b {
  padding-bottom: 30px;
  width: calc(100% - 40px);
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 30px;
}

.news-page-box {
  width: calc(100% - 40px);
  max-width: 1280px;
  margin: 200px auto;
}
.news-page-box .news-list .news-item {
  list-style: none;
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #3E3E3E;
  padding-left: 20px;
}
.news-page-box .news-list .news-item a {
  text-decoration: none;
}
.news-page-box .news-list .news-item a .news-date {
  letter-spacing: 4px;
  margin-right: 30px;
  color: #797979;
}

.pagination {
  margin: 0 auto;
  text-align: center;
}

.news-single {
  width: calc(100% - 40px);
  max-width: 1280px;
  margin: 200px auto;
}
.news-single h1 {
  margin-bottom: 30px;
}
.news-single .news-content {
  margin: 100px 0;
}
.news-single .news-back {
  text-align: center;
}

/* ブログ一覧レイアウト */
.blog-page-tetx {
  text-align: center;
  margin-top: 100px;
}

.blog-list {
  width: calc(100% - 40px);
  max-width: 1280px;
  margin: 100px auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 100px;
}
@media (max-width: 900px) {
  .blog-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 500px) {
  .blog-list {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

.blog-item {
  text-align: center;
}

.blog-item__link {
  display: block;
  text-decoration: none;
}

.blog-item__thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-item__title {
  margin-top: 8px;
  font-size: 14px;
}

/* ページネーション */
.blog-pagination {
  margin: 40px auto 0;
  text-align: center;
}

.blog-pagination .page-numbers {
  display: inline-block;
  margin: 0 4px;
  padding: 4px 8px;
  text-decoration: none;
}

.blog-pagination .current {
  font-weight: bold;
}

/* モーダル */
.blog-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.blog-modal.is-open {
  display: block;
}

.blog-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.blog-modal__inner {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  max-width: 900px;
  height: 80vh;
  background: #fff;
  padding: 16px;
}

.blog-modal__close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.blog-modal__title {
  margin-bottom: 12px;
  text-align: center;
}

.blog-modal__image-wrap {
  text-align: center;
}

.blog-modal__image {
  height: 70vh;
}

/* スクロールロック用（必要なら） */
body.is-modal-open {
  overflow: hidden;
}

.mimamoripick {
  margin-top: 50px;
  margin-bottom: 200px;
}
.mimamoripick .pickfruits {
  grid-template-columns: 1fr 1fr 1fr !important;
}
.mimamoripick .pick4 {
  grid-template-columns: 1fr 1fr 1fr 1fr !important;
}

.top-news {
  width: calc(100% - 40px);
  max-width: 1280px;
  margin: 200px auto;
  -moz-text-align-last: left;
       text-align-last: left;
}
.top-news .news-btn {
  display: flex;
  justify-content: end;
}
.top-news .top-news-box {
  margin-top: 50px;
}

.drawer {
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  z-index: -100;
  transition: 0.3s;
}
.drawer.active {
  z-index: 99999;
  opacity: 1;
}
.drawer .drawer-menu {
  z-index: 100000;
  display: flex;
  flex-direction: column;
}
.drawer .drawer-menu a {
  color: #fff;
  text-align: center;
  margin: 10px auto;
  text-decoration: none;
  transition: 0.3s;
  letter-spacing: 5px;
  font-size: 20px;
}
.drawer .drawer-menu a:hover {
  opacity: 0.5;
}/*# sourceMappingURL=style.css.map */