@charset "UTF-8";
.text-serif-en {
  font-family: Georgia, Times, "Times New Roman", serif;
}

:root {
  --delay: 0;
  --duration: 800ms;
  --iterations: 1;
}

.anmContent.fadeup {
  opacity: 0;
}
.anmContent.fadeup.is-animated {
  animation: fadeup 1.5s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}
.anmContent.fadeupFast {
  opacity: 0;
}
.anmContent.fadeupFast.is-animated {
  animation: fadeupFast 1.5s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}

@keyframes fadeup {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeupFast {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.reveal-text, .reveal-text::after {
  animation-duration: var(--duration, 800ms);
  animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  animation-delay: var(--animation-delay, 2s);
  animation-iteration-count: var(--iterations, 1);
  animation-fill-mode: both;
}

.reveal-text {
  position: relative;
  color: var(--text-color, #000);
  white-space: nowrap;
  opacity: 0;
  --animation-duration: var(--duration, 800ms);
  --animation-delay: var(--delay, 0);
  --animation-iterations: var(--iterations, 1);
}
.reveal-text::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  background-color: var(--text-color, #000);
  transform: scaleX(0);
  transform-origin: 0 50%;
  pointer-events: none;
}
.reveal-text.is-animated {
  opacity: 1;
  animation-name: clip-text;
}
.reveal-text.is-animated::after {
  animation-name: text-revealer;
}
.reveal-text.text-wh {
  --text-color: #fff;
}

@keyframes clip-text {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes text-revealer {
  0%, 50% {
    transform-origin: 0 50%;
  }
  60%, 100% {
    transform-origin: 100% 50%;
  }
  60% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
.anm-text-color {
  color: inherit;
  transition: color 0.3s ease-in-out;
  transition-delay: 500ms;
}
.anm-text-color.is-animated {
  color: #000;
}

.slideup-text .txt {
  display: block;
  overflow: hidden;
}
.slideup-text span {
  display: block;
  transition: transform 0.7s;
  transition-delay: 0.5s;
  transform: translate3d(0, 109%, 0);
}
.slideup-text.is-animated span {
  transform: translate3d(0, 0, 0);
}

.anm-slide-screen {
  position: relative;
  display: block;
  overflow: hidden;
}
.anm-slide-screen::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: var(--screen-color, #000);
  transition: 0.6s ease-in-out;
  transition-delay: 0.2s;
}
.anm-slide-screen img {
  width: 100%;
  opacity: 0;
  transition: 0.3s ease-in-out;
  transition-delay: 0.2s;
}
.anm-slide-screen .inner {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}
.anm-slide-screen.is-animated img {
  opacity: 1;
}
.anm-slide-screen.rtl:hover::before, .anm-slide-screen.rtl.is-animated::before {
  transform: translateX(-101%);
}
.anm-slide-screen.ltr:hover::before, .anm-slide-screen.ltr.is-animated::before {
  transform: translateX(101%);
}
.anm-slide-screen.ttb:hover::before, .anm-slide-screen.ttb.is-animated::before {
  transform: translateY(101%);
}
.anm-slide-screen.btt:hover::before, .anm-slide-screen.btt.is-animated::before {
  transform: translateY(-101%);
}

@media screen and (min-width: 834px) {
  a.anm-slide-screen:hover img {
    opacity: 1;
    transform: scale(1.1);
  }
}
@media screen and (max-width: 833px) {
  .anm-slide-screen.sp-overlay::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background: rgba(0, 0, 0, 0.19);
    pointer-events: none;
  }
}
@media screen and (min-width: 834px) {
  .swap-text-link {
    padding: 0;
    position: relative;
    display: block;
    overflow: hidden;
    transition: transform 0.5s;
  }
  .swap-text-link::after {
    content: attr(data-after);
    position: absolute;
    left: 0;
    display: inline-block;
    transition: inherit;
    transform: translateY(100%);
  }
  .swap-text-link > span {
    display: inline-block;
    transition: inherit;
    transform: translateY(0%);
  }
  .swap-text-link:hover > span {
    transform: translateY(-100%);
  }
  .swap-text-link:hover::after {
    transform: translateY(0%);
  }
}
.c-page-title {
  width: 100%;
  height: 6rem;
  padding-top: 1.6rem;
  background-color: #f8f5f2;
  text-align: center;
  font-family: Georgia;
  font-weight: 400;
  font-size: 1.9rem;
  line-height: 1;
}

.headline-type3 {
  font-size: 1.6rem;
}

.c-font__01 {
  margin-bottom: 2rem;
  font-family: Georgia;
  font-weight: 400;
  font-size: 2.1rem;
  line-height: 1;
}

.c-content {
  max-width: 104rem;
  margin: 0 auto;
}

.c-section_wrap {
  padding: 0 2rem;
}

.cats {
  width: 7.7rem;
  height: 1.8rem;
  margin-right: 1.8rem;
  display: inline-block;
  border: 1px solid #f5cc2d;
  border-radius: 0.3rem;
  background-color: #fff;
  color: #636363;
  text-align: center;
  font-family: Georgia;
  font-size: 1.1rem;
  line-height: 1.8rem;
}
.cats.fanclub {
  border-color: #ffe08a;
  background-color: #ffe08a;
}

.mt-sm {
  margin-top: 20px;
}
.mt-md {
  margin-top: 40px;
}
.mt-lg {
  margin-top: 60px;
}

.mb-sm {
  margin-bottom: 20px;
}
.mb-md {
  margin-bottom: 40px;
}
.mb-lg {
  margin-bottom: 60px;
}

.ms-sm {
  margin-left: 20px;
}
.ms-md {
  margin-left: 40px;
}
.ms-lg {
  margin-left: 60px;
}

.me-sm {
  margin-right: 20px;
}
.me-md {
  margin-right: 40px;
}
.me-lg {
  margin-right: 60px;
}

.c-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-btn__g {
  background-color: #949292;
  color: #fff;
}
.c-btn__g1 {
  background-color: #969494;
  color: #fff;
}
.c-btn__w {
  background-color: #fff;
  color: #949292;
}
.c-btn__y {
  background-color: #ffe08a;
  color: #636363;
}
.c-btn__y {
  background-color: #ffe08a;
  color: #636363;
}
.c-btn__sm {
  width: 14.9rem;
  height: 3.7rem;
  font-size: 1.4rem;
}
.c-btn__lg {
  width: 19.4rem;
  height: 5.2rem;
  font-size: 2.6rem;
}
.c-btn__round {
  width: 35rem;
  height: 5rem;
  border-radius: 100px;
}
.c-btn__round_lg {
  width: 100rem;
  height: 6rem;
  border-radius: 1rem;
}

ul {
  list-style-type: none;
}
ul.dot li {
  margin-left: 1.2em;
  text-indent: -1em;
}
ul.dot li:before {
  content: "・";
  font-feature-settings: initial;
}
ul.dot li + li {
  margin-top: 0.5em;
}
ul.circle li {
  margin-left: 1.2em;
  text-indent: -1em;
}
ul.circle li:before {
  content: "";
  width: 0.8em;
  height: 0.8em;
  margin-right: 0.2em;
  display: inline-block;
  border-radius: 50%;
  background-color: var(--primary-color, #000);
}
ul.circle li + li {
  margin-top: 0.5em;
}
ul.note li {
  margin-left: 1.2em;
  text-indent: -1.1em;
}
ul.note li:before {
  content: "※";
  margin-right: 0.2em;
  font-family: initial;
}
ul.note li + li {
  margin-top: 0.5em;
}

.c-pager__archive {
  margin-top: 5.6rem;
}
.c-pager__archive--inner {
  margin-bottom: 3rem;
  display: flex;
  gap: 1.6rem;
  align-items: center;
  justify-content: center;
}
.c-pager__archive .page-numbers {
  width: 3rem;
  display: inline-block;
  border: 1px solid #000;
  text-align: center;
  line-height: 2.8rem;
}
.c-pager__archive .prev {
  width: initial;
  margin-right: auto;
  border: 0;
}
.c-pager__archive .next {
  width: initial;
  margin-left: auto;
  border: 0;
}
.c-pager__archive .is-hidden {
  visibility: hidden;
}
.c-pager__archive .c-btn__page-navi {
  margin-right: auto;
  margin-left: auto;
}
.c-pager__prevnext {
  margin: 50px auto;
  display: flex;
  justify-content: center;
  list-style-type: none;
}
.c-pager__prevnext li {
  width: 100%;
}
.c-pager__prevnext .prev-link {
  border-right: 1px solid #333;
  text-align: right;
}
.c-pager__prevnext a {
  padding: 0 15px;
  line-height: 1;
}

.back {
  text-align: center;
}

*:focus {
  outline: none;
}

input::-webkit-input-placeholder {
  color: var(--placeholder-color, #ccc);
}
input:-ms-input-placeholder {
  color: var(--placeholder-color, #ccc);
}
input::-moz-placeholder {
  color: var(--placeholder-color, #ccc);
}
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #FFF inset;
}

textarea {
  vertical-align: bottom;
}
textarea::-webkit-input-placeholder {
  color: var(--placeholder-color, #ccc);
}
textarea:-ms-input-placeholder {
  color: var(--placeholder-color, #ccc);
}
textarea::-moz-placeholder {
  color: var(--placeholder-color, #ccc);
}
textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #FFF inset;
}

.form-select {
  width: 100%;
  padding: 0.8em 1.2em;
  appearance: none;
  background-color: #FFF;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20version%3D%221.1%22%20id%3D%22select_arr%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2011.4%206.2%22%20style%3D%22enable-background%3Anew%200%200%2011.4%206.2%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3Anone%3Bstroke%3A%23BFBFBF%3Bstroke-linecap%3Around%3Bstroke-linejoin%3Around%3B%7D%3C%2Fstyle%3E%3Cpath%20id%3D%22path01%22%20class%3D%22st0%22%20d%3D%22M10.7%2C0.6l-5%2C5l-5-5%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 2rem center;
  background-size: 1.6rem;
}
.form-select::-ms-expand {
  display: none;
}

.radio-wrap.horizon {
  margin-bottom: -2rem;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.radio-wrap.horizon .radio {
  margin-bottom: 2rem;
}
.radio-wrap.horizon .radio:not(:last-of-type) {
  margin-right: 2rem;
}
.radio-wrap.vertical .radio + .radio {
  margin-top: 1.2rem;
}

.radio input[type=radio] {
  position: absolute;
  opacity: 0;
}
.radio input[type=radio] + .radio-label {
  display: flex;
  align-items: center;
  line-height: 1;
}
.radio input[type=radio] + .radio-label:before {
  content: "";
  border-radius: 100%;
  border: 1px solid #CCC;
  background-color: #FFF;
  display: inline-block;
  width: 1.8rem;
  height: 1.8rem;
  position: relative;
  top: 0;
  margin-right: 0.5em;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: 0.2s ease-in-out;
}
.radio input[type=radio]:checked + .radio-label:before {
  background-color: var(--primary-color, #000);
  box-shadow: inset 0 0 0 4px #FFF;
  border-color: var(--primary-color, #000);
}
.radio input[type=radio]:focus + .radio-label:before {
  outline: none;
  border-color: var(--primary-color, #000);
}
.radio input[type=radio]:disabled + .radio-label:before {
  box-shadow: inset 0 0 0 4px #f4f4f4;
  border-color: #b4b4b4;
  background: #b4b4b4;
}
.radio input[type=radio] + .radio-label:empty:before {
  margin-right: 0;
}

.checkbox-wrap.horizon {
  margin-bottom: -2rem;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.checkbox-wrap.horizon .checkbox {
  margin-bottom: 2rem;
}
.checkbox-wrap.horizon .checkbox:not(:last-of-type) {
  margin-right: 2rem;
}
.checkbox-wrap.vertical .checkbox + .checkbox {
  margin-top: 1.2rem;
}

.checkbox {
  line-height: 1;
}

.checkbox-input {
  display: none;
}
.checkbox-input:checked + .checkbox-parts:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0.5rem;
  width: 0.8rem;
  height: 1.2rem;
  transform: rotate(40deg);
  border-bottom: 3px solid var(--primary-color, #000);
  border-right: 3px solid var(--primary-color, #000);
  margin-top: -0.8rem;
}

.checkbox-parts {
  padding-left: 2.5rem;
  position: relative;
}
.checkbox-parts:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.8rem;
  height: 1.8rem;
  border: 1px solid #CCC;
  background-color: #FFF;
  border-radius: 0.5rem;
  margin-top: -0.9rem;
}

.form-box + .form-box {
  margin-top: 3.6rem;
}
.form-box dt {
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1;
}
.form-box .required {
  display: inline-block;
  padding: 0.2em 0.5em;
  margin-left: 0.8rem;
  font-size: 1.2rem;
  color: #fff;
  background-color: #b33f4c;
}
.form-box .required::before {
  content: "必須";
}
.form-box .form-error {
  display: none;
  margin-top: 0.5em;
  font-size: 1.3rem;
  color: #b33f4c;
}

.form-column {
  display: flex;
}
.form-column .inner {
  width: 100%;
}
.form-column .inner + .inner {
  margin-left: 1em;
}

.form-control {
  width: 100%;
  padding: 0.8em 1.2em;
  font-size: 16px;
  line-height: 1.5;
  background-color: #fff;
}

textarea.form-control {
  height: 20rem;
  padding: 1.2em;
}

.form-submit {
  --button-width: 20.0rem;
}

html {
  font-size: 62.5%;
}

body {
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-color, #fff);
  color: var(--base-font-color, #000);
  word-break: break-all;
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, メイリオ, "游ゴシック Medium", "Yu Gothic Medium", 游ゴシック体, "Yu Gothic", YuGothic, "MS PGothic", Osaka, arial, sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.6;
}

.section-block {
  width: 100%;
  padding-top: 20rem;
  padding-bottom: 20rem;
  position: relative;
}
.section-block .content + .content {
  margin-top: 20rem;
}

.page-width {
  width: calc(var(--main-width) + 10rem);
  max-width: 100%;
  margin: 0 auto;
  padding-right: 5rem;
  padding-left: 5rem;
}

.w-md {
  width: 98rem;
  margin-right: auto;
  margin-left: auto;
}
.w-sm {
  width: 75rem;
  margin-right: auto;
  margin-left: auto;
}

.pd-x_none {
  padding-right: 0 !important;
  padding-left: 0 !important;
}
.pd-y_none {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.pd-t_none {
  padding-top: 0 !important;
}
.pd-b_none {
  padding-bottom: 0 !important;
}

.round {
  border-radius: 1rem;
}

.bg-dark {
  background-color: #000;
  color: #fff;
}
.bg-wh {
  background-color: #fff;
}

a {
  color: rgba(var(--primary-color), 0.75);
  text-decoration: none;
}
a:hover {
  cursor: pointer;
}

.link-underline {
  text-decoration: underline;
}
.link-block {
  display: block;
}
.link-image {
  display: block;
}
.link-image img {
  transition: opacity 0.3s ease-in-out;
}
.link-image:hover img {
  opacity: 0.7;
}
.link-color {
  color: #2175cb;
}

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

svg {
  vertical-align: bottom;
}

.pic {
  display: block;
}
.pic-overlay {
  position: relative;
}
.pic-overlay::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #000;
  opacity: var(--overlay-opacity, 0.3);
}

.variableBox {
  position: relative;
}
.variableBox > .inner {
  width: 100%;
  padding-bottom: var(--vertical-percent, 62.5%);
}
.variableBox .pic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
}

p {
  line-height: 2;
}
p:not(:last-of-type) {
  margin-bottom: 1em;
}

.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-serif {
  font-family: "游明朝", yumincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "Noto Serif JP", serif;
}
.text-wf01 {
  font-family: "Roboto", sans-serif;
}
.text-vertical {
  writing-mode: vertical-rl;
}
.text-underline {
  border-bottom: 1px solid #000;
}
.text-bold {
  font-weight: 700;
}
.text-xl {
  font-size: 3.2rem;
}
.text-lg {
  font-size: 2.4rem;
}
.text-md {
  font-size: 1.8rem;
}
.text-sm {
  font-size: 1.2rem;
}
.text-wh {
  color: #fff;
}
.text-red {
  color: #b33f4c;
}
.text-blue {
  color: #1d348b;
}

[data-display=hidden] {
  visibility: hidden;
}

@media screen and (max-width: 833px) {
  .pcOnly {
    display: none;
  }
}
@media screen and (min-width: 834px) {
  .tabOnly {
    display: none;
  }
}
@media screen and (min-width: 576px) {
  .spOnly {
    display: none;
  }
}
.breakThrough-right {
  margin-right: calc(50% - 50vw);
}
.breakThrough-right.keep-child {
  padding-right: calc(50vw - 50%);
}
.breakThrough-left {
  margin-left: calc(50% - 50vw);
}
.breakThrough-left.keep-child {
  padding-left: calc(50vw - 50%);
}

.l-column {
  display: flex;
  flex-wrap: wrap;
}
.l-column.col-2 {
  margin-bottom: calc(var(--col-margin, 3%) * -1);
  justify-content: space-between;
}
.l-column.col-2 > * {
  width: var(--col-width, 48.5%);
  margin-bottom: var(--col-margin, 3%);
}
.l-column.col-3 {
  margin-bottom: calc(var(--col-margin, 3.5%) * -1);
}
.l-column.col-3 > * {
  width: var(--col-width, 31%);
  margin-right: var(--col-margin, 3.5%);
  margin-bottom: var(--col-margin, 3.5%);
}
.l-column.col-3 > *:last-child, .l-column.col-3 > *:nth-child(3n) {
  margin-right: 0;
}
.l-column.col-4 {
  margin-bottom: calc(var(--col-margin, 3%) * -1);
}
.l-column.col-4 > * {
  width: var(--col-width, 22.75%);
  margin-right: var(--col-margin, 3%);
  margin-bottom: var(--col-margin, 3%);
}
.l-column.col-4 > *:last-child, .l-column.col-4 > *:nth-child(4n) {
  margin-right: 0;
}
@media screen and (max-width: 833px) {
  .l-column.col-1-tab > * {
    width: 100%;
    margin-right: 0;
  }
  .l-column.col-2-tab {
    margin-bottom: calc(var(--col-tab-margin, 3%) * -1);
    justify-content: space-between;
  }
  .l-column.col-2-tab > * {
    width: var(--col-tab-width, 48.5%);
    margin-right: 0;
    margin-bottom: var(--col-tab-margin, 3%);
  }
}
@media screen and (max-width: 575px) {
  .l-column.col-1-sp > * {
    width: 100%;
    margin-right: 0;
  }
  .l-column.col-2-sp {
    margin-bottom: calc(var(--col-sp-margin, 3%) * -1);
    justify-content: space-between;
  }
  .l-column.col-2-sp > * {
    width: var(--col-sp-width, 48.5%);
    margin-right: 0;
    margin-bottom: var(--col-sp-margin, 3%);
  }
}
.l-column.x-reverse {
  flex-direction: row-reverse;
}
.l-column.y-reverse {
  flex-direction: column-reverse;
}
.l-column.x-center {
  justify-content: center;
}
.l-column.y-center {
  align-items: center;
}

.card {
  overflow: hidden;
}
.card .c-image {
  position: relative;
}
.card .c-image figcaption {
  position: absolute;
  right: 1.2em;
  bottom: 1em;
  font-size: 1.2rem;
  color: #FFF;
}
.card .c-body {
  padding: 2rem;
  background-color: #FFF;
}
.card .c-title {
  margin-bottom: 0.5em;
  font-size: 2.4rem;
}
.card .c-date {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
}
.card .c-date + * {
  margin-top: 0.5rem;
}
.card p {
  font-size: 1.4rem;
  text-align: justify;
}

.site-header {
  width: 100%;
  padding: 0 5rem;
  position: relative;
  z-index: 9;
  background-color: #f5cc2d;
  color: #636363;
  font-size: 1.8rem;
}
.site-header h1 {
  line-height: 1;
}
.site-header .inner1 {
  max-width: 155rem;
  height: 10rem;
  margin: 0 auto;
  display: flex;
  gap: 3.5rem;
  align-items: center;
}
.site-header .inner1 .menu-list1 {
  font-family: Georgia;
  font-weight: bold;
}
.site-header .inner1 .menu-list2 {
  margin-left: auto;
  font-size: 1.6rem;
}
.site-header .inner1 .menu-list2 li + li {
  border-left: 1px solid #333;
}
.site-header .inner1 .btn-menu {
  width: 14rem;
  height: 14rem;
  position: fixed;
  right: 0rem;
  bottom: 0rem;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #ffd323;
}
.site-header .inner1 .btn-menu.is-open {
  background-color: #000;
}
.site-header .inner1 .btn-menu p {
  color: #fff;
  font-family: Georgia;
  font-size: 2.1rem;
}
.site-header .side-menu {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  visibility: hidden;
  font-family: Georgia;
  opacity: 0;
  transition: 0.5s;
}
.site-header .side-menu.is-show {
  visibility: visible;
  opacity: 1;
}
.site-header .side-menu .side1 {
  width: 45%;
  background-color: rgba(0, 0, 0, 0.9);
}
.site-header .side-menu .side2 {
  width: 55%;
  padding: 27vh 12rem;
  background-color: rgba(255, 211, 35, 0.9);
}
.site-header .side-menu .side2 nav {
  font-size: 4.3rem;
}
.site-header .side-menu .side2 .menu-list3 ul {
  margin-bottom: 11.7rem;
  line-height: 1;
}
.site-header .side-menu .side2 .menu-list3 ul li:not(:last-child) {
  margin-bottom: 3.5rem;
}
.site-header .header-flex ul {
  display: flex;
  gap: 1.5rem;
  line-height: 1;
}
.site-header .header-flex ul li + li {
  padding-left: 1.5rem;
}
.site-header .btn_member {
  display: flex;
  gap: 5.5rem;
}

.home header {
  position: absolute;
  top: 100vh;
  left: 0;
}
.home header.fixed {
  position: fixed;
  top: 0;
}

.site-footer {
  padding-top: 6rem;
  border-top: 5px solid #f5cc2d;
}
.site-footer .footer-inner {
  padding: 0 7.5rem;
  display: flex;
  justify-content: space-between;
}
.site-footer .footer-inner .area1 {
  font-size: 1.35rem;
}
.site-footer .footer-inner nav {
  margin: 4rem 1rem 0;
  display: flex;
}
.site-footer .area2 {
  display: flex;
  flex-flow: column;
}
.site-footer .security_area {
  width: 22rem;
}
.site-footer .security_area .inner {
  padding: 10px;
  display: flex;
  justify-content: space-between;
  border: 1px solid #c3c3c3;
  background-color: #fff;
  color: #000;
  font-size: 1rem;
}
.site-footer .security_area .image {
  width: 8rem;
}
.site-footer .security_area .text {
  width: 10.8rem;
  line-height: 1.6;
}
.site-footer .footer-logo {
  text-align: center;
}
.site-footer .sns-link {
  position: fixed;
  bottom: 10rem;
  left: 3rem;
  z-index: 9;
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.site-footer .sns-link a {
  display: block;
}
.site-footer .area3 {
  margin-top: 3rem;
  font-size: 1.2rem;
}
.site-footer .area3 .company {
  display: flex;
  gap: 0 2rem;
  align-items: center;
  justify-content: center;
}
.site-footer .area3 .company a {
  display: block;
}
.site-footer .area3 p {
  margin-top: 1.5rem;
  text-align: center;
  line-height: 1;
}

.p-top__hero {
  width: 100%;
  height: 100svh;
}
.p-top__hero--slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-top__hero--logo {
  width: 52%;
  max-width: 81.6rem;
  position: absolute;
  top: 12rem;
  left: 12rem;
  z-index: 3;
  filter: drop-shadow(0 0 0.5rem rgba(0, 0, 0, 0.12));
}

.site-container {
  margin-top: 18rem;
}
.site-container .notice-list {
  padding: 3rem 7.5rem;
  border-top: 2px solid #f5cc2d;
  border-bottom: 2px solid #f5cc2d;
}
.site-container .notice-list ul li:not(:last-child) {
  margin-bottom: 0.5rem;
}
.site-container .notice-list ul li .date {
  margin-right: 1.5rem;
}
.site-container .notice-list a {
  display: flex;
  align-items: center;
}
.site-container .notice-list .title {
  font-size: 1.4rem;
}
.site-container .more {
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
  font-family: Georgia;
  font-size: 1.5rem;
}
.site-container .movie {
  width: 100%;
  aspect-ratio: 16/9;
}
.site-container .movie iframe {
  width: 100%;
  height: 100%;
}
.site-container .banner a {
  display: block;
}
.site-container .banner a:not(:first-child) {
  margin-top: 2rem;
}

.p-home__banner + .p-home__banner {
  margin-top: 3rem;
}
.p-home__banner--col1 .banner + .banner {
  margin-top: 3rem;
}
.p-home__banner--col2 {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}
.p-home__banner--col2 .banner {
  width: calc(50% - 1.5rem);
}
.p-home__banner--col4 {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.p-home__banner--col4 .banner {
  width: calc(25% - 1.5rem);
}
.p-home__banner .banner {
  display: block;
}
.p-home__youtube {
  margin-bottom: 4rem;
}
.p-home__youtube .movie {
  max-width: 84rem;
  margin-right: auto;
  margin-left: auto;
}

.p-lower__headline-01 {
  margin-bottom: 5rem;
  padding: 4.8rem 2rem;
  background-color: #f2ebe5;
  text-align: center;
}
.p-lower__headline-01 .title {
  font-weight: 400;
  font-size: 4rem;
}
.p-lower__headline-01.type-image {
  max-width: 114rem;
  min-height: 65rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0;
  position: relative;
  aspect-ratio: 1/0.57;
}
.p-lower__headline-01.type-image .visual {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.p-lower__headline-01.type-image .visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-lower__headline-01.type-image .title {
  position: absolute;
  bottom: 4.7rem;
  left: 5.2rem;
  z-index: 2;
  color: #fff;
  font-size: 5.2rem;
  line-height: 1;
}
.p-lower__single--footer_link {
  display: flex;
  justify-content: space-between;
}

.site-container.mt-0 {
  margin-top: 0;
}

.btn-01 {
  max-width: 100%;
  padding: 0 1em;
  display: block;
  background-color: #969494;
  color: #fff;
  text-align: center;
  font-size: 2rem;
  line-height: 4.2rem;
}

.p-post__content table {
  width: 100%;
  border-collapse: collapse;
}
.p-post__content table thead {
  border: 1px solid #ccc;
}
.p-post__content table th, .p-post__content table td {
  padding: 1em 1.2em;
  border-bottom: 1px solid #ccc;
}
.p-post__content table th {
  background-color: #f1f1f1;
}

@media screen and (max-width: 833px) {
  .p-lower__headline-01 {
    margin-bottom: 3rem;
    padding: 1.4rem 1em;
  }
  .p-lower__headline-01 .title {
    font-size: 2rem;
  }
  .p-lower__headline-01.type-image {
    min-height: auto;
    padding: 1.4rem 1em;
    aspect-ratio: auto;
  }
  .p-lower__headline-01.type-image .visual {
    display: none;
  }
  .p-lower__headline-01.type-image .title {
    position: relative;
    bottom: auto;
    left: auto;
    color: #000;
    font-size: 2rem;
    line-height: 1.6;
  }
}
.lower .site-container {
  margin-top: 4.5rem;
}
.lower .site-container .page-nav {
  width: 114rem;
  height: 6.7rem;
  margin: 0 auto;
  border: 1.2px solid #969494;
}
.lower .site-container .page-nav ul {
  width: 100%;
  height: 100%;
  display: flex;
  gap: 2.7rem;
  align-items: center;
  justify-content: center;
  color: #969494;
  font-family: Georgia;
}
.lower .site-container .page-nav a {
  position: relative;
  display: block;
  text-align: center;
}
.lower .site-container .page-nav a::after {
  content: "";
  width: 100%;
  height: 0.3rem;
  position: absolute;
  bottom: -0.3rem;
  left: 0;
  display: none;
  background-color: #969494;
  pointer-events: none;
}
.lower .site-container .page-nav a.is-active::after {
  display: block;
}

.p-notice__archive .notice-list {
  padding: 0;
  flex-wrap: wrap;
  border: 0;
}
.p-notice__archive .notice-list ul li {
  padding-bottom: 2.3rem;
  border-bottom: 1px solid #6f6e6f;
}
.p-notice__archive .notice-list ul li + li {
  padding-top: 2.3rem;
}
.p-notice__archive .notice-list ul li:not(:last-child) {
  margin-bottom: 0rem;
}
.p-notice__detail {
  max-width: 114rem;
  margin-bottom: 3.2rem;
  border: 1.2px solid #e5e5e5;
}
.p-notice__detail--header {
  padding: 2.4rem 3.6rem;
  position: relative;
  border-top: 0;
  border-bottom: 1px solid #e5e5e5;
}
.p-notice__detail--header .date {
  letter-spacing: 0;
  font-family: "Arial", "メイリオ", sans-serif;
}
.p-notice__detail--header .cats {
  margin-right: 0;
  margin-left: 1.5rem;
  vertical-align: text-bottom;
}
.p-notice__detail--header .title {
  font-weight: 700;
  font-size: 1.8rem;
}
.p-notice__detail--header ul li {
  padding-bottom: 0;
}
.p-notice__detail--body {
  padding: 2.4rem 3.6rem;
  font-size: 1.4rem;
}
.p-notice__detail--body p {
  line-height: 1.5;
}

@media screen and (min-width: 834px) {
  .p-notice__detail--header .title {
    padding-right: 12rem;
  }
  .p-notice__detail--header .icon-reaction {
    position: absolute;
    right: 3.6rem;
    bottom: 2.4rem;
  }
}
@media screen and (max-width: 833px) {
  .p-notice__archive .notice-list {
    padding: 0 !important;
  }
  .p-notice__detail--header {
    padding: 2rem 2.5rem;
  }
  .p-notice__detail--header .date {
    font-size: 1.6rem;
  }
  .p-notice__detail--header .cats {
    margin-left: 1rem;
  }
  .p-notice__detail--header .title {
    font-size: 2rem;
  }
  .p-notice__detail--header .icon-reaction {
    margin-top: 0.5em;
    justify-content: flex-end;
  }
  .p-notice__detail--body {
    padding: 2rem 2.5rem;
    font-size: 1.5rem;
  }
}
.p-member__login--row {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.p-member__login .input-area dl {
  width: 100%;
  margin: 0 auto;
}
.p-member__login .input-area dl + dl {
  margin-top: 1.4rem;
}
.p-member__login .input-area dt {
  letter-spacing: 0;
  font-size: 1.4rem;
}
.p-member__login .input-area dd {
  flex: 1;
}
.p-member__login .input-area dd input {
  width: 100%;
  padding: 0.3rem 1em;
  border: 1px solid #5c95b7;
  border-radius: 0.2rem;
  font-size: 1.4rem;
}
.p-member__login .input-area .btn-submit {
  width: 37.2rem;
  margin: 3rem auto 0;
}
.p-member__login .input-area .submit input {
  width: 37.2rem;
  max-width: 100%;
  margin: 3rem auto 0;
  padding: 0 1em;
  display: block;
  background-color: #969494;
  color: #fff;
  text-align: center;
  font-size: 2rem;
  line-height: 4.2rem;
}
.p-member__login .info-area dl + dl {
  margin-top: 1rem;
}
.p-member__login .info-area dt {
  font-weight: 700;
}
.p-member__login .info-area p {
  line-height: 1.75;
}
.p-member__login .info-area .link-reset {
  color: #f00;
}
.p-member__about--row {
  padding: 5rem 0;
}
.p-member__about .signup-area .logo {
  text-align: center;
}
.p-member__about .signup-area .btn-01 {
  width: 27.2rem;
  margin-top: 4.2rem;
}
.p-member__about .message-area .hl {
  margin-bottom: 0.8em;
  font-size: 2.5rem;
  line-height: 1.2;
}
.p-member__about .message-area p {
  line-height: 1.75;
}
.p-member__tokuten--hl {
  margin-bottom: 0.8em;
  text-align: center;
  font-weight: 400;
  font-size: 3.5rem;
}
.p-member__tokuten--list {
  max-width: 96.4rem;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
  list-style-type: none;
  counter-reset: count;
}
.p-member__tokuten--list li {
  width: calc(50% - 2rem);
  padding: 2rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #f9dc7d;
  color: #636363;
  text-align: center;
  aspect-ratio: 1/0.485;
}
.p-member__tokuten--list li::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0) 50%, #ffd323 50.5%) no-repeat top left/100% 100%;
}
.p-member__tokuten--list li * {
  position: relative;
  z-index: 2;
}
.p-member__tokuten--list .num {
  width: 29rem;
  height: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #000;
  font-family: Georgia, Times, "Times New Roman", serif;
  font-size: 4rem;
}
.p-member__tokuten--list .num::before {
  content: counter(count, decimal-leading-zero);
  counter-increment: count;
}
.p-member__tokuten--list .text {
  height: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.p-member__tokuten--list .text p {
  font-size: 2rem;
  line-height: 1.4;
}
.p-member__notice {
  margin: 3rem 0;
  padding: 3rem;
}
.p-member__notice dt {
  margin-bottom: 0.5em;
  font-weight: 700;
  font-size: 2.4rem;
}
.p-member__notice dd p {
  letter-spacing: 0;
  line-height: 1.75;
}
.p-member__information.row {
  display: flex;
}
.p-member__information.col-2 {
  gap: 2rem;
}
.p-member__information.col-2 > * {
  width: calc(50% - 1rem);
}
.p-member__information--box {
  padding: 2.8rem 5rem;
  border: 1px solid #000;
}
.p-member__information--box .hl {
  margin-bottom: 0.8em;
  text-align: center;
  font-size: 2.4rem;
}
.p-member__information dl + dl {
  margin-top: 3.2rem;
}
.p-member__information dt {
  font-weight: 700;
}
.p-member__information dd {
  letter-spacing: 0;
}
.p-member__information p {
  letter-spacing: 0;
  line-height: 1.75;
}
.p-member__information .btn-01 {
  margin-top: 5.8rem;
  border-radius: 0.8rem;
  line-height: 6rem;
}
.p-member__information .box03 dt {
  margin-bottom: 3rem;
}

@media screen and (min-width: 834px) {
  .p-member__login--row {
    display: flex;
  }
  .p-member__login--row .column {
    width: 50%;
  }
  .p-member__login .input-area {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .p-member__login .input-area dl {
    max-width: 37.2rem;
    display: flex;
    align-items: center;
  }
  .p-member__login .input-area dt {
    width: calc(7em + 1.6rem);
  }
  .p-member__login .info-area {
    padding: 3rem 3.8rem;
    border-left: 1px solid #000;
  }
  .p-member__about--row {
    display: flex;
  }
  .p-member__about .signup-area {
    width: 46%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
}
@media screen and (max-width: 833px) {
  .p-member__login .input-area {
    padding: 3rem 2rem;
  }
  .p-member__login .info-area {
    padding: 3rem 2rem;
    border-top: 1px solid #000;
  }
  .p-member__about .signup-area .btn-01 {
    margin-top: 3rem;
    margin-right: auto;
    margin-left: auto;
  }
  .p-member__about .message-area {
    margin-top: 4rem;
  }
  .p-member__about .message-area .hl {
    font-size: 1.8rem;
  }
  .p-member__tokuten--list {
    gap: 2rem;
  }
  .p-member__tokuten--list li {
    width: 100%;
    padding: 1rem;
  }
  .p-member__tokuten--list .text p {
    font-size: 1.6rem;
  }
  .p-member__notice {
    margin: 2rem 0;
    padding: 2rem;
  }
  .p-member__notice dt {
    font-size: 2rem;
  }
  .p-member__information.row {
    flex-direction: column;
  }
  .p-member__information.col-2 > * {
    width: 100%;
  }
  .p-member__information--box {
    padding: 2rem 2rem;
  }
  .p-member__information--box .hl {
    font-size: 2rem;
  }
}
.p-profile__navi {
  margin-bottom: 4rem;
}
.p-profile__navi ul {
  display: flex;
  gap: 2rem;
  justify-content: flex-end;
}
.p-profile__navi li {
  width: 8rem;
}
.p-profile__navi a {
  padding: 5px 0;
  display: block;
  border-bottom: 3px solid #ccc;
  text-align: center;
}
.p-profile__navi a.is-active {
  border-bottom-color: #000;
  pointer-events: none;
}
.p-profile__visual {
  text-align: center;
}
.p-profile__detail dl {
  padding: 2rem 1rem;
  display: flex;
  border-bottom: 1px solid #ccc;
  font-size: 1.4rem;
}
.p-profile__detail dl:first-child {
  border-top: 1px solid #ccc;
}
.p-profile__detail dt {
  width: 6rem;
  flex: none;
}
.p-profile__index dt {
  width: 10rem;
}

@media screen and (min-width: 834px) {
  .p-profile__navi {
    margin-top: 7.2rem;
  }
  .p-profile__row {
    display: flex;
    justify-content: space-between;
  }
  .p-profile__row .visual {
    width: 35%;
  }
  .p-profile__row .detail {
    width: 60%;
  }
}
@media screen and (max-width: 833px) {
  .p-profile__navi {
    margin-bottom: 2rem;
  }
  .p-profile__navi ul {
    gap: 1rem;
  }
  .p-profile__navi li {
    width: 100%;
  }
  .p-profile__visual {
    margin-bottom: 2rem;
  }
  .p-profile__visual img {
    width: 50%;
  }
}
.p-post__archive {
  margin-top: 1.6rem;
}
.p-post__archive--list li {
  padding: 3.8rem 3.5rem;
  display: flex;
  align-items: center;
  border: 1px solid #dbd9d9;
}
.p-post__archive .contents_area {
  margin-left: 2.3rem;
  flex: 1;
  line-height: 1;
}
.p-post__archive .date {
  margin-bottom: 0.5em;
  display: inline-block;
  font-family: Arial;
  font-size: 1.4rem;
  line-height: 1.5;
}
.p-post__archive h2 {
  margin-top: 0.5rem;
  font-size: 1.8rem;
}
.p-post__archive .text_area {
  margin-top: 4rem;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  font-size: 1.4rem;
  -webkit-line-clamp: 3;
}
.p-post__archive .text_area p {
  line-height: 1.5;
}
.p-post__archive .btn_area {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
}
.p-post__archive .icon-reaction {
  margin-left: auto;
}

.icon-reaction {
  margin-left: auto;
  display: flex;
  gap: 2rem;
  align-items: center;
  color: #969494;
  font-size: 1.4rem;
}
.icon-reaction .inner {
  display: flex;
  align-items: center;
}
.icon-reaction .icon {
  margin-right: 0.5rem;
}
.icon-reaction .like .icon {
  width: 1.8rem;
  height: 1.8rem;
  background-image: url(../../images/common/heart.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transition: background 0.3s;
}
.icon-reaction .like.active .icon {
  background-image: url(../../images/common/heart_on.svg);
}
.icon-reaction .cmt .icon {
  width: 1.8rem;
}

.past_contents {
  margin-top: 6.3rem;
}

.select_contents {
  width: 114rem;
  height: 9.6rem;
  display: flex;
  gap: 3.2rem;
  align-items: center;
  justify-content: center;
  border: 2px solid #969494;
}
.select_contents .btn-select {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
}
.select_contents .label {
  width: 100%;
  position: absolute;
  z-index: 1;
}
.select_contents .select {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  opacity: 0;
}
.select_contents .select option {
  background: #969494;
}

.comment {
  margin-top: 1rem;
}
.comment .name {
  display: flex;
  justify-content: space-between;
  font-size: 1.4rem;
}
.comment .detail {
  padding: 2.4rem 3.6rem;
  border: 1px solid #dbd9d9;
}
.comment .text {
  padding-left: 2rem;
  font-size: 1.4rem;
}
.comment .text p {
  line-height: 1.5;
}
.comment .delete-area {
  margin-top: 1.6rem;
  text-align: right;
}
.comment .delete-area a {
  color: #c33;
  font-size: 1.4rem;
}

.comment_edit {
  margin-top: 5rem;
  margin-bottom: 3.3rem;
}

.comment_area {
  margin-top: 1rem;
}
.comment_area #comment_body {
  width: 100%;
  height: 27.8rem;
  padding: 1.5em;
  display: block;
  border: 1px solid #dbd9d9;
}
.comment_area .submit_area {
  margin-top: 0.5em;
}

.btn_conf {
  margin: auto;
  margin-top: 3.3rem;
  display: block;
}

.p-comment__comfirm .headline-type3 {
  margin-bottom: 0.5em;
}
.p-comment__comfirm #comment_contens {
  width: 100%;
  height: auto;
}
.p-comment__comfirm .submit_area {
  margin-top: 1em;
  display: flex;
  gap: 0 1em;
  justify-content: center;
}
.p-comment__comfirm .btn-submit {
  width: 20rem;
  padding: 1em;
  border-radius: 1rem;
  background-color: #969494;
  color: #fff;
}

.p-sitemap ul li:not(:last-child) {
  margin-bottom: 0.8em;
}
.p-sitemap .area1 {
  margin-bottom: 5rem;
  display: flex;
  justify-content: space-between;
}
.p-sitemap .area1 .right {
  width: 45%;
}
.p-sitemap .area1 .left {
  width: 45%;
}
.p-sitemap .area1 .left li {
  text-indent: -18px;
}
.p-sitemap .area2 {
  display: flex;
  border: 1px solid #f9dc7d;
}
.p-sitemap .area2 .left {
  width: 30%;
  padding: 2rem;
  background-color: #f9dc7d;
  color: #000;
}
.p-sitemap .area2 .right {
  padding: 2rem;
}
.p-sitemap .parent li:before {
  content: "・";
  margin-right: 0.5rem;
}
.p-sitemap .child {
  margin-top: 12px;
  margin-bottom: 30px;
  margin-left: 12px;
}
.p-sitemap .child li:before {
  content: "→";
  margin-right: 0.5rem;
  font-size: 1rem;
}

.p-faq dt {
  padding: 13px 10px 12px 40px;
  border-top: 1px dotted #e5e5e5;
  text-indent: -33px;
}
.p-faq dt:before {
  content: "Q.";
  margin-right: 5px;
  color: #305b89;
  font-size: 24px;
}
.p-faq dd {
  margin: 10px 0;
  padding: 30px 30px 30px 98px;
  position: relative;
  display: none;
  border-top: 1px dotted #e5e5e5;
  background: #f5f5f5;
  opacity: 1;
}
.p-faq dd:before {
  content: "A.";
  padding: 15px 20px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background: #c33;
  color: #fff;
  font-family: "Noto Sans";
  font-style: italic;
  font-size: 24px;
}

@media screen and (max-width: 833px) {
  .p-faq dt {
    padding: 13px 10px 12px 40px;
    border-top: 1px dotted #e5e5e5;
    font-size: 1.4rem;
  }
  .p-faq dd {
    margin: 10px 0;
    padding: 20px 20px 20px 84px;
    border-top: 1px dotted #e5e5e5;
    font-size: 1.2rem;
  }
  .p-faq dd p {
    line-height: 1.5;
  }
  .p-faq dd :before {
    padding: 10px 15px;
    font-size: 20px;
  }
}
.p-terms hr {
  margin: 30px auto;
  border-top: 1px solid #e2e2e2;
}
.p-terms p {
  line-height: 1.5;
}
.p-terms h2 {
  margin-bottom: 0.5em;
  font-size: 2rem;
}
.p-terms h3 {
  margin-bottom: 0.5em;
  font-size: 1.6rem;
}
.p-terms .indent {
  margin-left: 0.8rem;
}
.p-terms ol {
  margin-bottom: 3rem;
  margin-left: 3.5rem;
}
.p-terms ol li:not(:last-child) {
  margin-bottom: 1em;
}

.p-information {
  line-height: 1.8;
}
.p-information h3 {
  margin-bottom: 0.5em;
  font-size: 1.6rem;
}
.p-information p:not(:last-child) {
  margin-bottom: 3rem;
}
.p-information hr {
  margin: 3rem auto;
  border-top: 1px solid #e2e2e2;
}

@media screen and (max-width: 1023px) {
  html {
    font-size: 0.9765625vw;
  }
}
@media screen and (max-width: 833px) {
  html {
    font-size: 2.6666666667vw;
  }
  body {
    font-size: 1.3rem;
  }
  .spHide {
    display: none !important;
  }
  .site-header.is-open {
    position: fixed !important;
  }
  .site-header.is-open .inner1 .menu-list1 {
    visibility: visible;
    opacity: 1;
  }
  .site-header .inner1 {
    height: 5.5rem;
  }
  .site-header .inner1 h1 {
    margin: 0 auto;
    font-size: 1rem;
  }
  .site-header .inner1 h1 img {
    width: 19.4rem;
  }
  .site-header .inner1 .menu-list1 {
    width: 50%;
    padding: 0 2.5rem;
    position: fixed;
    top: 6rem;
    left: 0;
    z-index: 9;
    visibility: hidden;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
  }
  .site-header .inner1 .menu-list1::before {
    content: "MENU";
    margin-bottom: 4rem;
    display: block;
    font-size: 1rem;
  }
  .site-header .inner1 .menu-list1 ul {
    display: flex;
    gap: 1.8rem;
    flex-direction: column;
    font-weight: 400;
    font-size: 1.4rem;
  }
  .site-header .inner1 .menu-list1 ul li + li {
    padding-left: 0;
    border-left: 0;
  }
  .site-header .inner1 .menu-list1 a {
    color: #fff;
  }
  .site-header .inner1 .menu-list2 {
    display: none;
  }
  .site-header .inner1 .btn-menu {
    width: 100%;
    height: 5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
    flex-direction: row;
  }
  .site-header .inner1 .btn-menu img {
    display: none;
  }
  .site-header .inner1 .btn-menu p {
    margin-right: 1.6rem;
    order: 1;
    font-size: 1.6rem;
  }
  .site-header .inner1 .btn-menu .icon-hamburger {
    width: 1.3rem;
    height: 0.2rem;
    margin-right: 1.6rem;
    position: relative;
    order: 2;
    background: currentColor;
    color: #fff;
  }
  .site-header .inner1 .btn-menu .icon-hamburger:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: -0.5rem;
    left: 0;
    background: currentColor;
  }
  .site-header .inner1 .btn-menu .icon-hamburger:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0.5rem;
    right: 0;
    background: currentColor;
  }
  .site-header .inner1 .btn-menu.is-open .icon-hamburger {
    background-color: #000;
  }
  .site-header .inner1 .btn-menu.is-open .icon-hamburger::before {
    top: 0;
    transform: rotate(45deg);
  }
  .site-header .inner1 .btn-menu.is-open .icon-hamburger::after {
    top: 0;
    transform: rotate(-45deg);
  }
  .site-header .side-menu .side1 {
    width: 50%;
  }
  .site-header .side-menu .side2 {
    width: 50%;
    padding: 6rem 2.5rem;
  }
  .site-header .side-menu .side2 .menu-list3 h2 {
    margin-bottom: 4rem;
    font-size: 1rem;
  }
  .site-header .side-menu .side2 .menu-list3 ul {
    margin-bottom: 7.1rem;
    font-size: 1.4rem;
  }
  .site-header .side-menu .side2 .menu-list3 ul li:not(:last-child) {
    margin-bottom: 2.7rem;
  }
  .site-header .btn_member {
    gap: 1rem;
  }
  .site-header .btn_member .c-btn__lg {
    width: 6rem;
    height: 1.6rem;
    font-size: 1rem;
  }
  .site-header .btn_member a.btn {
    width: 6rem;
    height: 1.6rem;
    font-size: 0.8rem;
  }
  .home header {
    position: absolute;
    top: 0;
  }
  .home header.fixed {
    position: absolute;
  }
  footer.mt-lg {
    margin-top: 4rem;
  }
  footer.mb-sm {
    margin-bottom: 7rem;
  }
  footer .c-content {
    margin: 0 3rem;
  }
  .site-footer {
    padding-top: 5rem;
  }
  .site-footer .footer-inner {
    padding: 0;
    display: block;
  }
  .site-footer .footer-inner .area1 {
    font-size: 1.25rem;
  }
  .site-footer .footer-inner .area1 ul.me-sm {
    margin-right: 4.5rem;
  }
  .site-footer .footer-inner nav {
    margin: 4rem 1rem 0;
  }
  .site-footer .footer-inner .security_area {
    width: 100%;
    margin-top: 2.4rem;
    transform: scale(0.9);
  }
  .site-footer .footer-inner .security_area .inner {
    align-items: center;
  }
  .site-footer .footer-inner .security_area .image {
    width: 5rem;
    margin-right: 1.5rem;
  }
  .site-footer .footer-inner .security_area .text {
    flex: 1;
  }
  .site-footer .footer-inner .sns-link {
    margin-top: 4.8rem;
    position: relative;
    bottom: auto;
    left: auto;
    z-index: 1;
    gap: 2rem;
    flex-direction: row;
  }
  .site-footer .footer-inner .sns-link li {
    width: 4rem;
  }
  .site-footer .footer-inner .sns-link .icon {
    width: 100%;
    height: auto;
  }
  .site-footer .footer-inner .sns-link .icon * {
    fill: #ffe08a;
  }
  .site-footer .area3 {
    font-size: 0.9rem;
  }
  .c-pager__archive {
    margin-top: 2.2rem;
  }
  .c-pager__archive--inner {
    padding-bottom: 4rem;
    position: relative;
  }
  .c-pager__archive .prev {
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .c-pager__archive .next {
    position: absolute;
    right: 0;
    bottom: 0;
  }
  .site-container {
    margin-top: 2rem;
  }
  .site-container .c-font__01 {
    text-align: center;
  }
  .site-container .notice-list {
    padding: 2.5rem 0;
    font-size: 1.2rem;
  }
  .site-container .notice-list ul li a {
    flex-wrap: wrap;
  }
  .site-container .notice-list ul li .title {
    width: 100%;
    margin-top: 0.7rem;
    order: 3;
  }
  .site-container .notice-list ul li .cats {
    margin-right: 1rem;
    order: 1;
    border-radius: 0.3rem;
    font-size: 1rem;
  }
  .site-container .notice-list ul li .date {
    order: 2;
  }
  .site-container .more {
    font-size: 1.3rem;
  }
  .p-home__banner + .p-home__banner {
    margin-top: 1.5rem;
  }
  .p-home__banner--col1 .banner + .banner {
    margin-top: 1.5rem;
  }
  .p-home__banner--col2 {
    gap: 1.5rem;
  }
  .p-home__banner--col2 .banner {
    width: 100%;
  }
  .p-home__banner--col4 {
    gap: 1rem;
  }
  .p-home__banner--col4 .banner {
    width: calc(50% - 0.5rem);
  }
  .p-home__youtube {
    margin-bottom: 2rem;
  }
  .lower .top_img {
    display: none;
  }
  .lower .site-container {
    margin-top: 3rem;
  }
  .lower .site-container .c-font__01 {
    text-align: initial;
    font-weight: 600;
    font-size: 1.2rem;
  }
  .lower .site-container .page-nav {
    width: 35rem;
    height: 7.5rem;
    padding: 1rem 0;
  }
  .lower .site-container .page-nav ul {
    gap: 0 1.1rem;
    flex-wrap: wrap;
    font-size: 1.1rem;
  }
  .lower .site-container .notice-list ul li {
    padding-bottom: 1.7rem;
    border-bottom: 1px solid #333;
  }
  .lower .site-container .notice-list ul li + li {
    padding-top: 1.7rem;
  }
  .lower .site-container .notice-list ul li .date {
    order: 0;
    font-size: 1.2rem;
  }
  .lower .site-container .notice-list ul li .title {
    margin-top: 0.5rem;
    font-size: 1.3rem;
  }
  .p-post__archive--list li {
    padding: 1.9rem;
    display: block;
  }
  .p-post__archive .contents_area {
    margin-left: 0;
    padding-top: 1.1rem;
    line-height: 1;
  }
  .p-post__archive .date {
    font-size: 1.3rem;
  }
  .p-post__archive h2 {
    font-size: 1.5rem;
  }
  .p-post__archive .text_area {
    margin-top: 1.5rem;
    font-size: 1.3rem;
  }
  .p-post__archive .text_area p {
    line-height: 1.5;
  }
  .p-post__archive .btn_area {
    margin-top: 2.3rem;
    flex-direction: row-reverse;
  }
  .p-post__archive .c-btn__sm {
    width: 8.6rem;
    height: 2.1rem;
    margin-left: 1.5rem;
    font-size: 1.1rem;
  }
  .icon-reaction {
    margin-left: 0;
    gap: 1.2rem;
    font-size: 1.1rem;
  }
  .past_contents {
    margin-top: 4.9rem;
    font-size: 1.2rem;
  }
  .past_contents .c-btn__round {
    width: 30.6rem;
    height: 4rem;
  }
  .select_contents {
    width: 33.6rem;
    height: 9.9rem;
    gap: 0.5rem;
    flex-flow: column;
    flex-direction: column-reverse;
    border: 1px solid #969494;
  }
  select {
    font-size: 1.6rem;
  }
  .comment_area #comment_body {
    height: 20rem;
    padding: 1em;
  }
  .btn_conf {
    margin: auto;
    margin-top: 1em;
    display: block;
  }
  .c-btn__round_lg {
    width: 33rem;
    height: 6rem;
    font-size: 1.6rem;
  }
  .comment .name {
    font-size: 1.6rem;
  }
  .comment .detail {
    padding: 2rem;
  }
  .comment .text {
    padding-left: 0;
    font-size: 1.6rem;
  }
  .comment .delete-area {
    margin-top: 1rem;
  }
  .comment .delete-area a {
    font-size: 1.4rem;
  }
}/*# sourceMappingURL=style.css.map */