html {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  word-wrap: break-word;
}
@media print, screen and (min-width: 768px) and (max-width: 1600px) {
  html {
    font-size: 0.625vw;
  }
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 1.3020833333vw;
  }
}
html * {
  font-weight: inherit;
  box-sizing: border-box;
}

body {
  font-size: 1.6rem;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 2.8rem;
  }
}

header, main, section, aside, footer {
  width: 100%;
}

h1 img, h2 img, h3 img, h4 img, h5 img, h6 img {
  width: 100%;
  height: auto;
}
h1 img[src$=".svg"], h2 img[src$=".svg"], h3 img[src$=".svg"], h4 img[src$=".svg"], h5 img[src$=".svg"], h6 img[src$=".svg"] {
  max-width: 100%;
}

a {
  cursor: pointer;
  transition: all ease-in-out 0.3s;
}
a:hover {
  opacity: 0.7;
}

figure img {
  width: 100%;
  height: auto;
}
figure img[src$=".svg"] {
  max-width: 100%;
}

th {
  font-weight: normal;
}

#wrapper {
  overflow: clip;
}

.center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tal {
  text-align: left;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.fwb {
  font-weight: bold;
}

.noFind {
  text-align: center;
  width: 100%;
  margin-top: 1rem;
}
@media only screen and (max-width: 767px) {
  .noFind {
    margin-top: 2rem;
  }
}

.scrollbar {
  overflow: hidden scroll;
  padding-right: 1rem;
}
.scrollbar::-webkit-scrollbar {
  width: 1rem;
}
.scrollbar::-webkit-scrollbar-track {
  background-color: #E6E6E6;
}
.scrollbar::-webkit-scrollbar-thumb {
  background-color: #B3B3B3;
}

.flowLink {
  position: relative;
  padding-bottom: 0.4rem;
}
@media print, screen and (min-width: 768px) {
  .flowLink::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #064627;
    height: 2px;
    width: 100%;
    transform: scale(0);
    transform-origin: left center;
    transition: all ease 0.3s;
  }
}
.flowLink:hover::after {
  transform: scale(1);
}

.maker {
  display: inline;
  background: linear-gradient(transparent 70%, #fdd8d8 0%);
  padding: 0 0.4rem;
}

.scrollAnim {
  position: absolute;
  text-align: center;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  font-weight: bold;
  font-size: 1.2rem;
}
.scrollAnim a {
  position: relative;
  display: inline-block;
  padding-bottom: 8rem;
}
.scrollAnim a::before, .scrollAnim a::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  width: 0.3rem;
}
.scrollAnim a::before {
  height: 8rem;
  background-color: #064627;
  bottom: 0;
}
.scrollAnim a::after {
  height: 0rem;
  background-color: #fff;
  bottom: 8rem;
  -webkit-animation: scroll_anim 1.6s ease-in-out 0s infinite normal forwards;
          animation: scroll_anim 1.6s ease-in-out 0s infinite normal forwards;
}

@media print, screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
  #wrapper:not(.preload) * {
    transition: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@-webkit-keyframes scroll_anim {
  0% {
    height: 0;
    bottom: 8rem;
  }
  70% {
    height: 5rem;
  }
  80% {
    bottom: 0;
  }
  100% {
    height: 0;
    bottom: 0;
  }
}
@keyframes scroll_anim {
  0% {
    height: 0;
    bottom: 8rem;
  }
  70% {
    height: 5rem;
  }
  80% {
    bottom: 0;
  }
  100% {
    height: 0;
    bottom: 0;
  }
}
@-webkit-keyframes zoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.15);
  }
}
@keyframes zoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.15);
  }
}
.scrollItem, .scrollListItem {
  opacity: 0;
  transition: all ease-in-out 0.6s;
}
.scrollItem.scrollActive, .scrollListItem.scrollActive {
  opacity: 1 !important;
  transform: translate(0) scale(1) !important;
}

.fadein {
  opacity: 0;
  transform: scale(0.7);
}
.fadein.scrollActive {
  opacity: 1;
  transform: scale(1);
}

.fadeTop {
  transform: translateY(5rem);
}
.fadeTop.scrollActive {
  transform: translate(0);
}

.fadeRight {
  transform: translateX(5rem);
}
.fadeRight.scrollActive {
  transform: translate(0);
}

.fadeBottom {
  transform: translateY(-5rem);
}
.fadeBottom.scrollActive {
  transform: translate(0);
}

.fadeLeft {
  transform: translateX(-5rem);
}
.fadeLeft.scrollActive {
  transform: translate(0);
}

.fadeInLeft, .fadeInRight {
  position: relative;
}
.fadeInLeft::after, .fadeInRight::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  transition: all ease-in-out 0.6s;
  transform-origin: center right;
}
.fadeInLeft.scrollActive::after, .fadeInRight.scrollActive::after {
  transform: scaleX(0);
}

.fadeInRight::after {
  transform-origin: center left;
}

.header {
  position: absolute;
  top: 1.5rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 1600px;
  width: 96%;
  z-index: 99;
}
@media only screen and (max-width: 767px) {
  .header {
    width: 100%;
  }
}
.header.scrolled .header__inner {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  z-index: 100;
  border-top-right-radius: 0;
}
@media print, screen and (min-width: 768px) {
  .header.scrolled .header__inner .inner {
    width: 96%;
  }
}
.header__logo {
  position: absolute;
  top: 0;
  right: 0;
  width: 16rem;
}
@media only screen and (max-width: 767px) {
  .header__logo {
    right: 2rem;
  }
}
.header__tab {
  display: flex;
  align-items: flex-end;
}
.header__tab .item a {
  display: block;
  font-size: 1.4rem;
  color: #fff;
  font-weight: bold;
  text-align: center;
  width: 15.5rem;
  height: 5.5rem;
  line-height: 5.5rem;
  background-image: url("../img/header_tab01.png");
  background-size: cover;
}
@media only screen and (max-width: 767px) {
  .header__tab .item a {
    width: 20rem;
    height: 6rem;
    line-height: 6rem;
    font-size: 2rem;
  }
}
.header__tab .item.isShow a {
  width: 20rem;
  height: 7rem;
  line-height: 7rem;
  font-size: 2rem;
  position: relative;
  z-index: 1;
  opacity: 1 !important;
}
@media only screen and (max-width: 767px) {
  .header__tab .item.isShow a {
    width: 20rem;
    height: 6rem;
    line-height: 6rem;
  }
}
.header__tab .item.nodoame-ex {
  margin-left: -1rem;
}
.header__tab .item.nodoame-ex a {
  background-image: url("../img/header_tab02.png");
}
.header__inner {
  background-color: #064627;
  border-top-right-radius: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .header__inner {
    border-top-right-radius: 0;
  }
}
.header__inner.nodoame-ex {
  background-color: #744315;
}
.header__inner .inner {
  display: flex;
  align-items: center;
  height: 9rem;
  padding: 0 4rem;
  max-width: 1600px;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  .header__inner .inner {
    justify-content: space-between;
    height: 10rem;
  }
}
.header__inner .logo {
  width: 18rem;
}
@media only screen and (max-width: 767px) {
  .header__inner .logo {
    width: 45rem;
  }
}
@media only screen and (max-width: 767px) {
  .header .gnav {
    position: fixed;
    inset: 10rem 0 0 0;
    height: calc(100vh - 10rem);
    width: 100vw;
    background-color: #fff;
    padding: 5rem 0;
    overflow: hidden scroll;
    transition: all ease-in-out 0.6s;
    transform: translateX(100%);
    z-index: -1;
  }
  .header .gnav.active {
    transform: translateX(0);
  }
}
.header .gnav .purchase {
  display: none;
}
@media only screen and (max-width: 767px) {
  .header .gnav .purchase {
    display: block;
    padding: 5rem;
  }
}
.header .gnav__list {
  display: flex;
  gap: 5rem;
  margin-left: 5rem;
  background-color: #064627;
}
.header .gnav__list.nodoame-ex {
  background-color: #744315;
}
@media only screen and (max-width: 767px) {
  .header .gnav__list {
    display: block;
    margin-left: 0;
    padding: 0 5rem;
  }
}
.header .gnav__item a {
  position: relative;
  font-weight: bold;
  color: #fff;
  position: relative;
  font-weight: bold;
  text-align: center;
  letter-spacing: 2px;
}
@media only screen and (max-width: 767px) {
  .header .gnav__item a {
    display: block;
    text-align: left;
    height: 11rem;
    line-height: 11rem;
    font-size: 3.5rem;
    padding-left: 4.4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  }
}
.header .gnav__item a:hover::before {
  opacity: 1;
}
.header .gnav__item a::before {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: -1.8rem;
  width: 0.8rem;
  height: 0.8rem;
  margin: auto;
  background-color: #FDD000;
  border-radius: 50%;
  opacity: 0;
  transition: all ease-in-out 0.3s;
}
@media only screen and (max-width: 767px) {
  .header .gnav__item a::before {
    opacity: 1;
    inset: 0.3rem auto 0 0;
    width: 2.5rem;
    height: 2.5rem;
  }
}
.header__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
@media print, screen and (min-width: 768px) {
  .header__btn {
    display: none;
  }
}
.header__btn.active .bar:first-of-type {
  transform: translateY(1.5rem) rotate(30deg);
}
.header__btn.active .bar:nth-child(2) {
  transform: translateY(-50%);
  opacity: 0;
}
.header__btn.active .bar:last-of-type {
  transform: translateY(-1.2rem) rotate(-30deg);
  width: 100%;
}
.header__btn.active .menu {
  display: none;
}
.header__btn.active .close {
  display: block;
}
.header__btn .mark {
  position: relative;
  cursor: pointer;
  height: 3rem;
  width: 6rem;
  transition: all 0.6s ease-in-out;
}
.header__btn .bar {
  position: absolute;
  left: 0;
  background-color: #fff;
  height: 0.3rem;
  width: 100%;
  transition: all 0.6s ease-in-out;
}
.header__btn .bar:first-of-type {
  top: 0;
}
.header__btn .bar:nth-child(2) {
  top: 1.4rem;
}
.header__btn .bar:last-of-type {
  bottom: 0;
}
.header__btn .menu, .header__btn .close {
  font-weight: bold;
  display: inline-block;
  margin-top: 1rem;
  color: #fff;
}
.header__btn .menu {
  display: block;
}
.header__btn .close {
  display: none;
}

.main {
  line-height: 1.8;
  letter-spacing: 2px;
}

.wrapper {
  max-width: 1000px;
  width: 70%;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  .wrapper {
    width: 90%;
  }
}

.titleType01 {
  width: 20rem;
  margin: auto;
}

@media only screen and (max-width: 767px) {
  .modaal-video-wrap {
    margin: 0;
  }
}

#jabara .firstArea {
  padding: 17.5rem 0 10rem;
  background-image: url("../img/mv_bg.png");
  background-size: cover;
}
@media only screen and (max-width: 767px) {
  #jabara .firstArea {
    padding: 15.5rem 0 14rem;
  }
}
#jabara .about {
  padding-top: 12rem;
}
@media only screen and (max-width: 767px) {
  #jabara .about {
    padding-top: 16rem;
  }
}
#jabara .about .wrapper {
  max-width: 1200px;
  width: 80%;
}
@media only screen and (max-width: 767px) {
  #jabara .about .wrapper {
    width: 90%;
  }
}
#jabara .about__item {
  position: relative;
  padding: 4rem;
  margin-top: 2rem;
  background-color: #fff;
  border-radius: 2rem;
}
@media only screen and (max-width: 767px) {
  #jabara .about__item {
    margin: 6rem 0 0 -5vw;
    border-radius: 0 2rem 2rem 0;
  }
  #jabara .about__item:nth-child(even) {
    margin: 6rem -5vw 0 0;
    border-radius: 2rem 0 0 2rem;
  }
}
#jabara .about__item [class^=deco] {
  position: absolute;
  width: 25rem;
  z-index: 1;
}
#jabara .about__item .deco01, #jabara .about__item .deco03 {
  right: -14rem;
  bottom: 2rem;
}
@media only screen and (max-width: 767px) {
  #jabara .about__item .deco01, #jabara .about__item .deco03 {
    right: 0;
    bottom: -3rem;
  }
}
#jabara .about__item .deco02, #jabara .about__item .deco04 {
  left: -14rem;
  bottom: 2rem;
}
@media only screen and (max-width: 767px) {
  #jabara .about__item .deco02, #jabara .about__item .deco04 {
    left: 0;
    bottom: -3rem;
  }
}
#jabara .about__item .explain {
  text-align: right;
  margin-top: 1rem;
}
@media only screen and (max-width: 767px) {
  #jabara .about__item .explain {
    font-size: 2.6rem;
    margin-top: 2rem;
  }
}
#jabara .about__item .explain a {
  color: #068232;
  text-decoration: underline;
  order: 3;
}
#jabara .about__content {
  display: flex;
  justify-content: space-between;
  gap: 5rem;
}
@media only screen and (max-width: 767px) {
  #jabara .about__content {
    flex-wrap: wrap;
  }
}
#jabara .about__content .img01 {
  position: relative;
  top: 3rem;
  width: 40rem;
  margin: -5rem 0 0 -5rem;
  transform: scale(1.6);
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  #jabara .about__content .img01 {
    position: absolute;
    width: 22rem;
    margin: 0;
    top: -6rem;
    left: 3rem;
  }
}
#jabara .about__content .img01 + .texts {
  width: 57%;
}
@media only screen and (max-width: 767px) {
  #jabara .about__content .img01 + .texts {
    width: 100%;
  }
  #jabara .about__content .img01 + .texts .sub {
    margin-left: 27rem;
    white-space: nowrap;
  }
}
#jabara .about__content .img02 {
  width: 55%;
  order: 2;
}
@media only screen and (max-width: 767px) {
  #jabara .about__content .img02 {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 36%;
  }
}
#jabara .about__content .img03 {
  width: 24%;
}
@media only screen and (max-width: 767px) {
  #jabara .about__content .img03 {
    position: absolute;
    top: 2.5rem;
    left: 3rem;
    width: 12%;
  }
}
@media only screen and (max-width: 767px) {
  #jabara .about__content .img03 + .texts .sub {
    margin-left: 12rem;
    white-space: nowrap;
  }
}
#jabara .about__content .img04 {
  width: 75%;
  margin-top: 2rem;
  order: 2;
}
@media only screen and (max-width: 767px) {
  #jabara .about__content .img04 {
    width: 100%;
    margin-top: 0;
  }
}
#jabara .about__content .texts {
  position: relative;
  z-index: 2;
  flex-shrink: 2;
}
@media only screen and (max-width: 767px) {
  #jabara .about__content .texts {
    width: 100%;
  }
}
#jabara .about__content .texts .sub {
  color: #068232;
  font-weight: 900;
  font-size: 3rem;
}
@media only screen and (max-width: 767px) {
  #jabara .about__content .texts .sub {
    font-size: 3.5rem;
    margin-top: 1.5rem;
  }
}
#jabara .about__content .texts .sub strong {
  font-size: 3.5rem;
}
@media only screen and (max-width: 767px) {
  #jabara .about__content .texts .sub strong {
    font-size: 4.5rem;
  }
}
#jabara .about__content .texts .note {
  margin-top: 1.5rem;
  font-size: 2.2rem;
}
@media only screen and (max-width: 767px) {
  #jabara .about__content .texts .note {
    font-size: 3rem;
    margin-top: 3rem;
  }
}
#jabara .about__content .texts .note strong {
  font-size: 2.7rem;
  color: #068232;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  #jabara .about__content .texts .note strong {
    font-size: 3.5rem;
  }
}
#jabara .intro {
  position: relative;
  background-color: #FFF7CD;
  padding: 10rem 0 20rem;
}
#jabara .intro__bg {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
}
#jabara .intro .wrapper {
  position: relative;
  z-index: 2;
  margin-top: 5rem;
}
@media only screen and (max-width: 767px) {
  #jabara .intro .wrapper {
    width: 80%;
  }
}
#jabara .intro__item {
  position: relative;
  display: flex;
  justify-content: space-between;
}
#jabara .intro__item:last-child {
  margin-top: 10rem;
}
@media print, screen and (min-width: 768px) {
  #jabara .intro__item:last-child .intro__img {
    order: 2;
    width: 35%;
    margin: -2.5rem -5% 0 0;
  }
}
#jabara .intro__item .ame01 {
  position: absolute;
  width: 22rem;
  top: -18rem;
  left: -14rem;
}
@media only screen and (max-width: 767px) {
  #jabara .intro__item .ame01 {
    top: -8rem;
    left: -7rem;
  }
}
#jabara .intro__item .ame02 {
  position: absolute;
  width: 12rem;
  top: 20rem;
  right: -13rem;
}
@media only screen and (max-width: 767px) {
  #jabara .intro__item .ame02 {
    width: 8rem;
    top: 39rem;
    right: 0;
    left: -2rem;
  }
}
#jabara .intro__item .ame03 {
  position: absolute;
  width: 8rem;
  top: -10rem;
  left: -10rem;
}
@media only screen and (max-width: 767px) {
  #jabara .intro__item .ame03 {
    top: 37rem;
    left: 0;
    right: -3rem;
  }
}
#jabara .intro__item .ame04 {
  position: absolute;
  width: 22rem;
  bottom: -11rem;
  right: -14rem;
}
@media only screen and (max-width: 767px) {
  #jabara .intro__item .ame04 {
    top: -8rem;
    bottom: 0;
    right: -7rem;
  }
}
#jabara .intro__img {
  width: 30%;
}
@media only screen and (max-width: 767px) {
  #jabara .intro__img {
    width: 50%;
    margin: 0 auto 2rem;
  }
}
#jabara .intro__texts {
  width: 66%;
}
@media only screen and (max-width: 767px) {
  #jabara .intro__texts {
    width: 100%;
  }
}
#jabara .intro__texts .subtitle {
  margin-bottom: 3rem;
}
#jabara .intro__texts .text01 {
  font-size: 2.2rem;
}
@media only screen and (max-width: 767px) {
  #jabara .intro__texts .text01 {
    font-size: 3rem;
  }
}
#jabara .intro__about {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
}
#jabara .intro__about .icon {
  width: 15%;
}
@media only screen and (max-width: 767px) {
  #jabara .intro__about .icon {
    width: 34%;
  }
}
#jabara .intro__about .detial {
  width: 82%;
}
@media only screen and (max-width: 767px) {
  #jabara .intro__about .detial {
    width: 60%;
  }
}
#jabara .intro__about .text02 {
  margin-top: 1.5rem;
}
@media only screen and (max-width: 767px) {
  #jabara .intro__about .text02 {
    font-size: 2.5rem;
    width: 164%;
    margin: 4rem 0 0 -64%;
    padding: 3rem 4rem;
    background-color: rgba(255, 255, 255, 0.7);
  }
}
#jabara .movie {
  position: relative;
  padding: 10rem 0 100rem;
  background-image: url("../img/movie_bg.png");
  background-size: cover;
  background-position: center;
}
@media only screen and (max-width: 767px) {
  #jabara .movie {
    padding-bottom: 95rem;
  }
}
#jabara .movie .making {
  margin: 15rem 0 -80rem;
}
#jabara .movie .wrapper {
  position: relative;
  z-index: 2;
}
#jabara .movie .deco01,
#jabara .movie .deco05 {
  position: absolute;
  top: 100rem;
  left: -20%;
  width: 38rem;
  transition: all ease-in-out 3s;
}
#jabara .movie .deco01.scrollActive,
#jabara .movie .deco05.scrollActive {
  transform: translate(230rem, -35rem) !important;
}
@media only screen and (max-width: 767px) {
  #jabara .movie .deco01.scrollActive,
#jabara .movie .deco05.scrollActive {
    transform: translate(0) !important;
  }
}
@media print, screen and (min-width: 768px) {
  #jabara .movie .deco01,
#jabara .movie .deco05 {
    opacity: 1 !important;
  }
}
@media only screen and (max-width: 767px) {
  #jabara .movie .deco01,
#jabara .movie .deco05 {
    transform: translate(35rem, 35rem) !important;
    transition: all ease-in-out 0.6s;
    top: -10rem;
    left: -15rem;
  }
}
#jabara .movie .deco02 {
  position: absolute;
  top: 40rem;
  right: -20%;
  width: 28rem;
  transition: all ease-in-out 3s;
}
#jabara .movie .deco02.scrollActive {
  transform: translate(-230rem, -55rem) !important;
}
@media only screen and (max-width: 767px) {
  #jabara .movie .deco02.scrollActive {
    transform: translate(0) !important;
  }
}
@media print, screen and (min-width: 768px) {
  #jabara .movie .deco02 {
    opacity: 1 !important;
  }
}
@media only screen and (max-width: 767px) {
  #jabara .movie .deco02 {
    transform: translate(-35rem, 45rem) !important;
    transition: all ease-in-out 0.6s;
    top: -10rem;
    right: -10rem;
    width: 40rem;
  }
}
#jabara .movie .deco03,
#jabara .movie .deco06 {
  position: absolute;
  top: 100rem;
  right: -80rem;
  width: 33rem;
  transition: 5s;
}
#jabara .movie .deco03.scrollActive,
#jabara .movie .deco06.scrollActive {
  transform: translate(-305rem, -100rem) !important;
}
@media only screen and (max-width: 767px) {
  #jabara .movie .deco03.scrollActive,
#jabara .movie .deco06.scrollActive {
    transform: translate(0) !important;
  }
}
@media only screen and (max-width: 767px) {
  #jabara .movie .deco03,
#jabara .movie .deco06 {
    display: block;
    top: auto;
    bottom: 34rem;
    left: 2rem;
    width: 45rem;
  }
}
#jabara .movie .deco04 {
  position: absolute;
  right: -30rem;
  width: 30rem;
  width: 38rem;
  height: 80rem;
  top: 200rem;
  align-items: flex-end;
  transition: 3s;
  opacity: 1 !important;
}
#jabara .movie .deco04.scrollActive {
  transform: translate(-250rem, -20rem) !important;
}
@media only screen and (max-width: 767px) {
  #jabara .movie .deco04.scrollActive {
    transform: translate(0) !important;
  }
}
@media only screen and (max-width: 767px) {
  #jabara .movie .deco04 {
    display: block;
    top: auto;
    bottom: 60rem;
    right: -5rem;
    height: auto;
    width: 30rem;
  }
}
#jabara .movie .deco05 {
  top: 230rem;
}
@media only screen and (max-width: 767px) {
  #jabara .movie .deco05 {
    display: none;
  }
}
#jabara .movie__item01 {
  margin-top: 6rem;
  text-align: center;
}
#jabara .movie__title01 {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  color: #068232;
  width: 82rem;
  height: 9.2rem;
  padding-top: 0.5rem;
  margin: auto;
  background-image: url("../img/movie_sub01.png");
  background-size: cover;
}
@media only screen and (max-width: 767px) {
  #jabara .movie__title01 {
    background-image: url("../img/movie_sub01_sp.png");
    width: 100%;
    height: 9.1rem;
    padding-top: 0.5rem;
    font-size: 2.8rem;
    letter-spacing: 1px;
  }
}
#jabara .movie__title02 {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  color: #068232;
  height: 9.6rem;
  width: 32rem;
  padding-top: 1rem;
  margin: auto;
  background-image: url("../img/movie_sub02.png");
  background-size: cover;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  #jabara .movie__title02 {
    background-image: url("../img/movie_sub02_sp.png");
    width: 100%;
    height: 13rem;
    padding-top: 1.4rem;
    font-size: 2.8rem;
    letter-spacing: 1px;
  }
}
#jabara .movie__title02.lh2 {
  font-size: 2.2rem;
  line-height: 1.2;
  padding-top: 0.5rem;
}
@media only screen and (max-width: 767px) {
  #jabara .movie__title02.lh2 {
    font-size: 2.8rem;
    padding-top: 0.7rem;
  }
}
#jabara .movie__thumb {
  position: relative;
  margin-top: 1rem;
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 2rem;
  cursor: pointer;
  transition: all ease-in-out 0.7s;
}
#jabara .movie__thumb:hover {
  opacity: 0.7;
}
#jabara .movie__thumb a {
  position: relative;
  display: block;
}
#jabara .movie__thumb a::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background-image: url("../img/icon_play.png");
  background-size: cover;
  width: 15rem;
  height: 15rem;
}
#jabara .movie__thumb img {
  border-radius: 2rem;
}
#jabara .movie__thumb.type02 a {
  position: relative;
  display: block;
  padding-top: 183%;
}
#jabara .movie__thumb.type02 a img {
  border-radius: 2rem;
  position: absolute;
  inset: 0;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  height: 100%;
  width: 100%;
}
#jabara .movie__item02 {
  display: flex;
  justify-content: space-between;
  margin-top: 6rem;
}
@media only screen and (max-width: 767px) {
  #jabara .movie__item02 {
    flex-wrap: wrap;
  }
}
@media print, screen and (min-width: 768px) {
  #jabara .movie__item02 .swiper-wrapper {
    display: flex;
    justify-content: space-between;
  }
}
#jabara .movie__item02 .movie__thumb {
  padding: 1rem;
}
#jabara .movie__item02 .item {
  width: 32%;
}
@media only screen and (max-width: 767px) {
  #jabara .movie__item02 .item {
    opacity: 1 !important;
  }
}

#nodoame-ex .firstArea {
  padding: 17.5rem 0 0;
  background-image: linear-gradient(#90652f, #ad7e2f 14%, #f2ba2f);
}
@media only screen and (max-width: 767px) {
  #nodoame-ex .firstArea {
    padding: 15.5rem 0 0;
  }
}
#nodoame-ex .intro {
  padding: 10rem 0 25rem;
  background-image: url("../img/intro_bg.png");
  background-size: cover;
  background-position: center;
}
@media only screen and (max-width: 767px) {
  #nodoame-ex .intro {
    background-image: url("../img/intro_bg_sp.png");
  }
}
#nodoame-ex .intro__title {
  width: 48rem;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  #nodoame-ex .intro__title {
    width: 38rem;
  }
}
#nodoame-ex .intro__sub {
  background-color: #6D451F;
  width: 22vw;
  height: 8rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-radius: 0 5rem 5rem 0;
  margin-top: 5rem;
}
@media only screen and (max-width: 767px) {
  #nodoame-ex .intro__sub {
    width: 38vw;
    justify-content: center;
  }
}
#nodoame-ex .intro__sub figure {
  width: 14rem;
  margin-right: 6rem;
}
@media only screen and (max-width: 767px) {
  #nodoame-ex .intro__sub figure {
    margin-right: 0;
    height: 7rem;
  }
}
#nodoame-ex .intro .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  max-width: 1270px;
  width: 90%;
  margin-top: -3rem;
  padding: 6rem 8rem;
}
@media only screen and (max-width: 767px) {
  #nodoame-ex .intro .wrapper {
    display: block;
    padding: 0;
    margin-top: 3rem;
  }
}
#nodoame-ex .intro__textarea {
  position: absolute;
  inset: 0;
}
@media only screen and (max-width: 767px) {
  #nodoame-ex .intro__textarea {
    margin-left: -100%;
    width: 480%;
  }
}
#nodoame-ex .intro__product {
  position: relative;
  z-index: 2;
  width: 32%;
  margin-left: -5%;
}
@media only screen and (max-width: 767px) {
  #nodoame-ex .intro__product {
    width: 55%;
    margin: -2rem auto 0;
  }
}
#nodoame-ex .intro__texts {
  position: relative;
  z-index: 2;
  width: 72%;
}
@media only screen and (max-width: 767px) {
  #nodoame-ex .intro__texts {
    width: 100%;
  }
}
#nodoame-ex .intro__texts .title {
  width: 75%;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 767px) {
  #nodoame-ex .intro__texts .title {
    width: 90%;
    margin: 0 auto 5rem;
  }
}
#nodoame-ex .intro__texts .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
  #nodoame-ex .intro__texts .content {
    display: block;
    margin-top: 4rem;
  }
}
#nodoame-ex .intro__texts .content .sub {
  width: 28%;
}
@media only screen and (max-width: 767px) {
  #nodoame-ex .intro__texts .content .sub {
    width: 100%;
  }
}
#nodoame-ex .intro__texts .content .text {
  font-size: 1.8rem;
  width: 70%;
}
@media only screen and (max-width: 767px) {
  #nodoame-ex .intro__texts .content .text {
    width: 100%;
    font-size: 3rem;
    margin-top: 2rem;
  }
}

.mv {
  max-width: 1600px;
  width: 96%;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  .mv {
    width: 100%;
  }
}

.purchase {
  position: relative;
  padding: 8rem 0;
}
.purchase .wrapper {
  max-width: 1100px;
}
.purchase__site {
  width: 70rem;
  margin: 4rem auto 0;
}
@media only screen and (max-width: 767px) {
  .purchase__site {
    width: 60rem;
  }
}
.purchase__list {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  margin: 5rem auto 0;
}
.purchase__item {
  width: 30%;
}
@media only screen and (max-width: 767px) {
  .purchase__item {
    width: 32%;
  }
}
.purchase__item:first-child figcaption {
  color: #998241;
}
.purchase__item:nth-child(2) figcaption {
  color: #653C00;
}
.purchase__item figcaption {
  font-weight: bold;
  font-size: 3rem;
  color: #1E1E1E;
  white-space: nowrap;
  text-align: center;
  margin-top: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .purchase__item figcaption {
    font-size: 2rem;
  }
}

.footer {
  border-top: 2px solid #ccc;
}
.footer__sns {
  display: flex;
  justify-content: center;
  padding-top: 5rem;
}
.footer__sns .item {
  margin: 2rem;
  width: 11rem;
}
.footer__banner {
  display: flex;
  justify-content: space-between;
  justify-content: center;
  gap: 0 1.75rem;
  padding: 5rem 0;
  margin: auto;
  max-width: 1000px;
  width: 85%;
}
@media only screen and (max-width: 767px) {
  .footer__banner {
    display: block;
    width: 60%;
  }
}
.footer__banner .item {
  width: 48%;
}
@media only screen and (max-width: 767px) {
  .footer__banner .item {
    width: 100%;
  }
  .footer__banner .item:last-child {
    margin-top: 2rem;
  }
}
.footer__copy {
  font-family: "Noto Serif JP", serif;
  border-top: 1px solid #D2D2D2;
  padding: 3rem;
  text-align: center;
}

.modaal-container {
  max-width: 1300px;
}
.modaal-container .modaal-content {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  background: #000;
  margin-left: auto;
  margin-right: auto;
}
.modaal-container .modaal-content iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modaal-video-container {
  aspect-ratio: 9/16;
  max-height: 90vh;
  height: 90rem;
}
@media only screen and (max-width: 767px) {
  .modaal-video-container {
    padding-bottom: 163.25%;
  }
}
.modaal-video-container.is-wide-frame {
  max-width: 1300px;
  max-height: 85vh;
  aspect-ratio: 16/9;
}
@media only screen and (max-width: 767px) {
  .modaal-video-container.is-wide-frame {
    width: 100%;
    padding: 0;
    height: auto;
  }
}
/*# sourceMappingURL=base.css.map */