@charset "UTF-8";
/* reset
--------------------------------------------------------------*/
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

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

input, button, textarea, select {
  font: inherit;
}

header, footer, main, aside, picture {
  display: block;
}

@media print {
  body {
    width: 1100px;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
}
/* for IE */
img[src$=".svg"] {
  width: 100%;
}

select::-ms-expand {
  display: none;
}

.js-ofi {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

/* iOS Safari */
body {
  -webkit-tap-highlight-color: transparent;
}

input, textarea {
  -webkit-appearance: none;
}

input[type=submit], input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration, input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]:focus, input[type=button]:focus {
  outline-offset: -2px;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
}

button, input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
}

/* base set
--------------------------------------------------------------*/
html {
  font-size: 2.6666666667vw;
  scroll-padding-top: 8rem;
}
@media screen and (min-width: 768px) {
  html {
    scroll-padding-top: 150px;
  }
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  -webkit-text-size-adjust: 100%;
  word-break: break-word;
  overflow-x: hidden;
}

a {
  color: var(--cl-bk);
  outline: none;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

@media screen and (min-width: 768px) {
  html {
    font-size: 62.5%;
  }
}
@media screen and (min-width: 1024px) {
  a {
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  a::after {
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
}
/* form set */
input[type=text],
input[type=email],
input[type=tel],
input[type=password],
textarea {
  padding: 1rem 1.25rem;
  color: var(--cl-bk);
  background-color: var(--cl-wh);
  border-radius: 0.6rem;
  border: var(--cl-gr) 1px solid;
  width: 100%;
}

textarea {
  min-height: 20rem;
}

button {
  cursor: pointer;
  padding: 0;
  background: none;
  color: var(--cl-bk);
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: var(--cl-gr);
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: var(--cl-gr);
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: var(--cl-gr);
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: var(--cl-gr);
}

input::placeholder,
textarea::placeholder {
  color: var(--cl-gr);
}

/* radio set*/
label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

label:hover {
  cursor: pointer;
}

.mwform-radio-field + .mwform-radio-field {
  margin-left: 1rem;
}

.radio-input {
  display: none;
}

.radio-input + .mwform-radio-field-text {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.radio-input + .mwform-radio-field-text::before {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  border: 1px solid #ccc;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
  margin-right: 0.5rem;
}

.radio-input:checked + .mwform-radio-field-text::after {
  content: "";
  display: block;
  position: absolute;
  top: 0.7rem;
  left: 0.5rem;
  width: 1rem;
  height: 1rem;
  background: var(--cl-base-point02);
  border-radius: 50%;
}

@media screen and (min-width: 768px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  input[type=password],
  textarea {
    padding: 1.75rem 2rem;
  }
  /* radio set*/
  .mwform-radio-field + .mwform-radio-field {
    margin-left: 2rem;
  }
  .radio-input:checked + .mwform-radio-field-text::after {
    top: 0.9rem;
  }
}
/* ホバー時のプルプルする動き */
@-webkit-keyframes purupuru {
  0%, 100% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  25% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  50% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  75% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
}
@keyframes purupuru {
  0%, 100% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  25% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  50% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  75% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
}
/* utility + component class
--------------------------------------------------------------*/
.main {
  padding-top: 8rem;
  overflow: hidden;
}
.main-inner {
  background-image: url(../images/common/main-bg.jpg);
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

@media screen and (min-width: 1024px) {
  .main {
    padding-top: 14.2rem;
  }
  .main-inner {
    background-image: url(../images/common/main-bg-r.png), url(../images/common/main-bg-l.png);
    background-position: right top, left top;
    background-size: 28.2rem auto, 21.6em auto;
  }
}
/* utility */
.u-only-pc {
  display: none;
}

.u-inner {
  position: relative;
  max-width: 125rem;
  margin: 0 auto;
  padding: 0 4rem;
}

.u-inner.-min {
  max-width: 102rem;
}

.u-ff-point {
  font-family: YakuHanJPs, "M PLUS Rounded 1c", sans-serif;
  font-weight: 500;
}

.u-item-row > * {
  margin: 1.5rem 0;
}

@media screen and (min-width: 768px) {
  .u-only-sp {
    display: none !important;
  }
  .u-only-pc {
    display: inherit;
  }
  .u-inner {
    padding: 0 4rem;
  }
  .u-item-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -1.4rem;
  }
  .u-item-row.-rev {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .u-item-row > * {
    width: calc(50% - 2.9rem);
    margin: 1.5rem 1.4rem;
  }
}
@media screen and (min-width: 1024px) {
  .u-item-row {
    margin: 0 -2.8rem;
  }
  .u-item-row > * {
    width: calc(50% - 5.7rem);
    margin: 1.5rem 2.8rem;
  }
}
.txt-orn {
  color: var(--cl-orn);
}

.txt-pin {
  color: var(--cl-pin);
}

.mb-xs {
  margin-bottom: 0.625rem !important;
}

.mt-xs {
  margin-top: 0.625rem !important;
}

.mb-s {
  margin-bottom: 1.25rem !important;
}

.mt-s {
  margin-top: 1.25rem !important;
}

.mb-m {
  margin-bottom: 2.5rem !important;
}

.mt-m {
  margin-top: 2.5rem !important;
}

.mb-l {
  margin-bottom: 5rem !important;
}

.mt-l {
  margin-top: 5rem !important;
}

.mb-xl {
  margin-bottom: 7.5rem !important;
}

.mt-xl {
  margin-top: 7.5rem !important;
}

@media screen and (min-width: 768px) {
  .mb-xs {
    margin-bottom: 1.25rem !important;
  }
  .mt-xs {
    margin-top: 1.25rem !important;
  }
  .mb-s {
    margin-bottom: 2.5rem !important;
  }
  .mt-s {
    margin-top: 2.5rem !important;
  }
  .mb-m {
    margin-bottom: 3.75rem !important;
  }
  .mt-m {
    margin-top: 3.75rem !important;
  }
  .mb-l {
    margin-bottom: 6.25rem !important;
  }
  .mt-l {
    margin-top: 6.25rem !important;
  }
  .mb-xl {
    margin-bottom: 11.25rem !important;
  }
  .mt-xl {
    margin-top: 11.25rem !important;
  }
}
/* ページタイトル */
.c-pagetitle {
  background: #6e6e6e no-repeat center center;
  background-size: cover;
  color: var(--cl-wh);
  position: relative;
  margin-bottom: 4rem;
}
.c-pagetitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 51, 51, 0.5);
}

.c-pagetitle-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 14rem;
  font-size: var(--fs-title02);
  position: relative;
  z-index: 3;
}

@media screen and (min-width: 768px) {
  .c-pagetitle {
    margin-bottom: 8rem;
  }
  .c-pagetitle-txt {
    height: 24rem;
    font-size: 3.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .c-pagetitle {
    margin-bottom: 13rem;
  }
  .c-pagetitle-txt {
    height: 48rem;
    font-size: 5rem;
  }
}
/* リード部分 */
.c-lead {
  padding: 0;
}

.c-lead-ttl {
  font-size: 2.4rem;
  line-height: 1.6;
  text-align: center;
  color: var(--cl-base-point02);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.c-lead-ttl::before {
  content: "";
  display: block;
  width: 6rem;
  height: 6rem;
  margin: 0 auto;
  background: url(http://placehold.jp/102x95.png) no-repeat center bottom;
  background-size: contain;
}

.c-lead-txt {
  margin: 3rem auto 0;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .c-lead {
    padding: 0.5rem 0 0;
  }
  .c-lead-ttl::before {
    width: 8rem;
    height: 8rem;
  }
  .c-lead-txt {
    margin-top: 3.5rem;
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1024px) {
  .c-lead {
    background: transparent;
  }
  .c-lead {
    padding: 0.5rem 0 0;
  }
  .c-lead-ttl {
    font-size: 5rem;
    text-align: center;
  }
  .c-lead-txt {
    margin-top: 5.5rem;
    font-size: 1.8rem;
    text-align: center;
  }
}
/* リンクボタン */
.c-linkbtn {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-linkbtn-a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1rem 1rem;
  border-radius: 100vmax;
  height: 8rem;
  background-color: var(--cl-base-point02);
  border: var(--cl-base-point02) 1px solid;
  color: var(--cl-wh);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 1.8rem;
  font-family: var(--ff-heading);
  font-weight: bold;
}

.c-linkbtn-span {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.c-linkbtn-span.-right::after,
.c-linkbtn-span.-left::after {
  position: absolute;
  top: 50%;
  content: "";
  display: block;
  width: 0.9rem;
  height: 1.5rem;
  background: url(/assets/images/common/ar_right_wh.svg) no-repeat right center;
  background-size: contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-linkbtn-span.-right::after {
  right: 5%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.c-linkbtn-span.-left::after {
  left: 5%;
  -webkit-transform: translate(0, -50%) rotate(180deg);
          transform: translate(0, -50%) rotate(180deg);
}

@media screen and (min-width: 768px) {
  .c-linkbtn {
    max-width: 24rem;
  }
  .c-linkbtn-a {
    padding: 1rem;
    font-size: 1.8rem;
  }
  .c-linkbtn-span.-right::after,
  .c-linkbtn-span.-left::after {
    width: 1.2rem;
    height: 2rem;
  }
  .c-linkbtn-a:hover {
    background-color: var(--cl-wh);
    color: var(--cl-base-point01);
  }
  .c-linkbtn-a:hover .c-linkbtn-span.-right::after,
  .c-linkbtn-a:hover .c-linkbtn-span.-left::after {
    background-image: url(/assets/images/common/ar_right_point.svg);
  }
}
@media screen and (min-width: 1024px) {
  .c-linkbtn-a {
    padding: 1rem;
  }
}
/* 両側にアイコンが付くタイトル */
.c-icon-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-icon-ttl::before,
.c-icon-ttl::after {
  content: "";
  display: block;
  width: 4.2rem;
  height: 3rem;
  background: url(http://placehold.jp/92x76.png) no-repeat right center;
  background-size: contain;
}

.c-icon-ttl::before {
  margin-right: 0.5rem;
}

.c-icon-ttl::after {
  margin-left: 0.5rem;
  background-position: left center;
}

@media screen and (min-width: 768px) {
  .c-icon-ttl::before,
  .c-icon-ttl::after {
    width: 6.2rem;
    height: 5rem;
  }
  .c-icon-ttl::before {
    margin-right: 1.5rem;
  }
  .c-icon-ttl::after {
    margin-left: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .c-icon-ttl::before,
  .c-icon-ttl::after {
    width: 9.2rem;
    height: 7.6rem;
  }
  .c-icon-ttl::before {
    margin-right: 2rem;
  }
  .c-icon-ttl::after {
    margin-left: 2rem;
  }
}
/* iv-animation
--------------------------------------------------------------*/
.js-iv-fade {
  opacity: 0;
  -webkit-transition: 2s;
  transition: 2s;
}

.js-iv-fade.is-view {
  opacity: 1;
}

.js-iv-up_fade {
  opacity: 0;
  -webkit-transform: translate(0, 40px);
          transform: translate(0, 40px);
  -webkit-transition: 1s;
  transition: 1s;
}

.js-iv-up_fade.is-view {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.js-iv-left_fade {
  opacity: 0;
  -webkit-transform: translate(-40px, 0);
          transform: translate(-40px, 0);
  -webkit-transition: 1s;
  transition: 1s;
}

.js-iv-left_fade.is-view {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.js-iv-right_fade {
  opacity: 0;
  -webkit-transform: translate(40px, 0);
          transform: translate(40px, 0);
  -webkit-transition: 1s;
  transition: 1s;
}

.js-iv-right_fade.is-view {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/* header
--------------------------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 8rem;
  z-index: 10;
  background-color: var(--cl-wh);
}

.h-inner {
  height: 8rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 2rem;
}

.hlogo {
  width: 17.2rem;
}
.hlogo img {
  width: 100%;
  display: block;
}

.hlogo-a {
  width: 100%;
  display: block;
}
.hlogo-a img {
  width: 100%;
  display: block;
}

.hlogo-txt {
  margin-bottom: 0.2rem;
  font-size: 1rem;
  color: #6e6e6e;
}

.hmenu {
  display: none;
}

@media screen and (min-width: 1024px) {
  .header {
    height: 14.2rem;
  }
  .h-inner {
    height: 14.2rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 4rem;
    margin: 0;
  }
  .hlogo {
    width: 22.5rem;
  }
  .hlogo-a:hover {
    -webkit-animation: purupuru 0.4s;
            animation: purupuru 0.4s;
  }
  .hmenu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .hitem {
    font-family: var(--ff-heading);
    font-weight: bold;
  }
  .hitem-a {
    position: relative;
    font-size: 1.4rem;
    font-weight: bold;
  }
  .hitem-a::before {
    content: "";
    display: block;
    width: 6.8rem;
    height: 6.8rem;
    background: bottom center no-repeat;
    margin: 0 auto 1rem;
    background-size: contain;
  }
  .hitem-a.after-school {
    letter-spacing: -0.1em;
  }
  .hlogo-txt {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
  }
  .hitem-a:hover::before {
    -webkit-animation: purupuru 0.4s;
            animation: purupuru 0.4s;
  }
  .hitem-span {
    display: block;
    padding: 0 1.5rem;
    border-right: var(--cl-gr) 1px solid;
    line-height: 1;
  }
  .hitem:last-child .hitem-span {
    border-right: none;
  }
}
@media screen and (min-width: 1400px) {
  .h-inner {
    padding: 0 4rem;
  }
  .hitem-a {
    font-size: 1.4rem;
  }
  .hitem-a.after-school {
    letter-spacing: 0;
  }
  .hitem-span {
    padding: 0 2.5rem;
  }
  .hlogo {
    width: 30.5rem;
  }
}
@media screen and (min-width: 1600px) {
  .h-inner {
    padding: 0 8rem;
  }
  .hitem-a {
    font-size: 1.6rem;
  }
  .hitem-a::before {
    width: 7.2rem;
    height: 7.2rem;
  }
  .hitem-span {
    padding: 0 4rem;
  }
  .hlogo {
    width: 30.5rem;
  }
}
/* sp header
--------------------------------------------------------------*/
html.is-open,
html.is-open body {
  overflow: hidden;
}

.spitem {
  position: fixed;
  z-index: 10;
}

@media screen and (min-width: 1024px) {
  .spitem {
    display: none;
  }
  .sp-open {
    display: none;
  }
}
/* spnav-nav-open */
.sp-open,
.sp-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 30;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background-color: var(--cl-wh);
  background-image: radial-gradient(var(--cl-base-point02) 0, var(--cl-base-point02) 2rem, var(--cl-wh) calc(2rem + 1px));
  cursor: pointer;
  width: 6rem;
  height: 6rem;
  outline: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.sp-open::before,
.sp-open::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1.4rem;
  height: 2px;
  background-color: var(--cl-wh);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sp-open::before {
  top: 2.4rem;
}

.sp-open::after {
  bottom: 2.4rem;
}

.spopen-line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 1.4rem;
  height: 2px;
  background-color: var(--cl-wh);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  overflow: hidden;
}

/* spnav */
.spnav {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0, 0, 0);
          transform: scale(0, 0, 0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
}

.spnav.is-open {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1, 1, 1);
          transform: scale(1, 1, 1);
}

.spnav-header {
  height: 8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem;
}

.sp-close::before,
.sp-close::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 2rem;
  height: 2px;
  background-color: var(--cl-wh);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sp-close::before {
  top: 2.2rem;
  -webkit-transform: rotate(45deg) translateX(49%);
          transform: rotate(45deg) translateX(49%);
  left: 21%;
}

.sp-close::after {
  bottom: 2.2rem;
  -webkit-transform: rotate(-45deg) translateX(49%);
          transform: rotate(-45deg) translateX(49%);
  left: 21%;
}

.spclose-line {
  display: none;
}

.sp-wrap {
  height: 100vh;
  padding: 5.3rem 4rem;
}

.sp-menu {
  background-color: var(--cl-wh);
  border-radius: 2rem;
}

.sp-item {
  position: relative;
  font-weight: bold;
}

.sp-item-a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1vh 0;
}

.sp-item-a::before {
  content: "";
  display: block;
  width: 3.6rem;
  height: 3.8rem;
  background: no-repeat center left;
  background-size: contain;
  margin-right: 1.5rem;
}

.sp-item.-entry {
  margin-top: 2rem;
}

.sp-item-a.-entry {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1.5rem;
  border-radius: 2rem;
  color: #fff;
  background-color: var(--cl-base-point01);
}

.sp-item-a.-entry::before {
  display: none;
}

.sp-item-a.-entry::after {
  content: "";
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  background: no-repeat center left;
  background-size: contain;
  margin-left: 1rem;
}

/* ftop
--------------------------------------------------------------*/
.ftop-wrap {
  padding: 13rem 0 11.5rem;
  background-image: url(../images/common/ftop-bg.png), -webkit-gradient(linear, left bottom, left top, from(#fff), to(#fff));
  background-image: url(../images/common/ftop-bg.png), linear-gradient(0, #fff, #fff);
  background-repeat: no-repeat;
  background-size: 100% auto, 100% calc(100% - 20.5rem);
  background-position: center bottom, bottom center;
}
.ftop-wrap .u-inner {
  padding: 0 2rem;
}

@media screen and (min-width: 768px) {
  .ftop-wrap {
    background-image: url(../images/common/ftop-bg-pc.png);
    background-size: 100% auto;
    background-position: center bottom;
    padding: 21rem 0 44rem;
  }
  .ftop-wrap .u-inner {
    padding: 0 4rem;
  }
}
/* 見学会に参加しよう！ */
.c-join {
  padding: 0;
  margin: 0 -2rem;
  border-radius: 5rem;
  position: relative;
}
.c-join::before {
  content: "";
  display: block;
  background-image: url(../images/common/ftop-bg-top.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: auto;
  position: absolute;
  top: 0;
  left: 0.5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 7.4rem;
  height: 6.8rem;
  z-index: 5;
}

.c-join-pic {
  width: 100%;
}
.c-join-pic img {
  border-radius: 0 0 5rem 5rem;
}

.c-join-txtbox {
  background-image: url(../images/common/join-bg.png);
  background-repeat: no-repeat;
  background-size: 100% auto, 12.5rem auto;
  padding: 5rem 2rem;
  text-align: center;
  border-radius: 5rem 5rem 0 0;
}

.c-join-title {
  display: inline-block;
  font-size: 2rem;
}

.c-join-linkbtn {
  margin-top: 2rem;
  padding: 0;
}

.c-join-a {
  padding: 1.2rem;
}

.c-join-span.-right::after {
  height: 1.8rem;
}

@media screen and (min-width: 768px) {
  .c-join {
    background-image: none;
    margin: 0;
    border-radius: 5rem;
  }
  .c-join::before {
    top: 0;
    left: -3rem;
    width: 12.5rem;
    height: 12rem;
  }
  .c-join-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    height: 42rem;
    padding: 0;
  }
  .c-join-pic {
    display: block;
    position: absolute;
    width: 57.75%;
    height: 42rem;
    z-index: 0;
    right: 0;
    top: 0;
  }
  .c-join-pic img {
    display: block;
    position: absolute;
    border-radius: 0 5rem 5rem 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .c-join-txtbox {
    position: relative;
    background-image: url(../images/common/join-bg-pc.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 42.25%;
    height: 42rem;
    padding: 0;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 5rem 0 0 5rem;
  }
  .c-join-title {
    font-size: 2.6rem;
  }
  .c-join-linkbtn {
    max-width: 22rem;
    margin: 1.5rem 0 0 auto;
  }
}
@media screen and (min-width: 1024px) {
  .c-join-title {
    font-size: 4rem;
  }
}
@media screen and (min-width: 1300px) {
  .c-join-title {
    font-size: 5rem;
  }
}
/* 所在地情報 */
.c-access {
  padding: 8rem 0 4rem;
}

.access-inner {
  max-width: 100%;
  padding: 0;
  margin: 0 auto;
}

.c-access-title {
  font-size: 2.4rem;
}

.c-access-list {
  margin-top: 3rem;
}

.c-access-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 2rem;
}

.c-access-item > * {
  font-weight: bold;
}

.c-access-main {
  width: 10.3rem;
  position: relative;
}

.c-access-span {
  display: block;
  padding: 1rem 1rem;
  text-align: center;
  border: none;
  color: var(--cl-wh);
  font-size: 1.4rem;
  background-color: var(--cl-base-point02);
  border-radius: 3rem;
}

.c-access-main::after {
  position: absolute;
  top: 50%;
  right: 0;
  content: "";
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  -webkit-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
  background-color: var(--cl-base-point02);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.c-access-sub {
  width: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 3rem;
  font-size: 1.4rem;
}

@media screen and (min-width: 768px) {
  .c-access {
    padding: 8rem 0 14rem;
  }
  .access-inner {
    padding: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
  .c-access-main {
    position: relative;
    width: 20rem;
  }
  .c-access-span {
    padding: 1.7rem 1rem;
    border: none;
    color: var(--cl-wh);
    font-size: 1.8rem;
    background-color: var(--cl-base-point01);
  }
  .c-access-main::after {
    width: 1.5rem;
    height: 1.5rem;
  }
  .c-access-sub {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1024px) {
  .c-access {
    padding: 23rem 0 15rem;
  }
  .c-access-list {
    margin-top: 7rem;
  }
  .c-access-item {
    margin-top: 4rem;
  }
  .c-access-span {
    padding: 1.4rem 1rem;
    font-size: 2.2rem;
  }
  .c-access-sub {
    font-size: 1.8rem;
  }
}
/* GoogleMAP */
.c-map {
  height: 0;
  overflow: hidden;
  padding-bottom: 50.74%;
  position: relative;
}

.c-map iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

#map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 585px;
  overflow: hidden !important;
}

#map iframe {
  width: 100%;
  height: 860px;
  margin-top: -150px;
}

@media screen and (max-width: 768px) {
  #map iframe {
    width: 100%;
    height: 860px;
    margin-top: -300px;
  }
}
@media screen and (min-width: 1024px) {
  .c-map {
    padding-bottom: 41.02%;
  }
}
/* フッター上の装飾 */
.c-ftop {
  position: relative;
  margin-top: 6.5rem;
}

.c-ftop::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0);
}

.c-ftop img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .c-ftop {
    margin-top: 14rem;
  }
}
@media screen and (min-width: 1024px) {
  .c-ftop {
    margin-top: 25rem;
  }
}
/* フローティングボタン */
.c-floating {
  position: fixed;
  bottom: -100%;
  right: 0;
  left: 0;
  margin: 0 auto;
  z-index: 10;
  -webkit-transition: 2s;
  transition: 2s;
  display: none;
}

.c-floating-a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 9.5rem;
  width: calc(100% + 6px);
  padding: 1.5rem 1.5rem 1.2rem 1.5rem;
  background-color: var(--cl-base-point02);
  color: var(--cl-wh);
  font-weight: bold;
  border: var(--cl-wh) 3px solid;
  margin: 0 -3px;
  border-radius: 2rem 2rem 0 0;
  font-size: 2.4rem;
  border-width: 3px 3px 0 3px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-floating-a::before {
  content: "";
  display: block;
  width: 3rem;
  height: 3rem;
  background: no-repeat center left;
  background-size: contain;
  margin-left: 1rem;
  background-image: url(/assets/images/common/ico_form.png);
}

.c-floating.is-active {
  bottom: -100%;
}

@media screen and (min-width: 768px) {
  .c-floating {
    display: block;
    bottom: auto;
    top: 20%;
    left: auto;
    right: -100%;
  }
  .c-floating-a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
    padding: 2.2rem 1.8rem;
    border-radius: 3rem 0 0 3rem;
    border-width: 3px 0 3px 3px;
  }
  .c-floating-a:hover {
    padding-left: 2.2rem;
    padding-right: 2.2rem;
  }
  .c-floating-span {
    display: block;
    margin: 0 auto;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -o-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
  }
  .c-floating-a::before {
    content: none;
  }
  .c-floating-a::after {
    content: "";
    display: block;
    width: 3rem;
    height: 3rem;
    background: no-repeat center left;
    background-size: contain;
    margin-left: 1rem;
    background-image: url(/assets/images/common/ico_form.png);
  }
  .c-floating.is-active {
    right: 0;
    bottom: auto;
  }
  .c-floating-a:hover::after {
    -webkit-animation: purupuru 0.4s;
            animation: purupuru 0.4s;
  }
}
@media screen and (min-width: 1024px) {
  .c-floating-a {
    padding: 3rem 1.8rem;
    font-size: 2.3rem;
    letter-spacing: 0.1em;
  }
  .c-floating-a::after {
    width: 6rem;
    height: 6rem;
    margin-top: 1rem;
  }
}
/* footer
--------------------------------------------------------------*/
.footer {
  padding: 4rem 0 18rem;
  background-color: #F5F5F5;
}
.footer .u-inner {
  padding: 0 2rem;
}
@media screen and (min-width: 768px) {
  .footer .u-inner {
    padding: 0 2rem;
  }
}

.flogo {
  display: block;
  width: 22rem;
  margin: 0;
}

.flogo-a {
  display: block;
}

.fmenu-item {
  margin-top: 1rem;
  font-size: var(--fs-txt-sm);
}

.fmenu-title {
  margin-top: 1rem;
  font-size: 1.8rem;
  font-family: var(--ff-heading);
  font-weight: bold;
}

.fmenu-item + .fmenu-item {
  margin-top: 1rem;
}

.fmenu-item-a {
  position: relative;
  padding-left: 1.5rem;
}

.fmenu-item-a::before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  display: block;
  width: 1rem;
  height: 1px;
  margin-right: 0.5rem;
  background-color: var(--cl-bk);
}

.finfo-add {
  display: inline-block;
  margin-top: 2rem;
  text-align: left;
}

.fprivacy {
  display: none;
  margin-top: 2rem;
  text-align: center;
  font-size: var(--fs-txt-sm);
}

.finfo {
  position: relative;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: var(--) 1px solid;
  text-align: left;
}

.fcopy {
  margin-top: 2rem;
  text-align: center;
  font-size: var(--fs-txt-xs);
  color: #888888;
}

@media screen and (min-width: 768px) {
  .footer {
    padding: 6rem 0 4rem;
  }
  .footer a:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 1024px) {
  .fmenu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -1rem;
  }
  .fmenu-box {
    width: 20%;
    max-width: 20%;
    padding: 0 1rem;
  }
  .fmenu-title {
    padding-bottom: 0.5rem;
    font-weight: bold;
  }
  .fmenu-item {
    margin-top: 1rem;
    font-size: var(--fs-txt-sm);
  }
  .fmenu-item + .fmenu-item {
    margin-top: 0.5rem;
  }
  .fmenu-item-a {
    position: relative;
    padding-left: 1.5rem;
  }
  .finfo {
    position: relative;
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: var(--cl-gr) 1px solid;
    text-align: left;
  }
  .flogo {
    margin: 0 auto 0 0;
    width: 26rem;
  }
  .flogo-txt {
    margin-left: 1.5rem;
    font-size: 2.3rem;
  }
  .flogo-txt-span {
    font-size: 1.6rem;
  }
  .finfo-add {
    display: block;
    margin-top: 1rem;
  }
  .fprivacy {
    margin-top: 2rem;
    text-align: left;
  }
  .fcopy {
    position: absolute;
    right: 0;
    bottom: 0;
    margin-top: 0;
    text-align: right;
  }
}
/* page-home
--------------------------------------------------------------*/
/* common */
.page-home .u-inner {
  padding: 0 2rem;
}
@media screen and (min-width: 768px) {
  .page-home .u-inner {
    padding: 0 4rem;
  }
}

.home-btn {
  max-width: 33.5rem;
}

.c-icotitle {
  text-align: center;
  font-weight: bold;
  color: var(--cl-base-point01);
  font-size: 2.4rem;
  font-family: var(--ff-heading);
}

.c-icotitle::before {
  content: "";
  display: block;
  width: 9rem;
  height: 6.8rem;
  background: url(http://placehold.jp/160x120.png) no-repeat center bottom;
  background-size: contain;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .c-icotitle {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 1024px) {
  .c-icotitle {
    font-size: 3rem;
  }
  .c-icotitle::before {
    width: 16rem;
    height: 12rem;
    margin: 0 auto;
  }
}
/* kv */
.kv-wrap {
  height: 69.7rem;
  background-size: 100% auto;
  background-image: url(../images/common/kv-bg-sp.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
  margin-bottom: 4.5rem;
}

.kv-box {
  width: 100%;
  max-width: 125rem;
  margin: 0 auto;
  padding: 1.5rem 2rem 0;
  color: var(--cl-bk);
}

.kv-title {
  font-size: 3.6rem;
  line-height: 1.3;
  margin: 0 -2rem;
  width: calc(100% + 4rem);
}

.kv-sub {
  margin-top: 0;
  font-size: 1.4rem;
}

@media screen and (min-width: 768px) {
  .kv-wrap {
    height: 80vw;
    background-image: url(../images/common/kv-bg.jpg);
  }
  .kv-box {
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 2vw 4rem 0;
    position: relative;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .kv-box::before {
    content: "";
    display: block;
    width: 68vw;
    height: auto;
    aspect-ratio: 81.6/32.8;
    background-image: url(../images/common/kv-txt-bg.png);
    background-size: 100% auto;
    background-position: right bottom;
    position: absolute;
    width: 87.4rem;
    top: 0;
    left: calc(50% - 8.2rem);
    z-index: -1;
  }
  .kv-box > .inner {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .kv-title {
    font-size: clamp(1rem, 5.12vw, 6.4rem);
    line-height: 1.4;
    margin: 0 -4rem;
    white-space: nowrap;
  }
  .kv-sub {
    margin-top: 0;
    font-size: clamp(1rem, 1.92vw, 2.4rem);
  }
}
@media screen and (min-width: 1250px) {
  .kv-box {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding-left: 10rem;
    padding-right: 10rem;
  }
  .kv-box::before {
    width: 87.4rem;
    left: calc(50% - 8.2rem);
  }
}
@media screen and (min-width: 1600px) {
  .kv-box {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding-left: 20rem;
    padding-right: 20rem;
  }
  .kv-box::before {
    width: 87.4rem;
    right: 0;
    left: auto;
  }
}
/* news */
.hnews-wrap {
  max-width: 90rem;
  margin: 0 auto;
  padding: 6rem 0;
}

.hnews-title {
  text-align: center;
}

.hnews-list {
  margin-top: 4rem;
}

.hnews-item {
  border-bottom: var(--cl-gr) 2px dashed;
}

.hnews-item-a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 1.5rem 0 1.5rem 0;
}

.hnews-date {
  margin-right: 1rem;
  color: #707070;
}

.hnews-cat {
  width: 10rem;
}

.hnews-cat-span {
  display: inline-block;
  width: 100%;
  padding: 0 0 0.2rem;
  background-color: var(--cl-base-point01);
  color: var(--cl-wh);
  font-size: var(--fs-txt-sm);
  text-align: center;
}

.hnews-main {
  width: 100%;
  margin-top: 0.5rem;
  font-size: 1.6rem;
}

.hnews-btn {
  margin-top: 3rem;
}

@media screen and (min-width: 768px) {
  .hnews-wrap {
    padding: 0 0 8rem;
  }
  .hnews-date {
    font-size: 1.8rem;
  }
  .hnews-main {
    margin-top: 1rem;
    font-size: 1.8rem;
  }
  .hnews-item-a:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 1024px) {
  .hnews-list {
    margin-top: 5rem;
  }
  .hnews-date {
    width: 10rem;
  }
  .hnews-cat {
    width: 10rem;
  }
  .hnews-main {
    width: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin: 0 0 0 4rem;
  }
  .hnews-btn {
    margin-top: 5.8rem;
  }
}
/* menu */
.hmenu-wrap {
  margin: 0 -2rem;
  padding: 2.5rem 0;
  background-color: var(--cl-base-point02thin);
}

.hmenu-box {
  margin: 0 2rem;
  background-color: var(--cl-wh);
  border-radius: 3rem;
  -webkit-box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.16);
          box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.16);
}

.hmenu-box + .hmenu-box {
  margin-top: 8rem;
}

.hmenu-cat {
  padding-bottom: 2rem;
  font-size: 1.8rem;
  font-family: var(--ff-heading);
  text-align: center;
  color: var(--cl-base-point01);
  border-bottom: var(--cl-base-point01) 2px solid;
}

.hmenu-cat::before {
  content: "";
  display: block;
  width: 9rem;
  height: 9rem;
  background-size: contain;
  margin: 0 auto;
}

.hmenu-main {
  padding-top: 2rem;
  font-size: 2.4rem;
  text-align: center;
  font-family: var(--ff-heading);
}

.hmenu-txt {
  margin-top: 2rem;
}

.hmenu-btn {
  margin-top: 3rem;
}

.hmenu-pic {
  margin-top: 3rem;
}

.hmenu-pic img {
  border-radius: 10rem;
}

.hmenu-box {
  position: relative;
}
.hmenu-box .hmenu-pic {
  max-width: 100%;
  width: 100%;
  z-index: 1;
}
.hmenu-box .hmenu-pic .inner {
  max-width: calc(100% + 2rem);
  width: calc(100% + 2rem);
  margin-right: -2rem;
}
.hmenu-box .hmenu-pic img {
  max-width: 100%;
  width: 100%;
  border-radius: 0 0 0 10rem;
}
.hmenu-box.-rev .hmenu-pic .inner {
  margin-right: 0;
  margin-left: -2rem;
}
.hmenu-box.-rev .hmenu-pic img {
  border-radius: 0 0 10rem 0;
}

@media screen and (min-width: 768px) {
  .hmenu-wrap {
    margin: 0;
    padding: 6rem 0;
    background-color: transparent;
  }
  .hmenu-cat {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-bottom: 0;
    font-size: 2.4rem;
    text-align: left;
    border-bottom: none;
  }
  .hmenu-cat::before {
    width: 6rem;
    height: 6rem;
    margin: 0 1rem 0 0;
  }
  .hmenu-main {
    padding-top: 2rem;
    font-size: 2.6rem;
    text-align: left;
  }
  .hmenu-txt {
    font-size: 1.4rem;
  }
  .hmenu-btn {
    margin: 3rem auto 0;
  }
  .hmenu-box {
    position: relative;
    margin: 0;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .hmenu-box .hmenu-txtbox {
    width: calc(65% + 4rem);
    max-width: 71rem;
    z-index: 3;
    padding: 4rem;
    background-color: var(--cl-wh);
    border-radius: 6rem 6rem;
    margin-left: -4rem;
    margin-right: 0;
  }
  .hmenu-box .hmenu-pic {
    max-width: 35%;
    margin: 40vw 0 0;
    width: 45%;
    z-index: 1;
  }
  .hmenu-box .hmenu-pic .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: calc(100% + 4rem + 25vw);
    margin-left: -25vw;
    margin-right: -4rem;
  }
  .hmenu-box .hmenu-pic img {
    max-width: 100%;
    width: 100%;
    border-radius: 0 0 0 10rem;
  }
  .hmenu-box.-rev {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .hmenu-box.-rev .hmenu-txtbox {
    margin-left: 0;
    margin-right: -4rem;
  }
  .hmenu-box.-rev .hmenu-pic .inner {
    margin-left: -4rem;
    margin-right: -25vw;
  }
  .hmenu-box.-rev .hmenu-pic img {
    border-radius: 0 0 10rem 0;
  }
  .hmenu-box + .hmenu-box {
    margin-top: 4rem;
  }
}
@media screen and (min-width: 1024px) {
  .hmenu-wrap {
    padding: 8.3rem 0;
  }
  .hmenu-cat::before {
    width: 9rem;
    height: 9rem;
  }
  .hmenu-main {
    font-size: 3.6rem;
  }
  .hmenu-txt {
    margin-top: 1.5rem;
    font-size: 1.6rem;
    line-height: 1.7;
  }
  .hmenu-box {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .hmenu-box .hmenu-txtbox {
    width: calc(60.68% + 2rem);
    max-width: 71rem;
    margin-left: -2rem;
    margin-right: 0;
  }
  .hmenu-box .hmenu-pic {
    max-width: calc(50vw - 50% + 54.22%);
    width: calc(54.22% + 50vw - 50%);
    margin-top: 0;
    margin-left: -14.9%;
    margin-right: calc((50vw - 50%) * -1);
    z-index: 1;
  }
  .hmenu-box .hmenu-pic .inner {
    width: 100%;
    margin: 0;
  }
  .hmenu-box .hmenu-pic .inner img {
    border-radius: 0 0 0 20rem;
  }
  .hmenu-box.-rev {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .hmenu-box.-rev .hmenu-txtbox {
    margin-left: 0;
    margin-right: -2rem;
  }
  .hmenu-box.-rev .hmenu-pic {
    margin-left: calc((50vw - 50%) * -1);
    margin-right: -14.9%;
  }
  .hmenu-box.-rev .hmenu-pic .inner {
    width: 100%;
    margin: 0;
  }
  .hmenu-box.-rev .hmenu-pic img {
    border-radius: 0 0 20rem 0;
  }
  .hmenu-box + .hmenu-box {
    margin-top: 10rem;
  }
}
/* bottom */
.hbottom-wrap {
  padding: 8rem 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.hbottom-wrap .hbottom-box {
  width: 100%;
  position: relative;
  padding: 0 0 1rem;
}
.hbottom-wrap .hbottom-pic img {
  border-radius: 5rem;
}
.hbottom-wrap .hbottom-title {
  font-size: 1.8rem;
  color: var(--cl-base-point02);
  line-height: 1.3;
  width: 21rem;
  height: 10.5rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 3;
  text-align: center;
  background-image: radial-gradient(#fff 0, #fff calc(71% - 1px), transparent 71%);
  background-size: 100% 200%;
  background-repeat: no-repeat;
  background-position: top center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.hbottom-wrap .hbottom-title::before {
  content: "";
  width: 6rem;
  height: 6rem;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.hbottom-wrap .hbottom-box + .hbottom-box {
  margin-top: 4rem;
}
.hbottom-wrap .hbottom-box-a:hover, .hbottom-wrap .hbottom-box-a:active {
  opacity: 0.7;
}

@media screen and (min-width: 768px) {
  .hbottom-wrap {
    padding: 3rem 0 0;
    gap: 3rem;
  }
  .hbottom-wrap .hbottom-box {
    width: calc((100% + 3rem) / 3 - 3rem);
  }
  .hbottom-wrap .hbottom-pic img {
    border-radius: 5rem;
  }
  .hbottom-wrap .hbottom-title {
    width: 21rem;
    height: 10.5rem;
  }
  .hbottom-wrap .hbottom-title::before {
    content: "";
    width: 6rem;
    height: 6rem;
  }
  .hbottom-wrap .hbottom-box + .hbottom-box {
    margin-top: 0;
  }
}
/* page-education
--------------------------------------------------------------*/
.edu-special {
  position: relative;
  margin-top: 6rem;
  padding: 3rem 2rem;
  background-color: #FFF4F4;
  border-radius: 3rem;
  width: calc(100% + 4rem);
  margin-left: -2rem;
  margin-right: -2rem;
}

.edu-special-ttl {
  font-size: 2rem;
}

.edu-special-box {
  margin-top: 2rem;
}

.edu-special-pic img {
  border-radius: 3rem;
}

.edu-special-txtbox {
  margin-top: 1rem;
}

.edu-special-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: var(--fs-title04);
}

.edu-special-main::before {
  content: "";
  display: block;
  width: 4.2rem;
  height: 3rem;
  margin-right: 0.5rem;
  background: url(http://placehold.jp/92x76.png) no-repeat;
  background-size: contain;
}

.edu-special-txt {
  margin-top: 0.5rem;
}

@media screen and (min-width: 768px) {
  .edu-special {
    margin-top: 8rem;
    padding: 5.5rem 4.5rem 5rem;
  }
  .edu-special-ttl {
    font-size: 3.2rem;
  }
  .edu-special-box {
    margin-top: 6rem;
  }
  .edu-special-box + .edu-special-box {
    margin-top: 4rem;
  }
  .edu-special-main::before {
    width: 6.2rem;
    height: 5rem;
  }
  .edu-special-txt {
    margin-top: 1rem;
  }
  .edu-special-pic {
    margin-top: 0;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1024px) {
  .edu-special {
    margin-top: 10rem;
    padding: 8.5rem 7.5rem 8rem;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .edu-special::before {
    top: -5.5rem;
    border-width: 0 34px 58px 34px;
  }
  .edu-special-ttl {
    font-size: 4rem;
  }
  .edu-special-box {
    margin-top: 8rem;
  }
  .edu-special-box + .edu-special-box {
    margin-top: 6rem;
  }
  .edu-special-txt {
    margin-top: 2rem;
  }
}
@media screen and (min-width: 1300px) {
  .edu-special-txt {
    font-size: 1.8rem;
    line-height: 1.9;
  }
}
/* day-flow-ttl / day-event-ttl / faq-ttl
--------------------------------------------------------------*/
.day-flow-ttl,
.day-event-ttl,
.faq-ttl {
  margin-bottom: 3rem;
  font-size: 1.8rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (min-width: 768px) {
  .day-flow-ttl,
  .day-event-ttl,
  .faq-ttl {
    margin-bottom: 8rem;
    font-size: 3.6rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 5rem;
  }
}
@media screen and (min-width: 1024px) {
  .day-flow-ttl,
  .day-event-ttl,
  .faq-ttl {
    margin-bottom: 10.5rem;
  }
}
/* page-day
--------------------------------------------------------------*/
.day-flow {
  margin-top: 8rem;
}

.day-flow-box {
  margin-top: 3rem;
}

.day-flow-time {
  position: relative;
  padding: 1rem 0;
  font-size: 1.8rem;
  background-color: #ccc;
}

.day-flow-span {
  height: 5rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 2;
  line-height: 1.1;
  gap: 0.7rem;
}

.day-flow-span .icon-tiem {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  background: url(/assets/images/common/ico_time_wh.svg) no-repeat center center;
  background-size: contain;
  margin: 0;
}

.day-flow-ex {
  font-size: 1.2rem;
}

.day-flow-pic img {
  border-radius: 3rem;
}

.day-flow-main {
  font-size: var(--fs-title05);
}

.day-flow-txt {
  margin-top: 0.5rem;
}
.day-flow-txt:first-child {
  margin-top: 0;
}

.day-flow-note {
  margin-top: 1rem;
  text-indent: -1.8rem;
  margin-left: 1.8rem;
}

.day-flow-note::before {
  content: "●";
  margin-right: 0.5rem;
  color: var(--cl-base-point02);
}

.day-flow-bg {
  margin-top: 1rem;
  padding: 1.5rem;
  background-color: var(--cl-base-point02thin);
}

@media screen and (min-width: 768px) {
  .day-flow {
    margin-top: 16rem;
  }
  .day-flow-span .icon-tiem {
    width: 4rem;
    height: 4rem;
  }
  .day-flow-pic {
    width: calc(40% - 2.9rem);
  }
  .u-item-row .day-flow-txtbox {
    width: calc(60% - 2.9rem);
  }
  .day-flow-ex {
    padding-left: 1rem;
    font-size: 2.5rem;
  }
  .day-flow-bg {
    margin-top: 2rem;
    padding: 2rem;
  }
}
@media screen and (min-width: 1024px) {
  .day-flow-box + .day-flow-box {
    margin-top: 4.6rem;
  }
  .day-flow-timebox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .day-flow-timebox > * {
    width: 50%;
  }
  .day-flow-timebox > *:nth-child(1)::after {
    display: none;
  }
  .day-flow-timebox > *:nth-child(2) {
    margin-top: 0;
  }
  .day-flow-timebox > *:nth-child(2)::before {
    display: none;
  }
  .day-flow-time {
    padding: 2rem 0;
  }
  .day-flow-span {
    gap: 1.1rem;
  }
  .day-flow-span {
    height: 6.3rem;
  }
  .day-flow-pic {
    width: calc(42% - 5.7rem);
  }
  .u-item-row .day-flow-txtbox {
    width: calc(58% - 5.7rem);
  }
}
@media screen and (min-width: 1300px) {
  .day-flow-txt {
    margin-top: 1rem;
    font-size: 1.8rem;
  }
  .day-flow-note {
    font-size: 1.8rem;
  }
  .day-flow-bg {
    font-size: 1.8rem;
  }
}
/* page-program
--------------------------------------------------------------*/
.program-event {
  margin-top: 8rem;
}

.program-event-ttl {
  margin-bottom: 3rem;
  font-size: 1.8rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.program-event-wrap {
  padding: 8rem 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.program-event-wrap .program-event-box {
  width: 100%;
  position: relative;
  padding: 0 0 1rem;
}
.program-event-wrap .program-event-pic img {
  border-radius: 5rem;
}
.program-event-wrap .program-event-month {
  --bg-circle-size: 11.2rem;
  --bg-circle-offset: 0.5;
  display: block;
  position: relative;
  font-size: 5rem;
  font-weight: 500;
  letter-spacing: 0.3rem;
  color: var(--cl-base-point02);
  line-height: 1;
  width: var(--bg-circle-size);
  height: calc(var(--bg-circle-size) / 2 + var(--bg-circle-offset));
  margin: calc(var(--bg-circle-size) / -2) auto 0;
  z-index: 3;
  text-align: center;
  background-image: radial-gradient(#fff 0, #fff calc(var(--bg-circle-size) / 2 - 1px), transparent calc(var(--bg-circle-size) / 2));
  background-size: var(--bg-circle-size) var(--bg-circle-size);
  background-repeat: no-repeat;
  background-position: top center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  z-index: 3;
}
.program-event-wrap .program-event-month .month {
  font-size: 1.8rem;
  line-height: 1.35;
  font-weight: bold;
}
.program-event-wrap .program-event-title {
  font-size: 1.8rem;
  line-height: 1.3;
  margin-top: 1rem;
  text-align: center;
}
.program-event-wrap .program-event-box + .program-event-box {
  margin-top: 3rem;
}

@media screen and (min-width: 768px) {
  .program-event-ttl {
    margin-bottom: 10rem;
    font-size: 3.6rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 5rem;
  }
  .program-event-wrap {
    padding: 0;
    gap: 5rem 3rem;
  }
  .program-event-wrap .program-event-box {
    width: calc((100% + 3rem) / 2 - 3rem);
  }
  .program-event-wrap .program-event-pic img {
    border-radius: 5rem;
  }
  .program-event-wrap .program-event-month {
    --bg-circle-size: 17.4rem;
    --bg-circle-offset: 2rem;
    font-size: 6.4rem;
    line-height: 1;
  }
  .program-event-wrap .program-event-month .month {
    font-size: 3.6rem;
    line-height: 1.2;
    margin-top: 0.5rem;
  }
  .program-event-wrap .program-event-title {
    font-size: 2.4rem;
  }
  .program-event-wrap .program-event-box + .program-event-box {
    margin-top: 0;
  }
}
@media screen and (min-width: 1024px) {
  .program-event-ttl {
    margin-bottom: 16rem;
  }
}
/* page-facility
--------------------------------------------------------------*/
.fac-wrap {
  margin-top: 8rem;
}

.fac-ttl {
  display: block;
  position: relative;
  font-size: 2.4rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  text-align: center;
}

.fac-ttl::before {
  content: "";
  display: block;
  background: no-repeat;
  background-size: contain;
  width: 6rem;
  height: 6rem;
  margin: 0 auto;
}

.fac-txt {
  font-size: var(--fs-title06);
}

.fac-pic img {
  border-radius: 3rem;
}

@media screen and (min-width: 768px) {
  .fac-ttl {
    display: inline-block;
    position: relative;
    font-size: var(--fs-title02);
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: left;
  }
  .fac-ttl::before {
    width: 10rem;
    height: 10rem;
    margin: 0;
  }
  .fac-txt {
    font-size: var(--fs-title06);
  }
  .fac-pic img {
    border-radius: 3rem;
  }
}
.fac-row {
  --gap: 3rem;
  margin: 0;
  padding: 0;
  gap: var(--gap);
}
.fac-row .fac-txt {
  max-width: 100%;
  width: 100%;
  margin: 0;
  position: relative;
  z-index: 3;
}
.fac-row .fac-pic {
  max-width: 100%;
  width: 100%;
  position: relative;
  z-index: 2;
}
.fac-row + .fac-row {
  margin-top: var(--gap);
}

@media screen and (min-width: 768px) {
  .fac-wrap {
    margin-top: 10rem;
  }
  .fac-row {
    --gap: 6.5rem;
  }
  .fac-row .fac-txt {
    max-width: calc(36.07% - var(--gap));
    width: calc(36.07% - var(--gap));
    margin: 0;
  }
  .fac-row .fac-pic {
    max-width: 63.93%;
    width: 63.93%;
    margin: 0;
  }
  .fac-row.-rev .fac-txt {
    max-width: calc(40.48% - var(--gap));
    width: calc(40.48% - var(--gap));
    margin: 0;
  }
  .fac-row.-rev .fac-pic {
    max-width: 59.52%;
    width: 59.52%;
  }
}
.fac02-pic-row {
  --gap: .8rem;
  margin: 0 calc(var(--gap) / -2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0;
}
.fac02-pic-row .fac-pic,
.fac02-pic-row .fac-pic-huff,
.fac02-pic-row .fac-pic-quarter {
  margin: 1.5rem 0 0;
  padding: 0 calc(var(--gap) / 2);
}
.fac02-pic-row .fac-pic img,
.fac02-pic-row .fac-pic-huff img,
.fac02-pic-row .fac-pic-quarter img {
  border-radius: 3rem;
}
.fac02-pic-row .fac-pic-huff {
  width: 100%;
}
.fac02-pic-row .fac-pic-quarter {
  width: 50%;
}
.fac02-pic-row + .fac-row, .fac-row + .fac02-pic-row {
  margin-top: 1.5rem;
}

@media screen and (min-width: 768px) {
  .fac02-pic-row {
    --gap: 2.6rem;
  }
  .fac02-pic-row .fac-pic,
  .fac02-pic-row .fac-pic-huff,
  .fac02-pic-row .fac-pic-quarter {
    margin: 0;
  }
  .fac02-pic-row .fac-pic-huff {
    width: 50%;
  }
  .fac02-pic-row .fac-pic-quarter {
    width: 25%;
  }
  .fac02-pic-row + .fac-row, .fac-row + .fac02-pic-row {
    margin-top: 6.5rem;
  }
}
.fac-pic:has(:nth-child(2)) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.fac-pic:has(:nth-child(2)) img {
  width: calc(50% - 0.7rem);
}
.fac-pic:has(:nth-child(2)) img:nth-child(1) {
  margin-bottom: 10.6%;
}
.fac-pic:has(:nth-child(2)) img:nth-child(2) {
  margin-top: 10.6%;
}

@media screen and (min-width: 768px) {
  .fac-pic:has(:nth-child(2)) img {
    width: calc(50% - 1.4rem);
  }
  .fac-pic:has(:nth-child(2)) img:nth-child(1) {
    margin-bottom: 11.6%;
  }
  .fac-pic:has(:nth-child(2)) img:nth-child(2) {
    margin-top: 11.6%;
  }
}
.fac01, .fac03 {
  position: relative;
}
.fac01::before, .fac03::before {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  z-index: 0;
}

.fac01::before {
  content: "";
  background-image: url(../images/facility/fac01_bg01.png);
  width: 22rem;
  height: 13.1rem;
  left: auto;
  right: -0.5rem;
  bottom: -5.5rem;
}

.fac03::before {
  content: "";
  background-image: url(../images/facility/fac03_bg01.png);
  width: 22.8rem;
  height: 15.6rem;
  left: -1rem;
  bottom: -7rem;
}

@media screen and (min-width: 768px) {
  .fac01::before {
    width: 57.2rem;
    height: 34.1rem;
    left: 12%;
    right: auto;
    bottom: -20rem;
  }
  .fac03 {
    padding-bottom: 11.5rem;
  }
  .fac03::before {
    width: 49.4rem;
    height: 33.2rem;
    left: 15%;
    bottom: 0;
  }
}
/* page-flow
--------------------------------------------------------------*/
.flow-wrap {
  margin-top: 6rem;
}

.flow-box {
  position: relative;
  padding: 0 0 5.5rem;
  margin-top: 8rem;
}

.flow-box + .flow-box {
  position: relative;
  margin-top: 3.5rem;
}

.flow-box::after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 22px 20px 0 20px;
  border-color: #EFEFEF transparent transparent transparent;
}

.flow-box:first-child {
  padding-top: 0;
}

.flow-box:last-child {
  padding-bottom: 0;
}

.flow-box:last-child::after {
  display: none;
}

.flow-ttlbox {
  border: var(--cl-base-point02) 3px solid;
  border-radius: 2rem;
  overflow: hidden;
  background-color: var(--cl-wh);
}

.flow-ttlbox > * {
  padding: 1rem 1rem;
}

.flow-month {
  background-color: var(--cl-base-point02);
  font-size: 2.4rem;
  font-weight: 500;
  font-family: var(--ff-heading);
  text-align: center;
  padding: 2.2rem 1rem;
  line-height: 1.2;
}

.flow-dd {
  font-size: 1.4rem;
  padding: 3rem 1rem;
}

.flow-ttl {
  font-size: 1.8rem;
  text-align: center;
}

.c-lead-ttl + .flow-txt {
  margin-top: 3rem;
}

.flow-txtlink {
  margin-top: 2rem;
  font-size: 1.4rem;
}

.flow-txtlink-a {
  text-decoration: underline;
  color: var(--cl-base-point01);
}

.flow-txtlink-span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flow-txtlink-span::after {
  content: "";
  display: block;
  width: 1rem;
  height: 1.4rem;
  margin-left: 0.5rem;
  background: url(/assets/images/common/ar_bottom_point.svg) no-repeat center center;
  background-size: contain;
}

@media screen and (min-width: 768px) {
  .flow-wrap {
    margin-top: 15rem;
  }
  .flow-ttlbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 16.4rem;
  }
  .flow-ttlbox > * {
    padding: 1rem 3rem;
    line-height: 1.4;
  }
  .flow-month {
    width: 100%;
    max-width: 18rem;
    text-align: center;
    font-size: 2.4rem;
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .flow-dd {
    width: 100%;
    max-width: calc(100% - 18rem);
    text-align: left;
    font-size: 3.4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .flow-ttl {
    text-align: left;
    margin-top: 0;
    font-size: 1.8rem;
  }
  .flow-txt {
    margin-top: 1rem;
    font-size: 1.6rem;
  }
  .flow-txtlink {
    margin-top: 1rem;
    font-size: 1.6rem;
  }
  .flow-txtlink-span {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media screen and (min-width: 1024px) {
  .flow-wrap {
    margin-top: 23rem;
  }
  .flow-ttlbox > * {
    padding: 1.5rem 2rem;
  }
  .flow-month {
    max-width: 22.4rem;
    font-size: 3.6rem;
  }
  .flow-dd {
    max-width: calc(100% - 22.4rem);
    text-align: left;
  }
  .flow-ttl {
    margin-top: 0;
    font-size: 2.4rem;
  }
  .flow-txt {
    margin-top: 1rem;
    font-size: 1.8rem;
  }
  .flow-txtlink {
    margin-top: 1rem;
    font-size: 1.8rem;
  }
}
/* page-faq
--------------------------------------------------------------*/
.faq-linkbtn {
  margin-top: 2rem;
  font-size: 1.8rem;
}

.faq-nav {
  margin-top: 8rem;
}

.faq-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.faq-nav-item {
  width: 50%;
  padding: 3rem 0 3rem;
  text-align: center;
}

.faq-nav-a {
  position: relative;
  display: block;
}

.faq-nav-a::after {
  position: absolute;
  bottom: -1.5rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  content: "";
  display: block;
  width: 1.2rem;
  height: 0.8rem;
  background: url(/assets/images/common/ar_bottom_bk.svg) no-repeat center center;
  background-size: cover;
}

.faq-nav-item:nth-child(1) .faq-nav-a {
  border-right: var(--cl-gr) 1px solid;
}

.faq-wrap {
  padding-top: 4rem;
}

.faq-ttl {
  margin-bottom: 2rem;
}

.faq-item + .faq-item {
  margin-top: 3rem;
}

.faq-item-ttl,
.faq-item-txt {
  padding: 0;
  min-height: 4.5rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.faq-item-ttl {
  font-size: 1.4rem;
}

.faq-item-txt {
  font-size: 1.4rem;
  margin-top: 2rem;
}

.faq-item-ttl::before,
.faq-item-txt::before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  border-radius: 50%;
  width: 4.5rem;
  height: 4.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.8rem;
}

.faq-item-ttl::before {
  content: "Q";
  background-color: var(--cl-base-point02);
  color: var(--cl-wh);
}

.faq-item-txt::before {
  content: "A";
  background-color: #FAFAFA;
  color: var(--cl-bk);
}

.faq-item-span,
.faq-item-txtspan {
  padding-left: 5.5rem;
}

@media screen and (min-width: 768px) {
  .faq-linkbtn {
    margin-top: 5.5rem;
    width: 32rem;
    max-width: 32rem;
  }
  .faq-linkbtn-a {
    font-size: 2.4rem;
  }
  .faq-nav {
    margin-top: 10rem;
  }
  .faq-nav-a {
    font-size: 2rem;
  }
  .faq-wrap {
    padding-top: 8rem;
  }
  .faq-ttl {
    margin-bottom: 4rem;
  }
  .faq-item-ttl,
  .faq-item-txt {
    min-height: 7.5rem;
  }
  .faq-item-ttl {
    font-size: 2.4rem;
  }
  .faq-item-txt {
    font-size: 1.6rem;
    margin-top: 2.5rem;
  }
  .faq-item-ttl::before,
  .faq-item-txt::before {
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
    width: 7.5rem;
    height: 7.5rem;
    font-size: 3.6rem;
  }
  .faq-item-span,
  .faq-item-txtspan {
    padding-left: 10rem;
  }
}
@media screen and (min-width: 1024px) {
  .faq-nav {
    margin-top: 16rem;
  }
  .faq-nav-a {
    font-size: 2.2rem;
  }
  .faq-wrap {
    padding-top: 13.5rem;
  }
  .faq-ttl {
    margin-bottom: 5.8rem;
  }
  .faq-item + .faq-item {
    margin-top: 5.6rem;
  }
  .faq-item-ttl,
  .faq-item-txt {
    min-height: 10rem;
  }
  .faq-item-ttl {
    font-size: 2.4rem;
  }
  .faq-item-txt {
    font-size: 1.6rem;
    margin-top: 2.5rem;
  }
  .faq-item-ttl::before,
  .faq-item-txt::before {
    width: 10rem;
    height: 10rem;
    font-size: 4rem;
  }
  .faq-item-span,
  .faq-item-txtspan {
    padding-left: 14rem;
  }
}
/* page-news
--------------------------------------------------------------*/
/* index */
.news-wrap {
  padding-top: 4rem;
}

.month-select {
  position: relative;
  max-width: 19rem;
}

.month-select::before {
  position: absolute;
  top: 50%;
  right: 2rem;
  content: "";
  display: block;
  width: 1rem;
  height: 0.8rem;
  background: url(/assets/images/common/ar_bottom_point.svg) no-repeat center right;
  background-size: contain;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.month-select select {
  cursor: pointer;
  width: 100%;
  padding: 1.2rem 2rem;
  border: var(--cl-base-point01) 2px solid;
  border-radius: 4rem;
  background-color: var(--cl-wh);
}

.cat-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 4rem;
}

.cat-item {
  width: 33.33%;
  text-align: center;
}

.cat-item.is-active .cat-item-a {
  color: var(--cl-base-point01);
}

.cat-item-a {
  display: block;
  padding: 1.5rem;
  background-color: var(--cl-base-point02thin);
  font-size: var(--fs-title06);
}

.cat-item-a:hover {
  opacity: 0.7;
}

.news-list {
  margin-top: 6rem;
}

.news-box + .news-box {
  margin-top: 4rem;
}

.news-box-a {
  display: block;
}

.news-box-a:hover {
  opacity: 0.7;
}

.news-txtbox {
  background-color: rgba(255, 255, 255, 0.6);
}

.news-txtbox-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.news-date {
  font-size: 1.6rem;
}

.news-cat {
  width: 10rem;
}

.news-cat-span {
  display: block;
  margin-left: 1rem;
  background-color: var(--cl-base-point01);
  color: var(--cl-wh);
  font-size: var(--fs-txt-sm);
  text-align: center;
}

.news-ttl {
  margin: 0.5rem 0;
  font-size: 2.4rem;
  line-height: 1.4;
}

.news-txt {
  font-size: var(--fs-title06);
}

.news-pic img {
  border-radius: 3rem;
}

.pagination {
  margin-top: 6rem;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 4rem;
  height: 4rem;
  margin: 0 0.5rem;
  font-size: 1.4rem;
  border: var(--cl-gr) 1px solid;
  border-radius: 50%;
}

.page-numbers:hover {
  opacity: 0.7;
}

.page-numbers.current {
  background-color: var(--cl-base-point02);
  border-color: var(--cl-base-point02);
}

.page-numbers.dots {
  border: none;
}

.page-numbers.next,
.page-numbers.prev {
  background: url(/assets/images/common/ar_right_bk.svg) no-repeat center center;
  background-size: 0.6rem;
  border: none;
}

.page-numbers.prev {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media screen and (min-width: 768px) {
  .news-wrap {
    padding-top: 8rem;
  }
  .cat-list {
    background-color: var(--cl-base-point02thin);
  }
  .cat-item {
    width: 20%;
    margin: 1.5rem 0;
    border-right: var(--cl-gr) 1px solid;
  }
  .cat-item:nth-child(5) {
    border-right: none;
  }
  .cat-item-a {
    padding: 1rem;
  }
  .news-date {
    font-size: 2rem;
  }
  .news-ttl {
    margin: 1rem 0;
  }
  .pagination {
    margin-top: 6rem;
  }
  .page-numbers {
    margin: 0 0.8rem;
    width: 5rem;
    height: 5rem;
  }
}
@media screen and (min-width: 1024px) {
  .news-wrap {
    padding-top: 14rem;
  }
  .cat-list {
    margin-top: 5.6rem;
  }
  .cat-item {
    width: 16.6%;
    margin: 1.5rem 0;
  }
  .cat-item:nth-child(5) {
    border-right: var(--cl-gr) 1px solid;
  }
  .cat-item:nth-child(6) {
    border-right: none;
  }
  .cat-item-a {
    padding: 1rem;
  }
  .news-list {
    margin-top: 11.6rem;
  }
  .news-box + .news-box {
    margin-top: 13rem;
  }
  .news-date {
    font-size: 2.8rem;
  }
  .news-cat-span {
    width: 10rem;
    margin-left: 1.5rem;
    text-align: center;
  }
  .news-ttl {
    margin: 1.5rem 0;
  }
  .pagination {
    margin-top: 13rem;
  }
  .page-numbers {
    font-size: 2rem;
  }
}
/* detail */
.news-detail .news-wrap {
  padding-top: 4rem;
}

.news-ttl.-detail {
  font-size: 2.4rem;
}

.news-txtwrap {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: var(--cl-base-point01) 2px solid;
  font-size: var(--fs-title06);
}

.news-detail-linkbtn {
  margin-top: 6rem;
}

@media screen and (min-width: 768px) {
  .news-detail .news-wrap {
    padding-top: 10rem;
  }
  .news-txtwrap {
    margin-top: 1rem;
    padding-top: 3rem;
  }
}
@media screen and (min-width: 1024px) {
  .news-detail .news-wrap {
    padding-top: 14rem;
  }
  .news-txtwrap {
    padding-top: 6rem;
  }
  .news-detail-linkbtn {
    margin-top: 15rem;
  }
}
/* page-entry
--------------------------------------------------------------*/
/* index */
.entry-date {
  margin-top: 6rem;
}

.entry-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.entry-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50%;
  font-size: var(--fs-title05);
}

.entry-txt {
  margin-top: 1rem;
  text-align: center;
  font-size: 1.4rem;
}

.entry-item-time {
  font-size: 1.4rem;
  background: #fff;
  padding: 0 0.5rem;
  margin-left: 0.5rem;
}

.entry-txtex {
  font-size: 1.4rem;
}

/*エントリーボタンの調整*/
.entry-index .form-btn .submit-btn:nth-child(n+2) {
  display: none;
}

@media screen and (min-width: 768px) {
  .entry-date {
    max-width: 64rem;
    margin: 0 auto;
    margin-top: 10rem;
  }
  .entry-txt {
    font-size: 1.8rem;
  }
  .entry-item {
    width: 33.33%;
  }
  .entry-txt {
    margin-top: 1.5rem;
    font-size: 2.2rem;
  }
  .entry-txtex {
    margin-top: 2rem;
    text-align: center;
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1024px) {
  .entry-date {
    max-width: 66rem;
    margin-top: 13.5rem;
  }
  .entry-item {
    font-size: 2.4rem;
  }
  .entry-txt {
    font-size: 2.5rem;
  }
  .entry-txtex {
    margin-top: 3rem;
    font-size: 1.6rem;
  }
}
/* form */
.entry-form {
  margin-top: 6rem;
}

.form-item {
  padding: 2rem 0;
}

.form-item:first-child {
  padding-top: 0;
}

.form-item + .form-item {
  border-top: var(--cl-gr) 2px dashed;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=password],
textarea {
  height: 5.4rem;
  padding: 1.5rem 2rem;
  background-color: #F5F5F5;
  border: none;
  border-radius: 2rem;
  font-size: 1.6rem;
}

.form-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.6rem;
}

.form-required {
  padding-left: 1rem;
  color: var(--cl-base-point01);
  font-size: var(--fs-txt-sm);
}

.form-input {
  margin-top: 1rem;
}

.form-select {
  position: relative;
}

.form-select::after {
  position: absolute;
  top: 50%;
  right: 3rem;
  content: "";
  display: block;
  width: 1.2rem;
  height: 0.8rem;
  background: url(/assets/images/common/ar_bottom_bk.svg) no-repeat right center;
  background-size: contain;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.form-select select {
  cursor: pointer;
  width: 100%;
  height: 5.4rem;
  padding: 1.5rem 2rem;
  background-color: #F5F5F5;
  border-radius: 2rem;
  font-size: 1.6rem;
}

.form-address > *:nth-child(n+3) {
  margin-top: 1rem;
}

.form-birthday > *:nth-child(n+3) {
  margin-top: 1rem;
}

.form-error {
  display: block;
  width: 100%;
  margin-top: 0 !important;
  padding-top: 1rem;
  color: var(--cl-error);
  font-size: var(--fs-txt-sm);
}

.zip-span {
  margin-right: 0.5rem;
}

.year-span {
  margin: 0 0.5rem;
}

.u-form-min {
  max-width: 14rem;
}

.form-btn {
  margin-top: 4rem;
}

.submit-btn {
  position: relative;
  max-width: 30rem;
  margin: 0 auto;
}

.submit-btn + .submit-btn {
  margin-top: 1rem;
}

.submit-btn::after {
  position: absolute;
  top: 50%;
  right: 18%;
  content: "";
  display: block;
  width: 0.6rem;
  height: 1rem;
  background: url(/assets/images/common/ar_right_wh.svg) no-repeat right center;
  background-size: contain;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.submit-btn button {
  position: relative;
  display: block;
  width: 100%;
  padding: 1.8rem;
  font-weight: bold;
  border-radius: 6rem;
  background-color: var(--cl-base-point01);
  border: var(--cl-base-point01) 1px solid;
  color: var(--cl-wh);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.submit-btn.-back button {
  background-color: var(--cl-gr);
  color: var(--cl-bk);
  border: var(--cl-gr) 1px solid;
}

.submit-btn.-back::after {
  right: auto;
  left: 18%;
  background: url(/assets/images/common/ar_right_bk.svg) no-repeat left center;
  -webkit-transform: translate(0, -50%) rotate(180deg);
          transform: translate(0, -50%) rotate(180deg);
}

@media screen and (min-width: 768px) {
  .entry-form {
    margin-top: 10rem;
  }
  .form-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .form-title {
    width: 19rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .form-input {
    width: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin: 0 0 0 6rem;
  }
  .form-item {
    padding: 4rem 0;
  }
  .form-item + .form-item {
    border-top: var(--cl-gr) 4px dashed;
  }
  input[type=text],
  input[type=email],
  input[type=tel],
  input[type=password],
  textarea {
    height: 5rem;
    padding: 1rem 2rem;
  }
  .form-input {
    margin-top: 0;
  }
  .form-select select {
    height: 5rem;
    padding: 1rem 2rem;
  }
  .form-address > *:nth-child(n+3) {
    margin-top: 2rem;
  }
  .form-birthday > *:nth-child(n+3) {
    margin-top: 0;
  }
  .form-error {
    margin-bottom: -3rem;
  }
  .u-form-min {
    max-width: 12rem;
  }
  .form-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 6rem -2.2rem 0;
  }
  .form-btn > * {
    width: calc(50% - 4.5rem);
    margin: 0 2.2rem;
  }
  .submit-btn + .submit-btn {
    margin-top: 0;
  }
  .submit-btn::after {
    width: 1.2rem;
    height: 2rem;
  }
  .submit-btn button {
    padding: 2.4rem;
    font-size: 1.8rem;
  }
  .submit-btn:hover::after {
    background-image: url(/assets/images/common/ar_right_point.svg);
  }
  .submit-btn:hover button {
    background-color: var(--cl-wh);
    color: var(--cl-base-point01);
  }
  .submit-btn.-back:hover::after {
    background-image: url(/assets/images/common/ar_right_gr.svg);
  }
  .submit-btn.-back:hover button {
    color: #6e6e6e;
  }
}
@media screen and (min-width: 1024px) {
  .entry-form {
    margin-top: 17.6rem;
  }
  .form-select select {
    font-size: 1.8rem;
  }
  .form-title {
    font-size: 1.8rem;
  }
  .form-btn {
    margin-top: 15rem;
  }
  .submit-btn button {
    padding: 2.1rem;
    font-size: 2.2rem;
  }
}
/* confirm */
/*エントリーボタンの調整*/
.entry-confirm .form-btn .submit-btn:nth-child(1) {
  display: none;
}

/* result-box */
.result-box {
  margin-top: 6rem;
  padding: 3rem;
  background-color: var(--cl-base-point02thin);
  border-radius: 3rem;
  text-align: center;
}

.result-title {
  font-size: var(--fs-title03);
  line-height: 1.4;
}

.result-txt {
  margin-top: 2.5rem;
}

.result-linkbtn {
  margin-top: 4rem;
}

@media screen and (min-width: 768px) {
  .result-box {
    margin-top: 6rem;
    padding: 5rem;
  }
  .result-linkbtn {
    margin-top: 6rem;
  }
}
@media screen and (min-width: 1024px) {
  .result-box {
    margin-top: 14rem;
    padding: 6rem 5rem 7rem;
  }
  .result-txt {
    margin-top: 4rem;
    font-size: 1.8rem;
  }
  .result-linkbtn {
    margin-top: 15rem;
  }
}
/* page-privacy
--------------------------------------------------------------*/
.page-privacy .c-lead-txt {
  text-align: left;
}

.privacy-wrap {
  margin-top: 6rem;
}

.privacy-box + .privacy-box {
  margin-top: 2rem;
}

.privacy-ttl {
  padding: 1rem 1.5rem;
  background-color: var(--cl-base-point02);
  font-size: var(--fs-title05);
  color: var(--cl-wh);
  border-radius: 100vmax;
}

.privacy-txt {
  padding: 2rem 0 0;
}

@media screen and (min-width: 768px) {
  .page-privacy .c-lead-txt {
    text-align: left;
  }
  .privacy-wrap {
    margin-top: 10rem;
  }
  .privacy-box + .privacy-box {
    margin-top: 3.6rem;
  }
  .privacy-ttl {
    padding: 1.5rem 4rem;
    border-radius: 3rem;
  }
  .privacy-txt {
    padding: 3.6rem 0 0;
  }
}
@media screen and (min-width: 1024px) {
  .page-privacy .c-lead-txt {
    text-align: left;
  }
  .privacy-wrap {
    margin-top: 13.5rem;
  }
  .privacy-txt {
    font-size: 1.8rem;
  }
}
/* page-notfound
--------------------------------------------------------------*/
.page-notfound .result-box {
  margin-top: 14rem;
}

@media screen and (min-width: 1024px) {
  .page-notfound .result-box {
    margin-top: 30rem;
  }
}
/* page-about
--------------------------------------------------------------*/
.page-about .table-wrap table tr th, .page-about .table-wrap table tr td {
  font-size: 1.4rem;
}

@media screen and (min-width: 768px) {
  .page-about .table-wrap table tr th, .page-about .table-wrap table tr td {
    font-size: 2.4rem;
  }
  .page-about .table-wrap table .txt-small {
    font-size: 1.8rem;
  }
  .page-about .day-flow-box .u-item-row {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.block-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.justify-content-right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.justify-content-left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.justify-content-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* table-wrap
--------------------------------------------------------------*/
.table-wrap {
  --padding-y: 1.8rem;
  --padding-x: 1.8rem;
  overflow-x: auto;
}
.table-wrap table {
  font-family: var(--ff-heading);
  width: 100%;
  min-width: 40rem;
  border-collapse: collapse;
  border-spacing: 0;
}
.table-wrap table tr th, .table-wrap table tr td {
  padding: var(--padding-y) var(--padding-x);
  border: 2px solid var(--cl-table-bd);
  font-size: 1.4rem;
  font-weight: bold;
}
.table-wrap table tr th {
  background-color: var(--cl-table-bg);
}
.table-wrap table tr td {
  background-color: var(--cl-wh);
}
.table-wrap .txt-center {
  text-align: center;
}
.table-wrap .block {
  display: block;
}

@media screen and (min-width: 768px) {
  .table-wrap {
    --padding-y: 2.2rem;
    --padding-x: 1.5rem;
  }
  .table-wrap table tr th,
  .table-wrap table tr td {
    border: 2px solid var(--cl-table-bd);
    font-size: 1.8rem;
  }
}
/* about-ul
--------------------------------------------------------------*/
.ul-large {
  font-size: 1.8rem;
}
.ul-large > li {
  margin-bottom: 0;
  padding-left: 1.5em;
  position: relative;
}
.ul-large > li::before {
  content: "";
  position: absolute;
  display: block;
  width: 1em;
  height: 1em;
  top: 0.5em;
  left: 0;
  margin: 0;
  margin: 0;
  background-color: var(--cl-base-point02);
  border-radius: 100vmax;
}

@media screen and (min-width: 768px) {
  .ul-large {
    font-size: 2.4rem;
  }
}
/* about-ul
--------------------------------------------------------------*/
.news-txtwrap {
  font-size: 1.8rem;
}
.news-txtwrap > :is(:not(:first-child)) {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .news-txtwrap > :is(:not(:first-child)) {
    margin-top: 3rem;
  }
}
.news-txtwrap .wp-block-heading:is(:not(:first-child)) {
  margin-top: 3rem;
}
.news-txtwrap .wp-block-heading:has(h2) {
  font-size: 2.4rem;
}
.news-txtwrap .wp-block-heading:has(h3) {
  font-size: 2rem;
}
.news-txtwrap .wp-block-heading:has(h4) {
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  .news-txtwrap .wp-block-heading:is(:not(:first-child)) {
    margin-top: 8rem;
  }
  .news-txtwrap .wp-block-heading:has(h2) {
    font-size: 3.6rem;
  }
  .news-txtwrap .wp-block-heading:has(h3) {
    font-size: 2rem;
  }
  .news-txtwrap .wp-block-heading:has(h4) {
    font-size: 1.8rem;
    margin-top: 4rem;
  }
}
.news-txtwrap .news-txtwrap a {
  color: var(--cl-base-point02);
  text-decoration: underline;
}
.news-txtwrap .news-txtwrap a:hover {
  opacity: 0.7;
}
.news-txtwrap .news-txtwrap table {
  margin-top: 0;
}
.news-txtwrap .wp-block-table {
  --padding-y: 1.8rem;
  --padding-x: 1.8rem;
}
.news-txtwrap .wp-block-table table tr th, .news-txtwrap .wp-block-table table tr td {
  padding: var(--padding-y) var(--padding-x);
  border: 1px solid var(--cl-table-bd);
  font-size: 1.4rem;
}
.news-txtwrap .wp-block-table table tr th, .news-txtwrap .wp-block-table table tr td:first-child {
  width: 25%;
  background-color: var(--cl-table-bg);
  font-weight: bold;
}
.news-txtwrap .wp-block-table table tr td {
  background-color: var(--cl-wh);
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .news-txtwrap .wp-block-table:not(:has(td:nth-child(4)), thead, tfoot) {
    width: 100%;
  }
  .news-txtwrap .wp-block-table:not(:has(td:nth-child(4)), thead, tfoot) thead, .news-txtwrap .wp-block-table:not(:has(td:nth-child(4)), thead, tfoot) tbody, .news-txtwrap .wp-block-table:not(:has(td:nth-child(4)), thead, tfoot) tfoot {
    width: 100%;
    display: block;
  }
  .news-txtwrap .wp-block-table:not(:has(td:nth-child(4)), thead, tfoot) table {
    width: 100%;
    display: block;
  }
  .news-txtwrap .wp-block-table:not(:has(td:nth-child(4)), thead, tfoot) table tr {
    width: 100%;
    display: block;
  }
  .news-txtwrap .wp-block-table:not(:has(td:nth-child(4)), thead, tfoot) table tr th, .news-txtwrap .wp-block-table:not(:has(td:nth-child(4)), thead, tfoot) table tr td {
    display: block;
    width: 100%;
    border-bottom: 0;
  }
  .news-txtwrap .wp-block-table:not(:has(td:nth-child(4)), thead, tfoot) table tr:last-child {
    border-bottom: 1px solid var(--cl-table-bd);
  }
}
@media screen and (min-width: 768px) {
  .news-txtwrap .wp-block-table {
    --padding-y: 2.2rem;
    --padding-x: 1.5rem;
  }
  .news-txtwrap .wp-block-table table tr th,
  .news-txtwrap .wp-block-table table tr td {
    border: 2px solid var(--cl-table-bd);
    font-size: 1.8rem;
  }
}

/* sec-extra
--------------------------------------------------------------*/
.sec-extra {
  margin-top: 8rem;
}
.sec-extra .extra-ttl {
  font-size: 2.4rem;
  line-height: 1.6;
  text-align: center;
  color: var(--cl-base-point02);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.sec-extra .extra-ttl::before {
  content: "";
  display: block;
  width: 6rem;
  height: 6rem;
  margin: 0 auto;
  background: url(/assets/images/common/ico_education.png) no-repeat center bottom;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .sec-extra .extra-ttl {
    font-size: 5rem;
    text-align: center;
    margin-top: 16rem;
  }
  .sec-extra .extra-ttl::before {
    width: 8rem;
    height: 8rem;
  }
}

.extra-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4rem;
  margin-top: 3rem;
}
.extra-row .item-col {
  width: 100%;
}
.extra-row .extra-item-title {
  font-family: var(--ff-heading);
  font-weight: bold;
  font-size: 1.8rem;
  text-align: center;
}
.extra-row .extra-item-title .inner {
  display: block;
  color: #333333;
  border: 2px solid var(--cl-base-point02);
  background-color: #fff;
  padding: 1.2rem 1.5rem;
  position: relative;
}
.extra-row .extra-item-title .inner::before {
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  background-size: contain;
  position: absolute;
  right: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .extra-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 5.8rem 3rem;
    margin-top: 5.6rem;
  }
  .extra-row .item-col {
    width: calc((100% + 3rem) / 3 - 3rem);
  }
  .extra-row .extra-item-title {
    font-size: 2.4rem;
  }
  .extra-row .extra-item-title .inner {
    padding: 2.4rem 1.5rem;
  }
  .extra-row .extra-item-title .inner::before {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.extra-info {
  --padding-y: 1.8rem;
  --padding-x: 1.8rem;
  overflow-x: auto;
  font-family: var(--ff-heading);
  width: 100%;
  min-width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
.extra-info tr th,
.extra-info tr td {
  padding: var(--padding-y) var(--padding-x);
  border: 2px solid var(--cl-table-bd);
  font-size: 1.4rem;
  font-weight: bold;
}
.extra-info tr th {
  background-color: var(--cl-table-bg);
  text-align: center;
}
.extra-info tr td {
  background-color: var(--cl-wh);
}

@media screen and (min-width: 768px) {
  .extra-info {
    --padding-y: 2.2rem;
    --padding-x: 1.5rem;
    margin-top: 2.4rem;
  }
  .extra-info tr th,
  .extra-info tr td {
    border: 2px solid var(--cl-table-bd);
    font-size: 1.8rem;
  }
}
/* sec-extra
--------------------------------------------------------------*/
.admission-ttl {
  margin-top: 5.5rem;
  font-size: 1.8rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .admission-ttl {
    margin-top: 2.5rem;
    font-size: 3.6rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 5rem;
  }
}

.kubun {
  --padding-l: 3.5rem;
  margin-top: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
}
.kubun .kubun-item {
  border-left: 1.4rem solid #FFF4F4;
  padding-left: var(--padding-l);
  position: relative;
}
.kubun .kubun-flug {
  width: calc(70% - 1.4rem);
  font-family: var(--ff-heading);
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.3;
  padding: 2rem 2rem;
  background-color: #FFF4F4;
  clip-path: polygon(0 0, 100% 0, calc(100% - 2.7rem) 50%, 100% 100%, 0 100%);
  margin-left: calc(var(--padding-l) * -1);
}
.kubun .kubun-pic {
  position: absolute;
  width: 13rem;
  right: -3rem;
  top: 0;
}
.kubun .kubun-ttl {
  font-family: var(--ff-heading);
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.3;
  color: var(--cl-base-point01);
  text-align: center;
  margin-top: 1rem;
}
.kubun .kubun-txt {
  font-size: 1.6rem;
  margin-top: 1rem;
}

@media screen and (min-width: 768px) {
  .kubun {
    --padding-l: 3.5rem;
    margin-top: 9.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 4rem;
  }
  .kubun .kubun-item {
    width: calc((100% + 4rem) / 3 - 4rem);
  }
  .kubun .kubun-flug {
    width: calc(100% + var(--padding-l));
    font-size: 2rem;
    padding: 2rem 3.5rem;
  }
  .kubun .kubun-pic {
    margin-top: 3.5rem;
    width: auto;
    max-width: 100%;
    position: relative;
    right: auto;
    top: 0;
  }
  .kubun .kubun-ttl {
    font-size: 2.4rem;
    margin-top: 1.5rem;
  }
  .kubun .kubun-txt {
    font-size: 1.8rem;
    margin-top: 1.5rem;
  }
}
.kubun-note {
  background-color: #FAFAFA;
  padding: 1.5rem;
  text-align: left;
  font-family: var(--ff-heading);
  font-size: 1.4rem;
  font-weight: bold;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .kubun-note {
    padding: 2.5rem;
    text-align: center;
    font-size: 1.8rem;
    margin-top: 5rem;
  }
}

.tab-wrap {
  margin-top: 4.5rem;
}
@media screen and (min-width: 768px) {
  .tab-wrap {
    margin-top: 9rem;
  }
}

.tab-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.tab-list .tab-list-item {
  width: 50%;
}
.tab-list .tab-list-item button {
  border-top: 4px solid #FAFAFA;
  border-bottom: 2px solid #ddd;
  background-color: #FAFAFA;
  font-family: var(--ff-heading);
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.3;
  padding: 1rem 1rem 1.2rem;
  width: 100%;
  display: block;
  text-align: center;
}
.tab-list .tab-list-item button:hover, .tab-list .tab-list-item button:active {
  opacity: 0.8;
}
.tab-list .tab-list-item button.is-active {
  border-top: 4px solid var(--cl-base-point01);
  border-bottom: 2px solid #fff;
  background-color: #fff;
}
.tab-list .tab-list-item button.is-active:hover, .tab-list .tab-list-item button.is-active:active {
  opacity: 1;
}
.tab-list .tab-list-item + .tab-list-item {
  border-left: 2px solid #ddd;
}
@media screen and (min-width: 768px) {
  .tab-list .tab-list-item button {
    font-size: 2.4rem;
    padding: 2rem 2rem 2.2rem;
  }
}

.tab-contents {
  margin-top: 5rem;
  position: relative;
}

.tab-item {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
}
.tab-item.is-active {
  visibility: visible;
  opacity: 1;
  position: relative;
  pointer-events: auto;
}

.tab-heading {
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .tab-heading {
    font-size: 1.8rem;
    text-align: center;
  }
}

/* 
--------------------------------------------------------------*/
.c-cl-point {
  color: var(--cl-base-point01);
}

.c-txtlink, .flow-txtlink-span {
  color: var(--cl-base-point01);
}

/* page-after_school
--------------------------------------------------------------*/
.page-after_school .c-lead-ttl {
  width: calc(100% + 4rem);
  margin-left: -2rem;
  margin-right: -2rem;
}
@media screen and (min-width: 768px) {
  .page-after_school .c-lead-ttl {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
.page-after_school .after_school {
  margin-top: 8rem;
}
@media screen and (min-width: 768px) {
  .page-after_school .after_school {
    margin-top: 16rem;
  }
}
.page-after_school .after_school-calendar-wrap {
  margin-top: 8rem;
  margin-bottom: 10rem;
}
@media screen and (min-width: 768px) {
  .page-after_school .after_school-calendar-wrap {
    margin-top: 16rem;
    margin-bottom: 18rem;
  }
}
.page-after_school .after_school-page-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 3rem;
}
.page-after_school .after_school-page-links .link {
  width: 100%;
  border: 2px solid var(--cl-base-point02);
  background-color: #fff;
  padding: 1rem;
  height: 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.page-after_school .after_school-page-links .link::before {
  content: "";
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  background: url(/assets/images/after-school/down-arrow.svg) no-repeat center bottom;
  background-size: contain;
  position: absolute;
  left: 50%;
  top: 75%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .page-after_school .after_school-page-links {
    gap: 3rem;
    margin-top: 5.6rem;
  }
  .page-after_school .after_school-page-links .link {
    width: calc((100% + 3rem) / 3 - 3rem);
    font-size: 2.4rem;
    height: 12rem;
  }
  .page-after_school .after_school-page-links .link::before {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.page-after_school .after_school-ttl {
  margin-bottom: 2rem;
  font-size: 1.8rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: center;
  width: calc(100% + 4rem);
  margin-left: -2rem;
  margin-right: -2rem;
}
.page-after_school .after_school-ttl::before {
  margin-right: -3rem;
}
.page-after_school .after_school-ttl::after {
  margin-left: -3rem;
}
@media screen and (min-width: 768px) {
  .page-after_school .after_school-ttl {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 2rem;
    font-size: 3.6rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .page-after_school .after_school-ttl::before {
    margin-right: 0;
  }
  .page-after_school .after_school-ttl::after {
    margin-left: 0;
  }
}
.page-after_school .after_school-calendar {
  position: relative;
}
.page-after_school .after_school-calendar::before {
  content: "";
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.5rem, #707070), color-stop(0.5rem, transparent));
  background-image: linear-gradient(0deg, #707070 0.5rem, transparent 0.5rem);
  background-size: 100% 1rem;
  background-repeat: repeat-y;
  width: 0.1rem;
  height: 100%;
  position: absolute;
  left: 22.0338983051%;
  bottom: 0;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .page-after_school .after_school-calendar::before {
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(1rem, #707070), color-stop(1rem, transparent));
    background-image: linear-gradient(0deg, #707070 1rem, transparent 1rem);
    background-size: 100% 2rem;
    width: 0.2rem;
    height: 100%;
    left: 17.094017094%;
  }
}
.page-after_school .after_school-calendar .start-txt {
  position: relative;
  font-size: 1.6rem;
  display: block;
  background-color: var(--cl-base-point01);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.6rem 1.6rem 0.8rem;
  color: #fff;
  margin-bottom: 1.5rem;
  margin-left: 0;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  z-index: 5;
}
.page-after_school .after_school-calendar .start-txt::after {
  content: "";
  background-color: var(--cl-base-point01);
  display: block;
  width: 1.2rem;
  height: 1rem;
  position: absolute;
  left: 30%;
  bottom: 1px;
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media screen and (min-width: 768px) {
  .page-after_school .after_school-calendar .start-txt {
    font-size: 2.4rem;
    padding: 0.6rem 1.6rem 0.8rem;
    margin-bottom: 3rem;
    margin-left: 17.094017094%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .page-after_school .after_school-calendar .start-txt::after {
    width: 2.5rem;
    height: 2.2rem;
    left: 50%;
    bottom: 1px;
  }
}
.page-after_school .after_school-calendar-txt {
  position: relative;
  font-size: 1.6rem;
  display: block;
  background-color: var(--cl-base-point01);
  color: #fff;
  padding: 0.6rem 1.6rem 0.8rem;
  border-radius: 1rem;
  text-align: center;
  max-width: 56rem;
  width: 100%;
  margin-inline: auto;
  margin-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .page-after_school .after_school-calendar-txt {
    font-size: 2.4rem;
    padding: 0.6rem 1.6rem 0.8rem;
    margin-bottom: 8rem;
  }
}
.page-after_school .after_school-calendar .calendar-dl {
  width: calc(100% + 4rem);
  margin-left: -2rem;
  margin-right: -2rem;
}
@media screen and (min-width: 768px) {
  .page-after_school .after_school-calendar .calendar-dl {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
.page-after_school .after_school-calendar .calendar-dl .dl-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.page-after_school .after_school-calendar .calendar-dl .dl-item + .dl-item {
  margin-top: 1rem;
}
.page-after_school .after_school-calendar .calendar-dl .calendar-dt, .page-after_school .after_school-calendar .calendar-dl .calendar-dd {
  background-color: #F5F5F5;
  min-height: 13.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-after_school .after_school-calendar .calendar-dl .calendar-dt {
  font-size: 1.8rem;
  width: 25.3731343284%;
  background-image: url(../images/after-school/th-bg.svg);
  background-repeat: no-repeat;
  background-size: auto 4.8rem;
  background-position: center center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding: 1.5rem 0 0;
}
.page-after_school .after_school-calendar .calendar-dl .calendar-dd {
  font-size: 1.8rem;
  width: 74.6268656716%;
  padding: 2rem;
  gap: 2rem;
}
.page-after_school .after_school-calendar .calendar-dl .label {
  width: 100%;
  font-size: 1.4rem;
  height: 6rem;
  border-radius: 1.5rem;
  background-color: var(--after_school-color, #D3F6FF);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2.5rem 2rem;
  gap: 1rem;
}
.page-after_school .after_school-calendar .calendar-dl .label::before {
  content: "";
  background-image: var(--after_school-icon);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  display: block;
  width: 4.5rem;
  height: 4.5rem;
}
@media screen and (min-width: 768px) {
  .page-after_school .after_school-calendar .calendar-dl .dl-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .page-after_school .after_school-calendar .calendar-dl .dl-item + .dl-item {
    margin-top: 1rem;
  }
  .page-after_school .after_school-calendar .calendar-dl .calendar-dt,
  .page-after_school .after_school-calendar .calendar-dl .calendar-dd {
    min-height: 13.5rem;
  }
  .page-after_school .after_school-calendar .calendar-dl .calendar-dt {
    font-size: 3.6rem;
    width: 17.094017094%;
    background-size: auto 9.4rem;
    padding: 1.5rem 0 0;
  }
  .page-after_school .after_school-calendar .calendar-dl .calendar-dd {
    font-size: 1.8rem;
    width: 82.905982906%;
    padding: 2rem;
    gap: 2rem;
  }
  .page-after_school .after_school-calendar .calendar-dl .label {
    width: calc((100% + 3rem) / 3 - 3rem);
    font-size: 1.8rem;
    height: 9.5rem;
    border-radius: 2rem;
    padding: 2.5rem 2rem;
    gap: 1rem;
  }
  .page-after_school .after_school-calendar .calendar-dl .label::before {
    width: 4.5rem;
    height: 4.5rem;
  }
}
.page-after_school .after_school-box {
  margin-top: 2rem;
}
.page-after_school .after_school-box + .after_school-box {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .page-after_school .after_school-box {
    margin-top: 4.5rem;
  }
  .page-after_school .after_school-box + .after_school-box {
    margin-top: 4.5rem;
  }
  .page-after_school .after_school-txtbox {
    width: calc(56.84% - 5.7rem);
  }
  .page-after_school .after_school-pic {
    width: calc(43.16% - 5.7rem);
  }
  .page-after_school .after_school-pic img {
    border-radius: 3rem;
  }
}
.page-after_school .after_school-txtbox {
  margin-top: 1rem;
}
.page-after_school .after_school-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: var(--fs-title04);
}
.page-after_school .after_school-main::before {
  content: "";
  display: block;
  background-image: var(--after_school-icon);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  display: block;
  width: 6rem;
  height: 6rem;
}
.page-after_school .after_school-copy {
  font-size: 1.6rem;
  margin-top: 0.5rem;
}
.page-after_school .after_school-txt {
  font-size: 1.4rem;
  margin-top: 0.5rem;
}
.page-after_school .after_school-info-table {
  margin-top: 1.5rem;
  overflow: visible;
  --padding-x: .2rem;
}
.page-after_school .after_school-info-table .after_school-table {
  min-width: auto;
}
.page-after_school .after_school-info-table tr th, .page-after_school .after_school-info-table tr td {
  font-size: 1.4rem;
  width: 33.3333%;
  min-width: auto;
  line-height: 1.5;
}
.page-after_school .after_school-info-table.-dance .after_school-table:nth-child(1) {
  width: 100%;
}
.page-after_school .after_school-info-table.-dance .after_school-table:nth-child(2) {
  margin-top: 1.5rem;
  width: 66.6666%;
}
.page-after_school .after_school-info-table.-dance .after_school-table:nth-child(2) tr th, .page-after_school .after_school-info-table.-dance .after_school-table:nth-child(2) tr td {
  width: 50%;
}
@media screen and (min-width: 768px) {
  .page-after_school .after_school-copy {
    font-size: 2.4rem;
    margin-top: 3.5rem;
  }
  .page-after_school .after_school-txt {
    font-size: 1.8rem;
    margin-top: 0.5rem;
  }
  .page-after_school .after_school-info-table {
    margin-top: 3.5rem;
  }
  .page-after_school .after_school-info-table tr th, .page-after_school .after_school-info-table tr td {
    font-size: 2.4rem;
  }
  .page-after_school .after_school-info-table.-dance {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .page-after_school .after_school-info-table.-dance .after_school-table:nth-child(1) {
    width: 55.8974358974%;
  }
  .page-after_school .after_school-info-table.-dance .after_school-table:nth-child(1) tr th:nth-child(1), .page-after_school .after_school-info-table.-dance .after_school-table:nth-child(1) tr td:nth-child(1) {
    width: 12.2324159021%;
  }
  .page-after_school .after_school-info-table.-dance .after_school-table:nth-child(2) {
    margin-top: 0;
    margin-left: -0.2rem;
    width: 44.1025641026%;
  }
  .page-after_school .after_school-info-table.-dance .after_school-table:nth-child(2) tr th, .page-after_school .after_school-info-table.-dance .after_school-table:nth-child(2) tr td {
    width: 50%;
  }
}
.page-after_school .-lab {
  --after_school-icon: url(../images/after-school/ico-lab.png);
  --after_school-color: #D3F6FF;
}
.page-after_school .-en {
  --after_school-icon: url(../images/after-school/ico-en.png);
  --after_school-color: #CCEDB5;
}
.page-after_school .-piano {
  --after_school-icon: url(../images/after-school/ico-piano.png);
  --after_school-color: #FFE65F;
}
.page-after_school .-soccer {
  --after_school-icon: url(../images/after-school/ico-soccer.png);
  --after_school-color: #FFD0D0;
}
.page-after_school .-dance {
  --after_school-icon: url(../images/after-school/ico-dance.png);
  --after_school-color: #E7D8FF;
}
.page-after_school .kyozai{
  font-size: 75%;
}