@charset "UTF-8";
/*!
  Reset Stylesheet
  Author: yama-dev - https://github.com/yama-dev
  */
html, body, div, span, object, iframe, embed, main,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, u, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, tbody, tfoot, thead, tr, th, td, caption,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video, source {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: middle;
  background: transparent;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

blockquote, q {
  quotes: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

ol, ul {
  list-style: none;
}

button, input, select, textarea, datalist {
  vertical-align: middle;
  min-height: 1.5em;
  background-color: transparent;
}

input[type=submit], input[type=reset] {
  cursor: pointer;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
}

a[href^=tel] {
  display: inline-block;
  color: inherit;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

iframe {
  border: none;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0;
}

[role=button] {
  cursor: pointer;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

body {
  line-height: 1;
}

body, button, input, select, textarea, datalist {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  word-wrap: break-word;
}

:root {
  --color-black: #000;
  --color-white: #fff;
  --color-blue1: #4b869e;
  --color-blue2: #8abfc1;
  --color-link: #57edf9;
  --font-jp: "Zen Kaku Gothic New", "Noto Sans JP", "Outfit", "游ゴシック", YuGothic, "Helvetica", "ヒラギノ角ゴ ProN W3", "HiVragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Arial, sans-serif;
  --font-title: "Zen Old Mincho", "Noto Sans JP", "Outfit", "游ゴシック", YuGothic, "Helvetica", "ヒラギノ角ゴ ProN W3", "HiVragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Arial, sans-serif;
  --ease-main: cubic-bezier(0.33, 1, 0.68, 1);
}

img {
  width: 100%;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto;
  display: block;
  vertical-align: middle;
}

@media screen and (min-width: 900px) {
  .is-pc {
    display: block;
  }
  .is-sp {
    display: none;
  }
  .is-pc-inline {
    display: inline-block;
  }
  .is-sp-inline {
    display: none;
  }
}
@media screen and (max-width: 899px) {
  .is-pc {
    display: none;
  }
  .is-sp {
    display: block;
  }
  .is-pc-inline {
    display: none;
  }
  .is-sp-inline {
    display: inline-block;
  }
}
html {
  font-size: 0.625em;
}

body {
  font-family: var(--font-jp);
  color: var(--color-white);
}

h2,
h3 {
  font-weight: 400;
}

.svg-symbol {
  display: none;
}

@keyframes flash {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}
a {
  text-decoration: none;
}

.p-bg {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: url(../img/bg_1_pc.jpg) no-repeat center/cover;
}

.p-title {
  font-family: var(--font-title);
  font-size: 5.8rem;
  font-style: italic;
  text-align: center;
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.6s var(--ease-main) 0.1s, opacity 0.6s var(--ease-main) 0.1s;
}
.p-scroll.is-active .p-title {
  transform: translateY(0);
  opacity: 1;
}
@media screen and (max-width: 899px) {
  .p-title {
    font-size: 3rem;
  }
}

.p-link__text {
  display: block;
  padding: 7.4% 0 8%;
  font-size: 1.8rem;
  text-align: center;
  font-family: var(--font-title);
  color: var(--color-white);
  background: url(../img/btn_bg.png) no-repeat center/contain;
  transition: transform 0.4s var(--ease-main);
}
@media screen and (min-width: 900px) {
  .p-link__text:hover {
    transform: scale(0.97);
  }
  .p-link__text:hover .p-link__text-main {
    animation: flash 0.15s var(--ease-main);
  }
}
@media screen and (max-width: 899px) {
  .p-link__text {
    padding: 7.8% 0 9%;
    font-size: 1.5rem;
  }
}

.p-box {
  width: 71.4%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 3.5% 3.5% 4.2%;
  background-color: rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 900px) {
  .p-box {
    min-width: 800px;
  }
}
@media screen and (max-width: 899px) {
  .p-box {
    width: 90%;
    padding: 12.5% 2.4% 13.5%;
  }
}

.p-contents {
  margin-bottom: 28px;
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.6s var(--ease-main) 0.2s, opacity 0.6s var(--ease-main) 0.2s;
}
.p-contents:nth-of-type(1) {
  transition-delay: 0.2s;
}
.p-contents:nth-of-type(2) {
  transition-delay: 0.3s;
}
.p-contents:nth-of-type(3) {
  transition-delay: 0.4s;
}
.p-contents:nth-of-type(4) {
  transition-delay: 0.5s;
}
.p-contents:nth-of-type(5) {
  transition-delay: 0.6s;
}
.p-contents:nth-of-type(6) {
  transition-delay: 0.7s;
}
.p-contents:nth-of-type(7) {
  transition-delay: 0.8s;
}
.p-contents:nth-of-type(8) {
  transition-delay: 0.9s;
}
.p-contents:nth-of-type(9) {
  transition-delay: 1s;
}
.p-contents:nth-of-type(10) {
  transition-delay: 1.1s;
}
.p-scroll.is-active .p-contents {
  transform: translateY(0);
  opacity: 1;
}
@media screen and (max-width: 899px) {
  .p-contents {
    margin-bottom: 4px;
  }
}
.p-contents:last-of-type {
  margin-bottom: 0;
}

.p-contents__head {
  width: 89%;
  margin: 0 auto;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  padding-bottom: 16px;
  position: relative;
  background: url(../img/line_pc.png) no-repeat center bottom/contain;
}
@media screen and (max-width: 899px) {
  .p-contents__head {
    width: 95%;
    padding-bottom: 14px;
    text-align: center;
    font-size: 1.3rem;
    background: url(../img/line_sp.png) no-repeat center bottom/contain;
  }
}

.p-contents__detail {
  width: 89%;
  margin: 0 auto;
  padding: 22px 0;
  text-align: center;
}
@media screen and (max-width: 899px) {
  .p-contents__detail {
    width: 94%;
    margin: 0 auto;
    padding: 17px 0;
  }
}
.p-contents__detail a {
  color: var(--color-link);
}
@media screen and (min-width: 900px) {
  .p-contents__detail a:hover {
    animation: flash 0.15s var(--ease-main);
  }
}
.p-contents__detail p {
  margin-bottom: 20px;
  font-size: 1.6rem;
  line-height: 1.85;
}
@media screen and (max-width: 899px) {
  .p-contents__detail p {
    font-size: 1.2rem;
  }
}
.p-contents__detail p .u-small {
  display: block;
  font-size: 1.4rem;
  margin-top: 3px;
}
@media screen and (max-width: 899px) {
  .p-contents__detail p .u-small {
    margin-top: 0;
    font-size: 1.1rem;
  }
}
.p-contents__detail p:last-of-type {
  margin-bottom: 0;
}
.p-contents__detail ul {
  font-size: 1.6rem;
  line-height: 1.85;
}
.p-wrap {
  position: relative;
  overflow: hidden;
}

.p-kv {
  padding-top: min(8%, 112px);
  padding-bottom: min(16.6%, 232px);
  position: relative;
}
@media screen and (max-width: 899px) {
  .p-kv {
    padding-top: 18.6%;
    padding-bottom: 37.3%;
  }
}

.p-kv__title {
  width: 64.3%;
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: min(4.5%, 64px);
}
@media screen and (min-width: 900px) {
  .p-kv__title {
    min-width: 800px;
  }
}
@media screen and (max-width: 899px) {
  .p-kv__title {
    width: 113%;
    margin-bottom: 40px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
}
.p-kv__title img {
  width: 100%;
  transform: translateY(12px);
  opacity: 0;
  transition: transform 1s var(--ease-main), opacity 0.7s var(--ease-main);
}
.is-load .p-kv__title img {
  transform: translateY(0);
  opacity: 1;
}

.p-kv__lead {
  text-align: center;
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
  transform: translateY(10px);
  opacity: 0;
  transition: transform 1s var(--ease-main) 0.1s, opacity 0.7s var(--ease-main) 0.1s;
}
.is-load .p-kv__lead {
  transform: translateY(0);
  opacity: 1;
}
@media screen and (max-width: 899px) {
  .p-kv__lead {
    font-size: 1.3rem;
    line-height: 1.87;
    letter-spacing: 0.1em;
  }
}

.p-kv__image {
  width: 71.4%;
  max-width: 1100px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 53.3%);
}
@media screen and (min-width: 900px) {
  .p-kv__image {
    min-width: 840px;
  }
}
@media screen and (max-width: 899px) {
  .p-kv__image {
    width: 90%;
  }
}
.p-kv__image img {
  width: 100%;
  transform: translateY(10px);
  opacity: 0;
  transition: transform 1s var(--ease-main) 0.2s, opacity 0.7s var(--ease-main) 0.2s;
}
.is-load .p-kv__image img {
  transform: translateY(0);
  opacity: 1;
}

.p-main__block {
  padding-top: min(20.2%, 283px);
  padding-bottom: min(11%, 154px);
  background: url(../img/bg_2_pc.jpg) repeat-y center/100% auto;
}
@media screen and (max-width: 899px) {
  .p-main__block {
    padding-top: 39%;
    padding-bottom: 21.6%;
  }
}

.p-join {
  margin-bottom: 50px;
  opacity: 0;
  transform: scale(0.98);
  transition: transform 0.4s var(--ease-main);
}
.p-join.p-scroll.is-active {
  transform: scale(1);
  animation: flash 0.15s var(--ease-main) forwards;
}

.p-join__title {
  margin-bottom: 30px;
}
@media screen and (max-width: 899px) {
  .p-join__title {
    margin-bottom: 24px;
  }
}

.p-join__detail {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.9;
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.6s var(--ease-main) 0.1s, opacity 0.6s var(--ease-main) 0.1s;
}
.p-scroll.is-active .p-join__detail {
  transform: translateY(0);
  opacity: 1;
}
@media screen and (max-width: 899px) {
  .p-join__detail {
    font-size: 1.3rem;
  }
}

.p-join__link {
  width: 472px;
  margin: 32px auto 0;
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.6s var(--ease-main) 0.2s, opacity 0.6s var(--ease-main) 0.2s;
}
.p-scroll.is-active .p-join__link {
  transform: translateY(0);
  opacity: 1;
}
@media screen and (max-width: 899px) {
  .p-join__link {
    width: 91%;
    margin: 18px auto 0;
  }
}
.p-comment {
  margin-bottom: 50px;
  padding: 44px 44px 54px;
  opacity: 0;
  transform: scale(0.98);
  transition: transform 0.4s var(--ease-main);
}
.p-comment.p-scroll.is-active {
  transform: scale(1);
  animation: flash 0.15s var(--ease-main) forwards;
}
@media screen and (max-width: 899px) {
  .p-comment {
    margin-bottom: 50px;
    padding: 44px 12px 54px;
  }
}

.p-comment__detail {
  margin-bottom: 26px;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.9;
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.6s var(--ease-main) 0.1s, opacity 0.6s var(--ease-main) 0.1s;
}
.p-scroll.is-active .p-comment__detail {
  transform: translateY(0);
  opacity: 1;
}
@media screen and (max-width: 899px) {
  .p-comment__detail {
    font-size: 1.3rem;
    line-height: 1.85;
  }
}

.p-comment__link {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.6s var(--ease-main) 0.2s, opacity 0.6s var(--ease-main) 0.2s;
}
.p-scroll.is-active .p-comment__link {
  transform: translateY(0);
  opacity: 1;
}
.p-comment__link-head {
  margin-right: 15px;
  font-family: var(--font-title);
  font-style: italic;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 899px) {
  .p-comment__link-head {
    margin-right: 10px;
    font-size: 1rem;
  }
}
.p-comment__link-name {
  margin-right: 15px;
  font-family: var(--font-title);
  font-style: italic;
  font-size: 4rem;
}
@media screen and (max-width: 899px) {
  .p-comment__link-name {
    margin-right: 10px;
    font-size: 2.7rem;
  }
}
.p-comment__link-icon {
  width: 40px;
  cursor: pointer;
}
@media screen and (min-width: 900px) {
  .p-comment__link-icon:hover {
    animation: flash 0.15s var(--ease-main);
  }
}
@media screen and (max-width: 899px) {
  .p-comment__link-icon {
    width: 32px;
  }
}
.p-comment__link-icon img {
  width: 100%;
}

.p-about {
  margin-bottom: 50px;
  padding: 3.5% 3.5% 2.4%;
  opacity: 0;
  transform: scale(0.98);
  transition: transform 0.4s var(--ease-main);
}
.p-about.p-scroll.is-active {
  transform: scale(1);
  animation: flash 0.15s var(--ease-main) forwards;
}
@media screen and (max-width: 899px) {
  .p-about {
    padding: 11.3% 2.4% 5.5%;
  }
}

.p-about__title {
  margin-bottom: 50px;
}
@media screen and (max-width: 899px) {
  .p-about__title {
    margin-bottom: 28px;
  }
}

.p-prize {
  margin-bottom: 50px;
  opacity: 0;
  transform: scale(0.98);
  transition: transform 0.4s var(--ease-main);
}
.p-prize.p-scroll.is-active {
  transform: scale(1);
  animation: flash 0.15s var(--ease-main) forwards;
}
@media screen and (max-width: 899px) {
  .p-prize {
    padding: 10.2% 2.4% 9.3%;
  }
}

.p-prize__title {
  margin-bottom: 42px;
}
@media screen and (max-width: 899px) {
  .p-prize__title {
    margin-bottom: 28px;
  }
}

.p-prize__lead {
  margin-bottom: 22px;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.9;
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.6s var(--ease-main) 0.2s, opacity 0.6s var(--ease-main) 0.2s;
}
.p-scroll.is-active .p-prize__lead {
  transform: translateY(0);
  opacity: 1;
}
@media screen and (max-width: 899px) {
  .p-prize__lead {
    margin-bottom: 15px;
    font-size: 1.3rem;
  }
}

.p-prize__image {
  width: 77.7%;
  margin: 0 auto;
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.6s var(--ease-main) 0.3s, opacity 0.6s var(--ease-main) 0.3s;
}
.p-scroll.is-active .p-prize__image {
  transform: translateY(0);
  opacity: 1;
}
@media screen and (max-width: 899px) {
  .p-prize__image {
    width: 89%;
  }
}

.p-license {
  opacity: 0;
  transform: scale(0.98);
  transition: transform 0.4s var(--ease-main);
}
.p-license.p-scroll.is-active {
  transform: scale(1);
  animation: flash 0.15s var(--ease-main) forwards;
}

.p-license__title {
  margin-bottom: 34px;
}
@media screen and (max-width: 899px) {
  .p-license__title {
    margin-bottom: 38px;
  }
}

.p-license__caution {
  width: 90%;
  margin: 0 auto;
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.6s var(--ease-main) 0.2s, opacity 0.6s var(--ease-main) 0.2s;
}
.p-scroll.is-active .p-license__caution {
  transform: translateY(0);
  opacity: 1;
}
@media screen and (max-width: 899px) {
  .p-license__caution {
    width: 100%;
  }
}
.p-license__caution li {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 1.4rem;
  line-height: 1.8;
}
@media screen and (max-width: 899px) {
  .p-license__caution li {
    font-size: 1.1rem;
    line-height: 1.8;
  }
}

.p-post {
  padding-top: min(9.9%, 138px);
  padding-bottom: min(9.9%, 138px);
}
@media screen and (max-width: 899px) {
  .p-post {
    padding-top: 23%;
    padding-bottom: 18.7%;
  }
}

.p-post__title {
  margin-bottom: 52px;
}
@media screen and (max-width: 899px) {
  .p-post__title {
    margin-bottom: 32px;
  }
}

.p-post__contents {
  width: 71.4%;
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 899px) {
  .p-post__contents {
    width: 89.4%;
  }
}
.p-post__contents-list {
  display: flex;
  flex-wrap: wrap;
}
.p-post__contents-list-item {
  width: 31%;
  margin-right: 3.5%;
  margin-bottom: 3.5%;
  padding: 20px 20px 30px;
  position: relative;
  background: linear-gradient(to right, var(--color-blue1), var(--color-blue2));
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.6s var(--ease-main) 0.2s, opacity 0.6s var(--ease-main) 0.2s;
}
.p-post__contents-list-item:nth-of-type(1) {
  transition-delay: 0.2s;
}
.p-post__contents-list-item:nth-of-type(2) {
  transition-delay: 0.3s;
}
.p-post__contents-list-item:nth-of-type(3) {
  transition-delay: 0.4s;
}
.p-post__contents-list-item:nth-of-type(4) {
  transition-delay: 0.5s;
}
.p-post__contents-list-item:nth-of-type(5) {
  transition-delay: 0.6s;
}
.p-post__contents-list-item:nth-of-type(6) {
  transition-delay: 0.7s;
}
.p-post__contents-list-item:nth-of-type(7) {
  transition-delay: 0.8s;
}
.p-post__contents-list-item:nth-of-type(8) {
  transition-delay: 0.9s;
}
.p-post__contents-list-item:nth-of-type(9) {
  transition-delay: 1s;
}
.p-post__contents-list-item:nth-of-type(10) {
  transition-delay: 1.1s;
}
.p-scroll.is-active .p-post__contents-list-item {
  transform: translateY(0);
  opacity: 1;
}
@media screen and (min-width: 900px) {
  .p-post__contents-list-item:nth-of-type(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 899px) {
  .p-post__contents-list-item {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 4.6%;
    padding: 3% 3% 5.4%;
  }
  .p-post__contents-list-item:nth-of-type(2n) {
    margin-right: 0;
  }
}
.p-post__contents-list-item .p-in-image {
  margin-bottom: 17px;
}
@media screen and (max-width: 899px) {
  .p-post__contents-list-item .p-in-image {
    margin-bottom: 6px;
  }
}
.p-post__contents-list-item .p-in-head {
  margin-bottom: 14px;
  padding-bottom: 22px;
  background: url(../img/line_comment.png) no-repeat center bottom/contain;
}
@media screen and (max-width: 899px) {
  .p-post__contents-list-item .p-in-head {
    margin-bottom: 5px;
    padding-bottom: 11px;
  }
}
.p-post__contents-list-item .p-in-head-date {
  margin-bottom: 8px;
  font-size: 1.5rem;
}
@media screen and (max-width: 899px) {
  .p-post__contents-list-item .p-in-head-date {
    margin-bottom: 4px;
    font-size: 1.3rem;
  }
}
.p-post__contents-list-item .p-in-head-name {
  font-size: 1.5rem;
}
@media screen and (max-width: 899px) {
  .p-post__contents-list-item .p-in-head-name {
    font-size: 1.3rem;
  }
}
.p-post__contents-list-item .p-in-detail {
  font-size: 1.5rem;
  line-height: 1.5;
}
@media screen and (max-width: 899px) {
  .p-post__contents-list-item .p-in-detail {
    font-size: 1.2rem;
    line-height: 1.5;
  }
}

.p-caution {
  padding-top: min(9.9%, 138px);
  padding-bottom: min(11.1%, 154px);
  background: url(../img/bg_2_pc.jpg) repeat-y center/100% auto;
}
@media screen and (max-width: 899px) {
  .p-caution {
    padding-top: 20.3%;
    padding-bottom: 21.8%;
    background: url(../img/bg_2_sp.jpg) repeat-y center/100% auto;
  }
}

.p-caution__title {
  margin-bottom: 40px;
}
@media screen and (max-width: 899px) {
  .p-caution__title {
    margin-bottom: 30px;
  }
}

.p-caution__contents {
  padding: 3.5% 3.5% 0.7%;
  opacity: 0;
  transform: scale(0.98);
  transition: transform 0.4s var(--ease-main);
}
.p-scroll.is-active .p-caution__contents {
  transform: scale(1);
  animation: flash 0.15s var(--ease-main) forwards;
}
@media screen and (max-width: 899px) {
  .p-caution__contents {
    padding: 10% 2.1% 4%;
  }
}
.p-caution__contents-block {
  margin-bottom: 7px;
}
@media screen and (max-width: 899px) {
  .p-caution__contents-block {
    margin-bottom: 0;
  }
}
.p-caution__contents-block .p-in-detail {
  text-align: left;
}
@media screen and (max-width: 899px) {
  .p-caution__contents-block .p-in-detail {
    width: 98%;
  }
}
.p-caution__contents-block .p-in-detail p {
  margin-bottom: 25px;
  font-size: 1.4rem;
  line-height: 1.85;
}
@media screen and (max-width: 899px) {
  .p-caution__contents-block .p-in-detail p {
    margin-bottom: 19px;
    font-size: 1.1rem;
    line-height: 1.9;
  }
}
.p-caution__contents-block .p-in-detail ul {
  margin-bottom: 25px;
  font-size: 1.4rem;
  line-height: 1.78;
}
@media screen and (max-width: 899px) {
  .p-caution__contents-block .p-in-detail ul {
    margin-bottom: 17px;
    font-size: 1.2rem;
    line-height: 1.7;
  }
}
.p-caution__contents-block .p-in-detail li {
  padding-left: 1em;
  text-indent: -1em;
}

.p-footer {
  padding: 106px 0 81px;
  position: relative;
}
@media screen and (max-width: 899px) {
  .p-footer {
    padding: 74px 0 57px;
  }
}

.p-footer__share {
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-footer__share-head {
  font-size: 1.2rem;
  margin-right: 42px;
  font-family: var(--font-title);
}
@media screen and (max-width: 899px) {
  .p-footer__share-head {
    font-size: 1.3rem;
    margin-right: 36px;
  }
}
.p-footer__share-list {
  display: flex;
  align-items: center;
}
.p-footer__share-list-item {
  width: 25px;
  margin-right: 28px;
}
@media screen and (min-width: 900px) {
  .p-footer__share-list-item:hover {
    animation: flash 0.15s var(--ease-main);
  }
}
.p-footer__share-list-item:last-of-type {
  margin-right: 0;
}

.p-footer__link {
  margin-top: 63px;
}
@media screen and (max-width: 899px) {
  .p-footer__link {
    margin-top: 48px;
  }
}
.p-footer__link-list {
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-footer__link-list-item {
  position: relative;
  padding-right: 44px;
  font-family: var(--font-title);
  font-size: 1.5rem;
}
@media screen and (max-width: 899px) {
  .p-footer__link-list-item {
    padding-right: 50px;
    font-size: 1.4rem;
  }
}
.p-footer__link-list-item::before {
  content: "";
  display: block;
  width: 1px;
  height: 15px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background-color: var(--color-white);
}
@media screen and (max-width: 899px) {
  .p-footer__link-list-item::before {
    height: 12px;
  }
}
.p-footer__link-list-item:last-of-type {
  padding-right: 0;
}
.p-footer__link-list-item:last-of-type::before {
  display: none;
}
.p-footer__link-list-item a {
  color: var(--color-white);
}
@media screen and (min-width: 900px) {
  .p-footer__link-list-item a:hover {
    animation: flash 0.15s var(--ease-main);
  }
}

.p-footer__caution {
  text-align: center;
  line-height: 1.6;
  margin-top: 34px;
  font-size: 1.1rem;
}
@media screen and (max-width: 899px) {
  .p-footer__caution {
    font-size: 1.1rem;
  }
}

.p-footer__copy {
  text-align: center;
  margin-top: 14px;
  font-size: 1.1rem;
}
@media screen and (max-width: 899px) {
  .p-footer__copy {
    margin-top: 27px;
  }
}

.m-modal.m-modal-custom .m-modal__content {
  max-width: 1000px;
}
.is-modal-overflow-prep .m-modal.m-modal-custom .m-modal__content {
  margin: 0 auto;
}
@media screen and (max-width: 899px) {
  .m-modal.m-modal-custom .m-modal__content {
    width: 90%;
  }
}
.m-modal.m-modal-custom .m-modal__close-btn {
  outline: none;
}
@media screen and (min-width: 900px) {
  .m-modal.m-modal-custom .m-modal__close-btn:hover {
    animation: flash 0.15s var(--ease-main);
  }
}
@media screen and (max-width: 899px) {
  .m-modal.m-modal-custom .m-modal__close-btn {
    width: 52px;
    height: 52px;
    top: 0;
    right: -5px;
  }
  .m-modal.m-modal-custom .m-modal__close-btn::before, .m-modal.m-modal-custom .m-modal__close-btn::after {
    height: 52px;
  }
}

@media screen and (max-width: 899px) {
  .p-comment__modal {
    padding: 63px 0;
  }
}

.p-comment__modal-head {
  margin-bottom: 36px;
  text-align: center;
  font-size: 4rem;
  letter-spacing: 0.02em;
  font-family: var(--font-title);
  font-style: italic;
}
@media screen and (max-width: 899px) {
  .p-comment__modal-head {
    margin-bottom: 20px;
    font-size: 2.6rem;
  }
}

.p-comment__modal-inner {
  padding: 60px 20px 90px;
  background: linear-gradient(to right, var(--color-blue1), var(--color-blue2));
}
@media screen and (max-width: 899px) {
  .p-comment__modal-inner {
    padding: 40px 12px 48px;
  }
}

.p-comment__modal-detail {
  font-size: 1.6rem;
  line-height: 1.85;
}
.p-comment__modal-detail .p-in-item {
  margin-bottom: 40px;
}
.p-comment__modal-detail .p-in-item:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 899px) {
  .p-comment__modal-detail {
    font-size: 1.2rem;
    line-height: 2;
  }
}