@charset "utf-8";

:root {
  --main-color: #c83b26;
}

:root {
  --sub-color: #e8c949;
}

:root {
  --text-color: #7e292b;
}

:root {
  --title-font: 'M PLUS Rounded 1c', "din-2014", sans-serif;
}

:root {
  --text-font: m-plus-rounded-1c, sans-serif;
}

section {
  display: block;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.inner {
  width: 85%;
  max-width: 1000px;
  position: relative;
  margin: 0 auto;
}

p {
  font-size: 16px;
  line-height: 2.6;
}

.title {
  font-family: var(--title-font);
  font-size: 56px;
  font-weight: bold;
  letter-spacing: 0.2em;
  text-align: center;
  color: var(--main-color);
  position: relative;
  margin: 0 0 40px;
}

.title::after {
  display: block;
  content: "";
  width: 48px;
  height: 3px;
  background: var(--sub-color);
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.subtitle {
  font-size: 36px;
  font-weight: normal;
  line-height: 1.6;
  letter-spacing: 0.14em;
  color: var(--main-color);
  margin: 0 0 40px;
}

.title+.subtitle {
  font-size: 24px;
  letter-spacing: 0.6em;
  text-align: center;
}

@media screen and (max-width: 820px) {
  section {
    padding: 120px 0;
  }

  .inner {
    width: 90%;
    max-width: 670px;
  }

  p {
    font-size: 24px;
  }

  .title {
    font-size: 80px;
  }

  .title+.subtitle {
    font-size: 35px;
    letter-spacing: 0.7em;
    margin: 0 0 250px;
  }
}

@media screen and (max-width: 520px) {
  section {
    padding: 60px 0;
  }

  p {
    font-size: 15px;
  }

  .title {
    font-size: 40px;
    margin: 0 0 30px;
  }

  .title::after {
    width: 36px;
    height: 2px;
    bottom: -15px;
  }

  .title+.subtitle {
    font-size: 17px;
    margin: 0 0 110px;
    font-weight: bold;
  }

  .subtitle {
    font-size: 18px;
  }
}

/*=========================================================================================*/
/*header*/
header h1 {
  width: 150px;
  height: 140px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

header h1 a {
  display: block;
}

/**/
.pagetop {
  display: block;
  width: 70px;
  height: 70px;
  position: fixed;
  right: 30px;
  bottom: 140px;
  z-index: 1000;
  opacity: 0;
  transition: .5s;
}

.movement .pagetop {
  opacity: 1;
  bottom: 150px;
}

/**/
.formBtn, .formBtn.soon {
  padding: 24px 0;
  background: var(--main-color);
  position: fixed;
  bottom: 0;
  z-index: 1000;
}

.formBtn a {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 394px;
  height: 74px;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.2em;
  color: var(--main-color);
  border-radius: 50px;
  background: var(--sub-color);
  box-shadow: 5px 6px 0 #ec9845;
  margin: 0 auto;
  position: relative;
  opacity: 1;
  transition: opacity .5s;
}

.formBtn a:hover {
  opacity: .8;
}

.formBtn a::before {
  display: block;
  content: "";
  width: 60px;
  height: 60px;
  background: center / contain no-repeat url("../img/deco-btn.png");
  position: absolute;
  top: -10px;
  left: 20px;
}

.formBtn a::after {
  display: inline-block;
  content: "〉";
  width: 20px;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}
.formBtn span {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 394px;
  height: 74px;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.2em;
  color: #fff;
  border-radius: 50px;
  background: #bababa;
  box-shadow: 5px 6px 0 #9B9B9B;
  margin: 0 auto;
  position: relative;
  text-align:center;
}

.formBtn.btn-off span{
  font-weight: 500;
  letter-spacing: 0.12em;
}

@media screen and (max-width: 820px) {
  .formBtn {
    padding: 30px 0;
  }

  .formBtn.btn-off span{
    max-width: 540px;
    height: 105px;
    font-size: 26px;
  }

  .formBtn.btn-off p span {
    font-size: 15px;
  }

  .pagetop {
    width: 100px;
    height: 100px;
    bottom: 175px;
  }

  .movement .pagetop {
    bottom: 185px;
  }
}

@media screen and (max-width: 520px) {
  header h1 {
    width: 83px;
    height: 83px;
  }

  .formBtn.btn-off{
    padding: 25px;
  }

  .formBtn.btn-off span{
    max-width: 270px;
    height: 52px;
    font-size: 15px;
    padding: 25px 0;
  }
  .pagetop {
    width: 50px;
    height: 50px;
    right: 5px;
    bottom: 70px;
  }
  .movement .pagetop {
    bottom: 90px;
  }
}
@media screen and (max-width: 375px) {

  .formBtn.soon p {
    max-width: 330px;
    font-size: 24px;
  }

}

/*=========================================================================================*/
/*fv*/
#fv {
  padding: 60px 0;
  background: #ffe778;
}

#fv::before {
  display: block;
  content: "";
  width: 893px;
  height: 893px;
  background: #FFF;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#fv .inner {
  display: flex;
}

/**/
#fv .center img:nth-child(1) {
  display: block;
  width: 288px;
  margin: 0 auto;
}

#fv .center img:nth-child(2) {
  display: block;
  width: 552px;
  margin: 0 auto 30px;
}

#fv .center img:nth-child(3) {
  display: block;
  width: 415px;
  margin: 0 auto 35px;
}

#fv .center p {
  font-size: 15px;
  font-weight: normal;
  line-height: 2;
  text-align: center;
  letter-spacing: 2px;
}

/*あしらい*/
#fv .deco {
  width: 0;
  height: auto;
  position: relative;
}

#fv .deco span {
  display: block;
  position: absolute;
}

#fv .left span:nth-child(1) {
  width: 256px;
  height: 257px;
  top: 0;
  left: -85px;
}

#fv .left span:nth-child(2) {
  width: 250px;
  height: 236px;
  bottom: 35px;
  left: -75px;
}

#fv .right span:nth-child(1) {
  width: 267px;
  height: 229px;
  top: 40px;
  right: -25px;
}

#fv .right span:nth-child(2) {
  width: 202px;
  height: 161px;
  bottom: 95px;
  right: 0;
}

#fv .deco span img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#fv .left span:nth-child(1) img {
  animation: size .7s ease-in-out .2s 1 normal forwards;
}

#fv .left span:nth-child(2) img {
  animation: size .7s ease-in-out .4s 1 normal forwards;
}

#fv .left span:nth-child(3) img {
  animation: size .7s ease-in-out .3s 1 normal forwards;
}

#fv .left span:nth-child(4) img {
  animation: size .7s ease-in-out .5s 1 normal forwards;
}

#fv .right span:nth-child(1) img {
  animation: size .7s ease-in-out .3s 1 normal forwards;
}

#fv .right span:nth-child(2) img {
  animation: size .7s ease-in-out .5s 1 normal forwards;
}

#fv .right span:nth-child(3) img {
  animation: size .7s ease-in-out .4s 1 normal forwards;
}

@keyframes size {
  0% {
    width: 0;
    opacity: 0;
  }

  90% {
    width: 102%;
    opacity: 1;
  }

  100% {
    width: 100%;
  }
}

@media screen and (max-width: 820px) {
  #fv {
    padding: 130px 0 110px;
  }

  #fv::before {
    width: 1220px;
    height: 1220px;
    top: 52%;
  }

  #fv .center img:nth-child(1) {
    width: 340px;
    margin: 0 auto 10px;
  }

  #fv .center img:nth-child(2) {
    width: 100%;
    margin: 0 auto 40px;
  }

  #fv .center img:nth-child(3) {
    width: 510px;
  }

  #fv .center p {
    font-size: 28px;
    letter-spacing: 0.2em;
    line-height: 1.7;
  }

  /*あしらい*/
  #fv .left span:nth-child(1) {
    width: 50px;
    height: 67px;
    top: -95px;
    left: 125px;
  }

  #fv .left span:nth-child(2) {
    width: 90px;
    height: 175px;
    bottom: 365px;
    left: -50px;
  }

  #fv .left span:nth-child(3) {
    width: 130px;
    height: 92px;
    bottom: 155px;
    left: -55px;
  }

  #fv .left span:nth-child(4) {
    width: 60px;
    height: 64px;
    bottom: -50px;
    left: -20px;
  }

  /**/
  #fv .right span:nth-child(1) {
    width: 260px;
    height: 251px;
    top: -90px;
    right: -90px;
  }

  #fv .right span:nth-child(2) {
    width: 160px;
    height: 156px;
    bottom: 310px;
    right: -100px;
  }

  #fv .right span:nth-child(3) {
    width: 100px;
    height: 185px;
    bottom: 10px;
    right: -50px;
  }
}

@media screen and (max-width: 520px) {
  #fv {
    padding: 65px 0 40px;
  }

  #fv::before {
    width: 620px;
    height: 620px;
    top: 52.5%;
  }

  #fv .center img:nth-child(1) {
    width: 180px;
  }

  #fv .center img:nth-child(2) {
    margin: 0 auto 20px;
  }

  #fv .center img:nth-child(3) {
    width: 280px;
    margin: 0 auto 25px;
  }

  #fv .center p {
    font-size: 13px;
    line-height: 1.6;
  }

  /*あしらい*/
  #fv .left span:nth-child(1) {
    width: 20px;
    height: 25px;
    top: -40px;
    left: 70px;
  }

  #fv .left span:nth-child(2) {
    width: 40px;
    height: 77px;
    bottom: 180px;
    left: -20px;
  }

  #fv .left span:nth-child(3) {
    width: 65px;
    height: 46px;
    bottom: 75px;
    left: -25px;
  }

  #fv .left span:nth-child(4) {
    width: 30px;
    height: 31px;
    bottom: -10px;
    left: -10px;
  }

  /**/
  #fv .right span:nth-child(1) {
    width: 120px;
    height: 112px;
    top: -38px;
    right: -38px;
  }

  #fv .right span:nth-child(2) {
    width: 80px;
    height: 78px;
    bottom: 180px;
    right: -40px;
  }

  #fv .right span:nth-child(3) {
    width: 50px;
    height: 91px;
    bottom: 40px;
    right: -20px;
  }
}

/*=========================================================================================*/
/*about*/
#about {
  background: #f3f2f3;
}

#about .inner_wrap {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
}

#about .inner {
  justify-content: center;
  padding: 65px 0 90px;
  background: #FFF;
}

#about .inner::before {
  display: block;
  content: "";
  width: 85px;
  height: 105px;
  background: center / contain no-repeat url("../img/deco-about01.png");
  position: absolute;
  top: 100px;
  left: -40px;
}

#about .inner::after {
  display: block;
  content: "";
  width: 213px;
  height: 173px;
  background: center / contain no-repeat url("../img/deco-about02.png");
  position: absolute;
  bottom: -30px;
  right: -50px;
}

#about .inner_wrap::before {
  display: block;
  content: "";
  width: 100px;
  height: 173px;
  background: center / contain no-repeat url("../img/deco-about03.png");
  position: absolute;
  top: 0;
  right: 62px;
  z-index: 1;
}

#about h2 {
  font-family: var(--title-font);
  font-size: 81px;
  font-weight: bold;
  letter-spacing: 0.18em;
  color: #ffe778;
  position: absolute;
  top: -35px;
  left: -24px;
}

#about img {
  max-width: 293px;
  margin: 0 60px 0 0;
}

#about img+div {
  max-width: 458px;
}

#about p {
  font-size: 16px;
  font-weight: normal;
  line-height: 2;
  letter-spacing: 0.15em;
  text-align: justify;
}

@media screen and (max-width: 820px) {
  #about {
    padding: 120px 0 100px;
  }

  #about .inner {
    padding: 80px 0;
  }

  #about .inner::before {
    width: 65px;
    height: 250px;
    background: center / contain no-repeat url(../img/deco-about01-sp.png);
    position: absolute;
    top: -65px;
    left: 40px;
  }

  #about .inner::after {
    background: center / contain no-repeat url(../img/deco-about02-sp.png);
    bottom: -70px;
    right: 30px;
  }

  #about h2 {
    width: 345px;
    top: -36px;
    left: 50%;
    transform: translateX(-50%) !important;
  }

  #about .subtitle {
    text-align: center;
    margin: 0 0 50px;
    position: relative;
  }

  #about .subtitle::before {
    display: block;
    content: "";
    width: 130px;
    height: 50px;
    background: center / contain no-repeat url(../img/deco-about03-sp.png);
    position: absolute;
    top: 105px;
    right: -10px;
  }

  #about .inner_wrap::before {
    display: none;
  }

  #about img {
    max-width: 330px;
    margin: 0 auto 60px;
  }

  #about img+div {
    max-width: 550px;
  }

  #about p {
    width: 86%;
    font-size: 28px;
    letter-spacing: 0.04em;
    margin: 0 auto;
  }
}

@media screen and (max-width: 520px) {
  #about {
    padding: 65px 0 50px;
  }

  #about .inner {
    padding: 40px 0 60px;
  }

  #about .inner::before {
    width: 30px;
    height: 110px;
    top: -29px;
    left: 15px;
  }

  #about .inner::after {
    width: 100px;
    width: 100px bottom: -75px;
    right: 10px;
  }

  #about h2 {
    width: fit-content;
    font-size: 40px;
    top: -20px;
  }

  #about .subtitle {
    margin: 0 0 30px;
    font-weight: bold;
  }

  #about .subtitle::before {
    width: 65px;
    height: 25px;
    top: 50px;
    right: -5px;
  }

  #about img+div {
    width: 100%;
  }

  #about img {
    width: 170px;
    margin: 0 auto 30px;
  }

  #about p {
    font-size: 14px;
  }
}

/*=========================================================================================*/
/*flow*/
#flow {
  padding: 130px 0 70px;
}

#flow::before {
  display: block;
  content: "";
  width: 75%;
  height: 403px;
  background: var(--main-color);
  position: absolute;
  bottom: 0;
  left: 0;
}

#flow::after {
  display: block;
  content: "";
  width: 25%;
  height: 403px;
  background: var(--sub-color);
  position: absolute;
  bottom: 0;
  right: 0;
}

#flow .inner {
  position: relative;
  z-index: 1;
}

#flow .inner::before {
  display: block;
  content: "";
  width: 118px;
  height: 103px;
  background: center / contain no-repeat url("../img/deco-flow01.png");
  position: absolute;
  top: 100px;
  right: -40px;
}

#flow .inner::after {
  display: block;
  content: "";
  width: 69px;
  height: 6px;
  background: center / contain no-repeat url("../img/deco-flow02.png");
  position: absolute;
  bottom: 100px;
  left: -25px;
}

@media screen and (max-width: 820px) {
  #flow {
    padding: 130px 0 85px;
  }

  #flow::before,
  #flow::after {
    height: 1060px;
  }
}

@media screen and (max-width: 520px) {
  #flow {
    padding: 70px 0 30px;
    background-image: linear-gradient(0deg, transparent calc(100% - 1px), rgba(240, 240, 240, 0.20) calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), rgba(240, 240, 240, 0.20) calc(100% - 1px));
    background-size: 20px 20px;
    background-repeat: repeat;
    background-position: center center;
  }

  #flow::before,
  #flow::after {
    height: 525px;
  }

  #flow .inner::after {
    bottom: 20px;
  }
}

/**/
#flow ul {
  align-items: flex-start;
  padding: 60px 20px;
  background: #f3f2f3;
  position: relative;
  margin: 0 auto;
}

#flow ul::before {
  display: block;
  content: "";
  width: 292px;
  height: 214px;
  background: center / contain no-repeat url("../img/flow-image.png");
  position: absolute;
  top: -214px;
  left: 0;
}

#flow ul li {
  width: 25%;
  max-width: 213px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  margin: 0 70px 0 0;
  position: relative;
}

#flow ul li:last-child {
  margin: 0;
}

#flow ul li::after {
  display: block;
  content: "";
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 18px solid var(--text-color);
  position: absolute;
  top: 60px;
  right: -40px;
}

#flow ul li:last-child::after {
  display: none;
}

#flow ul li img {
  display: block;
  width: 130px;
  height: 130px;
  margin: 0 auto 20px;
}

/**/
.tag {
  display: block;
  width: fit-content;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.2em;
  color: #FFF;
  padding: 6px 12px 5px;
  background: var(--main-color);
  margin: 0 auto 23px;
}

.tag span {
  font-size: 18px;
  font-weight: normal;
}

.tag+.subtitle {
  font-size: 18px;
  text-align: center;
  margin: 0 0 20px;
}

li:last-child .tag+.subtitle {
  margin: -10px 0 10px;
}

#flow ul .subtitle+p {
  font-size: 13px;
  font-weight: normal;
  line-height: 2;
  letter-spacing: 0.04em;
  color: #3a374c;
}

#flow ul li:first-of-type .subtitle+p,
#flow ul li:nth-of-type(2) .subtitle+p {
  padding-top: 12px;
}

@media screen and (max-width: 820px) {
  #flow .inner::before {
    display: none;
  }

  #flow ul::before {
    width: 453px;
    background: center / contain no-repeat url("../img/flow-image-sp.png");
    left: 50%;
    transform: translateX(-50%);
  }

  #flow ul li {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto 100px;
  }

  #flow ul li::after {
    border-top: 30px solid #6b6b6b;
    border-right: 20px solid transparent;
    border-left: 20px solid transparent;
    border-bottom: none;
    top: auto;
    bottom: -60px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  #flow ul li div {
    width: calc(100% - 280px);
  }

  #flow ul li img {
    width: 160px;
    height: 160px;
    margin: 0 30px 0 0;
  }

  .tag {
    margin: 0 0 20px;
  }

  .tag+.subtitle {
    font-size: 32px;
    text-align: left;
    margin: 0 0 10px;
  }

  li:last-child .tag+.subtitle {
    margin: 0 0 10px;
  }

  #flow ul .subtitle+p {
    font-size: 24px;
    letter-spacing: 0.08em;
  }
}

@media screen and (max-width: 520px) {
  #flow ul {
    padding: 35px 0;
  }

  #flow ul::before {
    width: 200px;
    height: 95px;
    top: -95px;
  }

  #flow ul li {
    margin: 0 auto 50px;
  }

  #flow ul li::after {
    border-top: 15px solid #6b6b6b;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    bottom: -30px;
  }

  #flow ul li div {
    width: calc(100% - 150px);
  }

  #flow ul li img {
    width: 80px;
    height: 80px;
    margin: 0 15px 0 0;
  }

  .tag {
    font-size: 10px;
    letter-spacing: 0.1em;
    padding: 3px 10px;
    margin: 0 0 8px;
  }

  .tag span {
    font-size: 11px;
  }

  .tag+.subtitle {
    font-size: 16px;
    margin: 0 0 5px;
  }

  li:last-child .tag+.subtitle {
    margin: 0 0 5px;
  }

  #flow ul .subtitle+p {
    font-size: 12px;
  }
}

/*=========================================================================================*/
/*movie*/
#movie {
  padding: 180px 0 80px;
}

#movie .inner::before {
  display: block;
  content: "";
  width: 150px;
  height: 52px;
  background: center / contain no-repeat url("../img/deco-movie01.png");
  position: absolute;
  top: 24px;
  left: 80px;
}

#movie .inner::after {
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  background: center / contain no-repeat url("../img/deco-movie02.png");
  position: absolute;
  top: 5px;
  right: 290px;
}

#movie ul {
  max-width: 968px;
  margin: 0 auto;
  position: relative;
}

#movie ul::before {
  display: block;
  content: "";
  width: 292px;
  height: 214px;
  background: center / contain no-repeat url("../img/movie-image.png");
  position: absolute;
  top: -214px;
  right: -40px;
}

#movie ul li {
  max-width: 876px;
  background: #ffed9f;
  margin: 0 auto 64px 0;
  position: relative;
}

#movie ul li:nth-child(even) {
  margin: 0 0 64px auto;
}

#movie ul li:last-child {
  margin: 0 auto;
}

@media screen and (max-width: 820px) {
  #movie {
    padding: 180px 0 125px;
    background-image: linear-gradient(0deg, transparent calc(100% - 1px), rgba(240, 240, 240, 0.20) calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), rgba(240, 240, 240, 0.20) calc(100% - 1px));
    background-size: 20px 20px;
    background-repeat: repeat;
    background-position: center center;
  }

  #movie .inner::before,
  #movie .inner::after {
    display: none;
  }

  #movie .title+.subtitle {
    margin: 0 0 200px;
  }

  #movie ul {
    width: 100%;
  }

  #movie ul::before {
    width: 520px;
    height: 172px;
    background: center / contain no-repeat url("../img/movie-image-sp.png");
    top: -172px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  #movie ul li {
    width: 100%;
  }

  #movie ul li:nth-child(even),
  #movie ul li:nth-child(odd) {
    margin: 0 auto 170px;
  }
}

@media screen and (max-width: 520px) {
  #movie {
    padding: 75px 0 125px;
  }

  #movie .title+.subtitle {
    margin: 0 0 115px;
  }

  #movie ul::before {
    width: 260px;
    height: 86px;
    top: -86px;
    left: 58%;
  }

  #movie ul li:nth-child(even),
  #movie ul li:nth-child(odd) {
    margin: 0 auto 90px;
  }
}

/**/
.label {
  display: flex;
  align-items: center;
  width: fit-content;
  height: 46px;
  color: #FFF;
  background: #FFF;
  position: absolute;
  top: 17px;
  left: -20px;
}

.label p {
  letter-spacing: 2.4px;
}

.label p:nth-child(1) {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100px;
  height: 46px;
  font-size: 24px;
  background: #96776e;
  padding: 0 10px 0 0;
  position: absolute;
  top: 0;
  left: 0;
}

.label p:nth-child(1)::after {
  display: block;
  content: "";
  border-top: 23px solid transparent;
  border-bottom: 23px solid transparent;
  border-left: 16px solid #96776e;
  position: absolute;
  top: 0;
  right: -16px;
}

.label p:nth-child(1) span {
  font-size: 17px;
}

.label p:nth-child(1) span {
  padding-top: 8px;
}

.label p:nth-child(2) {
  font-size: 17px;
  line-height: 1.2;
  color: #96776e;
  padding: 0 20px 0 130px;
}

li:nth-child(1) .label {
  color: var(--main-color);
}

li:nth-child(1) .label p:nth-child(1) {
  background: #ffe055;
  color: #dc6c2b;
}

li:nth-child(1) .label p:nth-child(1)::after {
  border-left: 16px solid #ffe055;
}

li:nth-child(1) .label p:nth-child(2) {
  color: #dc6c2b;
}

li:nth-child(4) .label p:nth-child(2) {
  padding: 0 10px 0 122px;
  letter-spacing: 1.8px;
}

/**/
#movie ul h3 {
  display: flex;
  align-items: center;
  height: 80px;
  font-size: 22px;
  font-weight: normal;
  line-height: 1.6;
  letter-spacing: 0.2em;
  color: #FFF;
  background: var(--main-color);
}

#movie ul h3 span {
  font-size: 16px;
}

#movie ul li:nth-child(1) h3 {
  padding-left: 282px;
}

#movie ul li:nth-child(2) h3 {
  padding-left: 291px;
}

#movie ul li:nth-child(3) h3 {
  padding-left: 370px;
}

#movie ul li:nth-child(4) h3 {
  padding-left: 386px;
}

#movie ul li:nth-child(5) h3 {
  padding-left: 386px;
  line-height: 1.2;
}

/**/
.box {
  max-width: 846px;
  padding: 50px 0;
  position: relative;
}

.box p {
  width: calc(100% - 460px);
  max-width: 340px;
  font-size: 17px;
  letter-spacing: 0.15em;
  font-weight: normal;
  color: #3a374c;
  text-align: justify;
}

.box a {
  display: block;
  width: 460px;
  position: relative;
  top: 0;
  transition: all .3s;
}

.box a:hover {
  top: -7px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
  opacity: unset;
}

li:nth-child(odd) .box {
  margin: 0 0 0 auto;
  right: -40px;
}

li:nth-child(even) .box {
  flex-direction: row-reverse;
  margin: 0 auto 0 0;
  left: -40px;
}

@media screen and (max-width: 820px) {
  .label {
    height: 70px;
    top: -28px;
    left: -10px;
    background: #f9f4d4;
  }

  .label p:nth-child(1) {
    width: 134px;
    height: 70px;
    font-size: 34px;
    /* font-weight: normal; */
  }

  .label p:nth-child(1)::after {
    border-top: 35px solid transparent;
    border-bottom: 35px solid transparent;
    right: -15.48px;
  }

  .label p:nth-child(1) span {
    font-size: 26px;
    padding-top: 10px;
  }

  .label p:nth-child(2) {
    font-size: 26px;
    font-weight: normal;
    padding: 0 20px 0 165px;
  }

  #movie ul h3 {
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    height: 220px;
    font-size: 38px;
    letter-spacing: 0.2em;
    text-align: center;
    padding: 18px 0 0;
  }

  #movie ul h3 span {
    font-size: 38px;
  }

  #movie ul li:nth-child(1) h3,
  #movie ul li:nth-child(2) h3,
  #movie ul li:nth-child(3) h3,
  #movie ul li:nth-child(4) h3,
  #movie ul li:nth-child(5) h3 {
    padding-left: 0;
  }

  .box {
    padding: 30px 0;
    display: block;
  }

  .box p {
    width: 100%;
    max-width: 100%;
    font-size: 28px;
    line-height: 2;
    padding: 0 40px;
    margin: 0 auto -80px;
  }

  .box a {
    width: 100%;
    padding: 0 60px;
    position: relative;
    bottom: -110px;
    top: auto;
  }

  li:nth-child(odd) .box {
    margin: 0 auto;
    right: 0;
  }

  li:nth-child(even) .box {
    margin: 0 auto;
    left: 0;
  }
}

@media screen and (max-width: 520px) {
  .label {
    height: 36px;
    top: -20px;
    left: -10px;
    background: #f9f4d4;
    font-weight: bold;
  }

  .label p:nth-child(1) {
    width: 65px;
    height: 36px;
    font-size: 17px;
    padding: 0 2px 0 0;
  }

  .label p:nth-child(1)::after {
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    right: -16px;
  }

  .label p:nth-child(1) span {
    font-size: 13px;
    padding-top: 5px;
  }

  .label p:nth-child(2) {
    font-size: 13px;
    padding: 0 10px 0 86px !important;
    letter-spacing: 1.6px;
  }

  #movie ul h3 {
    height: 95px;
    font-size: 18px;
    letter-spacing: 0.3em;
    padding: 15px 0 0;
    line-height: 1.4 !important;
  }

  #movie ul h3 span {
    font-size: 16px;
  }

  #movie ul li:last-of-type h3 {
    letter-spacing: 0.18em
  }

  .box {
    padding: 18px 0;
  }

  .box p {
    font-size: 14px;
    padding: 0 20px;
    margin: 0 auto -30px;
  }

  .box a {
    width: 100%;
    padding: 0 30px;
    bottom: -40px;
  }

  .box a:hover {
    top: unset;
    box-shadow: unset;
  }
}
}

/*=========================================================================================*/
/*fv*/
#footer, .footerForm {
  width: 100%;
  color: #000;
  padding: 0 0 129px;
  z-index: 1;
  font-size: 1.4rem;
  position: relative;
}

.footerForm {
  padding: 0;
}

#footer ul,
#footer a,
#footer p,
.footerForm ul,
.footerForm a,
.footerForm p {
  font-family: 'Noto Sans JP', sans-serif !important;
  color: #000;
}

.footerForm ul,
.footerForm a,
.footerForm p {
  color: #000;
}

.footerInfolinkItem:not(:last-child) a:hover {
  color: #008967 !important;
}

#footer {
  position: relative;
}

#footer::after {
  display: block;
  content: "";
  width: 370px;
  height: 215px;
  background: center / contain no-repeat url("../img/footer-image.png");
  position: absolute;
  top: -215px;
  left: 120px;
}

@media screen and (max-width: 820px) {
  #footer::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 520px) {
  #footer::after {
    width: 320px;
    height: 184px;
    top: -184px;
    left: 57%;
  }
}

/*========= モーダル表示のためのCSS ===============*/
/*全て共通：hideエリアをはじめは非表示*/
.hide-area {
  display: none;
}

.modal {
  display: block;
  position: fixed;
  top: 0;
  height: 100vh;
  width: 100%;
  opacity: 0;
  /*実際に透明で存在しているからサイズが確定する*/
  pointer-events: none;
  /*触れないように*/
  transition: opacity 1s;
  /*1秒フェード*/
}

.modal.open {
  opacity: 1;
  pointer-events: auto;
}

.modaal-close:focus, .modaal-close:hover {
  background: none !important;
}

/*ポップアップ共通css*/
.modaal-container {
  width: 90% !important;
  max-width: 860px !important;
}

.modaal-content-container {
  overflow: scroll;
  padding: 0 !important;
}

.modaal-close {
  position: absolute !important;
  top: 0 !important;
  right: -70px !important;
}

.modaal-close:after, .modaal-close:before {
  width: 2px !important;
  height: 50px !important;
  background: #000 !important;
  top: -10px !important;
  left: 22px !important;
}

video {
  width: 100%;
}

@media screen and (max-width: 820px) {
  .popInner {
    max-width: 100%;
  }

  .modaal-close {
    top: -50px !important;
    right: 0 !important;
  }
}

@media screen and (max-width: 820px) {
  .modaal-close:after, .modaal-close:before {
    height: 25px !important;
    top: 15px !important;
    left: 40px !important;
  }
}

/*========= お申込みボタン_footer調整 ===============*/
.footer_top {
  height: 475px;
}

@media screen and (max-width: 820px) {
  .footer_top {
    height: 570px;
  }
}

@media screen and (max-width: 520px) {
  .footer_top {
    height: 520px;
  }
}

/*=========================================================================================*/
/*=========================================================================================*/
/*下層ページ*/
#fvPage {
  padding: 320px 0 90px;
}

#fvPage::before {
  display: block;
  content: "";
  width: 100%;
  height: 362px;
  background: top / cover no-repeat url("../img/fvPage-bg.jpg");
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

#fvPage .inner div {
  padding: 60px 0;
  background: rgba(176, 22, 0, 0.90);
  margin: 0 auto 40px;
}

#fvPage .inner div h2,
#fvPage .inner div h3 {
  color: #FFF;
}

#fvPage .inner div+p {
  font-size: 16px;
  font-weight: normal;
  text-align: center;
  margin: 0 auto 60px;
  letter-spacing: 2px;
}

#fvPage .btnA {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 394px;
  height: 74px;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.3em;
  color: var(--main-color);
  border: solid 2px var(--main-color);
  border-radius: 50px;
  background: #FFF;
  margin: 0 auto;
  position: relative;
  opacity: 1;
  transition: opacity .5s;
}

#fvPage .btnA::before {
  display: inline-block;
  content: "〈";
  width: 20px;
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
}

#fvPage .btnA:hover {
  opacity: 0.5;
}

@media screen and (max-width: 820px) {
  #fvPage {
    padding: 310px 0 90px;
  }

  #fvPage::before {
    height: 380px;
  }

  #fvPage .title+.subtitle {
    letter-spacing: 0.5em;
    margin: 0;
  }

  #fvPage .inner div+p {
    font-size: 28px;
    text-align: left;
    line-height: 2;
  }

  #fvPage .btnA {
    max-width: 85%;
    height: 100px;
    font-size: 28px;
    font-weight: bold;
  }
}

@media screen and (max-width: 520px) {
  #fvPage {
    padding: 150px 0 90px;
  }

  #fvPage::before {
    height: 200px;
  }

  #fvPage .inner div {
    padding: 30px 0;
    margin: 0 auto 30px;
  }

  #fvPage .inner div+p {
    font-size: 15px;
    margin: 0 auto 30px;
  }

  #fvPage .btnA {
    height: 50px;
    font-size: 15px;
  }
}

.form-wrap {
  background: #F6F6F6;
}

.form-wrap #form {
  padding-top: 20px !important;
}

.form-wrap #form .inner {
  max-width: 764px !important;
}

.form-wrap #form .inner iframe {
  width: 764px;
  height: 1113px;
}

@media screen and (max-width: 820px) {
  .form-wrap #form .inner {
    width: 100%;
  }

  .form-wrap #form {
    padding: 20px 0 90px !important;
  }

  .footerCopy {
    line-height: 1.5;
  }

  @media screen and (max-width: 520px) {
    .form-wrap #fvPage {
      padding-bottom: 30px;
    }

    .form-wrap #form .inner {
      width: 86%;
    }

    .form-wrap #form .inner iframe {
      max-width: 337px;
      width: 100%;
    }
  }

  @media screen and (max-width: 375px) {
    #fv::before {
      width: 580px;
      height: 580px;
    }

    #fv .center img:nth-child(3) {
      width: 260px;
    }

    #fv .right span:nth-child(3) {
      bottom: 28px;
    }

    #about h2 {
      width: 170px;
    }

    .label p:nth-child(2),
    li:nth-child(4) .label p:nth-child(2) {
      letter-spacing: 1px;
    }

    #footer::after {
      width: 300px;
      top: -180px;
    }
  }
