@charset "UTF-8";

html {
  font-size: 62.5%;
}

@media screen and (max-width: 1270px) and (min-width: 768px) {
  html {
    font-size: 0.8vw;
  }
}

@media screen and (max-width: 767px) {
  html {
    font-size: calc(10 / 375 * 100vw);
  }
}

* {
  line-height: 1.4;
  box-sizing: border-box;
}

body {
  font-family: 'Cabin', 'Kosugi', sans-serif;
  font-size: 1.6rem;
  color: #a13d3a;
  position: relative;
  z-index: 0;
}

body.fixed {
  overflow: hidden;
}

body::after {
  content: '';
  position: absolute;
  background-image: url(../img/mv.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  filter: blur(5px);
  top: -3%;
  left: 0;
  width: 100%;
  height: 104%;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  body::after {
    height: 103%;
  }
}

.mainblur {
  filter: blur(8px);
}

.container {
  max-width: 125rem;
  padding: 0 1rem;
  margin: 3rem auto;
  border-radius: 30px 30px 0 0;
}

@media screen and (max-width: 767px) {
  .container {
    max-width: none;
    margin: 1rem 0;
    padding: 0 0.2rem;
  }
}

a {
  color: #333;
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  a[href^="tel:"]{
    pointer-events: none;
  }
}

.button {
  width: 52rem;
  margin: 0 auto;
  padding: 1.5rem;
  border-radius: 12px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  position: relative;
}

@media screen and (max-width: 767px) {
  .button {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.7rem;
    white-space: nowrap;
  }
}

.button::after {
  content: '';
  position: absolute;
  right: 8rem;
  width: 1.5rem;
  height: 1.5rem;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
}

@media screen and (max-width: 767px) {
  .button::after {
    right: 4rem;
    width: 1rem;
    height: 1rem;
  }
}

.button:hover {
  opacity: 0.8;
}

.button:active {
  opacity: 0.6;
}

.btnshine {
  position: relative;
  overflow: hidden;
}

.btnshine::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}

.btnshine:hover::before {
  animation: shine 0.7s;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

ul {
  list-style: none;
}

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

.animate__animated {
  opacity: 0;
}

.flex {
  display: flex;
}

.no-sp {
  display: inline;
}

@media screen and (max-width: 767px) {
  .no-sp {
    display: none;
  }
}

.no-pc {
  display: none;
}

@media screen and (max-width: 767px) {
  .no-pc {
    display: inline;
  }
}

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

/* ヘッダー
---------------------------------- */
.header {
  background-color: rgba(210, 65, 230, 0.9);
  border-radius: 30px 30px 0 0;
  position: relative;
  padding: 1rem 0;
}

@media screen and (max-width: 767px) {
  .header {
    border-radius: 15px 15px 0 0;
    padding: 0.2rem 0;
  }
}

.header-title {
  color: #000;
  font-weight: 600;
  text-align: center;
}

.header-title-top,
.header-title-bottom {
  display: block;
  line-height: 1.2;
}

.header-title-top {
  font-size: 3rem;
}

@media screen and (max-width: 767px) {
  .header-title-top {
    font-size: 1.5rem;
  }
}

.header-title-bottom {
  font-size: 7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-shadow:
  0.1rem 0.1rem 0 #fff, -0.1rem -0.1rem 0 #fff,
  -0.1rem 0.1rem 0 #fff, 0.1rem -0.1rem 0 #fff,
  0.1rem 0 0 #fff, -0.1rem 0 0 #fff,
  0 0.1rem 0 #fff, 0 -0.1rem 0 #fff;
}

@media screen and (max-width: 767px) {
  .header-title-bottom {
    font-size: 2rem;
  }
}

.header-logo {
  position: absolute;
  z-index: 9999;
  top: 0;
  left: 4rem;
  display: block;
  width: 20rem;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.7);
}

@media screen and (max-width: 767px) {
  .header-logo {
    left: 2rem;
    width: 7rem;
  }
}

.header-logo__img {
  width: 15rem;
  height: 13.9rem;
  transform: scale(1.1);
}

@media screen and (max-width: 767px) {
  .header-logo__img {
    width: 5rem;
    height: 4.8rem;
  }
}

/* ナビゲーションメニュー */
.openbtn {
  display: none;
}

@media screen and (max-width: 767px) {
  .openbtn {
    position: absolute;
    z-index: 1000;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    cursor: pointer;
    height: 4.5rem;
    display: flex;
    align-items: center;
    background: #FEE2EB;
    border-radius: 10px;
    padding: 0 1rem;
  }

  .openbtn span,
  .openbtn span::before,
  .openbtn span::after {
    content: '';
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    height: 0.4rem;
    background-color: #C51B54;
    width: 2.5rem;
  }

  .openbtn span {
    position: relative;
  }

  .openbtn span::before {
    top: -0.8rem;
  }

  .openbtn.active span::before {
    opacity: 1;
    top: 0;
    left: -0.3rem;
    width: 3rem;
    transform: rotate(-45deg);
  }

  .openbtn span::after {
    top: 0.8rem;
  }

  .openbtn.active span::after {
    opacity: 1;
    top: 0;
    left: -0.3rem;
    width: 3rem;
    transform: rotate(45deg);
  }

  .openbtn.active span {
    background: rgba(255, 255, 255, 0);
  }
}

.move {
  opacity: 0;
  background-color: rgba(38, 38, 38, 0.9);
  position: fixed;
  z-index: 3000;
  top: -100px;
  left: 0;
  width: 100%;
  padding: 2rem 10rem;
  box-shadow: 0 0 20px #000;
}

@media screen and (max-width: 767px) {
  .move {
    padding: 0.5rem 2rem;
    box-shadow: 0 0 20px #000;
  }
}

.move-title {
  color: #fff;
  text-align: center;
}

.move-title-top {
  display: block;
  font-size: 2.4rem;
}

@media screen and (max-width: 767px) {
  .move-title-top {
    font-size: 1.5rem;
  }
}

.move-title-bottom {
  display: block;
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: rgb(210, 65, 230);
  text-shadow:
  0.1rem 0.1rem 0 #fff, -0.1rem -0.1rem 0 #fff,
  -0.1rem 0.1rem 0 #fff, 0.1rem -0.1rem 0 #fff,
  0.1rem 0 0 #fff, -0.1rem 0 0 #fff,
  0 0.1rem 0 #fff, 0 -0.1rem 0 #fff;
}

@media screen and (max-width: 767px) {
  .move-title-bottom {
    font-size: 2rem;
  }
}

.move-logo {
  position: absolute;
  display: block;
  top: 1rem;
  left: 8rem;
  background-color: rgba(255, 255, 255, 0.8);
}

@media screen and (max-width: 767px) {
  .move-logo {
    top: 0;
    left: 1.5rem;
    width: 7rem;
    text-align: center;
  }
}

.move-logo__img {
  width: 20rem;
  height: 12rem;
}

@media screen and (max-width: 767px) {
  .move-logo__img {
    width: 6rem;
    height: 6rem;
  }
}

.move.UpMove {
	animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime{
  from {
    opacity: 1;
    top: 0;
  }
  to {
    opacity: 0;
    top: -100px;
  }
}

.move.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 0;
    top: -100px;
  }
  to {
    opacity: 1;
    top: 0;
  }
}

/* メインビジュアル
---------------------------------- */
.mainvisual {
  position: relative;
}

.mainvisual__img {
  width: 100%;
}

/* メイン
---------------------------------- */
.main {
  display: flex;
  padding: 2.8rem 1.5rem;
  background-color: rgba(255, 172, 0, 0.9);
  position: relative;
  z-index: 1;
  align-items: flex-start;
  border-radius: 0 0 30px 30px;
  margin-bottom: 3rem;
}

@media screen and (max-width: 767px) {
  .main {
    display: block;
    padding: 0.5rem;
    margin-bottom: 0;
  }
}

/* ナビゲーションメニュー
---------------------------------- */
.g-nav {
  width: 25%;
  padding: 4rem 0;
}

@media screen and (max-width: 767px) {
  .g-nav {
    width: 100%;
    height: 100dvh;
    padding: 0;
    position: fixed;
    z-index: -1;
    opacity: 0;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
    overflow-y: auto;
    padding-top: 7rem;
    padding-bottom: 4rem;
  }

  .g-nav.panelactive {
    opacity: 1;
    z-index: 999;
  }
}

@media screen and (max-width: 767px) {
  .g-nav__openbtn {
    top: 1rem;
    right: 2rem;
    transform: none;
  }
}

@media screen and (max-width: 767px) {
  .g-nav ul {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .g-nav.panelactive ul {
    display: block;
  }
}

.g-nav__item {
  width: 97%;
  margin: 0 0 1rem;
  border-radius: 60px;
  background-color: #FEE2EB;
}

@media screen and (max-width: 767px) {
  .g-nav__item {
    text-align: center;
    margin: 0 0 1.2rem;
  }
}

.g-nav__item:hover {
  background-color: #fff;
}

.g-nav__item:active {
  transform: scale(1.1);
}

.g-nav__item:last-child {
  margin-bottom: 0;
}

.g-nav__item a {
  display: block;
  font-size: 2rem;
  padding: 1rem 1.5rem;
  color: #333;
}

@media screen and (max-width: 767px) {
  .g-nav__item a {
    font-size: 1.7rem;
    padding: 0.8rem;
  }
}

/* 記事
---------------------------------- */
.article {
  width: 75%;
  background: #fff;
  border-radius: 32px;
  padding: 3.5rem;
  color: #a13d3a;
}

@media screen and (max-width: 767px) {
  .article {
    width: 100%;
    border-radius: 16px;
    padding: 3rem 1.5rem;
  }
}

.article__title {
  font-size: 5rem;
  color: #fe9586;
  margin-bottom: 4rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

@media screen and (max-width: 767px) {
  .article__title {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    gap: 0.5rem;
  }
}

.article__title::before,
.article__title::after {
  content: '';
  display: inline-block;
  width: 7.8rem;
  height: 5rem;
  background: url(../img/mahjong-tiles_midashi.svg) left center/contain;
}

@media screen and (max-width: 767px) {
  .article__title::before,
  .article__title::after {
    width: 2rem;
    height: 3rem;
    background: url(../img/mahjong-tiles_midashi.svg) no-repeat center center/contain;
  }
}

/* フッター
---------------------------------- */
.footer__copyright {
  display: block;
  text-align: center;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .footer__copyright {
    color: #000;
  }
}
