@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Mochiy+Pop+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;800;900&display=swap");
/* Reset CSS - 2021.09
---------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, ruby, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, form, fieldset, legend, label, header, footer, hgroup, menu, nav, main, article, section, aside, details, figure, figcaption, canvas, embed, output, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: bottom;
}

header, footer, hgroup, menu, nav, main, article, section, aside, details, figure, figcaption {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

hr {
  display: none;
}

address, em {
  font-style: normal;
}

table {
  border-collapse: collapse;
}

img {
  vertical-align: bottom;
}

/* Fonts
---------------------------------------------------*/
body {
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
}

/* clearfix
---------------------------------------------------*/
.clearfix::after {
  content: "";
  display: block;
  clear: both;
  height: 0;
}

* {
  box-sizing: border-box;
}

html {
  overflow-y: scroll;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  letter-spacing: 0.05rem;
  position: relative;
  line-height: 180%;
  letter-spacing: 0.15em;
  font-size: clamp(0.875rem, 0.823rem + 0.22vw, 1rem); /*14-16px min375-max1280*/
  font-feature-settings: "palt";
}

a {
  text-decoration: none;
  color: #000000;
  transition: all 0.3s;
  position: relative;
}

a:hover {
  opacity: 0.75;
}

img {
  height: auto;
  width: 100%;
}

section {
  padding: 100px 0;
}

.sp-block {
  display: none;
}

.wrapper {
  width: min(100%, 1040px);
  padding: 0 20px;
  margin: 0 auto;
  position: relative;
}

.sec-ttl {
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto 50px;
}
.sec-ttl img {
  width: max(36%, 400px);
}
.sec-ttl::before {
  content: "";
  background-image: url(../../img/common/ttl-icon/ttl-icon01.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 100%;
  padding-top: 5.4%;
  display: block;
  margin-bottom: 10px;
}
.sec-ttl span {
  font-size: clamp(0.875rem, 0.823rem + 0.22vw, 1rem); /*14-16px min375-max1280*/
  font-family: "Noto Sans JP", sans-serif;
  display: block;
  font-weight: 400;
  margin-top: 1em;
}

.btn a {
  color: #FFFFFF;
  font-family: "Mochiy Pop One", sans-serif;
  font-size: clamp(1.125rem, 0.97rem + 0.66vw, 1.5rem); /*18-24px*/
  border-radius: 50px;
  border: 3px solid #000000;
  outline: 6px solid #FFFFFF;
  background: #0D982C;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.15);
  padding: 0.75rem 2rem 1rem;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  margin: 0 auto;
  text-align: center;
  letter-spacing: 0.1em;
  min-height: 6rem;
}
.btn a span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(0.75rem, 0.595rem + 0.66vw, 1.125rem); /*12-18*/
  display: block;
  padding-bottom: 0.2rem;
}
.btn a::after {
  content: "";
  background-image: url(../../img/common/icon/icon-btn-arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
}
.btn .orange {
  background-color: #FF9900;
}

/*モーダルカスタマイズ*/
.lity-wrap {
  background: rgba(255, 255, 255, 0.3);
}

.lity-container {
  width: 92% !important;
}

/*アニメーション*/
.rotate {
  animation: 3s linear infinite rotation1;
}

@keyframes rotation1 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes fadeUpAnime {
  from {
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeIn {
  opacity: 0;
  transform: translateY(100px);
  transition: all 1s;
}

.fadeIn.scroll {
  opacity: 1;
  transform: translateY(0);
}

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

コンテンツ幅767以下の表示はここからです

==================================================*/
@media screen and (max-width: 767px) {
  section {
    padding: 15vw 0 20vw;
  }
  .sp-block {
    display: block;
  }
  .sp-none {
    display: none;
  }
  .wrapper {
    width: 100%;
  }
  .sec-ttl::before {
    padding-top: 13.5%;
  }
  .sec-ttl img {
    width: 100%;
  }
  .btn a {
    border-width: 2px;
    min-height: 4rem;
    padding: 0.5rem 2rem 0.5rem;
  }
}
/* Mixin */
/* Module */
header {
  position: fixed;
  z-index: 100;
  width: 100%;
}

main {
  padding-top: 140px;
}

.header {
  display: flex;
  justify-content: space-between;
  padding: 15px 20px;
  background-color: #FFFFFF;
  width: 100%;
}
.header #toggle {
  display: none;
}
.header-list {
  display: flex;
}
.header-list .btn-online {
  background-color: #FFE100;
  border-radius: 30px;
  border: 2px solid #000000;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  padding: 0 1.5em;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 5px;
  margin-right: 20px;
}
.header-list .btn-online::after {
  content: "";
  display: block;
  background-image: url(../../img/common/icon/icon-btn-arrow-bk.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 10px;
  height: 10px;
}
.header-list .head-instagram {
  width: 30px;
  margin-left: 10px;
}

nav {
  background-color: #d21120;
  position: relative;
}
nav::after {
  content: "";
  background-image: url(../../img/common/bg/bg-object-nav.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  position: absolute;
  width: 100%;
  height: 100%;
  filter: drop-shadow(3px 5px 3px rgba(0, 0, 0, 0.1));
}
nav .header-list {
  display: none;
}
nav .header-list .btn-online {
  margin-right: 0;
}
nav .nav-list {
  display: flex;
  padding: 1.2rem 0 1rem;
}
nav .nav-list-item {
  width: 20%;
  font-family: "Mochiy Pop One", sans-serif;
  text-align: center;
  line-height: 1.6;
  padding: 0 1em;
}
nav .nav-list-item a {
  color: #FFFFFF;
}

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

コンテンツ幅999以下の表示はここからです

==================================================*/
@media screen and (max-width: 999px) {
  .sp-none {
    display: none;
  }
  body.fixed {
    width: 100%;
    height: 100%;
    position: fixed;
  }
  main {
    padding-top: 60px;
  }
  .header {
    padding: 10px 20px;
    align-items: center;
    z-index: 5;
    position: fixed;
    /*ボタン内側*/
    /*activeクラスが付与されると線が回転して×に*/
  }
  .header-list {
    display: none;
  }
  .header #toggle {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
  }
  .header #toggle span {
    display: block;
    transition: all 0.4s;
    position: absolute;
    left: 3px;
    height: 3px;
    background: black;
    width: 70%;
  }
  .header #toggle span:nth-of-type(1) {
    top: 10px;
  }
  .header #toggle span:nth-of-type(2) {
    top: 20px;
  }
  .header #toggle span:nth-of-type(3) {
    top: 30px;
  }
  .header #toggle.active span:nth-of-type(1) {
    top: 10px;
    left: 0;
    transform: translateY(6px) rotate(-45deg);
    width: 80%;
  }
  .header #toggle.active span:nth-of-type(2) {
    opacity: 0;
  }
  .header #toggle.active span:nth-of-type(3) {
    top: 22px;
    left: 0px;
    transform: translateY(-6px) rotate(45deg);
    width: 80%;
  }
  nav {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    padding-top: 80px;
    top: 0;
    width: 100%;
    height: 100%;
    transition: all 0.3s;
    z-index: 3;
    margin: 0;
    min-width: 100%;
    background-color: none;
  }
  nav::after {
    display: none;
  }
  nav .nav-list {
    flex-direction: column;
    font-size: 1.1rem;
  }
  nav .nav-list-item {
    width: 100%;
    margin-bottom: 2rem;
  }
  nav .header-list {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  nav .header-list-item {
    width: 14em;
  }
  nav .header-list-item .btn-online-icon {
    display: block;
    width: 40px;
    height: 40px;
    margin: 20px auto 10px;
  }
  .sp_open {
    visibility: inherit;
    opacity: 1;
    transition: all 0.3s;
  }
  .sp-fixed {
    display: block;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 9999;
  }
}
footer {
  background-color: #FFFFFF;
}

.footer-share {
  background-color: #d21120;
  text-align: center;
  color: #FFFFFF;
  font-family: "Mochiy Pop One", sans-serif;
  font-size: 1.5rem; /*24px*/
  padding: 40px 0;
}
.footer-share-list {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 1em;
}
.footer-share-list-item {
  width: 60px;
}

.footer-bnr {
  padding: 4vw 0 10px;
  background-image: url(../../img/common/bg/bg-dotto.png);
  text-align: center;
}
.footer-bnr-list {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.footer-bnr .footer-logo {
  width: 15%;
  margin: 80px auto 30px;
}
.footer-bnr small {
  font-size: 0.625rem; /*10px*/
}

/* =================================================
コンテンツ幅500以下の表示はここからです
==================================================*/
@media screen and (max-width: 500px) {
  .footer-share {
    padding: 20px 0;
  }
  .footer-bnr {
    padding: 30px 20px 10px;
  }
  .footer-bnr-list {
    flex-direction: column;
  }
  .footer-bnr .footer-logo {
    width: 50%;
    margin: 40px auto;
  }
}
.loader-bg {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background-image: url(../../img/common/bg/bg-loding.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader {
  width: 10%;
  position: relative;
  animation: load3 2s infinite linear;
  transform: translateZ(0);
}

@keyframes load3 {
  0%, 100% {
    transform: translateY(-5px) rotate(-5deg);
  }
  50% {
    transform: translateY(5px) rotate(5deg);
  }
}
/*画面遷移用*/
#top {
  background: #FFE100;
}

#top.appear {
  background: #FFE100;
}

.splashbg {
  display: none;
  content: "";
  position: fixed;
  transform: scale(100);
  background-color: #FFE100;
  z-index: 999;
  top: calc(50% - 1rem); /*50%から円の半径を引いた値*/
  left: calc(50% - 1rem); /*50%から円の半径を引いた値*/
  width: 2rem;
  height: 2rem;
}

/*bodyにappearクラスがついたら出現*/
#top.appear .splashbg {
  display: block;
  border-radius: 50%;
  animation-name: PageAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}

@keyframes PageAnime {
  0% { /*丸のスタート位置と形状*/
    transform: scale(100);
  }
  100% { /*丸の終了位置と形状*/
    transform: scale(0);
    display: none; /*終了時は消える*/
  }
}
/*画面遷移の後現れるコンテンツ設定*/
#container {
  opacity: 0; /*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #container {
  animation-name: PageAnimeAppear;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* =================================================

コンテンツ幅768以下の表示はここからです

==================================================*/
@media screen and (max-width: 768px) {
  .loader {
    width: 30%;
  }
  .loader-bg {
    background-image: url(../../img/common/bg/bg-loding_sp.png);
  }
}/*# sourceMappingURL=style.css.map */