@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
/* リセットCSS
===================================== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, button, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  border: 0;
  font: inherit;
  font-size: 0.78125vw;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  -webkit-font-smoothing: antialiased;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 767px) {
  html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, button, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    font-size: 2.6666666667vw;
  }
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

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

caption, th, td {
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after {
  content: "";
  content: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

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

img {
  border: none;
  vertical-align: bottom;
}

/* 基本設定
===================================== */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-weight: 400;
  color: #000;
}

a {
  cursor: pointer;
  text-decoration: none;
}

.note-show {
  display: none;
}
@media (max-width: 1440px) {
  .note-show {
    display: block;
  }
}

.note-hide {
  display: block;
}
@media (max-width: 1440px) {
  .note-hide {
    display: none;
  }
}

.tab-show {
  display: none;
}
@media (max-width: 1024px) {
  .tab-show {
    display: block;
  }
}

.tab-hide {
  display: block;
}
@media (max-width: 1024px) {
  .tab-hide {
    display: none;
  }
}

.sp-show {
  display: none;
}
@media (max-width: 767px) {
  .sp-show {
    display: block;
  }
}

.sp-hide {
  display: block;
}
@media (max-width: 767px) {
  .sp-hide {
    display: none;
  }
}

img.sp-hide, span.sp-hide {
  display: inline;
}
@media (max-width: 767px) {
  img.sp-hide, span.sp-hide {
    display: none;
  }
}

body {
  background-color: #000;
}

.fixed-cta {
  position: fixed;
  bottom: -11rem;
  left: 0;
  width: 100%;
  padding-top: 1.7rem;
  padding-bottom: 1.4rem;
  background: linear-gradient(90deg, #603512 0%, #C0B868 53.37%, #603512 93.27%);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .fixed-cta {
    background: linear-gradient(90deg, #7C4417 0%, #DFD67D 53.37%, #753F13 93.27%);
  }
}
.fixed-cta.active {
  bottom: 0;
}
.fixed-cta a {
  width: 56.2rem;
  height: 6.9rem;
  border: 2px solid black;
  display: flex;
  align-items: center;
  padding-left: 3rem;
  justify-content: center;
  position: relative;
  top: 0;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .fixed-cta a {
    width: 30rem;
    height: 5rem;
  }
}
.fixed-cta a span {
  font-size: 2.7rem;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.14em;
  color: #000;
  font-weight: 600;
  padding-bottom: 0.4rem;
}
@media (max-width: 767px) {
  .fixed-cta a span {
    font-size: 2rem;
  }
}
.fixed-cta a img {
  width: 8.7rem;
  margin-left: 3.7rem;
}
@media (max-width: 767px) {
  .fixed-cta a img {
    width: 6rem;
    margin-left: 2rem;
  }
}
.fixed-cta a:hover {
  opacity: 0.7;
  top: -0.3rem;
}

.header {
  position: fixed;
  width: 100%;
  padding-left: 3.4rem;
  padding-right: 3.8rem;
  z-index: 99;
}
@media (max-width: 767px) {
  .header {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.header__inner {
  height: 10rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .header__inner {
    height: 7rem;
  }
}
.header .logo img {
  width: 17rem;
}
@media (max-width: 767px) {
  .header .logo img {
    width: 12rem;
  }
}
.header .burger-wrapper {
  position: relative;
  z-index: 100;
  height: 5.2rem;
  width: 3.2rem;
  z-index: 101;
}
.header .hamburger {
  width: 100%;
  height: 100%;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.header .hamburger span {
  height: 1px;
  width: 100%;
  background-color: #fff;
  display: block;
  transition: all 0.3s;
}
.header .hamburger .sp1 {
  margin-bottom: 0.5rem;
}
.header .hamburger.active .sp1 {
  transform: rotate(30deg);
  margin-bottom: -0.1rem;
}
.header .hamburger.active .sp2 {
  transform: rotate(-30deg);
}
.header ul {
  display: flex;
}
.header ul li {
  margin-left: 2.7rem;
}
.header ul li a {
  color: white;
  font-size: 2rem;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.04em;
  font-weight: 600;
  transition: all 0.3s;
}
.header ul li a:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .header ul li a {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .header ul li {
    margin-left: 0;
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .header ul {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 100;
    background-color: black;
    height: 100vh;
    flex-direction: column;
    padding-top: 10rem;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s;
  }
  .header ul.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
}

.fv {
  height: 75.9rem;
  background-image: url(../../img/fv.webp);
  background-position: center top;
  background-size: cover;
  padding-top: 25.1rem;
  padding-left: 64rem;
  line-height: normal;
}
@media (max-width: 767px) {
  .fv {
    height: 47.7rem;
    background-color: black;
    background-image: unset;
    position: relative;
    padding-left: 0;
    padding-top: 17rem;
  }
  .fv .sp-show {
    position: absolute;
    left: 0;
    top: 1rem;
  }
  .fv .sp-show img {
    width: 33rem;
  }
  .fv .inner {
    position: relative;
    z-index: 2;
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.fv h1 {
  font-size: 6.1rem;
  font-weight: bold;
  color: white;
  letter-spacing: 0.02em;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 2.4rem;
}
@media (max-width: 767px) {
  .fv h1 {
    font-size: 2.4rem;
    text-align: right;
    margin-bottom: 1rem;
  }
}
.fv h6 {
  font-size: 4.8rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.03em;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 13.1rem;
}
@media (max-width: 767px) {
  .fv h6 {
    font-size: 1.6rem;
    text-align: right;
    margin-bottom: 10rem;
  }
}
.fv .btn-wrapper {
  display: flex;
  justify-content: flex-end;
  padding-right: 7.3rem;
}
@media (max-width: 767px) {
  .fv .btn-wrapper {
    padding-right: 0;
    justify-content: center;
  }
}
.fv .btn-wrapper a {
  background: linear-gradient(90deg, #603512 0%, #C0B868 53.37%, #603512 93.27%);
  display: flex;
  width: 45rem;
  height: 10rem;
  align-items: center;
  justify-content: center;
  font-size: 3.9rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  font-family: "Noto Serif JP", serif;
  color: black;
  filter: drop-shadow(0 4px 38px rgba(255, 255, 255, 0.39));
  transition: all 0.3s;
}
.fv .btn-wrapper a:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .fv .btn-wrapper a {
    width: 20rem;
    height: 5rem;
    font-size: 2rem;
    background: linear-gradient(90deg, #7C4417 0%, #DFD67D 53.37%, #753F13 93.27%);
  }
}

.kaso-fv {
  height: 68rem;
  position: relative;
  background: linear-gradient(180deg, #0D0800 0%, #040500 100%);
}
@media (max-width: 767px) {
  .kaso-fv {
    height: 35rem;
  }
}
.kaso-fv .bg {
  width: 65.5rem;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .kaso-fv .bg {
    width: 70%;
  }
}
@media (min-width: 768px) {
  .kaso-fv .bg-txt1 {
    width: 59.8rem;
  }
}
@media (min-width: 768px) {
  .kaso-fv .bg-txt2 {
    width: 51rem;
  }
}
@media (min-width: 768px) {
  .kaso-fv .bg-txt3 {
    width: 66rem;
  }
}
@media (min-width: 768px) {
  .kaso-fv .bg-txt4 {
    width: 37rem;
  }
}
@media (min-width: 768px) {
  .kaso-fv .bg-txt5 {
    width: 73rem;
  }
}
.kaso-fv .bg-txt {
  position: absolute;
  top: 20rem;
  right: 0;
  z-index: 2;
}
@media (max-width: 767px) {
  .kaso-fv .bg-txt {
    width: 60%;
    top: 15rem;
  }
}
.kaso-fv h1 {
  font-size: 5rem;
  font-weight: bold;
  color: white;
  letter-spacing: 0.03em;
  font-family: "Noto Serif JP", serif;
  padding-top: 20.5rem;
  padding-left: 6.4rem;
}
@media (max-width: 767px) {
  .kaso-fv h1 {
    font-size: 2.6rem;
    padding-top: 10rem;
    padding-left: 2rem;
  }
}

.about {
  padding-top: 8.9rem;
  padding-left: 8.9rem;
  padding-bottom: 5.3rem;
  position: relative;
}
@media (max-width: 767px) {
  .about {
    padding-top: 4rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-bottom: 4rem;
  }
}
.about .bg-txt {
  position: absolute;
  top: 5.2rem;
  right: 0;
  width: 62%;
  z-index: 2;
}
@media (max-width: 767px) {
  .about .bg-txt {
    top: 0rem;
    width: 80%;
    right: 0rem;
  }
}
.about .bg-txt img {
  width: 100%;
}
@media (max-width: 767px) {
  .about .bg-txt img {
    width: 100%;
    display: block;
    margin: auto;
    opacity: 0.7;
  }
}
.about .bg-img {
  width: 53%;
  position: absolute;
  right: 0;
  top: 8.9rem;
  z-index: 1;
}
.about .inner {
  position: relative;
  z-index: 3;
}
.about .inner h2 {
  color: white;
  font-family: "Noto Serif JP", serif;
  font-size: 4rem;
  letter-spacing: 0.03em;
  font-weight: 700;
  margin-bottom: 2.6rem;
}
@media (max-width: 767px) {
  .about .inner h2 {
    padding-top: 2rem;
    font-size: 3rem;
    text-align: center;
  }
}
.about .inner p {
  color: white;
  font-size: 2rem;
  line-height: 1.7em;
  letter-spacing: 0.03em;
  max-width: 57.3rem;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .about .inner p {
    font-size: 1.4rem;
    text-align: center;
    position: relative;
    z-index: 3;
  }
}
.about .inner img {
  width: 70%;
  opacity: 0.7;
  display: block;
  margin-left: auto;
  margin-top: -10rem;
  margin-bottom: -4rem;
}
.about .inner .btn-wrapper {
  display: flex;
  position: relative;
  z-index: 3;
}
@media (max-width: 767px) {
  .about .inner .btn-wrapper {
    justify-content: center;
  }
}
.about .inner a {
  background: linear-gradient(90deg, #7C4417 0%, #DFD67D 53.37%, #753F13 93.27%);
  display: flex;
  width: 25rem;
  height: 7.7rem;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  font-family: "Noto Serif JP", serif;
  color: black;
  transition: all 0.3s;
}
.about .inner a:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .about .inner a {
    width: 24rem;
    height: 5rem;
    font-size: 2rem;
  }
}

.steps {
  padding-top: 9.6rem;
  padding-bottom: 13.4rem;
  padding-left: 5rem;
  padding-right: 5rem;
}
@media (max-width: 767px) {
  .steps {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.steps h2, .steps h6 {
  text-align: center;
  color: white;
  line-height: normal;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.steps h2 {
  font-size: 4rem;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .steps h2 {
    font-size: 3.2rem;
  }
}
.steps h6 {
  font-size: 2.4rem;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .steps h6 {
    font-size: 1.6rem;
  }
}
.steps .flex {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .steps .flex {
    flex-direction: column;
  }
}
.steps .flex .card {
  width: 32%;
  margin-bottom: 6rem;
}
@media (max-width: 767px) {
  .steps .flex .card {
    width: 100%;
    margin-bottom: 4rem;
  }
}
.steps .flex .card h5 {
  text-align: center;
  font-size: 4rem;
  font-weight: bold;
  color: white;
  line-height: normal;
  font-family: "Noto Serif JP", serif;
}
.steps .flex .card img {
  margin-top: 1.9rem;
  margin-bottom: 1.9rem;
  width: 90%;
}
@media (max-width: 767px) {
  .steps .flex .card img {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}
.steps .flex .card .img2 {
  margin-bottom: 0;
}
.steps .flex .card p {
  font-size: 3.4rem;
  color: white;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.1em;
  line-height: normal;
}
@media (max-width: 767px) {
  .steps .flex .card p {
    font-size: 2.4rem;
  }
}
.steps .flex .card .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.steps .btn-wrapper {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .steps .btn-wrapper {
    margin-top: 5rem;
  }
}
.steps a {
  background: linear-gradient(90deg, #7C4417 0%, #DFD67D 53.37%, #753F13 93.27%);
  display: flex;
  width: 30.5rem;
  height: 7.7rem;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  font-family: "Noto Serif JP", serif;
  color: black;
  transition: all 0.3s;
}
.steps a:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .steps a {
    width: 24rem;
    height: 5rem;
    font-size: 2rem;
  }
}

.voice {
  padding-top: 8rem;
  padding-bottom: 13rem;
}
@media (max-width: 767px) {
  .voice {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.voice .inner {
  max-width: 82.1rem;
  margin: auto;
}
.voice .inner h2 {
  color: white;
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.03em;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 7rem;
}
@media (max-width: 767px) {
  .voice .inner h2 {
    font-size: 3rem;
    margin-bottom: 4rem;
  }
}
.voice .inner .voices .wrap {
  display: flex;
  align-items: center;
  margin-bottom: 3.4rem;
}
.voice .inner .voices .wrap .person {
  width: 12.1rem;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .voice .inner .voices .wrap .person {
    width: 6rem;
  }
}
.voice .inner .voices .wrap .person img {
  width: 100%;
  margin-bottom: 1rem;
}
.voice .inner .voices .wrap .person p {
  color: white;
  text-align: center;
  font-size: 2.3rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  font-family: "Noto Serif JP", serif;
}
@media (max-width: 767px) {
  .voice .inner .voices .wrap .person p {
    font-size: 1.3rem;
  }
}
.voice .inner .voices .txt {
  padding-left: 6rem;
  position: relative;
}
@media (max-width: 767px) {
  .voice .inner .voices .txt {
    padding-left: 3rem;
  }
}
.voice .inner .voices .txt img {
  width: 7rem;
  position: absolute;
  left: 0;
  bottom: calc(50% - 4rem);
}
@media (max-width: 767px) {
  .voice .inner .voices .txt img {
    width: 4rem;
    bottom: calc(50% - 2rem);
  }
}
.voice .inner .voices .txt p {
  border-radius: 27px;
  background: #D9D9D9;
  padding-top: 4.3rem;
  padding-bottom: 4rem;
  padding-left: 3.2rem;
  padding-right: 1.6rem;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: normal;
  letter-spacing: 0.03em;
  font-family: "Noto Serif JP", serif;
}
@media (max-width: 767px) {
  .voice .inner .voices .txt p {
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 1.4rem;
    border-radius: 2rem;
  }
}
.voice .inner .voices .reverse {
  flex-direction: row-reverse;
}
.voice .inner .voices .reverse .txt {
  padding-left: 0;
  padding-right: 6rem;
}
@media (max-width: 767px) {
  .voice .inner .voices .reverse .txt {
    padding-right: 3rem;
  }
}
.voice .inner .voices .reverse .txt img {
  left: unset;
  right: 0;
}

.columns {
  padding-top: 10rem;
}
@media (max-width: 767px) {
  .columns {
    padding-top: 4rem;
    overflow: hidden;
  }
}
.columns.no-member {
  position: relative;
}
.columns.no-member .no-member-tape {
  position: absolute;
  left: 0;
  top: 20rem;
  z-index: 10;
  pointer-events: none;
}
.columns.no-member .no-member-tape img {
  width: 100%;
}
@media (max-width: 767px) {
  .columns.no-member .no-member-tape img {
    transform: scale(2);
  }
}
.columns.no-member .no-member-tape .img1 {
  position: relative;
  z-index: 2;
}
.columns.no-member .no-member-tape .img2 {
  margin-top: -30rem;
}
.columns.no-member .inner a {
  pointer-events: none;
}
.columns.loggedin .no-member-tape {
  display: none;
}
.columns.loggedin .inner a {
  pointer-events: all;
}
.columns h2 {
  color: white;
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.03em;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 10rem;
}
@media (max-width: 767px) {
  .columns h2 {
    font-size: 3rem;
    margin-bottom: 4rem;
  }
}
.columns .inner {
  padding-bottom: 2.8rem;
}
.columns .inner .swiper .swiper-slide {
  transition: all 0.3s;
  height: auto;
  background-color: #fff;
}
.columns .inner .swiper .swiper-slide:hover {
  opacity: 0.7;
}
.columns .inner .swiper .swiper-slide .img-wrapper img {
  width: 100%;
  aspect-ratio: 345/217;
  object-fit: cover;
}
.columns .inner .swiper .swiper-slide .txt-wrapper {
  background-color: #fff;
  padding-top: 1.8rem;
  padding-left: 1.3rem;
  padding-right: 1.3rem;
  padding-bottom: 5.4rem;
}
@media (max-width: 767px) {
  .columns .inner .swiper .swiper-slide .txt-wrapper {
    padding-top: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 3rem;
  }
}
.columns .inner .swiper .swiper-slide .txt-wrapper h6 {
  font-size: 2rem;
  line-height: normal;
  font-weight: bold;
  letter-spacing: 0.03em;
  color: black;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .columns .inner .swiper .swiper-slide .txt-wrapper h6 {
    font-size: 1.6rem;
  }
}
.columns .inner .swiper .swiper-slide .txt-wrapper .tags {
  display: flex;
  flex-wrap: wrap;
}
.columns .inner .swiper .swiper-slide .txt-wrapper .tags .tag {
  display: flex;
  border: 1px solid black;
  border-radius: 9.9rem;
  font-size: 1.2rem;
  color: black;
  margin-right: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  line-height: 2em;
}
@media (max-width: 767px) {
  .columns .inner .swiper .swiper-slide .txt-wrapper .tags .tag {
    font-size: 1rem;
    margin-top: 0.5rem;
  }
}
.columns .cta {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url(../../img/cta.webp);
  background-size: cover;
  background-position: right top;
}
.columns .cta h2 {
  text-align: center;
  font-size: 2.9rem;
  font-family: "Noto Serif JP", serif;
  color: white;
  line-height: normal;
  letter-spacing: 0.03em;
  font-weight: bold;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .columns .cta h2 {
    font-size: 2rem;
    margin-bottom: 4rem;
  }
}
.columns .cta .btn-wrapper {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 3;
}
@media (max-width: 767px) {
  .columns .cta .btn-wrapper {
    justify-content: center;
  }
}
.columns .cta a {
  background: linear-gradient(90deg, #7C4417 0%, #DFD67D 53.37%, #753F13 93.27%);
  display: flex;
  width: 25rem;
  height: 7.7rem;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  font-family: "Noto Serif JP", serif;
  color: black;
  filter: drop-shadow(0 4px 30px rgba(255, 255, 255, 0.5));
  transition: all 0.3s;
}
.columns .cta a:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .columns .cta a {
    width: 24rem;
    height: 5rem;
    font-size: 2rem;
  }
}

.footer {
  padding-top: 5rem;
  padding-bottom: 3.2rem;
  margin-bottom: 10rem;
  padding-left: 6rem;
  padding-right: 6rem;
}
@media (max-width: 767px) {
  .footer {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 1rem;
  }
}
.footer ul {
  display: flex;
  justify-content: center;
  margin-bottom: 2.4rem;
}
@media (max-width: 767px) {
  .footer ul {
    flex-wrap: wrap;
  }
}
.footer ul li {
  margin-left: 2rem;
  margin-right: 2rem;
}
@media (max-width: 767px) {
  .footer ul li {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}
.footer ul li a {
  color: white;
  font-size: 1.7rem;
  font-weight: 400;
}
@media (max-width: 767px) {
  .footer ul li a {
    font-size: 1.2rem;
  }
}
.footer__top {
  padding-bottom: 2.4rem;
  border-bottom: 1px solid white;
}
.footer__bottom {
  padding-top: 3.2rem;
}
@media (max-width: 767px) {
  .footer__bottom {
    padding-top: 2rem;
  }
}
.footer__bottom p {
  font-size: 1.7rem;
  color: white;
  text-align: center;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 767px) {
  .footer__bottom p {
    font-size: 1.2rem;
  }
}

.kaso-about {
  padding-top: 10rem;
  padding-bottom: 11rem;
}
@media (max-width: 767px) {
  .kaso-about {
    padding-top: 4rem;
    padding-bottom: 4rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.kaso-about h2 {
  text-align: center;
  font-size: 4rem;
  color: white;
  font-family: "Noto Serif JP", serif;
  line-height: normal;
  font-weight: bold;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .kaso-about h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
  }
}
.kaso-about p {
  text-align: center;
  color: white;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.7em;
  max-width: 84rem;
  margin: auto;
}
@media (max-width: 767px) {
  .kaso-about p {
    font-size: 1.6rem;
  }
}

.kaso-cta {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url(../../img/cta.webp);
  background-size: cover;
  background-position: right top;
}
.kaso-cta h2 {
  text-align: center;
  font-size: 2.9rem;
  font-family: "Noto Serif JP", serif;
  color: white;
  line-height: normal;
  letter-spacing: 0.03em;
  font-weight: bold;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .kaso-cta h2 {
    font-size: 2rem;
    margin-bottom: 4rem;
  }
}
.kaso-cta .btn-wrapper {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 3;
}
@media (max-width: 767px) {
  .kaso-cta .btn-wrapper {
    justify-content: center;
  }
}
.kaso-cta a {
  background: linear-gradient(90deg, #7C4417 0%, #DFD67D 53.37%, #753F13 93.27%);
  display: flex;
  width: 25rem;
  height: 7.7rem;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  font-family: "Noto Serif JP", serif;
  color: black;
  filter: drop-shadow(0 4px 30px rgba(255, 255, 255, 0.5));
  transition: all 0.3s;
}
.kaso-cta a:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .kaso-cta a {
    width: 24rem;
    height: 5rem;
    font-size: 2rem;
  }
}

.join-step {
  padding-top: 10rem;
  padding-bottom: 10rem;
  padding-left: 9.6rem;
  padding-right: 9.6rem;
}
@media (max-width: 767px) {
  .join-step {
    padding-top: 4rem;
    padding-bottom: 4rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.join-step h2 {
  color: white;
  font-size: 4rem;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.03em;
  text-align: center;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 6rem;
}
@media (max-width: 767px) {
  .join-step h2 {
    font-size: 2.8rem;
  }
}
.join-step ul {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .join-step ul {
    flex-direction: column;
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
.join-step ul li {
  width: calc(25% - 3rem);
}
@media (max-width: 767px) {
  .join-step ul li {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.join-step ul li img {
  width: 100%;
}

.membership-screening {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (max-width: 767px) {
  .membership-screening {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.membership-screening h2 {
  color: white;
  font-size: 4rem;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.03em;
  text-align: center;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .membership-screening h2 {
    font-size: 2.8rem;
  }
}
.membership-screening .desc {
  text-align: center;
  font-size: 2rem;
  color: white;
  line-height: 1.7em;
  letter-spacing: 0.03em;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .membership-screening .desc {
    font-size: 1.6rem;
  }
}
.membership-screening .box {
  max-width: 63.4rem;
  margin: auto;
  border: 1px solid white;
  padding: 3.8rem 2.2rem;
}
@media (max-width: 767px) {
  .membership-screening .box {
    padding: 3rem 1rem;
  }
}
.membership-screening .box ul li {
  font-family: "Noto Serif JP", serif;
  padding-left: 1em;
  color: white;
  font-size: 1.8rem;
  font-weight: bold;
  position: relative;
  line-height: 2em;
}
@media (max-width: 767px) {
  .membership-screening .box ul li {
    font-size: 1.2rem;
  }
}
.membership-screening .box ul li::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  left: 0.3rem;
  top: 1.7rem;
}
@media (max-width: 767px) {
  .membership-screening .box ul li::before {
    top: 1.1rem;
  }
}

.faq {
  padding-top: 10rem;
  padding-bottom: 12rem;
}
@media (max-width: 767px) {
  .faq {
    padding-top: 4rem;
    padding-bottom: 4rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.faq h2 {
  color: white;
  font-size: 4rem;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.03em;
  text-align: center;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .faq h2 {
    font-size: 2.8rem;
  }
}
.faq ul {
  max-width: 82.6rem;
  margin: auto;
}
.faq ul li {
  margin-bottom: 2.5rem;
}
@media (max-width: 767px) {
  .faq ul li {
    margin-bottom: 1rem;
  }
}
.faq ul li .q {
  background-color: #484848;
  padding-top: 1.8rem;
  padding-bottom: 1.8rem;
  padding-left: 1.4rem;
  padding-right: 5rem;
  cursor: pointer;
  position: relative;
}
.faq ul li .q::before, .faq ul li .q::after {
  content: "";
  width: 1.5rem;
  height: 0.1rem;
  position: absolute;
  right: 2rem;
  background-color: #fff;
  top: calc(50% - 0.05rem);
  transition: all 0.3s;
}
.faq ul li .q::after {
  transform: rotate(90deg);
}
.faq ul li .q p {
  color: white;
  font-size: 2rem;
  line-height: normal;
  font-weight: bold;
  letter-spacing: 0.03em;
  font-family: "Noto Serif JP", serif;
}
@media (max-width: 767px) {
  .faq ul li .q p {
    font-size: 1.6rem;
  }
}
.faq ul li .q.active::after {
  transform: rotate(0);
}
.faq ul li .a {
  padding: 1.4rem 2rem;
  background-color: #fff;
  display: none;
}
.faq ul li .a p {
  font-size: 2rem;
  line-height: normal;
  letter-spacing: 0.03em;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
}
@media (max-width: 767px) {
  .faq ul li .a p {
    font-size: 1.4rem;
  }
}

.joining-form {
  padding-top: 10rem;
  padding-bottom: 12rem;
}
@media (max-width: 767px) {
  .joining-form {
    padding-top: 4rem;
    padding-bottom: 4rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.joining-form h2 {
  color: white;
  font-size: 4rem;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.03em;
  text-align: center;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .joining-form h2 {
    font-size: 2.8rem;
  }
}
.joining-form .inner {
  max-width: 70rem;
  margin: auto;
}
.joining-form form .ttl {
  color: white;
  font-size: 1.6rem;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  line-height: normal;
  margin-bottom: 1rem;
}
.joining-form form .ttl span {
  font-size: 1.2rem;
  line-height: 1.5em;
  border-radius: 2px;
  background: #A00000;
  padding-left: 0.8rem;
  padding-right: 0.8rem;
}
.joining-form form .input-txt {
  font-size: 1.6rem;
  height: 5rem;
  width: 100%;
  background-color: transparent;
  border: 1px solid white;
  border-radius: 0.2rem;
  padding-left: 1rem;
  color: white;
}
.joining-form form .wrap {
  margin-bottom: 4rem;
}
.joining-form form .wrap.last {
  margin-bottom: 6.4rem;
}
.joining-form form label {
  font-size: 1.6rem;
  color: white;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  margin-right: 1rem;
  display: flex;
  align-items: center;
}
.joining-form form label span {
  font-size: 1em;
}
.joining-form form label input {
  margin-right: 1rem;
  margin-top: 0;
  margin-left: 0;
}
.joining-form form .select-wrapper {
  width: 16rem;
  position: relative;
}
.joining-form form .select-wrapper::before {
  content: "";
  width: 1.08rem;
  height: 0.681rem;
  position: absolute;
  right: 1rem;
  top: 2.2rem;
  background-image: url(../../img/chev.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}
.joining-form form .select-wrapper select {
  appearance: none;
  height: 5rem;
  padding-left: 1rem;
  font-size: 1.6rem;
  font-family: "Noto Serif JP", serif;
  width: 100%;
  background-color: transparent;
  color: white;
  border: 1px solid white;
}
.joining-form form textarea {
  height: 20rem;
  width: 100%;
  resize: none;
  border: 1px solid white;
  border-radius: 0.2rem;
  padding: 1rem;
  background-color: transparent;
  color: white;
  font-size: 1.6rem;
  line-height: normal;
}
.joining-form form .submit-wrapper {
  display: flex;
  justify-content: center;
}
.joining-form form .submit-wrapper input {
  width: 40rem;
  height: 6rem;
  background-color: #fff;
  border: none;
  border-radius: 0.2rem;
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 0.03em;
  color: black;
  font-family: "Noto Serif JP", serif;
  cursor: pointer;
}
@media (max-width: 767px) {
  .joining-form form .submit-wrapper input {
    width: 30rem;
  }
}
.joining-form form .wpcf7-not-valid-tip {
  font-size: 1.4rem;
  margin-top: 1rem;
}
.joining-form form .wpcf7-spinner {
  position: absolute;
}
.joining-form form .wpcf7-response-output {
  padding: 1rem 2rem;
  font-size: 1.4rem;
  color: white;
  line-height: normal;
}

.login {
  padding-top: 20rem;
}
@media (max-width: 767px) {
  .login {
    padding-top: 15rem;
  }
}

.terms, .policy {
  padding-top: 20rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-bottom: 10rem;
}
@media (max-width: 767px) {
  .terms, .policy {
    padding-top: 15rem;
    padding-bottom: 5rem;
  }
}
.terms .inner, .policy .inner {
  max-width: 102rem;
  margin: auto;
}
.terms .inner h1, .policy .inner h1 {
  font-size: 4.5rem;
  color: white;
  font-weight: bold;
  letter-spacing: 0.03em;
}
@media (max-width: 767px) {
  .terms .inner h1, .policy .inner h1 {
    font-size: 2rem;
  }
}
.terms .inner .ttl, .policy .inner .ttl {
  margin-bottom: 9.5rem;
}
@media (max-width: 767px) {
  .terms .inner .ttl, .policy .inner .ttl {
    margin-bottom: 4rem;
  }
}
.terms .inner .content p, .policy .inner .content p {
  font-size: 2rem;
  color: white;
  line-height: normal;
  margin-bottom: 1.5em;
}
@media (max-width: 767px) {
  .terms .inner .content p, .policy .inner .content p {
    font-size: 1.4rem;
  }
}
.terms .inner .content p a, .policy .inner .content p a {
  font-size: 1em;
  color: white;
  text-decoration: underline;
}
.terms .inner .content h6, .policy .inner .content h6 {
  font-size: 2rem;
  color: white;
  line-height: normal;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .terms .inner .content h6, .policy .inner .content h6 {
    font-size: 1.4rem;
  }
}

body.archive footer, body.single footer, body.slug-join footer {
  margin-bottom: 0;
}

.columns-section {
  padding-top: 9rem;
  padding-bottom: 5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.columns-section .inner {
  max-width: 106rem;
  margin: auto;
}
.columns-section .inner .categories {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .columns-section .inner .categories {
    flex-direction: column;
    align-items: flex-start;
  }
}
.columns-section .inner .categories h6 {
  font-size: 2rem;
  font-family: "Noto Serif JP", serif;
  color: white;
  font-weight: bold;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-right: 1px solid white;
  padding-right: 2rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .columns-section .inner .categories h6 {
    padding-right: 0;
    border: none;
    padding-left: 1rem;
  }
}
.columns-section .inner .categories ul {
  display: flex;
  padding-left: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .columns-section .inner .categories ul {
    padding-left: 0;
  }
}
.columns-section .inner .categories ul li {
  margin: 1rem;
}
.columns-section .inner .categories ul li a {
  font-size: 1.8rem;
  color: white;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
}
.columns-section .inner .categories ul li a.current {
  font-weight: bold;
}
@media (max-width: 767px) {
  .columns-section .inner .categories ul li a {
    font-size: 1.6rem;
  }
}
.columns-section .inner .articles {
  display: flex;
  flex-wrap: wrap;
  padding-top: 7rem;
}
.columns-section .inner .article {
  transition: all 0.3s;
  width: 32%;
  margin-right: 2%;
  margin-bottom: 3rem;
}
.columns-section .inner .article:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 767px) {
  .columns-section .inner .article {
    width: 100%;
    margin-right: 0;
    margin-bottom: 2rem;
  }
}
.columns-section .inner .article:hover {
  opacity: 0.7;
}
.columns-section .inner .article .img-wrapper img {
  width: 100%;
  aspect-ratio: 345/217;
  object-fit: cover;
}
.columns-section .inner .article .txt-wrapper {
  background-color: #fff;
  padding-top: 1.8rem;
  padding-left: 1.3rem;
  padding-right: 1.3rem;
  padding-bottom: 5.4rem;
}
@media (max-width: 767px) {
  .columns-section .inner .article .txt-wrapper {
    padding-top: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 3rem;
  }
}
.columns-section .inner .article .txt-wrapper h6 {
  font-size: 2rem;
  line-height: normal;
  font-weight: bold;
  letter-spacing: 0.03em;
  color: black;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .columns-section .inner .article .txt-wrapper h6 {
    font-size: 1.6rem;
  }
}
.columns-section .inner .article .txt-wrapper .tags {
  display: flex;
  flex-wrap: wrap;
}
.columns-section .inner .article .txt-wrapper .tags .tag {
  display: flex;
  border: 1px solid black;
  border-radius: 9.9rem;
  font-size: 1.2rem;
  color: black;
  margin-right: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  line-height: 2em;
}
@media (max-width: 767px) {
  .columns-section .inner .article .txt-wrapper .tags .tag {
    font-size: 1rem;
    margin-top: 0.5rem;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5rem;
}
.pagination a, .pagination span {
  width: 6rem;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.8rem;
  margin-left: 0.8rem;
  margin-right: 0.8rem;
}
@media (max-width: 767px) {
  .pagination a, .pagination span {
    width: 3rem;
    height: 3rem;
    font-size: 1.2rem;
    margin-left: 0.4rem;
    margin-right: 0.4rem;
  }
}
.pagination .num {
  background-color: #fff;
  color: black;
}
.pagination .current {
  background-color: #848484;
  color: white;
}
.pagination .next, .pagination .prev {
  position: relative;
}
.pagination .next::before, .pagination .prev::before {
  content: "";
  width: 3rem;
  height: 3rem;
  position: absolute;
  left: calc(50% - 1.5rem);
  top: calc(50% - 1.5rem);
  background-image: url(../../img/prev.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 767px) {
  .pagination .next::before, .pagination .prev::before {
    width: 2rem;
    height: 2rem;
    left: calc(50% - 1rem);
    top: calc(50% - 1rem);
  }
}
.pagination .next::before {
  background-image: url(../../img/next.svg);
}

.single-sec {
  padding-top: 19rem;
  padding-bottom: 10rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (max-width: 767px) {
  .single-sec {
    padding-top: 10rem;
    padding-bottom: 5rem;
  }
}
.single-sec .inner {
  max-width: 102rem;
  margin: auto;
}
.single-sec .ttl {
  margin-bottom: 3rem;
}
.single-sec .ttl time {
  font-size: 2.6rem;
  color: white;
  line-height: normal;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .single-sec .ttl time {
    font-size: 1.4rem;
  }
}
.single-sec .ttl h1 {
  font-size: 3.4rem;
  font-weight: 600;
  line-height: normal;
  color: white;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid white;
}
@media (max-width: 767px) {
  .single-sec .ttl h1 {
    font-size: 2rem;
  }
}
.single-sec .thumb {
  margin-bottom: 5rem;
}
.single-sec .thumb img {
  width: 100%;
}
.single-sec .content * {
  color: white;
}
.single-sec .content img {
  margin-bottom: 6.4rem;
}
.single-sec .content p {
  font-size: 1.4rem;
  line-height: 1.8em;
  margin-bottom: 5.6rem;
}
.single-sec .content p * {
  font-size: 1em;
}
.single-sec .content li * {
  font-size: 1em;
}
.single-sec .content ul {
  margin-bottom: 2.4rem;
}
.single-sec .content ul li {
  position: relative;
  padding-left: 1em;
  font-size: 1.4rem;
  line-height: 1.75em;
}
.single-sec .content ul li::before {
  content: "・";
  left: 0;
  top: 0;
  position: absolute;
}
.single-sec .content ul li ul, .single-sec .content ul li ol {
  margin-top: 0;
}
.single-sec .content ol {
  list-style-type: decimal;
  padding-left: 1.8em;
  margin-bottom: 2.4rem;
}
.single-sec .content ol ul, .single-sec .content ol ol {
  margin-top: 0;
}
@media (max-width: 767px) {
  .single-sec .content ol {
    padding-left: 18px;
  }
}
.single-sec .content ol li::marker {
  unicode-bidi: isolate;
  font-variant-numeric: tabular-nums;
  text-transform: none;
  text-indent: 0px !important;
  text-align: start !important;
  text-align-last: auto !important;
}
.single-sec .content ol > li {
  list-style: decimal;
  font-size: 1.4rem;
  line-height: 1.75em;
}
@media (max-width: 767px) {
  .single-sec .content ol > li {
    font-size: 14px;
    line-height: 1.71em;
  }
}
.single-sec .content ol > li > ul {
  list-style-type: lower-latin;
}
.single-sec .content ol > li > ul > li {
  list-style: lower-latin;
  margin-left: 1.8rem;
  padding-left: 0;
}
.single-sec .content ol > li > ul > li::before {
  display: none;
}
.single-sec .content ol > li > ul > li > ul {
  list-style-type: lower-roman;
}
.single-sec .content ol > li > ul > li > ul > li {
  list-style: lower-roman;
  margin-left: 1.8rem;
  padding-left: 0;
}
.single-sec .content ol > li > ul > li > ul > li::before {
  display: none;
}
@media (max-width: 767px) {
  .single-sec .content .wrap {
    margin-left: -20px;
    margin-right: -20px;
    overflow: scroll;
    padding-left: 20px;
    display: flex;
  }
  .single-sec .content .wrap .dummy {
    width: 20px;
    flex-shrink: 0;
  }
}
.single-sec .content blockquote {
  background-color: #E0E0E0;
  border-radius: 1.2rem;
  padding: 2rem;
  margin-bottom: 2.4rem;
}
.single-sec .content blockquote p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.4rem;
  color: #2F2F2F;
}
.single-sec .content blockquote cite {
  margin-top: 1rem;
  font-size: 1rem;
}
@media (max-width: 767px) {
  .single-sec .content blockquote cite {
    margin-top: 10px;
    font-size: 10px;
  }
}
@media (max-width: 767px) {
  .single-sec .content blockquote {
    padding: 20px;
    margin-bottom: 2rem;
  }
  .single-sec .content blockquote p {
    font-size: 1.4rem;
  }
}
.single-sec .content .wrap {
  margin-bottom: 2.4rem;
}
@media (max-width: 767px) {
  .single-sec .content .wrap {
    margin-bottom: 2rem;
  }
}
.single-sec .content .wp-block-table {
  margin-right: -2rem;
  padding-right: 2rem;
  margin-left: -2rem;
  padding-left: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .single-sec .content .wp-block-table {
    overflow: scroll;
  }
}
.single-sec .content .wp-block-table tbody, .single-sec .content .wp-block-table thead {
  -webkit-text-size-adjust: 100%;
}
.single-sec .content .wp-block-table table {
  min-width: 100%;
}
@media (max-width: 767px) {
  .single-sec .content .wp-block-table {
    overflow: unset;
    margin-right: 0;
    padding-right: 0px;
    padding-left: 0px;
    margin-left: 0px;
  }
}
.single-sec .content .wp-block-table th, .single-sec .content .wp-block-table td {
  border: 1px solid #E0E0E0;
  padding: 1.1rem 2.4rem;
  padding-right: 2.6rem;
  white-space: nowrap;
  line-height: 1.8em;
  font-size: 1.4rem;
  text-align: center;
  letter-spacing: 0;
}
.single-sec .content .wp-block-table thead {
  border-bottom: unset;
}
.single-sec .content .wp-block-table thead th {
  font-weight: 700;
}
.single-sec .content iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 700/450;
  margin-bottom: 2.4rem;
}
@media (max-width: 767px) {
  .single-sec .content iframe {
    margin-bottom: 2rem;
  }
}
.single-sec .content a:not(.wp-element-button) {
  font-size: 1em;
  color: #000;
  text-decoration: underline;
  transition: all 0.3s;
  color: white;
}
@media (min-width: 768px) {
  .single-sec .content a:not(.wp-element-button):hover {
    opacity: 0.7;
  }
}
.single-sec .content .wp-element-button {
  margin-bottom: 4rem;
}
.single-sec .content img {
  width: 100%;
}
.single-sec .content h1, .single-sec .content h2, .single-sec .content h3, .single-sec .content h4, .single-sec .content h5, .single-sec .content h6 {
  font-feature-settings: "palt";
  letter-spacing: 0.03em;
  font-weight: 700;
  line-height: 1.6em;
  margin-bottom: 2.4rem;
}
@media (max-width: 767px) {
  .single-sec .content h1, .single-sec .content h2, .single-sec .content h3, .single-sec .content h4, .single-sec .content h5, .single-sec .content h6 {
    margin-bottom: 1.6rem;
  }
}
.single-sec .content h1 *, .single-sec .content h2 *, .single-sec .content h3 *, .single-sec .content h4 *, .single-sec .content h5 *, .single-sec .content h6 * {
  color: #000;
  font-size: 1em;
}
.single-sec .content h1 {
  font-size: 3.6rem;
}
@media (max-width: 767px) {
  .single-sec .content h1 {
    font-size: 2.8rem;
  }
}
.single-sec .content h2 {
  border-left: 0.3rem solid white;
  padding-left: 1rem;
  font-size: 3.2rem;
}
@media (max-width: 767px) {
  .single-sec .content h2 {
    font-size: 2.4rem;
  }
}
.single-sec .content h3 {
  font-size: 2.4rem;
  padding-left: 3.4rem;
  position: relative;
}
.single-sec .content h3::before {
  content: "";
  width: 2.8rem;
  height: 0.2rem;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: calc(50% - 0.1rem);
}
@media (max-width: 767px) {
  .single-sec .content h3 {
    font-size: 2rem;
  }
}
.single-sec .content h4 {
  font-size: 2rem;
  border-bottom: 0.1rem solid white;
  padding-bottom: 0.3rem;
}
@media (max-width: 767px) {
  .single-sec .content h4 {
    font-size: 1.8rem;
  }
}
.single-sec .content h5 {
  font-size: 1.6rem;
}
.single-sec .content h6 {
  font-size: 1.4rem;
}
.single-sec .content b, .single-sec .content strong {
  font-weight: 700;
}

.h1-404 {
  text-align: center;
}

.content-404 h3, .content-404 p {
  text-align: center;
}
.content-404 .btn-wrapper {
  display: flex;
  justify-content: center;
}

.backtotop {
  display: flex;
  width: 24rem;
  height: 6rem;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  color: black;
  font-size: 1.6rem;
  font-weight: bold;
}

.required-page {
  padding-top: 20rem;
}
@media (max-width: 767px) {
  .required-page {
    padding-top: 14rem;
  }
}
.required-page p {
  font-size: 2rem;
  margin-bottom: 1rem;
  margin-top: 4rem;
  text-align: center;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  color: white;
}
.required-page .btn-wrapper2 a {
  transform: scale(0.7);
}
@media (max-width: 767px) {
  .required-page .btn-wrapper2 a {
    transform: scale(0.9);
  }
}

.login-help {
  margin-top: 2rem;
  text-align: center;
}
.login-help a {
  color: white;
  text-decoration: underline;
  font-size: 1.4rem;
}

.remember label {
  display: flex;
  align-items: center;
}
.remember label input {
  margin-bottom: 0;
}

form input[type=checkbox] {
  position: relative;
  width: 1.6rem;
  height: 1.6rem;
  border: 1px solid white;
  vertical-align: -0.5rem;
  border-radius: 0.3rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
form input[type=checkbox]:checked {
  background-color: white;
}
form input[type=checkbox]:checked:before {
  position: absolute;
  top: 0.1rem;
  left: 0.4rem;
  transform: rotate(50deg);
  width: 0.6rem;
  height: 1rem;
  border-right: 0.2rem solid black;
  border-bottom: 0.2rem solid black;
  content: "";
}
form input[type=radio] {
  position: relative;
  width: 1.6rem;
  height: 1.6rem;
  border: 1px solid white;
  border-radius: 50%;
  vertical-align: -0.5rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
form input[type=radio]:checked {
  background-color: white;
}
form input[type=radio]:checked:before {
  position: absolute;
  top: 0.1rem;
  left: 0.4rem;
  transform: rotate(50deg);
  width: 0.6rem;
  height: 1rem;
  border-right: 0.2rem solid black;
  border-bottom: 0.2rem solid black;
  content: "";
}

/*# sourceMappingURL=style.css.map */
