@charset "UTF-8";


/******************************************************************
レイアウトに係るスタイルシート
******************************************************************/

/* 変数 */
:root{
  --main-color: #8B1129;
  --serif: "Noto Serif JP", serif;
}



/******************************************************************
ヘッダーのスタイル
******************************************************************/

.header {
  width: 100%;
  height: 71px;
  height: 4.4375rem;
  position: fixed;
  top: 0;
  z-index: 2;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #fff;
  font-family: var(--serif);
}
@media screen and (min-width: 768px) {
  .header {
    background-color: transparent;
    height: 104px;
    height: 6.5rem;
    position: absolute;
  }
}

.header__inner {
  padding: 0 20px;
  padding: 0 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding: 0 88px;
    padding: 0 5.5rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.header__logo {
  width: 167.93px;
  width: 10.495625rem;
  z-index: 4;
}
@media screen and (min-width: 768px) {
  .header__logo {
    width: 201px;
    width: 12.5625rem;
  }
}

.header__burger {
  width: 26.32px;
  width: 1.645rem;
  padding: 0;
  position: fixed;
  top: 27px;
  top: 1.6875rem;
  right: 20px;
  right: 1.25rem;
  z-index: 4;
}

.header__burger-bar {
  width: inherit;
  height: 18px;
  height: 1.125rem;
  position: relative;
  padding: 0;
  margin-inline: auto;
  display: block;
}

.header__burger-bar span {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 2px;
  height: 0.125rem;
  background-color: #000;
  display: block;
  opacity: 1;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

.header__burger-bar::before,
.header__burger-bar::after {
  content: "";
  position: absolute;
  width: 100%;
  display: block;
  height: 2px;
  height: 0.125rem;
  background-color: #000;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}

.header__burger-bar::before {
  top: 0;
}

.header__burger-bar::after {
  bottom: 0;
}

.header__burger-bar.open span {
  opacity: 0;
  background-color: #fff;
}

.header__burger-bar.open::before {
  bottom: 0;
  left: 0;
  margin: auto;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  background-color: #fff;
}

.header__burger-bar.open::after {
  top: 0;
  left: 0;
  margin: auto;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: #fff;
}

.header__spnav {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  max-width: 250px;
  max-width: 15.625rem;
  min-height: 100vh;
  height: 100%;
  background-color: rgba(139, 17, 41, .9);
  padding-top: 100px;
  padding-top: 6.25rem;
  opacity: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  z-index: 3;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

.header__spnav-lists {
  text-align: center;
  padding-block: 20px;
  padding-block: 1.25rem;
  border-top: 1px solid #fff;
  border-top: 0.0625rem solid #fff;
  border-bottom: 1px solid #fff;
  border-bottom: 0.0625rem solid #fff;
  width: 80%;
  margin-inline: auto;
}

.header__spnav-item {
  font-size: 16px;
  font-size: 1rem;
  color: #fff;
  width: 100%;
}

.header__spnav-link {
  display: inline-block;
  width: inherit;
  height: inherit;
  font-size: 14px;
  font-size: 0.875rem;
}

.header__spnav-item:nth-child(n+2) {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.header__spnav.open {
  opacity: 1;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  overflow: scroll;
}

.header__pcnav-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.2vw;
}
@media screen and (min-width: 1440px) {
  .header__pcnav-lists {
    gap: 3.906vw;
  }
}

.header__pcnav-link {
  font-size: 18px;
  font-size: 1.125rem;
  color: #fff;
  font-weight: 600;
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .header.hidden {
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
  }
  .header.scrolled {
    position: fixed;
    opacity: 1;
    height: 145px;
    height: 9.0625rem;
    background-color: #fff;
    -webkit-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
  }
  .header.scrolled .header__inner {
    display: block;
  }
  .header.scrolled .header__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 93px;
    height: 5.8125rem;
  }
  .header.scrolled .header__pcnav {
    background-color: #E2E2E2;
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    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;
    height: 52px;
    height: 3.25rem;
  }
  .header.scrolled .header__pcnav-lists {
    gap: 8.073vw;
  }
  .header.scrolled .header__pcnav-link {
    color: #000;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.625;
    padding-bottom: 10px;
    padding-bottom: 0.625rem;
    margin-bottom: 1px;
    margin-bottom: 0.0625rem;
    position: relative;
  }
  .header.scrolled .header__pcnav-link::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 0;
    height: 4px;
    height: 0.25rem;
    background: var(--main-color);
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  .header.scrolled .header__pcnav-link:hover {
    opacity: 1;
  }
  .header.scrolled .header__pcnav-link:hover::after {
    width: 100%;
  }
}

/******************************************************************
フッターお問合せ部分のスタイル
******************************************************************/
.footer-contact {
  padding-top: 93px;
  padding-top: 5.8125rem;
  padding-bottom: 91px;
  padding-bottom: 5.6875rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .footer-contact {
    padding-top: 112px;
    padding-top: 7rem;
    padding-bottom: 113.4px;
    padding-bottom: 7.0875rem;
  }
}

.footer-contact::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/common/footer-contact_sp.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feColorMatrix type="matrix" color-interpolation-filters="sRGB" values="0.2126 0.7152 0.0722 0 0 0.2126 0.7152 0.0722 0 0 0.2126 0.7152 0.0722 0 0 0 0 0 1 0" /><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="0.5" /><feFuncG type="linear" slope="0.5" /><feFuncB type="linear" slope="0.5" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: grayscale(1) brightness(0.5);
          filter: grayscale(1) brightness(0.5);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .footer-contact::before {
    background-image: url("../images/common/footer-contact.jpg");
  }
}

.footer-contact__title {
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.4285714286;
  color: #fff;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer-contact__title {
    font-size: 44px;
    font-size: 2.75rem;
    line-height: 1.4772727273;
  }
}

.footer-contact__text {
  margin-top: 39px;
  margin-top: 2.4375rem;
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 2.0833333333;
}
@media screen and (min-width: 768px) {
  .footer-contact__text {
    margin-top: 37px;
    margin-top: 2.3125rem;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.9444444444;
  }
}

.footer-contact__btn {
  margin-top: 45px;
  margin-top: 2.8125rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer-contact__btn {
    margin-top: 35px;
    margin-top: 2.1875rem;
  }
}

@media screen and (min-width: 768px) {
  .footer-contact__btn a {
    min-width: 285px;
    min-width: 17.8125rem;
    padding-block: 11px;
    padding-block: 0.6875rem;
  }
}

/******************************************************************
フッターのスタイル
******************************************************************/
.footer {
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 63px;
  padding-bottom: 3.9375rem;
  background-color: var(--main-color);
  color: #fff;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-top: 52px;
    padding-top: 3.25rem;
    padding-bottom: 0;
  }
}

@media screen and (min-width: 768px) {
  .footer__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.footer__logo {
  width: 227px;
  width: 14.1875rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    width: 385px;
    width: 24.0625rem;
  }
}

.footer__logo-link {
  display: inline-block;
  width: 100%;
}

.footer__address {
  margin-top: 6px;
  margin-top: 0.375rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__address {
    margin-top: 17px;
    margin-top: 1.0625rem;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.5;
    text-align: left;
  }
}

.footer__phone {
  margin-top: 18px;
  margin-top: 1.125rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .footer__phone {
    margin-top: 12px;
    margin-top: 0.75rem;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.footer__phone::before {
  content: "";
  display: block;
  width: 18.4px;
  width: 1.15rem;
  height: 24px;
  height: 1.5rem;
  margin-right: 7.5px;
  margin-right: 0.46875rem;
  background-image: url("../images/common/icon_tel.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.footer__sns {
  margin-top: 37px;
  margin-top: 2.3125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 27px;
  gap: 1.6875rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .footer__sns {
    margin-top: 29px;
    margin-top: 1.8125rem;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.footer__sns-link {
  display: inline-block;
  width: 32px;
  width: 2rem;
  height: 32px;
  height: 2rem;
}

.footer__nav {
  margin-top: 52px;
  margin-top: 3.25rem;
}
@media screen and (min-width: 768px) {
  .footer__nav {
    margin-top: 26px;
    margin-top: 1.625rem;
  }
}

.footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
  row-gap: 22px;
  row-gap: 1.375rem;
  max-width: 285px;
  max-width: 17.8125rem;
  margin-inline: auto;
  font-family: var(--serif);
}
@media screen and (min-width: 768px) {
  .footer__nav-list {
    -webkit-column-gap: 3.375rem;
       -moz-column-gap: 3.375rem;
            column-gap: 3.375rem;
    row-gap: 25px;
    row-gap: 1.5625rem;
    max-width: 650px;
    max-width: 40.625rem;
    margin-inline: 0;
    display: grid;
    grid-template-columns: auto auto auto;
  }
}

.footer__nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  gap: 0.9375rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 112px;
  min-width: 7rem;
}
@media screen and (min-width: 768px) {
  .footer__nav-item {
    gap: 20px;
    gap: 1.25rem;
  }
}

.footer__nav-item::before {
  content: "";
  display: block;
  width: 21px;
  width: 1.3125rem;
  height: 22px;
  height: 1.375rem;
  background-image: url("../images/common/icon_arrow.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .footer__nav-item::before {
    width: 29px;
    width: 1.8125rem;
    height: 30px;
    height: 1.875rem;
  }
}

.footer__nav-link {
  display: inline-block;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.5;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .footer__nav-link {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.5;
  }
}

.footer__buttons {
  margin-top: 51px;
  margin-top: 3.1875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 14px;
  gap: 0.875rem;
  font-family: var(--serif);
}
@media screen and (min-width: 768px) {
  .footer__buttons {
    margin-top: 128px;
    margin-top: 8rem;
    gap: 25px;
    gap: 1.5625rem;
  }
}

.footer__button {
  display: inline-block;
  width: calc(50% - 0.4375rem);
  max-width: 188px;
  max-width: 11.75rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
  text-align: center;
  font-weight: 600;
  color: #fff;
  padding: 16px 0;
  padding: 1rem 0;
  background-color: #D9BA25;
}
@media screen and (min-width: 768px) {
  .footer__button {
    width: 285px;
    width: 17.8125rem;
    max-width: none;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.5;
    padding: 15.5px 0;
    padding: 0.96875rem 0;
  }
}

.footer__button--white {
  background-color: #fff;
  color: var(--main-color);
}

.footer__bottom {
  margin-top: 74px;
  margin-top: 4.625rem;
  background-color: #000;
  color: #fff;
  padding-block: 17px;
  padding-block: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .footer__bottom {
    margin-top: 79px;
    margin-top: 4.9375rem;
    padding-block: 20px;
    padding-block: 1.25rem;
  }
}

@media screen and (min-width: 768px) {
  .footer__bottomWrap {
    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: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.footer__policy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 52px;
  gap: 3.25rem;
}
@media screen and (min-width: 768px) {
  .footer__policy {
    gap: 91px;
    gap: 5.6875rem;
  }
}

.footer__policy-link {
  display: inline-block;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 2.5;
}
@media screen and (min-width: 768px) {
  .footer__policy-link {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.875;
  }
}

.footer__copyright {
  margin-top: 2px;
  margin-top: 0.125rem;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 2.5;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.875;
  }
}



/******************************************************************
TOPページ用
******************************************************************/

/******************************************************************
TOPページABOUTセクションのスタイル
******************************************************************/

.about {
  padding-top: 84px;
  padding-top: 5.25rem;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .about {
    padding-top: 157px;
    padding-top: 9.8125rem;
  }
}

@media screen and (min-width: 768px) {
  .about__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .about__content {
    margin-top: 21px;
    margin-top: 1.3125rem;
    width: 50%;
  }
}

.about__text {
  margin-top: 34px;
  margin-top: 2.125rem;
}
@media screen and (min-width: 768px) {
  .about__text {
    margin-top: 43px;
    margin-top: 2.6875rem;
  }
}

.about__button {
  margin-top: 52px;
  margin-top: 3.25rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .about__button {
    margin-top: 64px;
    margin-top: 4rem;
    text-align: left;
  }
}

@media screen and (min-width: 768px) {
  .about__button a {
    min-width: 272px;
    min-width: 17rem;
  }
}

.about__image {
  margin-top: 90px;
  margin-top: 5.625rem;
  width: calc(100vw - 1.25rem);
}
@media screen and (min-width: 768px) {
  .about__image {
    margin-top: 0;
    margin-left: 133px;
    margin-left: 8.3125rem;
    width: calc(50vw - 8.3125rem);
    margin-right: calc(50% - 50vw);
  }
}

.about__image img {
  aspect-ratio: 413/199;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .about__image img {
    aspect-ratio: 827/398;
  }
}

.about__bg-text {
  position: absolute;
  top: 189.5px;
  top: 11.84375rem;
  -webkit-text-stroke: 1px #E2E2E2;
  -webkit-text-stroke: 0.0625rem #E2E2E2;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .about__bg-text {
    top: 142px;
    top: 8.875rem;
  }
}


/******************************************************************
TOPページBLOGセクションのスタイル
******************************************************************/

.blog {
  padding-top: 91px;
  padding-top: 5.6875rem;
  padding-bottom: 108px;
  padding-bottom: 6.75rem;
}
@media screen and (min-width: 768px) {
  .blog {
    padding-top: 157px;
    padding-top: 9.8125rem;
    padding-bottom: 187px;
    padding-bottom: 11.6875rem;
  }
}

.blog__list {
  margin-top: 56px;
  margin-top: 3.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 0.875rem;
     -moz-column-gap: 0.875rem;
          column-gap: 0.875rem;
  row-gap: 46px;
  row-gap: 2.875rem;
}
@media screen and (min-width: 768px) {
  .blog__list {
    margin-top: 55px;
    margin-top: 3.4375rem;
    -webkit-column-gap: 3.5rem;
       -moz-column-gap: 3.5rem;
            column-gap: 3.5rem;
    row-gap: 49px;
    row-gap: 3.0625rem;
  }
}

.blog__item {
  width: calc(50% - 0.4375rem);
  -webkit-box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, .15);
          box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, .15);
}
@media screen and (min-width: 768px) {
  .blog__item {
    width: calc(33.33333% - 2.33333rem);
  }
}

.blog__link {
  display: inline-block;
  width: 100%;
}

.blog__image img {
  aspect-ratio: 188/147;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .blog__image img {
    aspect-ratio: 443/335;
  }
}

.blog__body {
  padding: 12px 11px;
  padding: 0.75rem 0.6875rem;
}
@media screen and (min-width: 768px) {
  .blog__body {
    padding: 20px 23px 22px;
    padding: 1.25rem 1.4375rem 1.375rem;
  }
}

.blog__date {
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .blog__date {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.875;
  }
}

.blog__bodyTitle {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 2;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .blog__bodyTitle {
    margin-top: 2px;
    margin-top: 0.125rem;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.5;
  }
}

.blog__button {
  margin-top: 76px;
  margin-top: 4.75rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .blog__button {
    margin-top: 98px;
    margin-top: 6.125rem;
  }
}


/******************************************************************
TOPページコンテンツセクションのスタイル
******************************************************************/

.contents {
  padding-top: 61px;
  padding-top: 3.8125rem;
  padding-bottom: 113px;
  padding-bottom: 7.0625rem;
  background-color: #F6F6F6;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .contents {
    padding-top: 184.5px;
    padding-top: 11.53125rem;
    padding-bottom: 117px;
    padding-bottom: 7.3125rem;
  }
}

.contents__inner {
  position: relative;
  z-index: 1;
}

.contents__header {
  margin-top: 34px;
  margin-top: 2.125rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-family: "Noto Serif JP", serif;
  line-height: 2;
  font-weight: 700;
  padding-bottom: 3px;
  padding-bottom: 0.1875rem;
  border-bottom: 1px solid var(--main-color);
  border-bottom: 0.0625rem solid var(--main-color);
}
@media screen and (min-width: 768px) {
  .contents__header {
    margin-top: 110px;
    margin-top: 6.875rem;
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 2;
    padding-bottom: 5px;
    padding-bottom: 0.3125rem;
  }
}

.contents__wrap {
  margin-top: 30.5px;
  margin-top: 1.90625rem;
  padding: 32px 20px 31px;
  padding: 2rem 1.25rem 1.9375rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .contents__wrap {
    margin-top: 45.5px;
    margin-top: 2.84375rem;
    padding: 45.5px 55.5px;
    padding: 2.84375rem 3.46875rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.contents__bodyText-l,
.contents__bodyText-name {
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
}

.contents__bodyText-l {
  margin-top: 8px;
  margin-top: 0.5rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 2.0625;
}
@media screen and (min-width: 768px) {
  .contents__bodyText-l {
    margin-top: 11px;
    margin-top: 0.6875rem;
    font-size: 25px;
    font-size: 1.5625rem;
    line-height: 2;
  }
}

.contents__bodyText-name {
  margin-top: 1px;
  margin-top: 0.0625rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.9285714286;
}
@media screen and (min-width: 768px) {
  .contents__bodyText-name {
    margin-top: 0;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.6;
  }
}

.contents__bodyText {
  margin-top: 34px;
  margin-top: 2.125rem;
}
@media screen and (min-width: 768px) {
  .contents__bodyText {
    margin-top: 16px;
    margin-top: 1rem;
  }
}

.contents__body-button {
  margin-top: 79px;
  margin-top: 4.9375rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contents__body-button {
    margin-top: 23px;
    margin-top: 1.4375rem;
    text-align: left;
  }
}

@media screen and (min-width: 768px) {
  .contents__body-button a {
    min-width: 272px;
    min-width: 17rem;
  }
}

.contents__image {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .contents__image {
    margin-top: 0;
    margin-left: 90px;
    margin-left: 5.625rem;
    width: 27.915%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.contents__image img {
  aspect-ratio: 350/325;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .contents__image img {
    aspect-ratio: 371/344;
  }
}

.contents__button {
  margin-top: 60px;
  margin-top: 3.75rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contents__button {
    margin-top: 72px;
    margin-top: 4.5rem;
  }
}

.contents_bg-text {
  position: absolute;
  top: 18px;
  top: 1.125rem;
  color: #fff;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .contents_bg-text {
    top: 0;
    font-size: 22.917vw;
  }
}


/******************************************************************
TOPページ会費セクションのスタイル
******************************************************************/

.fee {
  padding-top: 63px;
  padding-top: 3.9375rem;
  padding-bottom: 113px;
  padding-bottom: 7.0625rem;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .fee {
    padding-top: 93px;
    padding-top: 5.8125rem;
    padding-bottom: 136px;
    padding-bottom: 8.5rem;
  }
}

.fee__inner {
  position: relative;
  z-index: 1;
}

.fee__wrap {
  margin-top: 38px;
  margin-top: 2.375rem;
  background-color: #F6F6F6;
  padding: 46px 20px 38px;
  padding: 2.875rem 1.25rem 2.375rem;
}
@media screen and (min-width: 768px) {
  .fee__wrap {
    margin-top: 57px;
    margin-top: 3.5625rem;
    padding: 60px 29px 57px;
    padding: 3.75rem 1.8125rem 3.5625rem;
    max-width: 1100px;
    max-width: 68.75rem;
    margin-inline: auto;
  }
}

.fee__price {
  margin-top: 21px;
  margin-top: 1.3125rem;
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.3;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .fee__price {
    margin-top: 35px;
    margin-top: 2.1875rem;
    font-size: 39px;
    font-size: 2.4375rem;
    line-height: 1.2;
  }
}

.fee__price .fontL {
  font-size: 37px;
  font-size: 2.3125rem;
  color: #D9BA25;
}
@media screen and (min-width: 768px) {
  .fee__price .fontL {
    font-size: 66px;
    font-size: 4.125rem;
  }
}

.fee__price .colorGold {
  color: #D9BA25;
}

.fee__note {
  margin-top: 34px;
  margin-top: 2.125rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .fee__note {
    margin-top: 47px;
    margin-top: 2.9375rem;
    width: 100%;
    max-width: 623px;
    max-width: 38.9375rem;
    margin-inline: auto;
    line-height: 1.6666666667;
  }
}

.fee__body:last-child {
  margin-top: 31px;
  margin-top: 1.9375rem;
}
@media screen and (min-width: 768px) {
  .fee__body:last-child {
    margin-top: 37px;
    margin-top: 2.3125rem;
  }
}

.fee__qualifications {
  margin-top: 32px;
  margin-top: 2rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .fee__qualifications {
    margin-top: 26px;
    margin-top: 1.625rem;
    text-align: center;
    line-height: 1.6666666667;
  }
}

.fee__button {
  text-align: center;
  margin-top: 61px;
  margin-top: 3.8125rem;
}
@media screen and (min-width: 768px) {
  .fee__button {
    margin-top: 100px;
    margin-top: 6.25rem;
  }
}

.fee_bg-text {
  position: absolute;
  top: 18px;
  top: 1.125rem;
  color: #fff;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .fee_bg-text {
    top: 38.5px;
    top: 2.40625rem;
    font-size: 22.188vw;
  }
}


/******************************************************************
TOPページMVセクションのスタイル
******************************************************************/

.mv {
  height: 100vh;
  max-height: 869px;
  max-height: 54.3125rem;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .mv {
    height: 56.25vw;
    max-height: 1080px;
    max-height: 67.5rem;
  }
}

@media screen and (min-width: 768px) {
  .mv::before {
    content: "";
    display: block;
    width: 100%;
    height: 89vh;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    background-color: #F6F6F6;
  }
}

.mv__wrap {
  height: 100%;
}
@media screen and (min-width: 768px) {
  .mv__wrap {
    width: 76.875%;
    margin-left: auto;
  }
}

.mv__images {
  height: 100%;
}

.mv__images img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mv__textWrap {
  position: absolute;
  right: 9.3vw;
  top: 170px;
  top: 10.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  z-index: 1;
  height: 460px;
  height: 28.75rem;
  min-width: 23.023vw;
  max-width: 141px;
  max-width: 8.8125rem;
  gap: 9px;
  gap: 0.5625rem;
}
@media screen and (min-width: 768px) {
  .mv__textWrap {
    right: auto;
    right: initial;
    left: 18.5%;
    top: 8.042vw;
    min-width: 9.176vw;
    max-width: none;
    height: 510px;
    height: 31.875rem;
    gap: 25px;
    gap: 1.5625rem;
    z-index: 2;
  }
}

.mv__text {
  letter-spacing: 5px;
  letter-spacing: 0.3125rem;
  font-weight: 500;
  color: #fff;
  background-color: #000;
  padding-inline: 4px;
  padding-inline: 0.25rem;
  font-family: "Noto Serif JP", serif;
  position: relative;
  font-size: min(6.977vw, 44px);
  font-size: min(6.977vw, 2.75rem);
  font-weight: 700;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  white-space: nowrap;
  opacity: 0;
  -webkit-transform: translateY(-70px);
          transform: translateY(-70px);
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
@media screen and (min-width: 768px) {
  .mv__text {
    line-height: 1.4;
    padding-inline: 7px;
    padding-inline: 0.4375rem;
    font-size: 2.8125vw;
  }
}

.mv__text:nth-child(2) {
  top: 54px;
  top: 3.375rem;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
@media screen and (min-width: 768px) {
  .mv__text:nth-child(2) {
    top: 0;
  }
}

.mv__text.load {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.mv__bg-text {
  position: absolute;
  bottom: 10%;
  left: 4.65%;
  font-size: 9.302vw;
  line-height: 1.125;
  letter-spacing: 2px;
  letter-spacing: 0.125rem;
  font-weight: 700;
  font-family: "Arial", "Helvetica", sans-serif;
  color: transparent;
  -webkit-text-stroke: 0.5px #fff;
  -webkit-text-stroke: 0.03125rem #fff;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .mv__bg-text {
    bottom: 2%;
    left: 8.5%;
    letter-spacing: 6px;
    letter-spacing: 0.375rem;
    font-size: 6.145vw;
    line-height: 1.1525423729;
    -webkit-text-stroke: 0.5px #ABABAB;
    -webkit-text-stroke: 0.03125rem #ABABAB;
  }
}

/* scroll */
.mv__scroll {
  position: absolute;
  right: 3.5vw;
  bottom: 6%;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-transform: uppercase;
  font-size: 9px;
  font-size: 0.5625rem;
  color: #fff;
  font-family: Helvetica, "Open Sans", sans-serif;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .mv__scroll {
    left: auto;
    left: initial;
    right: 5.208vw;
    bottom: 27%;
    font-size: 11px;
    font-size: 0.6875rem;
  }
}

/* 線のアニメーション */
.mv__scroll::before {
  -webkit-animation: scroll 2s infinite;
          animation: scroll 2s infinite;
  background-color: #fff;
  content: "";
  height: 103px;
  height: 6.4375rem;
  top: -30px;
  top: -1.875rem;
  left: -8px;
  left: -0.5rem;
  margin: auto;
  position: absolute;
  width: 1px;
  width: 0.0625rem;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .mv__scroll::before {
    height: 217px;
    height: 13.5625rem;
    top: -83.5px;
    top: -5.21875rem;
    left: -12.5px;
    left: -0.78125rem;
    width: 2px;
    width: 0.125rem;
  }
}

/* 線の背景色 */
.mv__scroll::after {
  background-color: #fff;
  content: "";
  height: 103px;
  height: 6.4375rem;
  top: -30px;
  top: -1.875rem;
  left: -8px;
  left: -0.5rem;
  margin: auto;
  position: absolute;
  width: 1px;
  width: 0.0625rem;
}
@media screen and (min-width: 768px) {
  .mv__scroll::after {
    height: 217px;
    height: 13.5625rem;
    top: -83.5px;
    top: -5.21875rem;
    left: -12.5px;
    left: -0.78125rem;
    width: 2px;
    width: 0.125rem;
  }
}

/* 線のアニメーション */
@-webkit-keyframes scroll {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  51% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}
@keyframes scroll {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  51% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}


/******************************************************************
TOPページNEWSセクションのスタイル
******************************************************************/
.news {
  padding-top: 84px;
  padding-top: 5.25rem;
  padding-bottom: 120px;
  background-color: #F6F6F6;
}
@media screen and (min-width: 768px) {
  .news {
    padding-top: 163px;
    padding-top: 10.1875rem;
    padding-bottom: 201px;
    
  }
}

@media screen and (min-width: 768px) {
  .news__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: flex-start;
  }

  .news__title{
    flex-shrink: 0;
  }
}

.news__list {
  margin-top: 49px;
  margin-top: 3.0625rem;
}
@media screen and (min-width: 768px) {
  .news__list {
    margin-top: 17px;
    margin-top: 1.0625rem;
    margin-left: 135px;
    margin-left: 8.4375rem;
    width: 100%;
  }
}

.news__item {
  border-bottom: 1.5px solid #cfcfcf;
  border-bottom: 0.09375rem solid #cfcfcf;
  padding-bottom: 13px;
  padding-bottom: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .news__item {
    padding-bottom: 27px;
    padding-bottom: 1.6875rem;
  }
}

.news__item:nth-child(n+2) {
  margin-top: 21px;
  margin-top: 1.3125rem;
}
@media screen and (min-width: 768px) {
  .news__item:nth-child(n+2) {
    margin-top: 25px;
    margin-top: 1.5625rem;
  }
}

.news__link {
  display: inline-block;
  width: 100%;
}

.news__date {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 2.5;
}
@media screen and (min-width: 768px) {
  .news__date {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.875;
  }
}

.news__text {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 2.25;
  font-weight: 600;
  padding-right: 20px;
  padding-right: 1.25rem;
  position: relative;
  font-family: var(--serif);
}
@media screen and (min-width: 768px) {
  .news__text {
    margin-top: 6px;
    margin-top: 0.375rem;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.5;
    padding-right: 44px;
    padding-right: 2.75rem;
  }
}

.news__text::before {
  content: "";
  display: block;
  width: 9px;
  width: 0.5625rem;
  height: 9px;
  height: 0.5625rem;
  border-top: 3px solid var(--main-color);
  border-top: 0.1875rem solid var(--main-color);
  border-right: 3px solid var(--main-color);
  border-right: 0.1875rem solid var(--main-color);
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (min-width: 768px) {
  .news__text::before {
    width: 16px;
    width: 1rem;
    height: 16px;
    height: 1rem;
    right: 28px;
    right: 1.75rem;
  }
}

.news__button {
  margin-top: 91px;
  margin-top: 5.6875rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .news__button {
    margin-top: 93px;
    margin-top: 5.8125rem;
  }
}


/******************************************************************
TOPページスライダーセクションのスタイル
******************************************************************/

.slider__wrap .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.slider__wrap img {
  aspect-ratio: 266/183;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .slider__wrap img {
    aspect-ratio: 615/426;
  }
}



/******************************************************************
TOPページこんな方々におすすめセクションのスタイル
******************************************************************/
.target {
  padding-top: 96px;
  padding-top: 6rem;
}
@media screen and (min-width: 768px) {
  .target {
    padding-top: 157px;
    padding-top: 9.8125rem;
  }
}

.target__wrap {
  border: 1px solid var(--main-color);
  border: 0.0625rem solid var(--main-color);
  padding: 23px 20px 51px;
  padding: 1.4375rem 1.25rem 3.1875rem;
}
@media screen and (min-width: 768px) {
  .target__wrap {
    padding: 33px 29px 53px;
    padding: 2.0625rem 1.8125rem 3.3125rem;
    max-width: 1100px;
    max-width: 68.75rem;
    margin-inline: auto;
  }
}

.target__list {
  margin-top: 43px;
  margin-top: 2.6875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 0.875rem;
     -moz-column-gap: 0.875rem;
          column-gap: 0.875rem;
  row-gap: 47px;
  row-gap: 2.9375rem;
}
@media screen and (min-width: 768px) {
  .target__list {
    margin-top: 63px;
    margin-top: 3.9375rem;
    -webkit-column-gap: 1.6875rem;
       -moz-column-gap: 1.6875rem;
            column-gap: 1.6875rem;
    row-gap: 69px;
    row-gap: 4.3125rem;
  }
}

.target__item {
  width: calc(50% - 0.4375rem);
  background-color: #E2E2E2;
  padding-top: 49px;
  padding-top: 3.0625rem;
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
  padding-inline: 12px;
  padding-inline: 0.75rem;
  min-height: 195px;
  min-height: 12.1875rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .target__item {
    width: calc(33.33333% - 1.125rem);
    padding-top: 40px;
    padding-top: 2.5rem;
    padding-bottom: 24px;
    padding-bottom: 1.5rem;
    padding-inline: 20px;
    padding-inline: 1.25rem;
    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: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.target__icon {
  position: absolute;
  top: -20px;
  top: -1.25rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .target__icon {
    top: -28px;
    top: -1.75rem;
    width: 56px;
    width: 3.5rem;
    height: 56px;
    height: 3.5rem;
  }
}

.target__content {
  text-align: center;
}

.target__content-icon {
  width: 100%;
  max-width: 82px;
  max-width: 5.125rem;
  height: 67px;
  height: 4.1875rem;
  -o-object-fit: contain;
     object-fit: contain;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .target__content-icon {
    min-width: unset;
    height: 70px;
    height: 4.375rem;
  }
}

.target__text {
  margin-top: 27px;
  margin-top: 1.6875rem;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--serif);
}
@media screen and (min-width: 768px) {
  .target__text {
    margin-top: 24px;
    margin-top: 1.5rem;
    font-size: 16px;
    font-size: 1rem;
  }
}

.topTitle-h3 {
  color: #fff;
  line-height: 2;
  background-color: var(--main-color);
  border-radius: 1.8125rem;
  text-align: center;
  width: 100%;
  padding-block: 3px;
  padding-block: 0.1875rem;
  border: none;
}
@media screen and (min-width: 768px) {
  .topTitle-h3 {
    font-size: 25px;
    font-size: 1.5625rem;
    line-height: 2;
    padding-block: 4px;
    padding-block: 0.25rem;
  }
}



/******************************************************************
TOPページVOICEセクションのスタイル
******************************************************************/

.voice {
  padding-top: 77px;
  padding-top: 4.8125rem;
  padding-bottom: 136px;
  padding-bottom: 8.5rem;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .voice {
    padding-top: 207px;
    padding-top: 12.9375rem;
    padding-bottom: 222px;
    padding-bottom: 13.875rem;
  }
}

.voice__inner {
  position: relative;
}

@media screen and (min-width: 768px) {
  .voice__title {
    width: 100vw;
    margin-left: calc(50% - 50vw + 5.5rem);
  }
}

.voice__list {
  margin-top: 37px;
  margin-top: 2.3125rem;
  width: calc(100vw - 1.25rem);
  padding-bottom: 76px;
  padding-bottom: 4.75rem;
}
@media screen and (min-width: 768px) {
  .voice__list {
    margin-top: 47px;
    margin-top: 2.9375rem;
    width: 100vw;
    padding-bottom: 101px;
    padding-bottom: 6.3125rem;
    margin-left: calc(50% - 50vw + 5.5rem);
  }
}

.voice__item {
  -webkit-box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, .15);
          box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, .15);
}

.voice__link {
  display: inline-block;
  width: 100%;
}

.voice__image img {
  aspect-ratio: 319/215;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .voice__image img {
    aspect-ratio: 511/345;
  }
}

.voice__body {
  padding: 18px 22px 17px;
  padding: 1.125rem 1.375rem 1.0625rem;
}
@media screen and (min-width: 768px) {
  .voice__body {
    padding: 20px 29px 21px;
    padding: 1.25rem 1.8125rem 1.3125rem;
  }
}

.voice__text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.9285714286;
  font-weight: 600;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .voice__text {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.6666666667;
  }
}

.voice__position,
.voice__name {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  text-align: right;
}

.voice__position {
  margin-top: 12px;
  margin-top: 0.75rem;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .voice__position {
    margin-top: 20px;
    margin-top: 1.25rem;
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.voice__name {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .voice__name {
    margin-top: 0;
    font-size: 25px;
    font-size: 1.5625rem;
    line-height: 1.2;
  }
}

.voice__swiper-scrollbar {
  width: calc(100% - 3.125rem) !important;
  left: 50% !important;
  -webkit-transform: translateX(-50%) !important;
          transform: translateX(-50%) !important;
  z-index: 0 !important;
  height: 3px !important;
  height: 0.1875rem !important;
  background: #E2E2E2;
}
@media screen and (min-width: 768px) {
  .voice__swiper-scrollbar {
    max-width: 1100px;
    max-width: 68.75rem;
    height: 5px !important;
    height: 0.3125rem !important;
  }
}

.voice__swiper-scrollbar .swiper-scrollbar-drag {
  background: var(--main-color);
}

.voice__button {
  margin-top: 87px;
  margin-top: 5.4375rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .voice__button {
    margin-top: 112px;
    margin-top: 7rem;
  }
}

.voice__bg-text {
  position: absolute;
  top: 33px;
  top: 2.0625rem;
  -webkit-text-stroke: 1px #E2E2E2;
  -webkit-text-stroke: 0.0625rem #E2E2E2;
  width: 100%;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .voice__bg-text {
    top: 57px;
    top: 3.5625rem;
    font-size: 28.385vw;
  }
}



/******************************************************************
下層ページ共通
******************************************************************/
.lv {
  position: relative;
  margin-top: 71px;
  margin-top: 4.4375rem;
}
@media screen and (min-width: 768px) {
  .lv {
    margin-top: 145px;
    margin-top: 9.0625rem;
  }
}

.lv__image {
  height: 47.9069767442vw;
}
@media screen and (min-width: 768px) {
  .lv__image {
    height: 14.84375vw;
  }
}

.lv__title {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .lv__title {
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
            transform: translateY(-50%) translateX(-50%);
    width: 100%;
    max-width: 1490px;
    padding-right: 25px;
    padding-left: 25px;
    text-align: left;
  }
}

.more-btn__link {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  font-weight: 600;
  background-color: var(--main-color);
  padding-block: 15px;
  padding-block: 0.9375rem;
  padding-inline: 31px;
  padding-inline: 1.9375rem;
  min-width: 210px;
  min-width: 13.125rem;
  text-align: center;
  font-family: var(--serif);
}
@media screen and (min-width: 768px) {
  .more-btn__link {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.5;
    padding-block: 18px;
    padding-block: 1.125rem;
    padding-inline: 50px;
    padding-inline: 3.125rem;
    min-width: 336px;
    min-width: 21rem;
  }
}

.more-btn__link--gold {
  background-color: #D9BA25;
}

/******************************************************************
TOPページRESULTセクションのスタイル
******************************************************************/

.result {
  padding-top: 140px;
  padding-top: 8.75rem;
  padding-bottom: 117px;
  padding-bottom: 7.3125rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .result {
    padding-top: 188px;
    padding-top: 11.75rem;
    padding-bottom: 163px;
    padding-bottom: 10.1875rem;
  }
}

.result::before {
  content: "";
  position: absolute;
  top: 36px;
  top: 2.25rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 34px solid transparent;
  border-right: 2.125rem solid transparent;
  border-left: 34px solid transparent;
  border-left: 2.125rem solid transparent;
  border-top: 33px solid #D9BA25;
  border-top: 2.0625rem solid #D9BA25;
  border-bottom: 0;
}
@media screen and (min-width: 768px) {
  .result::before {
    top: 56px;
    top: 3.5rem;
    border-right: 88px solid transparent;
    border-right: 5.5rem solid transparent;
    border-left: 88px solid transparent;
    border-left: 5.5rem solid transparent;
    border-top: 83px solid #D9BA25;
    border-top: 5.1875rem solid #D9BA25;
  }
}

.result__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 68px;
  gap: 4.25rem;
}
@media screen and (min-width: 768px) {
  .result__lists {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 4.625rem;
       -moz-column-gap: 4.625rem;
            column-gap: 4.625rem;
    row-gap: 121px;
    row-gap: 7.5625rem;
  }
}

.result__item {
  position: relative;
}
@media screen and (min-width: 768px) {
  .result__item {
    width: calc(50% - 2.3125rem);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.result__item-num {
  font-size: 46px;
  font-size: 2.875rem;
  line-height: 1.1739130435;
  color: var(--main-color);
  font-family: var(--serif);
  font-weight: 700;
  position: absolute;
  top: -38px;
  top: -2.375rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .result__item-num {
    font-size: 71px;
    font-size: 4.4375rem;
    line-height: 1.1408450704;
    top: -40px;
    top: -2.5rem;
  }
}

.result__item-image img {
  aspect-ratio: 390/239;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .result__item-image img {
    aspect-ratio: 683/419;
  }
}

.result__item-body {
  padding: 15px 21px 39px;
  padding: 0.9375rem 1.3125rem 2.4375rem;
  -webkit-box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, .15);
          box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, .15);
}
@media screen and (min-width: 768px) {
  .result__item-body {
    padding: 25px 37px 68px;
    padding: 1.5625rem 2.3125rem 4.25rem;
    height: 100%;
  }
}

.result__item-title {
  font-size: 16px;
  font-size: 1rem;
  line-height: 2.0625;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .result__item-title {
    font-size: 25px;
    font-size: 1.5625rem;
    line-height: 2;
  }
}

.result__item-text {
  margin-top: 3px;
  margin-top: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .result__item-text {
    margin-top: 7px;
    margin-top: 0.4375rem;
  }
}



/******************************************************************
誠心塾神戸とはページ用
******************************************************************/

.low-aboutTop {
  padding-top: 41px;
  padding-top: 2.5625rem;
  padding-bottom: 58px;
  padding-bottom: 3.625rem;
}

@media screen and (min-width: 768px) {
  .low-aboutTop {
    padding-top: 136px;
    padding-top: 8.5rem;
    padding-bottom: 180px;
    padding-bottom: 11.25rem;
    margin-left: calc( 240 / 1920 * 100vw);
  }
}


.low-aboutTop__wrap {
  display: flex;
  flex-direction: column;
  gap: 76px;
  gap: 4.75rem;

}
@media screen and (min-width: 768px) {
  .low-aboutTop__wrap {
    flex-direction: row;
    gap: 133px;
    gap: 8.3125rem;
  }
}
.low-aboutTop-l {
  padding-inline: 21px;
  padding-inline: 1.3125rem;
}

@media screen and (min-width: 768px) {
  .low-aboutTop-l {
    padding-inline: 0;
    
    width: calc( 720 / 1680 * 100%);
  }
}

.low-aboutTop__text {
  margin-top: 48px;
  margin-top: 3rem;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: calc( 27 / 12);
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .low-aboutTop__text {
    margin-top: 54px;
    margin-top: 3.375rem;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: calc( 35 / 18);
  }
}
.low-aboutTop__btn .more-btn__link {
  margin-top: 80px;
  margin-top: 5rem;
  display: block;
  width: 304px;
  margin-inline: auto;
  position: relative;
}

@media screen and (min-width: 768px) {
  .low-aboutTop__btn .more-btn__link {
    margin-top: 122px;
    margin-top: 7.625rem;
    width: 424px;
    width: 26.5rem;
    margin-inline: 0;
  }
}

.low-aboutTop__btn .more-btn__link::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 25px;
  translate: 0 -50%;
  width: 15px;
  height: 13px;
  background: url('../images/about/icon_link.svg') no-repeat center /contain;
}

@media screen and (min-width: 768px) {
  .low-aboutTop__btn .more-btn__link::after {
    position: absolute;
    content: "";
    top: 50%;
    right: 40px;
    right: 2.5rem;
    translate: 0 -50%;
    width: 23px;
    width: 1.4375rem;
    height: 20px;
    height: 1.25rem;
  }
}

.low-aboutTop-r {
  aspect-ratio: 432 / 199;
  width: 100%;
  height: auto;
}

@media screen and (min-width: 768px) {
  .low-aboutTop-r {
    aspect-ratio: 827 / 710;
    width: calc( 827 / 1920 * 100vw);
  }
}

.low-aboutTop__image img{
  width: 100%;
  height: 100%;
  object-fit: contain
}

.lowAbout__goal {
  padding-top: 83px;
  padding-top: 5.1875rem;

}

@media screen and (min-width: 768px) {
  .lowAbout__goal {
    padding-top: 0;
  
  }
}
.low-aboutGoal__wrap {
  display: flex;
  flex-direction: column-reverse;
  gap: 122px;
  gap: 7.625rem;
  background-color: #F6F6F6;
}
@media screen and (min-width: 768px) {
  .low-aboutGoal__wrap {
    flex-direction: row;
    gap: 133px;
    gap: 8.3125rem;
    background-color: #F6F6F6;
  }
}


@media screen and (min-width: 768px) {
  .low-aboutGoal-l {
    position: relative;
    top: 134px;
    top: 8.375rem;
    width: calc(827 / 1920 * 100vw);
  }
}


.low-aboutGoal__image {
  aspect-ratio: 430 / 238;
  width: 100%;
  height: auto;
}


.lo-aboutGoal-r {
  padding-inline: 20px;
  padding-inline: 1.25rem;
  
}


@media screen and (min-width: 768px) {
  .lo-aboutGoal-r {
    margin-top: 157px;
    margin-top: 9.8125rem;
    padding-inline: 0;
    width: calc( 720 / 1920 * 100%);
    padding-bottom: 104px;
    padding-bottom: 6.5rem;
  }
}

.low-aboutGoal__title-sub {
  margin-top: 50px;
  margin-top: 3.125rem;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: calc( 24 / 18);
  letter-spacing: 0.07em;
  font-weight: 700;
  font-family: var(--serif);
}

@media screen and (min-width: 768px) {
  .low-aboutGoal__title-sub {
    margin-top: 44px;
    margin-top: 2.75rem;
    font-size: 28rem;
    font-size: 1.75rem;
    line-height: calc( 37 / 28);
  }
}

.low-aboutGoal__text {
  margin-top: 17px;
  margin-top: 1.0625rem;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: calc( 27 / 12);
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {
  .low-aboutGoal__text {
    margin-top: 26px;
    margin-top: 1.625rem;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: calc( 35 / 18);
    letter-spacing: 0.1em;
  }
}

.low-aboutActivities {
  padding-top: 104px;
  padding-top: 6.5rem;
  padding-bottom: 219px;
  padding-bottom: 13.6875rem;
}

@media screen and (min-width: 768px) {
  .low-aboutActivities {
    padding-top: 214px;
    padding-top: 13.375rem;
    padding-bottom: 272px;
    padding-bottom: 17rem;
  }
}

.low-aboutActivities__items {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 71px;
  row-gap: 4.4375rem;
  margin-top: 84px;
  margin-top: 5.25rem;
}

@media screen and (min-width: 768px) {
  .low-aboutActivities__items {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 74px;
    column-gap: 4.625rem;
    row-gap: 121px;
    row-gap: 7.5625rem;
    margin-top: 100px;
    margin-top: 6.25rem;
  }
}

.low-aboutActivities__item {
  position: relative;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
}

.low-aboutActivities__count {
  position: absolute;
  top: -35px;
  left: 50%;
  translate: -50%;
  font-size: 46px;
  font-size: 2.875rem;
  font-family: var(--serif);
  color: var(--main-color);
  font-weight: 700;
  line-height: calc( 53 / 46);
}

@media screen and (min-width: 768px) {
  .low-aboutActivities__count {
    top: -56px;
    top: -3.5rem;
    font-size: 90px;
    font-size: 5.625rem;
    line-height: calc( 103 / 90);
  }
}

.low-aboutActivities-image {
  aspect-ratio: 390 / 239;
  width: 100%;
  height: auto;
}

.low-aboutActivities__item-body {
  padding-top: 25px;
  padding-top: 1.5625rem;
  padding-inline: 21px;
  padding-inline: 1.3125rem;
  padding-bottom: 49px;
  padding-bottom: 3.0625rem;
}

@media screen and (min-width: 768px) {
  .low-aboutActivities__item-body {
    padding-top: 36px;
    padding-top: 2.25rem;
    padding-inline: 37px;
    padding-inline: 2.3125rem;
    padding-bottom: 71px;
    padding-bottom: 4.4375rem;
  }
}

.low-aboutActivities__item-head {
  font-family: var(--serif);
  font-size: 16px;
  font-size: 1rem;
  line-height: calc( 21 / 16);
  letter-spacing: 0.07em;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .low-aboutActivities__item-head {
    font-size: 23px;
    font-size: 1.4375rem;
    line-height: calc( 31 / 23);
  }
}

.low-aboutActivities__item-text {
  margin-top: 13px;
  margin-top: 0.8125rem;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: calc( 25 / 12);
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {
  .low-aboutActivities__item-text {
    margin-top: 23px;
    margin-top: 1.4375rem;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: calc( 35 / 18);
    letter-spacing: 0.1em;
  }
}

/******************************************************************
誠心塾神戸とはページ用-終わり
******************************************************************/
/******************************************************************
記事詳細ページ用
******************************************************************/

.single {
  padding-top: 50px;
  padding-top: 3.125rem;
  padding-bottom: 119px;
  padding-bottom: 7.4375rem;
}

@media screen and (min-width: 768px) {
  .single {
    padding-top: 97px;
    padding-top: 6.0625rem;
    padding-bottom: 180px;
    padding-bottom: 11.25rem;
  }
}


.single__head-contents {
  display: flex;
  flex-direction: column;
  gap: 41px;
  gap: 2.5625rem;
}


@media screen and (min-width: 768px) {
  .single__head-contents {
    flex-direction: row;
    margin-top: 16px;
    margin-top: 1.000rem;
    gap: 80px;
    gap: 5rem;
  }
}

.single__head h4{
  border-left: none;
  padding-left: 0;
  margin-top: 25px;
  margin-top: 1.5625rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.07em;
}

@media screen and (min-width: 768px) {
  .single__head h4{
    margin-top: 0;
    font-size: 30px;
    font-size: 1.875rem;
    line-height: calc( 44 / 30);
  }
}

.single__head h5{
  margin-top: 9px;
  margin-top: 0.5625rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: calc( 27 / 14);
  font-family: var(--serif);
  font-weight: 700;
  margin-bottom: 0;
  letter-spacing: 0.07em;
}


@media screen and (min-width: 768px) {
  .single__head h5{
    font-size: 20px;
    font-size: 1.25rem;
    line-height: calc( 29 / 20);
    
  }
  
}

.single__head-text {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: calc( 27 / 12);
  letter-spacing: 0.1em;
  margin-top: 22px;
  margin-top: 1.375rem;
}

@media screen and (min-width: 768px) {
  .single__head-text {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: calc( 35 / 18);
    margin-top: 32px;
    margin-top: 2rem;
  }
}

.single__head-contents-r {
  aspect-ratio: 390 / 363;
  width: 100%;
  height: auto;
}

@media screen and (min-width: 768px) {
  .single__head-contents-r {
    width: 371px;
    width: 23.1875rem;
    flex-shrink: 0;
  }
}

.single__head-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.single__detail {
  margin-top: 36px;
  margin-top: 2.250rem;
}

@media screen and (min-width: 768px) {
  .single__detail {
    margin-top: 47px;
    margin-top: 2.9375rem;
  }
}

.single__detail h4{
  margin-bottom: 25px;
  margin-bottom: 1.5625rem;
  letter-spacing: 0.07em;
}

@media screen and (min-width: 768px) {
  .single__detail h4{
    margin-bottom: 30px;
    margin-bottom: 1.875rem;
  }
}

.single__detail p{
  margin-bottom: 41px;
  margin-bottom: 2.5625rem;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 300;
  line-height: calc( 27 / 12);
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {
  .single__detail p{
    margin-bottom: 30px;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: calc( 35 / 18);
  }
}

.single__registration {
  margin-top: 68px;
  margin-top: 4.25rem;
  margin-bottom: 68px;
  margin-bottom: 4.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  gap: 0.9375rem;
}


@media screen and (min-width: 768px) {
  .single__registration {
    margin-top: 80px;
    margin-top: 5rem;
    margin-bottom: 57px;
    margin-bottom: 3.5625rem;
    flex-direction: row;
    gap: 42px;
    gap: 2.625rem;
    justify-content: center;
  }
}


.single__registration .more-btn__link {
  width: 350px;
  width: 21.875rem;
  min-width: 0;
}

@media screen and (min-width: 768px) {
  .single__registration .more-btn__link {
    width: 336px;
    width: 21rem;
  }
}

.single__download{
  text-align: center;
  width: calc( 100% + 16px * 2);
  translate: -16px;
}


.single__download .more-btn__link {
  width: 350px;
  width: 21.875rem;
}

@media screen and (min-width: 768px) {
  .single__download .more-btn__link {
    width: 336px;
    width: 21rem;
  }
}

/******************************************************************
記事詳細ページ用-終わり
******************************************************************/
/******************************************************************
お知らせ用
******************************************************************/


.archive {
  padding-top: 50px;
  padding-top: 3.125rem;
  padding-bottom: 121px;
  padding-bottom: 7.5625rem;
  background-color: #fff;
}


@media screen and (min-width: 768px) {
  .archive {
    padding-top: 77px;
    padding-top: 4.8125rem;
    padding-bottom: 180px;
    padding-bottom: 11.25rem;
  }
}

.archive__tags {
  margin-top: 41px;
  margin-top: 2.5625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 14px;
  gap: 0.875rem;
  font-family: var(--serif);
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .archive__tags {
    margin-top: 61px;
    margin-top: 3.8125rem;
    gap: 31px;
    gap: 1.9375rem;
  }
}

.archive__tagItem {
  border: 1px solid var(--main-color);
  border: 0.0625rem solid var(--main-color);
  width: 86px;
  width: 5.375rem;
}
@media screen and (min-width: 768px) {
  .archive__tagItem {
    width: 184px;
    width: 11.5rem;
  }
}

.archive__tagLink {
  display: inline-block;
  width: 100%;
  background-color: #fff;
  padding-block: 3px;
  padding-block: 0.1875rem;
  color: var(--main-color);
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.6666666667;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .archive__tagLink {
    padding-block: 16px;
    padding-block: 1rem;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.6111111111;
  }
}

.archive__tagLink.active {
  background-color: var(--main-color);
  color: #fff;
}

.archive__list {
  display:grid;
  grid-template-columns: 1fr;
  row-gap: 31px;
  row-gap: 1.9375rem;
}
@media screen and (min-width: 768px) {
  .archive__list {
    grid-template-columns: repeat(3, 1fr);
    -webkit-column-gap: 2.9375rem;
       -moz-column-gap: 2.9375rem;
            column-gap: 2.9375rem;
    row-gap: 44px;
    row-gap: 2.75rem;
  }
}

.archive__item {
  width: 100%;
  -webkit-box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, .15);
          box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, .15);
}
@media screen and (min-width: 768px) {
  .archive__item {
  }
}

.archive__link {
  display: inline-block;
  width: 100%;
}

.archive__image{
  aspect-ratio: 390/239;
}
@media screen and (min-width: 768px) {
  .archive__image{
    aspect-ratio: 449/275;
  }
}

.archive__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.archive__body {
  padding: 18px 21px 13px;
  padding: 1.125rem 1.3125rem 0.8125rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .archive__body {
    padding: 15px 23px 13px;
    padding: 0.9375rem 1.4375rem 0.8125rem;
  }
}

.archive__date {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 2.0833333333;
}
@media screen and (min-width: 768px) {
  .archive__date {
    font-size: 16px;
    font-size: 1rem;
    line-height: 2.1875;
  }
}

.archive__bodyTitle {
  margin-top: 4px;
  margin-top: 0.25rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.4375;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .archive__bodyTitle {
    margin-top: 0;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.4444444444;
  }
}

.archive__bodyText {
  margin-top: 9px;
  margin-top: 0.5625rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.archive__button {
  margin-top: 52px;
  margin-top: 3.25rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .archive__button {
    margin-top: 104px;
    margin-top: 6.5rem;
  }
}

/******************************************************************
お知らせ用-終わり
******************************************************************/
/******************************************************************
固定ページ用
******************************************************************/

.page{
  padding-top: 50px;
  padding-top: 3.125rem;
  padding-bottom: 195px;
  padding-bottom: 12.1875rem;
}

@media screen and (min-width: 768px) {
  .page{
    padding-top: 97px;
    padding-top: 6.0625rem;
    padding-bottom: 264px;
    padding-bottom: 16.5rem;
  }
}


.page div:not(:first-of-type){
  margin-top: 49px;
  margin-top: 3.0625rem;
}

@media screen and (min-width: 768px) {
  .page div:not(:first-of-type){
    margin-top: 55px;
    margin-top: 3.4375rem;
  }
}

.page p{
  font-size: 12px;
  font-size: 0.75rem;
  line-height: calc( 27 / 12);
  letter-spacing: 0.07em;
  margin-top: 29px;
  margin-top: 1.8125rem;
  font-weight: 300;
}

@media screen and (min-width: 768px) {
  .page p{
    font-size: 18px;
    font-size: 1.125rem;
    line-height: calc( 35 / 18);
    letter-spacing: 0.1em;
    margin-top: 36px;
    margin-top: 2.25rem;
  }
  
}

/******************************************************************
固定ページ用-終わり
******************************************************************/
/******************************************************************
塾生一覧ページ用
******************************************************************/

.jukusei__tabs {
  margin-top: 75px;
  margin-top: 4.6875rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  row-gap: 8px;
  row-gap: 0.5rem;
  column-gap: 9px;
  column-gap: 0.5625rem;
}

@media screen and (min-width: 768px) {
  .jukusei__tabs {
    margin-top: 44px;
    margin-top: 2.75rem;
    grid-template-columns: repeat(7, 1fr);
    row-gap: 28px;
    row-gap: 1.75rem;
    column-gap: 26px;
    column-gap: 1.625rem;
  }
}

.jukusei__tab{
  display: grid;
  place-items: center;
  color: var(--main-color);
  border: 1px solid var(--main-color);
  height: 30px;
  height: 1.875rem;
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0.07em;
  padding: 0;
}

@media screen and (min-width: 768px) {
  .jukusei__tab{
    height: 64px;
    height: 4rem;
    font-size: 18px;
    font-size: 1.125rem;

  }
}

.jukusei__tab.active{
  background-color: var(--main-color);
  color: #fff;
}

.jukusei__lists {
  margin-top: 36px;
  margin-top: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 86px;
  gap: 5.375rem;
  padding-bottom: 248px;
  padding-bottom: 15.5rem;
}

@media screen and (min-width: 768px) {
  .jukusei__lists {
    margin-top: 69px;
    margin-top: 4.3125rem;
    gap: 88px;
    gap: 5.5rem;
    padding-bottom: 266px;
    padding-bottom: 16.625rem;
  }

}


.jukusei__list-item {
  display: flex;
  flex-direction: column;
  gap: 23px;
  gap: 1.4375rem;
  padding-bottom: 39px;
  padding-bottom: 2.4375rem;
  border-bottom: 3px solid #E1E1E1;
  border-bottom: 0.1875rem solid #E1E1E1;
  position: relative;
}

@media screen and (min-width: 768px) {
  .jukusei__list-item {
    flex-direction: row;
    padding-top: 38px;
    padding-top: 2.375rem;
    gap: 100px;
    gap: 6.25rem;
    align-items: flex-start;
  }
  
}

.jukusei__list-item::after{
  position: absolute;
  content: "";
  bottom: -3px;
  bottom: -0.1875rem;
  left: 0;
  width: 99px;
  width: 6.1875rem;
  height: 3px;
  height: 0.1875rem;
  background-color: var(--main-color);
}

@media screen and (min-width: 768px) {
  .jukusei__list-item::after{
    width: 326px;
    width: 20.375rem;
  }
}

.jukusei__list-item-l {
  margin-top: 33px;
  margin-top: 2.0625rem;
  width: 182px;
  width: 11.375rem;
  aspect-ratio: 182 / 224;
  height: auto;
  margin-inline: auto;
}


@media screen and (min-width: 768px) {
  .jukusei__list-item-l {
    margin-top: 0;
    width: 260px;
    width: 16.25rem;
    flex-shrink: 0;
    aspect-ratio: 260 / 320;
    margin-inline: 0;
  }
}

.jukusei__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.jukusei__list-subcommittee{
  color: var(--main-color);
  padding: 4px 8px ;
  padding: 0.25rem 0.5rem;
  border: 1px solid var(--main-color);
  width: fit-content;
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 16px;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}


@media screen and (min-width: 768px) {
  .jukusei__list-subcommittee{
    position: absolute;
    top: 38px;
    top: 2.375rem;
    right: 0;
    font-size: 25px;
    font-size: 1.5625rem;
    padding-inline: 16px;
    padding-inline: 1rem;
  }
}

.jukusei__list-company {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: calc( 20 / 14);
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {
  .jukusei__list-company {
    font-size:20px;
    font-size: 1.25rem;
    line-height: calc( 30 / 20);
  }
}

.jukusei__list-name {
  margin-top: 6px;
  margin-top: 0.375rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: calc( 23 / 16);
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0.07em;
}

@media screen and (min-width: 768px) {
  .jukusei__list-name {
    margin-top: 14px;
    margin-top: 0.875rem;
    font-size: 25px;
    font-size: 1.5625rem;
    line-height: calc( 30 / 25);
    letter-spacing: 0.1em;
  }
}
.jukusei__list-text {
  margin-top: 21px;
  margin-top: 1.3125rem;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: calc( 25 / 12);
  letter-spacing: 0.1em;
  font-weight: 300;
}

@media screen and (min-width: 768px) {
  .jukusei__list-text {
    margin-top: 37px;
    margin-top: 2.3125rem;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: calc( 35 / 18);
  }
}

.jukusei__list-link {
  margin-top: 33px;
  margin-top: 2.0625rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  gap: 1.125rem;

}

@media screen and (min-width: 768px) {
  .jukusei__list-link {
    margin-top: 37px;
    margin-top: 2.3125rem;
    flex-direction: row;
    gap: 36px;
    gap: 2.25rem;
    justify-content: flex-start;
  }
}

.jukusei__list-link .more-btn__link {
  width: 304px;
  width: 19rem;
}


@media screen and (min-width: 768px) {
  .jukusei__list-link .more-btn__link {
    width: 306px;
    width: 19.125rem;
    min-width: 0;
  }
}

.jukusei__link{
  position: relative;
}

@media screen and (min-width: 768px) {
  .jukusei__link{
    text-align: left;
    padding-left: 46px;
    padding-left: 2.875rem;
  }
}

.jukusei__link::after{
  position: absolute;
  content: "";
  top: 50%;
  right: 25px;
  right: 1.5625rem;
  translate: 0 -50%;
  width: 15px;
  width: 0.9375rem;
  height: 13px;
  height: 0.8125rem;
  background: url('../images/about/icon_link.svg') no-repeat center /contain;
}

@media screen and (min-width: 768px) {
  .jukusei__link::after{
    right: 46px;
    right: 2.875rem;
    width: 24px;
    width: 1.5rem;
    height: 21px;
    height: 1.3125rem;
    background: url('../images/about/icon_link.svg') no-repeat center /contain;
  }
}

/******************************************************************
塾生一覧ページ用-終わり
******************************************************************/
/******************************************************************
塾一覧ページ用
******************************************************************/

.juku-list__tabs {
  margin-top: 44px;
  margin-top: 2.75rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 9px;
  row-gap: 0.5625rem;
  column-gap: 8px;
  column-gap: 0.5rem;
}

@media screen and (min-width: 768px) {
    
  .juku-list__tabs {
    margin-top: 75px;
    margin-top: 4.6875rem;
    grid-template-columns: repeat(7, 1fr);
    column-gap: 25px;
    column-gap: 1.5625rem;
  }
}

.juku-list__tab {
  display: grid;
  place-items: center;
  font-size: 12px;
  font-size: 0.75rem;
  color: var(--main-color);
  border: 1px solid var(--main-color);
  height: 30px;
  height: 1.875rem;
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0.07em;
}


@media screen and (min-width: 768px) {
    
  .juku-list__tab {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: calc( 26 / 18);
    height: 64px;
    height: 4rem;
  }

}

.juku-list__tab.active{
  background-color: var(--main-color);
  color: #fff;
}

.juku-list__lists {
  margin-top: 36px;
  margin-top: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 86px;
  gap: 5.375rem;
  padding-bottom: 141px;
  padding-bottom: 8.8125rem;
}

@media screen and (min-width: 768px) {
  .juku-list__lists {
    margin-top: 59px;
    margin-top: 3.6875rem;
    padding-bottom: 254px;
    padding-bottom: 15.875rem;
  }
  

}


.juku-list__list-head {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: calc( 26 / 18);
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0.07em;
}

@media screen and (min-width: 768px) {
  .juku-list__list-head {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: calc( 44 / 30);
  }
}

.juku-list__list-item {
  margin-top: 27px;
  margin-top: 1.6875rem;
  padding-bottom: 26px;
  padding-bottom: 1.625rem;
  border-bottom: 3px solid #E1E1E1;
  border-bottom: 0.1875rem solid #E1E1E1;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 26px;
  gap: 1.625rem;

}

@media screen and (min-width: 768px) {
  .juku-list__list-item {
    margin-top: 35px;
    margin-top: 2.1875rem;
    padding-bottom: 35px;
    padding-bottom: 2.1875rem;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  
  }
}

.juku-list__list-item::after{
  position: absolute;
  content: "";
  bottom: -3px;
  bottom: -0.1875rem;
  left: 0;
  width: 99px;
  width: 6.1875rem;
  height: 3px;
  height: 0.1875rem;
  background-color: var(--main-color);
}

@media screen and (min-width: 768px) {
  
.juku-list__list-item::after{
  width: 326px;
}
}



.juku-list__list-name {
  font-size: 16px;
  font-size: 1rem;
  line-height: calc( 23 / 16);
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0.07em;
}

@media screen and (min-width: 768px) {
  .juku-list__list-name {
    font-size: 25px;
    font-size: 1.5625rem;
    line-height: calc( 30 / 25);
    letter-spacing: 0.1em;
  }
}

.juku-list__list-link {
  display: flex;
  justify-content: space-between;
}

@media screen and (min-width: 768px) {
  .juku-list__list-link {
    justify-content: flex-end;
    gap: 24px;
    gap: 1.5rem;
  }
}

.juku-list__list-link .more-btn__link {
  width: calc( 188 / 390 * 100%);
  min-width: 0;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.07em;
  padding-inline: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  gap: 0.875rem;
}

@media screen and (min-width: 768px) {
  .juku-list__list-link .more-btn__link {
    width: 306px;
    width: 19.125rem;
    font-size: 18px;
    font-size: 1.125rem;
  }
}


.juku-list__link-icon{
  display: inline-block;
  width: 15px;
  width: 0.9375rem;
  height: 13px;
  height: 0.8125rem;
  background: url('../images/common/icon_link_white.svg') no-repeat center /contain;
}


@media screen and (min-width: 768px) {
  .juku-list__link-icon{
    width: 23px;
    width: 1.4375rem;
    height: 21px;
    height: 1.3125rem;
  }
}

@media screen and (min-width: 768px) {
  .juku-list__link::after{
    right: 46px;
    right: 2.875rem;
    translate: 0 -50%;
    width: 23px;
    width: 1.4375rem;
    height: 21px;
    height: 1.3125rem;
  }
}

/* ログインフォーム用のスタイル */

.page #wpmem_login{
  margin-inline: auto ;
  font-family: "ヒラギノ角ゴ StdN", "Hiragino Kaku Gothic StdN", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 400;
}

@media screen and (min-width: 768px) {
  .page #wpmem_login{
    width: 60%;
    max-width: 500px;
  }
}

.page #wpmem_login legend{
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  font-family: var(--serif);
}

.page #wpmem_login .button_div{
  text-align: center;
  margin-top: 24px;
  margin-top: 1.5rem;
}


#wpmem_login input[type="checkbox"]{
  display: inline-block;
  appearance: auto;
  outline: 1px solid #d7d7d7;
}

.page #wpmem_login input[type="submit"]{
  margin-top: 24px;
  margin-top: 1.5rem;
  display: grid;
  place-items: center;
  width: 300px;
  width: 18.75rem;
  height: 50px;
  height: 3.125rem;
  background-color: #D11111;
  color: #fff;
  cursor: pointer;
  margin-inline: auto;
}

.page .login_status{
  text-align: center;
  font-family: "ヒラギノ角ゴ StdN", "Hiragino Kaku Gothic StdN", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 400;
  margin-top: 80px;
  margin-top: 5rem;
}

.page .login_status a{
  color: #D11111;
  display: inline-block;
  margin-top: 24px;
  margin-top: 1.5rem;
  padding: 12px 40px;
  padding: 0.75rem 2.5rem;
  outline: 1px solid #D11111;
}



/******************************************************************
過去のイベントのスタイル
******************************************************************/

.pastEvents {
  padding-top: 76px;
  padding-top: 4.75rem;
  padding-bottom: 192px;
  padding-bottom: 12rem;
}

.pastEvents--bg-white {
  padding-top: 76px;
  padding-top: 4.75rem;
  padding-bottom: 192px;
  padding-bottom: 12rem;
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  .pastEvents {
    padding-top: 102px;
    padding-top: 6.375rem;
    padding-bottom: 264.4px;
    padding-bottom: 16.525rem;
  }
  .pastEvents--bg-white {
    padding-top: 102px;
    padding-top: 6.375rem;
    padding-bottom: 264.4px;
    padding-bottom: 16.525rem;
  }
}

.pastEvents__tags {
  margin-top: 41px;
  margin-top: 2.5625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 14px;
  gap: 0.875rem;
  font-family: var(--serif);
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .pastEvents__tags {
    margin-top: 61px;
    margin-top: 3.8125rem;
    gap: 31px;
    gap: 1.9375rem;
  }
}

.pastEvents__tagItem {
  border: 1px solid var(--main-color);
  border: 0.0625rem solid var(--main-color);
  width: 86px;
  width: 5.375rem;
}
@media screen and (min-width: 768px) {
  .pastEvents__tagItem {
    width: 184px;
    width: 11.5rem;
  }
}

.pastEvents__tagLink {
  display: inline-block;
  width: 100%;
  background-color: #fff;
  padding-block: 3px;
  padding-block: 0.1875rem;
  color: var(--main-color);
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.6666666667;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .pastEvents__tagLink {
    padding-block: 16px;
    padding-block: 1rem;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.6111111111;
  }
}

.pastEvents__tagLink.active {
  background-color: var(--main-color);
  color: #fff;
}

.pastEvents__list {
  margin-top: 36px;
  margin-top: 2.25rem;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 31px;
  row-gap: 1.9375rem;
}
@media screen and (min-width: 768px) {
  .pastEvents__list {
    margin-top: 70px;
    margin-top: 4.375rem;
    grid-template-columns: repeat( 3 , 1fr);
    -webkit-column-gap: 2.9375rem;
       -moz-column-gap: 2.9375rem;
            column-gap: 2.9375rem;
    row-gap: 44px;
    row-gap: 2.75rem;
  }
}

.pastEvents__item {
  width: 100%;
  -webkit-box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, .15);
          box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, .15);
}
@media screen and (min-width: 768px) {
  .pastEvents__item {
   
  }
}

.pastEvents__link {
  display: inline-block;
  width: 100%;
}

.pastEvents__image{
  aspect-ratio: 390/239;
}

@media screen and (min-width: 768px) {
  .pastEvents__image{
    aspect-ratio: 449/275;
  }
}

.pastEvents__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}


.pastEvents__body {
  padding: 18px 21px 13px;
  padding: 1.125rem 1.3125rem 0.8125rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .pastEvents__body {
    padding: 15px 23px 13px;
    padding: 0.9375rem 1.4375rem 0.8125rem;
  }
}

.pastEvents__date {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 2.0833333333;
}
@media screen and (min-width: 768px) {
  .pastEvents__date {
    font-size: 16px;
    font-size: 1rem;
    line-height: 2.1875;
  }
}

.pastEvents__bodyTitle {
  margin-top: 4px;
  margin-top: 0.25rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.4375;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .pastEvents__bodyTitle {
    margin-top: 0;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.4444444444;
  }
}

.pastEvents__bodyText {
  margin-top: 9px;
  margin-top: 0.5625rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.pastEvents__button {
  margin-top: 52px;
  margin-top: 3.25rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .pastEvents__button {
    margin-top: 104px;
    margin-top: 6.5rem;
  }
}


/******************************************************************
イベントのご案内ー今後のイベントに関するスタイル
******************************************************************/

.upcoming {
  padding-top: 51px;
  padding-top: 3.1875rem;
  padding-bottom: 159px;
  padding-bottom: 9.9375rem;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .upcoming {
    padding-top: 95px;
    padding-top: 5.9375rem;
    padding-bottom: 193.7px;
    padding-bottom: 12.10625rem;
  }
}

.upcoming__inner {
  position: relative;
  z-index: 1;
  padding-top: 60px;
  padding-top: 3.75rem;
}


@media screen and (min-width: 768px) {
  
.upcoming__inner {
  padding-top: 103px;
  padding-top: 6.4375rem;
}

}

.upcoming__wrap {
  padding: 42px 20px 41px;
  padding: 2.625rem 1.25rem 2.5625rem;
  background-color: #F6F6F6;
}
@media screen and (min-width: 768px) {
  .upcoming__wrap {
    padding: 63px 55px;
    padding: 3.9375rem 3.4375rem;
  }
}

.upcoming__contents {
  margin-top: 25.5px;
  margin-top: 1.59375rem;
}
@media screen and (min-width: 768px) {
  .upcoming__contents {
    margin-top: 52.5px;
    margin-top: 3.28125rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.upcoming__bodyText-l,
.upcoming__bodyText-name {
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
}

.upcoming__bodyText-l {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.4375;
}
@media screen and (min-width: 768px) {
  .upcoming__bodyText-l {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 1.4666666667;
  }
}

.upcoming__bodyText-name {
  margin-top: 6px;
  margin-top: 0.375rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.9285714286;
}
@media screen and (min-width: 768px) {
  .upcoming__bodyText-name {
    margin-top: 7px;
    margin-top: 0.4375rem;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.45;
  }
}

.upcoming__bodyText {
  margin-top: 34px;
  margin-top: 2.125rem;
}
@media screen and (min-width: 768px) {
  .upcoming__bodyText {
    margin-top: 29px;
    margin-top: 1.8125rem;
  }
}

.upcoming__body-button {
  margin-top: 43px;
  margin-top: 2.6875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  gap: 1.5625rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .upcoming__body-button {
    margin-top: 23px;
    margin-top: 1.4375rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 36px;
    gap: 2.25rem;
  }
}

.upcoming__image {
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (min-width: 768px) {
  .upcoming__image {
    margin-top: 0;
    margin-left: 90px;
    margin-left: 5.625rem;
    width: 27.915%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.upcoming__image img {
  aspect-ratio: 350/325;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .upcoming__image img {
    aspect-ratio: 371/344;
  }
}




/******************************************************************
フォーム関連のスタイル
******************************************************************/


.contact{
  padding-top: 50px;
  padding-top: 3.125rem;
  padding-bottom: 93px;
  padding-bottom:  5.8125rem;
}

@media screen and (min-width: 768px) {
    
  .contact{
    padding-top: 138px;
    padding-top: 8.625rem;
    padding-bottom: 190px;
    padding-bottom: 11.875rem;
    
  }
}

.form__table{
  display: flex;
  flex-direction: column;
  gap: 33px;
  gap: 2.0625rem;
}
@media screen and (min-width: 768px) {
  .form__table{
    gap: 40px;
    gap: 2.5rem;
  }
}
.form__item{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  gap: 1.125rem;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
  border-bottom: 3px solid #E1E1E1;
  position: relative;
}

@media screen and (min-width: 768px) {
  .form__item{
    flex-direction: row;
    gap: 0 ;
    padding-bottom: 31px;
    padding-bottom: 1.9375rem;
  }
}

.form__item::after{
  position: absolute;
  content: "";
  bottom: -3px;
  bottom: -0.1875rem;
  left: 0;
  width: 99px;
  width: 6.1875rem;
  height: 3px;
  height: 0.1875rem;
  background-color: var(--main-color);
}

@media screen and (min-width: 768px) {
  .form__item::after{
    width: 326px;
    width: 20.375rem;
  }
}

.form__item-head{
  font-family: var(--serif);
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .form__item-head{
    width: 360px;
    width: 22.5rem;
    justify-content: flex-start;
    gap: 20px;
    gap: 1.25rem;
    font-size: 20px;
    font-size: 1.25rem;
    margin-top: 11px;
    margin-top: 0.6875rem;
  }
}

.form__item-head .require{
  background-color: var(--main-color);
  color: #fff;
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 700;
  border-radius: 999px;
  display: grid;
  place-items: center;
  width: 49px;
  width: 3.0625rem;
  height: 25px;
  height: 1.5625rem;
}

.form__item-head .optional{
  background-color: #8D8D8D;
  color: #fff;
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 700;
  border-radius: 999px;
  display: grid;
  place-items: center;
  width: 49px;
  width: 3.0625rem;
  height: 25px;
  height: 1.5625rem;
}

@media screen and (min-width: 768px) {
  .form__item-head .require{
    font-size: 18px;
    font-size: 1.125rem;
    width: 79px;
    width: 4.9375rem;
    height: 39px;
    height: 2.4375rem;
    
  }

  .form__item-head .optional{
    font-size: 18px;
    font-size: 1.125rem;
    width: 79px;
    width: 4.9375rem;
    height: 39px;
    height: 2.4375rem;
  }
}

.form__item-body{
  width: 100%;
}

@media screen and (min-width: 768px) {
  .form__item-body{
    width: calc( 100% - 360px);
    width: calc( 100% - 22.5rem);
  }
}

.form__item-body input{
  width: 100%;
  background-color: #F1F1F1;
  border-radius: 7px;
  padding: 14px 20px;
  padding: 0.875rem 1.25rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: calc( 19 / 14);
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {
  .form__item-body input{
    border-radius: 7px;
    padding: 20px 27px;
    padding: 0.875rem 1.6875rem;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: calc( 27 / 20);
  }
}

.form__item-body input.kana{
  margin-top: 12px;
  margin-top: 0.75rem;
}

@media screen and (min-width: 768px) {
  .form__item-body input.kana{
   margin-top: 20px;
   margin-top: 1.25rem;
  }
}

.form__item-body .confirm__text{
  margin-top: 15px;
  margin-top: 0.9375rem;
  margin-bottom: 7px;
  margin-bottom: 0.4375rem;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: calc( 17 / 12);
  letter-spacing: 0.1em;
  font-weight: 700;
  font-family: var(--serif);
}

@media screen and (min-width: 768px) {
  .form__item-body .confirm__text{
    margin-top: 36px;
    margin-top: 2.25rem;
    margin-bottom: 10px;
    margin-bottom: 0.625rem;
    font-size: 16px;
    font-size: 1rem;
    line-height: calc( 23 / 16);
  }
}

.form__item-body select{
  width: 187px;
  width: 11.6875rem;
  background-color: #F1F1F1;
  border-radius: 7px;
  padding: 14px 20px;
  padding: 0.875rem 1.25rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: calc( 19 / 14);
  background-image: url('../images/common/select_arrow.svg');
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 7px 4px;
}

@media screen and (min-width: 768px) {
  .form__item-body select{
    width: 269px;
    width: 16.8125rem;
    padding: 20px 27px;
    padding: 0.875rem 1.6875rem;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: calc( 27 / 20);
    background-position: right 30px center;
    background-position: right 1.875rem center;
    background-size: 12px 6px;
    background-size: 0.75rem 0.375rem;
  }
  .form__item-body select option{
    
    font-size: 20px;
    font-size: 1.25rem;
    line-height: calc( 27 / 20);
  }
}

.form__item-body textarea{
  width: 100%;
  height: 188px;
  height: 11.75rem;
  background-color: #F1F1F1;
  border-radius: 7px;
  padding: 14px 20px;
  padding: 0.875rem 1.25rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: calc( 19 / 14);
}

@media screen and (min-width: 768px) {
    
  .form__item-body textarea{
    height: 144px;
    height: 9rem;
    padding: 20px 27px;
    padding: 0.875rem 1.6875rem;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: calc( 30 / 20);
  }
}

.form__check{
  text-align: center;
}

.form__check label{
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.1em;
  gap: 15px;
  gap: 0.9375rem;
  margin-top: 78px;
  margin-top: 4.875rem;
  font-family: var(--serif);
  font-weight: 700;
}


@media screen and (min-width: 768px) {
  .form__check label{
    letter-spacing: 0.1em;
    gap: 20px;
    gap: 1.25rem;
    margin-top: 93px;
    margin-top: 5.8125rem;
    font-size: 20px;
    font-size: 1.25rem;
  }
  
}


.form__check input[type="checkbox"]{
  display: inline-block;
  appearance: auto;
  border: 1px solid #d7d7d7;
  border-radius: 7px;
  appearance: auto;
  width: 21px;
  height: 21px;
}


@media screen and (min-width: 768px) {
  .form__check input[type="checkbox"]{
    width: 26px;
    height: 26px;
  }
}
  
input[type="submit"]{
  margin-top: 66px;
  display: grid;
  place-items: center;
  width: 210px;
  width: 13.125rem;
  height: 52px;
  height: 3.25rem;
  background-color: #D9BA25;
  margin-inline: auto;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-size: 0.875rem;
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0.07em;
}


@media screen and (min-width: 768px) {
  input[type="submit"]{
    margin-top: 47px;
    margin-top: 2.9375rem;
    width: 336px;
    width: 21rem;
    height: 64px;
    height: 4rem;
    font-size: 18rem;
    font-size: 1.125rem;
  } 
}

.form__check .wpcf7-list-item{
  margin-left: 0;
}
.wpcf7-spinner{
  display: block;
  margin-inline: auto;
}



/******************************************************************
入塾案内のスタイル
******************************************************************/

.guidance {
  padding-top: 60px;
  padding-top: 3.75rem;
  padding-bottom: 116px;
  padding-bottom: 7.25rem;
}


@media screen and (min-width: 768px) {
  .guidance {
    padding-top: 106px;
    padding-top: 6.625rem;
    padding-bottom: 250px;
    padding-bottom: 15.625rem;
  }
}


.guidance__summary-items {
  margin-top: 45px;
  margin-top: 2.8125rem;
  display: flex;
  flex-direction: column;
  gap: 32px;
  gap: 2rem;
}

@media screen and (min-width: 768px) {
  .guidance__summary-items {
    margin-top: 107px;
    margin-top: 6.6875rem;  
    gap: 48px;
    gap: 3rem;
  }
}


.guidance__summary-item {
  display: flex;
  flex-direction: column;
  gap: 18px;
  gap: 1.125rem;
  padding-bottom: 32px;
  padding-bottom: 2rem;
  border-bottom: 3px solid #E1E1E1;
  border-bottom: 0.1875rem solid #E1E1E1;
  position: relative;
}


@media screen and (min-width: 768px) {
  .guidance__summary-item {
    flex-direction: row;
    gap: 0;
    padding-bottom: 32px;
    padding-bottom: 2rem;
    border-bottom: 3px solid #E1E1E1;
    border-bottom: 0.1875rem solid #E1E1E1;
    position: relative;
  }
}

.guidance__summary-item::after {
  position: absolute;
  content: "";
  bottom: -3px;
  bottom: -0.1875rem;
  left: 0;
  width: 99px;
  width: 6.1875rem;
  height: 3px;
  height: 0.1875rem;
  background-color: var(--main-color);
}

@media screen and (min-width: 768px) {
  .guidance__summary-item::after {
    width: 326px;
    width: 20.375rem;
  }
}

.guidance__summary-head {
  font-family: var(--serif);
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}


@media screen and (min-width: 768px) {
  .guidance__summary-head {
    font-size: 20px;
    font-size: 1.25rem;
    width: 360px;
    width: 22.5rem;
  }
}

.guidance__summary-body {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: calc( 25 / 12);
  letter-spacing: 0.1em;
}


@media screen and (min-width: 768px) {
  .guidance__summary-body {
    font-size: 18px;
    font-size: 1.125rem;
    width: calc( 100% - 360px);
    width: calc( 100% - 22.5rem);
  }
  
}

.guidance__summary-body p:not(:first-child){
  margin-top: 12px;
  margin-top: 0.75rem;
}

@media screen and (min-width: 768px) {
  .guidance__summary-body p:not(:first-child){
    margin-top: 23px;
    margin-top: 1.4375rem;
  }
}


.u-desktop {

}

.guidance__form {
  margin-top: 76px;
  margin-top: 4.75rem;
}

@media screen and (min-width: 768px) {
  .guidance__form {
    margin-top: 181px;
    margin-top: 11.3125rem;
  }
}

.guidance__form-title{
  margin-bottom: 43px;
  margin-bottom: 2.6875rem;
}

@media screen and (min-width: 768px) {
  .guidance__form-title{
    margin-bottom: 108px;
    margin-bottom: 6.75rem;
  }
}


/******************************************************************
会社案内ページのスタイル
******************************************************************/
.juku-members{
  padding-top: 143px;
  padding-top: 8.9375rem;
  padding-bottom: 132px;
  padding-bottom: 8.25rem;
}

@media screen and (min-width: 768px) {
  .juku-members{
    padding-top: 160px;
    padding-top: 10rem;
    padding-bottom: 200px;
    padding-bottom:  12.5rem;
  }
  
}


.juku-members__top {
  position: relative;
  width: 100%;
}

.juku-members__copy {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.07em;
  line-height: calc( 23 / 14);
  padding: 17px;
  padding: 1.0625rem;
  position: absolute;
  top: 14px;
  top: 0.875rem;
  left: -20px;
  width: 330px;
  width: 20.625rem;
  translate: 0 -100%;
}

.juku-members__copy p{
  position: relative;
}
.juku-members__copy::before{
  position: absolute;
  width: 100vw;
  height: 100%;
  content: "";
  background-color: #D9BA25;
  top: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
.juku-members__copy {
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 0.07em;
  line-height: calc( 35 / 24);
  padding-left:0;
  padding-top: 58px;
  padding-top: 3.625rem;
  padding-right: 43px;
  padding-right: 2.6875rem;
  padding-bottom: 84px;
  padding-bottom: 5.25rem;
  top: -85px;
  top: -5.3125rem;
  left: 0;
  width: 610px;
  width: 38.125rem;
  translate: 0 0;
}
}

.juku-members__img {
  width: 350px;
  width: 21.875rem;
  height: auto;
  aspect-ratio: 350 / 190;
  margin-inline: auto;
}


@media screen and (min-width: 768px) {
  .juku-members__img {
    width: 1100px;
    width: 68.75rem;
    aspect-ratio: 1100 / 597;
    margin-inline: auto;
  }
}


.juku-members__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.juku-members__name {
  padding: 20px 48px;
  padding: 1.25rem 3rem;
  font-family: var(--serif);
  color: #fff;
  background-color: #000;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 700;
  letter-spacing: 0.07em;
  position: absolute;
  bottom: 14px;
  bottom: 0.875rem;
  right: -20px;
  translate: 0 100%;
}



@media screen and (min-width: 768px) {
  .juku-members__name {
    padding: 44px 107px;
    padding: 2.75rem 6.6875rem;
    bottom: -94px;
    bottom: -5.875rem;
    right: 0;
    translate: 0 0;
  }
  
}


.juku-members__name::after {
  display: none;
}

.juku-members__name .company {
  font-size: 21px;
  font-size: 1.3125rem;
  line-height: calc( 30 / 21);
}


@media screen and (min-width: 768px) {
  .juku-members__name .company {
    font-size: 40px;
    font-size: 2.5rem;
    line-height: calc( 57 / 40);
  }
}

.juku-members__name .establishment {
  line-height: calc( 23 / 16);
}

@media screen and (min-width: 768px) {
  .juku-members__name .establishment {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: calc( 44 / 30);
  }
  
}

.juku-members__contents {
  margin-top: 136px;
  margin-top: 8.5rem;
  display: flex;
  flex-direction: column;
  gap: 92px;
  gap: 5.75rem;
}

@media screen and (min-width: 768px) {
  .juku-members__contents {
    margin-top: 187px;
    margin-top: 11.6875rem;
    gap: 62px;
    gap: 3.875rem;
  }
}

.juku-members__content {
 
}

.juku-members__heading {

}

.juku-members__text {
  margin-top: 28px;
  margin-top: 1.75rem;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: calc( 27 / 12);
  letter-spacing: 0.07em;
  font-weight: 400;
}

@media screen and (min-width: 768px) {
  .juku-members__text {
    margin-top: 46px;
    margin-top: 2.875rem;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: calc( 35 / 18);
    letter-spacing: 0.1em;
  }
}

.juku-members__summary {
  margin-top: 128px;
  margin-top: 8rem;
}

@media screen and (min-width: 768px) {
  .juku-members__summary {
    margin-top: 146px;
    margin-top: 9.125rem;
  }
}

.juku-members__summary-items{
  margin-top: 54px;
  margin-top: 3.375rem;
  display: flex;
  flex-direction: column;
  gap: 23px;
  gap: 1.4375rem;
}


@media screen and (min-width: 768px) {
  .juku-members__summary-items{
    margin-top: 66px;
    margin-top: 4.125rem;
    gap: 35px;
    gap: 2.1875rem;
  }
  
}


.juku-members__summary-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  gap: 0.75rem;
  padding-bottom: 23px;
  padding-bottom: 1.4375rem;
  border-bottom: 3px solid #E1E1E1;
  border-bottom: 0.1875rem solid #E1E1E1;
  position: relative;
}


@media screen and (min-width: 768px) {
  .juku-members__summary-item {
    flex-direction: row;
    align-items: center;
    gap: 0;
    padding-bottom: 30px;
    padding-bottom: 1.875rem;
  }
}

.juku-members__summary-item::after {
  position: absolute;
  content: "";
  bottom: -3px;
  bottom: -0.1875rem;
  left: 0;
  width: 99px;
  width: 6.1875rem;
  height: 3px;
  height: 0.1875rem;
  background-color: var(--main-color);
}

@media screen and (min-width: 768px) {
  .juku-members__summary-item::after {
    width: 326px;
    width: 20.375rem;
  }
}

.juku-members__summary-head {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: var(--serif);
  letter-spacing: 0.1em;
  line-height: calc( 20 / 14);
}

@media screen and (min-width: 768px) {
  .juku-members__summary-head {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: calc( 30 / 20);
    width: 360px;
    width: 22.5rem;
  }
}

.juku-members__summary-body {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: calc( 16 / 12);
  letter-spacing: 0.1em;
  font-weight: 400;
}

@media screen and (min-width: 768px) {
  .juku-members__summary-body {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: calc( 30 / 18);
    width: calc( 100% - 360px);
  }
}

.juku-members .jukusei__link {
  margin-top: 55px;
  margin-top: 3.4375rem;
  margin-inline: auto;
  width: 304px;
  width: 19rem;
  display: block;
}

.js-scrollable img {
  max-width: 750px;
  width: initial;
}
@media screen and (min-width: 768px) {
  .juku-members .jukusei__link {
    margin-top: 67px;
    margin-top: 4.1875rem;
  }
  .js-scrollable img {
    max-width: 100%;
    width: 100%;
  }
}

/******************************************************************
イベント関連のスタイル
******************************************************************/
.event-iframe {
    display: block;
    text-align: center;
    margin: 0 auto;
    justify-content: center;
    max-width: 540px;
}