@charset "UTF-8";
/*==========================================
コンポーネントファイル
===========================================*/
/*
# パンくずリスト
------------------------*/
div .bread {
  font-size: var(--font-size-14);
  position: relative;
  z-index: 100;
  padding: 5px 0;
}
div .bread .breadcrumbs {
  width: 1080px;
  margin: 0 auto;
  gap: 10px 20px;
}
div .bread li {
  color: var(--primary-color);
  position: relative;
}
div .bread li::after {
  content: " > ";
  color: var(--body-font-color);
  position: absolute;
  inset: 0 -15px 0 auto;
  margin: auto 0;
}
div .bread li:last-child::after {
  content: "";
}
div .bread li a {
  color: var(--body-font-color);
}
div .bread li a:hover {
  text-decoration: underline;
}

/*
# 一覧ぺージ用カテゴリ(セレクトボックス)
------------------------*/
.global-select {
  width: 300px;
  margin: 0 0 45px auto;
}
.global-select select {
  padding: 15px 37px 15px 15px;
}

/*
# .c-contact__list
------------------------*/
.c-contact__list {
  gap: 20px;
}
.c-contact__list .contact__item-button {
  width: 270px;
  border-radius: 34px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
}
.c-contact__list .contact__item-button.tel__button {
  background: var(--color-red);
  line-height: 1;
}
.c-contact__list .contact__item-button.tel__button .tel__num {
  background: url(../../img/common/tel_ic.png) left center no-repeat;
  padding-left: 20px;
  font-size: var(--font-size-26);
}
.c-contact__list .contact__item-button.mail__button {
  background: url(../../img/common/mail_ic.png) left 25px center no-repeat, var(--primary-color);
  padding: 0 5px 0 30px;
  line-height: 0.9;
  font-size: var(--font-size-16);
}

/*==========================================
テーブルレイアウト
===========================================*/
.com-table tr {
  display: flex;
  padding: 20px 0;
}
.com-table tr th {
  padding: 15px 10px;
  width: 180px;
  vertical-align: top;
}
.com-table tr td {
  width: calc(100% - 180px);
  padding: 15px 20px;
}
.com-table tr td a[href^="mailto:"] {
  text-decoration: underline;
}
.com-table tr td .tel__text {
  display: block;
  line-height: 1.3;
}

/*==========================================
共通ブロック・要素
===========================================*/
.com-content p {
  margin-bottom: 45px;
}
.com-content p:last-child {
  margin-bottom: 0;
}

.com-text {
  line-height: 2.3;
  letter-spacing: var(--body-letter-spacing);
}

#g-map h4 {
  font-size: var(--font-size-18);
  font-weight: var(--font-weight-bold);
  margin-bottom: 5px;
}
#g-map h4 span {
  padding-left: 20px;
}
#g-map .map {
  height: 400px;
  /*==========================================
  iframe レスポンシブ　アスペクト比を保ちながら縦横を伸縮
  ===========================================*/
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}
#g-map .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.com-button {
  border-radius: 35px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: var(--font-size-20);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.12em;
  background: var(--primary-color);
  height: 70px;
}
.com-button::before {
  right: 4.6296%;
}
.com-button:hover::before {
  right: 2%;
}

/*
# テニスコート
------------------------*/
.court__outer-style {
  position: relative;
  z-index: 1;
  height: 844px;
}
.court__outer-style::before, .court__outer-style::after {
  position: absolute;
  content: "";
}
.court__outer-style::before {
  width: 100%;
  height: 725px;
  border: 10px solid var(--color-white);
  inset: 0;
  margin: auto;
  z-index: -3;
}
.court__outer-style::after {
  width: 10px;
  height: 844px;
  inset: 0;
  margin: 0 auto;
  z-index: -2;
  background: var(--color-white);
}
.court__outer-style.court-color--green::before {
  background: var(--color-green);
}
.court__outer-style.court-color--blue::before {
  background: var(--color-blue);
}
.court__outer-style.court-color--orange::before {
  background: var(--color-orange);
}

.court__line-center {
  position: relative;
  z-index: 1;
  height: 100%;
}
.court__line-center::before {
  position: absolute;
  content: "";
  width: 720px;
  height: 10px;
  margin: auto;
  inset: 0;
  background: var(--color-white);
  z-index: -1;
}

.court__line--x {
  position: relative;
  height: 100%;
  z-index: 1;
}
.court__line--x::before, .court__line--x::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 10px;
  background: var(--color-white);
  left: 0;
  right: 0;
  z-index: -2;
}
.court__line--x::before {
  top: 135px;
}
.court__line--x::after {
  bottom: 135px;
}

.court__line--y {
  position: relative;
  z-index: 1;
  height: 100%;
}
.court__line--y::before, .court__line--y::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 570px;
  background: var(--color-white);
  z-index: -1;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.court__line--y::before {
  left: 275px;
}
.court__line--y::after {
  right: 275px;
}

/*==========================================
共通タイトル
===========================================*/
h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: var(--body-letter-spacing);
}

.section-title {
  text-align: center;
  margin-bottom: 80px;
}
.section-title .title-ja {
  font-size: var(--font-size-48);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--body-letter-spacing);
}
.section-title .title-ja.bg-pattern {
  padding: 0 30px;
}
.section-title .title-ja em {
  color: var(--primary-color);
}
.section-title.align-left {
  text-align: left;
}

.headline-title {
  padding-bottom: 10px;
  margin-bottom: 30px;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-30);
  color: var(--primary-color);
  border-bottom: 1px solid;
}

/*==========================================
header
===========================================*/
#header {
  padding: 0 2.0833% 0 1.8229%;
  position: absolute;
  inset: 0 0 auto;
  z-index: 1001;
  width: 100%;
}
#header .header__logo {
  width: 15.5135%;
  display: flex;
  align-items: center;
}
#header .header__right {
  width: 890px;
}
#header .header__contact-list {
  justify-content: flex-end;
  margin-top: -1px;
}
#header .header__contact-list .contact__item-button {
  border-radius: 0 0 30px 30px;
  border: 1px solid var(--color-white);
}
#header .header__nav {
  background: var(--color-white);
  border-radius: 30px;
  margin: 15px 0 0 auto;
  padding: 15px 25px;
  width: -moz-fit-content;
  width: fit-content;
}
#header .header__nav-list {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  font-size: var(--font-size-14);
  gap: 15px 25px;
  font-weight: var(--font-weight-bold);
}
#header .header__nav-link {
  position: relative;
  z-index: 1;
}
#header .header__nav-link::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 5px;
  background: var(--primary-color-light);
  inset: auto 0 0;
  z-index: -1;
  opacity: 0;
}
#header .header__nav-link:hover {
  color: var(--primary-color);
}
#header .header__nav-link:hover::before {
  opacity: 1;
}

/*==========================================
mv
===========================================*/
#top-mv {
  height: clamp(700px, 48.43669vw, 930px);
  background: url(../../img/top/mv/mv_ball.png) right 36.5729% center/17.34375% no-repeat, url(../../img/top/mv/mv_base.jpg) center/cover no-repeat;
  position: relative;
}
#top-mv .mv__text {
  width: 39.3229%;
  position: absolute;
  inset: auto auto 21.5053% 14.8958%;
}
#top-mv .mv__text-catch {
  width: 78.543%;
}
#top-mv .mv__text-en {
  width: 45.298%;
  margin: -8% 0 0 auto;
  text-align: right;
}

/*==========================================
footer
===========================================*/
#footer {
  background: url(../../img/common/ft_bg.jpg) center/cover no-repeat;
  padding-top: 100px;
}
#footer .footer__inbox {
  background: rgba(var(--color-white-rgb), 0.9);
  border-radius: 90px 90px 0 0;
  padding: 60px 100px;
  text-align: center;
}
#footer .footer__content {
  width: 575px;
}
#footer .footer__logo {
  display: inline-block;
  margin-bottom: 30px;
}
#footer .footer__contact-list {
  justify-content: center;
  margin-bottom: 40px;
}
#footer .footer__nav {
  width: 465px;
}
#footer .footer__nav-list {
  gap: 10px 20px;
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-bold);
}
#footer .footer__nav-link:hover {
  text-decoration: underline;
}
#footer .footer__calendar {
  width: 455px;
}
#footer .footer__calendar-title {
  font-size: var(--font-size-18);
  font-weight: var(--font-weight-bold);
  margin-bottom: 15px;
}
#footer .footer__calendar-content {
  margin-bottom: 20px;
}
#footer .footer__calendar-links {
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
  display: block;
  text-align: right;
  padding-right: 20px;
}
#footer .footer__calendar-links::before {
  color: var(--primary-color);
  inset: 0 0 0 auto;
  content: "\f138";
}

#copyright {
  word-break: normal;
  text-align: center;
  margin-top: 40px;
  color: var(--primary-color);
}
#copyright small {
  font-size: var(--font-size-11);
}
#copyright a {
  color: var(--primary-color);
  text-decoration: underline;
}

/*==========================================
sv
===========================================*/
.lower-sv {
  height: clamp(530px, 36.458vw, 700px);
  background: url(../../img/top/mv/mv_ball.png) left 33.166% bottom 11.4285%/7% no-repeat, url(../../img/sv/sv_base.jpg) center/cover no-repeat;
  position: relative;
}
.lower-sv .sv__text {
  position: absolute;
  inset: auto auto 25.7142% 10.67708%;
}
.lower-sv .sv__text .sv__text-title {
  display: block;
  font-size: clamp(3.7rem, 2.85vw, 5.4rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  letter-spacing: var(--body-letter-spacing);
  margin-bottom: 20px;
}
.lower-sv .sv__text .sv__text-en {
  width: clamp(210px, 17.288vw, 342px);
}
.lower-sv .sv__img {
  width: 43.4895%;
  height: 61.4285%;
  border-radius: 20px;
  inset: auto 2.0833% 10% auto;
  position: absolute;
}

#coach-sv .sv__img {
  background: url(../../img/sv/coach-sv_img.jpg) center/cover no-repeat;
}

#about-sv .sv__img {
  background: url(../../img/sv/about-sv_img.jpg) center/cover no-repeat;
}

#goods-sv .sv__img {
  background: url(../../img/sv/goods-sv_img.jpg) center/cover no-repeat;
}

#voice-sv .sv__img {
  background: url(../../img/sv/voice-sv_img.jpg) center/cover no-repeat;
}

#news-sv .sv__img {
  background: url(../../img/sv/news-sv_img.jpg) center/cover no-repeat;
}

#contact-sv .sv__img {
  background: url(../../img/sv/contact-sv_img.jpg) center/cover no-repeat;
}

#complete-sv .sv__img {
  background: url(../../img/sv/complete-sv_img.jpg) center/cover no-repeat;
}

#privacy-sv .sv__img {
  background: url(../../img/sv/privacy-sv_img.jpg) center/cover no-repeat;
}

#site-sv .sv__img {
  background: url(../../img/sv/site-sv_img.jpg) center/cover no-repeat;
}

#e404-sv .sv__img {
  background: url(../../img/sv/e404-sv_img.jpg) center/cover no-repeat;
}

/*==========================================
top
===========================================*/
/*
# top-about
------------------------*/
#top-about {
  position: relative;
}
#top-about .about__title {
  position: relative;
  z-index: 1;
}
#top-about .about__title .title-en {
  position: absolute;
  inset: -36px 15px auto auto;
}
#top-about .about__img {
  position: absolute;
  inset: 150px 4.1666% auto auto;
  width: 35.9375%;
}
#top-about .about__content {
  width: 740px;
}
#top-about .about__content .about__text {
  width: 670px;
  position: relative;
  z-index: 1;
  font-size: var(--font-size-18);
}
#top-about .about__content .about__button-list {
  width: 540px;
  margin-top: 75px;
}
#top-about .about__content .about__button-list .about__button-item {
  margin-bottom: 20px;
}
#top-about .about__content .about__button-list .about__button-item:last-child {
  margin-bottom: 0;
}

/*
# top-features
------------------------*/
#top-features .features__title {
  position: relative;
}
#top-features .features__title .title-en {
  position: absolute;
  inset: -29px -244px auto 0;
}
#top-features .features__list {
  gap: 30px;
}
#top-features .features__list .features__card {
  width: 340px;
  border-radius: 88px 88px 0 0;
  position: relative;
}
#top-features .features__list .features__card::before {
  position: absolute;
  content: "";
  width: 195px;
  height: 82px;
  inset: -50px 0 auto;
  margin: 0 auto;
  background: url(../../img/top/features-item_deco.png) top center no-repeat;
}
#top-features .features__list .features__card-img img {
  border: 4px solid var(--primary-color);
  border-radius: 88px 88px 0 0;
}
#top-features .features__list .features__card-inner {
  padding: 20px 15px;
  color: var(--color-white);
}
#top-features .features__list .features__card-title {
  text-align: center;
  font-size: var(--font-size-20);
  font-weight: var(--font-weight-bold);
  background: url(../../img/top/features-item-ttl_bdr.png) bottom center no-repeat;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
#top-features .features__list .features__card-title span {
  color: var(--color-yellow);
}
#top-features .features__list .features__card-text {
  font-size: var(--font-size-16);
}

/*
# top-links
------------------------*/
#top-links {
  background: url(../../img/top/links_bg.png) center/cover no-repeat;
}
#top-links .links__court {
  margin-bottom: 20px;
}
#top-links .links__court:last-child {
  margin-bottom: 0;
}
#top-links .court__inner {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 100px;
  height: 100%;
}
#top-links .court__inner-content {
  width: 515px;
  min-height: 435px;
}
#top-links .court__inner .links__title {
  margin-bottom: 20px;
}
#top-links .court__inner .links__title .title-ja {
  font-size: var(--font-size-38);
}
#top-links .court__inner .links__text-wrap {
  padding: 15px 25px;
  border-radius: 16px;
  font-size: var(--font-size-16);
}
#top-links .court__inner .links__img {
  position: absolute;
  height: 435px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  display: flex;
  align-items: center;
}
#top-links .court__inner .links__img img {
  border-radius: 20px;
}
#top-links .court__inner .links__img::before {
  position: absolute;
  content: "";
}
#top-links .court__inner .links__button {
  width: 345px;
  margin-top: 25px;
}
#top-links .links__court:nth-child(odd) .links__img {
  right: 100px;
}
#top-links .links__court:nth-child(even) .court__inner-content {
  margin-left: auto;
}
#top-links .links__court:nth-child(even) .links__img {
  left: 100px;
}
#top-links .links__court.court-color--green .links__text-wrap {
  background: var(--color-green-light);
}
#top-links .links__court.court-color--green .links__img::before {
  width: 208px;
  height: 304px;
  background: url(../../img/top/links-goods_ill.png) center/100% no-repeat;
  inset: auto -125px -85px auto;
}
#top-links .links__court.court-color--blue .links__text-wrap {
  background: var(--color-blue-light);
}
#top-links .links__court.court-color--blue .links__img::before {
  width: 173px;
  height: 173px;
  background: url(../../img/top/links-voice_ill.png) center/100% no-repeat;
  inset: 25px auto auto -135px;
}
#top-links .links__court.court-color--orange .links__text-wrap {
  background: var(--color-orange-light);
}
#top-links .links__court.court-color--orange .links__img::before {
  width: 246px;
  height: 441px;
  background: url(../../img/top/links-movie_ill.png) center/100% no-repeat;
  inset: auto -210px -150px auto;
}

/*
# top-profile
------------------------*/
#top-profile .profile__inbox {
  position: relative;
  z-index: 1;
}
#top-profile .profile__inbox::before {
  position: absolute;
  content: "";
  inset: auto -200px -80px auto;
  width: 328px;
  height: 156px;
  background: url(../../img/top/profile_ill.png) center/100% no-repeat;
  z-index: -1;
}
#top-profile .profile__title {
  position: relative;
}
#top-profile .profile__title .title-en {
  position: absolute;
  inset: -50px -250px auto 0;
}
#top-profile .profile__table-item {
  margin-bottom: 20px;
}
#top-profile .profile__table-item:last-child {
  margin-bottom: 0;
}
#top-profile .profile__table-item th,
#top-profile .profile__table-item td {
  padding: 10px;
  font-weight: var(--font-weight-medium);
}
#top-profile .profile__table-item th {
  width: 148px;
  background: #ffe1ce;
  text-align: center;
}
#top-profile .profile__table-item td {
  width: calc(100% - 148px);
  padding-left: 30px;
  background: var(--color-white);
}
#top-profile .profile__table-item td .tel__text {
  filter: brightness(0.1);
  display: inline-block;
  line-height: 1;
  margin-left: 15px;
}

/*
# top-news
------------------------*/
#top-news {
  padding: 85px 0;
}
#top-news .news__inbox {
  position: relative;
  min-height: 260px;
}
#top-news .news__title {
  position: relative;
  width: 275px;
}
#top-news .news__title .title-en {
  position: absolute;
  inset: -30px -45px auto auto;
}
#top-news .news__title .title-ja {
  display: block;
  text-align: center;
}
#top-news .news__post-list {
  width: 690px;
}
#top-news .news__post-list .news__post {
  font-size: var(--font-size-16);
  border-bottom: 1px solid var(--primary-color);
}
#top-news .news__post-list .news__post:last-child {
  border-bottom: none;
}
#top-news .news__post-list .news__post:last-child .news__post-link {
  padding-bottom: 0;
}
#top-news .news__post-list .news__post-link {
  padding: 25px 0;
}
#top-news .news__post-list .news__post-link:hover {
  transform: translateX(10px);
}
#top-news .news__post-list .news__post-link:hover .news__post-title {
  text-decoration: underline;
}
#top-news .news__post-list .news__post-date, #top-news .news__post-list .news__post-tags {
  color: var(--primary-color);
}
#top-news .news__post-list .news__post-date {
  width: 95px;
}
#top-news .news__post-list .news__post-tags {
  width: calc(100% - 100px);
}
#top-news .news__post-list .news__post-title {
  width: 100%;
  margin-top: 5px;
}
#top-news .news__button {
  position: absolute;
  inset: auto auto 0 0;
  width: 275px;
}

/*==========================================
coach
===========================================*/
/*
# coach-hope
------------------------*/
#coach-hope {
  padding-bottom: 180px;
}
#coach-hope .hope__inbox {
  position: relative;
}
#coach-hope .hope__img {
  position: absolute;
  inset: 0 -100px auto auto;
  padding: 10px;
}
#coach-hope .hope__img img {
  border-radius: 20px;
}
#coach-hope .hope__img::before, #coach-hope .hope__img::after {
  position: absolute;
  content: "";
}
#coach-hope .hope__img::before {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  border: 1px solid var(--primary-color);
  inset: 0;
  margin: auto;
}
#coach-hope .hope__img::after {
  width: 206px;
  height: 339px;
  background: url(../../img/coach/hope-img_ill.png) center/100% no-repeat;
  inset: auto 10px -230px auto;
}
#coach-hope .hope__content {
  width: 655px;
}
#coach-hope .hope__content .hope__text:nth-of-type(1) {
  font-size: var(--font-size-30);
}
#coach-hope .hope__content .hope__list {
  margin: 15px 0 45px;
}
#coach-hope .hope__content .hope__list li {
  padding-left: 50px;
  margin-bottom: 10px;
}
#coach-hope .hope__content .hope__list li::before {
  position: absolute;
  inset: 0 auto auto 0;
  font-size: var(--font-size-40);
  line-height: 1.1;
}
#coach-hope .hope__content .hope__list li:last-child {
  margin-bottom: 0;
}
#coach-hope .hope__content .hope__list strong {
  font-size: var(--font-size-30);
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
  display: inline;
  position: relative;
  background: linear-gradient(to bottom, transparent 60%, rgba(var(--color-yellow-rgb), 1) 60%);
}
#coach-hope .hope__content .name {
  color: var(--primary-color);
}

/*
# coach-interview
------------------------*/
#coach-interview .interview__item {
  margin-bottom: 90px;
}
#coach-interview .interview__item:last-child {
  margin-bottom: 0;
}
#coach-interview .interview__item-title {
  font-size: var(--font-size-30);
  font-weight: var(--font-weight-bold);
  padding: 7px 10px 7px 85px;
  position: relative;
  border-radius: 7px;
  margin-bottom: 30px;
}
#coach-interview .interview__item-title::before {
  position: absolute;
  content: "";
  width: 65px;
  height: 94px;
  background: url(../../img/coach/interview-ttl_ill.png) center/100% no-repeat;
  inset: -30px auto auto 0;
}
#coach-interview .interview__item .interview__answer-icon {
  width: 210px;
  height: 210px;
  border-radius: 50%;
}
#coach-interview .interview__item .interview__answer-icon img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}
#coach-interview .interview__item .interview__answer-content {
  width: 835px;
  border-radius: 13px;
  background: var(--color-white);
  padding: 30px 20px;
  position: relative;
  font-size: var(--font-size-16);
  box-shadow: 6px 6px var(--primary-color-light);
}
#coach-interview .interview__item .interview__answer-content::before, #coach-interview .interview__item .interview__answer-content::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8.5px 0px 8.5px 14px;
}
#coach-interview .interview__item .interview__answer-content::before {
  border-color: transparent transparent transparent var(--primary-color-light);
  right: -17px;
  top: 100px;
}
#coach-interview .interview__item .interview__answer-content::after {
  border-color: transparent transparent transparent var(--color-white);
  right: -14px;
  top: 95px;
}
#coach-interview .interview__item .interview__answer-content .interview__answer-gallery {
  gap: 20px;
  margin-top: 30px;
}
#coach-interview .interview__item .interview__answer-content .interview__answer-gallery .interview__gallery-item {
  width: 370px;
  height: 235px;
}
#coach-interview .interview__item .interview__answer-content .interview__answer-gallery .interview__gallery-item img {
  border-radius: 14px;
}

/*==========================================
about
===========================================*/
/*
# about-lesson
------------------------*/
#about-lesson .lesson__item {
  padding: 40px 45px 45px;
  border-radius: 25px;
  margin-bottom: 40px;
}
#about-lesson .lesson__item:last-child {
  margin-bottom: 0;
}
#about-lesson .lesson__item:nth-child(odd) {
  background: var(--primary-color-light);
}
#about-lesson .lesson__item:nth-child(even) {
  background: #dcf0d8;
}
#about-lesson .lesson__item-title {
  position: relative;
  padding-left: 60px;
}
#about-lesson .lesson__item-title::before {
  width: 50px;
  height: 50px;
  color: var(--color-white);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-24);
  border-radius: 50%;
  position: absolute;
  inset: 0 auto auto 0;
  background: var(--primary-color);
  line-height: 1;
}
#about-lesson .lesson__item-check {
  background: var(--color-white);
  border-radius: 18px;
  padding: 30px 45px;
  margin-bottom: 30px;
}
#about-lesson .lesson__item-check .lesson__check-item {
  margin-bottom: 10px;
  padding-left: 35px;
  font-size: var(--font-size-20);
  font-weight: var(--font-weight-bold);
  background: url(../../img/about/type-check_ic.png) top 10px left no-repeat;
}
#about-lesson .lesson__item-check .lesson__check-item:last-child {
  margin-bottom: 0;
}

/*
# about-steps
------------------------*/
#about-steps .steps__item {
  margin-bottom: 25px;
}
#about-steps .steps__item:first-child {
  position: relative;
}
#about-steps .steps__item:first-child::before {
  position: absolute;
  content: "";
  width: 191px;
  height: 343px;
  inset: -87px -25px auto auto;
  background: url(../../img/about/step-01_ill.png) center/100% no-repeat;
}
#about-steps .steps__item:last-child {
  margin-bottom: 0;
}
#about-steps .steps__item-title {
  padding: 10px 40px;
  font-size: var(--font-size-30);
  font-weight: var(--font-weight-bold);
}
#about-steps .steps__item-title span {
  color: var(--primary-color);
}
#about-steps .steps__item-inner {
  padding: 30px 45px;
  background: var(--color-white);
}
#about-steps .steps__item .steps__contact-list {
  margin-bottom: 35px;
}
#about-steps .steps__item .steps__inner-content {
  padding: 20px 85px;
  border-radius: 9px;
  margin-bottom: 25px;
}
#about-steps .steps__item .steps__inner-content:last-child {
  margin-bottom: 0;
}
#about-steps .steps__item .steps__inner-content-title {
  width: 250px;
  margin: 0 auto 10px;
  text-align: center;
  color: var(--color-white);
  font-size: var(--font-size-18);
}

/*==========================================
goods
===========================================*/
/*
# goods-archive
------------------------*/
#goods-archive .goods__text {
  text-align: center;
  margin-bottom: 60px;
}
#goods-archive .goods__card {
  padding: 40px 50px;
  margin-bottom: 30px;
  position: relative;
}
#goods-archive .goods__card:last-child {
  margin-bottom: 0;
}
#goods-archive .goods__card-img {
  width: 370px;
  height: 240px;
  border-radius: 14px;
  position: absolute;
  inset: 40px auto auto 50px;
}
#goods-archive .goods__card-img img {
  border-radius: 14px;
}
#goods-archive .goods__card-title {
  font-size: var(--font-size-26);
  margin-bottom: 10px;
}
#goods-archive .goods__card-price {
  font-size: var(--font-size-18);
  color: var(--primary-color);
  margin-bottom: 20px;
  text-align: right;
}
#goods-archive .goods__card-content {
  width: 590px;
  margin-left: auto;
  min-height: 240px;
}

/*==========================================
voice
===========================================*/
/*
# voice-section
------------------------*/
#voice-section .voice__card {
  margin-bottom: 35px;
}
#voice-section .voice__card:last-child {
  margin-bottom: 0;
}
#voice-section .voice__card-icon {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}
#voice-section .voice__card-icon img {
  border-radius: 50%;
}
#voice-section .voice__card-content {
  width: 860px;
  border-radius: 25px;
  padding: 30px 45px 45px;
}
#voice-section .voice__card-meta {
  width: -moz-fit-content;
  width: fit-content;
  padding: 3px 20px;
  color: var(--color-white);
  font-size: var(--font-size-18);
  margin-bottom: 15px;
}
#voice-section .voice__card-meta:has(.voice__meta-age) .voice__meta-gender {
  padding-right: 10px;
  margin-right: 10px;
  position: relative;
}
#voice-section .voice__card-meta:has(.voice__meta-age) .voice__meta-gender::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 16px;
  inset: 0 0 0 auto;
  margin: auto 0;
  background: var(--color-white);
}

/*
# movie-section
------------------------*/
#movie-section .movie__court {
  margin-bottom: 25px;
}
#movie-section .movie__court:last-child {
  margin-bottom: 0;
}
#movie-section .court__inner {
  padding: 85px 0;
}
#movie-section .movie__list {
  width: 1080px;
  margin: 0 auto;
  gap: 45px 24px;
}
#movie-section .movie__list .movie__item {
  width: 528px;
  height: 297px;
}
#movie-section .movie__list .movie__item iframe {
  width: 100%;
  height: 100%;
}

/*==========================================
news
===========================================*/
.column__wrap .column__list .column__post a {
  padding: 45px 0;
}
.column__wrap .column__list .column__post-meta time {
  width: 95px;
}
.column__wrap .column__list .column__post-meta time,
.column__wrap .column__list .column__post-meta .category-label {
  font-size: var(--font-size-14);
}
.column__wrap .column__list .column__post-meta .category-label {
  width: calc(100% - 115px);
  gap: 5px;
}
.column__wrap .column__list .column__post-meta .category-label li {
  padding: 2px 10px;
}
.column__wrap .column__list .column__post-title {
  font-size: var(--font-size-23);
  margin: 10px 0;
}
.column__wrap .column__list .more-btn {
  width: 125px;
  font-size: var(--font-size-14);
  margin: inherit;
  margin-left: auto;
  font-weight: bold;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  box-sizing: border-box;
  padding: 5px 0;
  display: block;
  color: var(--color-white);
  transition: all 0.3s;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) a {
  /*==========================================
  Flexbox
  ===========================================*/
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) .column__post-thumb {
  width: 210px;
  height: 200px;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) .column__post-thumb .img-eff {
  width: 100%;
  height: 100%;
  transition-duration: 0.3s;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) .column__post-meta {
  width: 820px;
}

/*----------------------------------
  詳細ページのカテゴリー表示(タイトル下部)
  ----------------------------------*/
.single__post-meta {
  margin-bottom: 20px;
}
.single__post-meta time {
  font-size: var(--font-size-14);
  width: 95px;
  padding: 3px 0;
}
.single__post-meta .category-label {
  width: calc(100% - 95px);
  font-size: var(--font-size-14);
  gap: 5px;
  margin-left: 10px;
}
.single__post-meta .category-label li a {
  padding: 3px 10px;
}

/*==========================================
  contact
  ===========================================*/
#contact .contact__form {
  width: 980px;
  margin: 0 auto 55px;
}
#contact .contact__form-item .contact__form-label {
  margin-bottom: 20px;
}
#contact .contact__form-item .contact__form-label .required {
  margin-left: 10px;
}
#contact .contact__form-item .contact__form-input .contact__form-list {
  gap: 15px;
}
#contact .contact__form-item.contact__form-privacy .contact__form-label {
  text-align: center;
}
#contact .contact__form-value {
  padding: 20px 15px;
}
#contact .contact__form-select {
  width: 200px;
}
#contact .contact__form-select::after {
  inset: 0 16px 0 auto;
  width: 8px;
  height: 8px;
}
#contact .contact__form-select select {
  padding: 15px 30px 15px 10px;
}
#contact .contact__form #pc01,
#contact .contact__form #pc02 {
  width: 150px;
}
#contact .contact__form #address {
  margin-top: 15px;
}
#contact .contact__form #date1,
#contact .contact__form #date2,
#contact .contact__form #date3 {
  width: 340px;
}
#contact .contact__form textarea {
  height: 260px;
}
#contact .contact__form .upload-item-wrap .thumb {
  width: 200px;
  margin-right: 25px;
}
#contact .contact__form .upload-item-wrap .ancion-btn-wrap {
  width: 130px;
}
#contact .contact__form .upload-item-wrap .ancion-btn-wrap .ancion-btn,
#contact .contact__form .upload-item-wrap .ancion-btn-wrap .upload-button {
  font-size: var(--font-size-13);
}
#contact input[type=button],
#contact input[type=submit],
#contact .contact__submits-wrap button {
  height: 75px;
}
#contact .contact__submits-wrap {
  gap: 35px;
}
#contact .contact__submits-wrap .contact__submits-check {
  width: 304px;
}
#contact .contact__submits-wrap .contact__submits-back {
  width: 270px;
}
#contact .contact__submits-wrap .contact__submits-send {
  width: 240px;
}

/*==========================================
  privacy
  ===========================================*/
#privacy .privacy__content {
  margin-bottom: 70px;
}
#privacy .privacy__content:last-child {
  margin-bottom: 0;
}

/*==========================================
  site
  ===========================================*/
#site-map .sitemap__item-link {
  padding: 2% 0 2% 3%;
}

/*==========================================
  プライバシーポリシー(LPフレーム時)
  ===========================================*/