@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700;800&display=swap");
/*==============================

reset

==============================*/
* {
  box-sizing: border-box;
  min-height: 0vw; /* Safari clamp関数対策 */
  color: inherit;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 10px;
}

body {
  font-feature-settings: "palt";
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo",
    "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: normal;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: clip;
}

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

iframe {
  vertical-align: bottom;
}

picture {
  display: inline-block;
  width: 100%;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  display: inline;
  text-decoration: none;
}

a:focus {
  outline: none;
}

sup,
sub {
  height: 0;
  line-height: 1;
  vertical-align: baseline;
  position: relative;
}

sup {
  bottom: 1ex;
}

sub {
  top: 0.5ex;
}

p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

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

m-basic

-------------------------*/
.l-wrapper .m-basic {
  background-color: #feeacc;
  padding: 3em 0 2em;
}
@media (max-width: 750px) {
  .l-wrapper .m-basic {
    padding: 4em 0 2em;
  }
}
.l-wrapper .m-basic__inner {
  background-color: #ffffff;
  border: 8px solid #fa9600;
  border-radius: 20px;
  box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.3);
  padding: 0;
}
@media (max-width: 750px) {
  .l-wrapper .m-basic__inner {
    border: 4px solid #fa9600;
    border-radius: 10px;
  }
}
.l-wrapper .m-basic__area {
  width: 89.4736842105%;
  max-width: 850px;
  padding: 40px 0;
  margin: 0 auto;
}
@media (max-width: 750px) {
  .l-wrapper .m-basic__area {
    width: 90.9090909091%;
    max-width: 300px;
    padding: 30px 0 60px;
  }
}
.l-wrapper .m-basic__tit {
  position: relative;
  display: inline-block;
  font-size: clamp(2rem, 3.2407407407vw, 3.5rem);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0;
  color: #000000;
}
@media (max-width: 750px) {
  .l-wrapper .m-basic__tit {
    font-size: clamp(2.8rem, 7.4666666667vw, 2.8rem);
  }
}
.l-wrapper .m-basic__tit__logo {
  display: inline-block;
  width: 70.4%;
  max-width: 264px;
}
@media (max-width: 750px) {
  .l-wrapper .m-basic__tit__logo {
    width: 70%;
    max-width: 210px;
  }
}
.l-wrapper .m-basic__tit::before {
  position: absolute;
  content: "";
  bottom: -14px;
  left: 0;
  width: 100%;
  height: 5px;
  background-image: linear-gradient(9deg, #fa9600, #e60012);
  border-radius: 999px;
}
.l-wrapper .m-basic__wrap__tit {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 8em;
}
@media (max-width: 750px) {
  .l-wrapper .m-basic__wrap__tit {
    margin-bottom: 5em;
  }
}
.l-wrapper .m-basic__wrap__tit__double {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (max-width: 750px) {
  .l-wrapper .m-basic__wrap__tit__double {
    margin-bottom: 2em;
  }
}
.l-wrapper .m-basic__wrap__tit__double .m-basic__tit + .m-basic__tit {
  margin-top: 1em;
}
@media (max-width: 750px) {
  .l-wrapper .m-basic__wrap__tit__double .m-basic__tit + .m-basic__tit {
    margin-top: 0.5em;
  }
}
.l-wrapper .m-basic__btn {
  position: relative;
  display: block;
  width: 100%;
  max-width: 440px;
  font-size: clamp(1.6rem, 1.8518518519vw, 2rem);
  font-weight: 700;
  line-height: 125%;
  letter-spacing: 0;
  color: #ffffff;
  text-align: center;
  padding: 1em;
  background-color: #fa9600;
  border-radius: 10px;
  margin: 1em auto 0;
}
@media (max-width: 750px) {
  .l-wrapper .m-basic__btn {
    font-size: clamp(1.3rem, 3.4666666667vw, 1.3rem);
    line-height: 130%;
  }
}
.l-wrapper .m-basic__btn::before,
.l-wrapper .m-basic__btn::after {
  position: absolute;
  content: "";
  right: 1.5em;
  width: 0.9em;
  height: 5px;
  background-color: #ffffff;
  border-radius: 999px;
}
@media (max-width: 750px) {
  .l-wrapper .m-basic__btn::before,
  .l-wrapper .m-basic__btn::after {
    height: 3px;
  }
}
.l-wrapper .m-basic__btn::before {
  top: calc(50% - 0.25em);
  transform: translate(0, -50%) rotate(45deg);
}
.l-wrapper .m-basic__btn::after {
  top: calc(50% + 0.25em);
  transform: translate(0, -50%) rotate(135deg);
}
.l-wrapper .m-movie__box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.5em 5.5em;
  flex-wrap: wrap;
}
@media (max-width: 750px) {
  .l-wrapper .m-movie__box {
    flex-direction: column;
    gap: 3em;
  }
}
.l-wrapper .m-movie__item {
  width: 44.9101796407%;
  max-width: 300px;
}
@media (max-width: 750px) {
  .l-wrapper .m-movie__item {
    width: 100%;
    max-width: none;
  }
}
.l-wrapper .m-movie__item__tmb {
  position: relative;
  display: block;
}
.l-wrapper .m-movie__item__tmb img {
  filter: brightness(0.5);
}
.l-wrapper .m-movie__item__tmb::before,
.l-wrapper .m-movie__item__tmb::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
}
.l-wrapper .m-movie__item__tmb::before {
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 1.5em solid transparent;
  border-bottom: 1.5em solid transparent;
  border-left: 2.5em solid #ffffff;
  border-right: 0;
  left: calc(50% + 3px);
  filter: drop-shadow(1px 1px 2px rgba(35, 24, 21, 0.6));
}
.l-wrapper .m-movie__item__tmb::after {
  width: 8em;
  height: 8em;
  border-radius: 50%;
  border: 1px solid #ffffff;
  box-shadow: 1px 1px 2px rgba(35, 24, 21, 0.6);
}
.l-wrapper .m-movie__item__tit {
  font-size: clamp(1.6rem, 1.8518518519vw, 2rem);
  font-weight: 700;
  line-height: 125%;
  letter-spacing: 0;
  color: #000000;
  text-align: center;
  margin-top: 0.5em;
}
@media (max-width: 750px) {
  .l-wrapper .m-movie__item__tit {
    font-size: clamp(2.2rem, 5.8666666667vw, 2.2rem);
    line-height: 122%;
  }
}

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

KVバナー アニメーション

-------------------------*/
.l-wrapper .p-kv__bnr::before {
  animation: rotate360 20s linear infinite;
}

@keyframes rotate360 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*-------------------------

サイドメニュー ホバーアニメーション

-------------------------*/
.l-wrapper .l-menu .m-basic__tit:hover {
  opacity: 1;
}
.l-wrapper .l-menu .m-basic__tit:hover::after {
  animation: 0.5s ease-out side-menu-hover;
  animation-fill-mode: forwards;
}

@keyframes side-menu-hover {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(100%, 0);
  }
}
/*-------------------------

フェードイン アニメーション各種

-------------------------*/
[data-inview][data-inview="anime-default"] {
  opacity: 0;
  transition: opacity 1s;
}
[data-inview][data-inview="anime-default"].anime-default {
  opacity: 1;
}

[data-inview][data-inview="anime-slideInRL"] {
  transform: translateX(50px);
  opacity: 0;
  transition: transform 1s, opacity 2s;
}
[data-inview][data-inview="anime-slideInRL"].anime-slideInRL {
  transform: translateX(0px);
  opacity: 1;
}
[data-inview][data-inview="anime-slideInLR"] {
  transform: translateX(-50px);
  opacity: 0;
  transition: transform 1s, opacity 2s;
}
[data-inview][data-inview="anime-slideInLR"].anime-slideInLR {
  transform: translateX(0px);
  opacity: 1;
}

[data-inview][data-inview="anime-fadeIn"] {
  opacity: 0;
}
[data-inview][data-inview="anime-fadeIn"].anime-fadeIn {
  animation: kvLogoAnime 1s ease-out; /* アニメーション設定 */
  animation-delay: 1s;
  animation-fill-mode: forwards;
}
@keyframes kvLogoAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

[data-inview][data-inview="anime-marker"] {
  position: relative;
  z-index: 1;
}
[data-inview][data-inview="anime-marker"]::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  height: 10px;
  background-color: #fff028;
  z-index: -1;
}
[data-inview][data-inview="anime-marker"].anime-marker::before {
  animation: markerAnime 2s ease-out; /* アニメーション設定 */
  animation-delay: 1s;
  animation-fill-mode: forwards;
}
@keyframes markerAnime {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

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

キャラクター ポップアニメーション

-------------------------*/
.l-wrapper .p-character__box__img::before {
  animation: popupAnime 3s ease-out infinite; /* アニメーション設定 */
}

@keyframes popupAnime {
  0% {
    transform: translateY(0);
  }
  8% {
    transform: translateY(-10px);
  } /* 少し上にポップ */
  16% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
/*-------------------------

common

-------------------------*/
html,
body {
  -ms-overflow-style: none; /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  scrollbar-width: none; /*Firefoxへの対応*/
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none; /*Google Chrome、Safariへの対応*/
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

a {
  opacity: 1;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.5;
  transition: opacity 0.3s;
}
a:visited {
  opacity: 1;
}

.l-section {
  position: relative;
}
.l-section__linkpoint {
  position: absolute;
  top: -70px;
  left: 0;
}
.l-section__inner {
  width: 87.962962963%;
  max-width: 950px;
  margin: 0 auto;
  padding: 50px 0;
}
@media (max-width: 750px) {
  .l-section__inner {
    width: 93.3333333333%;
    max-width: 350px;
  }
}

.l-wrapper {
  position: relative;
  display: block;
}

.l-main {
  position: relative;
  width: 100%;
}

@media (max-width: 750px) {
  .l-pc__only {
    display: none !important;
  }
}

@media (min-width: 751px) {
  .l-sp__only {
    display: none !important;
  }
}

.l-iBlock {
  display: inline-block;
}

.js-overflow-hidden {
  overflow-y: clip;
}

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

l-header

-------------------------*/
.l-wrapper .l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  background-color: #ffffff;
  height: 70px;
  z-index: 998;
}
@media (max-width: 750px) {
  .l-wrapper .l-header {
    height: 70px;
  }
}
.l-wrapper .l-header__logo {
  position: relative;
  width: 100%;
  max-width: 136px;
  top: 0.5em;
  left: 2em;
}
@media (max-width: 750px) {
  .l-wrapper .l-header__logo {
    left: 1em;
  }
}
.l-wrapper .l-header__logo__img {
  display: block;
  width: 100%;
}
.l-wrapper .l-header .l-menu__ham.js-menu-open .l-menu__ham__line {
  background-color: transparent;
}
.l-wrapper .l-header .l-menu__ham.js-menu-open .l-menu__ham__line::before {
  transform: translate(0, 0.8em) rotate(45deg);
}
.l-wrapper .l-header .l-menu__ham.js-menu-open .l-menu__ham__line::after {
  transform: translate(0, -0.8em) rotate(135deg);
}

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

l-menu

-------------------------*/
.l-wrapper .l-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  content: "";
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100% - 70px);
  z-index: 10001;
  transform: translateX(100vw);
  transition: all ease-out 0.3s;
  background-color: #ffffff;
}
@media (max-width: 750px) {
  .l-wrapper .l-menu {
    top: 70px;
  }
}
.l-wrapper .l-menu .m-basic__tit {
  font-size: clamp(1.8rem, 4.8vw, 1.8rem);
}
.l-wrapper .l-menu .m-basic__tit::before {
  height: 2.5px;
}
.l-wrapper .l-menu .m-basic__tit::after {
  position: absolute;
  content: "";
  bottom: -14px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  border-radius: 999px;
}
@media (max-width: 750px) {
  .l-wrapper .l-menu .m-basic__tit::after {
    bottom: -15px;
    height: 8px;
  }
}
.l-wrapper .l-menu .m-basic__tit__logo {
  width: 100%;
  max-width: 131px;
}
@media (max-width: 750px) {
  .l-wrapper .l-menu .m-basic__tit {
    font-size: clamp(1.8rem, 4.8vw, 1.8rem);
  }
}
.l-wrapper .l-menu.js-menu-open {
  transform: translateX(0vw);
  transition: all ease-out 0.3s;
}
.l-wrapper .l-menu__area {
  max-width: 290px;
  height: 88%;
  overflow-y: scroll;
  margin: 0 auto;
  text-align: center;
  -ms-overflow-style: none; /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  scrollbar-width: none; /*Firefoxへの対応*/
}
.l-wrapper .l-menu .l-menu__area::-webkit-scrollbar {
  display: none; /*Google Chrome、Safariへの対応*/
}
.l-wrapper .l-menu__box {
  width: 100%;
  margin-top: 2em;
}
.l-wrapper .l-menu__box:first-of-type {
  margin-top: 0;
}
.l-wrapper .l-menu__box__li {
  position: relative;
  font-size: clamp(1.8rem, 4.8vw, 1.8rem);
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.06em;
  margin-bottom: 1.5em;
}
.l-wrapper .l-menu__box__btn {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.l-wrapper .l-menu__box__btn::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 1px;
  border-radius: 1px;
  background-color: #ffffff;
}
.l-wrapper .l-menu__ham {
  position: fixed;
  top: 1em;
  right: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  z-index: 999;
  border-radius: 50%;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.3s;
}
@media (max-width: 750px) {
  .l-wrapper .l-menu__ham {
    right: 1em;
  }
}
.l-wrapper .l-menu__ham:hover {
  opacity: 0.5;
  transition: opacity 0.3s;
}
.l-wrapper .l-menu__ham__line {
  position: relative;
  display: block;
  width: 20px;
  height: 2px;
  background-color: #000000;
  border-radius: 1px;
}
.l-wrapper .l-menu__ham__line::before,
.l-wrapper .l-menu__ham__line::after {
  position: absolute;
  content: "";
  top: -8px;
  left: 0;
  width: 20px;
  height: 2px;
  background-color: #000000;
  border-radius: 1px;
}
.l-wrapper .l-menu__ham__line::after {
  top: 8px;
}

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

l-copyright

-------------------------*/
.l-wrapper .l-copyright {
  width: 100%;
  text-align: center;
  padding: 50px 0 200px;
}
@media (max-width: 750px) {
  .l-wrapper .l-copyright {
    padding: 50px 0 220px;
  }
}
.l-wrapper .l-copyright__txt {
  font-size: clamp(1.2rem, 3.2vw, 1.2rem);
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0;
  color: #000000;
}

/* フローティングバナー ここから
-------------------------*/
.l-wrapper .l-bnr {
  position: fixed;
  bottom: 111px;
  right: 10px;
  z-index: 999;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
@media (max-width: 750px) {
  .l-wrapper .l-bnr {
    bottom: 85px;
  }
}
.l-wrapper .l-bnr__wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 15px;
  margin-bottom: 0.5em;
}
.l-wrapper .l-bnr__img {
  display: block;
  width: 100%;
  max-width: 210px;
}
.l-wrapper .l-bnr__top {
  display: block;
  width: 100%;
  max-width: 75px;
}
.l-wrapper .l-bnr__chat {
  display: block;
  width: 100%;
  max-width: 300px;
}
.l-wrapper .l-bnr.js-bnr-active {
  opacity: 1;
  transform: translateX(0);
}

/* フローティングバナー ここまで
-------------------------*/ /*# sourceMappingURL=common.css.map */
