
@charset "utf-8";

/*----- 画面幅に合わせる（コンテナクエリ対応ブラウザにも対応）430 = design-witdh -----*/
#content {
  width: calc(100vw - 20px);
  max-width: calc(100vw - 20px);
  --base-unit: calc(100vw - 20px);
  padding: 0 10px;
}

@media (min-width: 702px) {

  #content {
    width: 980px;
    max-width: 980px;
    margin: 0 auto;
  }
}

@media (min-width: 980px) {

  #content {
    width: 980px;
  }
}

@supports (container-type: inline-size) {

  #content {
    container-type: inline-size;
    --base-unit: 100cqw;
  }
}

/*----- 画面幅に合わせるここまで-----*/

/*-----single-column 画面幅に合わせる（コンテナクエリ対応ブラウザにも対応）430 = design-witdh -----*/
.single-column #content,
.single-column .column-main {
  width: 100vw;
  max-width: 100vw;
  --base-unit: 100vw;
}

@media (min-width: 702px) {

  .single-column #content,
  .single-column .column-main {
    width: 980px;
    max-width: 980px;
    margin: 0 auto;
  }
}

@media (min-width: 980px) {

  .single-column #content,
  .single-column .column-main {
    width: 980px;
  }
}

@supports (container-type: inline-size) {

  .single-column #content,
  .single-column .column-main {
    container-type: inline-size;
    --base-unit: 100cqw;
  }
}

/*-----single-column 画面幅に合わせるここまで-----*/

/* ==========================================================================
   h1/h2など
========================================================================== */
.studio-h1 {
  margin: calc(40 / 430 * var(--base-unit)) 0 0 0;
  padding: 0;
  border: none;
  font-size: calc(20 / 430 * var(--base-unit));
  text-align: center;
  padding-bottom: calc(30 / 430 * var(--base-unit));
  border-bottom: 1px solid #EFEFEF;
}

.studio-h1>span {
  padding: 0px;
  border: none;
}

h1.open_mv {
  background-image: url(/studio/img/kv_studioOpen_sp.jpg);
  height: calc(135 / 430 * var(--base-unit));
  background-position: right top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

h1.open_mv span {
  font-size: calc(20 / 430 * var(--base-unit));
  color: #fff;
  font-weight: 500;
  top: calc(47 / 430 * var(--base-unit));
  position: relative;
  left: 0;
  width: 100%;
  text-align: center;
  display: block;
}

.studio-h2 {
  margin: calc(40 / 430 * var(--base-unit)) 0 0 0;
  padding: 0;
  border: none;
  font-size: calc(20 / 430 * var(--base-unit));
  text-align: center;
  padding-bottom: calc(30 / 430 * var(--base-unit));
  background: none;
}

.studio-h2>span {
  padding: 0px;
  border: none;
}
.studio-h3 {
  padding: 0;
  border: none;
  font-size: calc(18 / 430 * var(--base-unit));
  padding-bottom: calc(13 / 430 * var(--base-unit));
  background: none;
}

.studio-h3>span {
  padding: 0px;
  border: none;
}

.external-link {
  position: relative;
}
.external-link::after {
  content: "";
  position: absolute;
  top: calc(50% + 1px);
  right: -20px;
  transform: translateY(-50%);
  width: 13px;
  height: 13px;
  background-image: url(/studio/img/bx-link-external.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: right 0.3s ease;
}
.external-link:hover {
  opacity: 0.6;
}

.btn-studio {
  text-align: center;
  margin-top: 18px;
}
.btn-studio a {
  position: relative;
  padding: 14px 80px;
  border: 1px solid #414141;
  border-radius: 100px;
  color: #414141;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-content: center;
  align-items: center;
  gap: 8px;
  transition: transform .3s ease;
}

.btn-studio a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  background-image: url(/studio/img/arrow02.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: right 0.3s ease;
}

.btn-studio a:hover {
  border: 1px solid #8D732B;
  color: #8D732B;
}

.btn-studio a:hover:after {
  right: 10px;
}


/* タブレット・デスクトップ */
@media (min-width: 702px) {
  .studio-h1 {
    margin: 25px 0 0 0;
    font-size: 20px;
    padding-bottom: 25px;
  }

  h1.open_mv {
    height: 300px;
  }

  h1.open_mv span {
    font-size: 30px;
    top: 125px;
  }

  .studio-h2 {
    margin: 25px 0 0 0;
    font-size: 20px;
    padding-bottom: 25px;
  }
  .studio-h3 {
    margin: 0;
  font-size: 17px;
  padding-bottom: 0;
  }
}

/* ==========================================================================
   パンくず
========================================================================== */
#breadcrumbs {
  font-size: calc(10 / 430 * var(--base-unit));
  padding: 0;
}

#breadcrumbs li {
  background: none;
  padding-left: calc(4 / 430 * var(--base-unit));
}

#breadcrumbs li:before {
  content: '/';
  margin: 0 calc(6 / 430 * var(--base-unit)) 0 calc(4 / 430 * var(--base-unit));
}

#breadcrumbs li:first-of-type:before {
  content: '';
}

/* タブレット・デスクトップ */
@media (min-width: 702px) {
  #breadcrumbs {
    font-size: 12px;
    padding: 15px 0;
  }
  #breadcrumbs li{
    padding-left: 4px;
  }

  #breadcrumbs li:before {
    margin: 0 6px 0 4px;
  }
}

/* ==========================================================================
   スタジオ検索窓
========================================================================== */
#studio-search {
  padding-bottom: calc(30 / 430 * var(--base-unit));
  border-bottom: 1px solid #EFEFEF;
  margin: 0 calc(25 / 430 * var(--base-unit)) calc(30 / 430 * var(--base-unit)) calc(15 / 430 * var(--base-unit));
}

#studio-search form {
  border: none;
}

#studio-search form>.inner {
  padding: 0;
}

/*都道府県選択*/
#studio-search .pref {
  margin-bottom: calc(13 / 430 * var(--base-unit));
  position: relative;
  height: fit-content;
}

#studio-search .pref::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  background-image: url(/studio/img/arrow01.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none; 
}

#studio-search .pref select {
  -webkit-box-sizing: border-box !important;
  -moz-box-sizing: border-box !important;
  box-sizing: border-box !important;
  width: 100%;
  *width: 99%;
  margin: 0;
  border: none;
  background: #F5F6F4;
  border-radius: calc(5 / 430 * var(--base-unit));
  height: calc(41 / 430 * var(--base-unit));
  cursor: pointer;
}

/*都道府県選択*/
#studio-search .form-select {
  padding-left: calc(10 / 430 * var(--base-unit));
}

#studio-search .searchBox__fields .input input {
  -webkit-box-sizing: border-box !important;
  -moz-box-sizing: border-box !important;
  box-sizing: border-box !important;
  width: 100%;
  *width: 99%;
  margin: 0;
  border: none;
  background: #F5F6F4;
  border-radius: calc(5 / 430 * var(--base-unit));
  height: calc(41 / 430 * var(--base-unit));
}

#studio-search .search-box {
  display: flex;
  gap: calc(22 / 430 * var(--base-unit));
}

#studio-search .search-box .search-box-fields {
  flex: 3;
}

#studio-search select::-ms-expand {
  display: none;
}

#studio-search select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url(/studio/img/arrow01.png);
  background-repeat: no-repeat;
  background-size: calc(14 / 430 * var(--base-unit)) auto;
  background-position: right calc(7 / 430 * var(--base-unit)) center;
}

/*検索テキスト入力欄*/
#studio-search .search-box .search-box-fields .input-text input {
  margin: 0;
  vertical-align: middle;
  width: 100%;
  background: #F5F6F4;
  border: none;
  border-radius: calc(5 / 430 * var(--base-unit));
  height: calc(41 / 430 * var(--base-unit));
  padding-left: calc(10 / 430 * var(--base-unit));
}

.msie #studio-search .search-box label input {
  margin: 0;
}

.search-box-options {
  display: flex;
  gap: calc(11 / 430 * var(--base-unit));
  margin-top: calc(8 / 430 * var(--base-unit));
}

.search-box-options li {
  font-size: calc(13 / 430 * var(--base-unit));
}


/*検索ボタン*/
#studio-search .mod-button-important {
  padding: 0;
  width: calc(80 / 430 * var(--base-unit));
  background: none;
  flex: 1;
}

#studio-search .button p {
  display: block;
}

#studio-search .button input {
  width: 100%;
  border: none;
  background: #B6A577;
  color: #fff;
  border-radius: calc(4 / 430 * var(--base-unit));
  padding: calc(10 / 430 * var(--base-unit)) calc(20 / 430 * var(--base-unit));
}
#studio-search .button input:hover {
  opacity: 0.6;
}

/* タブレット・デスクトップ */
@media (min-width: 702px) {

  #studio-search {
    padding: 0;
    margin: 0;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  /*都道府県選択*/
  #studio-search .pref {
    margin-bottom: 13px;
  }

  #studio-search .pref select {
    border-radius: 5px;
    height: 41px;
  }

  /*都道府県選択*/
  #studio-search .form-select {
    padding-left: 10px;
  }

  #studio-search .searchBox__fields .input input {
    border-radius: 5px;
    height: 41px;
  }

  #studio-search .search-box {
    gap: 22px;
  }

  #studio-search select {
    background-size: 14px auto;
    background-position: 7px center;
  }

  /*検索テキスト入力欄*/
  #studio-search .search-box .search-box-fields .input-text input {
    border-radius: 5px;
    height: 40px;
    padding-left: 10px;
  }

  .search-box-options {
    gap: 11px;
    margin-top: 8px;
  }

  .search-box-options li {
    font-size: 10px;
  }


  /*検索ボタン*/
  #studio-search .mod-button-important {
    width: 80px;
  }

  #studio-search .button input {
    border-radius: 4px;
    padding: 10px 2px;
  }

  #studio-search .mod-button {
    min-width: 40px;
  }
}

/* ==========================================================================
   スタジオ検索窓（1カラム時）
========================================================================== */

/* タブレット・デスクトップ */
@media (min-width: 702px) {
  .single-column #studio-search {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }

  .single-column #studio-search form .inner {
    display: flex;
    width: 100%;
    gap: 22px;
  }

  /*都道府県選択*/
  .single-column #studio-search .pref {
    margin-bottom: 13px;
    width: 30%;
  }

  .single-column #studio-search .pref select {
    border-radius: 5px;
    height: 41px;
  }

  /*都道府県選択*/
  .single-column #studio-search .form-select {
    padding-left: 10px;
  }

  .single-column #studio-search .searchBox__fields .input input {
    border-radius: 5px;
    height: 41px;
  }

  .single-column #studio-search .search-box {
    gap: 22px;
    width: 70%;
  }

  .single-column #studio-search select {
    background-size: 14px auto;
    background-position: 7px center;
  }

  .single-column #studio-search .search-box .search-box-fields {
    flex: none;
    width: 70%;
  }

  .single-column #studio-search .search-box .search-box-fields .input-text input {
    border-radius: 5px;
    height: 41px;
    padding-left: 10px;
    width: calc(100% - 10px);
    font-size: 15px;
  }

  .single-column .search-box-options {
    gap: 11px;
    margin-top: 8px;
  }

  .single-column .search-box-options li {
    font-size: 13px;
  }

  .single-column #studio-search .mod-button-important {
    flex: none;
    width: 30%;
  }

  .single-column #studio-search .button input {
    border-radius: 4px;
    padding: 10px 20px;
    width: calc(100% - 24px);
  }

  .single-column .guide-nav {
    margin: 0 25px;
  }
}


/* ==========================================================================
   スタジオ検索 共通
========================================================================== */
#content {
  padding: 0;
  margin-bottom: calc(15 / 430 * var(--base-unit));
}

.content-detail {
  margin: 25px;
}

.column-main {
  margin-bottom: calc(15 / 430 * var(--base-unit));
}

#studio-data .guide-nav-list {
  margin-bottom: calc(40 / 430 * var(--base-unit));
}

.mod01-h1 {
  font-size: calc(20 / 430 * var(--base-unit));
  text-align: center;
  border: none;
  padding: calc(30 / 430 * var(--base-unit)) 0;
  margin-bottom: 0;
}

.mod01-h1 span {
  border: none;
  padding: 0;
}

.studioH2 {
  font-size: calc(20 / 430 * var(--base-unit));
  text-align: center;
  margin-bottom: calc(16 / 430 * var(--base-unit));
}

.studio-searchH2 {
  font-size: calc(20 / 430 * var(--base-unit));
}

.studioH3 {
  margin-bottom: calc(12 / 430 * var(--base-unit));
  margin-top: calc(20 / 430 * var(--base-unit));
  font-size: calc(18 / 430 * var(--base-unit));
}

section {
  margin-bottom: calc(40 / 430 * var(--base-unit));
}

.mod-article-list.odd-colored .list-item:nth-child(2n-1) {
  background-color: #FFFFFF;
}

.mod-article-list {
  background: none;
  border-top: 1px solid #EFEFEF;
}

.mod-article-list .list-item {
  background: none;
  border-bottom: 1px solid #EFEFEF;
  padding: 25px 0;
}

/* タブレット・デスクトップ */
@media (min-width: 702px) {
  #content {
    margin-bottom: 15px;
  }

  .column-main {
    margin-bottom: 15px;
  }

  .studioH2 {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .studioH3 {
    margin-bottom: 14px;
    margin-top: 40px;
    font-size: 18px;
  }

  section {
    margin-bottom: 40px;
  }
}

/* ==========================================================================
   スタジオ検索 index
========================================================================== */
/*左右パディング*/
.studio-tab-nav,
#japan,
#oversea {
  padding: 0 calc(25 / 430 * var(--base-unit));
}

#oversea {
  margin-top: -23px;
}

/*h1*/
h1.index_top_mv {
  background-image: url(/studio/img/kv_studio01_sp.jpg);
  height: calc(135 / 430 * var(--base-unit));
  background-position: right top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

h1.index_top_mv span {
  font-size: calc(20 / 430 * var(--base-unit));
  color: #fff;
  font-weight: 500;
  top: calc(47 / 430 * var(--base-unit));
  position: relative;
  left: 0;
  width: 100%;
  text-align: center;
  display: block;
}

/*国内・海外タブ*/
.studio-tab-nav {
  margin-bottom: calc(40 / 430 * var(--base-unit));
}

.studio-tab-nav ul {
  display: flex;
  gap: calc(4 / 430 * var(--base-unit));
}

.studio-tab-nav li {
  width: 50%;
  font-weight: 600;
  text-align: center;
  font-size: calc(16 / 430 * var(--base-unit));
  position: relative;
  line-height: calc(30 / 430 * var(--base-unit));
}

.studio-tab-japan span::before {
  content: "";
  display: block;
  background: url(/studio/img/studio-tab-nav-ico01.png) no-repeat;
  background-size: contain;
  height: calc(18 / 430 * var(--base-unit));
  width: calc(18 / 430 * var(--base-unit));
  position: absolute;
  top: calc(7 / 430 * var(--base-unit));
  left: calc(40 / 430 * var(--base-unit));
}

.studio-tab-japan .studio-tab-nav-link.is-active::before {
  background: url(/studio/img/studio-tab-nav-ico01_active.png) no-repeat;
  background-size: contain;
}

.studio-tab-oversea span::before {
  content: "";
  display: block;
  background: url(/studio/img/studio-tab-nav-ico02.png) no-repeat;
  background-size: contain;
  height: calc(18 / 430 * var(--base-unit));
  width: calc(18 / 430 * var(--base-unit));
  position: absolute;
  top: calc(7 / 430 * var(--base-unit));
  left: calc(40 / 430 * var(--base-unit));
}

.studio-tab-oversea .studio-tab-nav-link.is-active::before {
  background: url(/studio/img/studio-tab-nav-ico02_active.png) no-repeat;
  background-size: contain;
}

.studio-tab-nav-link {
  color: #848484;
  text-decoration: none;
  cursor: pointer;
  display: block;
  height: calc(42 / 430 * var(--base-unit));
  border-bottom: calc(2 / 430 * var(--base-unit)) solid #B3B3B3;
}

.studio-tab-nav-link.is-active {
  font-size: calc(19 / 430 * var(--base-unit));
  color: #8D732B;
  text-decoration: none;
  border-bottom: calc(4 / 430 * var(--base-unit)) solid #8D732B;
  height: calc(40 / 430 * var(--base-unit));
}

.content-box {
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.content-box.is-show {
  display: block;
  opacity: 1;
}

/*都道府県一覧・海外店舗一覧*/
.location-list {
  display: flex;
  flex-wrap: wrap;
  gap: calc(8 / 430 * var(--base-unit));
}

.location-list li {
  width: calc(25% - 8px);
}

.location-list a {
  border: none;
  background: #F5F6F4;
  border-radius: calc(5 / 430 * var(--base-unit));
  font-size: calc(15 / 430 * var(--base-unit));
  font-weight: 400;
  color: #414141;
  display: block;
  text-decoration: none;
  padding: calc(10 / 430 * var(--base-unit)) 0;
  text-align: center;
}

.location-list a:hover {
  background: #AEAEAE;
  color: #fff;
}

.location-list-oversea li {
  width: calc(50% - 4px);
}

.location-list-oversea li a {
  font-size: calc(14 / 430 * var(--base-unit));
}

/*国内外オープン/リニューアル*/
.studio-article-list,
.studioOS-article-list {
  background: none;
  border-top: 1px solid #EFEFEF;
}

.studio-article-list .body,
.studioOS-article-list .body {
  display: flex;
  align-items: center;
  gap: calc(15 / 430 * var(--base-unit));
  flex-flow: wrap;
}

.studio-article-list .list-item,
.studioOS-article-list .list-item {
  padding-top: calc(15 / 430 * var(--base-unit));
  padding-bottom: calc(15 / 430 * var(--base-unit));
}

.studio-article-list .list-item .icon,
.studioOS-article-list .list-item .icon {
  margin-bottom: 0;
}

.studio-article-list .list-item .image,
.studioOS-article-list .list-item .image {
  width: calc(104 / 430 * var(--base-unit));
}

.studio-article-list .list-item .title,
.studioOS-article-list .list-item .title {
  width: 100%;
}

.studio-article-list .list-item .button,
.studioOS-article-list .list-item .button {
  width: 100%;
}

.studio-article-list .date,
.studioOS-article-list .date {
  color: #8D732B;
  font-weight: 600;
  font-size: calc(13 / 430 * var(--base-unit));
}

.studio-article-list .mod-label-icon li,
.studioOS-article-list .mod-label-icon li {
  border-radius: 100px;
  padding: calc(3 / 430 * var(--base-unit)) calc(15 / 430 * var(--base-unit)) calc(4 / 430 * var(--base-unit));
  font-size: calc(11 / 430 * var(--base-unit));
  font-weight: 500;
  letter-spacing: 1px;
}

.studio-article-list .mod-label-icon li.open,
.studioOS-article-list .mod-label-icon li.open {
  background-color: #8D732B;
}

.studio-article-list .mod-label-icon li.renewal,
.studioOS-article-list .mod-label-icon li.renewal {
  background-color: #8D732B;
}

.studio-article-list .list-item,
.studioOS-article-list .list-item {
  background: none;
  border-bottom: 1px solid #EFEFEF;
}

.studio-article-list .studioOS-article-list .list-item .title a {
  color: #414141;
  font-size: calc(15 / 430 * var(--base-unit));
  text-decoration: none;
}

.studio-article-list .mod-button a {
  border-radius: 100px;
  border: 1px solid #707070;
  color: #414141;
  padding: calc(4 / 430 * var(--base-unit)) calc(12 / 430 * var(--base-unit));
  background: #fff;
  font-size: calc(11 / 430 * var(--base-unit));
  font-weight: 400;
}

.studio-article-list .mod-button a:hover {
  background: #707070;
  color: #fff;
}

.studio-article-list .title a,
.studioOS-article-list .title a {
  color: #414141;
  text-decoration: none;
}

.studio-article-list .mod-button-list {
  display: flex;
}

.studioOS-article-list.odd-colored .list-item:nth-child(2n-1),
.studio-article-list .list-item:nth-child(2n-1) {
  background: none;
}

/*日本*/
#japan #studio-search {
  margin: 0 0 calc(30 / 430 * var(--base-unit)) 0;
}

/*海外*/
#oversea {}


/*全国フリー通学制・グローバル通学共通*/
.freestyle p {
  font-size: calc(16 / 430 * var(--base-unit));
  text-align: center;
}

.freestyle .highlight {
  color: #8D732B;
  font-weight: 600;
}

.freestyle-txt02 {
  margin-top: calc(25 / 430 * var(--base-unit));
  padding: 0 calc(40 / 430 * var(--base-unit));
}

.freestyle-txt03 {
  margin-top: calc(25 / 430 * var(--base-unit));
}

/*全国フリー通学制*/
.freestyle-japan {
  padding: calc(40 / 430 * var(--base-unit)) 0px;
}


/*グローバル通学*/
.freestyle-overseas {
  background: #F5F6F4;
  padding: calc(40 / 430 * var(--base-unit)) calc(25 / 430 * var(--base-unit));
}

.freestyle-overseas .freestyle-overseas-link {
  margin-top: calc(30 / 430 * var(--base-unit));
}

.freestyle-overseas .freestyle-overseas-link li {
  background: #fff;
  border-radius: calc(15 / 430 * var(--base-unit));
  margin-bottom: calc(20 / 430 * var(--base-unit));
}

.freestyle-overseas .freestyle-overseas-link li a {
  display: flex;
  text-decoration: none;
  gap: 10px;
}

.freestyle-overseas .freestyle-overseas-link-img {
  flex: 1;
}

.freestyle-overseas .freestyle-overseas-link-txt {
  flex: 2;
  font-weight: 600;
  margin-top: auto;
  margin-bottom: auto;
  padding-left: calc(16 / 430 * var(--base-unit));
  text-align: left;
  line-height: 200%;
}

.freestyle-overseas .freestyle-overseas-link-txt span {
  font-size: calc(11 / 430 * var(--base-unit));
  font-weight: 400;
  display: block;
  line-height: 170%;
}

.freestyle-overseas .freestyle-overseas-link-img img {
  border-radius: calc(15 / 430 * var(--base-unit)) 0 0 calc(15 / 430 * var(--base-unit));
}

.single-column .mod-article-list {
  margin: 0;
}

.single-column .mlr25 {
  margin: 0 calc(25 / 430 * var(--base-unit));
}

/*パンくず*/
.single-column #breadcrumbs {
  padding-left: 15px;
}

/* タブレット・デスクトップ */
@media (min-width: 702px) {

  /*左右パディング*/
  .studio-tab-nav,
  #japan,
  #oversea {
    padding: 0 25px;
  }

  /*h1*/
  h1.index_top_mv {
    height: 300px;
  }

  h1.index_top_mv span {
    font-size: 30px;
    top: 125px;
  }

  /*国内・海外タブ*/
  .studio-tab-nav {
    margin-bottom: 40px;
  }

  .studio-tab-nav ul {
    gap: 4px;
  }

  .studio-tab-nav li {
    font-size: 18px;
    line-height: 30px;
  }

  .studio-tab-nav li:hover {
    opacity: .6;
  }

  .studio-tab-japan span::before {
    height: 22px;
    width: 22px;
    top: 6px;
    left: 175px;
  }

  .studio-tab-oversea span::before {
    height: 22px;
    width: 22px;
    top: 5px;
    left: 176px;
  }

  .studio-tab-nav-link {
    height: 42px;
    border-bottom: 2px solid #B3B3B3;
  }

  .studio-tab-nav-link.is-active {
    font-size: 20px;
    border-bottom: 4px solid #8D732B;
    height: 40px;
  }

  /*都道府県一覧*/
  .location-list {
    gap: 8px;
  }

  .location-list li {
    width: calc(20% - 7px);
  }

  .location-list a {
    border-radius: 5px;
    font-size: 15px;
    padding: 10px 0;
  }

  .location-list-oversea li {
    width: calc(25% - 8px);
  }

  .location-list-oversea li a {
    font-size: 14px;
  }

  /*国内オープン/リニューアル*/

  .studio-article-list,
  .studioOS-article-list {
    display: flex;
    gap: 20px;
  }

  .studio-article-list .body,
  .studioOS-article-list .body {
    gap: 15px;
  }

  .studio-article-list .list-item,
  .studioOS-article-list .list-item {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .studio-article-list .list-item .image,
  .studioOS-article-list .list-item .image {
    width: 104px;
  }

  .studio-article-list .date,
  .studioOS-article-list .date {
    font-size: 13px;
  }

  .studio-article-list .mod-label-icon li,
  .studioOS-article-list .mod-label-icon li {
    padding: 3px 15px 4px;
    font-size: 11px;
  }

  .studio-article-list .studioOS-article-list .list-item .title,
  .studioOS-article-list .studioOS-article-list .list-item .title {
    width: 100%;
  }

  .studio-article-list .studioOS-article-list .list-item .title a,
  .studioOS-article-list .studioOS-article-list .list-item .title a {
    font-size: 15px;
  }

  .studio-article-list .mod-button a,
  .studioOS-article-list .mod-button a {
    padding: 4px 12px;
    font-size: 12px;
  }

  /*全国フリー通学制・グローバル通学共通*/
  .freestyle p {
    font-size: 16px;
    line-height: 170%;
  }

  .freestyle-txt02 {
    margin-top: 25px;
    padding: 0 220px;
  }

  .freestyle-txt03 {
    margin-top: 25px;
  }

  /*全国フリー通学制*/
  .freestyle-japan {
    padding: 40px 0px;
  }


  /*グローバル通学*/
  .freestyle-overseas {
    padding: 40px 25px;
  }

  .freestyle-overseas .freestyle-overseas-link {
    margin-top: 30px;
    display: flex;
    gap: 25px;
  }

  .freestyle-overseas .freestyle-overseas-link li {
    border-radius: 15px;
    margin-bottom: 0;
    width: 50%;
  }

  .freestyle-overseas .freestyle-overseas-link li a {
    text-decoration: none;
    display: flex;
    gap: 10px;
  }

  .freestyle-overseas .freestyle-overseas-link li a:hover {
    opacity: 0.6;
  }

  .freestyle-overseas .freestyle-overseas-link-txt {
    padding-left: 16px;
  }

  .freestyle-overseas .freestyle-overseas-link-txt span {
    font-size: 13px;
  }

  .freestyle-overseas .freestyle-overseas-link-img img {
    border-radius: 15px 0 0 15px;
  }

  .single-column .mlr25 {
    margin: 0 25px;
  }

}

/* ==========================================================================
   スタジオ検索 
========================================================================== */
#search-result {
  padding: 0 calc(15 / 430 * var(--base-unit));
  margin-top: calc(30 / 430 * var(--base-unit));
}

#search-result .btn-studio {
  margin: 0;
  margin-top: calc(40 / 430 * var(--base-unit)); 
  padding-bottom: calc(40 / 430 * var(--base-unit));
  margin-bottom: calc(30 / 430 * var(--base-unit));
  border-bottom: 1px solid #EFEFEF;
}

/* タブレット・デスクトップ */
@media (min-width: 702px) {
  #search-result {
    padding: 0;
    margin-top: 25px;
  }

  #search-result .btn-studio {
    margin: 0;
    margin-top: 40px;
    margin-bottom: 40px;
    padding-bottom:0;
    border:none;
  }
}

/* ==========================================================================
   都道府県ページ 
========================================================================== */
.result-list {
  border-top: none;
}

.result-list .list-item {
  
}

.result-list .list-item a {
  color: #414141;
  text-decoration: none;
  transition: transform .3s ease;
  position: relative;
}
.result-list .list-item a:hover {
  opacity: 0.7;
}
.result-list .list-item a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
  width: calc(7 / 430 * var(--base-unit));
  height: calc(7 / 430 * var(--base-unit));
  background-image: url(/studio/img/arrow03.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: right 0.3s ease;
}
.result-list .list-item a:hover::after {
  background-image: url(/studio/img/arrow02.png);
  right: 0;
}

.result-list .list-item .title {
  font-size: calc(18 / 430 * var(--base-unit));
  margin-bottom: calc(8 / 430 * var(--base-unit));
}

.result-list .list-item .text p {
  font-size: calc(15 / 430 * var(--base-unit));
  margin-bottom: calc(12 / 430 * var(--base-unit));
}

.result-list .list-item .text .result-access {
  color: #8D732B;
  display: flex;
  align-items: center;
  margin-top: calc(5 / 430 * var(--base-unit));
  gap: calc(5 / 430 * var(--base-unit));
  font-size: calc(13 / 430 * var(--base-unit));
  margin-bottom: 0;
}

.result-list .list-item .result-access::before {
  content: "";
  display: inline-block;
  background: url(/studio/img/train.png) no-repeat top left;
  background-size: contain;
  width: calc(13 / 430 * var(--base-unit));
  height: calc(16 / 430 * var(--base-unit));
  flex-shrink: 0;
}

/* タブレット・デスクトップ */
@media (min-width: 702px) {
  .result-list .list-item a::after {
    width: 7px;
    height: 7px;
  }
  .result-list .list-item .title {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .result-list .list-item .text p {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .result-list .list-item .text .result-access {
    margin-top: 6px;
    margin-bottom: 0;
    gap: 6px;
    font-size: 12px;
  }

  .result-list .list-item .result-access::before {
    width: 15px;
    height: 18px;
  }

}

/* ==========================================================================
   スタジオ詳細 
========================================================================== */
#studio-data {
  padding-bottom: calc(40 / 430 * var(--base-unit));
  border-bottom: 1px solid #EFEFEF;
  margin-bottom: 20px !important;
}
#studio-data .data-wrap {
  width: calc(100% - 30 / 430 * var(--base-unit));
  padding: 0 calc(15 / 430 * var(--base-unit));
}
#studio-data .photo-gallery {
  width: 100%;
}
#studio-data .photo-gallery img {
  width: 100%;
  height: calc(250 / 430 * var(--base-unit));
  object-fit: cover;
}

#studio-data .data-wrap .icon li {
  background-color: #F0EDE3;
    color: #746027;
    padding: calc(5 / 430 * var(--base-unit)) calc(15 / 430 * var(--base-unit));
    border-radius: 100px;
    font-weight: 400;
}
#studio-data .border {
    border-bottom: 1px solid #EFEFEF;
    padding: calc(25 / 430 * var(--base-unit)) 0;
}
#studio-data .border p {
  font-size: calc(15 / 430 * var(--base-unit));
}

.studio-voice {
  padding: calc(10 / 430 * var(--base-unit));
  width: fit-content;
}
.studio-voice .col {
  box-shadow: 0 0 calc(6 / 430 * var(--base-unit)) #ccc;
  border-radius: calc(20 / 430 * var(--base-unit));
  padding: calc(20 / 430 * var(--base-unit));
  width: fit-content;
}
.studio-voice .box {
  border: none;
}

.studio-news-wrap {
  margin-bottom: calc(40 / 430 * var(--base-unit));
}

.studio-news-wrap .mod-information-list {
  border: none;
  border-top: 1px solid #EFEFEF;
}
.studio-news-wrap .mod-information-list .list-item {
  border-bottom: 1px solid #EFEFEF;
  padding: calc(20 / 430 * var(--base-unit)) 0;
}
.studio-news-wrap .mod-information-list .list-item a {
  background: none;
  padding: calc(10 / 430 * var(--base-unit)) calc(26 / 430 * var(--base-unit)) calc(11 / 430 * var(--base-unit)) calc(20 / 430 * var(--base-unit));
  position: relative;
}
.studio-news-wrap .mod-information-list .list-item a:hover {
  opacity: 0.6;
}
.studio-news-wrap .mod-information-list .list-item a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: calc(26 / 430 * var(--base-unit));
    transform: translateY(-50%);
    width: calc(7 / 430 * var(--base-unit));
    height: calc(7 / 430 * var(--base-unit));
    background-image: url(/studio/img/arrow03.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: right 0.3s ease;
}

.studio-news-wrap .mod-information-list .list-item .date {
  color: #8D732B;
  font-weight: 700;
}
.studio-news-wrap .mod-information-list .list-item .title {
  margin: 0;
  padding: 0;
  border: none;
  text-align: left;
  color: #414141;
  text-decoration: none;
  font-size: calc(14 / 430 * var(--base-unit));
}
.studio-news-wrap .news-note {
  font-size: calc(13 / 430 * var(--base-unit));
  padding: 0 calc(15 / 430 * var(--base-unit));
}

.studio-blog-wrap {
  background: #F6F4EE;
}
#studio-blog {
  padding: calc(30 / 430 * var(--base-unit)) 0px;
}
#studio-blog .title {
  background:none;
  margin: 0 calc(25 / 430 * var(--base-unit));
  padding: 0 0 calc(25 / 430 * var(--base-unit)) 0;
  text-align: center;
  border-bottom: 1px solid #D4CBB3;
  color: #414141;
  text-decoration: none;
  font-size: calc(14 / 430 * var(--base-unit));
}
#studio-blog .mod-information-list .title {
  margin: 0;
  padding: 0;
  border:none;
  text-align: left;
  font-size: calc(14 / 430 * var(--base-unit));
}
#studio-blog .mod-information-list .list-item {
  background: none;
}
#studio-blog .mod-information-list {
  border: none;
}
#studio-blog .mod-information-list .list-item > a {
  margin: 0 calc(25 / 430 * var(--base-unit));
  padding: calc(25 / 430 * var(--base-unit)) 0;
  border-bottom: 1px solid #D4CBB3;
  background: none;
  position: relative;
}
#studio-blog .mod-information-list .list-item > a:hover {
  opacity: 0.6;
}
#studio-blog .mod-information-list .list-item > a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(4 / 430 * var(--base-unit));
  transform: translateY(-50%);
  width: calc(7 / 430 * var(--base-unit));
  height: calc(7 / 430 * var(--base-unit));
  background-image: url(/studio/img/arrow03.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: right 0.3s ease;
}
#studio-blog .mod-information-list .list-item .date {
  color: #8D732B;
  font-weight: 700;
}
#studio-blog .mod-link-more {
  text-align: center;
  margin-top: calc(18 / 430 * var(--base-unit));
}
#studio-blog .mod-link-more a {
  position: relative;
  padding: calc(14 / 430 * var(--base-unit)) calc(80 / 430 * var(--base-unit));
  border: 1px solid #414141;
  border-radius: 100px;
  color: #414141;
  text-decoration: none;
  font-size: calc(13 / 430 * var(--base-unit));
  font-weight: 600;
  display: inline-flex;
  align-content: center;
  align-items: center;
  gap: 8px;
  transition: transform .3s ease;
  background: #fff;
}
#studio-blog .mod-link-more a:hover {
    border: 1px solid #8D732B;
    color: #8D732B;
}
#studio-blog .mod-link-more a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(16 / 430 * var(--base-unit));
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  background-image: url(/studio/img/arrow02.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: right 0.3s ease;
}
#studio-blog .mod-link-more a:hover:after {
    right: 10px;
}
#studio-blog .mod-link-more a > span {
  background:none;
}

/* お客さまの声 */
.carousel .stage{
  display: grid;
  width: 100%;
}

.carousel .card{
  grid-area: 1 / 1 / 2 / 2;
  width: 100%;
  box-sizing: border-box;
  background:#fff;
  border-radius:calc(12 / 430 * var(--base-unit));
  padding:calc(20 / 430 * var(--base-unit));
  box-shadow:0 calc(2 / 430 * var(--base-unit)) calc(10 / 430 * var(--base-unit)) rgba(0,0,0,0.06);

  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:
    opacity 450ms ease,
    visibility 0s linear 450ms;
}

.carousel .card.is-active{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transition:
    opacity 450ms ease,
    visibility 0s linear 0s;
}

.carousel .card-head{
  display:flex;
  align-items:center;
  gap: calc(14 / 430 * var(--base-unit));
}

.carousel .card-illust{
  width: calc(60 / 430 * var(--base-unit));
  height: calc(60 / 430 * var(--base-unit));
  flex-shrink:0;
}

.carousel .card-illust img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.carousel .card-title{
  font-size: calc(15 / 430 * var(--base-unit));
  font-weight:700;
  line-height:1.4;
  margin:0;
}

.carousel .card-title span{
  display:block;
  font-size: calc(12 / 430 * var(--base-unit));
  font-weight:400;
  color:#888;
  margin-top: calc(4 / 430 * var(--base-unit));
}

.carousel .card-text{
  margin-top: calc(14 / 430 * var(--base-unit));
  font-size: calc(14 / 430 * var(--base-unit));
  line-height:1.7;
  color:#555;
}

.carousel .indicators{
  display:flex;
  justify-content:center;
  align-items:center;
  gap: calc(10 / 430 * var(--base-unit));
  margin-top: calc(16 / 430 * var(--base-unit));
}

.carousel .indicator{
  -webkit-appearance:none;
  -moz-appearance:none;
  appearance:none;
  display:block;
  box-sizing:border-box;
  width: calc(9 / 430 * var(--base-unit));
  height: calc(9 / 430 * var(--base-unit));
  min-width: calc(9 / 430 * var(--base-unit));
  min-height: calc(9 / 430 * var(--base-unit));
  flex:0 0 auto;
  border-radius:50%;
  background-color:#E3E3E3;
  border:none;
  margin:0;
  padding:0;
  cursor:pointer;
  transition: background-color 450ms ease, transform 0.2s ease;
}

.carousel .indicator:hover{
  transform: scale(1.15);
}

.carousel .indicator.is-active{
  background-color:#8D732B;
}

.carousel .indicator:focus-visible{
  outline:2px solid #8D732B;
  outline-offset: calc(2 / 430 * var(--base-unit));
}



/* タブレット・デスクトップ */
@media (min-width: 702px) {
#studio-data .guide-nav-list{
  margin-bottom: 0;
}

#studio-data {
  padding-bottom: 40px !important;
  border:none;
  margin-bottom: 0 !important;
}
#studio-data .data-wrap {
  width: calc(100% - 30px);
  padding: 0 15px;
  margin-bottom: 40px;
}
#studio-data .photo-gallery img {
  height: 250px;
}

#studio-data .data-wrap .icon li {
    padding: 5px 15px;
    border-radius: 100px;
}
#studio-data .border {
    padding: 25px 0;
}
#studio-data .border p {
  font-size: 14px;
}
#studio-data .studio-item {
    display: flex;
}
#studio-data .studio-item h3 {
  flex:2;
}
#studio-data .studio-item .studio-item-txt {
  flex:9;
}

.studio-voice {
  padding: 10px;
}
.studio-voice .col {
  box-shadow: 0 0 6px #ccc;
  border-radius: 20px;
  padding: 20px;
}
.studio-news-wrap {
  margin-bottom: 40px;
}
.studio-news-wrap .mod-information-list .list-item {
  padding: 20px 0;
}
.studio-news-wrap .mod-information-list .list-item a {
  padding: 10px 26px 11px 20px;
}
.studio-news-wrap .mod-information-list .list-item a::after {
    right: 26px;
    width: 7px;
    height: 7px;
}
.studio-news-wrap .mod-information-list .list-item .title,
#studio-blog .mod-information-list .title {
  font-size: 14px;
}
.studio-news-wrap .news-note {
  font-size: 13px;
  padding: 0 15px;
}
#studio-blog {
  padding: 30px 0px;
  margin-bottom: 40px !important;
}
#studio-blog .title {
  margin: 0 25px;
  padding: 0 0 25px 0;
  font-size: 20px;
}
#studio-blog .mod-information-list .list-item > a {
  margin: 0 25px;
  padding: 25px 0;
}
#studio-blog .mod-information-list .list-item > a::after {
  right: 4px;
  width: 7px;
  height: 7px;
}
#studio-blog .mod-link-more {
  margin-top: 18px;
}
#studio-blog .mod-link-more a {
  padding: 14px 80px;
  border-radius: 100px;
  font-size: 13px;
  gap: 8px;
}
#studio-blog .mod-link-more a::after {
  right: 16px;
  width: 7px;
  height: 7px;
}

#studio-data .photo-gallery img { 
  height: 400px; 
}
  .mod-table tbody th {
    font-size: 17px;
  }

  
  

  /* お客さまの声 */
.carousel .card{
  border-radius: 12px;
  padding: 20px;
  box-shadow:0 2px 10px rgba(0,0,0,0.06);
}
.carousel .card-head{
  gap: 14px;
}

.carousel .card-illust{
  width: 60px;
  height: 60px;
}

.carousel .card-title{
  font-size: 15px;
}

.carousel .card-title span{
  font-size: 12px;
  margin-top: 4px;
}

.carousel .card-text{
  margin-top: 14px;
  font-size: 14px;
}

.carousel .indicators{
  gap: 10px;
  margin-top: 16px;
}

.carousel .indicator{
  width: 9px;
  height: 9px;
  min-width: 9px;
  min-height: 9px;
}
.carousel .indicator:focus-visible{
  outline-offset: 2px;
}

}



