@charset "utf-8";
/*Font読み込み*/
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1&display=swap');
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");
/*一括設定*/ :root {
  --main-color: #5C82A4; /*blue*/
  --primary-color: #002F4C; /*navy*/
  --secondary-color: #cce6ff; /*lightblue*/
  --secondary-inverse-color: #fff; /*white*/
  --base-max-width: 1500px;
}
/*animation1(ハンバーガー)*/
@keyframes animation1 {
  0% {
    left: -200px;
  }
  100% {
    left: 0px;
  }
}
/*opa1*/
@keyframes opa1 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*全体の設定*/
html, body {
  height: 100%;
}
body * {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  font-family: 'M PLUS 1', 'ヒラギノ丸ゴ ProN W4', 'Hiragino Maru Gothic Pro', 'メイリオ', 'Meiryo', 'Osaka', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  text-size-adjust: none;
  background: #E6E5E4;
  color: #484848; /*文字色*/
  line-height: 2.2; /*行間*/
  animation: opa1 0.2s 0.5s both; /*0.5秒待機・0.2秒でフェードイン表示*/
}
/*リセットCSS*/
figure {
  margin: 0;
}
dd {
  margin: 0;
}
nav, ul, li, ol {
  margin: 0;
  padding: 0;
}
nav ul {
  list-style: none;
}
section li {
  margin-left: 2rem;
  margin-right: 2rem;
}
img {
  border: none;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
video {
  border: none;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
/*youtube*/
iframe {
  width: 100%;
  border: none;
  padding: 0;
  margin: 0;
}
/*link*/
a {
  color: #5C82A4;
  transition: 0.3s; /*hover時間*/
}
a:hover {
  color: var(--main-color);
}
/*マーカー*/
.marker-r {
  background: linear-gradient(transparent 70%, #f2a0a1 70%);
}
.marker-y {
  background: linear-gradient(transparent 70%, #EEE8A9 70%);
}
/*その他*/
input {
  font-size: 1rem;
}
section + section {
  padding-top: 3vw;
}
/*---------------------------------------------------------------------------
container
---------------------------------------------------------------------------*/
#container {
  height: 100%;
  max-width: var(--base-max-width);
  padding-right: 3vw;
  padding-left: 3vw;
  padding-bottom: 0; /*上下、左右へのコンテナー内の余白。100vwが画面幅100%の事。*/
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 0;
}
/*---------------------------------------------------------------------------
header
---------------------------------------------------------------------------*/
.parent {
  display: flow-root;
}
.top_logo {
  float: left;
  margin: 20px auto 20px 5px;
}
.tell {
  float: right;
}
.tell_number {
  padding: 10px;
  margin: 15px 5px 0px;
  width: 420px;
  height: auto;
  text-align: center;
  line-height: 1.3; /*行間*/
  background: var(--secondary-color);
  border-radius: 10px;
}
.tell_mail {
  padding: 15px;
  margin: 0px 5px;
  height: auto;
  text-align: center;
  line-height: 1.2; /*行間*/
}
.exmenu {
  margin: 0px;
  padding: 0 10px;
  background: var(--main-color);
  font-size: 14px;
  text-align: end;
  color: #fff;
  display: flex;
  flex: 0 0 auto;
  justify-content: space-between;
}
.exmenu a {
  color: #fff;
}
.exmenu_mini {
  margin: 0px;
  padding: 0 10px;
  background: var(--main-color);
  font-size: 14px;
  text-align: end;
  color: #fff;
  display: flex;
  flex: 0 0 auto;
}
.exmenu_mini a {
  color: #fff;
}
@media screen and (min-width:980px) {
  .exmenu_mini {
    display: none;
  }
}
@media screen and (max-width: 980px) {
  .top_logo {
    display: block;
    flex-direction: column;
    height: auto;
    width: 60%;
    margin: 20px 5px;
  }
  div.tell {
    display: none;
  }
  .exmenu {
    display: none;
  }
}
}
/*-----------------------------------------------------------------------------
menu
---------------------------------------------------------------------------*/
#menubar {
  opacity: 0;
  line-height: 1.5;
}
#menubar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.large-screen #menubar {
  opacity: 1;
}
.small-screen #menubar.display-none {
  display: none;
}
.small-screen #menubar.display-block {
  display: block;
  opacity: 1;
}
#menubar_hdr.display-none {
  display: none;
}
.ddmenu_parent ul {
  display: none;
}
a.ddmenu::before {
  font-family: "Font Awesome 5 Free";
  content: "\f103"; /*Font Awesome*/
  font-weight: bold;
  font-size: 0.7rem;
  padding-right: 0.5rem;
}
/*---------------------------------------------------------------------------
menu-大端末・小端末共通メニュー設定
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar a {
  display: block;
  text-decoration: none;
  padding-top: 0px;
  padding-right: 0;
  padding-left: 0;
  padding-bottom: 2px;
  font-size: 16px;
}
/*---------------------------------------------------------------------------
menu-大端末設定
---------------------------------------------------------------------------*/
/*メニューブロックを囲むボックス*/
.large-screen #menubar {
  top: 0;
  z-index: 2;
  transition: opacity 0.3s;
}
/*メニューブロック全体*/
.large-screen #menubar > nav > ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/*メニュー１個あたりの設定*/
.large-screen #menubar li {
  flex: 1;
  position: relative;
  text-align: center;
}
/*link*/
.large-screen #menubar li a {
  flex: 1;
  background: var(--main-color);
  color: #fff;
  padding: 0.8rem 0;
  font-size: 16px;
}
.large-screen #menubar li a:hover {
  background: var(--primary-color);
  color: #fff;
}
/*---------------------------------------------------------------------------
ddmenu-大端末・小端末共通ドロップダウンメニュー設定
---------------------------------------------------------------------------*/
/*ドロップダウンブロック*/
.large-screen #menubar ul ul, .small-screen #menubar ul ul {
  animation: opa1 0.5s 0.1s both; 
}
/*---------------------------------------------------------------------------
ddmenu-大端末ドロップダウンメニュー
---------------------------------------------------------------------------*/
.large-screen #menubar ul ul {
  position: absolute;
  z-index: 2;
  width: 100%;
  top: 100%;
  left: 0px;
}
.large-screen #menubar ul ul a {
  font-size: 16px;
  padding: 0.6rem 1rem !important;
  background: #fff;
  color: var(--main-color);
}
.large-screen #menubar ul ul a:hover {
  background: var(--main-color);
  color: #fff;
}
/*---------------------------------------------------------------------------
ddmenu-小端末用の開閉ブロック
---------------------------------------------------------------------------*/
.minitext {
  text-align: center;
  background: var(--main-color);
  color: #fff;
  line-height: 1.5;
  padding: 5px;
}
.minitext a {
  color: var(--secondary-color);
}
.small-screen #menubar p a {
  color: #fff;
}
.small-screen #menubar.display-block {
  position: fixed;
  overflow: auto;
  z-index: 200;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  padding-top: 90px;
  background: var(--secondary-color);
  animation: animation1 0.2s both;
  color: var(--primary-color);
}
.small-screen #menubar li {
  border: 1px solid #fff;
  margin: 1rem;
  border-radius: 5px;
}
.small-screen #menubar a {
  color: inherit;
  padding: 1rem 3rem;
}
.small-screen #menubar li li a {
  background: #fff;
  color: var(--primary-color);
}
/*---------------------------------------------------------------------------
ハンバーガーの設定
---------------------------------------------------------------------------*/
/*囲み枠*/
#menubar_hdr {
  animation: opa1 0.3s 0.5s both;
  position: fixed;
  z-index: 200;
  cursor: pointer;
  top: 2vw; /*上からの配置場所*/
  right: 2vw; /*右からの配置場所*/
  width: 50px; /*幅*/
  height: 50px; /*高さ*/
  padding: 15px; /*ブロック内の余白*/
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.5s;
  border-radius: 15px;
  background: var(--primary-color); /*背景色*/
}
/*ボタン設定*/
#menubar_hdr div {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
/*≡の設定*/
#menubar_hdr div span {
  display: block;
  width: 100%;
  height: 2px; /*線の太さ*/
  background-color: #fff; /*線の色*/
  border-radius: 2px; /*コーナーを少しだけ丸く*/
  transition: all 0.5s ease-in-out;
  position: absolute;
}
/*設定*/
#menubar_hdr div span:nth-child(1) {
  top: 0;
}
#menubar_hdr div span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
#menubar_hdr div span:nth-child(3) {
  bottom: 0;
}
#menubar_hdr.ham div span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
#menubar_hdr.ham div span:nth-child(2) {
  opacity: 0;
}
#menubar_hdr.ham div span:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
/*---------------------------------------------------------------------------
メイン画像スライドショー（slick）
---------------------------------------------------------------------------*/
.slick-slide {
  display: none;
}
.slick-slide.slick-initialized {
  display: block;
}
.mainimg-slick {
  margin-bottom: 80px;
}
ul.slick-dots {
  margin: 0;
  padding: 0;
  line-height: 1;
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: -30px;
}
ul.slick-dots li {
  display: inline-block;
  margin: 0px 10px;
  cursor: pointer;
}
/*buttonタグ*/
ul.slick-dots li button {
  border: none;
  padding: 0;
  display: block;
  text-indent: -9999px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  cursor: pointer;
  background: #ccc;
}
ul.slick-dots li.slick-active button {
  background: var(--primary-color);
}
/*---------------------------------------------------------------------------
main
---------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------
index1段目
---------------------------------------------------------------------------*/
h2 {
  line-height: 1.2; /*行間*/
  border-bottom: 3px dotted var(--primary-color);
  color: var(--primary-color);
  padding: 0 0 0.2rem 0.2rem;
  font-weight: normal;
  font-size: 16px;
  margin: 5px 0 0.5rem 0;
}
.toppage {
  max-width: var(--base-max-width);
  min-width: auto;
}
.top {
  margin: 0;
  padding: 0;
  justify-content: space-between;
  display: flex;
  flex-shrink: 0;
}
.carousel {
  align-items: center;
  padding: 10px 5px 0 0;
}
.item {
  max-width: 700px;
  min-width: auto;
  hight: auto;
  box-sizing: border-box;
}
.b-resize {
  margin: 0 0 1rem 0;
  width: auto;
}
.update {
  overflow: hidden;
  margin: 10px 0 10px 10px;
  padding: 0px 20px;
  background: #fff;
  line-height: 1.2; /*行間*/
  width: 100%;
}
.updateitem {
  margin: 1.5rem 0 0 0;
  width: auto;
  flex-shrink: 0;
}
.news {
  width: auto;
  line-height: 1.2;
  text-align: center;
  list-style: none;
  margin: 0 auto 0 6em;
  padding-left: 10px;
  box-sizing: border-box;
}
.news li {
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  flex-shrink: 0;
}
.news span.time {
  width: 6em;
  height: auto;
  display: inline-block;
  padding: 0;
  margin: 0 0 0 -8rem;
  vertical-align: top;
  position: relative;
  text-align: right;
  box-sizing: border-box;
  flex-shrink: 0;
  line-height: 1.2; /*行間*/
}
.news span {
  width: auto;
  vertical-align: top;
  flex-shrink: 0;
}
.news .sch_box {
  text-align: left;
  display: inline-block;
  width: 100%;
  margin: 0 0 0.5rem 0;
  padding: 0 0 0 5px;
  vertical-align: top;
  box-sizing: border-box;
  flex-shrink: 0;
}
.news .sch_tx {
  transform: scale(1);
  font-weight: normal;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  height: auto;
}
.news li {
  width: auto;
  box-sizing: border-box;
  line-height: 1.2; /*行間*/
}
/*モバイル表示*/
@media screen and (max-width: 1100px) {
  .top {
    flex-direction: column;
    align-items: center;
  }
  .update {
    width: 100%;
    margin: 0 auto 5px;
  }
}
@media screen and (max-width: 980px) {
  .carousel {
    margin: 0 auto 5px;
    max-width: 100%;
    hight: auto;
  }
}
/*---------------------------------------------------------------------------
index2段目
---------------------------------------------------------------------------*/
.hidden-pc {
  display: none;
}
.about h1 {
  font-weight: normal;
  font-size: 19px;
  color: #fff;
  position: relative;
  display: inline-block;
  padding: 0 60px;
  text-align: center;
  line-height: 1.0;
}
.about h1:before, .about h1:after {
  position: absolute;
  top: calc(50% - 3px);
  width: 50px;
  height: 6px;
  content: '';
  border-top: solid 2px #fff;
  border-bottom: solid 2px #fff;
}
.about h1:before {
  left: 0;
}
.about h1:after {
  right: 0;
}
.about {
  display: grid;
  grid-template-columns: 22rem auto;
  grid-template-rows: repeat;
  gap: 10px;
  height: auto;
  margin: 5px 0;
}
.about p {
  margin: 0;
  padding: 0;
  color: #fff;
}
.language_size_big {
  width: 750px;
  margin: auto;
  box-sizing: border-box;
}
.top_langage {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.top_langage img {
  margin: 5px;
  padding: 0;
}
.div1 {
  background-color: var(--main-color);
  grid-column-start: 2;
  grid-row-start: 1;
  padding: 2rem 1rem;
  text-align: center;
}
@media screen and (max-width: 980px) {
  .language_size_big {
    width: auto;
  }
  .top_langage_big img {
    margin: 10px;
  }
}
@media screen and (min-width: 650px) {
  .language_size_mini {
    display: none;
  }
}
@media screen and (max-width: 650px) {
  .language_size_big {
    display: none;
  }
  .language_size_mini {
    width: auto;
  }
  .top_langage_mini img {
    margin: 10px;
  }
  .hidden-pc {
    display: block;
  }
  .hidden-sp {
    display: none;
  }
}
/*---------------------------------------------------------------------------
index3段目
---------------------------------------------------------------------------*/
.div3 {
  grid-column-start: 2;
  grid-row-start: 2;
  background-color: #fff;
  background-image: url("../images/index/pickup_bg.jpg");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: cover;
}
h5 {
  font-weight: normal;
  font-size: 20px;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
  padding: 0 50px;
  margin: 20px 0 0 0;
}
h5:before, h5:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 45px;
  height: 1px;
  background-color: var(--primary-color);
}
h5:before {
  left: 0;
}
h5:after {
  right: 0;
}
.pickup01 {
  display: grid;
  box-sizing: border-box;
  grid-template-columns: 45% 55%;
  grid-template-rows: auto;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}
.pick1_div1 {
  margin: 15px 5px 15px 15px;
  grid-area: 1 / 1 / 2 / 2;
  color: #343434;
}
.pick1_div2 {
  grid-area: 1 / 2 / 2 / 3;
  padding: 5px;
  margin: 15px 15px 15px 5px;
  color: #343434;
}
.pickup02 {
  display: grid;
  box-sizing: border-box;
  grid-template-columns: 55% 45%;
  grid-template-rows: auto;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}
.pick2_div1 {
  grid-area: 1 / 1 / 2 / 2;
  padding: 5px;
  margin: 15px 5px 15px 15px;
  color: #343434;
}
.pick2_div2 {
  margin: 10px;
  grid-area: 1 / 2 / 2 / 3;
  padding: 5px;
  margin: 15px 15px 15px 5px;
  color: #343434;
}
@media screen and (max-width: 650px) {
  .pickup01 {
    display: flex;
    flex-direction: column;
    margin: 20px;
    padding: 0;
  }
  .pickup02 {
    display: flex;
    flex-direction: column;
    margin: 20px;
    padding: 0;
  }
  .pick1_div2 {
    margin: 0;
    padding: 0;
  }
  .pick1_div1 {
    margin: 20px 5px;
    padding: 0;
  }
  .pick2_div2 {
    order: 1;
    margin: 10px 5px;
    padding: 0;
  }
  .pick2_div1 {
    order: 2;
    margin: 0;
    padding: 0;
  }
}
/*---------------------------------------------------------------------------
index4段目
---------------------------------------------------------------------------*/
#info {
  padding: 20px;
  margin: 0;
  background: #fff;
}
/*---------------------------------------------------------------------------
index左メニュー
---------------------------------------------------------------------------*/
.div5 {
  padding: 1rem;
  background-color: #fff;
  grid-row: span 3 / span 3;
  grid-column-start: 1;
  grid-row-start: 1;
}
.div5 p {
  line-height: 1.5; /*行間*/
  color: #484848;
}
.div5 p img {
  margin: 0px 0px 5px 0px;
  max-width: 300px;
}
.campaign {
  max-width: 300px;
  display: block;
  position: relative;
  text-decoration: none;
}
.campaign img {
  display: block;
  max-width: 300px;
}
.campaign:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  background: #fff;
  opacity: 0;
  transition: 0.3s;
}
.campaign:after {
  content: "CHECK IT!";
  font-size: 20px;
  display: block;
  color: #000;
  line-height: 48px;
  width: 180px;
  border: solid 1px #000;
  border-radius: 5px;
  text-align: center;
  position: absolute;
  top: 45%;
  left: 50%;
  margin-top: -1em;
  margin-left: -90px;
  opacity: 0;
  z-index: 3;
  transition: 0.3s;
  font-weight: bold;
  letter-spacing: 0.2em;
}
.campaign:hover:before {
  opacity: 0.6;
}
.campaign:hover:after {
  opacity: 1;
  margin-top: -0.5em;
}
@media screen and (max-width: 1100px) {
  .div5_sub {
    display: none;
  }
  .campaign {
    margin: auto;
  }
}
@media screen and (max-width: 1100px) {
  .about {
    display: flex;
    flex-direction: column;
  }
}
/*---------------------------------------------------------------------------
各コンテンツのヘッダー設定
---------------------------------------------------------------------------*/
.titlename p {
  font-size: 25px;
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
  position: relative;
  margin: 0;
  padding: 0;
}
.titlename p::after {
  content: '';
  width: 60px;
  height: 4px;
  display: inline-block;
  background-color: var(--primary-color);
  position: absolute;
  bottom: 3px;
  left: calc(50% - 30px)
}
.titlename span {
  display: block;
  text-align: center;
  font-size: 18px;
  margin: 0;
  padding: 0;
}
.flow_title {
  border-width: 10px;
  max-width: var(--base-max-width);
  max-height: 250px;
  margin: 10px 0;
  padding: 30px;
  border-radius: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/flow_bg.jpg");
}
.kids_title {
  border-width: 10px;
  max-width: var(--base-max-width);
  max-height: 250px;
  margin: 10px 0;
  padding: 30px;
  border-radius: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/lesson/kidslesson_bg.jpg");
}
.teens_title {
  border-width: 10px;
  max-width: var(--base-max-width);
  max-height: 250px;
  margin: 10px 0;
  padding: 30px;
  border-radius: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/lesson/teenslesson_bg.jpg");
}
.ad_title {
  border-width: 10px;
  max-width: var(--base-max-width);
  max-height: 250px;
  margin: 10px 0;
  padding: 30px;
  border-radius: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/lesson/adlesson_bg.jpg");
}
.ol_title {
  border-width: 10px;
  max-width: var(--base-max-width);
  max-height: 250px;
  margin: 10px 0;
  padding: 30px;
  border-radius: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/lesson/ollesson_bg.jpg");
}
.mc_title {
  border-width: 10px;
  max-width: var(--base-max-width);
  max-height: 250px;
  margin: 10px 0;
  padding: 30px;
  border-radius: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/lesson/mclesson_bg.jpg");
}
.mc_menu {
  text-align: center;
  font-size: 18px;
}
.eiken_title {
  border-width: 10px;
  max-width: var(--base-max-width);
  max-height: 250px;
  margin: 10px 0;
  padding: 30px;
  border-radius: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/lesson/eiken_bg.jpg");
}
.ac_title {
  border-width: 10px;
  max-width: var(--base-max-width);
  max-height: 250px;
  margin: 10px 0;
  padding: 30px;
  border-radius: 20px;
  background-position: cover;
  background-repeat: no-repeat;
  background-image: url("../images/ac_bg.jpg");
}
.mail_title {
  border-width: 10px;
  max-width: var(--base-max-width);
  max-height: 250px;
  margin: 10px 0;
  padding: 30px;
  border-radius: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/mail_bg.jpg");
}
.mail_line {
  display: flex;
}
.line_menu {
  margin: 0px;
  padding: 5px 10px;
}
@media screen and (max-width:650px) {
  .mail_line {
    display: inline-block;
  }
}
/*---------------------------------------------------------------------------
LESSON
---------------------------------------------------------------------------*/
h3 {
  padding: 0 1rem;
  border-left: 4px solid var(--primary-color);
  font-size: 18px;
  font-weight: normal;
  color: var(--primary-color)
}
.lesson h4 {
  position: relative;
  line-height: 1.4;
  font-size: 16px;
  font-weight: normal;
  padding: 8px 8px 8px calc(1.5em + 13px);
  background: var(--main-color);
  color: #fff;
  border-radius: 8px;
}
.lesson h4:before {
  position: absolute;
  left: 15px;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  font-family: "Font Awesome 5 Free";
  font-weight: 980;
  content: '\f08d';
  height: auto;
}
.lesson_contents {
  max-width: 1300px;
  display: flex;
  gap: 10px;
}
.lesson_detail {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  align-items: stretch;
  margin: 10px;
}
.lesson_left {
  width: 100%;
  padding: 10px;
}
.lesson_right {
  width: 450px;
  padding: 10px;
  margin: 10px 0;
  font-size: 16px;
  color: var(--primary-color);
}
@media screen and (max-width:1100px) {
  .lesson_right {
    display: none;
  }
}
.price {
  margin: 0;
}
.price_contents {
  display: flex;
}
.price_menu {
  width: 120px;
  margin: 5px;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  box-sizing: border-box;
  background: var(--main-color);
  color: #fff;
}
.price_yen {
  width: 450px;
  margin: 5px;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  box-sizing: border-box;
  background: var(--secondary-color);
}
@media screen and (max-width: 650px) {
  .price_contents {
    display: inline-block;
    width: 95%;
  }
  .price_menu br {
    display: none;
  }
  .price_menu {
    width: auto;
  }
  .price_yen {
    width: auto;
  }
  .eiken_program {
    display: grid;
    grid-template-columns: 70px auto;
    grid-template-rows: repeat(2, auto);
    grid-column-gap: 5px;
    grid-row-gap: 5px;
  }
  .eiken_p1 {
    grid-area: 1 / 1 / 2 / 3;
    display: none;
  }
  .eiken_p2 {
    grid-area: 2 / 1 / 3 / 2;
    border: none;
    padding: 2px;
    margin: 2px 2px 0px 2px;
  }
  .eiken_p3 {
    grid-area: 2 / 2 / 3 / 3;
    width: auto;
    border: none;
    padding: 2px;
    margin: 2px 2px 0px 2px;
  }
}
/*---------------------------------------------------------------------------
STAFF
---------------------------------------------------------------------------*/
.introduction {
  display: inline-block;
  width: 200px;
  height: auto;
  font-size: 14px;
  padding: 0 3px;
}
.multi_lesson h2 {
  position: relative;
  line-height: 1.4;
  font-size: 18px;
  font-weight: normal;
  padding: 8px 8px 8px calc(1.5em + 13px);
  background: var(--primary-color);
  color: #fff;
  border-radius: 8px;
}
.multi_lesson h2:before {
  position: absolute;
  left: 15px;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  font-family: "Font Awesome 5 Free";
  font-weight: 980;
  content: '\f5ad';
}
.multi_lesson h4 {
  position: relative;
  line-height: 1.4;
  font-size: 1em;
  font-weight: normal;
  padding: 8px 8px 8px calc(1.5em + 13px);
  background: var(--primary-color);
  color: #fff;
  border-radius: 8px;
}
.multi_lesson h4:before {
  position: absolute;
  left: 15px;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  font-family: "Font Awesome 5 Free";
  font-weight: 980;
  content: '\f0c6';
}
.multi_menu {
  display: flex;
  margin: 10px;
}
.multi_time {
  width: 80%;
  box-sizing: border-box;
  padding: 0 10px;
  margin: 0 0 0 10px;
}
.multi_cam {
  position: relative;
  margin: 2em 15px 1em 15px;
  padding: 1em;
  border: solid 3px red;
  border-radius: 8px;
  align-items: stretch;
}
.multi_cam .box-title {
  position: absolute;
  display: inline-block;
  top: -13px;
  left: 10px;
  padding: 0 9px;
  line-height: 1;
  font-size: 19px;
  background: #E6E5E4;
  color: red;
}
.multi_cam p {
  margin: 0;
  padding: 0;
}
.multilangage {
  max-width: 1100px;
}
.multilangage img {
  width: 100%;
}
.multi_teacher {
  display: flex;
}
.mt {
  width: 200px;
  margin: 0 10px;
}
.mt_i {
  margin: 0;
  padding: 0;
}
.mt_name {
  font-size: 18px;
  max-width: 200px;
  border-bottom: double 5px var(--primary-color);
  color: var(--primary-color);
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1.3; /*行間*/
}
.mt_introduction {
  display: inline-block;
  font-size: 14px;
  line-height: 1.5; /*行間*/
  margin: 0;
  padding: 0;
}
.hangul {
  display: flex;
}
.h_div1 {
  border-radius: 5px;
  margin: 5px;
  align-items: stretch;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--main-color);
  color: #fff;
}
.germany_lesson {
  display: flex;
}
.germany {
  max-width: 980px;
  display: flex;
}
.g_div1 {
  border-radius: 5px;
  margin: 5px;
  align-items: stretch;
  width: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--main-color);
  color: #fff;
}
.germany_time {
  max-width: 980px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.g_div2 {
  width: 200px;
  border-radius: 5px;
  border-width: 2px;
  border-style: solid;
  border-color: var(--main-color);
  padding: 0px 10px;
  text-align: center;
  margin: 5px;
  height: auto;
  background: #fff;
}
.g_div3 {
  width: 150px;
  padding: 0px 10px;
  margin: 5px;
  border-radius: 5px;
  text-align: center;
  background: var(--main-color);
  color: #fff;
  align-items: center;
}
@media screen and (max-width: 650px) {
  .multi_teacher {
    display: block;
  }
  .multi_teacher .mc {
    width: 100%;
    margin: 0 auto;
  }
  .multi_teacher .mc_i {
    width: 100%;
    margin: 0 auto;
  }
  .mt_name {
    margin: 0 10px;
  }
  .mt_introduction {
    margin: 0 10px;
  }
}
@media screen and (max-width: 1100px) {
  .multi_menu {
    display: flex;
    flex-direction: column;
  }
  .multi_time {
    padding: 0;
    margin: 0;
    width: auto;
  }
  .multi_img {
    text-align: center;
  }
}
/*---------------------------------------------------------------------------
access
---------------------------------------------------------------------------*/
.ac-ad h2 {
  position: relative;
  line-height: 1.4;
  font-size: 1em;
  font-weight: normal;
  padding: 8px 8px 8px calc(1.5em + 13px);
  background: var(--primary-color);
  color: #fff;
  border-radius: 8px;
}
.ac-ad h2:before {
  position: absolute;
  left: 15px;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  font-family: "Font Awesome 5 Free";
  font-weight: 980;
  content: '\f08d';
  height: auto;
}
.ac {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 500px auto;
  gap: 1rem;
  justify-content: center;
  width: 100%;
  margin: 0px auto 40px;
  padding: 0px 10px;
  line-height: 1.5; /*行間*/
}
.ac-photo {
  grid-row: 1 / 2;
  grid-column: 2 / 3;
  height: auto;
  padding: 10px 0 0 0;
}
.ac-photo img {
  max-width: 500px;
  height: auto;
}
.ac-map {
  grid-row: 2 / 3;
  grid-column: 1 / 3;
  max-height: 300px;
  margin: 5px 0;
}
.flow_tell {
  background-color: var(--secondary-color);
  border-radius: 20px;
  padding: 10px;
  margin: 5px 0;
}
.mailform {
  width: 100%
}
@media screen and (max-width: 980px) {
  .ac-ad {
    order: 2;
    height: auto;
    margin: 0;
    padding: 0;
  }
  .ac-photo {
    order: 1;
    width: 100%;
    text-align: center;
    padding: 0;
  }
  .ac-photo img {
    max-width: 90%;
    height: auto;
  }
  .ac-map {
    display: none;
  }
  .ac {
    display: flex;
    flex-flow: column;
  }
}
/*---------------------------------------------------------------------------
PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop-show {
  display: block;
}
.pagetop a {
  display: block;
  text-decoration: none;
  text-align: center;
  z-index: 99;
  position: fixed;
  right: 20px;
  bottom: 20px;
  color: #fff;
  font-size: 1.5rem;
  background: rgba(0, 0, 0, 0.2);
  width: 60px;
  line-height: 60px;
  border-radius: 50%;
}
/*---------------------------------------------------------------------------
footer
---------------------------------------------------------------------------*/
#footermenu {
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.5rem 20vw 2rem 0;
  background: var(--main-color);
  margin-top: 7px;
}
#footermenu ul {
  margin: 0;
  list-style: none;
  padding: 0 0.3em 0 2em;
  flex: 1;
}
#footermenu li {
  margin: 0;
  list-style: none;
  padding: 0 0.3em;
  flex: 1;
}
#footermenu .title {
  padding-bottom: 5px;
  font-size: 1rem;
  color: #fff;
}
footer #footermenu a {
  text-decoration: none;
  color: #fff;
}
footer #footermenu a:hover {
  color: var(--secondary-color);
}
@media screen and (max-width: 980px) {
  #footermenu {
    display: none;
  }
}
.copyright {
  margin: 0px;
  padding: 0 10px;
  background: var(--main-color);
  font-size: 12px;
  color: #fff;
  text-align: center;
}
/*---------------------------------------------------------------------------
その他
---------------------------------------------------------------------------*/
.error img {
  max-width: 100%;
	height: auto;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
.color-theme, .color-theme a {
  color: var(--main-color) !important;
}
.l {
  text-align: left !important;
}
.c {
  text-align: center !important;
}
.r {
  text-align: right !important;
}
.ws {
  width: 95%;
  display: block;
}
.wl {
  width: 95%;
  display: block;
}
.mb0 {
  margin-bottom: 0px !important;
}
.mb30 {
  margin-bottom: 30px !important;
}
.look {
  display: inline-block;
  padding: 0px 10px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid #ccc;
  border-radius: 3px;
  word-break: break-all;
}
.small {
  font-size: 0.7em;
}
.large {
  font-size: 2em;
  letter-spacing: 0.1em;
}
.big1 {
  font-size: 24px;
}
.mini1 {
  font-size: 14px;
  display: inline-block;
  line-height: 1.5;
}
.pc {
  display: none;
}
.dn {
  display: none !important;
}
@media screen and (min-width : 980px) {
  .ws {
    width: 48%;
    display: inline;
  }
  .minitext {
    display: none;
  }
  .pc {
    display: block;
  }
}