@charset "UTF-8";
/*
 変数定義用のファイルです 
 自由に書き換えてください
*/
/*========= Media Size ===============*/
/*========= Font ===============*/
/*========= Color ===============*/
.pc {
  display: block !important;
}
@media (max-width: 480px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none !important;
}
@media (max-width: 480px) {
  .sp {
    display: block !important;
  }
}

html {
  font-size: 62.5%;
  margin-top: 0 !important;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  font-family: "Noto Serif JP", serif;
  -webkit-font-smoothing: antialiased;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.7;
  color: #1a1311;
  overflow-x: hidden;
}
@media screen and (min-width: 480px) {
  body {
    font-size: 1.5rem;
    line-height: 1.6;
  }
}

main {
  overflow: hidden;
}

.pc-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #b5c6d1;
  z-index: -1;
}
@media (max-width: 480px) {
  .pc-wrapper {
    opacity: 0;
  }
}
.pc-wrapper__logo {
  padding: 20px;
}
@media (max-width: 1200px) {
  .pc-wrapper__logo {
    display: none;
  }
}
.pc-wrapper__bg {
  width: 100%;
  height: 100%;
  background: url(../images_nantan_film/bg.jpg);
  background-size: cover;
  background-position: center;
}
@media (min-width: 1200px) {
  .pc-wrapper__bg {
    width: 720px;
  }
}

.main-container {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: #f7eee6;
}
@media screen and (min-width: 480px) {
  .main-container {
    margin: 0 auto;
  }
}
@media (min-width: 1200px) {
  .main-container {
    margin: 0 auto 0 720px;
  }
}

a {
  cursor: pointer;
  display: block;
  color: inherit;
  text-decoration: none;
}

img,
ul,
ol,
button {
  display: block;
}

.row {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  flex-wrap: wrap;
}

h2 {
  margin-bottom: 50px;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  font-size: 2.5rem;
  text-align: center;
  letter-spacing: 10px;
}
@media screen and (min-width: 480px) {
  h2 {
    font-size: 2rem;
  }
}

.font--accent {
  font-family: "Noto Serif JP", serif;
}

@keyframes rotation {
  0% {
    transform: translateX(-50%) translateY(-50%) rotate(0);
  }
  100% {
    transform: translateX(-50%) translateY(-50%) rotate(360deg);
  }
}
@keyframes hover {
  0% {
    transform: translateX(-50%) translateY(-50%) rotate(0);
  }
  100% {
    transform: translateX(-50%) translateY(-50%) rotate(120deg);
  }
}
.header {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  position: fixed;
  top: 0;
  left: 0;
  padding: 10px;
  width: 100%;
  z-index: 10;
  transition: 3s;
}
.header__logo {
  width: 75px;
}
.header.is-active {
  opacity: 0;
  visibility: hidden;
}
@media screen and (min-width: 480px) {
  .header {
    display: none;
  }
}

/* Footer */
.footer {
  margin-top: -1px;
  padding: 20% 20px 20px 20px;
  color: #fff;
  background: #1a70fc;
  text-align: center;
}
.footer p {
  margin: 20px 0;
}
.footer .logo {
  width: 90%;
  margin: 30px auto;
}
.footer .logo-nantan {
  width: 160px;
  margin: 30px auto;
}
.footer .copylight {
  margin-top: 60px;
  font-size: 1.2rem;
  text-align: center;
}

/*========= トップページ(front)用のCSS ===============*/
.fix-entry-btn-wrap {
  position: fixed;
  overflow: hidden;
  transform: scale(1);
  bottom: -57px;
  transform: translateX(45.5vw);
  z-index: 10;
}
@media screen and (min-width: 480px) {
  .fix-entry-btn-wrap {
    transform: translateX(124.5%);
  }
}
.fix-entry-btn-wrap .entry-btn {
  width: 214px;
  height: 214px;
  position: relative;
  right: -17%;
}
.fix-entry-btn-wrap .entry-btn__circle-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 92%;
  z-index: 3;
  animation: 11s linear infinite rotation;
}
.fix-entry-btn-wrap .entry-btn__circle {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  background: #fff;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  transition: 1s;
}
.fix-entry-btn-wrap .entry-btn__circle p {
  font-weight: bold;
  text-align: center;
  color: #0162ff;
  font-size: 2.2rem;
}
.fix-entry-btn-wrap .entry-btn__circle p span {
  display: block;
  font-size: 1.7rem;
}
.fix-entry-btn-wrap .entry-btn:hover .entry-btn__circle-text {
  animation: 1s both hover;
}
.fix-entry-btn-wrap .entry-btn:hover .entry-btn__circle {
  transform: scale(0.8);
  background: rgba(255, 255, 255, 0.8);
}

.loading-overlay {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: #f7eee6;
  z-index: 11;
}

.page-front {
  position: relative;
  /* TOPのファーストビュー */
  /* コンセプト */
}
.page-front .fv-container {
  height: 100svh;
  max-height: 740px;
}
.page-front .fv-container__logo {
  position: absolute;
  z-index: 2;
  top: -93px;
  left: -35px;
  mix-blend-mode: difference;
  width: 132px;
  transform-origin: left top;
}
.page-front .fv-container__catchcopy {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 10%;
  bottom: 0;
  font-size: 2.1rem;
  transition: 2.5s;
  letter-spacing: 15px;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  font-weight: bold;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.page-front .fv-container__bg {
  width: 100%;
}
.page-front .fv-container__img-wrap {
  position: relative;
  width: 87%;
  max-width: 420px;
  margin: 100px 0 50px auto;
}
.page-front .fv-container__img-wrap .main-img {
  width: 100%;
}
.page-front .fv-container__img-wrap .overlay {
  width: 100%;
  height: 50%;
  position: absolute;
  left: 0;
  background: #f7eee6;
}
.page-front .fv-container__img-wrap .overlay--top {
  top: 0;
}
.page-front .fv-container__img-wrap .overlay--bottom {
  bottom: 0;
}
.page-front .concept {
  position: relative;
  margin-top: 140px;
  padding-bottom: 100px;
}
.page-front .concept p {
  position: relative;
  width: 85%;
  max-width: 420px;
  margin: 0 0 0 auto;
  line-height: 2.6;
  font-size: 1.6rem;
  z-index: 3;
}
.page-front .concept__img-1 {
  position: absolute;
  top: -30px;
  right: -10%;
  width: 210px;
}
.page-front .concept__img-1 img {
  width: 100%;
}
.page-front .concept__img-1::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: #f7eee6;
  transition: 1.6s;
}
.page-front .concept__img-1.is-active:before {
  width: 0;
}
.page-front .concept__img-2 {
  position: relative;
  margin-top: 100px;
  width: 320px;
}
.page-front .concept__img-2 img {
  width: 100%;
}
.page-front .concept__img-2::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #f7eee6;
  transition: 1.6s;
}
.page-front .concept__img-2.is-active:before {
  width: 0;
}
.page-front .concept .shine {
  position: absolute;
  top: -13%;
  right: -10%;
  z-index: 2;
}
.page-front .thankyou {
  margin-top: 30px;
}
.page-front .thankyou .index {
  color: #fff;
  font-size: 5.6rem;
  font-weight: bold;
  letter-spacing: 5px;
  text-align: center;
}
.page-front .thankyou h3 {
  color: #0062ff;
  font-size: 1.7rem;
  text-align: center;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 2px;
}
.page-front .thankyou .text {
  text-align: center;
  margin: 40px 0;
  line-height: 2;
}
.page-front .thankyou img {
  margin: 80px 0;
  width: 100%;
}
.page-front .outline__bg-top {
  width: 100%;
}
.page-front .outline__bg-bottom {
  transform: rotate(180deg);
  width: 100%;
}
.page-front .outline {
  margin: -1px 0;
  position: relative;
  background: #383838;
}
.page-front .outline dl {
  width: 90%;
  margin: 0 auto;
}
.page-front .outline dl:nth-of-type(1) dt {
  margin: 0px auto 30px auto;
}
.page-front .outline dl dt {
  margin: 40px auto 30px auto;
  text-align: center;
  padding: 10px;
  font-size: 1.8rem;
  letter-spacing: 3px;
  font-weight: bold;
  background: #f7eee6;
  color: #383838;
}
.page-front .outline dl dd p {
  padding: 0 20px;
  line-height: 2;
  color: #f7eee6;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
}
.page-front .outline dl dd p span {
  font-size: 1.2rem;
}
.page-front .outline dl dd p.accent {
  font-size: 1.4rem;
}
.page-front .outline dl dd img {
  width: 90%;
  margin: 0 auto;
}
.page-front .outline dl dd a {
  width: 95%;
  margin: 30px auto;
  padding: 20px;
  color: #fff;
  font-weight: bold;
  background: #0162ff;
  text-align: center;
  font-size: 1.8rem;
  letter-spacing: 3px;
}
.page-front .time-table {
  width: 90%;
  margin: 0 auto;
  color: #f7eee6;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
}
.page-front .time-table tr {
  margin: 10px 0;
}
.page-front .time-table th {
  width: 100px;
}
.page-front .time-table td {
  padding: 10px 0;
}
.page-front .detail {
  margin-top: 30px;
}
.page-front .detail .movie-item {
  width: 90%;
  margin: 0 auto 50px auto;
}
.page-front .detail .movie-item img {
  width: 100%;
}
.page-front .detail .movie-item__contents {
  padding: 10px 18px 20px 18px;
  background: rgba(255, 255, 255, 0.5);
}
.page-front .detail .movie-item__contents h3 {
  font-weight: 400;
  margin: 13px 0;
}
.page-front .detail .movie-item__contents dl {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  margin: 2px 0;
}
.page-front .detail .movie-item__contents dl dt {
  width: fit-content;
}
.page-front .detail .movie-item__contents dl dd {
  flex: 0.98;
}
.page-front .detail .movie-item__contents p {
  font-size: 1.3rem;
  margin-top: 10px;
}
.page-front .detail .workshop {
  width: 90%;
  margin: 0 auto 50px auto;
}
.page-front .detail .workshop-item {
  width: 90%;
  margin: 80px auto;
  position: relative;
}
.page-front .detail .workshop-item .bubble {
  width: 70px;
  position: absolute;
  top: -25px;
  left: -16px;
}
.page-front .detail .workshop-item h3 {
  position: relative;
  margin-bottom: 10px;
  font-size: 1.7rem;
  margin-left: 20px;
  font-weight: 500;
  z-index: 2;
  letter-spacing: 0.5;
}
.page-front .detail .workshop-item p {
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.5);
}
.page-front .detail .workshop-item span {
  display: block;
  margin-top: 7px;
  line-height: 1.6;
  font-size: 1.3rem;
}
.page-front .detail .workshop-item .illust {
  position: absolute;
  bottom: -30px;
  right: 0;
  width: 60px;
}
.page-front .detail .kitchencar-item {
  margin: 50px 0;
  position: relative;
}
.page-front .detail .kitchencar-item__day {
  position: absolute;
  top: -12px;
  left: 0;
}
.page-front .detail .kitchencar-item__contents {
  padding: 20px 18px;
  background: rgba(255, 255, 255, 0.5);
}
.page-front .detail .kitchencar-item__shopname {
  display: inline-block;
  font-weight: bold;
}
.page-front .detail .kitchencar-item__sns {
  display: inline-block;
  vertical-align: sub;
  margin-left: 10px;
}
.page-front .detail .kitchencar-item__text {
  margin-left: 14px;
  margin-top: 10px;
}
.page-front .detail .entry-btn {
  position: relative;
  width: 214px;
  height: 214px;
  margin: 0 auto;
}
.page-front .detail .entry-btn__circle-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 92%;
  z-index: 3;
  animation: 11s linear infinite rotation;
}
.page-front .detail .entry-btn__circle {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  background: #fff;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  transition: 1s;
}
.page-front .detail .entry-btn__circle p {
  font-weight: bold;
  text-align: center;
  color: #0162ff;
  font-size: 2.2rem;
}
.page-front .detail .entry-btn__circle p span {
  display: block;
  font-size: 1.7rem;
}
.page-front .detail .entry-btn:hover .entry-btn__circle-text {
  animation: 1s both hover;
}
.page-front .detail .entry-btn:hover .entry-btn__circle {
  transform: scale(0.8);
  background: rgba(255, 255, 255, 0.8);
}
.page-front .kiss-pr {
  background: #000;
}
.page-front .kiss-pr h3 {
  margin-top: 100px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 1.9rem;
}
.page-front .kiss-pr__bg-top {
  width: 100%;
}
.page-front .kiss-pr__bg-bottom {
  width: 100%;
}
.page-front .kiss-pr__bg {
  width: 100%;
}
.page-front .kiss-pr__main {
  width: 90%;
  margin: 40px auto;
}
.page-front .kiss-pr .eigasailogo {
  width: 180px;
  margin: 10px 0 10px 18%;
}
.page-front .kiss-pr p {
  margin-left: 18%;
  color: #fff;
  font-size: 1.8rem;
  line-height: 2.8;
}
.page-front .kiss-pr iframe {
  display: block;
  width: 90%;
  height: 240px;
  margin: 40px auto 0 auto;
}/*# sourceMappingURL=style.css.map */