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

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

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

ol,
ul {
  list-style: none;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
  vertical-align: top;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #111;
  background-color: #fafafa;
  font-size: 1.6rem;
  line-height: 1.7;
  font-weight: 400;
}
body.is-fixed {
  overflow: hidden;
}
body.is-overlay {
  background: rgba(17, 17, 17, 0.2);
}

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

iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.l-inner {
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1170px;
    margin: 0 auto;
  }
}

.l-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 17, 17, 0.2);
  z-index: 50;
  display: none;
  pointer-events: none;
}

.c-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 8px 30px;
  background-color: #fff;
  cursor: pointer;
  min-width: 150px;
  border-radius: 60px;
  font-weight: 700;
}
.c-button--primary {
  background-color: #111;
  color: #fff;
}

.c-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
}
.c-heading__main {
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  font-family: "Montserrat", sans-serif;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .c-heading__main {
    font-size: 5rem;
  }
}
.c-heading__sub {
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.08em;
  font-family: "Montserrat", sans-serif;
}
@media screen and (min-width: 768px) {
  .c-heading__sub {
    font-size: 1.6rem;
  }
}

.p-header {
  padding: 22px 0;
  width: 100%;
}
.p-header__logo {
  width: 100px;
}
@media screen and (min-width: 768px) {
  .p-header__logo {
    width: 135px;
  }
}
.p-header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-header__icon {
  width: 36px;
  height: 21px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-header__icon {
    display: none;
  }
}
.p-header__icon {
  cursor: pointer;
}
.p-header__icon::before, .p-header__icon::after {
  position: absolute;
  width: 100%;
  height: 3px;
  content: "";
  background-color: #111;
  left: 0;
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
  border-radius: 6px;
}
.p-header__icon::before {
  top: 0%;
}
.p-header__icon::after {
  bottom: 0%;
}
.p-header__icon span {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: 3px;
  background: #111;
  border-radius: 6px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-header__icon.is-open {
  z-index: 1000;
}
.p-header__icon.is-open::before {
  top: 50%;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
.p-header__icon.is-open::after {
  top: 50%;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
  bottom: auto;
}
.p-header__icon.is-open span {
  opacity: 0;
}
.p-header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-header__nav {
    display: block;
  }
}
.p-header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
.p-header__link {
  font-weight: 700;
  letter-spacing: 0.03em;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.p-header__link:hover {
  color: #f5810e;
}

.p-fv__inner {
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .p-fv__inner {
    padding: 0 30px;
  }
}
.p-fv__box {
  border-radius: 20px;
  background: -webkit-gradient(linear, left top, left bottom, from(#f8b819), to(#f0d320));
  background: linear-gradient(180deg, #f8b819 0%, #f0d320 100%);
}
.p-fv__container {
  padding: 50px 0 255px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-fv__container {
    padding: 110px 15px 109px;
    max-width: 1070px;
    margin: 0 auto;
  }
}
.p-fv__contents {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-fv__contents {
    -moz-text-align-last: left;
         text-align-last: left;
  }
}
.p-fv__hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .p-fv__hero {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
.p-fv__hero-text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  font-size: 2.2rem;
  font-weight: 700;
  border-radius: 5px;
  background: #fff;
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .p-fv__hero-text {
    font-size: 3.8rem;
    padding: 12px 16px;
  }
}
.p-fv__text {
  font-weight: 700;
  margin: 26px 0 22px;
}
@media screen and (min-width: 768px) {
  .p-fv__text {
    font-size: 1.8rem;
  }
}
.p-fv__image {
  max-width: 345px;
  width: 100%;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -108px;
}
@media screen and (min-width: 768px) {
  .p-fv__image {
    width: 57.6923076923%;
    max-width: none;
    left: auto;
    -webkit-transform: none;
            transform: none;
    right: 15px;
    bottom: -88px;
  }
}

.p-achieve {
  padding: 168px 0 60px;
}
@media screen and (min-width: 768px) {
  .p-achieve {
    padding: 158px 0 50px;
  }
}
.p-achieve__inner {
  padding: 0 40px;
}
@media screen and (min-width: 768px) {
  .p-achieve__inner {
    max-width: 1000px;
    margin: 0 auto;
  }
}
.p-achieve__leading {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .p-achieve__leading {
    font-size: 2rem;
    margin-bottom: 54px;
  }
}
.p-achieve__contents {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 15px;
}
@media screen and (min-width: 768px) {
  .p-achieve__contents {
    grid-template-columns: repeat(4, 1fr);
    gap: 26px 40px;
  }
}

.p-news {
  padding: 60px 0;
}
@media screen and (min-width: 768px) {
  .p-news {
    padding: 50px 0;
  }
}
.p-news__box {
  padding: 40px 12px;
  border-radius: 20px;
  background: #fff;
  -webkit-box-shadow: 0 9px 30px 0 #f4f4f4;
          box-shadow: 0 9px 30px 0 #f4f4f4;
}
@media screen and (min-width: 768px) {
  .p-news__box {
    padding: 40px 105px 34px;
  }
}
.p-news__leading {
  font-family: "Montserrat", sans-serif;
  font-size: 3.8rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-news__leading {
    font-size: 5rem;
    text-align: left;
  }
}
.p-news__contents {
  margin: 28px 0 22px;
}
@media screen and (min-width: 768px) {
  .p-news__contents {
    margin: 30px 0 20px;
  }
}
.p-news__item:nth-child(n+2) {
  border-top: 1px solid #e3e3e3;
}
.p-news__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  padding: 10px 0;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  cursor: pointer;
}
.p-news__link:hover {
  background-color: rgba(250, 190, 0, 0.1);
}
@media screen and (min-width: 768px) {
  .p-news__link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-news__link-leading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .p-news__link-leading {
    gap: 14px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 247px;
            flex: 0 0 247px;
  }
}
@media screen and (min-width: 768px) {
  .p-news__link-date {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 133px;
            flex: 0 0 133px;
  }
}
.p-news__link-tag {
  font-size: 1.1rem;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 2px;
  background-color: #e4780c;
  padding: 2px 10px;
  min-width: 64px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-news__link-tag--column {
  background-color: #ecb815;
}
.p-news__link-tag--event {
  background-color: #389b47;
}
.p-news__detail {
  font-weight: 700;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  display: block;
  padding-bottom: 8px;
  border-bottom: 2px solid currentColor;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.p-news__detail:hover {
  color: #fabe00;
}

.p-about {
  padding: 60px 0;
  overflow-x: hidden;
}
@media screen and (min-width: 768px) {
  .p-about {
    padding: 50px 0 100px;
  }
}
.p-about__logo {
  width: 180px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-about__logo {
    width: 230px;
  }
}
.p-about__container {
  position: relative;
  padding-top: 288px;
  padding-bottom: 105px;
  margin-top: 150px;
}
.p-about__container::before {
  content: "";
  width: 1100px;
  height: 1100px;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(#f8b819), to(#f0d320));
  background: linear-gradient(180deg, #f8b819 0%, #f0d320 100%);
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-about__container {
    padding-top: 284px;
    margin-top: 176px;
    padding-bottom: 100px;
  }
  .p-about__container::before {
    width: 800px;
    height: 800px;
  }
}
.p-about__image {
  max-width: 320px;
  width: 100%;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -110px;
}
@media screen and (min-width: 768px) {
  .p-about__image {
    width: 330px;
    max-width: none;
    top: -126px;
  }
}
.p-about__contents {
  text-align: center;
}
.p-about__text {
  font-weight: 700;
  line-height: 2.3;
  text-align: center;
  padding: 0 10px;
  font-size: clamp(1.5rem, 3.5vw, 1.7rem);
}
.p-about__pop {
  font-weight: 700;
  margin: 40px 0 12px;
}
@media screen and (min-width: 768px) {
  .p-about__pop {
    margin: 42px 0 15px;
  }
}

.p-movie {
  padding: 60px 0;
  background: url(../../../img/movie-bgi.jpg) repeat 0 0/529px auto;
}
@media screen and (min-width: 768px) {
  .p-movie {
    padding: 100px 0;
  }
}
.p-movie__inner {
  padding: 0 15px;
}
.p-movie__iframe {
  width: 100%;
  max-width: 345px;
  aspect-ratio: 345/194;
  margin: 0 auto;
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .p-movie__iframe {
    max-width: none;
    width: 640px;
    height: 360px;
    margin-top: 56px;
  }
}

.p-use {
  padding: 60px 0;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .p-use {
    padding: 100px 0;
  }
}
.p-use__container {
  margin-top: 104px;
}
@media screen and (min-width: 768px) {
  .p-use__container {
    margin-top: 89px;
  }
}
.p-use__contents {
  border-radius: 30px;
  background: #fffbf0;
  padding: 54px 20px 48px;
}
@media screen and (min-width: 768px) {
  .p-use__contents {
    padding: 44px 10px 56px;
  }
}
.p-use__contents--secondary {
  margin-top: 112px;
}
@media screen and (min-width: 768px) {
  .p-use__contents--secondary {
    margin-top: 75px;
  }
}
.p-use__contents-leading {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-use__contents-leading {
    padding-right: 95px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .p-use__contents-leading--secondary {
    padding-right: 0;
    padding-left: 95px;
  }
}
.p-use__contents-text {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-use__contents-text {
    font-size: 2.2rem;
  }
}
.p-use__contents-image {
  width: 85px;
  position: absolute;
  top: -126px;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}
@media screen and (min-width: 768px) {
  .p-use__contents-image {
    right: 0;
    -webkit-transform: none;
            transform: none;
    top: auto;
    bottom: 0;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-use__contents-image--secondary {
    right: auto;
    left: 0;
  }
}
.p-use__list {
  margin-top: 65px;
}
@media screen and (min-width: 768px) {
  .p-use__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
    max-width: 948px;
    margin: 65px auto 0;
  }
}
.p-use__item {
  border-radius: 30px;
  border: 3px solid #111;
  background: #fff;
  padding: 50px 15px 26px;
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-use__item {
    margin: 0;
    padding-left: 10px;
    padding-right: 10px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.p-use__item:nth-child(n+2) {
  margin-top: 65px;
}
@media screen and (min-width: 768px) {
  .p-use__item:nth-child(n+2) {
    margin-top: 0;
  }
}
.p-use__item-leading {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid #111;
  background: #f5810e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3px;
  position: absolute;
  top: -45px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.p-use__item-leading--secondary {
  background: #fabe00;
}
.p-use__item-tag {
  font-size: 1.3rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}
.p-use__item-number {
  font-size: 3.4rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #fff;
}
.p-use__item-image {
  width: 160px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-use__item-image {
    width: 200px;
  }
}
.p-use__item-text {
  font-weight: 700;
  text-align: center;
  margin-top: 10px;
}

.p-merit {
  padding: 60px 0;
}
@media screen and (min-width: 768px) {
  .p-merit {
    padding: 100px 0 120px;
  }
}
.p-merit__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .p-merit__list {
    margin-top: 80px;
    gap: 40px;
  }
}
.p-merit__item {
  width: 100%;
  border-radius: 20px;
  background: #fff;
}
.p-merit__item-container {
  padding: 10px 20px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
}
@media screen and (min-width: 768px) {
  .p-merit__item-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 50px;
    max-width: 960px;
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media screen and (min-width: 768px) {
  .p-merit__item-container--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.p-merit__item-image {
  width: 200px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-merit__item-image {
    width: 38.0434782609%;
    margin: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.p-merit__item-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .p-merit__item-contents {
    gap: 16px;
  }
}
.p-merit__item-leading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
}
@media screen and (min-width: 768px) {
  .p-merit__item-leading {
    gap: 28px;
  }
}
.p-merit__item-number {
  color: #fabe00;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  font-size: 7rem;
}
@media screen and (min-width: 768px) {
  .p-merit__item-number {
    font-size: 11rem;
  }
}
.p-merit__item-main {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-merit__item-main {
    font-size: 2rem;
  }
}
.p-merit__item-text {
  font-size: 1.4rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-merit__item-text {
    font-size: 1.5rem;
  }
}

.p-cta {
  padding: 50px 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#F8BD1E), to(#F0D320));
  background: linear-gradient(180deg, #F8BD1E 0%, #F0D320 100%);
  text-align: center;
}
.p-cta__inner {
  padding: 0 15px;
}
.p-cta__text {
  line-height: 2;
  font-weight: 700;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .p-cta__text {
    font-size: 1.8rem;
  }
}

.p-service {
  padding: 60px 0;
  overflow-x: auto;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .p-service {
    padding: 100px 0;
  }
}
.p-service__text {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 42px;
}
@media screen and (min-width: 768px) {
  .p-service__text {
    font-size: 2.4rem;
    margin-bottom: 60px;
  }
}
.p-service__contents {
  width: 620px;
  padding: 0 10px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-service__contents {
    width: 1000px;
  }
}
.p-service__table {
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
}
.p-service__table img {
  width: 70px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-service__table img {
    width: 123px;
  }
}
.p-service__table tr > :nth-child(1) {
  width: 130px;
}
@media screen and (min-width: 768px) {
  .p-service__table tr > :nth-child(1) {
    width: 250px;
  }
}
.p-service__table tr > :nth-child(2) {
  background: #fff9e5;
  width: 90px;
}
@media screen and (min-width: 768px) {
  .p-service__table tr > :nth-child(2) {
    width: 250px;
  }
}
.p-service__table th,
.p-service__table td {
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
  height: 60px;
}
@media screen and (min-width: 768px) {
  .p-service__table th,
  .p-service__table td {
    height: 100px;
  }
}
.p-service__table thead th {
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-service__table thead th {
    font-size: 2rem;
  }
}
.p-service__table tbody th,
.p-service__table tbody td {
  border-top: 1.5px solid #111;
}
.p-service__table tbody th {
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-service__table tbody th {
    font-size: 2rem;
  }
}
.p-service__table tbody tr > :nth-child(2),
.p-service__table tbody tr :nth-child(n+3) {
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-service__table tbody tr > :nth-child(2),
  .p-service__table tbody tr :nth-child(n+3) {
    font-size: 2.5rem;
  }
}
.p-service__table tbody tr > :nth-child(n+3) {
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .p-service__table tbody tr > :nth-child(n+3) {
    font-size: 1.6rem;
  }
}
.p-service__attention {
  color: #686868;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  margin-top: 46px;
}

.p-contact {
  padding: 60px 0;
  background: url(../../../img/movie-bgi.jpg) repeat 0 0;
}
@media screen and (min-width: 768px) {
  .p-contact {
    padding: 100px 0;
  }
}
.p-contact__box {
  border-radius: 30px;
  background: #fff;
}
.p-contact__container {
  padding: 60px 10px;
}
.p-contact__form {
  margin-top: 30px;
}
.p-contact__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .p-contact__fields {
    width: 612px;
    margin: 0 auto;
  }
}
.p-contact__checkbox {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .p-contact__checkbox {
    text-align: center;
  }
}
.p-contact__button {
  margin-top: 30px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-contact__button {
    margin-top: 38px;
  }
}

.p-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}
@media screen and (min-width: 768px) {
  .p-field {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 32px;
  }
}
.p-field__leading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .p-field__leading {
    width: 180px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.p-field__label {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-field__label {
    width: 128px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    text-align: right;
  }
}
.p-field__tag {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  border-radius: 2px;
  background: #ee8013;
  padding: 6px 8px 5px;
}
.p-field__tag--optional {
  background: #43b549;
}
.p-field__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .p-field__radios {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 30px;
  }
}

.p-form-text,
.p-form-email {
  width: 100%;
  border-radius: 5px;
  border: 3px solid #111;
  background: #fff;
  padding: 15px 14px 16px;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.p-form-text:hover, .p-form-text:focus,
.p-form-email:hover,
.p-form-email:focus {
  border-color: #fabe00;
}

.p-form-radio__input {
  position: absolute;
  width: 1px;
  height: 1px;
  clip-path: inset(50%);
  overflow: hidden;
}
.p-form-radio__input:focus-visible + .p-form-radio__text::before {
  border-color: #fabe00;
}
.p-form-radio__input:checked + .p-form-radio__text:before {
  border-color: #fabe00;
}
.p-form-radio__input:checked + .p-form-radio__text::after {
  opacity: 1;
}
.p-form-radio__text {
  font-weight: 700;
  padding-left: 28px;
  position: relative;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-form-radio__text:hover {
  color: #fabe00;
}
.p-form-radio__text::before, .p-form-radio__text::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
}
.p-form-radio__text::before {
  left: 0;
  width: 24px;
  height: 24px;
  border: 3px solid currentColor;
}
.p-form-radio__text::after {
  width: 10px;
  height: 10px;
  left: 7px;
  background: #f5810e;
  opacity: 0;
}

.p-form-select {
  width: 100%;
  border-radius: 5px;
  border: 3px solid #111;
  background: #fff;
  padding: 15px 45px 14px 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url(../../../img/polygon-1.png) no-repeat center right 18.15px/9.47px 6.97px;
  cursor: pointer;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.p-form-select:hover, .p-form-select:focus {
  border-color: #fabe00;
}

.p-form-textarea {
  width: 100%;
  height: 180px;
  padding: 16px;
  border-radius: 5px;
  border: 3px solid currentColor;
  background: #fff;
  padding: 15px 14px 16px;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.p-form-textarea:hover, .p-form-textarea:focus {
  border-color: #fabe00;
}

.p-form-checkbox__input {
  position: absolute;
  width: 1px;
  height: 1px;
  clip-path: inset(50%);
  overflow: hidden;
}
.p-form-checkbox__input:focus-visible + .p-form-checkbox__text::before {
  border-color: #fabe00;
}
.p-form-checkbox__input:checked + .p-form-checkbox__text::before {
  border-color: #fabe00;
}
.p-form-checkbox__input:checked + .p-form-checkbox__text::after {
  opacity: 1;
}
.p-form-checkbox__text {
  font-size: 1.4rem;
  font-weight: 700;
  position: relative;
  padding-left: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-form-checkbox__text:hover {
  color: #fabe00;
}
.p-form-checkbox__text a {
  text-decoration: underline;
  color: inherit;
  font-weight: inherit;
}
.p-form-checkbox__text::before, .p-form-checkbox__text::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-form-checkbox__text::before {
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 1px;
  border: 1px solid currentColor;
}
.p-form-checkbox__text::after {
  background: url(../../../img/Vector\ 30\ \(Stroke\)\ \(1\).png) no-repeat center center/23px 17.53px;
  width: 23px;
  height: 20px;
  left: -1px;
  margin-top: -1.23px;
  opacity: 0;
}

.p-drawer {
  width: 85.3333333333%;
  height: 100vh;
  background: #f7ba1a;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  display: none;
}
.p-drawer__contents {
  padding: 100px 40px;
  text-align: right;
}
.p-drawer__item {
  padding: 14px 0;
}
.p-drawer__link {
  font-weight: 700;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.p-drawer__link:hover {
  color: #f5810e;
}

.p-modal {
  position: fixed;
  inset: 0;
  overflow-y: auto;
  z-index: 100;
  max-width: calc(100% - 30px);
  max-height: calc(100vh - 40px);
  border-radius: 20px;
  background: #fff;
  border: none;
  padding: 16px 15px 64px;
  overscroll-behavior-y: none;
}
@media screen and (min-width: 768px) {
  .p-modal {
    width: 1140px;
    padding: 49px 70px 75px;
  }
}
.p-modal__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: sticky;
  top: 0;
}
.p-modal__close-icon {
  width: 37px;
}
.p-modal__text {
  margin-top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}
.p-modal__text p {
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .p-modal__text {
    margin-top: 43px;
  }
}
.p-modal__button {
  text-align: center;
}

.p-qa {
  padding: 60px 0;
}
@media screen and (min-width: 768px) {
  .p-qa {
    padding: 100px 0;
  }
}
.p-qa__inner {
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .p-qa__inner {
    max-width: 800px;
    margin: 0 auto;
  }
}
.p-qa__contents {
  margin-top: 52px;
}
.p-qa__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 42px;
}

.p-qa-item {
  border-radius: 10px;
  background: #fff;
}
.p-qa-item__open {
  width: 100%;
  padding: 32px 40px 20px 15px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-qa-item__open {
    padding-right: 80px;
    padding-left: 20px;
  }
}
.p-qa-item__open::after {
  background: url(../../../img/polygon-1.png) no-repeat center center/contain;
  content: "";
  width: 9.26px;
  height: 6.834px;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  right: 16.87px;
}
.p-qa-item__open.is-open::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.p-qa-item__q-icon, .p-qa-item__a-icon {
  font-size: 2.2rem;
  font-weight: 700;
  border-radius: 50%;
  background: #f5810e;
  width: 44px;
  height: 44px;
  display: block;
  display: grid;
  place-items: center;
}
.p-qa-item__q-icon {
  position: absolute;
  top: -22px;
  left: 15px;
}
.p-qa-item__a-icon {
  background: #fabe00;
}
.p-qa-item__question, .p-qa-item__answer {
  font-weight: 700;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .p-qa-item__question, .p-qa-item__answer {
    font-size: 1.6rem;
    line-height: 27px;
  }
}
.p-qa-item__question {
  text-align: left;
  display: block;
  position: relative;
}
.p-qa-item__body {
  padding: 10px 17px 20px 15px;
}
.p-qa-item__body.is-close {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-qa-item__body {
    padding: 0 36px 20px 20px;
  }
}
.p-qa-item__a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .p-qa-item__a {
    gap: 10px;
  }
}
.p-qa-item__a-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-qa-item__answer {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-top: 8px;
}

.p-gallery {
  padding: 60px 0;
}
@media screen and (min-width: 768px) {
  .p-gallery {
    padding: 100px 0;
  }
}
.p-gallery__inner {
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .p-gallery__inner {
    padding: 0 20px;
    max-width: 680px;
    margin: 0 auto;
  }
}

.p-slider {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  margin-top: 30px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-slider {
    max-width: none;
    margin-top: 60px;
  }
}
.p-slider__viewport {
  overflow: hidden;
  width: 100%;
}
.p-slider__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.p-slider__card {
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-slider__button {
  position: absolute;
  margin-top: -40px;
  top: 50%;
  width: 40px;
  height: 40px;
  background: url(../../../img/prev-icon.png) no-repeat center center/contain;
  cursor: pointer;
}
.p-slider__button--prev {
  margin-left: -5px;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-slider__button--prev {
    margin-left: -70px;
  }
}
.p-slider__button--next {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  right: 0;
  margin-right: -5px;
}
@media screen and (min-width: 768px) {
  .p-slider__button--next {
    margin-right: -70px;
  }
}
.p-slider__dots {
  margin-top: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
}
.p-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #bcbcbc;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.p-slider__dot.is-active {
  background: #fabe00;
}

.p-slider-card {
  border-radius: 20px;
  border: 3px solid #111;
  background: #fff;
  -webkit-box-shadow: 0 9px 30px 0 #f4f4f4;
          box-shadow: 0 9px 30px 0 #f4f4f4;
  padding: 15px 15px 12px;
}
@media screen and (min-width: 768px) {
  .p-slider-card {
    padding: 20px 20px 18px;
  }
}
.p-slider-card__image img {
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .p-slider-card__image img {
    border-radius: 20px;
  }
}
.p-slider-card__text {
  font-size: 1.4rem;
  text-align: center;
  margin-top: 11px;
}
@media screen and (min-width: 768px) {
  .p-slider-card__text {
    font-size: 1.6rem;
    margin-top: 18px;
  }
}

.p-page-top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 100;
  width: 50px;
  display: none;
}
@media screen and (min-width: 768px) {
  .p-page-top {
    bottom: 30px;
    right: 30px;
    width: 76px;
  }
}

.p-footer {
  background-color: #111;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 18px 0;
}
.p-footer__wrapper {
  font-size: 1.2rem;
  color: #fff;
}

.u-hover-yellow {
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.u-hover-yellow:hover {
  background-color: #fabe00;
}

.u-hover-white {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.u-hover-white:hover {
  background-color: #fff;
  color: #111;
}

.u-ls-sm {
  letter-spacing: 0.03em;
}

.u-ls-md {
  letter-spacing: 0.08em;
}

.u-ls-lg {
  letter-spacing: 0.1em;
}

.u-lh-sm {
  line-height: 2;
}

.u-lh-lg {
  line-height: 1;
}

.u-hidden-sp {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-hidden-sp {
    display: block;
  }
}

.u-hidden-pc {
  display: block;
}
@media screen and (min-width: 768px) {
  .u-hidden-pc {
    display: none;
  }
}

.u-bd-1 {
  border: 1px solid currentColor;
}

.u-bd-2 {
  border: 2px solid currentColor;
}

.u-bd-3 {
  border: 3px solid currentColor;
}

.u-fade-in {
  opacity: 0;
  -webkit-transform: translateY(60px);
          transform: translateY(60px);
  -webkit-transition: opacity 1.5s, -webkit-transform 1.5s;
  transition: opacity 1.5s, -webkit-transform 1.5s;
  transition: opacity 1.5s, transform 1.5s;
  transition: opacity 1.5s, transform 1.5s, -webkit-transform 1.5s;
}

.is-in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}