* {
  box-sizing: border-box;
  font-family: "Yu Mincho";
  color: black;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  -webkit-scroll-behavior: smooth;
  scroll-behavior: smooth;
  font-size: calc(1 / 1920 * 100vw);
}

body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

a {
  text-decoration: none;
}

.group a:empty {
  display: none !important;
}

.flex {
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.col {
  -webkit-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.a-c {
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.j-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.j-b {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.j-e {
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
}

li {
  list-style: none;
}

.post-categories li a:nth-of-type(2) {
  color: #ffffff;
  display: block;
  font-size: 16rem;
  font-family: YuGothic, 'Yu Gothic', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', sans-serif;
}

/* ======Header=========== */

/* Open Menu Button */
#openMenu {
  position: fixed;
  top: 40rem;
  right: 40rem;
  z-index: 1001;
  background-color: rgba(190, 190, 190, 0.5);
  filter: grayscale(20%) brightness(1.1);
  border: none;
  border-radius: 10px;
  padding: 16px 20px;
  cursor: pointer;
  transition: 0.3s ease;
}

.lines {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.line {
  background-color: #fff;
  width: 40px;
  height: 3px;
  border-radius: 2px;
  margin-bottom: 8px;
}

.line:last-child {
  margin-bottom: 0;
}

/* Hide the button when menu is active */
#openMenu.hide {
  display: none;
}

/* Side Menu */
.menu {
  position: fixed;
  top: 0;
  right: -250px;
  /* hide it outside screen (from right) */
  width: 250px;
  height: 100%;
  background-color: rgba(51, 128, 193, 0.8);
  overflow-x: hidden;
  padding-top: 60px;
  transition: 0.4s ease;
  z-index: 1000;
}

/* When menu is active */
.menu.active {
  right: 0;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 15px;
  left: 15px;
  background: none;
  border: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
}

/* Menu links */
.menu nav ul {
  list-style: none;
  padding: 0;
}

.menu nav ul li {
  margin: 20px 0;
}

.menu nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 20px;
  display: block;
  padding: 10px 20px;
}

/* ========first view====== */

main .first_view {
  position: relative;
  width: 100%;
  height: 100vh;
  opacity: 0;
  animation: fadeInFirstView 0.1s ease-in-out 0.3s forwards;
  overflow: hidden;
}

@keyframes fadeInFirstView {
  to {
    opacity: 1;
  }
}

main .first_view .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/top/first_bg.png") no-repeat center;
  background-size: cover;
  filter: blur(2px);
  z-index: 0;
}

main .first_view .content {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100vh;
}

main .first_view .content img {
  width: 290px;
  height: auto;
  opacity: 0;
  transform: translateY(100px);
  animation: riseUp 0.7s ease-out 1s forwards;
}

@keyframes riseUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* --- Cloud Effect ---- */
#cloud-splash {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: zoomInOut 4.1s ease-in;
}

.cloud {
  width: 250px;
  height: auto;
  animation: zoomInOut 4.1s ease-in;
}

/* Zoom in and out animation */
@keyframes zoomInOut {
  0% {
    transform: scale(1.1);
    opacity: 1;
  }

  10% {
    transform: scale(1.2);
    opacity: 1;
  }

  75% {
    transform: scale(2.3);
    opacity: 1;
  }

  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

/* ------------------------ */

@media (max-width: 500px) {
  main .first_view .content img {
    width: 140px;
    height: auto;
  }

  #openMenu {
    padding: 10px 10px;
  }

  .line {
    width: 30px;
    height: 2px;
  }
}

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

main .Message {
  width: 100%;
  height: fit-content;
  padding-left: 317rem;
  padding-block: 180rem;
  gap: 37rem;
}

main .Message .title {
  font-size: 93rem;
  margin-bottom: 30rem;
  color: #0a4f88;
  gap: 20rem;
}

main .Message .title .star_gp {
  position: relative;
  margin-top: -20rem;
}

main .Message .title .star_gp img:nth-of-type(1) {
  width: 100rem;
  height: auto;
}

main .Message .title .star_gp img:nth-of-type(2) {
  width: 70rem;
  height: auto;
  position: absolute;
  top: -10rem;
  left: 60rem;
}

main .Message .content {
  font-size: 20rem;
  margin-bottom: 60rem;
}

main .Message .content :nth-child(1) {
  font-size: 42rem;
  margin-bottom: 30rem;
  color: #212529;
}

main .Message .content .text p {
  font-size: 24rem;
  color: #212529;
}

main .Message .container {
  transition: all 2s ease-out;
}

main .Message .photo {
  position: relative;
  z-index: 10;
  transition: all 2s ease-out;
}

.hidden {
  opacity: 0;
  transform: translateY(50px);
  transition: all 3s ease-out;
}

/* When visible */
.visible {
  opacity: 1;
  transform: translateY(0);
}

main .Message .photo img:nth-of-type(1) {
  width: 925rem;
  height: 740rem;
  max-width: 925px;
  max-height: 740px;
}

main .Message .photo .heart {
  width: 280rem;
  height: auto;
  position: absolute;
  bottom: -165rem;
  right: 60rem;
  z-index: 100;
}

main .Message .photo .case {
  width: 100%;
  height: 725rem;
  max-height: 725px;
  position: absolute;
  top: 40rem;
  left: -25rem;
  z-index: -1;
  background: linear-gradient(135deg,
      rgba(243, 153, 201, 0.5) 0%,
      rgba(247, 82, 97, 0.5) 40%,
      #4e8dff 100%);
}

main .Message .more_btn {
  background-color: #ffffff;
  font-size: 20rem;
  width: 260rem;
  height: 60rem;
  padding-inline: 30rem;
  padding-block: 25rem;
  justify-content: space-around;
  border: 1px solid #d1d1d1;
}

main .Message .viewBtn {
  font-size: 20rem;
  background-color: #fff;
  border: none;
  color: #858585;
}

main .Message .more_btn img {
  width: 24px;
  height: 7px;
}

@media (max-width: 1024px) {
  main .Message .photo img {
    width: 1011rem;
    height: 830rem;
  }

  main .Message .content .text p {
    font-size: 30rem;
  }
}

@media (max-width: 768px) {
  main .Message {
    flex-direction: column;
    padding-left: 0;
  }

  main .container {
    padding: 50rem;
  }

  main .Message .title .star_gp img:nth-of-type(1) {
    width: 70rem;
  }

  main .Message .title .star_gp img:nth-of-type(2) {
    width: 50rem;
    left: 50rem;
  }

  main .Message .content .text p {
    font-size: 24rem;
  }

  main .Message .viewBtn {
    font-size: 50rem;
  }

  main .Message .more_btn {
    font-size: 20rem;
    width: 300rem;
    height: 80rem;
  }

  main .Message .photo img:nth-of-type(1) {
    width: 1500rem;
    height: 1200rem;
  }

  main .Message .photo .heart {
    width: 425rem;
    bottom: -75rem;
  }

  main .Message .photo {
    display: flex;
    justify-content: center;
  }
}

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

main .service {
  position: relative;
  padding-block: 146rem;
  padding-left: 317rem;
  padding-bottom: 240rem;
}

main .blog-group {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
  justify-content: end;
}

.blog-group.show-group {
  opacity: 1;
  transform: translateY(0);
}

main .service .title {
  font-size: 93rem;
  margin-bottom: 60rem;
  color: #0a4f88;
}

main .service .bg-gray {
  width: 960rem;
  height: 2300rem;
  background: url("../img/top/26258361.png") no-repeat center;
  position: absolute;
  top: 0;
  left: 117rem;
  z-index: -1;
}

main .service .img-set img {
  width: 1393rem;
}

main .service .img-set a {
  position: relative;
}

.hover-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgba(59, 59, 59, 0.5);
  /* semi-transparent black */
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  overflow: hidden;
  transition: width 0.4s ease-in-out;
}

.hover-content p {
  color: #fff;
  font-size: 60rem;
}

/* On hover: slide to left: 0 */
main .service .img-set a:hover .hover-content {
  width: 100%;
}

main .service .img-set .group {
  display: flex;
  justify-content: end;
}

main .service .img-set .ticket {
  background-color: #ffffff;
  position: absolute;
  z-index: 10;
  width: 465rem;
  height: 250rem;
  left: 0;
  padding-inline: 25rem;
  padding-block: 15rem;
}

main .service .img-set .sub .tip p:nth-of-type(1) {
  font-size: 25rem;
  color: #0a4f88;
}

main .service .img-set .sub .tip p:nth-of-type(2) {
  font-size: 34rem;
}

main .service .img-set .num {
  font-size: 95rem;
  background: linear-gradient(to right, #004e92, #dd2476);
  /* Blue to Pink */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

main .service .img-set .content {
  font-size: 18rem;
}

@media (max-width: 1024px) {
  main .service {
    padding-left: 150rem;
  }

  main .Message {
    padding-block: 50rem;
    padding-top: 100rem;
    padding-bottom: 100rem;
    padding-left: 150rem;
  }

  main .Message .photo .heart {
    width: 390rem;
    bottom: -60rem;
  }

  main .service .bg-gray {
    left: 80rem;
    height: 2500rem;
  }

  main .service .img-set img {
    width: 1550rem;
  }

  main .service .img-set .ticket {
    width: 600rem;
    height: 380rem;
  }

  main .service .img-set .sub .tip p:nth-of-type(1) {
    font-size: 30rem;
  }

  main .service .img-set .sub .tip p:nth-of-type(2) {
    font-size: 40rem;
  }

  main .service .img-set .num {
    font-size: 120rem;
  }

  main .service .img-set .content {
    font-size: 30rem;
  }

}

@media (max-width: 768px) {
  main .Message .photo .case {
    width: 87%;
    height: 1125rem;
    max-height: none;
    top: 150rem;
    left: unset;
  }

  main .Message {
    padding-left: 0;
  }

  main .service {
    padding-block: 100rem;
    padding-left: unset;
    padding-bottom: 100rem;
    width: 100%;
  }

  main .service .img-set img {
    width: 1814rem;
  }

  main .service .blog-group {
    align-items: unset;
  }

  main .service .img-set .content {
    font-size: 45rem;
  }

  main .service .img-set .sub .tip p:nth-of-type(1) {
    font-size: 65rem;
  }

  main .service .img-set .sub .tip p:nth-of-type(2) {
    font-size: 55rem;
  }

  main .service .img-set .ticket {
    width: 850rem;
    height: 570rem;
    padding-inline: 50rem;
    padding-block: 45rem;
  }

  main .service .bg-gray {
    width: 1300rem;
    height: 3140rem;
    left: 0rem;
  }

  main .service .img-set .num {
    font-size: 90rem;
  }
}

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

main .bottom {
  padding-inline: 230rem;
  padding-top: 130rem;
}

/* ------------------ */
main .bottom .blog {
  gap: 167rem;
  margin-bottom: 190rem;
}

main .bottom .blog .title {
  font-size: 93rem;
  margin-bottom: 64rem;
  color: #0a4f88;
}

main .bottom .allBtn {
  width: 180rem;
  font-size: 24rem;
}

main .bottom .allBtn p {
  color: #858585;
}

main .bottom .allBtn img {
  width: 22rem;
  height: 22rem;
}

main .bottom .arrow {
  background-color: #0a4f88;
  padding-inline: 3rem;
  border-radius: 50%;
}

main .bottom .content .group {
  border-block: 1px solid #e2e2e2;
  padding-block: 35rem;
  padding-inline: 30rem;
}

main .bottom .content .group:nth-last-of-type(1) {
  border-top: none;
}

main .bottom .group .top {
  gap: 41rem;
  margin-bottom: 27rem;
}

main .bottom .group .top p:nth-of-type(1) {
  font-size: 18rem;
  color: #0a4f88
}

main .bottom .group .top p:nth-last-child(1) {
  font-size: 24rem;
}

main .bottom .group .tip {
  width: 150rem;
  height: 24rem;
  background-color: #0a4f88;
  color: #ffffff;
  font-size: 15rem;
  padding-inline: 13rem;
  padding-block: 7rem;
}

.group-wrapper {
  display: flex;
}

main .bottom .text p {
  font-size: 22rem;
}

/* ------------ */

main .sns {
  width: 100%;
  margin-bottom: 190rem;
}

main .bottom .sns .title {
  font-size: 93rem;
  color: #0a4f88;
}

main .bottom .snsBtn img {
  width: 25rem;
}

main .bottom .sns_group {
  gap: 20rem;
}

main .bottom .sns_group .snsBtn {
  width: 280rem;
  height: 60rem;
  border: 1px solid #d1d1d1;
  font-size: 21rem;
  gap: 10rem;
}

/* ------------- */

main .contact {
  position: relative;
  width: 75%;
  height: 140rem;
  margin-bottom: 147rem;
  background: linear-gradient(90deg, #114a8d 0%, #f04679 100%);
}

main .contact .text {
  text-align: center;
  gap: 15rem;
}

main .contact a {
  text-decoration: none;
}

main .contact .text p:nth-of-type(1) {
  font-size: 50rem;
}

main .contact .text p {
  color: #ffffff;
}

main .contact img {
  position: absolute;
  right: 55rem;
  width: 70rem;
}

.blog-title {
  margin-left: 20rem;
}

@media (max-width: 1440px) {
  main .bottom .allBtn {
    font-size: 30rem;
  }

  main .bottom .arrow {
    padding-inline: 10rem;
  }

  main .bottom .group .top p:nth-of-type(1) {
    font-size: 25rem;
  }

  main .bottom .group .tip {
    font-size: 30rem;
    width: fit-content;
    height: fit-content;
  }

  main .bottom .group .top p:nth-last-child(1) {
    font-size: 30rem;
  }



  main .bottom .blog {
    gap: 70rem;
  }

  main .bottom .sns_group .snsBtn {
    height: 80rem;
    font-size: 30rem;
  }

  main .bottom .snsBtn img {
    width: 50rem;
  }
}

@media (max-width: 1024px) {
  main .bottom {
    padding-inline: 150rem;
  }

  main .bottom .sns_group .snsBtn {
    width: 325rem;
    height: 90rem;
    font-size: 35rem;
  }

  main .bottom .snsBtn img {
    width: 55rem;
  }
}

@media (max-width: 768px) {
  main .bottom {
    padding: 50rem;
  }

  main .bottom .blog {
    flex-direction: column;
    gap: 35rem;
  }

  main .bottom .left {
    display: block;
    justify-content: space-between;
  }

  main .bottom .blog .title {
    font-size: 200rem;
  }

  main .bottom .allBtn {
    width: 250rem;
    font-size: 34rem;
  }

  main .bottom .arrow {
    padding-inline: 15rem;
  }

  main .bottom .group .top p:nth-of-type(1) {
    font-size: 50rem;
  }

  main .bottom .group .tip {
    width: 200rem;
    height: 40rem;
    font-size: 22rem;
    padding-inline: 13rem;
    padding-block: 7rem;
  }


  main .bottom .content .group {
    padding-block: unset;
    padding-bottom: 30px;
  }

  main .bottom .group .top p:nth-last-child(1) {
    font-size: 20rem;
  }

  main .bottom .text p:blank {
    display: none;
  }

  main .bottom .text p {
    font-size: 22rem;
    padding-bottom: 5rem;
  }

  main .bottom .sns {
    flex-direction: column;
    justify-content: unset;
    align-items: unset;
  }

  main .bottom .sns_group {
    justify-content: space-between;
    gap: 0;
  }

  main .bottom .sns .title {
    font-size: 200rem;
  }

  main .bottom .sns_group .snsBtn {
    width: calc(90% / 4);
    height: 70rem;
    font-size: 18rem;
    gap: 20rem;
  }

  main .bottom .snsBtn img {
    width: 25rem;
  }

  main .contact .text p:nth-of-type(1) {
    font-size: 60rem;
  }

  main .contact img {
    width: 110rem;
    height: 50rem;
  }

  main .contact {
    height: 200em;
    margin-bottom: 50rem;
    width: 100%;
  }

  main .sns {
    width: 100%;
    margin-bottom: 150rem
  }

  .group-wrapper {
    display: block;
    margin-bottom: 20px;
  }
}

/* ============ */
footer {
  width: 100%;
  height: 135rem;
  padding-inline: 367rem;
  border-top: 1px solid rgba(160, 160, 160, 0.8);
}

footer .contain {
  width: 100%;
  font-size: 18rem;
}

@media (max-width: 1440px) {
  footer .contain {
    font-size: 25rem;
  }
}

@media (max-width: 1024px) {
  footer .contain {
    font-size: 32rem;
  }
}

@media (max-width: 768px) {
  footer {
    padding: 100rem;
  }

  footer .contain {
    font-size: 45rem;
  }
}

/* ================= */
/* @media (max-width: 1440px) {
    html {
      font-size: calc(1 / 1440 * 100vw);
    }
  } */

#openMenu .line {
  margin-bottom: 8px;
}

#openMenu .line:last-child {
  margin-bottom: 0;
}

/* --------------------------- 768Px ----------------------------------- */

@media (max-width: 768px) {
  html {
    font-size: calc(1 / 768* 100vw);
  }

  main .Message .title {
    font-size: 92rem;
    margin-bottom: 40rem;
  }

  main .Message .content :nth-child(1) {
    font-size: 40rem;
    margin-bottom: 30rem;
  }

  main .Message .viewBtn {
    font-size: 21rem;
  }

  main .Message .photo img:nth-of-type(1) {
    width: 100%;
    height: auto;
  }

  main .service .title {
    font-size: 92rem;
    padding-left: 40rem;
  }


  main .service .img-set .sub .tip p:nth-of-type(1) {
    font-size: 20rem;
  }

  main .service .img-set .sub .tip p:nth-of-type(2) {
    font-size: 32rem;
  }

  main .service .img-set .content {
    font-size: 22rem;
  }

  main .service .img-set img {
    width: 80%;
  }

  main .service .img-set .ticket {
    height: auto;
    position: unset;
  }

  main .service .bg-gray {
    width: 90%;
    height: 100%;
    left: 0rem;
    background-image: url(../img/top/26258361_sp.png);
  }

  main .service .img-set .ticket {
    width: 70%;
  }

  main .service .blog-group {
    align-items: unset;
    display: block;
    position: relative;
    padding-top: 160rem;
  }

  main .service .blog-group:not(main .service .blog-group:first-of-type) {
    margin-top: 50rem;
  }

  main .service .img-set a {
    position: absolute;
    top: 0;
    text-align: right;
  }

  .blog-title {
    margin-left: unset;
  }

  .blog-title p {
    font-size: 35rem !important;
  }

  /* 仮 */
  main .bottom .sns_group {
    justify-content: space-between;
    gap: 0;
    margin-top: 30rem;
    flex-wrap: wrap;
  }

  main .bottom .group .top {
    gap: 20rem;
    margin-bottom: 15rem;
    display: flex;
    margin-top: 25rem;
  }

  footer .contain {
    font-size: 25rem;
  }

  /* ここまで */

  main .bottom .blog .title {
    font-size: 92rem;
    margin-bottom: 20rem;
  }

  main .bottom .blog {
    width: 100%;
    margin-bottom: 100rem;
  }

  main .bottom .sns .title {
    font-size: 92rem;
  }

  main .contact img {
    width: 50rem;
    height: auto;
    right: 15rem;
  }

}

/* --------------------------- 500Px ----------------------------------- */
@media (max-width: 500px) {
  html {
    font-size: calc(1 / 500 * 100vw);
  }

  main .bottom .sns_group .snsBtn {
    width: 45%;
  }

  main .service .bg-gray {
    background: url("../img/top/26258361.png") no-repeat center;
  }

  a.snsBtn.flex.a-c.j-c:first-child, a.snsBtn.flex.a-c.j-c:nth-child(2) {
    margin-bottom: 20px;
  }

  main .Message {
    padding-bottom: 80rem;
  }

  main .Message .title {
    font-size: 60rem;
    margin-bottom: 25rem;
  }

  main .container {
    padding: 0 30rem;
  }

  main .Message .content :nth-child(1) {
    font-size: 38rem;
    line-height: 1.4;
  }

  main .Message .content .text p {
    font-size: 22rem;
    line-height: 1.6;
  }

  main .Message {
    padding-top: 80rem;
  }

  main .Message .content {
    margin-bottom: 35rem;
  }

  main .service {
    padding-block: 70rem;
  }

  main .service .title {
    font-size: 60rem;
    padding-left: 30rem;
  }

  main .service .img-set img {
    width: 90%;
  }

  main .service .img-set .ticket {
    width: 80%;
    padding-block: 50rem;
  }

  main .service .img-set .num {
    font-size: 70rem;
  }

  main .service .img-set .sub .tip p:nth-of-type(2) {
    font-size: 30rem;
    line-height: 1.2;
    margin-top: 10rem;
  }

  main .service .img-set .content {
    font-size: 22rem;
    margin-top: 20rem;
  }

  main .bottom .allBtn {
    width: 200rem;
    font-size: 26rem;
  }

  main .bottom .blog .title {
    font-size: 60rem;
    margin-bottom: 20rem;
  }

  main .service .blog-group {
    padding-top: 120rem;
  }

  main .bottom {
    padding: 70rem 40rem;
  }

  main .bottom .text p {
    font-size: 20rem;
  }

  main .bottom .content .group {
    padding-inline: 10rem;
  }

  main .bottom .group .tip {
    width: 200rem;
  }

  main .bottom .group .top {
    margin-bottom: 0;
    margin-top: 20rem;
  }

  .blog-title p {
    font-size: 28rem !important;
  }

  main .bottom .content .group {
    padding-bottom: 30rem;
    padding-top: 20rem;
  }

  main .bottom .sns .title {
    font-size: 60rem;
  }

  main .sns {
    margin-bottom: 100rem;
  }

  main .bottom .blog {
    margin-bottom: 60rem;
  }

  main .bottom .arrow {
    padding-inline: 12rem;
  }

  main .bottom .allBtn img {
    width: 16rem;
    height: 20rem;
  }

  main .contact .text p:nth-of-type(1) {
    font-size: 45rem;
  }

  main .contact img {
    width: 40rem;
  }

  main .contact {
    margin-bottom: 0;
  }

  footer {
    padding: 40rem;
    height: 100rem;
  }

  footer .flex {
    display: block;
  }

  footer .contain {
    font-size: 18rem;
    text-align: center;
  }

  footer .contain p {
    font-size: 14rem;
  }

  .group-wrapper {
    margin-bottom: 10rem;
  }
}