@charset "UTF-8";
/*==========================================
PC共通
===========================================*/
html {
  font-size: 62.5%;
}

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

.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title span {
  font-weight: var(--font-weight-regular);
}
.section-title .title-en {
  display: inline-block;
  line-height: 1.1;
  letter-spacing: 0;
  background: linear-gradient(0deg, var(--gradation-color-end) 10%, var(--gradation-color-start) 89%);
  background: -webkit-linear-gradient(90deg, var(--gradation-color-end) 10%, var(--gradation-color-start) 89%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 10rem;
  font-family: var(--font-family-secondary);
}
.section-title .title-ja {
  display: block;
  line-height: 1.6;
  font-size: var(--font-size-36);
}
.section-title .title-ja small {
  display: block;
  font-size: var(--font-size-24);
}

.headline-title {
  text-align: left;
  font-size: var(--font-size-26);
  padding-left: 25px;
  position: relative;
  margin-bottom: 15px;
}
.headline-title::before {
  position: absolute;
  content: "";
  inset: 21px auto auto 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--background-color-gradation);
}

.sub-title {
  text-align: center;
  font-size: var(--font-size-24);
  margin-bottom: 20px;
}

/*==========================================
共通ブロック・要素
===========================================*/
.com-cont .section-title {
  text-align: left;
}
.com-cont p {
  margin-bottom: 30px;
  line-height: var(--body-line-height);
  letter-spacing: var(--body-letter-spacing);
}
.com-cont p:last-child {
  margin-bottom: 0;
}

#g-map {
  /*==========================================
  100% から%を算出
  ===========================================*/
  width: 83.3333333333%;
  margin: 0 auto;
}
#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: 450px;
  /*==========================================
  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;
  border-radius: 37px;
}

.com-tel {
  line-height: 1.2;
  width: -moz-fit-content;
  width: fit-content;
}
.com-tel .tel__num {
  font-size: var(--font-size-27);
}
.com-tel .tel__num small {
  font-size: var(--font-size-17);
}
.com-tel .tel__txt {
  display: block;
}

.com-button--gradation {
  padding: 15px 0 0 20px;
  z-index: 1;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
}
.com-button--gradation::before {
  width: 50px;
  height: 50px;
  background: var(--background-color-gradation);
  border-radius: 50%;
  z-index: -1;
  position: absolute;
  content: "";
  opacity: 0.5;
  inset: 0 auto auto 0;
  transition: transform 0.3s ease;
}
.com-button--gradation:hover {
  opacity: 1;
}
.com-button--gradation:hover::before {
  transform: translateX(100%);
  left: auto;
}

.com-button--rounded {
  border-radius: 30px;
  text-align: center;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
}
.com-button--rounded:hover {
  transform: scale(0.95);
  background: var(--body-font-color);
  color: var(--color-white);
}
.com-button--rounded:hover .has-arr::before, .com-button--rounded:hover .has-arr::after {
  background: var(--color-white);
}

.has-arr {
  padding-right: 35px;
  position: relative;
  display: inline-block;
}
.has-arr::before, .has-arr::after {
  position: absolute;
  content: "";
  background: var(--body-font-color);
  transition: all 0.3s;
}
.has-arr::before {
  width: 27px;
  height: 1px;
  inset: auto 0 11px auto;
}
.has-arr::after {
  height: 9px;
  width: 1px;
  inset: auto 2px 10px auto;
  transform: rotate(-45deg);
}
.has-arr:hover::before {
  right: -10px;
}
.has-arr:hover::after {
  right: -8px;
}

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

/*==========================================
パンくずリスト
===========================================*/
div .bread {
  font-size: var(--font-size-14);
  position: relative;
  z-index: 1;
}
div .bread .breadcrumbs {
  position: absolute;
  width: 1080px;
  margin: 0 auto;
  inset: 10px auto auto 0;
  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;
}

/*==========================================
header
===========================================*/
#header {
  position: absolute;
  inset: 0 0 auto;
  width: 100%;
  padding: 10px 0.7812% 0 1.5625%;
  z-index: 1001;
}
#header .header__logo {
  line-height: 1;
}
#header .header__right {
  width: -moz-fit-content;
  width: fit-content;
}
#header .com-tel {
  margin-left: auto;
}

/*==========================================
nav
===========================================*/
#nav {
  margin-top: 15px;
}
#nav .nav__list {
  gap: 15px 25px;
}
#nav .nav__item a {
  /*==========================================
  hover時に中央から外側に向けてのボーダー
  ===========================================*/
  padding-bottom: 3px;
  display: block;
  position: relative;
}
#nav .nav__item a:before {
  content: "";
  width: 0;
  left: 50%;
  bottom: 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--body-font-color);
  position: absolute;
  display: block;
}
#nav .nav__item a:after {
  content: "";
  width: 0;
  right: 50%;
  bottom: 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--body-font-color);
  position: absolute;
  display: block;
}
#nav .nav__item a:hover {
  color: var(--body-font-color);
}
#nav .nav__item a:hover:before {
  width: 50%;
  border-bottom: 1px solid var(--body-font-color);
}
#nav .nav__item a:hover:after {
  width: 50%;
  border-bottom: 1px solid var(--body-font-color);
}
#nav .nav__item.current a {
  border-bottom: 1px solid;
}
#nav .nav__item.current a::before, #nav .nav__item.current a::after {
  border-bottom: none;
}
#nav .nav__item.current a:hover::before, #nav .nav__item.current a:hover::after {
  border-bottom: none;
}

/*==========================================
mv
===========================================*/
.mv__frame {
  position: relative;
  z-index: 1;
  margin-top: 130px;
}
.mv__frame::before, .mv__frame::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  background: var(--background-color-gradation);
  opacity: 0.35;
}
.mv__frame::before {
  inset: auto auto 60px -110px;
  width: 460px;
  height: 460px;
  z-index: 99;
}
.mv__frame::after {
  inset: -270px -60px auto auto;
  width: 680px;
  height: 680px;
  z-index: -1;
}

#top-mv {
  height: 840px;
}
#top-mv .mv__slider-wrap {
  height: 100%;
  /*==========================================
  100% から%を算出
  ===========================================*/
  width: 89.3229166667%;
  margin-left: auto;
  border-radius: 80px 0 0 400px;
  /*==========================================
  メインビジュアル(スライダー)
  ===========================================*/
}
#top-mv .mv__slider-wrap #mv__slider {
  height: 840px;
  position: relative;
}
#top-mv .mv__slider-wrap #mv__slider li {
  height: 100%;
}
#top-mv .mv__slider-wrap #mv__slider li:nth-child(1) {
  background: url(../img/top/mv/mv_slide01.jpg) center no-repeat;
  background-size: cover;
}
#top-mv .mv__slider-wrap #mv__slider li:nth-child(2) {
  background: url(../img/top/mv/mv_slide02.jpg) center no-repeat;
  background-size: cover;
}
#top-mv .mv__slider-wrap #mv__slider li:nth-child(3) {
  background: url(../img/top/mv/mv_slide03.jpg) center no-repeat;
  background-size: cover;
}
#top-mv .mv__slider-wrap #mv__slider li:nth-child(4) {
  background: url(../img/top/mv/mv_slide04.jpg) center no-repeat;
  background-size: cover;
}
#top-mv .mv__slider-wrap .bx-wrapper {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
#top-mv .mv__slider-wrap .bx-viewport {
  overflow: visible !important;
  margin: auto;
  text-align: center;
}
#top-mv .mv__slider-wrap .bx-pager {
  display: none;
}
#top-mv .mv__slider-wrap li {
  border-radius: 80px 0 0 400px;
}
#top-mv .mv__catch {
  position: absolute;
  inset: auto auto 14.2857% 0;
  z-index: 100;
}

/*==========================================
top
===========================================*/
/* top-about
------------------------*/
#top-about {
  margin-bottom: 80px;
}
#top-about .about__main {
  position: relative;
  padding: 70px 0 145px;
  background: url(../img/top/about_ill.png) right 0.78125% bottom 15px/24.3229% no-repeat;
}
#top-about .about__title .title-en {
  font-size: 9.4rem;
}
#top-about .about__img {
  position: absolute;
  inset: 60px auto auto 0;
  /*==========================================
  100% から%を算出
  ===========================================*/
  width: 42.1875%;
  text-align: right;
}
#top-about .about__img img {
  border-radius: 0 200px 0 0;
}
#top-about .about__content {
  width: 630px;
  margin-left: auto;
}
#top-about .about__button {
  margin-left: auto;
}

/* top-class
------------------------*/
.bg-side-deco {
  position: relative;
  z-index: 1;
  padding-bottom: 190px;
}
.bg-side-deco::before {
  width: 100%;
  height: 531px;
  position: absolute;
  content: "";
  z-index: -1;
  background: url(../img/common/com-side_deco.png) center/100% no-repeat;
  inset: 275px 0 auto;
}

#top-class .class__title {
  margin-bottom: 60px;
  background: url(../img/top/class-ttl_bg.png) bottom 21px center no-repeat;
}
#top-class .class__list {
  gap: 40px;
}
#top-class .class__list .class__item {
  width: 240px;
}
#top-class .class__list .class__item:nth-child(even) {
  margin-top: 50px;
}
#top-class .class__list .class__item-img {
  border-radius: 120px;
  padding: 5px;
  margin-bottom: 10px;
  text-align: center;
}
#top-class .class__list .class__item-img img {
  border-radius: 120px;
}
#top-class .class__list .class__item-fig {
  font-size: var(--font-size-24);
  line-height: 1.5;
  text-align: center;
}
#top-class .class__txt--main {
  margin: 60px 0 50px;
  text-align: center;
}
#top-class .class__button {
  width: 470px;
  margin: 0 auto;
}

/* top-movie
------------------------*/
#top-movie {
  padding: 210px 0 90px;
  position: relative;
  background: url(../img/top/movie-left_ill.png) left 6.25% bottom/17.4479% no-repeat, url(../img/top/movie-right_ill.png) right 3.6458% bottom/19.9479% no-repeat, linear-gradient(to right, rgb(255, 231, 239) 0%, rgb(249, 235, 223) 100%);
}
#top-movie .movie__title {
  position: absolute;
  inset: -70px 0 auto;
}
#top-movie .movie__frame {
  text-align: center;
}
#top-movie .movie__frame .movie__video {
  width: 854px;
  margin: 0 auto;
  height: 480px;
}
#top-movie .movie__frame .movie__video video {
  width: 100%;
  height: 100%;
}

/* top-voice
------------------------*/
#top-voice {
  padding: 60px 0 50px;
  position: relative;
}
#top-voice::before {
  width: 440px;
  height: 440px;
  position: absolute;
  content: "";
  border-radius: 50%;
  inset: 97px -220px auto auto;
  background: rgba(var(--color-white-rgb), 0.5);
  opacity: 0.5;
}
#top-voice .voice__img {
  position: absolute;
  inset: 0 auto auto 0;
  /*==========================================
  100% から%を算出
  ===========================================*/
  width: 41.6666666667%;
  text-align: right;
}
#top-voice .voice__img img {
  border-radius: 0 0 200px 0;
}
#top-voice .voice__title .title-en {
  font-size: 7.2rem;
}
#top-voice .voice__title .title-ja {
  font-size: var(--font-size-32);
}
#top-voice .voice__content {
  width: 635px;
  margin-left: auto;
}
#top-voice .voice__button {
  margin-left: auto;
}

/* top-news
------------------------*/
#top-news {
  padding: 120px 0;
}
#top-news .inbox {
  width: 1140px;
}
#top-news .news__wrap {
  background: var(--color-white);
  border-radius: 170px;
  padding: 45px 30px 45px 75px;
  position: relative;
}
#top-news .news__title {
  text-align: left;
}
#top-news .news__title .title-en {
  font-size: 7.2rem;
}
#top-news .news__title .title-ja {
  font-size: var(--font-size-28);
}
#top-news .news__post-list {
  width: 740px;
  min-height: 230px;
}
#top-news .news__post-list .news__post {
  border-bottom: 1px solid var(--color-gray);
}
#top-news .news__post-list .news__post:last-child {
  border-bottom: none;
}
#top-news .news__post-list .news__post a {
  padding: 15px 0;
  border-radius: 0 170px 0 0;
}
#top-news .news__post-list .news__post a:hover {
  background: rgba(var(--gradation-color-start-rgb), 0.2);
  padding: 15px 10px;
}
#top-news .news__post-list .news__post a:hover .news__post-title {
  text-decoration: underline;
}
#top-news .news__post-list .news__post time,
#top-news .news__post-list .news__post .category-label li {
  font-size: var(--font-size-16);
}
#top-news .news__post-list .news__post time {
  width: 100px;
}
#top-news .news__post-list .news__post .category-label {
  width: calc(100% - 100px);
  row-gap: 7px;
}
#top-news .news__post-list .news__post .category-label li {
  padding: 0 7px;
  position: relative;
}
#top-news .news__post-list .news__post .category-label li::before {
  position: absolute;
  content: "";
  inset: 0 auto 0 0;
  margin: auto 0;
  width: 1px;
  height: 15px;
  background: var(--body-font-color);
}
#top-news .news__post-list .news__post-title {
  width: 100%;
  font-size: var(--font-size-16);
}
#top-news .news__button {
  width: 250px;
  position: absolute;
  inset: 225px auto auto 75px;
  border: 1px solid;
}

/* top-recruit
------------------------*/
#top-recruit {
  position: relative;
  z-index: 1;
}
#top-recruit::before {
  position: absolute;
  content: "";
  z-index: -1;
  /*==========================================
  100% から%を算出
  ===========================================*/
  width: 83.3333333333%;
  min-width: 1235px;
  height: 100%;
  background: var(--background-color-gradation);
  border-radius: 0 200px 50px 0;
  inset: 0 auto 0 0;
}
#top-recruit .inbox {
  padding: 185px 0 70px;
  position: relative;
  background: url(../img/top/recruit_ill.png) left bottom no-repeat;
}
#top-recruit .recruit__title {
  position: absolute;
  inset: 20px auto auto 0;
  width: 75%;
  text-align: left;
  margin-bottom: 0;
}
#top-recruit .recruit__title .title-en {
  -webkit-text-fill-color: var(--color-white);
  color: var(--color-white);
  background: none;
  font-size: 7.2rem;
  margin-bottom: 10px;
}
#top-recruit .recruit__title .title-ja {
  color: var(--color-white);
  font-size: var(--font-size-28);
}
#top-recruit .recruit__subtitle {
  font-size: var(--font-size-24);
  margin-bottom: 15px;
}
#top-recruit .recruit__content {
  width: 740px;
  margin-left: auto;
  color: var(--color-white);
}
#top-recruit .recruit__content .recruit__txt {
  letter-spacing: 0;
}
#top-recruit .recruit__content .com-tel {
  line-height: 1.2;
}
#top-recruit .recruit__content .com-tel .tel__num {
  color: var(--color-white);
}

/*==========================================
footer
===========================================*/
#footer {
  position: relative;
  z-index: 1;
  padding: 55px 0 50px;
}
#footer::before {
  position: absolute;
  content: "";
  z-index: -1;
  /*==========================================
  100% から%を算出
  ===========================================*/
  width: 88.5416666667%;
  min-width: 1235px;
  height: 100%;
  background: var(--footer-background-color);
  border-radius: 200px 0 0 0;
  inset: 0 0 0 auto;
}
#footer .footer__headline {
  border-bottom: 1px solid var(--color-gray);
  padding-bottom: 30px;
}
#footer .footer__headline-left {
  width: 455px;
}
#footer .footer__headline-left .footer__logo {
  display: inline-block;
  margin-bottom: 15px;
}
#footer .footer__headline-list {
  width: -moz-fit-content;
  width: fit-content;
  gap: 25px;
}
#footer .footer__headline-list .footer__list-item .com-button--rounded {
  width: 160px;
  height: 50px;
  border: 1px solid;
  background: var(--footer-background-color);
}
#footer .footer__headline-list .footer__list-item .com-button--rounded:hover {
  background: var(--body-font-color);
}
#footer .footer__nav {
  gap: 15px 41px;
  font-size: var(--font-size-14);
  margin: 25px 0;
}
#footer .footer__nav a:hover {
  text-decoration: underline;
}

#copyright {
  word-break: normal;
  text-align: center;
}
#copyright small {
  font-size: var(--font-size-12);
}
#copyright a {
  text-decoration: underline;
}

/*==========================================
ページトップ
===========================================*/
.pagetop {
  position: fixed;
  bottom: 8%;
  right: 3%;
  z-index: 999;
}
.pagetop a {
  display: block;
}
.pagetop a:hover {
  transform: scale(0.8);
}

/*==========================================
sv
===========================================*/
.lower-sv {
  height: 540px;
}
.lower-sv .sv__title {
  font-size: var(--font-size-42);
  background: var(--color-white);
  position: absolute;
  inset: auto auto 22.222% 0;
  border-radius: 0 50px 50px 0;
  width: 655px;
  text-align: center;
  z-index: 100;
}
.lower-sv .sv__bg {
  /*==========================================
  100% から%を算出
  ===========================================*/
  width: 69.0104166667%;
  height: 540px;
  border-radius: 250px 0 0 250px;
  margin-left: auto;
}

#class-sv .sv__bg {
  background: url(../img/sv/class-sv_bg.jpg) center/cover no-repeat;
}

#instructor-sv .sv__bg {
  background: url(../img/sv/instructor-sv_bg.jpg) center/cover no-repeat;
}

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

#info-sv .sv__bg {
  background: url(../img/sv/info-sv_bg.jpg) center/cover no-repeat;
}

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

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

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

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

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

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

/*==========================================
class
===========================================*/
/* class-archive
------------------------*/
#class-archive .archive__list {
  row-gap: 45px;
}
#class-archive .archive__list .archive__post {
  width: 510px;
}
#class-archive .archive__list .archive__post-img {
  width: 100%;
  height: 310px;
  padding: 10px;
  border-radius: 95px 95px 0 0;
}
#class-archive .archive__list .archive__post-img img {
  border-radius: 95px 95px 0 0;
}
#class-archive .archive__list .archive__post-title {
  padding: 15px 0;
  font-size: var(--font-size-24);
}

/* class-price
------------------------*/
#class-price .price__joining {
  width: 980px;
  margin: 0 auto;
  border-radius: 75.5px;
  padding: 25px 80px;
  color: var(--color-white);
}
#class-price .price__joining .joining__title {
  width: 125px;
  font-size: var(--font-size-24);
  text-align: center;
}
#class-price .price__joining .joining__price {
  width: 125px;
  text-align: center;
}
#class-price .price__joining .joining__txt-intax {
  width: 100%;
  border-top: 1px solid;
  padding: 10px 15px;
  margin-top: 10px;
}
#class-price .price__inner-section {
  margin-top: 55px;
}
#class-price .price__subtitle {
  font-size: var(--font-size-24);
  margin-bottom: 20px;
  text-align: center;
}
#class-price .monthly__lead {
  text-align: center;
  margin-bottom: 20px;
}
#class-price .monthly__list {
  width: 980px;
  margin: 0 auto;
  border-radius: 58px;
  padding: 20px 0;
  background: var(--color-orange-light);
}
#class-price .monthly__list-item {
  border-bottom: 1px solid var(--color-gray);
  padding: 10px 100px;
}
#class-price .monthly__list-item:last-child {
  border-bottom: none;
}
#class-price .monthly__list-item dt {
  width: 455px;
  font-size: var(--font-size-20);
}
#class-price .monthly__list-item dd {
  width: calc(100% - 470px);
  text-align: right;
}
#class-price .schedule__table-wrap .schedule__table {
  width: 100%;
  background: var(--footer-background-color);
  border-radius: 58px;
  padding: 10px 0;
}
#class-price .schedule__table-wrap .schedule__table tr {
  border-bottom: 1px solid var(--color-gray);
}
#class-price .schedule__table-wrap .schedule__table tbody tr:last-child {
  border-bottom: none;
}
#class-price .schedule__table-wrap .schedule__table th,
#class-price .schedule__table-wrap .schedule__table td {
  vertical-align: middle;
  text-align: center;
  padding: 15px 0;
  max-width: 200px;
  min-width: 85px;
}
#class-price .schedule__table-wrap .schedule__table th {
  color: var(--color-pink-light);
}
#class-price .schedule__table-wrap .schedule__table th:first-child {
  width: 205px;
}
#class-price .schedule__table-wrap .schedule__table td:first-child {
  font-size: var(--font-size-15);
}

/*==========================================
instructor
===========================================*/
/* instructor-lecture
------------------------*/
#instructor-lecture .lecture__img img {
  border-radius: 120px 120px 0 0;
}
#instructor-lecture .lecture__content {
  width: 630px;
}

/* instructor-profile
------------------------*/
#instructor-profile .profile__list {
  width: 980px;
  margin: 0 auto;
  background: var(--color-orange-light);
  border-radius: 58px;
}
#instructor-profile .profile__list .profile__item {
  padding: 35px 55px;
}

/* instructor-policy
------------------------*/
#instructor-policy {
  position: relative;
  z-index: 1;
  padding-bottom: 100px;
}
#instructor-policy::before {
  width: 100%;
  height: calc(100% - 795px);
  position: absolute;
  content: "";
  z-index: -1;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffe7ef+0,f9ebdf+100 */
  background: linear-gradient(to right, rgb(255, 231, 239) 0%, rgb(249, 235, 223) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  inset: auto 0 150px;
}
#instructor-policy .policy__item {
  background: var(--footer-background-color);
  border-radius: 91px;
  padding: 35px 65px;
  margin-bottom: 20px;
}
#instructor-policy .policy__item:last-child {
  margin-bottom: 0;
}

/*==========================================
voice
===========================================*/
#voice-archive .voice__category-list {
  gap: 25px 60px;
  margin-bottom: 45px;
}
#voice-archive .voice__category-list .category__item.current span {
  text-decoration: underline;
}
#voice-archive .voice__post-wrap {
  gap: 40px 60px;
}
#voice-archive .voice__post {
  width: 510px;
  background: var(--color-white);
  border-radius: 105px 0 0 0;
  padding: 25px 30px 30px;
}
#voice-archive .voice__post-fig {
  width: 140px;
}
#voice-archive .voice__post-icon {
  width: 100%;
  height: 140px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
#voice-archive .voice__post-cap {
  text-align: center;
  font-size: var(--font-size-20);
  line-height: 1.6;
}
#voice-archive .voice__post-category-list {
  font-size: var(--font-size-15);
}
#voice-archive .voice__post-comment {
  width: 280px;
}

/*==========================================
info
===========================================*/
/* info-gallery
------------------------*/
#info-gallery .gallery__list {
  gap: 35px 52.5px;
}
#info-gallery .gallery__list .gallery__item {
  width: 325px;
  height: 260px;
  border-radius: 94px 94px 0 0;
}
#info-gallery .gallery__list .gallery__item img {
  border-radius: 94px 94px 0 0;
}

/* info
------------------------*/
#info-school .school__table {
  width: 980px;
  margin: 0 auto 50px;
  border-radius: 58px;
  background: var(--color-orange-light);
  padding: 35px 0;
}
#info-school .school__table th {
  text-align: center;
}

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

/*==========================================
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 tr th {
  margin-bottom: 20px;
}
#contact .contact__form tr th .required {
  padding: 3px;
  margin-left: 10px;
  vertical-align: baseline;
  font-size: var(--font-size-12);
}
#contact .contact__form tr td .label-list {
  gap: 15px;
}
#contact .contact__form tr.privacy-check th {
  text-align: center;
}
#contact .contact__form .form-field {
  padding: 20px 15px;
}
#contact .contact__form .contact__select {
  width: 200px;
}
#contact .contact__form .contact__select::after {
  inset: 0 16px 0 auto;
  width: 8px;
  height: 8px;
}
#contact .contact__form .contact__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: 300px;
}
#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 .check-btn {
  width: 304px;
}
#contact .contact__submits-wrap .back-btn {
  width: 270px;
}
#contact .contact__submits-wrap .send-btn {
  width: 240px;
}

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

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

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