@charset "UTF-8";
html {
  font-size: 62.5%;
}

body {
  font-family: "Zen Old Mincho", serif;
  color: #000000;
  font-weight: 400;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 768px) {
  a,
  button {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  a:hover,
  button:hover {
    opacity: 0.7;
    cursor: pointer;
  }
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

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

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.l-inner {
  width: 100%;
  padding-right: 2rem;
  padding-left: 2rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1250px;
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }
}

.c-btn1 {
  -webkit-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
  background-color: #FED328;
  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;
  border-radius: 0.5rem;
  padding: 1rem 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.7142857143;
  color: #000000;
  width: 15rem;
}
@media screen and (min-width: 768px) {
  .c-btn1 {
    font-size: 1.8rem;
    padding: 0.8rem 0.5rem;
  }
}

.p-common__btn {
  display: inline-block;
}

.c-btn2 {
  -webkit-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
  display: block;
  position: relative;
  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;
  border-radius: 1rem;
  background-color: #FED328;
  padding: 1.8rem 1rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.46875;
  color: #000000;
  max-width: 26.4rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-btn2 {
    max-width: 40.4rem;
  }
}
@media screen and (min-width: 1024px) {
  .c-btn2 {
    padding: 2.5rem 1rem;
    font-size: 3.2rem;
    max-width: 53.4rem;
  }
}

.c-btn3 {
  -webkit-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
  background-color: #FED328;
  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;
  border-radius: 0.5rem;
  padding: 0.4rem 0.5rem;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.7142857143;
  color: #000000;
  width: 7rem;
}
@media screen and (min-width: 768px) {
  .c-btn3 {
    width: 12rem;
    padding: 0.2rem 0.5rem;
    line-height: 2.8333333333;
    font-size: 1.4rem;
  }
}

.p-common__btn {
  display: inline-block;
}

/* モーダルの背景 */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .6);
  display: none;
  z-index: 9998;
}

/* モーダル本体 */
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #fff;
  padding: 1.8rem;
  width: 80%;
  max-width: 40rem;
  -webkit-box-shadow: 0px 4px 8px rgba(0, 0, 0, .2);
          box-shadow: 0px 4px 8px rgba(0, 0, 0, .2);
  text-align: center;
  z-index: 9999;
  border-radius: 8px;
  display: none;
}
@media screen and (min-width: 1024px) {
  .modal {
    max-width: 75rem;
    padding: 5.8rem 4.7rem;
  }
}

/* モーダルのテキスト */
.modal p {
  -webkit-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
  font-size: 1.5rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  font-weight: 700;
}
@media screen and (min-width: 1024px) {
  .modal p {
    line-height: 2.25;
    font-size: 2rem;
  }
}

.modal h2 {
  -webkit-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 700;
}
@media screen and (min-width: 1024px) {
  .modal h2 {
    font-size: 4.8rem;
  }
}

/* ボタン */
.modal-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.modal-buttons button {
  -webkit-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
  background-color: #000;
  color: #fff;
  border: none;
  padding: 1rem 0.7rem;
  font-family: "Hina Mincho", serif;
  font-size: 1.1rem;
  cursor: pointer;
  width: 48%;
}
@media screen and (min-width: 768px) {
  .modal-buttons button {
    padding: 1rem 1.2rem;
  }
}
@media screen and (min-width: 1024px) {
  .modal-buttons button {
    font-size: 2.4rem;
    padding: 1.6rem 3.4rem;
  }
}

.modal-buttons button:hover {
  opacity: 0.8;
}

.p-attention {
  margin-top: 3.5rem;
  margin-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .p-attention {
    margin-top: 7.5rem;
    margin-bottom: 10rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-attention {
    margin-top: 15rem;
    margin-bottom: 20rem;
  }
}

.p-attention__bg {
  background: url(../images/attention-bg.jpg) no-repeat center/contain;
  aspect-ratio: 1920/544;
}
@media screen and (min-width: 768px) {
  .p-attention__bg {
    background: url(../images/attention-bg.jpg) no-repeat center/cover;
  }
}

.p-attention__inner {
  max-width: 100rem;
  padding-right: 2rem;
  padding-left: 2rem;
  margin-inline: auto;
}

.p-attention__wrapper {
  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: 2rem;
}
@media screen and (min-width: 768px) {
  .p-attention__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 4.1rem;
  }
}

.p-attention__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-attention__img {
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
  }
}

.p-attention__img img {
  max-width: 28%;
}
@media screen and (min-width: 768px) {
  .p-attention__img img {
    max-width: 25.4rem;
    aspect-ratio: 254/657;
  }
}

@media screen and (min-width: 1024px) {
  .p-attention__body {
    margin-top: 15.5rem;
  }
}

.p-attention__strong {
  -webkit-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
  display: block;
  font-size: 1.7rem;
  line-height: 1.21875;
  font-weight: 700;
  padding: 1.5rem 1.8rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #F8F8F8;
  color: #000000;
}
@media screen and (min-width: 768px) {
  .p-attention__strong {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-attention__strong {
    font-size: 3.2rem;
    background-color: #fff;
  }
}

.p-attention__body p {
  -webkit-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
  margin-top: 1rem;
  font-family: "游ゴシック体", "Yu Gothic", "YuGothic", "游ゴシック Medium", "-apple-system", "BlinkMacSystemFont", "Helvetica Neue", "Hiragino Kaku Gothic ProN", "メイリオ", meiryo, sans-serif;
  line-height: 2;
  font-weight: 400;
  color: #000000;
}
@media screen and (min-width: 768px) {
  .p-attention__body p {
    margin-top: 2.1rem;
    font-size: clamp(20px, 17.33333px + 0.34722vw, 24px);
    color: #fff;
  }
}

.p-attention__btn {
  margin-top: 2rem;
  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;
}
@media screen and (min-width: 768px) {
  .p-attention__btn {
    margin-top: 4rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-attention__btn {
    margin-top: 6rem;
    margin-right: 14rem;
  }
}

.p-effect {
  position: relative;
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .p-effect {
    margin-top: 5rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-effect {
    margin-top: 10rem;
  }
}

.p-effect::after {
  display: none;
}
@media screen and (min-width: 425px) {
  .p-effect::after {
    content: "";
    display: inline-block;
    background: url(../images/effect-img01.svg) no-repeat center/contain;
    height: 24rem;
    width: 22rem;
    position: absolute;
    top: 93%;
    right: calc(50% - 21rem);
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media screen and (min-width: 768px) {
  .p-effect::after {
    height: 48rem;
    width: 30rem;
    top: initial;
    top: 60%;
    right: calc(50% - 32rem);
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@media screen and (min-width: 1024px) {
  .p-effect::after {
    height: 48rem;
    width: 35rem;
    top: 79%;
    right: calc(50% - 48rem);
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.p-effect__inner {
  max-width: 100rem;
  padding-right: 2rem;
  padding-left: 2rem;
  margin-inline: auto;
}

.p-effect__wrapper {
  display: grid;
  gap: 3rem 0;
}
@media screen and (min-width: 768px) {
  .p-effect__wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 4.2rem 0;
  }
}
@media screen and (min-width: 1024px) {
  .p-effect__wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 8.4rem 0;
  }
}

.p-effect__text {
  -webkit-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
  font-size: 2.2rem;
  line-height: 1.2;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-effect__text {
    font-size: 3.2rem;
  }
}

.p-effect__list {
  margin-top: 0.8rem;
  list-style-type: none;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .p-effect__list {
    margin-top: 2.4rem;
  }
}

.p-effect__item {
  -webkit-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
  position: relative;
  padding-left: 1.8rem;
  margin-top: 0.8rem;
  font-size: 1.8rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-effect__item {
    padding-left: 3.8rem;
    font-size: 2.4rem;
  }
}

.p-effect__item::before {
  content: "•";
  color: #FED328;
  font-size: 3.2rem;
  position: absolute;
  left: 0;
  top: -1.2rem;
}
@media screen and (min-width: 768px) {
  .p-effect__item::before {
    font-size: 5.2rem;
    top: -2.3rem;
  }
}

.p-feature {
  margin-top: -0.4rem;
}
@media screen and (min-width: 768px) {
  .p-feature {
    margin-top: -4.4rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-feature {
    margin-top: -10rem;
  }
}

.p-feature__inner {
  max-width: 140rem;
  padding-right: 2rem;
  padding-left: 2rem;
  margin-inline: auto;
}

.p-feature__leaves {
  width: 90%;
  margin-right: auto;
  margin-left: auto;
  background: url(../images/feature-img01.jpg) no-repeat center/cover;
  -webkit-transform: translateY(60%);
          transform: translateY(60%);
  aspect-ratio: 1200/438;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-feature__leaves {
    max-width: 120rem;
    width: 90%;
  }
}
@media screen and (min-width: 1024px) {
  .p-feature__leaves {
    max-width: 120rem;
    width: 100%;
  }
}

.p-feature-bg {
  padding-top: 10.8rem;
  padding-bottom: 4.3rem;
  background: url(../images/feature-back.jpg) no-repeat center/cover;
}
@media screen and (min-width: 600px) {
  .p-feature-bg {
    padding-top: 14.8rem;
  }
}
@media screen and (min-width: 768px) {
  .p-feature-bg {
    padding-top: 23rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-feature-bg {
    padding-top: 34rem;
    padding-bottom: 8.7rem;
  }
}

.p-feature__title {
  text-align: center;
}

.p-feature__sub {
  -webkit-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
  font-size: clamp(20px, 17.08738px + 0.7767vw, 32px);
  line-height: 2.3125;
  font-weight: 700;
}
.p-feature__main {
  -webkit-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
  font-size: clamp(28px, 28.1165px + 1.0356vw, 48px);
  line-height: 1.5416666667;
  font-weight: 700;
}
.p-feature__wrapper {
  margin-top: 3.2rem;
  gap: 6.7rem;
}
@media screen and (min-width: 768px) {
  .p-feature__wrapper {
    margin-top: 6.4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.p-feature__img {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-feature__img {
    width: 80%;
  }
}

.p-feature__img img {
  max-width: 100%;
  aspect-ratio: 603/574;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-feature__body {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-feature__body {
    margin-top: 1rem;
  }
}

.p-feature__body p {
  -webkit-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
  font-family: "游ゴシック体", "Yu Gothic", "YuGothic", "游ゴシック Medium", "-apple-system", "BlinkMacSystemFont", "Helvetica Neue", "Hiragino Kaku Gothic ProN", "メイリオ", meiryo, sans-serif;
  font-size: 1.4rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-feature__body p {
    font-size: 1.8rem;
  }
}

.p-feature__body p:not(:first-child) {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-feature__body p:not(:first-child) {
    margin-top: 1.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-feature__body p:not(:first-child) {
    margin-top: 3rem;
  }
}

.p-footer {
  position: relative;
  margin-right: 0rem;
  margin-left: 0rem;
  padding-top: 4.5rem;
  padding-bottom: 8.7rem;
  background-color: #F8F8F8;
}
@media screen and (min-width: 768px) {
  .p-footer {
    padding-bottom: 12.7rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-footer {
    padding-bottom: 16.7rem;
  }
}

.p-footer__inner {
  max-width: 177.2rem;
  padding-left: 2rem;
  padding-right: 2rem;
  margin-inline: auto;
}

.p-footer__upper {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-footer__upper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    text-align: left;
    text-align: initial;
  }
}

.p-footer__logo {
  margin-left: auto;
  margin-right: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-footer__logo {
    margin-left: 0;
    margin-left: initial;
    margin-right: 0;
    margin-right: initial;
  }
}

.p-footer__logo a {
  -webkit-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
  font-family: "Hina Mincho", serif;
  text-transform: uppercase;
  font-size: 2.4rem;
  line-height: 1.59375;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-footer__logo a {
    font-size: 3.2rem;
  }
}

.p-footer__address {
  margin-top: 1.4rem;
}

.p-footer__address p {
  -webkit-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
  font-family: "Hina Mincho", serif;
  line-height: 1.5;
}

.p-footer__tel {
  margin-top: 1.5rem;
}

.p-footer__tel p {
  -webkit-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
  font-family: "Hina Mincho", serif;
}

.p-footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-footer-nav {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 3.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-footer-nav {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-top: 0;
  }
}

.p-footer-nav__items1 {
  padding: 1rem 0;
  height: inherit;
  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;
}
@media screen and (min-width: 768px) {
  .p-footer-nav__items1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
        -ms-flex-direction: initial;
            flex-direction: initial;
  }
}

.p-footer-nav__items2 {
  margin-top: 2rem;
  height: inherit;
  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;
}
@media screen and (min-width: 768px) {
  .p-footer-nav__items2 {
    margin-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
        -ms-flex-direction: initial;
            flex-direction: initial;
  }
}

.p-footer-nav__item {
  height: inherit;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: block;
  text-align: center;
  margin-top: 0;
}

.p-footer-nav__item a {
  -webkit-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
  padding: 0.8rem 0;
  font-size: 1.4rem;
  line-height: 2.8333333333;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  .p-footer-nav__item a {
    line-height: 2.5;
    font-size: 1.5rem;
    padding: 0 1rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-footer-nav__item a {
    font-size: 1.8rem;
    padding: 0 1.5rem;
  }
}

.p-footer__bottom {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-footer__bottom {
    margin-top: 1rem;
  }
}

.p-footer__copyright {
  padding-top: 2rem;
  text-align: center;
}
.p-footer__copyright small {
  -webkit-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
  font-size: 1.2rem;
  line-height: 1.4285714286;
  font-family: "Hina Mincho", serif;
}
@media screen and (min-width: 768px) {
  .p-footer__copyright small {
    font-size: 1.4rem;
  }
}

.p-footer__note {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  background-color: #000000;
  text-align: center;
  width: 100%;
  position: static;
  opacity: 0.9;
  -webkit-transition: opacity 0.7s ease;
  transition: opacity 0.7s ease;
}
@media screen and (min-width: 768px) {
  .p-footer__note {
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-footer__note {
    margin-top: 5.7rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

.p-footer__note p {
  -webkit-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.9583333333;
}
@media screen and (min-width: 768px) {
  .p-footer__note p {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-footer__note p {
    font-size: 2.4rem;
  }
}

.p-footer__note--lower {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  background-color: #000000;
  text-align: center;
  position: fixed;
  bottom: 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-footer__note--lower {
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-footer__note--lower {
    margin-top: 5.7rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

.p-footer__note--lower p {
  -webkit-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.9583333333;
}
@media screen and (min-width: 768px) {
  .p-footer__note--lower p {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-footer__note--lower p {
    font-size: 2.4rem;
  }
}

.p-form {
  margin-top: 7.5rem;
  margin-bottom: 10rem;
}
@media screen and (min-width: 768px) {
  .p-form {
    margin-top: 15rem;
    margin-bottom: 15rem;
  }
}

.p-form__inner {
  max-width: 94.5rem;
  padding-right: 2rem;
  padding-left: 2rem;
  margin-inline: auto;
}

.p-form__title {
  text-align: center;
  -webkit-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
  font-family: "Hina Mincho", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.4166666667;
}
@media screen and (min-width: 768px) {
  .p-form__title {
    font-size: 3.6rem;
  }
}

.p-form__wrapper {
  padding-top: 4rem;
}
@media screen and (min-width: 768px) {
  .p-form__wrapper {
    padding: 8rem;
  }
}

.p-form__row {
  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;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-form__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-form__row:not(:first-child) {
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid #e6e6e6;
}

.p-form__row:last-child {
  margin-bottom: 1.4rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid #e6e6e6;
}

.p-form__head {
  width: 100%;
  line-height: 1.5;
  position: relative;
  padding-bottom: 0.4rem;
}
@media screen and (min-width: 768px) {
  .p-form__head {
    width: 35%;
  }
}

.p-form__head::after {
  content: none;
}
@media screen and (min-width: 768px) {
  .p-form__head::after {
    content: "";
    position: absolute;
    bottom: -2.5rem;
    left: 0;
    width: calc(100% - 3rem);
    height: 2px;
  }
}

.p-form__head.p-form__head--textarea::after {
  content: "";
  bottom: -12.4rem;
  left: 0;
  width: calc(100% - 3rem);
  height: 2px;
}

.p-form__body {
  width: 100%;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-form__body {
    width: 80%;
    margin-top: 0;
  }
}

.p-form__required {
  -webkit-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
  margin-right: 0.8rem;
  padding: 0.3rem 0.8rem;
  color: #EA6101;
  font-size: 1.3rem;
}

.p-form__body input[type=text],
.p-form__body input[type=tel],
.p-form__body input[type=email],
.p-form__body input[type=date] {
  -webkit-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
  border: 1px solid #999999;
  font-size: 1.6rem;
  padding: 1.1rem;
  width: 100%;
}

.p-form__body select {
  border: 1px solid #000000;
  background-color: #F7F7F7;
  padding: 0.5em;
  width: 16.8rem;
  border-radius: 1rem;
}

.p-form__body textarea {
  -webkit-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
  border: 1px solid #999999;
  font-size: 1.6rem;
  padding: 0.5em;
  width: 100%;
  min-height: 24rem;
}

@media screen and (min-width: 768px) {
  .p-form__radio-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8.8rem;
  }
}

.p-form__submit-btn-wrap {
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .p-form__submit-btn-wrap {
    margin-top: 8rem;
  }
}

.p-form__submit-btn {
  -webkit-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
  border: none;
  display: inline-block;
  color: #000000;
  background-color: #FED328;
  border-radius: 1rem;
  font-weight: bold;
  font-size: 1.5rem;
  min-width: 25rem;
  text-align: center;
  padding: 2rem 1rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-form__submit-btn {
    min-width: 30rem;
    font-size: 1.8rem;
  }
}

.p-form__submit-btn:hover {
  opacity: 0.7;
}

.p-form__age-attention p {
  margin-top: 4rem;
  font-size: 1.6rem;
  color: #EA6101;
  font-weight: 700;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(0%, #FFF878));
  background: linear-gradient(transparent 50%, #FFF878 0%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .p-form__age-attention p {
    font-size: 2rem;
  }
}

.p-header {
  z-index: 1;
  position: fixed;
  top: 0;
  width: 100%;
  height: 5rem;
  background-color: #fff;
  opacity: 0.9;
  padding-left: 1rem;
  padding-right: 0.2rem;
}
@media screen and (min-width: 768px) {
  .p-header {
    height: 7rem;
    padding-left: 1.5rem;
    padding-right: 1rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-header {
    height: 9rem;
    padding-left: 1rem;
    padding-right: 2rem;
  }
}

.p-header__wrapper {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-header__logo {
  width: 16.5rem;
  height: inherit;
  position: relative;
  z-index: 50;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-header__logo {
    width: 28rem;
    height: inherit;
  }
}
@media screen and (min-width: 1024px) {
  .p-header__logo {
    width: 35.5rem;
    height: inherit;
  }
}

.p-header__logo a {
  -webkit-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Hina Mincho", serif;
  font-size: 2rem;
  line-height: 2.55;
  font-weight: 400;
  text-transform: uppercase;
}
@media screen and (min-width: 1024px) {
  .p-header__logo a {
    font-size: 3.2rem;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.p-header__contact-btn--sp {
  margin-top: 0rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
}
@media screen and (min-width: 1024px) {
  .p-header__contact-btn--sp {
    display: none;
  }
}

.p-header__hamburger {
  height: inherit;
  width: 5.5rem;
  padding: 1.3rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  position: relative;
  z-index: 50;
}
@media screen and (min-width: 768px) {
  .p-header__hamburger {
    width: 6.1rem;
    padding: 2.3rem 1rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-header__hamburger {
    display: none;
  }
}

.p-header__hamburger span {
  width: 100%;
  height: 2px;
  display: inline-block;
  background-color: #000000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-header__hamburger.open span:nth-child(1) {
  -webkit-transform: translateY(0.8rem) rotate(45deg);
          transform: translateY(0.8rem) rotate(45deg);
}

.p-header__hamburger.open span:nth-child(2) {
  opacity: 0;
}

.p-header__hamburger.open span:nth-child(3) {
  -webkit-transform: translateY(-0.8rem) rotate(-45deg);
          transform: translateY(-0.8rem) rotate(-45deg);
}

.p-header__nav {
  display: none;
  position: fixed;
  height: 100vh;
  width: 100%;
  background-color: #fff;
  top: 0;
  left: 0;
  padding-top: 10rem;
  padding-bottom: 1rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media screen and (min-width: 1024px) {
  .p-header__nav {
    display: block;
    position: static;
    height: inherit;
    width: 100%;
    padding: 0;
  }
}

.p-header__nav-inner {
  height: 100%;
  overflow: auto;
}
@media screen and (min-width: 1024px) {
  .p-header__nav-inner {
    overflow: visible;
    overflow: initial;
    height: inherit;
  }
}

.p-header__nav-inner2 {
  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;
  height: inherit;
  min-height: 48rem;
}
@media screen and (min-width: 768px) {
  .p-header__nav-inner2 {
    margin-top: 2rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-header__nav-inner2 {
    margin-top: 0;
    min-height: 0;
    min-height: initial;
    height: inherit;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.p-header__nav-list {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .p-header__nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: auto;
    width: initial;
  }
}

@media screen and (min-width: 1024px) {
  .p-header__nav-item {
    height: 100%;
  }
}

.p-header__nav-item a {
  -webkit-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
  display: block;
  text-align: center;
  padding: 1rem 0;
  font-size: 1.6rem;
  line-height: 2.8333333333;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 1024px) {
  .p-header__nav-item a {
    padding: 2.2rem 1.5rem;
    height: inherit;
    font-size: 1.8rem;
  }
}

@media screen and (min-width: 1024px) {
  .p-header__nav-item:first-child a {
    padding-left: 0;
  }
}

.p-header__btn-list {
  margin-top: 2rem;
}
@media screen and (min-width: 1024px) {
  .p-header__btn-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 0;
  }
}

.p-header__contact-btn {
  margin-top: 2rem;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-header__contact-btn {
    margin-top: 0;
    margin-left: 3rem;
  }
}

.p-heading {
  margin-top: max(50px, 8%);
}
@media screen and (min-width: 768px) {
  .p-heading {
    margin-top: max(50px, 8%);
  }
}
@media screen and (min-width: 1024px) {
  .p-heading {
    margin-top: max(150px, 8%);
  }
}

.p-heading__inner {
  max-width: 120rem;
  padding-right: 2rem;
  padding-left: 2rem;
  margin-inline: auto;
}

.p-heading__title {
  text-align: center;
}

.p-heading__sub {
  -webkit-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
  font-size: 2rem;
  line-height: 2.3125;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-heading__sub {
    font-size: 3.2rem;
  }
}

.p-heading__main {
  -webkit-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
  font-size: 2.8rem;
  line-height: 1.5416666667;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-heading__main {
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-heading__main {
    font-size: 4.8rem;
  }
}

.p-heading__category {
  -webkit-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
  font-size: 2.2rem;
  line-height: 2.3125;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-heading__category {
    font-size: 3.2rem;
  }
}

.p-heading__wrapper {
  margin-top: 3.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-heading__wrapper {
    margin-top: 6.3rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-heading__left {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-heading__left {
    width: 39.25%;
  }
}

.p-heading__img {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-heading__img {
    margin-top: 1.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-heading__img {
    margin-left: 3.8rem;
    margin-top: 1.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-heading__img::before {
    content: "";
    display: inline-block;
    background: url(../images/heading-img02.svg) no-repeat center/contain;
    position: absolute;
    width: 27.6rem;
    height: 36.3rem;
    top: 52%;
    bottom: 8%;
    right: 20%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: -1;
  }
}
@media screen and (min-width: 1024px) {
  .p-heading__img::before {
    width: 44.6rem;
    height: 46.3rem;
    top: 52%;
    bottom: auto;
    bottom: initial;
    right: 24%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.p-heading__img img {
  width: 100%;
  max-width: 9.1rem;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 91/399;
}
@media screen and (min-width: 768px) {
  .p-heading__img img {
    aspect-ratio: 91/399;
  }
}

.p-heading__contents {
  text-align: center;
  margin-top: 1.2rem;
}
@media screen and (min-width: 768px) {
  .p-heading__contents {
    text-align: center;
    margin-top: 2.2rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-heading__contents {
    text-align: left;
    margin-top: 4.2rem;
    margin-left: 20rem;
  }
}

.p-heading__contents p {
  -webkit-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
  font-size: 1.6rem;
  line-height: 1.625;
  font-weight: 700;
}
@media screen and (min-width: 1024px) {
  .p-heading__contents p {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-heading__contents p {
    font-size: 2.4rem;
  }
}

.p-heading__body {
  width: 100%;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-heading__body {
    width: 50%;
    margin-top: 0;
  }
}

.p-heading__body p {
  -webkit-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
  line-height: 2.45;
}
@media screen and (min-width: 768px) {
  .p-heading__body p {
    font-size: 2rem;
  }
}

.p-heading__body p:not(:first-child) {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-heading__body p:not(:first-child) {
    margin-top: 2rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-heading__body p:not(:first-child) {
    margin-top: 5rem;
  }
}

.p-heading__btn {
  margin-top: 2rem;
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-heading__btn {
    margin-top: 4rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-heading__btn {
    margin-top: 8rem;
  }
}

.p-lower-mv {
  background: url(../images/lower-mv.jpg) no-repeat center/cover;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 22.1rem;
}
@media screen and (min-width: 768px) {
  .p-lower-mv {
    width: 100%;
    height: 40.3rem;
  }
}

.p-lower-mv__title {
  -webkit-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
  text-shadow: 4px 4px 5.3px rgb(0, 0, 0);
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  font-size: 3.2rem;
  text-align: center;
  line-height: 1.275;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-lower-mv__title {
    font-size: 4rem;
  }
}

.p-mv {
  background: url(../images/mv-bg-sp.jpg) no-repeat center/cover;
  height: 63rem;
}
@media screen and (min-width: 768px) {
  .p-mv {
    background: url(../images/mv-bg.jpg) no-repeat center/cover;
    aspect-ratio: 1920/860;
    height: auto;
    height: initial;
  }
}

.p-mv__inner {
  height: inherit;
  position: relative;
  max-width: 120rem;
  padding: 2.3rem 2rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-mv__inner {
    padding: 4.3rem 2rem;
  }
}

.p-mv-container {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-mv-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: left;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.p-mv__img {
  position: absolute;
  bottom: 3rem;
  left: calc(50% - 16rem);
}
@media screen and (min-width: 768px) {
  .p-mv__img {
    position: static;
    position: initial;
    bottom: 0;
    left: 0;
  }
}

.p-mv__img img {
  max-width: 14.5rem;
  aspect-ratio: 133/381;
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .p-mv__img img {
    max-width: 31.5rem;
    aspect-ratio: 315/812;
  }
}

@media screen and (min-width: 768px) {
  .p-mv__title {
    margin-top: 12rem;
  }
}

.p-mv__sub-title {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-mv__sub-title {
    text-align: left;
  }
}

.p-mv__sub-title-sm {
  display: inline-block;
  -webkit-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
  font-size: 1.6rem;
  line-height: 1.55;
  font-weight: 700;
  padding-bottom: 1px;
  border-bottom: 1px solid black;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .p-mv__sub-title-sm {
    font-size: 2.4rem;
    line-height: 2.25;
  }
}
@media screen and (min-width: 1024px) {
  .p-mv__sub-title-sm {
    font-size: 3.2rem;
    line-height: 2.25;
  }
}

.p-mv__sub-title-bg {
  display: inline-block;
  -webkit-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
  font-size: 2rem;
  line-height: 1.55;
  font-weight: 700;
  padding-bottom: 1px;
  border-bottom: 1px solid black;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .p-mv__sub-title-bg {
    font-size: 2.5rem;
    line-height: 2.25;
  }
}
@media screen and (min-width: 1024px) {
  .p-mv__sub-title-bg {
    font-size: 3.2rem;
    line-height: 2.25;
  }
}

.p-mv__main-title {
  -webkit-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
  font-size: 3.2rem;
  line-height: 1.59375;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-mv__main-title {
    margin-top: 3.4rem;
    font-size: 4rem;
    line-height: 1.2549019608;
  }
}
@media screen and (min-width: 1024px) {
  .p-mv__main-title {
    margin-top: 3.4rem;
    font-size: 6.4rem;
    line-height: 1.2549019608;
  }
}

.p-mv__main-title span {
  -webkit-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
  display: inline-block;
  font-family: "Hina Mincho", serif;
  font-size: 2.4rem;
  line-height: 2.125;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-mv__main-title span {
    margin-top: 2.5rem;
    font-size: 3.2rem;
    line-height: 1.0625;
  }
}
@media screen and (min-width: 1024px) {
  .p-mv__main-title span {
    margin-top: 2.5rem;
    font-size: 4.8rem;
    line-height: 1.0625;
  }
}

.p-mv__circle-wrapper {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: -119%;
  margin-left: 70%;
}
@media screen and (min-width: 768px) {
  .p-mv__circle-wrapper {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-top: 0;
    margin-bottom: 0;
  }
}

.p-mv__circle-a {
  position: absolute;
  max-width: 12.6rem;
  top: 45rem;
  right: calc(50% - 15rem);
}
@media screen and (min-width: 768px) {
  .p-mv__circle-a {
    max-width: 19rem;
    aspect-ratio: 1/1;
    top: auto;
    top: initial;
    bottom: 6.6rem;
    right: 30rem;
  }
}
@media screen and (min-width: 900px) {
  .p-mv__circle-a {
    max-width: 21.7rem;
    aspect-ratio: 1/1;
    top: auto;
    top: initial;
    bottom: 6.6rem;
    right: 41rem;
  }
}

.p-mv__circle-g {
  position: absolute;
  max-width: 12.6rem;
  aspect-ratio: 126/124;
  top: 31.6rem;
  right: calc(50% - 6.8rem);
}
@media screen and (min-width: 768px) {
  .p-mv__circle-g {
    max-width: 19rem;
    aspect-ratio: 220/217;
    top: auto;
    top: initial;
    bottom: 17rem;
    right: 14rem;
  }
}
@media screen and (min-width: 900px) {
  .p-mv__circle-g {
    max-width: 22rem;
    aspect-ratio: 220/217;
    top: auto;
    top: initial;
    bottom: 20rem;
    right: 14rem;
  }
}

.p-mv__circle-b {
  position: absolute;
  max-width: 12.6rem;
  aspect-ratio: 126/124;
  top: 22rem;
  right: calc(50% - 15.8rem);
}
@media screen and (min-width: 768px) {
  .p-mv__circle-b {
    max-width: 19rem;
    aspect-ratio: 220/217;
    top: 42rem;
    right: 0;
  }
}
@media screen and (min-width: 900px) {
  .p-mv__circle-b {
    max-width: 22rem;
    aspect-ratio: 220/217;
    top: 26rem;
    right: 0;
  }
}

.p-warning {
  margin-top: 10rem;
}
@media screen and (min-width: 768px) {
  .p-warning {
    margin-top: 15rem;
  }
}

.p-warning__inner {
  max-width: 122rem;
  padding-right: 2rem;
  padding-left: 2rem;
  margin-inline: auto;
}

.p-warning__wrapper {
  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;
}

.p-warning__text {
  -webkit-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
  margin-top: 2rem;
  color: #C20306;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(0%, #FFF878));
  background: linear-gradient(transparent 50%, #FFF878 0%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-warning__text {
    font-size: 3rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-warning__text {
    margin-top: 4rem;
    font-size: 4.6rem;
  }
}

#page-top {
  display: none;
  width: 50px;
  height: 50px;
  position: fixed;
  right: 0.8rem;
  bottom: 8rem;
}
@media screen and (min-width: 768px) {
  #page-top {
    right: 1.6rem;
    bottom: 1.2rem;
  }
}

#move-page-top {
  color: #fff;
  line-height: 50px;
  text-decoration: none;
  display: block;
  cursor: pointer;
}

#page-top p {
  margin: 0;
  padding: 0;
  text-align: center;
  background: #FED328;
  opacity: 0.8;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 100%;
  border: 1px solid #fff;
}

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

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

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

.u-mobile {
  display: block;
}
@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}
/*# sourceMappingURL=styles.css.map */
