/*========================================

  共通設定

========================================*/
* {
  margin: 0;
  padding: 0;
  line-height: 1.5em;
  box-sizing: border-box;
}
html {
  padding-top: 100px;
}
body {
  background-color: #fff;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #333;
  font-size: 16px;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

img {
  vertical-align: top;
}

.under-bar,
.under-bar:hover,
.under-bar:focus {
  display: inline-block;
  position: relative;
  color: currentcolor;
  text-decoration: none;
  text-decoration: none;
}
.under-bar:after {
  content: "";
  width: 100%;
  height: 5px;
  background-color: rgb(80, 223, 161);
  display: block;
  left: 0;
  right: 0;
  bottom: 0;
}
.sp_view {
  display: none;
}

.inner {
  max-width: 1080px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.flex-box {
  display: flex;
  flex-wrap: wrap;
}
.flex-box.flex-box_content-spacebetween {
  justify-content: space-between;
}
.flex-box.flex-box_content-center {
  justify-content: center;
}
.flex-box.flex-box_content-spacearound {
  justify-content: space-around;
}
.flex-box.flex-box_content-flexstart {
  justify-content: flex-start;
}
.flex-box.flex-box_align-center {
  align-items: center;
}
.flex-box.flex-box_align-flexstart {
  align-items: flex-start;
}

.btn {
  display: inline-block;
  font-size: 20px;
  padding: .5em 2em;
  background-color: #fff;
  font-weight: 700;
  text-align: center;
  border-radius: 5px;
}
.btn_call {
  background: #1f4ee6;
  color: #fff;
}
.btn_free_lesson {
  font-size: 20px;
  padding: 1em 5em;
  color: #333;
  background: url(../img/bg_right_caret.png) right 1em center, #fff;
  background-repeat: no-repeat;
}
.text .attention {
  margin: 20px 0;
  color: #999999;
  font-size: 12px;
}

.text_color-red{
  color: #ff495c;
}
.text_align-center{
  text-align: center;
}

/*========================================

  #header-wrapper
  追従ヘッダー

========================================*/
#header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 10;
}
/*========================================

  #header
  ヘッダー部分

========================================*/
#header {
  padding: 20px 0;
}
#header .logo {
  max-width: 175px;
  width: 100%;
}
#header .logo svg {
  vertical-align: top;
}
#header .icon_tel {
  margin-right: 40px;
}
#header .icon_tel a:hover {
  text-decoration: none;
  opacity: .9;
}
#header .icon_tel span {
  color: #333;
  font-size: 26px;
  text-decoration: none;
  position: relative;
  padding-left: 5px;
  font-weight: bold;
}
#header .icon_tel img {
  width: 35px;
}
#header .call_btn .btn_call:hover {
  text-decoration: none;
  opacity: .9;
}

/*========================================

  #main_navi
  メニュー部分

========================================*/
#main_navi {
  background: #e5edfd;
}
#main_navi ul {
  list-style: none;
  position: relative;
}
#main_navi ul > li {
  max-width: 250px;
  width: 100%;
}
#main_navi ul > li > a {
  display: block;
  padding: 20px 0;
  font-size: 18px;
  text-align: center;
  background: url(../img/bg_down_caret.png) center bottom 6px;
  background-repeat: no-repeat;
  color: #333;
}
#main_navi ul > li a span {
  display: block;
  line-height: 1.15;
  border-left: 1px solid #b7b7b7;
}
#main_navi ul > li:first-child a span {
  border-left: none;
}
#main_navi #mega_drop_menu {
  display: none;
  position: absolute;
  top: 60px;
  left: -250px;
  z-index: 5;
  background: #fff;
  padding: 30px;
  width: 750px;
  border-radius: 10px;
  box-shadow: 0 0 5px #ccc;
}
#main_navi #mega_drop_menu .text-title {
  text-align: center;
  font-size: 22px;
  margin-bottom: 30px;
}
#main_navi #mega_drop_menu a {
  display: block;
  transition: transform .5s, box-shadow .5s
}
#main_navi #mega_drop_menu a:hover {
  transform: translateY(-5px);
  box-shadow: 0 7px 10px #ccc;
}
/* #main_navi ul > li:hover > #mega_drop_menu {
  display: block;
} */

/*========================================

  .contents_under_campaign_box
  コースメニューの下_キャンペーン訴求文

========================================*/
.contents_under_campaign_box {
  background-color: #E5EDFD;
  padding: 20px;
  margin: 35px 0 0;
}
#content .contents_under_campaign_box > p,
#main_navi .contents_under_campaign_box > p {
  font-size: 18px;
  margin: 0;
  padding: 0;
  text-align: left;
}
#main_navi .contents_under_campaign_box {
  border-radius: 4px;
  margin: 20px 0 0;
}
@media only screen and (max-width: 992px){
  .contents_under_campaign_box,
  #main_navi .contents_under_campaign_box {
    padding: 10px;
    margin: 15px 0 0;
  }
  #content .contents_under_campaign_box > p,
  #main_navi .contents_under_campaign_box > p {
    font-size: 14px;
    margin: 0;
    padding: 0;
    text-align: left;
  }
}

/*========================================

  #content
  コンテンツ

========================================*/
#content  {}

/*========================================

  #main_visual
  メインビジュアル

========================================*/
#main_visual {
  background: #2f3e5a;
  max-height: 500px;
  position: relative;
  padding: 70px 0 60px;
}
#main_visual .main_text {
  text-align: center;
  position: relative;
  z-index: 2;
}
#main_visual .main_text h2 {
  font-size: 34px;
  color: #fff;
  font-weight: normal;
  line-height: 1.5em;
}
#main_visual .main_text h1 {
  font-size: 48px;
  color: #fff;
  line-height: 1.3em;
  margin: 35px 0 50px;
}

#main_visual ul {
  list-style: none;
  position: relative;
  z-index: 2;
}
#main_visual ul li {
  display: block;
  max-width: 172px;
  width: 100%;
  background: #004fef;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  line-height: 1;
  border-radius: 3px;
  margin-left: 7px;
  font-size: 18px;
}
#main_visual ul li:first-child {
  margin-left: 0;
}
#main_visual .bg-images {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  overflow: hidden;
}
#main_visual .bg-images img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}

/*========================================

  .sec_oricon
  オリコン顧客度

========================================*/
.sec_oricon {
  padding: 30px 0;
  text-align: center;
}

/*========================================

  .sec_conversion
  予約エリア

========================================*/
.sec_conversion {
  padding: 40px 0;
  background: #004fee;
}
.sec_conversion h3 {
  color: #fff;
  font-size: 30px;
  text-align: center;
  margin-bottom: 20px;
}
.sec_conversion p {
  color: #fff;
  text-align: center;
  font-size: 20px;
  margin-bottom: 1em;
}
.sec_conversion .tel_consaltation {
  margin-bottom: 0;
}
.sec_conversion .tel_consaltation a {
  color: #fff;
}
.sec_conversion .tel_consaltation a:hover {
  text-decoration: none;
}
.sec_conversion .call_btn {
  text-align: center;
  margin-bottom: 1em;
}
.sec_conversion .call_btn a:hover {
  text-decoration: none;
  opacity: .9;
}
.sec_conversion p small {
  font-size: 16px;
  margin-left: 1em;
}
.sec_conversion p .tel_number a {
  text-decoration: underline;
}
.sec_conversion p .tel_number a:hover {
  text-decoration: none;
}
.sec_conversion p small:first-child {
  margin-left: 0;
}
.sec_conversion p:last-child {
  margin-bottom: 0;
}

/*========================================

  .sec_recommended
  おすすめ
  .sec_performance

========================================*/
.sec_temp01 {
  padding-top: 60px;

}
.sec_temp01 .sec_title {
  padding-bottom: 30px;
  position: relative;
  margin-bottom: 50px;
}
.sec_temp01 .sec_title#berlitz_flex {
  padding-top: 60px;
}
.sec_temp01 .sec_title:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 4px;
  width: 100px;
  height: 4px;
  background: #004fee;
  left: 0;
  right: 0;
  margin: auto;
}
.sec_temp01 .sec_title h3 {
  font-weight: normal;
  text-align: center;
  font-size: 30px;
}
.sec_temp01 .sec_title h3 strong {
  display: block;
  font-size: 46px;
}
.sec_temp01 h4 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 40px;
}

.sec_temp01 p.big_text {
  font-size: 30px;
  text-align: center;
  margin-bottom: 35px;
}

.sec_temp01 .examples .box {
  max-width: 330px;
  width: 33.333%;
  background: #fff;
  box-shadow: 0 0 5px #ccc;
  margin-bottom: 35px;
}
.sec_temp01 .examples .box p {
  padding: 24px;
  font-size: 18px;
}
.sec_temp01 .examples .box p strong {
  font-weight: bold;
  color: #0066ff;
}
.sec_temp01 .examples .box p.title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
.sec_temp01 .logo_view {
  width: 100%;
  padding: 15px;
  max-width: 1080px;
  overflow: hidden;
  margin: 0 auto;
}
.sec_temp01 .logo_slider {
  margin-bottom: 1em;
}
.sec_temp01 .logo_slider img {
  width: 100%;
}
.sec_temp01 .logo_slider.slick-initialized .slick-slide {margin-right: 15px;}
.sec_temp01 p.attention {
  color: #999999;
  font-size: 12px;
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}
.sec_temp01.sec_performance {
  padding-bottom: 60px;
}
/*========================================

  .sec_world-quality
  世界品質

========================================*/
.sec_world-quality {
  height: 460px;
  padding: 60px 0 40px;
  background: url(../img/bg_world_quality.jpg) center center, #2f3e5b;
  background-repeat: no-repeat;
  position: relative;
}
.sec_world-quality:after {
  content: "";
  width: 0;
  height: 0;
  border-top: 20px solid #2f3e5a;
  border-left: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-right: 20px solid transparent;
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  margin: auto;
}
.sec_world-quality h3 {
  color: #fff;
  font-size: 48px;
  text-align: center;
  font-weight: normal;
  margin-bottom: 30px;
}
.sec_world-quality .qualities {
  max-width: 690px;
  width: 100%;
  border-radius: 5px;
  margin: auto;
  background: #fff;
  padding: 30px;
}
.sec_world-quality .qualities .box .image {
  text-align: center;
}
.sec_world-quality .qualities .box p {
  padding: 10px;
}
.sec_world-quality .qualities .box p strong{
  color:#0a7fc8;
}

/*========================================

  .sec_points
  ポイント

========================================*/
.sec_temp02 {
  padding: 60px 0;
}
.sec_points {
  padding: 0;
}
.sec_temp02 .point {
  padding: 60px 0 0;
}
.sec_points .point{
  padding-bottom: 0;
}
.sec_temp02 h3 {
  text-align: center;
  font-size: 38px;
  margin-bottom: 38px;
}
.sec_temp02 h3 strong {
  font-size: 46px;
  display: block;
}
.sec_temp02 .point p {
  font-size: 30px;
  text-align: center;
  margin-bottom: 1em;
}
.sec_temp02 .point p.subtitle {
  font-weight: bold;
  font-size: 30px;
  margin: 60px 0;
}
.sec_temp02 .point p.strong_text {
  font-weight: bold;
}
.sec_temp02 .point p em {
  color: #004fee;
  font-style: normal;
  font-weight: bold;
}
.sec_temp02 .point table {
  table-layout: fixed;
  width: 100%;
}
.sec_temp02 .point table tr > * {
  position: relative;
  padding: 24px 0;
}
.sec_temp02 .point table tr > *:first-child {
  width: 200px;
}
.sec_temp02 .point table tr > *:first-child br {
  display: none;
}
.sec_temp02 .point table tr > th:nth-child(3){
  background: #666;
}
.sec_temp02 .point table tr > td:nth-child(2){
  background: #e5edfd;
}
.sec_temp02 .point table tr > th {
  text-align: center;
  background: #004fee;
  color: #fff;
}
.sec_temp02 .point table thead tr > td {
  background: transparent;
}
.sec_temp02 .point table tr > td {
  background: #f1f1f1;
  padding: 24px 1em;
}
.sec_temp02 .point table tr > td ul {
  padding-left: 18px;
}
.sec_temp02 .point table tr > th .logo {
  max-width: 80px;
  margin-right: 1em;
}
.sec_temp02 .point table tr > th .logo img {
  width: 100%;
}
.sec_temp02 .point table tr > th .logo + span {
  color: #fff;
}

.sec_temp02 .point .point_box {
  background: #fff;
  box-shadow: 0 0 5px #ccc;
  padding: 60px 30px;
}
.sec_temp02 .point.point05 {
  padding-bottom: 0;
}
.sec_temp02 .point.point05 .point_box {
  margin-bottom: 20px;
} 

.sec_temp02 .point .point_box .tags {
  list-style: none;
  margin: 15px;
}
.sec_temp02 .point .point_box .tags li{
  display: inline-block;
  text-align: center;
  min-width: 70px;
  padding: 5px;
  border: 1px solid #ff495c;
  color: #ff495c;
  font-size: 12px;
}
.sec_rate_plan .point .point_box .tags {
  margin-left: 0;
}
.sec_temp02 .point .point_box .textbox ul.tag_list {
  list-style: none;
  margin: 15px 0;
  padding: 0;
}
.sec_temp02 .point .point_box .textbox ul.tag_list li{
  width: 32%;
  text-align: center;
  padding: 5px;
  border: 1px solid #ccc;
  color: #ff495c;
  font-size: 12px;
  color: #1d1d1d;
  margin-bottom: 2%;
}
.sec_temp02 .point .point_box .textbox ul.tag_list li:before {
  display: none;
}
.sec_temp02 .point .point_box h4 {
  font-size: 24px;
  text-align: center;
  margin-bottom: 40px;
}
.sec_temp02 .point .point_box .image {
  max-width: 490px;
}
.sec_temp02 .point .point_box .image {
  position: relative;
}
.sec_temp02 .point .point_box .textbox .image {
  text-align: center;
}
.sec_temp02 .point .point_box .textbox .image img {
  width: auto;
}
.sec_temp02 .point .point_box .image img {
  width: 100%;
}
.sec_temp02 .point .point_box .image .caption {
  padding: 20px 30px;
  background-color: rgba(0, 0, 0, .5);
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.sec_temp02 .point .point_box .image .caption p {
  font-size: 17px;
  margin: 0;
  text-align: left;
}
.sec_temp02 .point .point_box .image .caption p em {
  font-size: 1.2em;
  color: #fff;
}
.sec_temp02 .point .point_box .image .caption p em strong {
  font-size: 1.8em;
  line-height: 1;
}
.sec_temp02 .point .point_box .textbox {
  max-width: 490px;
  width: 50%;
  margin-left: 40px;
}
.sec_temp02 .point .point_box .textbox ol {
  padding-left: 20px;
}
.sec_temp02 .point .point_box .textbox h4 {
  text-align: left;
}
.sec_temp02 .point .point_box .textbox h5 {
  background: #004fee;
  color: #fff;
  padding: .5em;
  font-weight: normal;
  font-size: 18px;
  margin-bottom: 20px;
  text-align: center;
}
.sec_temp02 .point .point_box .textbox ul {
  padding-left: 20px;
  margin-bottom: 20px;
}
.sec_temp02 .point .point_box .textbox ul li {
  list-style: none;
  position: relative;
}
.sec_temp02 .point .point_box .textbox ul.list-style_disc li:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: -1em;
  top: .5em;
  background-color: rgb(0, 79, 239);
  height: 5px;
  width: 5px;
  border-radius: 50%;
}
.sec_temp02 .point .point_box .textbox ul.list-style_check li:before {
  content: "✔ ";
  display: inline-block;
  position: absolute;
  color: #004fee;
  font-weight: bold;
  font-size: 1.2em;
  left: -1em;
  top: 0;
}
.sec_temp02 .point .point_box .textbox ul.list-style_check li+li {
  margin-top: 20px;
}
.sec_temp02 .point .point_box .textbox ul.margin-zero {
  margin-bottom: 0;
}
.sec_temp02 .point .point_box .textbox p {
  font-size: 18px;
  text-align: left;
}
.sec_temp02 .point .point_box .textbox p.attention {
  font-size: 12px;
  margin-bottom: 1em;
}
.sec_temp02 .point .point_box .textbox p.campaign_txt {
  color: #ff495c;
  font-weight: bold;
}
.sec_temp02 .point .point_box .textbox p:last-child {
  margin-bottom: 0;
}
.sec_temp02 .point .point_box.course {
  padding: 25px 20px;
  margin-bottom: 40px;
}
.sec_temp02 .point .point_box.course p em {
  color: #333;
}
.sec_temp02 .point .point_box.course .textbox {
  width: calc(100% - 165px);
  margin: 0 15px 0 0;
}
.sec_temp02 .point .point_box.course .image {
  max-width: 150px;
}
.sec_temp02 .point .attention {
  color: #999999;
  font-size: 12px;
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  text-align: left;
}
.sec_temp02 .point .point_box + .attention {
  margin-top: 20px;
}

/*========================================

  .sec_online_english
  オンライン英会話

========================================*/
.sec_online_english .textbox {
  height: 280px;
  background: url(../img/bg_online_english01.jpg);
  background-repeat: no-repeat;
  margin-bottom: 70px;
}
.sec_online_english .textbox.textbox02 {
  background: url(../img/bg_online_english02.jpg);
  padding: 40px 30px;
  height: 240px;
}
.sec_online_english .textbox p {
  font-size: 36px;
  color: #fff;
  padding: 86px 100px;
}
.sec_online_english .textbox.textbox02 p {
  color: #333;
  font-size: 22px;
  font-weight: bold;
  padding: 0;
  margin-bottom: 18px;
}
.sec_online_english .textbox.textbox02 ul {
  padding-left: 30px;
}

.sec_online_english .textbox.textbox02 ul li {
  font-size: 20px;
  margin-top: 14px;
}
.sec_online_english .textbox.textbox02 ul li:first-child {
  margin-top: 0;
}
.sec_online_english .textbox.textbox02 ul li em {
  font-style: normal;
}

.sec_online_english .box {
  max-width: 520px;
}

.sec_online_english .box p.hukidashi {
  border: 2px solid #4c83f3;
  padding: 25px 0;
  text-align: center;
  font-size: 20px;
  background: #fff;
  position: relative;
}
.sec_online_english .box p.hukidashi:after {
  content: "";
  display: block;
  transform: rotate(45deg);
  width: 20px;
  height: 20px;
  border-right: 2px solid #4c83f3;
  border-bottom: 2px solid #4c83f3;
  background: #fff;
  position: absolute;
  bottom: -13px;
  left: 0;
  right: 0;
  margin: auto;
}
.sec_online_english .box.course02 p.hukidashi {
  border: 2px solid #aa92cc;
  color: #aa92cc;
}
.sec_online_english .box.course02 p.hukidashi:after {
  border-right: 2px solid #aa92cc;
  border-bottom: 2px solid #aa92cc;
}
.sec_online_english .box .content_box {
  background: url(../img/icon_course01_down_carlet.png) center bottom 15px, #fff;
  background-repeat: no-repeat;
  box-shadow: 0 0 5px #ccc;
  padding-bottom: 0px;
}
.sec_online_english .box .content_box p {
  min-height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sec_online_english .box.course02 .content_box {
  background: url(../img/icon_course02_down_carlet.png) center bottom 15px, #fff;
  background-repeat: no-repeat;
}

.sec_online_english .box .content_box a {
  display: block;
  padding-bottom: 60px;
}
.sec_online_english .box .content_box a:hover {
  opacity: .7;
  text-decoration: none;
}

.sec_online_english .box h4 {
  margin-top: 30px;
  font-size: 26px;
  color: #fff;
  background: #4c83f3;
  text-align: center;
  padding: 1em 0;
  margin-bottom: 0;
}

.sec_online_english .box.course02 h4 {
  background: #aa92cc;
}

.sec_online_english .box p {
  font-size: 20px;
  padding: 1em 0;
  text-align: center;
  color: #004fee;
}

.sec_online_english .box.course02 p {
  color: #333;
}

.sec_online_english .course_detail {
  background: #fff;
  box-shadow: 0 0 5px #ccc;
  padding: 60px 0;
  margin-bottom: 60px;
}
.sec_online_english .course_detail .image {
  max-width: 490px;
}
.sec_online_english .detail_box {
  max-width: 490px;
}
.sec_online_english .detail_box h4 {
  font-size: 22px;
  text-align: left;
}
.sec_online_english .detail_box h4 em {
  color: #004fee;
  font-style: normal;
  margin-bottom: 1em;
}
.sec_online_english .detail_box p {
  font-size: 18px;
}

/*========================================

  .sec_features
  5つの特徴

========================================*/
.sec_features {
  background: #f1f1f1;
}
.sec_features h3 {
  font-size: 30px;
  font-weight: normal;
  margin-bottom: 0;
}
.sec_features h3 strong {
  display: block;
  font-size: 46px;
}

.sec_features .point .point_box h4 {
  font-size: 24px;
  text-align: left;
  font-weight: bold;
}
.sec_features .point .point_box h5 {
  text-align: center;
}
.sec_features .point.point02 .point_box {
  background: transparent;
  box-shadow: none;
  padding: 0;
}
.sec_features .point.point02 .textbox {
  max-width: 520px;
  width: 50%;
  background: #fff;
  box-shadow: 0 0 5px #ccc;
  margin: 0;
  padding: 30px 20px;
  position: relative;
  margin-bottom: 40px;
}
.sec_features .point.point02 .textbox:nth-child(3),
.sec_features .point.point02 .textbox:nth-child(4) {
  margin-bottom: 20px;
}
.sec_features .point.point02 .textbox h5,
.sec_features .point.point02 .textbox p {
  max-width: 340px;
}
.sec_features .point.point02 .textbox p em {
  color: #333;
}
.sec_features .point.point02 .textbox .image {
  position: absolute;
  top: -15px;
  right: 20px;
  max-width: 130px;
}
.sec_features .point.point02 .textbox .image img {
  width: 100%;
}

/*========================================

  .sec_continue-work
  継続する仕組み

========================================*/
.sec_continue-work {
  background: #f1f1f1;
  padding-bottom: 45px;
  padding-top: 60px;
}

.sec_continue-work h3 {
  font-size: 30px;
  font-weight: normal;
  text-align: center;
  margin-bottom: 40px;
}
.sec_continue-work h3 strong {
  display: block;
  font-size: 46px;
}
.sec_continue-work .box {
  position: relative;
  max-width: 252px;
  background: #fff;
  box-shadow: 0 0 5px #ccc;
}
.sec_continue-work .box.box02 .text p.price {
  font-weight: bold;
}
.sec_continue-work .box .number {
  width: 40px;
  height: 40px;
  background: #004fee;
  color: #fff;
  font-size: 23px;
  text-align: center;
  font-weight: bold;
  padding-top: 3px;
  position: absolute;
  top: 0;
  left: 0;
}
.sec_continue-work .box .image img {
  width: 100%;
}
.sec_continue-work .box .text {
  padding: 20px;
}
.sec_continue-work .box .text p {
  font-size: 18px;
}
.sec_continue-work .box .text p em {
  color: #004fee;
  font-style: normal;
  font-weight: bold;
}

/*========================================

  .sec_uservoise
  お客様の声

========================================*/
.sec_uservoise {
  /* background: #e5edfd; */
  padding-top: 40px;
}

.sec_uservoise h3{
  padding: 20px 0;
  margin-bottom: 0;
}
.sec_uservoise .point {
  padding-bottom: 0;
  padding-top: 40px;
}
.sec_uservoise .point .point_box .image-area {
  max-width: 490px;
}
/* .sec_uservoise .point .point_box .image {
  margin: 0 15px;
} */
.sec_uservoise .point .point_box p {
  text-align: left;
  margin: 0 15px 0;
}
.sec_uservoise .point .point_box .textbox h5 {
  text-align: center;
  margin: 15px 0;
}
.sec_uservoise .point .point_box .textbox h5:first-child {
  margin-top: 0;
}
.sec_uservoise .point .point_box .textbox p {
  margin: 0;
}
.sec_uservoise .point .point_box .user_name p {
  font-size: 20px;
}
/* .sec_uservoise .point .point_box .textbox {
  margin-left: 0;
  max-width: 520px;
} */
.sec_uservoise .point p.attention {
  margin-top: 20px;
}
/*========================================

  sec_case-studies
  導入事例

========================================*/
.sec_case-studies {
  background: #e5edfd;
}
.sec_case-studies h3{
  margin-bottom: 0;
}
.sec_case-studies .point .point_box + .point_box {
  margin-top: 60px;
}
/*========================================

  sec_accordion
  アコーディオン

========================================*/
.sec_accordion {
  padding: 30px 15px;
}
.sec_accordion .inner {
  max-width: 954px;
}
.sec_accordion .accordion_action {
  font-size: 20px;
  padding: 15px 0;
  border-bottom: 1px solid #f1f1f1;
}

.sec_accordion .accordion_action > p {
  padding: 5px 0;
  position: relative;
  cursor: pointer;
}
.sec_accordion .accordion_action > p:hover {
  text-decoration: underline;
}
.sec_accordion .accordion_action > p:after {
  content: "";
  display: block;
  background: url(../img/img_accordion_down_caret.png) center center;
  background-size: 100% auto;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 10px;
  transition: transform .5s;
 
}
.sec_accordion .accordion_action > p.opened:after {
  transform: rotate(180deg);
}
.sec_accordion .accordion_action .toggle_content {
  display: none;
  margin-top: 15px;
}
.sec_accordion .accordion_action .toggle_content > p.txt {
  margin-bottom: 24px;
  font-size: 18px;
}
.sec_accordion .accordion_action .toggle_content table {
  width: 100%;
  font-size: 14px;
  border-collapse:collapse;
}
.sec_accordion .accordion_action .toggle_content table tr:nth-child(odd){
  background: rgb(229, 237, 253);
}
.sec_accordion .accordion_action .toggle_content table tr th {
  width: 8em;
}
.sec_accordion .accordion_action .toggle_content table tr th,
.sec_accordion .accordion_action .toggle_content table tr td {
  padding: 12px;
  vertical-align: top;
}
.sec_accordion .accordion_action .toggle_content p {
  margin: 0;
}
.sec_accordion .accordion_action .toggle_content p.fine {
  font-size: 12px;
}

/*========================================

  sec_customize_english
  カスタマイズオンライン英会話

========================================*/
.sec_customize_english .course_detail {
  background: #fff;
  box-shadow: 0 0 5px #ccc;
  padding: 60px 0;
  margin-bottom: 60px;
}
.sec_customize_english .course_detail .image {
  max-width: 490px;
}
.sec_customize_english .detail_box {
  max-width: 490px;
}
.sec_customize_english .image {
  width: 50%;
}
.sec_customize_english .image img {
  width: 100%;
}

.sec_customize_english .sec_title:before {
  background: #a992cc;
}
.sec_customize_english .detail_box {
  padding: 30px 15px;
  width: 50%;
}
.sec_customize_english .detail_box h4 {
  font-size: 22px;
  text-align: left;
}
.sec_customize_english .detail_box h4 em {
  font-style: normal;
}
.sec_customize_english .detail_box ul {
  padding-left: 20px;
}
.sec_customize_english .detail_box ul li {
  position: relative;
  list-style:none;
}
.sec_customize_english .detail_box ul li:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: -1em;
  top: .5em;
  background-color: rgb(0, 79, 239);
  height: 5px;
  width: 5px;
  border-radius: 50%;
}
.sec_customize_english .textbox {
  height: 280px;
  background: url(../img/sp/bg_customize_english.jpg);
  padding: 40px 30px;
  height: 240px;
  margin-bottom: 25px;
}
.sec_customize_english .textbox p {
  color: #333;
  font-size: 22px;
  font-weight: bold;
  padding: 0;
  margin-bottom: 18px;
}
.sec_customize_english .textbox ul {
  padding-left: 18px;
}
.sec_customize_english .textbox ul li {
  font-size: 20px;
  margin-top: 14px;
}
.sec_customize_english .textbox ul li:first-child {
  margin-top: 0;
}

/*========================================

  sec_customize_english_features
  カスタマイズオンライン英会話 5つの特徴

========================================*/
.sec_customize_english_features {
  background: #f1f1f1;
}
.sec_customize_english_features h3 {
  font-size: 30px;
  font-weight: normal;
  margin-bottom: 0;
}
.sec_customize_english_features .point .point_box h4 {
  font-weight: bold;
  text-align: left;
  padding: 0;
}
.sec_customize_english_features .point.point05 .point_box {
  margin-bottom: 0;
}
.sec_customize_english_features .point .point_box .textbox:first-child {
  margin-top: 0;
}
.sec_customize_english_features .point.point02 .tag_boxes .textbox {
  max-width: none;
  width: 48%;
}
.sec_customize_english_features .point.point02 .tag_boxes .textbox:first-child {
  margin-left: 0;
}
.sec_customize_english_features .point.point02 .tag_boxes .textbox:first-child {
  margin-left: 0;
}
.sec_customize_english_features .point.point02 .textbox {
  max-width: none;
  margin-left: 0;
}
.sec_customize_english_features .point.point03 .courses .course{
  width: 49%;
}
.sec_customize_english_features .point.point02 .tag_boxes .textbox ul:last-child {
  margin-bottom: 0;
}
.sec_customize_english_features .point.point02 .tag_boxes .textbox ul:last-child li:nth-child(7),
.sec_customize_english_features .point.point02 .tag_boxes .textbox ul:last-child li:nth-child(8),
.sec_customize_english_features .point.point02 .tag_boxes .textbox ul:last-child li:nth-child(9) {
  margin-bottom: 0;
}
/*========================================

  sec_customize-lesson-flow
  無料体験レッスンの流れ

========================================*/
.sec_customize-lesson-flow {
  padding: 60px 0;
}
.sec_customize-lesson-flow h3 {
  font-size: 30px;
  font-weight: normal;
  text-align: center;
  margin-bottom: 40px;
}
.sec_customize-lesson-flow h3 strong {
  display: block;
  font-size: 46px;
}
.sec_customize-lesson-flow .lesson-flow {
  list-style: none;
  padding: 0 15px;
}
.sec_customize-lesson-flow .lesson-flow li {
  padding: 15px 15px 40px;
  background: #fff;
  box-shadow: 0 0 5px #ccc;
  margin-bottom: 1em;
  position: relative;
  width: 15%;
}

.sec_customize-lesson-flow .lesson-flow li .num {
  display: block;
  font-size: 20px;
  font-weight: bold;
  background: #004fee;
  color: #fff;
  padding: 10px 0;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  text-align: center;
  margin: 0 auto;
}

.sec_customize-lesson-flow .lesson-flow li p {
  margin-top: 10px;
}

.sec_customize-lesson-flow .lesson-flow li p em {
  font-style: normal;
  font-weight: bold;
}
.sec_customize-lesson-flow .lesson-flow li .label {
  padding: 6px 0;
  border: 1px solid #ff495c;
  color: #ff495c;
  display: block;
  right: 15px;
  margin: auto;
  line-height: 1;
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  width: 4em;
  text-align: center;
}

/*========================================

  .sec_rate_plan
  料金

========================================*/
.sec_rate_plan h3 {
  font-size: 30px;
  font-weight: normal;
  text-align: center;
  margin: 0;
}
.sec_rate_plan h3 strong {
  display: block;
  font-size: 46px;
}
.sec_rate_plan .point.flex-box > .point_box {
  width: calc(100%/3 - 10px);
  padding: 30px;
}
.sec_rate_plan .point.flex-box > .point_box .textbox{
  max-width:unset;
  width: 100%;
  margin: 0;
}
/*========================================

  sec_faq
  よくある質問

========================================*/
.sec_faq {
  padding: 60px 0 30px;
}
.sec_faq .sec_title {
  font-size: 38px;
  padding: 0 0 30px;
  text-align: center;
  position: relative;
}
.sec_faq .sec_title:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 4px;
  width: 100px;
  height: 4px;
  background: #004fee;
  left: 0;
  right: 0;
  margin: auto;
}
.sec_faq dl {
  border-bottom: 1px solid #f0f0f0;
  padding: 30px 0;
}
.sec_faq dl dt {
  position: relative;
  cursor: pointer;
}
.sec_faq dl dt:after {
  content: "";
  background-image: url(../img/ico-plus.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 25px;
  margin: auto;
}
.sec_faq dl dt.opened:after {
  background-image: url(../img/ico-minus.png);
}

.sec_faq dl dd {
  display: none;
  margin-top: 40px;
}
.sec_faq dl dt span,
.sec_faq dl dd span {
  width: 70px;
  height: 70px;
  background: #004fee;
  color: #fff;
  text-align: center;
  font-size: 30px;
  padding-top: 12px;
  margin-right: 25px;
  font-weight: normal;
  border-radius: 10px;
}

.sec_faq dl dd span {
  background: #e5edfd;
  color: #4c83f3;
}
.sec_faq dl dt p {
  padding-right: 25px;
  font-weight: bold;
}
.sec_faq dl dt p,
.sec_faq dl dd .txt {
  font-size: 18px;
  width: calc(100% - 95px);
  margin-top: 1em;
}
.sec_faq dl dd .txt p em {
  font-weight: bold;
  font-style: normal;
} 
.sec_faq dl dd p {
  padding-right: 125px;
}
.sec_faq dl dt p {
  cursor: pointer;
}
.sec_faq dl dt p:hover {
  text-decoration: underline;
}

/*========================================

  sec_world-performance
  よくある質問

========================================*/
.sec_world-performance {
  padding: 30px 0 40px;
}
.sec_world-performance .sec_title {
  font-size: 38px;
  padding: 0 0 30px;
  text-align: center;
  position: relative;
  margin-bottom: 50px;
}
.sec_world-performance .sec_title:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 4px;
  width: 100px;
  height: 4px;
  background: #004fee;
  left: 0;
  right: 0;
  margin: auto;
}
.sec_world-performance .qualities {
  max-width: 690px;
  width: 48%;
  border-radius: 5px;
  margin: auto;
  background: #fff;
}
.sec_world-performance .qualities .box {
  width: 32%;
}
.sec_world-performance .qualities .box .image {
  width: 100%;
}
.sec_world-performance .qualities .box p {
  text-align: left;
}
.sec_world-performance .qualities .box p br {
  display: none;
}
.sec_world-performance .image-area {
  width: 46%;
}
.sec_world-performance .image img {
  width: 100%;
}
.sec_world-performance p {
  text-align: center;

}
.sec_world-performance p em {
  color: #ff495c;
  font-style: normal;
}

/*========================================

  #footer
  フッター

========================================*/
#footer {
  padding: 50px 0;
  background: #f6f6f6;
}
#footer .copyright {
  text-align: center;
  color: #999999;
  font-size: 14px;
}

/*========================================

  メディアクエリ

========================================*/
@media only screen and (max-width: 992px) {
  .sp_view {
    display: block;
  }
  .pc_view {
    display: none;
  }
  img {
    width: 100%;
  }
  .btn {
    font-size: 12px;
  }
  .btn_free_lesson {
    font-size: 13px;
    width: 100%;
    padding: 1em 0;
  }
  #header {
    padding: 10px 15px;
  }
  #header .logo {
    max-width: 85px;
  }
  #header .icon_tel {
    max-width: 20px;
    margin-right: 30px;
  }
  #header .icon_tel img {
    width: 100%;
  }
  #main_navi ul li {
    width: 33.333%;
  }
  #main_navi ul li a {
    font-size: 12px;
  }
  #main_navi #mega_drop_menu {
    width: 100%;
    left: auto;
    border-radius: 0;
    padding: 15px;
  }
  #main_navi #mega_drop_menu .text-title {
    font-size: 16px;
    margin-bottom: 1em;
  }
  #main_navi #mega_drop_menu .image {
    width: 48%;
  }
  #main_visual {
    padding: 35px 0 30px;
  }
  #main_visual .main_text h2 {
    font-size: 17px;
  }
  #main_visual .main_text h1 {
    font-size: 24px;
    margin: 17px 0 25px;
  }
  #main_visual ul li {
    font-size: 12px;
    max-width: 112px;
  }
  .sec_oricon {
    padding: 15px;
  }
  .sec_conversion {
    padding: 20px 15px;
  }
  .sec_conversion h3 {
    font-size: 18px;
  }
  .sec_conversion p {
    font-size: 14px;
  }
  .sec_conversion .tel_consaltation {
    margin-bottom: 0;
  }
  .sec_conversion p small {
    font-size: 10px;
  }
  .sec_temp01 {
    padding-top: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .sec_temp01 .sec_title {
    margin-bottom: 20px;
  }
  .sec_temp01 .sec_title#berlitz_flex {
    padding-top: 30px;
  }
  .sec_temp01 .sec_title h3 {
    font-size: 16px;
  }
  .sec_temp01 .sec_title h3 strong {
    font-size: 24px;
  }

  .sec_temp01 h4 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .sec_temp01 .examples .box {
    max-width: 185px;
    width: 47%;
    margin-bottom: 20px;
  }
  .sec_temp01 .examples .box p.title {
    font-size: 14px;
    padding: 6px 0;
  }

  .sec_temp01 .examples .box p {
    font-size: 14px;
    padding: 12px;
  }
  .sec_temp01.sec_performance {
    padding: 20px 0 30px;
  }
  .sec_temp01 p.big_text {
    font-size: 15px;
    margin-bottom: 0;
  }
  .sec_temp01 .logo_view {
    padding-bottom: 0;
  }
  .sec_temp01 p.attention {
    padding-left: 15px;
  }
  .sec_world-quality {
    min-height: 230px;
    max-height: 400px;
    height: unset;
    background-size: auto 100%;
    padding: 40px 15px 20px;
  }
  .sec_world-quality h3 {
    font-size: 23px;
    margin-bottom: 20px;
  }
  .sec_world-quality .qualities {
    padding: 10px;
  }
  .sec_world-quality .qualities .box {
    width: 30%;
  }
  .sec_world-quality .qualities .box p {
    font-size: 10px;
    padding: 5px 0;
  }
  .sec_world-quality .qualities .box p br {
    display: none;
  }
  .sec_temp02 {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .sec_temp02 .point {
    padding: 15px 15px 0 15px;
  }
  .sec_temp02 .point .point_box .textbox ol {
    font-size: 14px;
  }
  .sec_temp02 h3 {
    font-size: 26px;
    padding: 15px 0;
    margin-bottom: 0;
  }
  .sec_temp02 h3 strong{
    font-size: 23px;
  }
  .sec_temp02 .point p {
    font-size: 14px;
  }
  .sec_temp02 .point table {
    font-size: 12px;
  }
  .sec_temp02 .point table tr > th .logo {
    display: block;
    text-align: center;
    max-width: 60px;
    margin-right: 0;
  }
  .sec_temp02 .point table tr > th .logo + span {
    display: block;
    width: 100%;
  }
  .sec_temp02 .point table tr > *:first-child {
    width: 80px;
  }
  .sec_temp02 .point table tr > td ul {
    padding-left: 20px;
  }
  .sec_temp02 .point table tr > *:first-child br {
    display: block;
  }
  .sec_temp02 .point .point_box h4 {
    font-size: 16px;
    margin-bottom: 20px;
    padding: 0 15px;
  }
  .sec_features .point.point02 .point_box h4 {
    margin-bottom: 0;
    margin-left: 0;
    padding: 15px 0 15px 15px;
  }
  .sec_temp02 .point .point_box {
    padding: 25px 0 10px;
  }
  .sec_temp02 .point .point_box .image {
    width: 49%;
  }
  .sec_temp02 .point .point_box .image .caption {
    padding: 10px 15px;
    left: 15px;
    right: 15px;
  }
  .sec_temp02 .point p.subtitle {
    font-size: 16px;
    margin: 30px 0;
  }
  .sec_temp02 .point .point_box .textbox {
    margin: 0;
    width: 49%;
  }
  .sec_temp02 .point .point_box .textbox h5 {
    font-size: 16px;
  }
  .sec_temp02 .point .point_box .textbox ul {
    font-size: 14px;
    list-style: none;
  }
  .sec_temp02 .point .point_box .textbox ul li {
    position: relative;
  }
  .sec_temp02 .point .point_box .textbox ul.list-style_disc li:before {
    content: "";
    display: inline-block;
    position: absolute;
    left: -1em;
    top: .5em;
    background-color: rgb(0, 79, 239);
    height: 5px;
    width: 5px;
    border-radius: 50%;
  }
  .sec_temp02 .point .point_box .textbox ul.tag_list li:before {
    display: none;
  }
  .sec_temp02 .point.point03 .point_box .textbox ul {
    margin-bottom: 0;
    padding-left: 17px;
  }
  .sec_temp02 .point .point_box .textbox p {
    font-size: 14px;
  }
  .sec_temp02 .point .point_box .image .caption p {
    font-size: 14px;
  }
  .sec_temp02 .point .point_box.course {
    margin-bottom: 20px;
  }
  .sec_temp02 .point.courses02 .point_box.course:last-child {
    margin-bottom: 0;
  }
  .sec_temp02 .point .point_box.course .textbox {
    width: calc(100% - 110px);
  }
  .sec_temp02 .point .point_box.course .image {
    max-width: 95px;
  }
  .sec_temp02 .point .point_box.course .textbox h5 {
    margin-bottom: 10px;
  }
  .sec_temp02 .point .point_box.course .textbox p {
    margin-bottom: 0;
  }
  .sec_temp02 .point .attention {
    font-size: 12px;
    margin: 15px 0;
    padding-left: 0px;
    width: auto;
  }
  .sec_temp02 .point .attention + .attention {
    margin-top: 0;
  }
  .sec_online_english .textbox {
    background: url(../img/sp/bg_online_english.jpg);
    background-repeat: no-repeat;
    background-size: 100% auto;
    height: auto;
    margin-bottom: 25px;
  }
  .sec_online_english .course_detail {
    padding: 14px;
  }
  .sec_online_english .course_detail .image,
  .sec_online_english .course_detail .detail_box {
    width: 49%;
  }
  .sec_online_english .textbox p {
    font-size: 14px;
    padding: 3.3em 1em;
  }
  .sec_online_english .box {
    width: 48%;
  }
  .sec_online_english .box p.hukidashi {
    font-size: 14px;
    padding: 12px 8px;
  }
  .sec_online_english .box h4 {
    font-size: 16px;
  }
  .sec_online_english .box p {
    font-size: 14px;
  }
  .sec_online_english .box .content_box p {
    min-height: auto;
    display: block;
}
  .sec_online_english .detail_box {
    padding:  30px 15px;
  }
  .sec_online_english .detail_box p {
    font-size: 14px;
  }
  .sec_online_english .detail_box h4 {
    font-size: 16px;
  }
  .sec_online_english .textbox.textbox02 {
    background: url(../img/sp/bg_online_english02.jpg);
    background-size: 100% auto;
    background-repeat: no-repeat;
    padding: 10px 10px;
    height: 160px;
  }
  .sec_online_english .textbox.textbox02 p {
    font-size: 15px;
    margin-bottom: 9px;
  }
  .sec_online_english .textbox.textbox02 ul li {
    font-size: 14px;
    margin-top: 0;
  }
  .sec_online_english .textbox.textbox02 ul li {
    position: relative;
    list-style: none;
  }
  .sec_online_english .textbox.textbox02 ul li:before {
    content: "";
    display: inline-block;
    position: absolute;
    left: -1em;
    top: .5em;
    background-color: rgb(0, 79, 239);
    height: 5px;
    width: 5px;
    border-radius: 50%;
  }
  .sec_features {
    padding-bottom: 0;
    background: #f1f1f1;
  }
  .sec_features h3 {
    font-size: 17px;
    margin-bottom: 0;
  }
  .sec_features h3 strong {
    font-size: 26px;
  }
  .sec_features .point .point_box h4 {
  }
  .sec_features .point.point02 .textbox {
    width: 49%;
    min-height: 260px;
    margin-top: 30px;
  }
  .sec_features .point.point02 .textbox h5,
  .sec_features .point.point02 .textbox p {
    width: 60%;
    text-align: left;
  }
  .sec_features .point04,
  .sec_features .point05 {
    background: #f1f1f1;
  }
  .sec_continue-work {
    padding: 20px 0 20px;
  }
  .sec_continue-work .attention {
    font-size: 12px;
  }
  .sec_continue-work h3 {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .sec_continue-work h3 strong {
    font-size: 23px;
  }
  .sec_continue-work .flex-box {
    padding: 0 15px;
  }
  .sec_continue-work .box {
    width: 24%;
    margin-bottom: 1em;
  }
  .sec_continue-work .box .text {
    padding: 8px;
  }
  .sec_continue-work .box .text p {
    font-size: 14px;
  }
  .sec_uservoise {
    /* background: #f1f1f1; */
    padding-top: 0;
  }
  .sec_uservoise .point {
    padding: 0 15px;
  }
  .sec_uservoise .point .point_box .image-area {
    width: 49%;
  }
  .sec_uservoise .point .point_box .image-area .image {
    width: 100%;
  }
  .sec_case-studies h3 {
    padding: 0 0;
  }
  .sec_case-studies .point .point_box + .point_box {
    margin-top: 30px;
  }
  .sec_rate_plan {
    padding-top: 0;
  }
  .sec_rate_plan h3 {
    font-size: 15px;
  }
  .sec_rate_plan h3 strong {
    font-size: 23px;
  }
  .sec_rate_plan .point {
    padding: 0 15px;
  }
  .sec_rate_plan .point.flex-box > .point_box {
    width: 100%;
    padding: 25px 15px;
  }
  .sec_rate_plan .point.flex-box > .point_box + .point_box {
    margin-top: 25px;
  }
  .sec_rate_plan .point.flex-box > .point_box .textbox {
    padding: 0;
  }
  .sec_customize_english {
    padding-top: 20px;
  }
  .sec_customize_english .detail_box h4 {
    font-size: 14px;
  }
  .sec_customize_english .detail_box p {
    font-size: 14px;
  }
  .sec_customize_english .textbox {
    background: url(../img/sp/bg_customize_english.jpg);
    background-size: 100% auto;
    background-repeat: no-repeat;
    padding: 20px 10px;
    height: 180px;
  }
  .sec_customize_english .detail_box ul {
    list-style: none;
  }
  .sec_customize_english .detail_box ul li {
    position: relative;
  }
  .sec_customize_english .detail_box ul li:before {
    content: "";
    display: inline-block;
    position: absolute;
    left: -1em;
    top: .5em;
    background-color: rgb(0, 79, 239);
    height: 5px;
    width: 5px;
    border-radius: 50%;
  }
  .sec_customize_english .textbox p {
    font-size: 15px;
    margin-bottom: 9px;
  }
  .sec_customize_english .textbox ul li {
    font-size: 14px;
    margin-top: 0;
  }
  .sec_customize_english_features{
    background: #f1f1f1;
  }
  .sec_customize_english_features .point {
    margin-bottom: 15px;
  }
  .sec_customize_english_features .point.point03 .point_box .textbox p {
    margin-bottom: 0;
  }
  .sec_customize_english_features .point.point01 .point_box .image {
    padding: 0 15px;
  }
  .sec_customize_english_features .point.point02 .point_box .textbox:nth-child(2){
    margin-top: 0;
  }
  .sec_customize-lesson-flow h3 {
    font-size: 15px;
    margin-bottom: 15px;
  }
  .sec_customize-lesson-flow h3 strong {
    font-size: 23px;
  }
  .sec_customize-lesson-flow {
    padding: 20px 0;
  }
  .sec_customize-lesson-flow .lesson-flow li {
    width: 100%;
    padding: 15px;
  }
  .sec_customize-lesson-flow .lesson-flow li .num {
    margin: 0 15px 0 0;
  }
  .sec_customize-lesson-flow .lesson-flow li > div {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .sec_customize-lesson-flow .lesson-flow li p {
    margin-top: 0;
  }
  .sec_customize-lesson-flow .lesson-flow li .label {
    left: auto;
    right: 25px;
    margin: 0;
    bottom: 1.5em;
  }
  .sec_rate_plan .image-box {
    width: 49%;
  }
  .sec_rate_plan .point .point_box .image-box .image {
    width: 100%;
  }
  .sec_rate_plan .point .point_box .tags {
    margin-left: 15px;
  }
  .sec_faq {
    padding: 20px 0 0;
  }
  .sec_faq .sec_title {
    font-size: 23px;
    padding-bottom: 20px;
  }
  .sec_faq dl {
    margin: 0 15px;
    padding: 15px 0;
  }
  .sec_faq dl dd {
    margin-top: 20px;
  }
  .sec_faq dl dt p, .sec_faq dl dd p {
    margin-top: 0;
  }
  .sec_faq dl dt span,
  .sec_faq dl dd span {
    width: 35px;
    height: 35px;
    font-size: 15px;
    padding-top: 8px;
    margin-right: 15px;
  }
  .sec_faq dl dt p,
  .sec_faq dl dd p {
    font-size: 13px;
  }
  .sec_faq dl dd .txt {
    margin-top: 0;
  }
  .sec_faq dl dd p {
    padding-left: 0;
    padding-right: 0;
  }
  .sec_world-performance {
    padding: 15px 0;
  }
  .sec_world-performance .sec_title {
    font-size: 23px;
    padding-bottom: 20px;
  }
  .sec_world-performance .qualities .box p {
    font-size: 12px;
  }
  .sec_world-performance .qualities .box p br {
    display: none;
  }
  .sec_world-performance .qualities {
    max-width: none;
    padding: 15px;
  }
  .sec_world-performance .image {
    padding: 0 15px;
    margin-bottom: 15px;
  }
  #footer {
    padding: 25px 0;
  }
  #footer .copyright {
    font-size: 10px;
  }
}

@media only screen and (max-width: 564px) {
  .text .attention {
    margin: 15px;
  }
  .sec_points {
    padding-bottom: 0;
  }
  .sec_temp02 .point .point_box .image {
    width: 100%;
    padding: 0 15px;
  }
  .sec_temp02 .point .point_box .textbox {
    width: 100%;
    padding: 15px;
  }
  .sec_features .point.point02 .point_box .textbox {
    min-height: 220px;
  }
  .sec_temp02 .point .point_box .textbox ul.zero-margin {
    margin-bottom: 0;
  }
  .sec_temp02 .point .point_box .textbox:first-child {
    margin-top: 0;
  }
  .sec_features .point.point02 .textbox .image {
    right: 15px;
    max-width: 110px;
    padding: 0;
  }
  .sec_features .point.point03,
  .sec_features .point.point04 {
    padding-bottom: 15px;
  }
  .sec_features .point.point05 {
    padding-bottom: 1px;
  }
  .sec_online_english .textbox.textbox02 ul {
    padding-left: 18px;
  }
  .sec_online_english .course_detail {
    padding: 0;
    margin-bottom: 30px;
  }
  .sec_features .point.point02 .textbox h5, .sec_features .point.point02 .textbox p {
    width: calc(100% - 120px);
  }
  .sec_features .point.point02 .textbox:nth-child(3), .sec_features .point.point02 .textbox:nth-child(4) {
    margin-bottom: 0;
  }
  .sec_online_english .course_detail .image,
  .sec_online_english .course_detail .detail_box {
    width: 100%;
  }
  /* .sec_uservoise,
  .sec_continue-work {
    padding-bottom: 1px;
  } */
  .sec_uservoise {
    padding-top: 15px;
  }
  .sec_continue-work .box {
    width: 48%;
  }
  .sec_continue-work .box:nth-child(3),
  .sec_continue-work .box:nth-child(4) {
      margin-bottom: 0;
  }
  .sec_uservoise .point .point_box .user_name p {
    font-size: 16px;
  }
  .sec_uservoise .point .point_box .image-area {
    width: 100%;
  }
  .sec_uservoise .point .point_box .image-area .image {
    margin-left: 0;
    padding: 0 15px;
  }
  .sec_accordion {
    padding: 15px;
  }
  .sec_accordion .accordion_action {
    font-size: 14px;
  }
  .sec_accordion .accordion_action > p:after {
    width: 30px;
    height: 30px;
  }
  .sec_customize_english .course_detail {
    padding: 0;
    margin-bottom: 30px;
  }
  .sec_customize_english .course_detail .image {
    width: 100%;
  }
  .sec_customize_english .detail_box {
    width: 100%;
  }
  .sec_customize_english_features .point.point02 .tag_boxes .textbox {
    width: 100%;
  }
  .sec_customize_english_features .point.point02 .point_box .textbox {
    padding: 15px;
  }
  .sec_customize_english_features .point.point02 .point_box .textbox:first-child {
    padding: 0 15px;
  }
  .sec_temp02 .point p.subtitle {
    margin: 15px 0;
  }
  .sec_temp02 .point .point_box.course .image {
    padding: 0;
  }
  .sec_customize_english_features .point.point03 .courses .course {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
  }
  .sec_customize_english_features .point.point03 .courses .course.course04 {
    margin-bottom: 0;
  }
  .sec_temp02 .point .point_box.course .textbox {
    padding: 0;
  }
  .sec_temp02 .point.point05 .point_box {
    margin-bottom: 0;
  }
  .sec_rate_plan .image-box {
    width: 100%;
  }
  .sec_rate_plan .point .point_box .textbox ul {
    margin: 0 0 15px 0;
  }
  .sec_world-performance .qualities,
  .sec_world-performance .image-area {
    width: 100%;
  }
  .sec_customize-continue-work p.attention {
    font-size: 12px;
    margin: 15px 0;
    padding-left: 15px;
    width: auto;
  }
  .sec_continue-work .box .number {
    width: 30px;
    height: 30px;
    font-size: 17px;
  }
}

@media only screen and (max-width: 375px) {
  .btn_free_lesson {
    padding: 1em 3em;
  }
  .sec_temp01 .examples .box {
    width: 48.5%;
  }
  .sec_features .point.point02 .textbox .image {
    max-width: 110px;
  }
  .sec_features .point.point02 .textbox {
    min-height: 240px;
  }
  .sec_features .point.point03 .point_box .textbox ul {
    margin-bottom: 0;
  }
  .sec_conversion h3 {
    font-size: 16px;
  }
  .sec_rate_plan .point .point_box .textbox ul {
    margin-bottom: 15px;
  }
  .sec_temp01 .sec_title h3 strong {
    font-size: 22px;
  }
  .sec_customize-lesson-flow .lesson-flow li .label {
    right: 5px;
    width: 4.5em;
  }
  .sec_temp02 .point .point_box .tags li {
    font-size: 11px;
  }
}

@media only screen and (max-width: 320px) {
  #main_visual .main_text h1 {
    font-size: 22px;
  }
  #main_visual ul li {
    font-size: 11px;
    max-width: 98px;
  }
  .btn_free_lesson {
    padding: 1em 2em;
  }
  .sec_temp01 .examples .box p.title {
    font-size: 12px;
    padding: 10px 0;
  }
  .sec_temp01 .sec_title h3 strong {
    font-size: 20px;
  }
  .sec_online_english .box p.hukidashi {
    padding: 4px;
  }
  .sec_online_english .textbox.textbox02 {
    padding: 5px 10px;
    height: 130px;
  }
  .sec_online_english .textbox.textbox02 ul li {
    margin-top: 0;
  }
  .sec_online_english .textbox.textbox02 p {
    margin-bottom: 0;
  }
  .sec_features .point.point02 .textbox .image {
    max-width: 90px;
    right: 10px;
  }
  .sec_features .point.point02 .textbox h5, .sec_features .point.point02 .textbox p {
    width: 65%;
  }
  .sec_conversion h3 {
    font-size: 13px;
  }
  .sec_continue-work .box .text {
    padding: 10px;
  }
  .sec_continue-work .box .number {
    width: 30px;
    height: 30px;
    font-size: 17px;
  }
  .sec_continue-work {
    padding-bottom: 20px;
  }
  .sec_temp02 .point .point_box h4 {
    font-size: 14px;
  }
  .sec_uservoise .point .point_box .user_name p {
    font-size: 12px;
  }
  .sec_temp02 .point .point_box .textbox p {
    font-size: 12px;
  }
  .sec_temp02 .point .point_box .textbox ul {
    font-size: 13px;
  }
  .sec_temp01 .sec_title h3 {
    font-size: 16px;
  }
  .sec_temp01 .sec_title h3 strong {
    font-size: 18px;
  }
  .sec_customize_english .textbox {
    padding: 10px;
    height: 130px;
  }
  .sec_customize_english .textbox ul li {
    margin-top: 0;
  }
  .sec_temp02 h3 {
    font-size: 14px;
  }
  .sec_temp02 h3 strong {
    font-size: 18px;
  }
  .sec_temp02 .point .point_box .textbox ul.tag_list li {
    font-size: 10px;
  }
  .sec_temp02 .point .point_box.course .image {
    max-width: 75px;
  }
  .sec_temp02 .point .point_box.course .textbox {
    width: calc(100% - 90px);
  }
  .sec_temp02 .point .point_box .textbox ul {
    padding-left: 20px;
  }
  .sec_customize-lesson-flow .lesson-flow li {
    padding: 10px;
    font-size: 12px;
  }
  .sec_customize-lesson-flow .lesson-flow li .num {
    font-size: 15px;
    width: 40px;
    height: 40px;
    padding: 8px 0;
  }
  .sec_temp02 .point .point_box .image .caption p {
    font-size: 12px;
  }
}