@charset "UTF-8";
/* -----------------------------------------
  media query
----------------------------------------- */

/* -----------------------------------------
  Images Path
----------------------------------------- */

/* -----------------------------------------
  base
----------------------------------------- */

/* -----------------------------------------
  Plugin
----------------------------------------- */

/*
 *  Remodal - v1.1.1
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */

/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */

/* Default theme styles for the background */

.remodal-bg.remodal-is-opening, .remodal-bg.remodal-is-opened {
  -webkit-filter: blur(3px);
  filter: blur(3px);
}
/* Default theme styles of the overlay */

.remodal-overlay {
  background: rgba(43, 46, 56, 0.9);
}
.remodal-overlay.remodal-is-opening, .remodal-overlay.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.remodal-overlay.remodal-is-opening {
  -webkit-animation-name: remodal-overlay-opening-keyframes;
  animation-name: remodal-overlay-opening-keyframes;
}
.remodal-overlay.remodal-is-closing {
  -webkit-animation-name: remodal-overlay-closing-keyframes;
  animation-name: remodal-overlay-closing-keyframes;
}
/* Default theme styles of the wrapper */

.remodal-wrapper {
  padding: 10px 10px 0;
}
/* Default theme styles of the modal dialog */

.remodal {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  padding: 35px;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  color: #2b2e38;
  background: #fff;
  vertical-align: middle;
}
.remodal.remodal-is-opening, .remodal.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.remodal.remodal-is-opening {
  -webkit-animation-name: remodal-opening-keyframes;
  animation-name: remodal-opening-keyframes;
}
.remodal.remodal-is-closing {
  -webkit-animation-name: remodal-closing-keyframes;
  animation-name: remodal-closing-keyframes;
}
/* Vertical align of the modal dialog */

.remodal-wrapper:after {
  vertical-align: middle;
}
/* Close button */

.remodal-close {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  overflow: visible;
  width: 35px;
  height: 35px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
  color: #95979c;
  border: 0;
  outline: 0;
  background: transparent;
}
.remodal-close:hover, .remodal-close:focus {
  color: #2b2e38;
}
.remodal-close:before {
  font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
  font-size: 25px;
  line-height: 35px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 35px;
  content: "\00d7";
  text-align: center;
}
/* Dialog buttons */

.remodal-confirm, .remodal-cancel {
  font: inherit;
  display: inline-block;
  overflow: visible;
  min-width: 110px;
  margin: 0;
  padding: 12px 0;
  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border: 0;
  outline: 0;
}
.remodal-confirm {
  color: #fff;
  background: #81c784;
}
.remodal-confirm:hover, .remodal-confirm:focus {
  background: #66bb6a;
}
.remodal-cancel {
  color: #fff;
  background: #e57373;
}
.remodal-cancel:hover, .remodal-cancel:focus {
  background: #ef5350;
}
/* Remove inner padding and border in Firefox 4+ for the button tag. */

.remodal-confirm::-moz-focus-inner, .remodal-cancel::-moz-focus-inner, .remodal-close::-moz-focus-inner {
  padding: 0;
  border: 0;
}
/* Keyframes
   ========================================================================== */

@-webkit-keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@-webkit-keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@-webkit-keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* Media queries
   ========================================================================== */

@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 700px;
  }
}
/* IE8
   ========================================================================== */

.lt-ie9 .remodal-overlay {
  background: #2b2e38;
}
.lt-ie9 .remodal {
  width: 700px;
}
/*
 *  Remodal - v1.1.1
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */

/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */

/* Hide scroll bar */

html.remodal-is-locked {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
}
/* Anti FOUC */

.remodal, [data-remodal-id] {
  display: none;
}
/* Necessary styles of the overlay */

.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  display: none;
}
/* Necessary styles of the wrapper */

.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch;
}
.remodal-wrapper:after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: "";
}
/* Fix iPad, iPhone glitches */

.remodal-overlay, .remodal-wrapper {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
/* Necessary styles of the modal dialog */

.remodal {
  position: relative;
  outline: none;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block;
}

/* -----------------------------------------
  Module
----------------------------------------- */

/* -----------------------------------------
    button
----------------------------------------- */

.btn-base {
  display: block;
  color: #fff;
  background: #e50012;
  border-radius: 8px;
}
.btn-base.arwR {
  position: relative;
}
.btn-base.arwR:after {
  content: "";
  position: absolute;
  display: block;
  width: 8px;
  height: 8px;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (min-width: 768px) {
  .btn-base.arwR:after {
    right: 12px;
  }
}
/* -----------------------------------------
  Layout
----------------------------------------- */

/* -----------------------------------------
    Common parts
----------------------------------------- */

html {
  overflow: auto;
}
body {
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  min-width: 320px;
  color: #333;
}
@media screen and (max-width: 767px) {
  body {
    line-height: 1.6;
    font-size: 15px;
  }
}
@media screen and (min-width: 768px) {
  body {
    min-width: 1140px;
    line-height: 1.8;
    font-size: 16px;
  }
}
* {
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
.spOnly {
  display: inline;
}
@media screen and (min-width: 768px) {
  .spOnly {
    display: none;
  }
}
.pcOnly {
  display: none;
}
@media screen and (min-width: 768px) {
  .pcOnly {
    display: inline;
  }
}
.clearfix {
  *zoom: 1;
}
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}
/* -----------------------------------------
    Link style
----------------------------------------- */

a {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  a {
    transition: .3s;
  }
  a:hover {
    opacity: .7;
  }
}
/* -----------------------------------------
    Wrap
----------------------------------------- */

#wrapper {
  width: 100%;
}
.content-inner {
  width: 1040px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .content-inner {
    width: 100%;
    padding-right: 5.33333%;
    padding-left: 5.33333%;
  }
  .content-inner.sp-100 {
    padding-right: 0;
    padding-left: 0;
  }
}

/* -----------------------------------------
    Contents
----------------------------------------- */

/* title */

.main-heading {
  background-color: #001A80;
  color: #fff;
  font-size: 24px;
  text-align: center;
  padding: 34px 0;
  font-weight: bold;
}
.main-heading .content-inner {
  display: block;
  font-style: inherit;
}
@media screen and (max-width: 767px) {
  .main-heading {
    font-size: 15px;
    padding: 17px 0;
  }
}
.common-section-title {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 40px;
}
.common-section-title span {
  position: relative;
  padding-left: 45px;
  line-height: 30px;
  display: inline-block;
}
.common-section-title span:before {
  content: "";
  height: 30px;
  width: 30px;
  display: block;
  background: transparent url(/img/ico_global.png) center center no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: -2px;
}
@media screen and (max-width: 767px) {
  .common-section-title {
    font-size: 14px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  .common-section-title span {
    padding-left: 25px;
    line-height: 20px;
  }
}
@media screen and (max-width: 767px) {
  .common-section-title span:before {
    height: 20px;
    width: 20px;
  }
}

#about {
  line-height: 1.6;
  font-size: 16px;
}
#about img {
  max-width: 100%;
}
#about * {
  box-sizing: border-box;
}
#about .section-common {
  padding: 50px 0 60px;
}
#about .content-inner {
  width: 1040px;
  margin: 0 auto;
}
#about .main-heading {
  background-color: #f1b723;
  color: #fff;
  font-size: 24px;
  text-align: center;
  padding: 34px 0;
  font-weight: bold;
}
#about .about-heading-center {
  font-size: 30px;
  font-weight: bold;
  color: #004da0;
  text-align: center;
  margin: 0 auto 25px;
}
#about .about-heading-center .heading-inner {
  display: inline-block;
}
#about .about-heading-center .heading-inner .m_pc{
  line-height: 0;
}
#about .text-wrap {
  line-height: 1.8;
  width: 100%;
}
#about .text-wrap.lead-text {
  display: block;
  margin: 0 auto;
  width: 780px;
  text-align: left;
  line-height: 1.8;
}
.lead-text--courseannai {
  margin-top: 30px !important;
  width: 630px !important;
}
.button-wrap--course {
  text-align: center;
  margin: 30px 0 0;
}
.button-wrap--course a {
  font-size: 14px;
  height: 44px;
  width: 270px;
  line-height: 46px;
  color: #fff;
  background-color: #004da0;
  border-radius: 8px;
  display: inline-block;
  text-align: center;
  position: relative;
}
.button-wrap--course {
  text-align: center;
  margin: 30px 0 0;
}
#about .common-section-title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 40px;
}
#about .common-section-title span {
  position: relative;
  padding-left: 45px;
  line-height: 30px;
  display: inline-block;
}
#about .common-section-title span:before {
  content: "";
  height: 35px;
  width: 35px;
  display: block;
  background: transparent url(/img/about/about_section-icon.png) center center no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: -6px;
}
#about .mv-area {
  padding-top: 50px;
  text-align: center;
}
#about .mv-area .heading-text {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  color: #004da0;
  line-height: 1.6;
  margin-bottom: 35px;
}
#about .mv-area .text-wrap {
  margin-bottom: 35px;
}
#about .mv-area .mv-image-wrap {
  height: 530px;
  background: transparent url(/img/about/about_mv-bgimage.jpg) center top no-repeat;
  background-size: cover;
}
#about .mv-area .content-inner .button-wrap {
  margin: 0 0 40px 0;
}
#about .mv-area .mv-image-wrap .content-inner {
  position: relative;
  height: 100%;
}
#about .mv-area .content-inner .button-wrap a {
  font-size: 14px;
  height: 44px;
  width: 290px;
  line-height: 46px;
  color: #fff;
  background-color: #004da0;
  border-radius: 8px;
  display: inline-block;
  text-align: center;
  position: relative;
}
#about .mv-area .content-inner .button-wrap a:nth-of-type(1) {
  margin: 0 20px 0 0;
}
#about .mv-area .content-inner .button-wrap a:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 10px;
  width: 7px;
  height: 7px;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#about .mv-area .mv-image-wrap .mv-text-image_001 {
  display: block;
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0;
  height: 110px;
  margin: auto;
}
#about .mv-area .mv-image-wrap .mv-text-image_001 img {
  width: 718px;
}
#about .mv-area .mv-image-wrap .mv-text-image_002 {
  position: absolute;
  top: 46px;
  right: -34px;
}
#about .mv-area .mv-image-wrap .mv-text-image_003 {
  position: absolute;
  bottom: 80px;
  left: 24px;
}
#about .concept-wrap {
  background: transparent url(/img/about/about_bg-pattern-001.jpg) center center repeat;
}
#about .concept-wrap .lead-text {
  margin-bottom: 50px;
}
#about .concept-wrap .concept-description-list-wrap .heading {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}
#about .concept-wrap .concept-description-list-wrap .heading:before {
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background: #004da0;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
}
#about .concept-wrap .concept-description-list-wrap .heading span {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  width: 500px;
  line-height: 48px;
  height: 45px;
  border-radius: 22.5px;
  background-color: #004da0;
  text-align: center;
}
#about .concept-wrap .concept-description-list-wrap .descrription-list {
  font-size: 0;
}
#about .concept-wrap .concept-description-list-wrap .descrription-list li {
  display: inline-block;
  width: 320px;
  float: left;
  text-align: center;
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #f1b723;
  padding: 20px;
}
#about .concept-wrap .concept-description-list-wrap .descrription-list li:not(:last-child) {
  margin-right: 40px;
}
#about .concept-wrap .concept-description-list-wrap .descrription-list li img {
  margin-bottom: 15px;
  width: 190px;
}
#about .concept-wrap .concept-description-list-wrap .descrription-list li .text {
  font-size: 16px;
  line-height: 1.8;
  text-align: left;
}
#about .method-wrap {
  background-color: #fef8e9;
  overflow: hidden;
}
#about .method-wrap .content-inner {
  position: relative;
}
#about .method-wrap .content-inner:before {
  content: "";
  position: absolute;
  left: -222px;
  top: -50px;
  width: 308px;
  height: 114px;
  display: block;
  background: transparent url(/img/about/about_flag_001.png) center center no-repeat;
  background-size: contain;
}
#about .method-wrap .content-inner:after {
  content: "";
  position: absolute;
  right: -222px;
  top: -50px;
  width: 308px;
  height: 115px;
  display: block;
  background: transparent url(/img/about/about_flag_002.png) center center no-repeat;
  background-size: contain;
}
#about .method-wrap .method-list-wrap {
  margin-top: 50px;
}
#about .method-wrap .method-list-wrap .method-list {
  font-size: 0;
}
#about .method-wrap .method-list-wrap .method-list li .text-wrap {
  width: 600px;
  display: inline-block;
}
#about .method-wrap .method-list-wrap .method-list li .text-wrap .list-heading-wrap {
  display: table;
  margin-bottom: 25px;
}
#about .method-wrap .method-list-wrap .method-list li .text-wrap .list-heading-wrap .icon {
  display: table-cell;
  width: 90px;
  vertical-align: middle;
  padding-right: 15px;
}
#about .method-wrap .method-list-wrap .method-list li .text-wrap .list-heading-wrap .heading {
  display: table-cell;
  font-size: 24px;
  line-height: 1;
  font-weight: bold;
  color: #004da0;
  vertical-align: middle;
}
#about .method-wrap .method-list-wrap .method-list li .text-wrap .text {
  font-size: 16px;
  line-height: 1.8;
}
#about .method-wrap .method-list-wrap .method-list li:nth-of-type(2n-1) .text-wrap {
  float: left;
}
#about .method-wrap .method-list-wrap .method-list li:nth-of-type(2n-1) .list-image {
  float: right;
}
#about .method-wrap .method-list-wrap .method-list li:nth-of-type(2n) .text-wrap {
  float: right;
}
#about .method-wrap .method-list-wrap .method-list li:nth-of-type(2n) .list-image {
  float: left;
}
#about .method-wrap .method-list-wrap .method-list li:not(:last-child) {
  margin-bottom: 60px;
}
#about .conversion-middle-area {
  background: transparent url(/img/about/about_action-area-bg.png) center center no-repeat;
  background-size: cover;
  padding: 50px 0 50px;
  text-align: center;
}
#about .conversion-middle-area .content-inner {
  position: relative;
}
#about .conversion-middle-area .conversion-title {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 25px;
  color: #fff;
}
#about .conversion-middle-area .block--0528 {
  margin-bottom: 30px;
}
#about .conversion-middle-area .txt2--0528 {
  font-size: 22px;
  position: relative;
  margin-bottom: 5px;
  display: inline-block;
  font-weight: bold;
}
#about .conversion-middle-area .txt2--0528:before, .txt2--0528:after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 1px;
  height: 45px;
  background: #000;
  top: 0;
}
#about .conversion-middle-area .txt2--0528:before {
  transform: rotate(-35deg);
  left: -30px;
}
#about .conversion-middle-area .txt2--0528:after {
  transform: rotate(35deg);
  right: -30px;
}
#about .conversion-middle-area .conversion-text-image {
  display: block;
  margin: 0 auto 30px;
}
#about .conversion-middle-area .btn-conversion {
  display: inline-block;
  text-align: center;
  background: #e50012;
  font-size: 14px;
  padding: 9px 65px;
  width: auto;
  color: #fff;
  border-radius: 8px;
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
}
#about .conversion-middle-area .btn-conversion:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 10px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#about .conversion-middle-area .btn-conversion span {
  font-size: 18px;
  font-weight: bold;
}
#about .conversion-middle-area .call-wrap {
  text-align: center;
}
#about .conversion-middle-area .call-wrap .call-warp-inner {
  display: inline-block;
  text-align: right;
}
#about .conversion-middle-area .call-wrap .call-warp-inner .time-text {
  display: block;
  font-size: 12px;
}
#about .conversion-middle-area .image_001 {
  position: absolute;
  bottom: -50px;
  left: -205px;
}
#about .conversion-middle-area .image_002 {
  position: absolute;
  bottom: -50px;
  right: -222px;
}
#about .support-wrap {
  background: transparent url(/img/about/about_support-bg.jpg) center center no-repeat;
  background-size: cover;
}
#about .support-wrap .lead-text {
  margin-bottom: 50px;
}
#about .support-wrap .support-list-wrap .support-list {
  font-size: 0;
}
#about .support-wrap .support-list-wrap .support-list li {
  float: left;
  vertical-align: top;
  display: inline-block;
  width: 245px;
  height: 275px;
  background-color: #fff;
  padding: 20px 20px 0;
  box-shadow: rgba(178, 131, 90, 0.4) 4px 4px 0px;
  position: relative;
}
#about .support-wrap .support-list-wrap .support-list li:not(:last-child) {
  margin-right: 20px;
}
#about .support-wrap .support-list-wrap .support-list li:before {
  position: absolute;
  content: "";
  display: block;
  width: 28px;
  height: 57px;
  background: transparent url(/img/about/about_support-pin.png) center center no-repeat;
  background-size: contain;
  left: 0;
  top: -30px;
}
#about .support-wrap .support-list-wrap .support-list li img {
  margin-bottom: 15px;
}
#about .support-wrap .support-list-wrap .support-list li .text {
  font-size: 16px;
  text-align: center;
  line-height: 1.8;
}
#about .price-wrap {
  background: #fafdff url(/img/about/about_price-bgimage-002.png) center bottom repeat-x;
}
#about .price-wrap .content-inner {
  position: relative;
}
#about .price-wrap .sun-image {
  position: absolute;
  top: -50px;
  left: -240px;
}
#about .price-wrap .lead-text {
  margin-bottom: 50px;
}
#about .price-wrap .course-heading {
  font-size: 20px;
  text-align: left;
  margin-bottom: 15px;
  font-weight: bold;
}
#about .price-wrap .small-text {
  font-size: 14px;
}
#about .price-wrap .course-wrap .course-table {
  width: 100%;
}
#about .price-wrap .course-wrap .course-table.sp {
  display: none;
}
#about .price-wrap .course-wrap .course-table .tb1 {
  width: 135px;
}
#about .price-wrap .course-wrap .course-table th, #about .price-wrap .course-wrap .course-table td {
  text-align: center;
  border: 1px solid #d8d8d8;
  vertical-align: middle;
}
#about .price-wrap .course-wrap .course-table thead {
  color: #fff;
}
#about .price-wrap .course-wrap .course-table thead th, #about .price-wrap .course-wrap .course-table thead td {
  padding: 15px 0;
}
#about .price-wrap .course-wrap .course-table thead th {
  border-bottom: none;
}
#about .price-wrap .course-wrap .course-table tbody th, #about .price-wrap .course-wrap .course-table tbody td {
  padding: 25px 0;
  background-color: #fff;
}
#about .price-wrap .infant-block {
  margin-bottom: 45px;
}
#about .price-wrap .infant-block .course-heading {
  color: #e95383;
}
#about .price-wrap .infant-block .course-table thead {
  background-color: #ed759c;
}
#about .price-wrap .infant-block .course-table tbody th {
  background-color: #fbdde6;
}
#about .price-wrap .primary-school-block {
  margin-bottom: 18px;
}
#about .price-wrap .primary-school-block .course-heading {
  color: #00aebb;
}
#about .price-wrap .primary-school-block .course-table thead {
  background-color: #33bec9;
}
#about .price-wrap .primary-school-block .course-table tbody th {
  background-color: #cceff1;
}
#about .price-wrap .notice-sentence {
  font-size: 14px;
  line-height: 1.6;
}
#about .float-wrap .left-wrap {
  width: 620px;
  float: left;
}
#about .float-wrap .left-wrap .float-heading {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #004da0;
}
#about .float-wrap .right-wrap {
  float: right;
}
#about .point-wrap {
  background: transparent url(/img/about/about_point-bg.png) center center repeat;
}
#about .point-wrap .button-wrap {
  padding-top: 35px;
}
#about .point-wrap .button-wrap a {
  font-size: 14px;
  height: 44px;
  width: 270px;
  line-height: 46px;
  color: #fff;
  background-color: #004da0;
  border-radius: 8px;
  display: inline-block;
  text-align: center;
  position: relative;
}
#about .point-wrap .button-wrap a:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 10px;
  width: 7px;
  height: 7px;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  #about {
    font-size: 15px;
  }
}
@media screen and (min-width: 768px) {
  #about .m_sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #about .m_sp {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  #about .m_pc {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  #about .m_pc {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #about .section-common {
    padding: 30px 0 30px;
  }
}
@media screen and (max-width: 767px) {
  #about .breadcrumb-list li {
    vertical-align: top;
  }
}
@media screen and (max-width: 767px) {
  #about .content-inner {
    width: 100%;
    padding-right: 5.33333%;
    padding-left: 5.33333%;
  }
  #about .content-inner.sp-100 {
    padding-right: 0;
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  #about .main-heading {
    font-size: 14px;
    padding: 17px 0;
  }
}
@media screen and (max-width: 767px) {
  #about .about-heading-center {
    font-size: 18px;
    margin-bottom: 12px;
    letter-spacing: 0px;
  }
}
@media screen and (max-width: 767px) {
  #about .text-wrap {
    line-height: 1.6;
  }
}
@media screen and (max-width: 767px) {
  #about .text-wrap.lead-text {
    width: 100%;
    line-height: 1.6;
  }
}
@media screen and (max-width: 767px) {
  #about .common-section-title {
    font-size: 14px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  #about .common-section-title span {
    padding-left: 25px;
    line-height: 20px;
  }
}
@media screen and (max-width: 767px) {
  #about .common-section-title span:before {
    height: 20px;
    width: 20px;
  }
}
@media screen and (max-width: 767px) {
  #about .mv-area {
    padding-top: 25px;
  }
}
@media screen and (max-width: 767px) {
  #about .mv-area .heading-text {
    font-size: 18px;
    margin-bottom: 18px;
  }
}
@media screen and (max-width: 767px) {
  #about .mv-area .text-wrap {
    text-align: left;
    margin-bottom: 25px;
  }
  #about .mv-area .content-inner .button-wrap a:nth-of-type(1) {
    margin: 0 0 30px 0;
  }
}
@media screen and (max-width: 767px) {
  #about .mv-area .mv-image-wrap {
    height: auto;
    background: none;
  }
}
@media screen and (max-width: 767px) {
  #about .mv-area .mv-image-wrap .mv-text-image_001 {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #about .mv-area .mv-image-wrap .mv-text-image_002 {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #about .mv-area .mv-image-wrap .mv-text-image_003 {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #about .concept-wrap .lead-text {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  #about .concept-wrap .concept-description-list-wrap .heading {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  #about .concept-wrap .concept-description-list-wrap .heading span {
    font-size: 14px;
    width: 240px;
    height: 25px;
    line-height: 28px;
    border-radius: 12.5px;
  }
}
@media screen and (max-width: 767px) {
  #about .concept-wrap .concept-description-list-wrap .descrription-list li {
    width: 100%;
    float: none;
    border-radius: 4px;
    padding: 15px 4.47761%;
  }
}
@media screen and (max-width: 767px) {
  #about .concept-wrap .concept-description-list-wrap .descrription-list li:not(:last-child) {
    margin: 0 0 20px;
  }
}
@media screen and (max-width: 767px) {
  #about .method-wrap .content-inner:before {
    background-image: url(/img/about/sp/about_flag_001.png);
    top: -35px;
    left: -5px;
    width: 103px;
    height: 60px;
    background-size: contain;
  }
}
@media screen and (max-width: 767px) {
  #about .method-wrap .content-inner:after {
    background-image: url(/img/about/sp/about_flag_002.png);
    top: -35px;
    right: -5px;
    width: 103px;
    height: 60px;
    background-size: contain;
  }
}
@media screen and (max-width: 767px) {
  #about .method-wrap .method-list-wrap {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  #about .method-wrap .method-list-wrap .method-list li .text-wrap {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  #about .method-wrap .method-list-wrap .method-list li .text-wrap .list-heading-wrap {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  #about .method-wrap .method-list-wrap .method-list li .text-wrap .list-heading-wrap .icon {
    width: 60px;
    box-sizing: content-box;
  }
}
@media screen and (max-width: 767px) {
  #about .method-wrap .method-list-wrap .method-list li .text-wrap .list-heading-wrap .heading {
    font-size: 15px;
    line-height: 1.6;
  }
}
@media screen and (max-width: 767px) {
  #about .method-wrap .method-list-wrap .method-list li .text-wrap .text {
    font-size: 15px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  #about .method-wrap .method-list-wrap .method-list li:nth-of-type(2n-1) .text-wrap {
    float: none;
  }
}
@media screen and (max-width: 767px) {
  #about .method-wrap .method-list-wrap .method-list li:nth-of-type(2n-1) .list-image {
    float: none;
    display: block;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  #about .method-wrap .method-list-wrap .method-list li:nth-of-type(2n) .text-wrap {
    float: none;
  }
}
@media screen and (max-width: 767px) {
  #about .method-wrap .method-list-wrap .method-list li:nth-of-type(2n) .list-image {
    float: none;
    display: block;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  #about .method-wrap .method-list-wrap .method-list li:not(:last-child) {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  #about .conversion-middle-area {
    padding: 30px 0 70px;
    overflow: hidden;
    background-image: url(/img/about/sp/about_action-area-bg.png);
  }
}
@media screen and (max-width: 767px) {
  #about .conversion-middle-area .conversion-title {
    font-size: 15px;
    margin-bottom: 15px;
  }
  #about .conversion-middle-area .txt2--0528 {
    font-size: 12px;
  }
  #about .conversion-middle-area .block--0528 {
    margin-bottom: 15px;
  }
  #about .conversion-middle-area .txt2--0528:before, .txt2--0528:after {
    height: 25px;
  }
  #about .conversion-middle-area .txt2--0528:before {
    left: -20px;
  }
  #about .conversion-middle-area .txt2--0528:after {
    right: -20px;
  }
}
@media screen and (max-width: 767px) {
  #about .conversion-middle-area .conversion-text-image {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  #about .conversion-middle-area .btn-conversion {
    font-size: 12px;
    padding: 9px 20px;
    width: 100%;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  #about .conversion-middle-area .btn-conversion:after {
    width: 8px;
    height: 8px;
  }
}
@media screen and (max-width: 767px) {
  #about .conversion-middle-area .btn-conversion span {
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  #about .conversion-middle-area .image_001 {
    bottom: -80px;
    left: -38px;
    width: 183px;
  }
}
@media screen and (max-width: 767px) {
  #about .conversion-middle-area .image_002 {
    bottom: -80px;
    right: -9px;
    width: 230px;
  }
}
@media screen and (max-width: 767px) {
  #about .support-wrap {
    background-image: url(/img/about/sp/about_support-bg.jpg);
  }
}
@media screen and (max-width: 767px) {
  #about .support-wrap .lead-text {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  #about .support-wrap .support-list-wrap .support-list li {
    padding: 0;
    box-shadow: rgba(178, 131, 90, 0.4) 2px 2px 0px;
    height: auto;
    width: 47.76119%;
    margin-top: 35px;
  }
}
@media screen and (max-width: 767px) {
  #about .support-wrap .support-list-wrap .support-list li:not(:last-child) {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  #about .support-wrap .support-list-wrap .support-list li:nth-of-type(2n - 1) {
    float: left;
  }
  #about .support-wrap .support-list-wrap .support-list li:nth-of-type(2n) {
    float: right;
  }
}
@media screen and (max-width: 767px) {
  #about .support-wrap .support-list-wrap .support-list li:before {
    width: 19px;
    height: 37px;
    top: -20px;
  }
}
@media screen and (max-width: 767px) {
  #about .support-wrap .support-list-wrap .support-list li img {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  #about .price-wrap {
    background-size: 275px auto;
  }
}
@media screen and (max-width: 767px) {
  #about .price-wrap .lead-text {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  #about .price-wrap .course-heading {
    font-size: 15px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  #about .price-wrap .course-wrap .course-table.pc {
    display: none;
  }
  #about .price-wrap .course-wrap .course-table:not(:last-of-type) {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  #about .price-wrap .course-wrap .course-table.sp {
    display: table;
  }
}
@media screen and (max-width: 767px) {
  #about .price-wrap .course-wrap .course-table .tb1 {
    width: 24.77612%;
  }
}
@media screen and (max-width: 767px) {
  #about .price-wrap .course-wrap .course-table thead th, #about .price-wrap .course-wrap .course-table thead td {
    padding: 8px 0;
  }
}
@media screen and (max-width: 767px) {
  #about .price-wrap .course-wrap .course-table tbody th, #about .price-wrap .course-wrap .course-table tbody td {
    padding: 8px 0;
  }
}
@media screen and (min-width: 768px) {
  #about .price-wrap .course-wrap .course-table tbody tr:first-child th, #about .price-wrap .course-wrap .course-table tbody tr:first-child td {
    border-top: none;
  }
}
@media screen and (max-width: 767px) {
  #about .price-wrap .infant-block {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  #about .price-wrap .infant-block .course-table tbody tr th:first-child {
    background-color: #ed759c;
    color: #fff;
  }
}
@media screen and (max-width: 767px) {
  #about .price-wrap .primary-school-block {
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 767px) {
  #about .price-wrap .primary-school-block .course-table tr th:first-child {
    background-color: #33bec9;
    color: #fff;
  }
}
@media screen and (max-width: 767px) {
  #about .price-wrap .notice-sentence {
    font-size: 11px;
  }
}
@media screen and (max-width: 767px) {
  #about .float-wrap .left-wrap {
    width: 100%;
    float: none;
  }
}
@media screen and (max-width: 767px) {
  #about .float-wrap .left-wrap .float-heading {
    font-size: 18px;
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 767px) {
  #about .float-wrap .left-wrap .text-wrap {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  #about .float-wrap .right-wrap {
    float: none;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  #about .float-wrap .right-wrap .point-image {
    width: 229px;
  }
}
@media screen and (max-width: 767px) {
  #about .point-wrap .button-wrap {
    padding: 20px 0;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  #about .point-wrap .button-wrap a {
    width: 86.56716%;
    border-radius: 4px;
  }
}
#course {
  line-height: 1.6;
  font-size: 16px;
}
#course img {
  max-width: 100%;
}
#course * {
  box-sizing: border-box;
}
#course .section-common {
  padding: 50px 0 60px;
}
#course .content-inner {
  width: 1040px;
  margin: 0 auto;
}
#course .main-heading {
  background-color: #00aebb;
  color: #fff;
  font-size: 24px;
  text-align: center;
  padding: 34px 0;
  font-weight: bold;
}
#course .main-heading .sub-text {
  font-size: 16px;
  display: block;
  font-weight: normal;
}
#course.kinder .main-heading {
  background-color: #e95383;
}
#course .course-heading-center {
  font-size: 30px;
  font-weight: bold;
  color: #004da0;
  text-align: center;
  margin: 0 auto 25px;
}
#course .course-heading-center .heading-inner {
  display: inline-block;
}
#course .text-wrap {
  line-height: 1.8;
  width: 100%;
}
#course .text-wrap.lead-text {
  display: block;
  margin: 0 auto;
  width: 780px;
  text-align: left;
  line-height: 1.8;
}
#course .common-section-title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 40px;
}
#course .common-section-title span {
  position: relative;
  padding-left: 45px;
  line-height: 30px;
  display: inline-block;
}
#course .common-section-title span:before {
  content: "";
  height: 35px;
  width: 35px;
  display: block;
  background-size: contain;
  position: absolute;
  left: 0;
  top: -6px;
}
#course .mv-area {
  padding-top: 50px;
  text-align: center;
}
#course .mv-area .heading-text {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  color: #00aebb;
  line-height: 1.6;
  margin-bottom: 35px;
}
#course .mv-area .text-wrap {
  margin-bottom: 35px;
}
#course .mv-area .mv-image-wrap {
  height: 530px;
  background: transparent url(/img/course/elementary/course_mv-bgimage.png) center top no-repeat;
  background-size: cover;
}
#course .mv-area .mv-image-wrap .content-inner {
  position: relative;
  height: 100%;
}
#course .mv-area .mv-image-wrap .mv-text-image_001 {
  display: block;
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0;
  height: 110px;
  margin: auto;
}
#course .mv-area .mv-image-wrap .mv-text-image_001 img {
  width: 718px;
}
#course .mv-area .mv-image-wrap .mv-text-image_002 {
  position: absolute;
  top: 46px;
  right: -34px;
}
#course .mv-area .mv-image-wrap .mv-text-image_003 {
  position: absolute;
  bottom: 50px;
  left: 24px;
}
#course .mv-area .mark {
  position: absolute;
  z-index: 1;
  bottom: -72px;
  right: -72px;
}
#course.kinder .mv-area .heading-text {
  color: #e95383;
}
#course.kinder .mv-area .mv-image-wrap {
  background-image: url(/img/course/kinder/course_mv-bgimage.jpg);
}
#course .course-overview {
  background-color: #e8f3ff;
}
#course .course-overview .lead-text {
  margin-bottom: 30px;
}
#course .course-overview .course-overview-list {
  font-size: 0;
  text-align: center;
  margin-bottom: 90px;
}
#course .course-overview .course-overview-list li {
  display: inline-block;
  margin: 0 9px 20px;
  vertical-align: top;
}
#course .course-overview .one-day-block .content-inner {
  background: #f2fbfc;
  padding: 53px 30px 20px;
  position: relative;
}
#course .course-overview .one-day-block .one-day-title {
  position: absolute;
  top: -64px;
  left: 0;
  width: 100%;
  text-align: center;
}
#course .course-overview .one-day-block .notice {
  font-size: 12px;
  text-align: right;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  #course .course-overview .one-day-block .content-inner .notice {
    text-align: left;
    font-size: 10px;
    margin-top: 0;
    background: #e3f6f8;
  }
}
#course.kinder .course-overview .one-day-block .content-inner {
  background: #fef6f9;
}
#course .one-day-block__txtbox {
  position: absolute;
  display: flex;
}
#course .one-day-block__txt__block_1 {
  position: relative;
  top: -140px;
}
#course .one-day-block__txt__block_2 {
  position: relative;
  top: -290px;
}
#course .one-day-block__txt__block_3 {
  position: relative;
  top: -140px;
}
#course .one-day-block__txt__block_4 {
  position: relative;
  top: -305px;
}
#course .one-day-block__txt__block_5 {
  position: relative;
  top: -141px;
  white-space: nowrap;
}
#course .one-day-block__txt__block_6 {
  position: relative;
  top: -274px;
}
#course .one-day-block__txt__block_1, .one-day-block__txt__block_2, .one-day-block__txt__block_3, .one-day-block__txt__block_4, .one-day-block__txt__block_5, .one-day-block__txt__block_6 {
  width: 163px;
  padding: 0 1%;
}
#course .one-day-block__time {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}
#course .block__txt__time__txt {
  display: block;
  font-size: 10px;
  font-weight: 100;
}
#course .one-day-block__txt {
  font-size: 12px;
  line-height: 1.4;
  margin: 10px 0;
  letter-spacing: 0;
}
#course .kodawari-wrap {
  padding: 0;
}
#course .kodawari-wrap .kodawari-heading-block {
  padding: 50px 0 60px;
  background: transparent url(/img/course/course_qa-bg.jpg) center center repeat;
}
#course .kodawari-wrap .kodawari-heading-block .content-inner {
  position: relative;
}
#course .kodawari-wrap .kodawari-heading-block .content-inner:before {
  z-index: 1;
  content: "";
  position: absolute;
  left: -222px;
  top: -50px;
  width: 392px;
  height: 145px;
  display: block;
  background: transparent url(/img/course/course_flag_001.png) center top no-repeat;
  background-size: contain;
}
#course .kodawari-wrap .kodawari-heading-block .content-inner:after {
  z-index: 1;
  content: "";
  position: absolute;
  right: -222px;
  top: -50px;
  width: 391px;
  height: 145px;
  display: block;
  background: transparent url(/img/course/course_flag_002.png) center top no-repeat;
  background-size: contain;
}
#course .kodawari-wrap .kodawari-heading-block .course-heading-center {
  margin-bottom: 50px;
}
#course .kodawari-wrap .kodawari-heading-block .course-heading-center .heading-inner {
  position: relative;
}
#course .kodawari-wrap .kodawari-heading-block .course-heading-center .heading-inner .kodawari-fukidashi {
  position: absolute;
  display: block;
  width: 142px;
  left: -157px;
  top: -85px;
  z-index: 3;
}
#course .kodawari-wrap .kodawari-heading-block .kodawari-list {
  font-size: 0;
  text-align: center;
  position: relative;
  z-index: 3;
}
#course .kodawari-wrap .kodawari-heading-block .kodawari-list li {
  display: inline-block;
}
#course .kodawari-wrap .kodawari-heading-block .kodawari-list li:not(:last-child) {
  margin-right: 50px;
  position: relative;
}
#course .kodawari-wrap .kodawari-heading-block .kodawari-list li:not(:last-child):after {
  position: absolute;
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background: transparent url(/img/course/course_kodawari-cross.png) center center no-repeat;
  background-size: contain;
  right: -40px;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
#course .kodawari-wrap .kodawari-heading-block .bg-image1, #course .kodawari-wrap .kodawari-heading-block .bg-image2 {
  position: absolute;
  bottom: -60px;
  z-index: 2;
}
#course .kodawari-wrap .kodawari-heading-block .bg-image1 {
  left: -166px;
}
#course .kodawari-wrap .kodawari-heading-block .bg-image2 {
  right: -230px;
}
#course .kodawari-wrap .kodawari-title {
  font-size: 30px;
  text-align: center;
  margin-bottom: 50px;
}
#course .kodawari-wrap .kodawari-title .title-text {
  padding: 25px 0 25px 130px;
  position: relative;
  display: inline-block;
  font-weight: bold;
}
#course .kodawari-wrap .kodawari-title .title-text:before {
  position: absolute;
  display: block;
  content: "";
  width: 100px;
  height: 100px;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  background: transparent url(/img/course/course_kodawari-icon_1-s.png) center center no-repeat;
  background-size: contain;
}
#course .kodawari-wrap .kodawari-1-block {
  padding: 60px 0;
  background: transparent url(/img/course/course_kodawari_1-bg.jpg) center top no-repeat;
  background-size: cover;
}
#course .kodawari-wrap .kodawari-1-block .kodawari-title {
  color: #08c6a2;
}
#course .kodawari-wrap .kodawari-1-block .kodawari-1-list {
  font-size: 0;
}
#course .kodawari-wrap .kodawari-1-block .kodawari-1-list>li {
  display: block;
  padding: 30px;
  background: #fff;
  border: 1px solid #08c6a2;
  border-radius: 8px;
}
#course .kodawari-wrap .kodawari-1-block .kodawari-1-list>li:not(:last-child) {
  margin-bottom: 60px;
  position: relative;
}
#course .kodawari-wrap .kodawari-1-block .kodawari-1-list>li:not(:last-child):after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 30px;
  background: transparent url(/img/course/course_kodawari-arrow-s.png) center center no-repeat;
  background-size: contain;
  right: 0;
  bottom: -45px;
  left: 0;
  margin: 0 auto;
}
#course .kodawari-wrap .kodawari-1-block .kodawari-1-list>li>.title {
  text-align: center;
  margin-bottom: 20px;
}
#course .kodawari-wrap .kodawari-1-block .kodawari-1-list>li>.title .step>span {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  padding: 10px 20px;
  line-height: 1;
  background-color: #08c6a2;
  border-radius: 8px;
  display: inline-block;
  margin-right: 20px;
}
#course .kodawari-wrap .kodawari-1-block .kodawari-1-list>li>.title .text {
  font-size: 24px;
  padding: 10px 0;
  font-weight: bold;
  margin-right: 15px;
}
#course .kodawari-wrap .kodawari-1-block .kodawari-1-list>li>.title .small {
  font-size: 16px;
  font-weight: bold;
}
#course .kodawari-wrap .kodawari-1-block .kodawari-1-list>li .phase-list-wrap {
  font-size: 0;
  padding: 15px 20px;
  background: #e6f9f6;
  margin-bottom: 30px;
}
#course .kodawari-wrap .kodawari-1-block .kodawari-1-list>li .phase-list-wrap .phase-list {
  display: inline;
}
#course .kodawari-wrap .kodawari-1-block .kodawari-1-list>li .phase-list-wrap .phase-list>li {
  display: inline-block;
  font-size: 14px;
  margin-right: 10px;
  padding-left: 1em;
  position: relative;
}
#course .kodawari-wrap .kodawari-1-block .kodawari-1-list>li .phase-list-wrap .phase-list>li.bold {
  font-weight: bold;
}
#course .kodawari-wrap .kodawari-1-block .kodawari-1-list>li .phase-list-wrap .phase-list>li:before {
  content: "・";
  position: absolute;
  left: 0;
}
#course .kodawari-wrap .kodawari-1-block .kodawari-1-list>li .description-wrap {
  font-size: 0;
}
#course .kodawari-wrap .kodawari-1-block .kodawari-1-list>li .description-wrap .description {
  float: left;
  width: 50%;
  display: inline-block;
}
#course .kodawari-wrap .kodawari-1-block .kodawari-1-list>li .description-wrap .description:not(:last-of-type) {
  border-right: 1px solid #08c6a2;
  padding-right: 30px;
}
#course .kodawari-wrap .kodawari-1-block .kodawari-1-list>li .description-wrap .description:last-of-type {
  padding-left: 30px;
}
#course .kodawari-wrap .kodawari-1-block .kodawari-1-list>li .description-wrap .description img {
  margin-right: 30px;
  float: left;
}
#course .kodawari-wrap .kodawari-1-block .kodawari-1-list>li .description-wrap .description .text-wrap {
  display: inline;
  font-size: 16px;
  overflow: hidden;
  line-height: 1.6;
}
#course .kodawari-wrap .kodawari-1-block .kodawari-1-list>li .description-wrap .description .text-wrap .title {
  font-weight: bold;
  display: block;
}
#course .kodawari-wrap .kodawari-1-block .kodawari-1-list>li .description-wrap .description .text-wrap .text {
  overflow: hidden;
  letter-spacing: 0px;
}
#course .kodawari-wrap .kodawari-1-block .kodawari-1-list>li .description-wrap.long .description {
  width: 100%;
  padding-left: 0;
}
.about_kidsduo {
  background-color: #f1b723 !important;
}
#course .kodawari-wrap .kodawari-2-block {
  padding: 60px 0;
  background: transparent url(/img/course/course_kodawari_2-bg.jpg) center top no-repeat;
  background-size: cover;
}
#course .kodawari-wrap .kodawari-2-block .kodawari-title {
  color: #e04f4a;
}
#course .kodawari-wrap .kodawari-2-block .kodawari-title .title-text:before {
  background-image: url(/img/course/course_kodawari-icon_2-s.png);
}
#course .kodawari-wrap .kodawari-2-block .kodawari-2-list {
  font-size: 0;
}
#course .kodawari-wrap .kodawari-2-block .kodawari-2-list>li {
  display: inline-block;
  background: #fff;
  border: 2px solid #e04f4a;
  border-radius: 8px;
  width: 500px;
  padding: 30px;
}
#course .kodawari-wrap .kodawari-2-block .kodawari-2-list>li:nth-of-type(odd) {
  float: left;
}
#course .kodawari-wrap .kodawari-2-block .kodawari-2-list>li:nth-of-type(even) {
  float: right;
}
#course .kodawari-wrap .kodawari-2-block .kodawari-2-list>li .heading-wrap {
  display: table;
  width: 100%;
  margin-bottom: 25px;
}
#course .kodawari-wrap .kodawari-2-block .kodawari-2-list>li .heading-wrap .img-wrap {
  vertical-align: middle;
  display: table-cell;
}
#course .kodawari-wrap .kodawari-2-block .kodawari-2-list>li .heading-wrap .title-wrap {
  display: table-cell;
  vertical-align: middle;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.6;
  color: #e04f4a;
  padding-left: 15px;
  padding-bottom: 15px;
}
#course .kodawari-wrap .kodawari-2-block .kodawari-2-list>li .heading-wrap .title-wrap>span {
  display: block;
  position: relative;
}
#course .kodawari-wrap .kodawari-2-block .kodawari-2-list>li .heading-wrap .title-wrap>span:after {
  content: "";
  display: block;
  bottom: -15px;
  left: 0;
  position: absolute;
  height: 3px;
  width: 100%;
  background: url(/img/course/course_bg-dot.png) center left repeat-x;
}
#course .kodawari-wrap .kodawari-2-block .kodawari-2-list>li .text-wrap {
  font-size: 16px;
}
#course .kodawari-wrap .kodawari-3-block {
  padding: 60px 0 0;
  background: #e5f7fc;
}
#course .kodawari-wrap .kodawari-3-block .kodawari-title {
  color: #03386e;
  position: relative;
  z-index: 1;
}
#course .kodawari-wrap .kodawari-3-block .kodawari-title .title-text:before {
  background-image: url(/img/course/course_kodawari-icon_3-s.png);
}
#course .kodawari-wrap .kodawari-3-block .kodawari-3-content {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}
#course .kodawari-wrap .kodawari-3-block .kodawari-3-content:after {
  position: absolute;
  left: -92px;
  bottom: -50px;
  content: "";
  display: block;
  width: 1234px;
  height: 499px;
  background: transparent url(/img/course/course_kodawari_3-alphabet.png) center center no-repeat;
  background-size: contain;
}
#course .kodawari-wrap .kodawari-3-block .kodawari-3-content .kodawari-image {
  margin-bottom: 40px;
}
#course .kodawari-wrap .kodawari-3-block .kodawari-3-content .kodawari-3-content-text {
  font-size: 16px;
  line-height: 1.8;
}
#course .kodawari-wrap .kodawari-3-block .kodawari-3-content .sp-alphabet {
  position: absolute;
  z-index: 1;
  right: 50%;
  bottom: 0;
  max-width: 450px;
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
  transform: translateX(50%);
}
#course .kodawari-wrap .kodawari-3-block .kodawari-3-image-block {
  height: 500px;
  background: transparent url(/img/course/course_kodawari_3-image.jpg) center top no-repeat;
  background-size: cover;
}
#course .kodawari-wrap .kodawari-3-block .kodawari-3-image-block .title-image {
  text-align: center;
  padding-top: 192px;
}
#course .conversion-middle-area {
  background: transparent url(/img/course/course_action-area-bg.png) center center no-repeat;
  background-size: cover;
  padding: 50px 0 50px;
  text-align: center;
}
#course .conversion-middle-area .content-inner {
  position: relative;
}
#course .conversion-middle-area .conversion-title {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 25px;
  color: #fff;
}
#course .conversion-middle-area .block--0528 {
  margin-bottom: 30px;
}
#course .conversion-middle-area .txt2--0528 {
  font-size: 22px;
  position: relative;
  margin-bottom: 5px;
  font-weight: bold;
  display: inline-block;
}
#course .conversion-middle-area .txt2--0528:before, .txt2--0528:after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 1px;
  height: 45px;
  background: #000;
  top: 0;
}
#course .conversion-middle-area .txt2--0528:before {
  left: -30px;
  transform: rotate(-35deg);
}
#course .conversion-middle-area .txt2--0528:after {
  right: -30px;
  transform: rotate(35deg);
}
#course .conversion-middle-area .conversion-text-image {
  display: block;
  margin: 0 auto 30px;
}
#course .conversion-middle-area .btn-conversion {
  display: inline-block;
  text-align: center;
  background: #e50012;
  font-size: 14px;
  padding: 9px 65px;
  width: auto;
  color: #fff;
  border-radius: 8px;
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
}
#course .conversion-middle-area .btn-conversion:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 10px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#course .conversion-middle-area .btn-conversion span {
  font-size: 18px;
  font-weight: bold;
}
#course .conversion-middle-area .call-wrap {
  text-align: center;
}
#course .conversion-middle-area .call-wrap .call-warp-inner {
  display: inline-block;
  text-align: right;
}
#course .conversion-middle-area .call-wrap .call-warp-inner .time-text {
  display: block;
  font-size: 12px;
}
#course .conversion-middle-area .image_001 {
  position: absolute;
  bottom: -50px;
  left: -205px;
}
#course .conversion-middle-area .image_002 {
  position: absolute;
  bottom: -50px;
  right: -222px;
}
#course .support-wrap {
  background: transparent url(/img/course/course_support-bg.jpg) center center no-repeat;
  background-size: cover;
  text-align: center;
}
#course .support-wrap .lead-text {
  margin-bottom: 30px;
  text-align: center;
}
#course .support-wrap .support-wrap-heading {
  display: inline-block;
  font-size: 26px;
  line-height: 1;
  padding: 17px 85px 15px;
  border-radius: 30px;
  background-color: #fff100;
  font-weight: bold;
  position: relative;
}
#course .support-wrap .support-wrap-heading:before, #course .support-wrap .support-wrap-heading:after {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background: #fff;
  top: 0;
  bottom: 0;
  margin: auto 0;
  position: absolute;
}
#course .support-wrap .support-wrap-heading:before {
  left: 20px;
}
#course .support-wrap .support-wrap-heading:after {
  right: 20px;
}
#course .support-wrap .support-mama {
  margin-bottom: 50px;
}
#course .support-wrap .support-mama .support-wrap-heading {
  margin-bottom: 30px;
}
#course .support-wrap .support-mama .mama-inner {
  display: block;
  padding: 30px;
}
#course .support-wrap .support-list-wrap .support-wrap-heading {
  margin-bottom: 60px;
}
#course .support-wrap .support-list-wrap .support-list {
  font-size: 0;
  display: inline-block;
}
#course .support-wrap .support-list-wrap .support-list li {
  float: left;
  vertical-align: top;
  display: inline-block;
  width: 245px;
  height: 275px;
  background-color: #fff;
  padding: 20px 20px 0;
  box-shadow: rgba(178, 131, 90, 0.4) 4px 4px 0px;
  position: relative;
}
#course .support-wrap .support-list-wrap .support-list li:not(:last-child) {
  margin-right: 20px;
}
#course .support-wrap .support-list-wrap .support-list li:before {
  position: absolute;
  content: "";
  display: block;
  width: 28px;
  height: 57px;
  background: transparent url(/img/course/course_support-pin.png) center center no-repeat;
  background-size: contain;
  left: 0;
  top: -30px;
}
#course .support-wrap .support-list-wrap .support-list li img {
  margin-bottom: 15px;
}
#course .support-wrap .support-list-wrap .support-list li .text {
  font-size: 16px;
  text-align: center;
  line-height: 1.8;
}
#course .concept-wrap {
  background: transparent url(/img/course/about_bg-pattern-001.jpg) center center repeat;
}
#course .concept-wrap .lead-text {
  margin-bottom: 50px;
}
#course .concept-wrap .concept-description-list-wrap .heading {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}
#course .concept-wrap .concept-description-list-wrap .heading:before {
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background: #004da0;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
}
#course .concept-wrap .concept-description-list-wrap .heading span {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  width: 500px;
  line-height: 48px;
  height: 45px;
  border-radius: 22.5px;
  background-color: #004da0;
  text-align: center;
}
#course .concept-wrap .concept-description-list-wrap .descrription-list {
  font-size: 0;
}
#course .concept-wrap .concept-description-list-wrap .descrription-list li {
  display: inline-block;
  width: 320px;
  float: left;
  text-align: center;
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #f1b723;
  padding: 20px;
}
#course .concept-wrap .concept-description-list-wrap .descrription-list li:not(:last-child) {
  margin-right: 40px;
  margin: 0 0 20px;
}
#course .concept-wrap .concept-description-list-wrap .descrription-list li img {
  margin-bottom: 15px;
}
#course .concept-wrap .concept-description-list-wrap .descrription-list li .text {
  font-size: 16px;
  line-height: 1.8;
  text-align: left;
}
#course .concept-wrap .concept-description-list-wrap .descrription-list li .phase-list {
  font-size: 0;
}
#course .concept-wrap .concept-description-list-wrap .descrription-list li .phase-list>li {
  display: inline-block;
  font-size: 14px;
}
#course .concept-wrap .concept-description-list-wrap .descrription-list li .phase-list>li:not(:last-child) {
  margin-right: 15px;
}
#course .concept-wrap .concept-description-list-wrap .descrription-list li .phase-list>li.bold {
  font-weight: bold;
}
#course .concept-wrap .concept-description-list-wrap .descrription-list li .phase-list>li:before {
  content: "・";
}
#course .experiences-wrap {
  background: transparent url(/img/course/course_experiences-bg.png) center center repeat;
}
#course .experiences-wrap .lead-text {
  text-align: center;
  margin-bottom: 50px;
}
#course .experiences-wrap .experiences-list {
  font-size: 0;
}
#course .experiences-wrap .experiences-list li {
  display: inline-block;
  float: left;
  width: 245px;
}
#course .experiences-wrap .experiences-list li:not(:last-child) {
  margin-right: 20px;
}
#course .experiences-wrap .experiences-list li .experiences-image-wrap {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 4px solid #f1b723;
  margin: 0 auto 25px;
  display: block;
  position: relative;
  transition: opacity 0.2s;
}
#course .experiences-wrap .experiences-list li .experiences-image-wrap:after {
  display: block;
  content: "";
  width: 40px;
  height: 40px;
  background: transparent url(/img/course/course_experiences-plus.png) center center no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  bottom: 0;
}
#course .experiences-wrap .experiences-list li .experiences-image-wrap:hover {
  cursor: pointer;
  opacity: 0.7;
}
#course .experiences-wrap .experiences-list li .experiences-title {
  font-size: 18px;
  color: #f1b723;
  font-weight: bold;
  line-height: 1.8;
  display: block;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 0px;
}
#course .experiences-wrap .experiences-list li .exceriences-text {
  display: block;
  padding: 11px 0;
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
  background: rgba(241, 183, 35, 0.2);
  border-radius: 8px;
}
#course .price-wrap {
  overflow: hidden;
  background: #fff url(/img/course/course_price-bgimage-002.png) repeat-x;
  background-position: center bottom -120px;
}
#course .price-wrap .content-inner {
  position: relative;
}
#course .price-wrap .sun-image {
  position: absolute;
  top: -117px;
  left: -240px;
}
#course .price-wrap .lead-text {
  margin-bottom: 50px;
}
#course .price-wrap .course-heading {
  font-size: 20px;
  text-align: left;
  margin-bottom: 15px;
  font-weight: bold;
}
#course .price-wrap .small-text {
  font-size: 14px;
}
#course .price-wrap .course-wrap .course-table {
  width: 100%;
}
#course .price-wrap .course-wrap .course-table.sp {
  display: none;
}
#course .price-wrap .course-wrap .course-table .tb1 {
  width: 135px;
}
#course .price-wrap .course-wrap .course-table th, #course .price-wrap .course-wrap .course-table td {
  text-align: center;
  border: 1px solid #d8d8d8;
  vertical-align: middle;
}
#course .price-wrap .course-wrap .course-table thead {
  color: #fff;
}
#course .price-wrap .course-wrap .course-table thead th, #course .price-wrap .course-wrap .course-table thead td {
  padding: 15px 0;
}
#course .price-wrap .course-wrap .course-table thead th {
  border-bottom: none;
}
#course .price-wrap .course-wrap .course-table tbody th, #course .price-wrap .course-wrap .course-table tbody td {
  padding: 25px 0;
  background-color: #fff;
}
#course .price-wrap .infant-block {
  margin-bottom: 45px;
}
#course .price-wrap .infant-block .course-heading {
  color: #e95383;
}
#course .price-wrap .infant-block .course-table thead {
  background-color: #ed759c;
}
#course .price-wrap .infant-block .course-table tbody th {
  background-color: #fbdde6;
}
#course .price-wrap .primary-school-block {
  margin-bottom: 18px;
}
#course .price-wrap .primary-school-block .course-heading {
  color: #00aebb;
}
#course .price-wrap .primary-school-block .course-table thead {
  background-color: #33bec9;
}
#course .price-wrap .primary-school-block .course-table tbody th {
  background-color: #cceff1;
}
#course .price-wrap .tabke-notice {
  font-size: 12px;
  text-align: right;
  padding: 8px 0 0;
}
#course .price-wrap .notice-sentence {
  font-size: 14px;
  line-height: 1.6;
}
#course.kinder .price-wrap .infant-block {
  margin-bottom: 18px;
}
#course .float-wrap .left-wrap {
  width: 620px;
  float: left;
}
#course .float-wrap .left-wrap .float-heading {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #004da0;
}
#course .float-wrap .right-wrap {
  float: right;
}
#course .management-company-wrap {
  background: #e8f3ff;
}
#course .qa-wrap {
  background: transparent url(/img/course/course_qa-bg.jpg) center center repeat;
  padding-bottom: 70px;
}
#course .qa-wrap .qa-list {
  font-size: 0;
  padding: 0 30px 0;
}
#course .qa-wrap .qa-list li {
  display: block;
  position: relative;
  padding-left: 115px;
}
#course .qa-wrap .qa-list li:before {
  content: "";
  display: block;
  width: 90px;
  height: 80px;
  position: absolute;
  left: 0;
  top: 0;
}
#course .qa-wrap .qa-list li .text-wrap {
  width: 100%;
  border: 2px #000 solid;
  border-radius: 8px;
  padding: 25px 40px;
  background-color: #fff;
}
#course .qa-wrap .qa-list li.question {
  margin-bottom: 20px;
}
#course .qa-wrap .qa-list li.question:before {
  background: transparent url(/img/course/course_image-q.png) center center no-repeat;
  background-size: contain;
}
#course .qa-wrap .qa-list li.question .text-wrap {
  font-size: 18px;
  font-weight: bold;
  border-color: #f1b723;
}
#course .qa-wrap .qa-list li.answer {
  margin-bottom: 30px;
}
#course .qa-wrap .qa-list li.answer:before {
  background: transparent url(/img/course/course_image-a.png) center center no-repeat;
  background-size: contain;
}
#course .qa-wrap .qa-list li.answer .text-wrap {
  font-size: 16px;
  line-height: 1.6;
  border-color: #004da0;
}
@media screen and (max-width: 767px) {
  #course {
    font-size: 15px;
  }
}
@media screen and (min-width: 768px) {
  #course .m_sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #course .m_sp {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  #course .m_pc {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #course .section-common {
    padding: 30px 0 30px;
  }
}
@media screen and (max-width: 767px) {
  #course .content-inner {
    width: 100%;
    padding-right: 5.33333%;
    padding-left: 5.33333%;
  }
  #course .content-inner.sp-100 {
    padding-right: 0;
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  #course .main-heading {
    font-size: 15px;
    padding: 17px 0;
  }
}
@media screen and (max-width: 767px) {
  #course .main-heading .sub-text {
    font-size: 11px;
  }
}
@media screen and (max-width: 767px) {
  #course .course-heading-center {
    font-size: 18px;
    margin-bottom: 12px;
    letter-spacing: 0px;
  }
}
@media screen and (max-width: 767px) {
  #course .text-wrap {
    line-height: 1.6;
  }
}
@media screen and (max-width: 767px) {
  #course .text-wrap.lead-text {
    width: 100%;
    line-height: 1.6;
  }
}
@media screen and (max-width: 767px) {
  #course .common-section-title {
    font-size: 14px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  #course .common-section-title span {
    padding-left: 25px;
    line-height: 20px;
  }
}
@media screen and (max-width: 767px) {
  #course .common-section-title span:before {
    height: 20px;
    width: 20px;
  }
}
@media screen and (max-width: 767px) {
  #course .mv-area {
    padding-top: 25px;
  }
}
@media screen and (max-width: 767px) {
  #course .mv-area .heading-text {
    font-size: 18px;
    margin-bottom: 18px;
  }
}
@media screen and (max-width: 767px) {
  #course .mv-area .text-wrap {
    text-align: left;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  #course .mv-area .mv-image-wrap {
    height: auto;
    background: none;
  }
}
@media screen and (max-width: 767px) {
  #course .mv-area .mv-image-wrap .mv-text-image_001 {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #course .mv-area .mv-image-wrap .mv-text-image_002 {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #course .mv-area .mv-image-wrap .mv-text-image_003 {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #course .mv-area .mark {
    width: 34.66667%;
    right: 10px;
    bottom: -30px;
  }
}
@media screen and (max-width: 767px) {
  #course .course-overview .course-overview-list {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  #course .course-overview .course-overview-list li {
    width: 77.61194%;
  }
}
@media screen and (max-width: 767px) {
  #course .course-overview .one-day-block {
    padding: 0 5.33333%;
  }
  #course .course-overview .one-day-block .m_pc{
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #course .course-overview .one-day-block .content-inner {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  #course .course-overview .one-day-block .one-day-title {
    top: -5%;
  }
  #course .course-overview .one-day-block__txt__block_1, .one-day-block__txt__block_2, .one-day-block__txt__block_3, .one-day-block__txt__block_4, .one-day-block__txt__block_5, .one-day-block__txt__block_6 {
    position: relative;
    padding: 0;
    width: auto;
    top: 0;
  }
  #course .one-day-block__txtbox {
    position: unset;
    display: unset;
  }
  #course .one-day-block__time {
    font-size: 4vw;
    padding: 3.4% 0;
    position: absolute;
    left: 33%;
    top: -8%;
    margin-right: 0%;
    width: 64%;
    text-align: unset;
  }
  #course .course-overview .one-day-block__txt__block_1 .one-day-block__time {
    top: 24%;
  }
  #course .course-overview .block__txt__time__txt {
    font-weight: normal;
    padding-left: 4%;
    font-size: 2vw;
    vertical-align: middle;
    display: unset;
  }
  #course .one-day-block__txt {
    font-size: 3vw;
    line-height: 1.7;
    padding: 4% 0px;
    margin: 0 ;
    position: absolute;
    top: 23%;
    width: 61%;
    left: 33%;
    letter-spacing: 0;
  }
  #course .course-overview .one-day-block__txt__block_1 .one-day-block__txt {
    top: 42%;
  }
  #course .one-day-block__txt__block_2,
  #course .one-day-block__txt__block_3,
  #course .one-day-block__txt__block_4,
  #course .one-day-block__txt__block_5,
  #course .one-day-block__txt__block_6{
    top: 0px;
  }
  #course .one-day-block__txt__block_5 {
    white-space: unset;
  }
}
@media screen and (max-width: 767px) {
  #course .kodawari-wrap .kodawari-heading-block {
    padding: 30px 0 30px;
  }
}
@media screen and (max-width: 767px) {
  #course .kodawari-wrap .kodawari-heading-block .content-inner {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  #course .kodawari-wrap .kodawari-heading-block .content-inner:before {
    background-image: url(/img/course/course_flag_001.png);
    top: -30px;
    left: -55px;
    width: 152px;
    height: 60px;
    background-size: contain;
  }
}
@media screen and (max-width: 767px) {
  #course .kodawari-wrap .kodawari-heading-block .content-inner:after {
    background-image: url(/img/course/course_flag_002.png);
    top: -30px;
    right: -55px;
    width: 152px;
    height: 60px;
    background-size: contain;
  }
}
@media screen and (max-width: 767px) {
  #course .kodawari-wrap .kodawari-heading-block .course-heading-center {
    margin-bottom: 110px;
  }
}
@media screen and (max-width: 767px) {
  #course .kodawari-wrap .kodawari-heading-block .course-heading-center .heading-inner .kodawari-fukidashi {
    width: 70px;
    left: -72px;
    top: -50px;
  }
}
@media screen and (max-width: 319px) {
  #course .kodawari-wrap .kodawari-heading-block .course-heading-center .heading-inner .kodawari-fukidashi {
    width: 50px;
    left: -35px;
    top: -40px;
  }
}
@media screen and (max-width: 767px) {
  #course .kodawari-wrap .kodawari-heading-block .kodawari-list {
    display: inline-block;
  }
}
@media screen and (max-width: 767px) {
  #course .kodawari-wrap .kodawari-heading-block .kodawari-list li {
    width: 32.83582%;
    max-width: 110px;
    float: left;
  }
}
@media screen and (max-width: 767px) {
  #course .kodawari-wrap .kodawari-heading-block .kodawari-list li:not(:last-child) {
    margin-right: 0.74627%;
  }
}
@media screen and (max-width: 767px) {
  #course .kodawari-wrap .kodawari-heading-block .kodawari-list li:not(:last-child):after {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #course .kodawari-wrap .kodawari-heading-block .bg-image1, #course .kodawari-wrap .kodawari-heading-block .bg-image2 {
    bottom: -30px;
  }
}
@media screen and (max-width: 767px) {
  #course .kodawari-wrap .kodawari-heading-block .bg-image1 {
    width: 205px;
    left: -27px;
  }
}
@media screen and (max-width: 319px) {
  #course .kodawari-wrap .kodawari-heading-block .bg-image1 {
    left: -70px;
  }
}
@media screen and (max-width: 767px) {
  #course .kodawari-wrap .kodawari-heading-block .bg-image2 {
    right: -60px;
    width: 270px;
  }
}
@media screen and (max-width: 319px) {
  #course .kodawari-wrap .kodawari-heading-block .bg-image2 {
    right: -100px;
  }
}
@media screen and (max-width: 767px) {
  #course .kodawari-wrap .kodawari-title {
    font-size: 16px;
    margin-bottom: 15px;
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  #course .kodawari-wrap .kodawari-title .title-text {
    padding: 15px 0 15px 60px;
  }
}
@media screen and (max-width: 767px) {
  #course .kodawari-wrap .kodawari-title .title-text:before {
    width: 53px;
    height: 53px;
  }
}
@media screen and (max-width: 767px) {
  #course .kodawari-wrap .kodawari-1-block {
    padding: 30px 0;
    background-image: url(/img/course/sp/course_kodawari_1-bg.jpg);
  }
}
@media screen and (max-width: 767px) {
  #course .kodawari-wrap .kodawari-1-block .kodawari-1-list>li {
    padding: 15px 4.47761%;
  }
}
@media screen and (max-width: 767px) {
  #course .kodawari-wrap .kodawari-1-block .kodawari-1-list>li:not(:last-child) {
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 767px) {
  #course .kodawari-wrap .kodawari-1-block .kodawari-1-list>li:not(:last-child):after {
    width: 40px;
    height: 15px;
    bottom: -25px;
  }
}
@media screen and (max-width: 767px) {
  #course .kodawari-wrap .kodawari-1-block .kodawari-1-list>li>.title {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  #course .kodawari-wrap .kodawari-1-block .kodawari-1-list>li>.title .title-inner {
    display: inline-block;
  }
}
@media screen and (max-width: 767px) {
  #course .kodawari-wrap .kodawari-1-block .kodawari-1-list>li>.title .step {
    display: table-cell;
  }
}
@media screen and (max-width: 767px) {
  #course .kodawari-wrap .kodawari-1-block .kodawari-1-list>li>.title .step>span {
    font-size: 13px;
    padding: 5px 10px;
    margin-right: 10px;
    border-radius: 4px;
  }
}
@media screen and (max-width: 767px) {
  #course .kodawari-wrap .kodawari-1-block .kodawari-1-list>li>.title .text {
    font-size: 13px;
    padding: 5px 0;
    margin-right: 0;
    color: #08c6a2;
    display: table-cell;
  }
}
@media screen and (max-width: 767px) {
  #course .kodawari-wrap .kodawari-1-block .kodawari-1-list>li>.title .small {
    font-size: 11px;
    color: #08c6a2;
    display: block;
    margin-top: 5px;
  }
}
@media screen and (max-width: 767px) {
  #course .kodawari-wrap .kodawari-1-block .kodawari-1-list>li .phase-list-wrap {
    padding: 8px 3.27869%;
    margin-bottom: 15px;
  }
  #course .kodawari-wrap .kodawari-1-block .kodawari-1-list>li .phase-list-wrap:after {
    content: "";
    clear: both;
    display: block;
    height: 0;
  }
}
@media screen and (max-width: 767px) {
  #course .kodawari-wrap .kodawari-1-block .kodawari-1-list>li .phase-list-wrap .phase-list {
    width: 33.3%;
    display: inline-block;
    float: left;
  }
}
@media screen and (max-width: 767px) {
  #course .kodawari-wrap .kodawari-1-block .kodawari-1-list>li .phase-list-wrap .phase-list>li {
    font-size: 10px;
    margin: 0;
    letter-spacing: 0px;
  }
}
@media screen and (max-width: 767px) {
  #course .kodawari-wrap .kodawari-1-block .kodawari-1-list>li .description-wrap .description {
    float: none;
    width: 100%;
    display: block;
  }
}
@media screen and (max-width: 767px) {
  #course .kodawari-wrap .kodawari-1-block .kodawari-1-list>li .description-wrap .description:not(:last-of-type) {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid #08c6a2;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  #course .kodawari-wrap .kodawari-1-block .kodawari-1-list>li .description-wrap .description:last-of-type {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  #course .kodawari-wrap .kodawari-1-block .kodawari-1-list>li .description-wrap .description img {
    width: 37.04918%;
    margin-right: 4.91803%;
  }
}
@media screen and (max-width: 767px) {
  #course .kodawari-wrap .kodawari-1-block .kodawari-1-list>li .description-wrap .description .text-wrap {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  #course .kodawari-wrap .kodawari-2-block {
    padding: 30px 0;
    background-image: url(/img/course/sp/course_kodawari_2-bg.jpg);
  }
}
@media screen and (max-width: 767px) {
  #course .kodawari-wrap .kodawari-2-block .kodawari-title .title-text {
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  #course .kodawari-wrap .kodawari-2-block .kodawari-2-list>li {
    width: 100%;
    padding: 15px 4.47761%;
    border-radius: 4px;
    border-width: 1px;
  }
}
@media screen and (max-width: 767px) {
  #course .kodawari-wrap .kodawari-2-block .kodawari-2-list>li:nth-of-type(odd) {
    float: none;
  }
}
@media screen and (max-width: 767px) {
  #course .kodawari-wrap .kodawari-2-block .kodawari-2-list>li:nth-of-type(even) {
    float: none;
  }
}
@media screen and (max-width: 767px) {
  #course .kodawari-wrap .kodawari-2-block .kodawari-2-list>li:not(:last-child) {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  #course .kodawari-wrap .kodawari-2-block .kodawari-2-list>li .heading-wrap {
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 767px) {
  #course .kodawari-wrap .kodawari-2-block .kodawari-2-list>li .heading-wrap .img-wrap {
    width: 29.5082%;
  }
}
@media screen and (max-width: 767px) {
  #course .kodawari-wrap .kodawari-2-block .kodawari-2-list>li .heading-wrap .title-wrap {
    font-size: 14px;
    padding-bottom: 8px;
  }
}
@media screen and (max-width: 767px) {
  #course .kodawari-wrap .kodawari-2-block .kodawari-2-list>li .heading-wrap .title-wrap>span:after {
    background-size: auto 2px;
    height: 2px;
    bottom: -10px;
  }
}
@media screen and (max-width: 767px) {
  #course .kodawari-wrap .kodawari-2-block .kodawari-2-list>li .text-wrap {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  #course .kodawari-wrap .kodawari-3-block {
    padding: 30px 0 0;
  }
}
@media screen and (max-width: 767px) {
  #course .kodawari-wrap .kodawari-3-block .kodawari-title .title-text {
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  #course .kodawari-wrap .kodawari-3-block .kodawari-3-content {
    padding-bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  #course .kodawari-wrap .kodawari-3-block .kodawari-3-content:after {
    content: none;
  }
}
@media screen and (max-width: 767px) {
  #course .kodawari-wrap .kodawari-3-block .kodawari-3-content .kodawari-image {
    width: 85.07463%;
    max-width: 300px;
    position: relative;
    z-index: 2;
  }
}
@media screen and (max-width: 767px) {
  #course .kodawari-wrap .kodawari-3-block .kodawari-3-content .kodawari-3-content-text {
    font-size: 14px;
    line-height: 1.6;
  }
}
@media screen and (max-width: 767px) {
  #course .kodawari-wrap .kodawari-3-block .kodawari-3-image-block {
    height: auto;
    background: none;
  }
}
@media screen and (max-width: 767px) {
  #course .conversion-middle-area {
    padding: 30px 0 70px;
    overflow: hidden;
    background-image: url(/img/course/sp/course_action-area-bg.png);
  }
}
@media screen and (max-width: 767px) {
  #course .conversion-middle-area .conversion-title {
    font-size: 15px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  #course .conversion-middle-area .conversion-text-image {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  #course .conversion-middle-area .btn-conversion {
    font-size: 12px;
    padding: 9px 20px;
    width: 100%;
    margin-bottom: 15px;
  }
  #course .conversion-middle-area .txt2--0528 {
    font-size: 12px;
  }
  #course .conversion-middle-area .block--0528 {
    margin-bottom: 15px;
  }
  #course .conversion-middle-area .txt2--0528:before, .txt2--0528:after {
    height: 25px;
  }
  #course .conversion-middle-area .txt2--0528:before {
    left: -20px;
  }
  #course .conversion-middle-area .txt2--0528:after {
    right: -20px;
  }
}
@media screen and (max-width: 767px) {
  #course .conversion-middle-area .btn-conversion:after {
    width: 8px;
    height: 8px;
  }
}
@media screen and (max-width: 767px) {
  #course .conversion-middle-area .btn-conversion span {
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  #course .conversion-middle-area .image_001 {
    bottom: -80px;
    left: -38px;
    width: 183px;
  }
}
@media screen and (max-width: 767px) {
  #course .conversion-middle-area .image_002 {
    bottom: -80px;
    right: -9px;
    width: 230px;
  }
}
@media screen and (max-width: 767px) {
  #course .support-wrap {
    background-image: url(/img/course/course_support-bg.jpg);
  }
}
@media screen and (max-width: 767px) {
  #course .support-wrap .lead-text {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  #course .support-wrap .support-wrap-heading {
    font-size: 14px;
    display: block;
    padding: 10px 20px 7px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 767px) {
  #course .support-wrap .support-wrap-heading:before, #course .support-wrap .support-wrap-heading:after {
    width: 8px;
    height: 8px;
  }
}
@media screen and (max-width: 767px) {
  #course .support-wrap .support-wrap-heading:before {
    left: 10px;
  }
}
@media screen and (max-width: 767px) {
  #course .support-wrap .support-wrap-heading:after {
    right: 10px;
  }
}
@media screen and (max-width: 767px) {
  #course .support-wrap .support-mama {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  #course .support-wrap .support-mama .support-wrap-heading {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  #course .support-wrap .support-mama .support-mama-heading {
    padding: 7px 2.98507%;
  }
}
@media screen and (max-width: 767px) {
  #course .support-wrap .support-mama .support-mama-heading .support-mama-main-heading {
    font-size: 12px;
    margin-right: 15px;
  }
}
@media screen and (max-width: 767px) {
  #course .support-wrap .support-mama .support-mama-heading .sub-heading {
    font-size: 10px;
  }
}
@media screen and (max-width: 767px) {
  #course .support-wrap .support-mama .mama-inner {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  #course .support-wrap .support-list-wrap .support-wrap-heading {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  #course .support-wrap .support-list-wrap .support-list li {
    padding: 0;
    box-shadow: rgba(178, 131, 90, 0.4) 2px 2px 0px;
    height: auto;
    width: 47.76119%;
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  #course .support-wrap .support-list-wrap .support-list li:not(:last-child) {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  #course .support-wrap .support-list-wrap .support-list li:nth-of-type(2n - 1) {
    float: left;
  }
  #course .support-wrap .support-list-wrap .support-list li:nth-of-type(2n) {
    float: right;
  }
}
@media screen and (max-width: 767px) {
  #course .support-wrap .support-list-wrap .support-list li:before {
    width: 19px;
    height: 37px;
    top: -20px;
  }
}
@media screen and (max-width: 767px) {
  #course .support-wrap .support-list-wrap .support-list li img {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  #course .concept-wrap .lead-text {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  #course .concept-wrap .concept-description-list-wrap .heading {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  #course .concept-wrap .concept-description-list-wrap .heading span {
    font-size: 14px;
    width: 240px;
    height: 25px;
    line-height: 28px;
    border-radius: 12.5px;
  }
}
@media screen and (max-width: 767px) {
  #course .concept-wrap .concept-description-list-wrap .descrription-list li {
    width: 100%;
    float: none;
    border-radius: 4px;
    padding: 15px 4.47761%;
  }
}
@media screen and (max-width: 767px) {
  #course .experiences-wrap .lead-text {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  #course .experiences-wrap .experiences-list li {
    width: 47.76119%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  #course .experiences-wrap .experiences-list li:not(:last-child) {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  #course .experiences-wrap .experiences-list li:nth-of-type(odd) {
    float: left;
  }
  #course .experiences-wrap .experiences-list li:nth-of-type(even) {
    float: right;
  }
}
@media screen and (max-width: 767px) {
  #course .experiences-wrap .experiences-list li .experiences-image-wrap {
    width: 69.84127%;
    height: 69.84127%;
    max-width: 180px;
    max-height: 180px;
    margin-bottom: 12px;
    border-width: 2px;
  }
}
@media screen and (max-width: 767px) {
  #course .experiences-wrap .experiences-list li .experiences-image-wrap:after {
    width: 27.27273%;
    height: 27.27273%;
  }
}
@media screen and (max-width: 767px) {
  #course .experiences-wrap .experiences-list li .experiences-title {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 10px;
    letter-spacing: 0px;
  }
}
@media screen and (max-width: 319px) {
  #course .experiences-wrap .experiences-list li .experiences-title {
    font-size: 10px;
  }
}
@media screen and (max-width: 767px) {
  #course .experiences-wrap .experiences-list li .exceriences-text {
    font-size: 11px;
    padding: 7px 0;
    letter-spacing: 0px;
  }
}
@media screen and (max-width: 319px) {
  #course .experiences-wrap .experiences-list li .exceriences-text {
    font-size: 10px;
  }
}
@media screen and (max-width: 767px) {
  #course .price-wrap {
    background-size: 275px auto;
    background-position: center bottom 0px;
  }
}
@media screen and (max-width: 767px) {
  #course .price-wrap .sun-image {
    width: 140px;
    left: -44px;
    top: -65px;
  }
}
@media screen and (max-width: 767px) {
  #course .price-wrap .lead-text {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  #course .price-wrap .course-heading {
    font-size: 15px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  #course .price-wrap .course-wrap .course-table.pc {
    display: none;
  }
  #course .price-wrap .course-wrap .course-table:not(:last-of-type) {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  #course .price-wrap .course-wrap .course-table.sp {
    display: table;
  }
}
@media screen and (max-width: 767px) {
  #course .price-wrap .course-wrap .course-table .tb1 {
    width: 24.77612%;
  }
}
@media screen and (max-width: 767px) {
  #course .price-wrap .course-wrap .course-table thead th, #course .price-wrap .course-wrap .course-table thead td {
    padding: 8px 0;
  }
}
@media screen and (max-width: 767px) {
  #course .price-wrap .course-wrap .course-table tbody th, #course .price-wrap .course-wrap .course-table tbody td {
    padding: 8px 0;
  }
}
@media screen and (min-width: 768px) {
  #course .price-wrap .course-wrap .course-table tbody tr:first-child th, #course .price-wrap .course-wrap .course-table tbody tr:first-child td {
    border-top: none;
  }
}
@media screen and (max-width: 767px) {
  #course .price-wrap .infant-block {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  #course .price-wrap .infant-block .course-table tbody tr th:first-child {
    background-color: #ed759c;
    color: #fff;
  }
}
@media screen and (max-width: 767px) {
  #course .price-wrap .primary-school-block {
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 767px) {
  #course .price-wrap .primary-school-block .course-table tr th:first-child {
    background-color: #33bec9;
    color: #fff;
  }
}
@media screen and (max-width: 767px) {
  #course .price-wrap .notice-sentence {
    font-size: 11px;
  }
}
@media screen and (max-width: 767px) {
  #course.kinder .price-wrap .infant-block {
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 767px) {
  #course .float-wrap .left-wrap {
    width: 100%;
    float: none;
  }
}
@media screen and (max-width: 767px) {
  #course .float-wrap .left-wrap .float-heading {
    font-size: 18px;
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 767px) {
  #course .float-wrap .left-wrap .text-wrap {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  #course .float-wrap .right-wrap {
    float: none;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  #course .float-wrap .right-wrap .point-image {
    width: 229px;
  }
}
@media screen and (max-width: 767px) {
  #course .qa-wrap {
    padding-bottom: 35px;
  }
}
@media screen and (max-width: 767px) {
  #course .qa-wrap .qa-list {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  #course .qa-wrap .qa-list li {
    padding-left: 55px;
  }
}
@media screen and (max-width: 767px) {
  #course .qa-wrap .qa-list li:before {
    width: 45px;
    height: 40px;
  }
}
@media screen and (max-width: 767px) {
  #course .qa-wrap .qa-list li .text-wrap {
    border-width: 1px;
    border-radius: 4px;
    padding: 12px 15px;
  }
}
@media screen and (max-width: 767px) {
  #course .qa-wrap .qa-list li.question {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  #course .qa-wrap .qa-list li.question .text-wrap {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  #course .qa-wrap .qa-list li.answer {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  #course .qa-wrap .qa-list li.answer .text-wrap {
    font-size: 12px;
  }
}
.experiences-modal {
  background: #fff url(/img/course/course_bg-pattern-001.jpg) center center repeat;
  border-radius: 8px;
  padding: 30px;
  width: 550px;
}
.experiences-modal .modal-heading-wrap {
  display: table;
  width: 100%;
  margin-bottom: 35px;
}
.experiences-modal .modal-heading-wrap .modal-image-wrap {
  display: table-cell;
  width: 160px;
  height: 160px;
}
.experiences-modal .modal-heading-wrap .modal-heading-title-warp {
  display: table-cell;
  text-align: left;
  vertical-align: top;
  width: 290px;
  padding-left: 25px;
  padding-top: 20px;
}
.experiences-modal .modal-heading-wrap .modal-heading-title-warp .modal-heading-sub {
  font-size: 14px;
}
.experiences-modal .modal-heading-wrap .modal-heading-title-warp .modal-heading-sub span {
  padding-bottom: 3px;
  border-bottom: 2px solid #f1b723;
  margin-bottom: 20px;
  display: inline-block;
}
.experiences-modal .modal-heading-wrap .modal-heading-title-warp .modal-heading {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.6;
  color: #f1b723;
}
.experiences-modal .modal-text {
  text-align: left;
  line-height: 1.8;
  font-size: 18px;
}
.experiences-modal .remodal-close {
  position: absolute;
  left: auto;
  right: -20px;
  top: -20px;
  width: 40px;
  height: 40px;
}
.experiences-modal .remodal-close:before {
  content: "";
  width: 40px;
  height: 40px;
  background: transparent url(/img/course/course_modal-close.png) center center no-repeat;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .experiences-modal .m_sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .experiences-modal .m_sp {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .experiences-modal .m_pc {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .experiences-modal .m_pc {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .experiences-modal {
    width: 80%;
    border-radius: 4px;
    padding: 20px 5%;
    background-size: 8px auto;
  }
}
@media screen and (max-width: 767px) {
  .experiences-modal .modal-heading-wrap {
    display: block;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  .experiences-modal .modal-heading-wrap .modal-image-wrap {
    width: 100px;
    height: 100px;
    display: block;
    margin: 0 auto 20px;
  }
}
@media screen and (max-width: 767px) {
  .experiences-modal .modal-heading-wrap .modal-heading-title-warp {
    padding: 0;
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .experiences-modal .modal-heading-wrap .modal-heading-title-warp .modal-heading-sub {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .experiences-modal .modal-heading-wrap .modal-heading-title-warp .modal-heading-sub span {
    width: 100%;
    display: block;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .experiences-modal .modal-heading-wrap .modal-heading-title-warp .modal-heading {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .experiences-modal .modal-text {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .experiences-modal .remodal-close {
    top: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 767px) {
  .experiences-modal .remodal-close:before {
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 767px) {
  .remodal-wrapper {
    padding: 40px 0;
  }
}
.style__event .color__purple {
  color: #3d0167;
}
.style__event .color__orange {
  color: #FF9C00;
}
.style__event .color__orange02 {
  color: #ec9907;
}
.style__event .color__pink {
  color: #f266a0;
}
.style__event .color__blue {
  color: #04a8e8;
}
.style__event .color__brown {
  color: #e87d1a;
}
.style__event .color__red {
  color: #CA1712;
}
.style__event .color__green {
  color: #8BB008;
}
.style__event .color__mosgreen {
  color: #84a706;
}
.style__event .color__blown {
  color: #5f3619;
}
.style__event .color__white {
  color: #fff;
}
.style__event .color__esc {
  color: #25ABC4;
}
.style__event .color__esc02 {
  color: #25acc5;
}
.style__event .color__esc03 {
  color: #1395a8;
}
.style__event .color__kids {
  color: #FF9C00;
}
.style__event .color__jhss {
  color: #C52525;
}
.style__event .color__bee {
  color: #ffba00;
}
.style__event .color__speech {
  color: #1190d5;
}
.style__event .color__camp {
  color: #659d16;
}
.style__event .bgcolor__purple {
  background: #3d0167;
}
.style__event .bgcolor__orange {
  background: #FF6501;
}
.style__event .bgcolor__green {
  background: #8BB008;
}
.style__event .bgcolor__white {
  background: #fff;
}
.style__event .bgcolor__esc {
  background: #25ABC4;
}
.style__event .bgcolor__esc02 {
  background: #25acc5;
}
.style__event .bgcolor__jhss {
  background: #C52525;
}
.style__event .bgcolor__bee {
  background: #ffba00;
}
.style__event .bgcolor__speech {
  background: #1190d5;
}
.style__event .bgcolor__camp {
  background: #659d16;
}
.style__event .bgcolor__kids {
  background: #FF9C00;
}
.style__event .position__left {
  text-align: left !important;
}
.style__event .position__center {
  text-align: center !important;
}
@media screen and (max-width: 767px) {
  .style__event {
    font-size: 15px !important;
    line-height: 1.4;
  }
  .style__event em {
    font-style: normal;
  }
  .style__event .md-section-lead {
    display: block;
    text-align: center;
  }
  .style__event .md-section-lead span {
    display: inline-block;
    background: url("/img/event/icon_ttl_bg_left.png") left bottom no-repeat, url("/img/event/icon_ttl_bg_right.png") right bottom no-repeat;
    background-size: 10px 15px;
    margin-bottom: 15px;
    padding: 7px 20px 0;
    font-size: 14px;
    color: #666;
    font-weight: bold;
    line-height: 1;
  }
  .style__event .md-section-lead.color__white span {
    background: url("/img/event/icon_ttl_bg_white_left.png") left bottom no-repeat, url("/img/event/icon_ttl_bg_white_right.png") right bottom no-repeat;
    background-size: 10px 15px;
    color: #fff;
  }
  .style__event .md-section-ttl {
    margin-bottom: 10px;
    padding-bottom: 3px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    letter-spacing: -.03em;
  }
}
@media screen and (max-width: 767px) and (max-width: 350px) {
  .style__event .md-section-ttl {
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  .style__event .md-section-ttl.border__purple {
    margin-bottom: 15px;
    border-bottom: solid 1px #3d0167;
  }
  .style__event .md-section-ttl.border__white {
    margin-bottom: 15px;
    border-bottom: solid 1px #fff;
  }
  .style__event .md-section-ttl.border__kids {
    margin-bottom: 15px;
    border-bottom: solid 1px #FF9C00;
  }
  .style__event .md-section-ttl.border__esc {
    margin-bottom: 15px;
    border-bottom: solid 1px #25ABC4;
  }
  .style__event .md-section-ttl.border__jhss {
    margin-bottom: 15px;
    border-bottom: solid 1px #C52525;
  }
  .style__event .md-section-ttl.border__bee {
    margin-bottom: 15px;
    border-bottom: solid 1px #ffba00;
  }
  .style__event .md-section-ttl.border__blown {
    margin-bottom: 15px;
    border-bottom: solid 1px #5f3619;
  }
  .style__event .md-section-ttl.border__camp {
    margin-bottom: 15px;
    border-bottom: 1px solid #fff000;
  }
  .style__event .md-section-ttl.border__lightblue {
    margin-bottom: 15px;
    border-bottom: 1px solid #1190d5;
  }
  .style__event .md-section-ttl.border__rainbow {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 15px;
  }
  .style__event .md-section-ttl.border__rainbow:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 160px;
    height: 3px;
    background: url(/img/event/summer_camp/sp/border_rainbow.png) no-repeat;
    background-size: 100% auto;
  }
  .style__event .md-page-ttl {
    padding: 15px 0;
    line-height: 1.4;
    color: #fff;
    font-size: 15px;
    text-align: center;
  }
  .style__event .md-page-ttl.margin-on {
    margin-bottom: 0;
  }
  .style__event .md-page-ttl em {
    display: block;
    font-weight: bold;
  }
  .style__event .md-page-ttl span {
    display: block;
    text-align: center;
    font-size: 12px;
    font-weight: normal;
  }
  .style__event .md-section-main-ttl {
    margin-bottom: 15px;
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
  }
  .style__event .md-icon-ttl {
    font-size: 19px;
    font-weight: bold;
    border-bottom: 1px solid #b3b3b3;
  }
  .style__event .md-icon-ttl .icon-winbe {
    display: inline-block;
    padding-left: 35px;
    background: url(/img/event/icon_winbe.png) left center no-repeat;
    background-size: 30px auto;
  }
  .style__event .md-btn {
    border-radius: 5px;
  }
  .style__event .md-btn a {
    display: block;
    padding: 14px 0;
    line-height: 1;
    font-weight: bold;
    color: #fff;
    text-align: center;
  }
  .style__event .md-btn a .icon-arrow {
    display: block;
    padding-right: 10px;
    position: relative;
  }
  .style__event .md-btn a .icon-arrow:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 10px;
    width: 6px;
    height: 6px;
    border-right: 2px solid #fff;
    border-top: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .style__event .md-btn.type__02 .icon-arrow {
    display: inline-block;
    padding: 0 20px;
  }
  .style__event .bdcolor__kids {
    border: 2px solid #FF9C00;
  }
  .style__event .bdcolor__esc {
    border: 2px solid #25ABC4;
  }
  .style__event .bdcolor__jhss {
    border: 2px solid #C52525;
  }
  .style__event .border__lightblue {
    border-bottom: solid 1px #1190d5;
  }
  .style__event .section-inner {
    padding: 0 20px;
  }
  .style__event__spelling-bee #section-02 {
    position: relative;
    padding: 30px 0 0;
    z-index: 9;
  }
  .style__event__spelling-bee #section-02:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    width: 164px;
    height: 214px;
    background: url(/img/event/spelling_bee/sp/bg_bee_001.png) no-repeat;
    background-size: 164px auto;
  }
  .style__event__spelling-bee #section-02 .md-section-main-ttl {
    font-weight: bold;
  }
  .style__event__spelling-bee #section-02 .md-set__ttl-caption dt.color__bee {
    margin-bottom: 15px;
    border-bottom: 1px solid #ffba00;
    font-size: 18px;
    padding-bottom: 3px;
    letter-spacing: -.03em;
    font-weight: bold;
  }
  .style__event__spelling-bee #section-02 .md-set__ttl-caption dd {
    margin-bottom: 15px;
    line-height: 1.8;
  }
  .style__event__spelling-bee #section-02 .highlight {
    margin: 50px 0 80px;
    position: relative;
    border: 3px solid #ffba00;
    border-radius: 8px;
    padding: 40px 0 110px;
  }
  .style__event__spelling-bee #section-02 .highlight .ttl-absolute {
    position: absolute;
    top: -25px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .style__event__spelling-bee #section-02 .highlight .img-absolute {
    position: absolute;
    width: 100%;
    max-width: 320px;
    left: 50%;
    bottom: -60px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .style__event__spelling-bee #section-02 .highlight .txt-area {
    padding: 0 20px;
  }
  .style__event__spelling-bee #section-02 .highlight .txt-area .md-set__ttl-caption dt.color__blown {
    margin-bottom: 10px;
    padding-bottom: 3px;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: -.03em;
  }
  .style__event__spelling-bee #section-03 {
    background: #ffba00;
  }
  .style__event__spelling-bee #section-03 .section-inner {
    padding: 30px 20px 40px;
  }
  .style__event__spelling-bee #section-03 .md-section-main-ttl {
    font-weight: bold;
  }
  .style__event__spelling-bee #section-03 .tournament-area .md-section-ttl {
    margin-bottom: 15px;
    position: relative;
  }
  .style__event__spelling-bee #section-03 .tournament-area .md-section-ttl .hexagon {
    padding: 0 15px 0 9px;
    font-size: 20px;
    position: relative;
    z-index: 1;
    vertical-align: top;
    top: -2px;
  }
  .style__event__spelling-bee #section-03 .tournament-area .md-section-ttl span {
    position: relative;
    z-index: 1;
  }
  .style__event__spelling-bee #section-03 .tournament-area .md-section-ttl span.line-double {
    display: block;
    padding-left: 120px;
    border-bottom: solid 1px #5f3619;
    padding-bottom: 3px;
  }
  .style__event__spelling-bee #section-03 .tournament-area .md-section-ttl .img-hexagon {
    position: absolute;
    top: -10px;
    left: 0;
    width: 55px;
    height: auto;
  }
  .style__event__spelling-bee #section-03 .tournament-area .section-txt {
    color: #333;
  }
  .style__event__spelling-bee #section-03 .tournament-area .img-block {
    margin-top: 20px;
    display: none;
  }
  .style__event__spelling-bee #section-03 .phonics-detail-area {
    border: 3px solid #44240f;
    border-radius: 8px;
    padding: 25px 0;
    background: #f8f6f0;
  }
  .style__event__spelling-bee #section-03 .phonics-detail-area .txt-area {
    text-align: center;
    padding: 0 20px;
  }
  .style__event__spelling-bee #section-03 .phonics-detail-area .phonics-sub-ttl {
    display: inline-block;
    margin: 0 auto 20px;
    border-bottom: 2px dotted #44240f;
    font-size: 18px;
    font-weight: bold;
  }
  .style__event__spelling-bee #section-03 .phonics-detail-area .md-section-ttl {
    text-align: left !important;
    font-size: 20px;
    line-height: 1.6;
  }
  .style__event__spelling-bee #section-03 .phonics-detail-area .section-txt {
    text-align: left;
    margin-bottom: 20px;
  }
  .style__event__spelling-bee #section-03 .phonics-detail-area .bd-line {
    position: relative;
    z-index: 99;
  }
  .style__event__spelling-bee #section-03 .phonics-detail-area .bd-line:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 5px;
    background: #ffba00;
    z-index: -9;
  }
  .style__event__spelling-bee #section-04 .sv-area {
    position: relative;
  }
  .style__event__spelling-bee #section-04 .sv-area .sv-lead-area {
    -js-display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 100%;
    height: 45px;
    text-align: center;
    background: rgba(255, 186, 0, 0.85);
    color: #fff;
  }
  .style__event__spelling-bee #section-04 .sv-area .sv-lead-area .lead-txt-cont {
    -js-display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .style__event__spelling-bee #section-04 .sv-area .sv-lead-area .lead-txt-cont span {
    display: inline-block;
    margin-right: 10px;
    padding: 3px 12px;
    font-size: 10px;
    border: 1px solid #fff;
    line-height: 1.2;
  }
}
@media screen and (max-width: 767px) and (max-width: 350px) {
  .style__event__spelling-bee #section-04 .sv-area .sv-lead-area .lead-txt-cont span {
    font-size: 8px;
  }
}
@media screen and (max-width: 767px) {
  .style__event__spelling-bee #section-04 .sv-area .sv-lead-area .lead-txt-cont strong {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) and (max-width: 350px) {
  .style__event__spelling-bee #section-04 .sv-area .sv-lead-area .lead-txt-cont strong {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .style__event__spelling-bee #section-04 .leport-area {
    padding: 30px 0 250px;
    position: relative;
    background: #fdf6e4;
  }
  .style__event__spelling-bee #section-04 .leport-area:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 164px;
    height: 242px;
    background: url(/img/event/spelling_bee/sp/bg_bee_003.png) no-repeat;
    background-size: 164px auto;
  }
  .style__event__spelling-bee #section-04 .leport-area:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 176px;
    height: 240px;
    background: url(/img/event/spelling_bee/sp/bg_bee_004.png) no-repeat;
    background-size: 176px auto;
  }
  .style__event__spelling-bee #section-04 .leport-area .md-set__ttl-caption dt.color__bee {
    margin-bottom: 15px;
    border-bottom: solid 1px #ffba00;
    font-weight: bold;
    padding-bottom: 3px;
    font-size: 18px;
    letter-spacing: -.03em;
  }
  .style__event__spelling-bee #section-04 .leport-area .md-set__ttl-caption dd {
    margin-bottom: 20px;
  }
  .style__event__spelling-bee #section-04 .leport-area .img-block {
    margin-bottom: 25px;
  }
  .style__event__spelling-bee #section-04 .leport-area .img-block.spOnly {
    display: block;
  }
  .style__event__spelling-bee #section-04 .leport-area .sp-img-block {
    width: 230px;
    position: absolute;
    bottom: 40px;
    right: 0;
  }
  .style__event__spelling-bee .md-section-main-ttl {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) and (max-width: 350px) {
  .style__event__spelling-bee .md-section-main-ttl {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .style__event__spelling-bee .txt-block, .style__event__spelling-bee .img-space {
    margin-bottom: 20px;
  }
  .style__event__spelling-bee img {
    width: 100%;
  }
  .style__event__camp #section-02 {
    padding: 20px 0;
  }
  .style__event__camp #section-02 .txt-spOnly {
    font-size: 20px;
    color: #659d16;
    margin-bottom: 15px;
    text-align: center;
    line-height: 1.6;
    font-weight: bold;
  }
  .style__event__camp #section-02 .md-section-main-ttl {
    font-weight: bold;
    text-align: left;
    margin-bottom: 15px;
    border-bottom: 1px solid #659d16;
    font-size: 18px;
  }
  .style__event__camp #section-02 .md-section-txt {
    margin-bottom: 15px;
    line-height: 1.8;
  }
  .style__event__camp #section-02 .md-section-ttl {
    text-align: center;
    margin: 0 auto;
  }
  .style__event__camp #section-02 .md-section-ttl.border__rainbow {
    margin-bottom: 30px;
  }
  .style__event__camp #section-02 .activity-list {
    letter-spacing: -.4em;
    overflow: hidden;
  }
  .style__event__camp #section-02 .activity-list li {
    display: inline-block;
    margin: 0 4% 15px 0;
    width: 48%;
    letter-spacing: normal;
    float: left;
  }
  .style__event__camp #section-02 .activity-list li:nth-child(even) {
    margin: 0 0 15px 0;
  }
  .style__event__camp #section-02 .spring-camp-area {
    display: none;
  }
  .style__event__camp #section-03 .section-inner {
    position: relative;
    padding: 25px 20px 30px;
    background: url(/img/event/summer_camp/sp/bg_camp.png);
  }
  .style__event__camp #section-03 .section-inner:after {
    position: absolute;
    top: -16px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    content: "";
    width: 27px;
    height: 16px;
    background: url(/img/event/summer_camp/sp/arrow_camp.png) no-repeat;
    background-size: 27px auto;
  }
  .style__event__camp #section-03 .section-inner .md-section-lead {
    margin-bottom: 55px;
  }
  .style__event__camp #section-03 .section-inner .interview-list {
    margin-left: 15px;
  }
  .style__event__camp #section-03 .section-inner .interview-list li {
    position: relative;
    padding: 65px 20px 25px;
    margin-bottom: 60px;
    border-radius: 8px;
    background: #fff;
  }
  .style__event__camp #section-03 .section-inner .interview-list li:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) and (max-width: 350px) {
  .style__event__camp #section-03 .section-inner .interview-list li {
    padding: 55px 20px 25px;
  }
}
@media screen and (max-width: 767px) {
  .style__event__camp #section-03 .section-inner .interview-list li .img-block {
    position: absolute;
    top: -45px;
    left: -15px;
    width: 330px;
  }
}
@media screen and (max-width: 767px) and (max-width: 350px) {
  .style__event__camp #section-03 .section-inner .interview-list li .img-block {
    top: -35px;
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  .style__event__camp #section-03 .section-inner .interview-list li .md-set__ttl-caption dt.color__camp {
    padding-top: 10px;
    margin-bottom: 10px;
    padding-bottom: 3px;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: -.03em;
  }
}
@media screen and (max-width: 767px) and (max-width: 350px) {
  .style__event__camp #section-03 .section-inner .interview-list li .md-set__ttl-caption dt.color__camp {
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  .style__event__camp #section-03 .section-inner .interview-list li .md-set__ttl-caption dt.color__bee {
    padding-top: 10px;
    margin-bottom: 10px;
    padding-bottom: 3px;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: -.03em;
  }
}
@media screen and (max-width: 767px) and (max-width: 350px) {
  .style__event__camp #section-03 .section-inner .interview-list li .md-set__ttl-caption dt.color__bee {
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  .style__event__camp #section-03 .section-wrap {
    position: relative;
    padding: 25px 0;
  }
  .style__event__camp #section-03 .section-wrap .md-section-ttl {
    max-width: 330px;
    margin: 0 auto 20px;
  }
  .style__event__camp #section-03 .section-wrap .txt-block {
    margin-bottom: 30px;
  }
  .style__event__camp #section-04 {
    padding: 25px 0;
  }
  .style__event__camp #section-04 .md-section-main-ttl {
    font-weight: bold;
  }
  .style__event__camp #section-04 .md-section-txt {
    margin-bottom: 30px;
  }
  .style__event__camp #section-04 .photo-area .ttl-block {
    margin-bottom: 30px;
  }
  .style__event__camp #section-04 .photo-area .photo-list {
    overflow: hidden;
  }
  .style__event__camp #section-04 .photo-area .photo-list li {
    width: 47.31343%;
    float: left;
  }
  .style__event__camp #section-04 .photo-area .photo-list li:nth-child(even) {
    margin-left: 5.37313%;
  }
  .style__event__camp #section-04 .photo-area .photo-list li:nth-child(n+3) {
    margin-top: 6.30915%;
  }
  .style__event__camp #section-05 {
    display: none;
  }
  .style__event__camp .md-section-main-ttl {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) and (max-width: 350px) {
  .style__event__camp .md-section-main-ttl {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .style__event__camp .txt-block, .style__event__camp .img-space {
    margin-bottom: 20px;
  }
  .style__event__camp img {
    width: 100%;
  }
  .style__event__speech #section-02 {
    padding: 20px 0px 50px;
    background: url(/img/event/speech_contest/sp/bg_001.png) center top no-repeat;
    background-size: contain;
  }
  .style__event__speech #section-02 .txt-block {
    margin-bottom: 15px;
    line-height: 1.8;
  }
  .style__event__speech #section-02 .txt-block .weight-bold__speech {
    color: #1190d5;
  }
  .style__event__speech #section-02 .img-block {
    margin-top: 20px;
  }
  .style__event__speech #section-02 .md-section-main-ttl {
    text-align: left;
    margin-bottom: 0;
    font-weight: bold;
  }
  .style__event__speech #section-02 .md-set__ttl-caption dt.color__speech {
    margin-bottom: 15px;
    border-bottom: 1px solid #1190d5;
    font-size: 18px;
    padding-bottom: 3px;
    letter-spacing: -.03em;
    font-weight: bold;
  }
  .style__event__speech #section-02 .md-set__ttl-caption dd {
    margin-bottom: 15px;
    line-height: 1.8;
  }
  .style__event__speech #section-02 .md-set__ttl-caption dd .weight-bold__speech {
    color: #1190d5;
  }
  .style__event__speech #section-02 .power-area {
    padding-top: 20px;
  }
  .style__event__speech #section-02 .power-area .md-section-ttl {
    margin-top: 10px;
    margin-bottom: 0;
    padding: 15px 10px 10px;
    background: #1190d5;
    color: #fff;
    font-size: 18px;
    line-height: 1.6;
    border-radius: 6px 6px 0 0;
  }
  .style__event__speech #section-02 .power-area .md-section-ttl .bd-line {
    font-size: 22px;
  }
  .style__event__speech #section-02 .power-area .inner {
    padding: 20px;
    border: solid 2px #1190d5;
    border-radius: 6px;
    background: #f5f3e5;
  }
  .style__event__speech #section-02 .power-area .inner .pop-img {
    display: block;
    margin-bottom: 15px;
    text-align: center;
  }
  .style__event__speech #section-02 .power-area .inner .pop-img img {
    width: 46.49123%;
  }
  .style__event__speech #section-02 .power-area .inner .section-txt {
    padding-bottom: 20px;
    border-bottom: dotted 2px #1190d5;
  }
  .style__event__speech #section-02 .power-area .inner .two-power {
    padding-top: 20px;
  }
  .style__event__speech #section-02 .power-area .inner .two-power .power-ttl {
    text-align: center;
  }
  .style__event__speech #section-02 .power-area .inner .two-power .power-ttl span {
    display: block;
    padding-bottom: 5px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
  }
  .style__event__speech #section-02 .power-area .inner .two-power .two-power-list li {
    background: #fff;
    margin-top: 10px;
    border-radius: 6px;
    background: #fff;
    padding: 20px;
  }
  .style__event__speech #section-02 .power-area .inner .two-power .two-power-list li em {
    margin-bottom: 10px;
    color: #1190d5;
    font-size: 12px;
    font-weight: bold;
    display: block;
    text-align: center;
  }
  .style__event__speech #section-02 .power-area .inner .two-power .two-power-list li em strong {
    padding-right: 40px;
    background: url(/img/event/speech_contest/sp/icon_power_001.png) right center no-repeat;
    background-size: 30px auto;
    padding-left: 5px;
    font-size: 20px;
  }
  .style__event__speech #section-02 .power-area .inner .two-power .two-power-list li .icon {
    display: none;
  }
  .style__event__speech #section-02 .power-area .inner .two-power .two-power-list li:last-child em strong {
    background: url(/img/event/speech_contest/sp/icon_power_002.png) right center no-repeat;
    background-size: 49px auto;
    padding-right: 55px;
  }
  .style__event__speech #section-02 .power-area__inner {
    border: solid 2px #1190d5;
    border-radius: 6px;
    background: #f5f3e5;
  }
  .style__event__speech #section-02 .power-area__title {
    padding: 15px 10px 10px;
    background: #1190d5;
    color: #fff;
    font-size: 18px;
    line-height: 1.6;
  }
}
@media screen and (max-width: 767px) and (max-width: 350px) {
  .style__event__speech #section-02 .power-area__title {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .style__event__speech #section-02 .power-area__title .big {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) and (max-width: 360px) {
  .style__event__speech #section-02 .power-area__title .big {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) and (max-width: 350px) {
  .style__event__speech #section-02 .power-area__title .big {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .style__event__speech #section-02 .power-area__cont {
    padding: 20px 20px 0;
  }
  .style__event__speech #section-02 .power-area__cont__inner {
    padding-bottom: 20px;
    border-bottom: dotted 2px #1190d5;
  }
  .style__event__speech #section-02 .power-area__cont__img {
    margin-bottom: 15px;
    text-align: center;
  }
  .style__event__speech #section-02 .power-area__cont__img img {
    width: 46.49123%;
  }
  .style__event__speech #section-02 .power-area__power {
    padding: 20px;
  }
  .style__event__speech #section-02 .power-area__power__title {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
  }
}
@media screen and (max-width: 767px) and (max-width: 360px) {
  .style__event__speech #section-02 .power-area__power__title {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .style__event__speech #section-02 .power-area__power__article {
    border-radius: 6px;
    background: #fff;
    padding: 20px;
  }
  .style__event__speech #section-02 .power-area__power__article:not(:last-child) {
    margin-bottom: 10px;
  }
  .style__event__speech #section-02 .power-area__power__article dl dt {
    margin-bottom: 10px;
    color: #1190d5;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
  }
  .style__event__speech #section-02 .power-area__power__article dl dt em {
    padding-left: 5px;
    font-size: 20px;
  }
  .style__event__speech #section-02 .power-area__power__article.article01 dl dt em {
    padding-right: 40px;
    background: url(/img/event/speech_contest/sp/icon_power_001.png) right center no-repeat;
    background-size: 30px auto;
  }
  .style__event__speech #section-02 .power-area__power__article.article02 dl dt em {
    padding-right: 55px;
    background: url(/img/event/speech_contest/sp/icon_power_002.png) right center no-repeat;
    background-size: 49px auto;
  }
  .style__event__speech #section-03 {
    background: #edf3f6;
  }
  .style__event__speech #section-03 .sv-area {
    position: relative;
  }
  .style__event__speech #section-03 .sv-area .sv-lead-area {
    -js-display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 100%;
    height: 50px;
    text-align: center;
    background: rgba(17, 144, 213, 0.85);
    color: #fff;
  }
  .style__event__speech #section-03 .sv-area .sv-lead-area .lead-txt-cont {
    -js-display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .style__event__speech #section-03 .sv-area .sv-lead-area .lead-txt-cont span {
    display: inline-block;
    margin-right: 10px;
    padding: 3px 12px;
    font-size: 10px;
    border: 1px solid #fff;
    line-height: 1.2;
  }
}
@media screen and (max-width: 767px) and (max-width: 350px) {
  .style__event__speech #section-03 .sv-area .sv-lead-area .lead-txt-cont span {
    font-size: 8px;
  }
}
@media screen and (max-width: 767px) {
  .style__event__speech #section-03 .sv-area .sv-lead-area .lead-txt-cont strong {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) and (max-width: 350px) {
  .style__event__speech #section-03 .sv-area .sv-lead-area .lead-txt-cont strong {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .style__event__speech #section-03 .section-inner {
    background: url(/img/event/speech_contest/sp/bg_003.png) right top no-repeat;
    background-size: 115px auto;
  }
  .style__event__speech #section-03 .leport-area {
    padding: 30px 0 40px;
  }
  .style__event__speech #section-03 .leport-area .md-set__ttl-caption dt.color__speech {
    border-bottom: solid 1px #1190d5;
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 1.6;
    font-weight: bold;
  }
  .style__event__speech #section-03 .leport-area .md-set__ttl-caption dd {
    line-height: 1.6;
    text-align: justify;
  }
  .style__event__speech #section-03 .leport-area .sp-img-block {
    padding: 15px 0;
    display: block;
  }
  .style__event__speech #section-03 .leport-area .staff-message {
    margin-top: 30px;
  }
  .style__event__speech #section-03 .leport-area .staff-message .img-block {
    margin: 0 auto 15px;
    width: 38.23529%;
  }
  .style__event__speech #section-03 .leport-area .staff-message .txt-area {
    margin-top: 30px;
    position: relative;
    background: #edf3f6;
    border: 2px solid #1190d5;
    border-radius: 6px;
  }
  .style__event__speech #section-03 .leport-area .staff-message .txt-area:after, .style__event__speech #section-03 .leport-area .staff-message .txt-area:before {
    bottom: 100%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
  }
  .style__event__speech #section-03 .leport-area .staff-message .txt-area:after {
    border-color: rgba(136, 183, 213, 0);
    border-bottom-color: #edf3f6;
    border-width: 18px;
    margin-left: -18px;
  }
  .style__event__speech #section-03 .leport-area .staff-message .txt-area:before {
    border-color: rgba(194, 225, 245, 0);
    border-bottom-color: #1190d5;
    border-width: 21px;
    margin-left: -21px;
  }
  .style__event__speech #section-03 .leport-area .staff-message .txt-area .md-section-ttl {
    padding: 20px 20px 15px;
    margin-bottom: 0;
    display: block;
  }
  .style__event__speech #section-03 .leport-area .staff-message .txt-area p {
    padding: 0 20px 20px;
  }
}
@media screen and (min-width: 768px) {
  .style__event {
    line-height: 1.8;
    font-size: 16px;
    /* ------------------------------------------------------------
      ここからイベントページ共通要素
    ------------------------------------------------------------ */
    /* ------------------------------------------------------------
      ここからイベントページ個別のスタイル
    ------------------------------------------------------------ */
  }
  .style__event .section-inner {
    width: 1040px;
    margin: 0 auto;
  }
  .style__event .md-page-ttl {
    color: #fff;
    text-align: center;
    padding: 40px 0;
  }
  .style__event .md-page-ttl em {
    display: block;
    font-weight: bold;
    line-height: 1;
    font-size: 24px;
    font-style: normal;
  }
  .style__event .md-section-lead {
    text-align: center;
  }
  .style__event .md-section-lead span {
    display: inline-block;
    background: url(/img/event/icon_ttl_bg_left.png) left bottom no-repeat, url(/img/event/icon_ttl_bg_right.png) right bottom no-repeat;
    background-size: 18px 30px;
    padding: 14px 48px 0;
    font-size: 18px;
    color: #666;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    margin-bottom: 35px;
  }
  .style__event .md-section-lead.color__white span {
    color: #fff;
    background: url(/img/event/icon_ttl_bg_left_white.png) left bottom no-repeat, url(/img/event/icon_ttl_bg_right_white.png) right bottom no-repeat;
    background-size: 18px 30px;
  }
  .style__event .md-section-main-ttl {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 35px;
    line-height: 1.5;
  }
  .style__event .md-section-ttl {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.5;
  }
  .style__event .md-section-ttl.left {
    text-align: left;
  }
  .style__event .md-section-txt {
    width: 780px;
    margin: 0 auto;
  }
  .style__event .md-section-txt.center {
    text-align: center;
  }
  .style__event .md-set__ttl-caption dt {
    margin-bottom: 20px;
    font-size: 28px;
    line-height: 1.5;
    font-weight: bold;
  }
  .style__event .md-set__ttl-caption dd {
    font-size: 16px;
    text-align: justify;
  }
  .style__event .md-btn {
    border-radius: 6px;
    line-height: 1;
  }
  .style__event .md-btn a {
    display: block;
    border-radius: 6px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    font-size: 14px;
    padding: 15px 0;
  }
  .style__event .md-btn a .icon-arrow {
    display: block;
    margin: 0 18px;
    background-size: 7px auto;
    position: relative;
  }
  .style__event .md-btn a .icon-arrow:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 10px;
    width: 6px;
    height: 6px;
    border-right: 2px solid #fff;
    border-top: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .style__event .md-btn.font__big a {
    font-size: 16px;
  }
  .style__event .md-btn.type__02 {
    width: 270px;
  }
  .style__event .md-btn.type__03 {
    width: 435px;
  }
  .style__event .md-btn.type__03 a {
    font-size: 18px;
  }
  .style__event .md-btn.padding-on__tb a {
    padding: 28px 10px;
  }
  .style__event .md-btn.center {
    margin: 0 auto;
  }
  .style__event .column {
    -js-display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .style__event img {
    vertical-align: bottom;
  }
  .style__event .mv-area {
    height: 520px;
    position: relative;
  }
  .style__event .mv-area .mv-ttl {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }
  .style__event .mv-area.bee {
    height: 600px;
    overflow: hidden;
  }
  .style__event .mv-area.bee .filter {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 600px;
    background: rgba(0, 0, 0, 0.3);
  }
  .style__event .mv-area.bee video {
    margin-top: -150px;
  }
  .style__event .mv-area.bee .mv-ttl {
    width: 762px;
    height: 394px;
  }
  .style__event .mv-area.speech {
    background: url(/img/event/speech_contest/mv.jpg) no-repeat;
    background-size: cover;
  }
  .style__event .mv-area.speech .mv-ttl {
    width: 454px;
    height: 298px;
  }
  .style__event .mv-area.camp {
    background: url(/img/event/summer_camp/mv.jpg) no-repeat;
    background-size: cover;
  }
  .style__event .mv-area.camp .mv-ttl {
    width: 454px;
    height: 298px;
  }
  .style__event .sv-area {
    height: 480px;
    position: relative;
  }
  .style__event .sv-area .sv-ttl {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }
  .style__event .sv-area .sv-lead-area {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    -js-display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 56px;
    font-weight: bold;
    text-align: center;
    color: #fff;
  }
  .style__event .sv-area .sv-lead-area span {
    display: inline-block;
    padding: 9px 11px;
    font-size: 15px;
    line-height: 1;
    text-align: center;
    border: 1px solid #fff;
  }
  .style__event .sv-area .sv-lead-area strong {
    margin-left: 20px;
    font-size: 20px;
    line-height: 1;
  }
  .style__event .sv-area.bee {
    background: url(/img/event/spelling_bee/sv.jpg) center center no-repeat;
    background-size: cover;
  }
  .style__event .sv-area.bee .sv-ttl {
    width: 469px;
    height: 184px;
  }
  .style__event .sv-area.bee .sv-lead-area {
    background: rgba(255, 186, 0, 0.85);
  }
  .style__event .sv-area.speech {
    background: url(/img/event/speech_contest/sv.jpg) center center no-repeat;
    background-size: cover;
  }
  .style__event .sv-area.speech .sv-ttl {
    width: 449px;
    height: 116px;
  }
  .style__event .sv-area.speech .sv-lead-area {
    background: rgba(17, 144, 213, 0.85);
  }
  .style__event .leport-area .leport-block:not(:first-child) {
    margin-top: 60px;
  }
  .style__event .leport-area .leport-block .md-set__ttl-caption {
    width: 550px;
  }
  .style__event .leport-area .leport-block .md-set__ttl-caption dd:not(first-of-type) {
    margin-top: 20px;
  }
  .style__event .leport-area .leport-block .img-block {
    width: 430px;
  }
  .style__event .leport-area .leport-block .img-block img {
    display: block;
  }
  .style__event .leport-area .leport-block .img-block img:not(:first-child) {
    margin-top: 20px;
  }
  .style__event .leport-area .leport-block .img-block img.spOnly {
    display: none;
  }
  .style__event .bd-line {
    background: linear-gradient(transparent 80%, #ffba00 80%);
    background-position: 0 -7px;
  }
  .style__event__spelling-bee .md-page-ttl {
    margin-bottom: 0;
    background: #ffba00;
  }
  .style__event__spelling-bee .md-set__ttl-caption dt {
    font-size: 30px;
  }
  .style__event__spelling-bee #section-01 .mv-area .mv-ttl {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 762px;
    height: 394px;
  }
  .style__event__spelling-bee #section-01 .mv-area.bee {
    background: url(/img/event/spelling_bee/mv.jpg) no-repeat;
    background-size: cover;
  }
  .style__event__spelling-bee #section-02 {
    padding: 35px 0 75px;
    background: url(/img/event/spelling_bee/bg_bee_001.png) top right no-repeat;
  }
  .style__event__spelling-bee #section-02 .column {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .style__event__spelling-bee #section-02 .column .txt-area {
    width: 495px;
  }
  .style__event__spelling-bee #section-02 .highlight {
    margin-top: 55px;
    position: relative;
  }
  .style__event__spelling-bee #section-02 .highlight .txt-area {
    box-sizing: border-box;
    width: 780px;
    margin: 0 auto;
    padding: 35px 50px;
    border-radius: 12px;
    border: 6px solid #ffba00;
  }
  .style__event__spelling-bee #section-02 .highlight .txt-area .md-set__ttl-caption {
    width: 480px;
  }
  .style__event__spelling-bee #section-02 .highlight .txt-area .md-set__ttl-caption dt {
    line-height: 1.2;
  }
  .style__event__spelling-bee #section-02 .highlight .txt-area .md-set__ttl-caption dd {
    font-size: 15px;
  }
  .style__event__spelling-bee #section-02 .highlight .txt-area .img-block {
    width: 490px;
  }
  .style__event__spelling-bee #section-02 .highlight .pop-img {
    position: absolute;
    right: 30px;
    bottom: -38px;
  }
  .style__event__spelling-bee #section-02 .highlight .highlight-ttl {
    position: absolute;
    top: -30px;
    left: -20px;
  }
  .style__event__spelling-bee #section-03 {
    padding: 35px 0 0;
    background: #ffba00 url(/img/event/spelling_bee/bg_bee_002.png) bottom center no-repeat;
    background-size: contain;
    overflow: hidden;
  }
  .style__event__spelling-bee #section-03 .tournament-area {
    margin: -68px 0 0;
    padding: 55px 0 60px;
    background: url(/img/event/spelling_bee/bg_japan.png) top right no-repeat;
  }
  .style__event__spelling-bee #section-03 .tournament-area .txt-area {
    width: 640px;
  }
  .style__event__spelling-bee #section-03 .tournament-area .txt-area .md-section-ttl {
    line-height: 1;
  }
  .style__event__spelling-bee #section-03 .tournament-area .txt-area .md-section-ttl .hexagon {
    display: inline-block;
    margin-right: 5px;
    padding: 20px 45px 75px 14px;
    background: url(/img/event/spelling_bee/bg_hexagon.png) top left no-repeat;
    font-size: 42px;
  }
  .style__event__spelling-bee #section-03 .tournament-area .txt-area .md-section-ttl span {
    display: inline-block;
    margin-left: -26px;
  }
  .style__event__spelling-bee #section-03 .tournament-area .txt-area .md-section-ttl span.line-double {
    margin-left: 0;
  }
  .style__event__spelling-bee #section-03 .tournament-area .txt-area .section-txt {
    margin-top: -75px;
  }
  .style__event__spelling-bee #section-03 .tournament-area .img-block {
    width: 312px;
  }
  .style__event__spelling-bee #section-03 .phonics-detail-area {
    position: relative;
    padding-bottom: 70px;
  }
  .style__event__spelling-bee #section-03 .phonics-detail-area .txt-area {
    box-sizing: border-box;
    width: 780px;
    margin: 0 auto;
    padding: 30px 86px;
    border-radius: 12px;
    border: 6px solid #5f3619;
    background: #fff;
  }
  .style__event__spelling-bee #section-03 .phonics-detail-area .txt-area .md-section-ttl {
    line-height: 1;
  }
  .style__event__spelling-bee #section-03 .phonics-detail-area .txt-area .md-btn {
    width: 312px;
    margin: 30px auto 0;
  }
  .style__event__spelling-bee #section-03 .phonics-detail-area .img-teacher {
    position: absolute;
    bottom: 0;
    left: -73px;
  }
  .style__event__spelling-bee #section-03 .phonics-detail-area .img-student {
    position: absolute;
    bottom: 0;
    right: -94px;
  }
  .style__event__spelling-bee #section-04 {
    background: #fdf6e4;
    overflow-x: hidden;
  }
  .style__event__spelling-bee #section-04 .leport-area {
    position: relative;
    padding: 50px 0 150px;
    background: url(/img/event/spelling_bee/bg_bee_003.png) top left no-repeat, url(/img/event/spelling_bee/bg_bee_004.png) bottom right no-repeat;
  }
  .style__event__spelling-bee #section-04 .leport-area .leport-block {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .style__event__spelling-bee #section-04 .leport-area .leport-block.mt0 {
    margin-top: 0;
  }
  .style__event__spelling-bee #section-04 .leport-area .leport-block:last-of-type {
    position: relative !important;
  }
  .style__event__spelling-bee #section-04 .leport-area .leport-block:last-of-type .pop-img {
    position: absolute !important;
    left: -202px !important;
    bottom: -75px !important;
  }
  .style__event__spelling-bee #section-04 .leport-area .leport-block:last-of-type .img-block {
    position: absolute !important;
    bottom: 0 !important;
    right: -54px !important;
    width: 486px !important;
  }
  .style__event__spelling-bee #section-04 .leport-area .leport-block:last-of-type .sp-img-block.spOnly {
    display: none !important;
  }
  .style__event__spelling-bee #section-04 .leport-area .leport-block .img-block.spOnly {
    display: none !important;
  }
  .style__event__spelling-bee #section-04 .leport-area .leport-block .img-block.pcOnly {
    margin-right: 60px \9;
  }
  .style__event__speech .md-page-ttl {
    margin-bottom: 0;
  }
  .style__event__speech #section-02 {
    padding: 35px 0 40px;
    background: #edf3f6 url(/img/event/speech_contest/bg_001.png) top center no-repeat;
  }
  .style__event__speech #section-02 .txt-area {
    width: 530px;
  }
  .style__event__speech #section-02 .power-area {
    margin-top: 10px;
    position: relative;
  }
  .style__event__speech #section-02 .power-area .power-block {
    box-sizing: border-box;
    border-radius: 12px;
    border: 6px solid #1190d5;
    background: #f5f3e5;
  }
  .style__event__speech #section-02 .power-area .power-block .md-section-ttl {
    margin-bottom: 0;
    padding: 5px 40px;
    background: #1190d5;
  }
  .style__event__speech #section-02 .power-area .power-block .md-section-ttl strong {
    font-size: 34px;
  }
  .style__event__speech #section-02 .power-area .power-block .inner {
    padding: 35px 40px;
  }
  .style__event__speech #section-02 .power-area .power-block .inner .section-txt {
    width: 670px;
  }
  .style__event__speech #section-02 .power-area .pop-img {
    position: absolute;
    top: 20px;
    right: -30px;
  }
  .style__event__speech #section-02 .power-area .two-power {
    margin-top: 30px;
  }
  .style__event__speech #section-02 .power-area .two-power .two-power-list {
    margin-top: 50px;
  }
  .style__event__speech #section-02 .power-area .two-power .two-power-list li {
    box-sizing: border-box;
    width: 454px;
    padding: 25px 30px;
    background: #fff;
  }
  .style__event__speech #section-02 .power-area .two-power .two-power-list li em {
    display: block;
    position: relative;
    top: 0;
    right: 5px;
    color: #1190d5;
    font-size: 18px;
  }
  .style__event__speech #section-02 .power-area .two-power .two-power-list li em strong {
    font-size: 30px;
  }
  .style__event__speech #section-02 .power-area .two-power .two-power-list li em .icon {
    display: inline-block;
    position: absolute;
  }
  .style__event__speech #section-02 .power-area .two-power .two-power-list li p {
    font-size: 14px;
    font-weight: normal;
    line-height: 1.4;
  }
  .style__event__speech #section-02 .power-area .two-power .two-power-list li:first-child .icon {
    display: inline-block;
    position: absolute;
    top: -10px;
    left: 220px;
  }
  .style__event__speech #section-02 .power-area .two-power .two-power-list li:last-child .icon {
    display: inline-block;
    position: absolute;
    top: -5px;
    right: 30px;
  }
  .style__event__speech #section-03 {
    background: #edf3f6;
    padding: 0 0 100px;
  }
  .style__event__speech #section-03 .leport-area {
    padding-top: 50px;
    background: url(/img/event/speech_contest/bg_002.png) left top no-repeat, url(/img/event/speech_contest/bg_003.png) right 1125px no-repeat;
  }
  .style__event__speech #section-03 .staff-message {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 50px;
  }
  .style__event__speech #section-03 .staff-message .img-block {
    width: 210px;
    text-align: center;
  }
  .style__event__speech #section-03 .staff-message .txt-area {
    position: relative;
    width: 790px;
    box-sizing: border-box;
    border-radius: 12px;
    padding: 35px 40px;
    border: 6px solid #1190d5;
  }
  .style__event__speech #section-03 .staff-message .txt-area:after {
    right: 100%;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(255, 255, 255, 0);
    border-right-color: #edf3f6;
    border-width: 20px;
    margin-top: -20px;
  }
  .style__event__speech #section-03 .staff-message .txt-area:before {
    right: 100%;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(18, 144, 214, 0);
    border-right-color: #1290d6;
    border-width: 28px;
    margin-top: -28px;
  }
  .style__event__speech #section-03 .staff-message .txt-area strong {
    display: block;
    line-height: 1.3;
    margin-bottom: 35px;
  }
  .style__event__camp #section-02 {
    padding: 35px 0 100px;
    background: url(/img/event/summer_camp/bg_001.png) right top no-repeat, url(/img/event/summer_camp/bg_002.png) left bottom no-repeat;
  }
  .style__event__camp #section-02 .txt-spOnly, .style__event__camp #section-02 .md-section-ttl.border__rainbow {
    display: none;
  }
  .style__event__camp #section-02 .activity-list {
    display: block;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 45px;
    letter-spacing: -.4em;
  }
  .style__event__camp #section-02 .activity-list li {
    display: inline-block;
    letter-spacing: normal;
    width: 25% \9;
    text-align: center \9;
  }
  .style__event__camp #section-02 .activity-list li:nth-child(n+5) {
    margin-top: 20px;
  }
  .style__event__camp #section-02 .spring-camp-area {
    box-sizing: border-box;
    position: relative;
    width: 780px;
    margin: 60px auto 0;
    padding: 80px 40px 40px;
    background: #fff;
    border-radius: 12px;
    border: 6px solid #659d16;
  }
  .style__event__camp #section-02 .spring-camp-area .md-set__ttl-caption {
    width: 470px;
  }
  .style__event__camp #section-02 .spring-camp-area .logo {
    position: absolute;
    top: -28px;
    left: -30px;
  }
  .style__event__camp #section-02 .spring-camp-area .img-block {
    position: absolute;
    top: -17px;
    right: -143px;
  }
  .style__event__camp #section-03 {
    margin-top: -80px;
    padding: 80px 0 35px;
    background: url(/img/event/summer_camp/bg_border.png) top center no-repeat;
    background-size: cover;
  }
  .style__event__camp #section-03 .interview-list {
    -js-display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 80px;
  }
  .style__event__camp #section-03 .interview-list li {
    box-sizing: border-box;
    position: relative;
    border-radius: 12px;
    width: 480px;
    padding: 120px 30px 40px;
    background: #fff;
  }
  .style__event__camp #section-03 .interview-list li .md-set__ttl-caption dt {
    font-size: 26px;
    line-height: 1.3;
  }
  .style__event__camp #section-03 .interview-list li .img-block {
    position: absolute;
    top: -80px;
    left: -30px;
  }
  .style__event__camp #section-04 {
    padding: 40px 0 60px;
  }
  .style__event__camp #section-04 .photo-area {
    margin-top: 35px;
  }
  .style__event__camp #section-04 .photo-area .photo-list {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 40px;
    letter-spacing: -.4em;
  }
  .style__event__camp #section-04 .photo-area .photo-list li {
    display: inline-block;
    letter-spacing: normal;
    width: 25% \9;
    text-align: center \9;
  }
  .style__event__camp #section-04 .photo-area .photo-list li:nth-child(n+5) {
    margin-top: 30px;
  }
  .style__event__camp #section-05 .program {
    padding: 30px 0;
    height: 770px;
    background: #6fa2db url(/img/event/summer_camp/bg_world.png) bottom center no-repeat;
    background-size: contain;
  }
  .style__event__camp #section-05 .program .section-inner {
    position: relative;
  }
  .style__event__camp #section-05 .program .section-inner .md-section-ttl {
    margin-bottom: 75px;
  }
  .style__event__camp #section-05 .program .section-inner .pop-img {
    position: absolute;
    top: 42px;
    left: -220px;
  }
  .style__event__camp #section-05 .program .section-inner .column {
    position: relative;
  }
  .style__event__camp #section-05 .program .section-inner .column .txt-area {
    width: 610px;
  }
  .style__event__camp #section-05 .program .section-inner .column .img-block {
    position: absolute;
    top: 0;
    right: -50px;
  }
}
#faq {
  color: #333333;
  line-height: 1.6;
  font-size: 16px;
}
#faq img {
  max-width: 100%;
}
#faq * {
  box-sizing: border-box;
}
#faq .section-common {
  padding: 50px 0 60px;
}
#faq .mv-area {
  padding-top: 50px;
  text-align: center;
}
#faq .mv-area .heading-text {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  color: #004da0;
  line-height: 1.6;
  margin-bottom: 35px;
}
#faq .mv-area .text-wrap {
  margin-bottom: 45px;
}
#faq .contact-wrap {
  padding-top: 0;
  padding-bottom: 0;
}
#faq .contact-wrap .content-inner {
  background: #004da0;
  overflow: hidden;
  padding-top: 25px;
  padding-bottom: 20px;
}
#faq .contact-wrap .txt-block {
  background: url(/img/faq/img_conversion_sp.png) left bottom no-repeat #fff;
  background-size: 110px auto;
  padding: 10px 20px 10px 110px;
  font-size: 12px;
  border-radius: 8px;
}
#faq .faq-wrap {
  background: transparent url(/img/faq/bg_pat.png) center top repeat;
}
#faq .faq-wrap .faq-list-wrap {
  padding-top: 10px;
}
#faq .faq-wrap .faq-list-wrap .faq-list {
  margin-bottom: 15px;
}
#faq .concept-wrap {
  background: transparent url(/img/faq/about_bg-pattern-001.jpg) center center repeat;
}
#faq .concept-wrap .lead-text {
  margin-bottom: 50px;
}
#faq .concept-wrap .concept-description-list-wrap .heading {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}
#faq .concept-wrap .concept-description-list-wrap .heading:before {
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background: #004da0;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
}
#faq .concept-wrap .concept-description-list-wrap .heading span {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  width: 500px;
  line-height: 48px;
  height: 45px;
  border-radius: 22.5px;
  background-color: #004da0;
  text-align: center;
}
#faq .concept-wrap .concept-description-list-wrap .descrription-list {
  font-size: 0;
}
#faq .concept-wrap .concept-description-list-wrap .descrription-list li {
  display: inline-block;
  width: 320px;
  float: left;
  text-align: center;
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #f1b723;
  padding: 20px;
}
#faq .concept-wrap .concept-description-list-wrap .descrription-list li:not(:last-child) {
  margin-right: 40px;
}
#faq .concept-wrap .concept-description-list-wrap .descrription-list li img {
  margin-bottom: 15px;
}
#faq .concept-wrap .concept-description-list-wrap .descrription-list li .text {
  font-size: 16px;
  line-height: 1.8;
  text-align: left;
}
#faq .method-wrap {
  background-color: #fef8e9;
  overflow: hidden;
}
#faq .method-wrap .content-inner {
  position: relative;
}
#faq .method-wrap .content-inner:before {
  content: "";
  position: absolute;
  left: -222px;
  top: -50px;
  width: 308px;
  height: 114px;
  display: block;
  background: transparent url(/img/faq/about_flag_001.png) center center no-repeat;
  background-size: contain;
}
#faq .method-wrap .content-inner:after {
  content: "";
  position: absolute;
  right: -222px;
  top: -50px;
  width: 308px;
  height: 115px;
  display: block;
  background: transparent url(/img/faq/about_flag_002.png) center center no-repeat;
  background-size: contain;
}
#faq .method-wrap .method-list-wrap {
  margin-top: 50px;
}
#faq .method-wrap .method-list-wrap .method-list {
  font-size: 0;
}
#faq .method-wrap .method-list-wrap .method-list li .text-wrap {
  width: 600px;
  display: inline-block;
}
#faq .method-wrap .method-list-wrap .method-list li .text-wrap .list-heading-wrap {
  display: table;
  margin-bottom: 25px;
}
#faq .method-wrap .method-list-wrap .method-list li .text-wrap .list-heading-wrap .icon {
  display: table-cell;
  width: 90px;
  vertical-align: middle;
  padding-right: 15px;
}
#faq .method-wrap .method-list-wrap .method-list li .text-wrap .list-heading-wrap .heading {
  display: table-cell;
  font-size: 24px;
  line-height: 1;
  font-weight: bold;
  color: #004da0;
  vertical-align: middle;
}
#faq .method-wrap .method-list-wrap .method-list li .text-wrap .text {
  font-size: 16px;
  line-height: 1.8;
}
#faq .method-wrap .method-list-wrap .method-list li:nth-of-type(2n-1) .text-wrap {
  float: left;
}
#faq .method-wrap .method-list-wrap .method-list li:nth-of-type(2n-1) .list-image {
  float: right;
}
#faq .method-wrap .method-list-wrap .method-list li:nth-of-type(2n) .text-wrap {
  float: right;
}
#faq .method-wrap .method-list-wrap .method-list li:nth-of-type(2n) .list-image {
  float: left;
}
#faq .method-wrap .method-list-wrap .method-list li:not(:last-child) {
  margin-bottom: 60px;
}
#faq .conversion-middle-area {
  background: transparent url(/img/faq/about_action-area-bg.png) center center no-repeat;
  background-size: cover;
  padding: 50px 0 50px;
  text-align: center;
}
#faq .conversion-middle-area .content-inner {
  position: relative;
}
#faq .conversion-middle-area .conversion-title {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 25px;
  color: #fff;
}
#faq .conversion-middle-area .conversion-text-image {
  display: block;
  margin: 0 auto 30px;
}
#faq .conversion-middle-area .btn-conversion {
  display: inline-block;
  text-align: center;
  background: #e50012;
  font-size: 14px;
  padding: 9px 65px;
  width: auto;
  color: #fff;
  border-radius: 8px;
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
}
#faq .conversion-middle-area .btn-conversion:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 10px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#faq .conversion-middle-area .btn-conversion span {
  font-size: 18px;
  font-weight: bold;
}
#faq .conversion-middle-area .call-wrap {
  text-align: center;
}
#faq .conversion-middle-area .call-wrap .call-warp-inner {
  display: inline-block;
  text-align: right;
}
#faq .conversion-middle-area .call-wrap .call-warp-inner .time-text {
  display: block;
  font-size: 12px;
}
#faq .conversion-middle-area .image_001 {
  position: absolute;
  bottom: -50px;
  left: -205px;
}
#faq .conversion-middle-area .image_002 {
  position: absolute;
  bottom: -50px;
  right: -222px;
}
#faq .support-wrap {
  background: transparent url(/img/faq/about_support-bg.jpg) center center no-repeat;
  background-size: cover;
}
#faq .support-wrap .lead-text {
  margin-bottom: 50px;
}
#faq .support-wrap .support-list-wrap .support-list {
  font-size: 0;
}
#faq .support-wrap .support-list-wrap .support-list li {
  float: left;
  vertical-align: top;
  display: inline-block;
  width: 245px;
  height: 275px;
  background-color: #fff;
  padding: 20px 20px 0;
  box-shadow: rgba(178, 131, 90, 0.4) 4px 4px 0px;
  position: relative;
}
#faq .support-wrap .support-list-wrap .support-list li:not(:last-child) {
  margin-right: 20px;
}
#faq .support-wrap .support-list-wrap .support-list li:before {
  position: absolute;
  content: "";
  display: block;
  width: 28px;
  height: 57px;
  background: transparent url(/img/faq/about_support-pin.png) center center no-repeat;
  background-size: contain;
  left: 0;
  top: -30px;
}
#faq .support-wrap .support-list-wrap .support-list li img {
  margin-bottom: 15px;
}
#faq .support-wrap .support-list-wrap .support-list li .text {
  font-size: 16px;
  text-align: center;
  line-height: 1.8;
}
#faq .price-wrap {
  background: #eaf7f8 url(/img/faq/about_price-bgimage-002.png) center bottom repeat-x;
}
#faq .price-wrap .content-inner {
  position: relative;
}
#faq .price-wrap .sun-image {
  position: absolute;
  top: -50px;
  left: -240px;
}
#faq .price-wrap .lead-text {
  margin-bottom: 50px;
}
#faq .price-wrap .course-heading {
  font-size: 20px;
  text-align: left;
  margin-bottom: 15px;
  font-weight: bold;
}
#faq .price-wrap .small-text {
  font-size: 14px;
}
#faq .price-wrap .course-wrap .course-table {
  width: 100%;
}
#faq .price-wrap .course-wrap .course-table.sp {
  display: none;
}
#faq .price-wrap .course-wrap .course-table .tb1 {
  width: 135px;
}
#faq .price-wrap .course-wrap .course-table th, #faq .price-wrap .course-wrap .course-table td {
  text-align: center;
  border: 1px solid #d8d8d8;
  vertical-align: middle;
}
#faq .price-wrap .course-wrap .course-table thead {
  color: #fff;
}
#faq .price-wrap .course-wrap .course-table thead th, #faq .price-wrap .course-wrap .course-table thead td {
  padding: 10px 0;
}
#faq .price-wrap .course-wrap .course-table thead th {
  border-bottom: none;
}
#faq .price-wrap .course-wrap .course-table tbody th, #faq .price-wrap .course-wrap .course-table tbody td {
  padding: 15px 0;
  background-color: #fff;
}
#faq .price-wrap .infant-block {
  margin-bottom: 45px;
}
#faq .price-wrap .infant-block .course-heading {
  color: #e95383;
}
#faq .price-wrap .infant-block .course-table thead {
  background-color: #ed759c;
}
#faq .price-wrap .infant-block .course-table tbody th {
  background-color: #fbdde6;
}
#faq .price-wrap .primary-school-block {
  margin-bottom: 18px;
}
#faq .price-wrap .primary-school-block .course-heading {
  color: #00aebb;
}
#faq .price-wrap .primary-school-block .course-table thead {
  background-color: #33bec9;
}
#faq .price-wrap .primary-school-block .course-table tbody th {
  background-color: #cceff1;
}
#faq .price-wrap .notice-sentence {
  font-size: 14px;
  line-height: 1.6;
}
#faq .float-wrap .left-wrap {
  width: 620px;
  float: left;
}
#faq .float-wrap .left-wrap .float-heading {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #004da0;
}
#faq .float-wrap .right-wrap {
  float: right;
}
#faq .point-wrap {
  background: transparent url(/img/faq/about_point-bg.png) center center repeat;
}
#faq .point-wrap .button-wrap {
  padding-top: 35px;
}
#faq .point-wrap .button-wrap a {
  font-size: 14px;
  height: 44px;
  width: 270px;
  line-height: 46px;
  color: #fff;
  background-color: #004da0;
  border-radius: 8px;
  display: inline-block;
  text-align: center;
  position: relative;
}
#faq .point-wrap .button-wrap a:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 10px;
  width: 7px;
  height: 7px;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  #faq {
    font-size: 15px;
  }
}
@media screen and (min-width: 768px) {
  #faq .m_sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #faq .m_sp {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  #faq .m_pc {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  #faq .m_pc {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #faq .section-common {
    padding: 30px 0 30px;
  }
}
@media screen and (max-width: 767px) {
  #faq .mv-area {
    padding-top: 25px;
  }
}
@media screen and (max-width: 767px) {
  #faq .mv-area .heading-text {
    font-size: 18px;
    margin-bottom: 18px;
  }
}
@media screen and (max-width: 767px) {
  #faq .mv-area .text-wrap {
    text-align: left;
    margin-bottom: 25px;
  }
}
@media screen and (min-width: 768px) {
  #faq .contact-wrap {
    background: #e5edf5;
    padding: 30px 0;
  }
}
@media screen and (min-width: 768px) {
  #faq .contact-wrap .content-inner {
    width: 724px;
    padding: 8px 10px;
  }
}
@media screen and (max-width: 767px) {
  #faq .contact-wrap .info-title {
    font-size: 15px;
    color: #f1b723;
    text-align: center;
    display: block;
    padding-bottom: 20px;
    font-weight: bold;
  }
}
@media screen and (max-width: 767px) {
  #faq .contact-wrap .txt-block {
    min-height: 95px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 768px) {
  #faq .contact-wrap .txt-block {
    float: left;
    background: url(/img/faq/img_conversion_pc.png) left bottom no-repeat #fff;
    padding: 16px 15px 16px 120px;
    font-size: 13px;
    width: 460px;
    height: 72px;
  }
}
@media screen and (max-width: 767px) {
  #faq .contact-wrap .info-block .info-block-inner {
    border: 6px solid #e5edf5;
    padding: 12px 10px;
    background: #fff;
    text-align: center;
  }
  #faq .contact-wrap .info-block .info-title {
    display: none;
  }
  #faq .contact-wrap .info-block .info-text {
    font-size: 11px;
    display: block;
  }
  #faq .contact-wrap .info-block .info-tel {
    padding: 8px 0;
    text-align: center;
  }
  #faq .contact-wrap .info-block .info-tel img {
    width: 65.67164%;
  }
  #faq .contact-wrap .info-block .time-text {
    font-size: 11px;
  }
}
@media screen and (min-width: 768px) {
  #faq .contact-wrap .info-block {
    float: right;
    font-size: 13px;
    width: 230px;
  }
  #faq .contact-wrap .info-block .info-title {
    font-size: 14px;
    color: #f1b723;
    letter-spacing: -1px;
  }
  #faq .contact-wrap .info-block .info-tel {
    padding: 3px 0;
  }
  #faq .contact-wrap .info-block .time-text {
    font-size: 12px;
    color: #fff;
    text-align: center;
    letter-spacing: .5px;
  }
}
@media screen and (min-width: 768px) {
  #faq .faq-wrap .faq-list-wrap {
    padding: 0 60px;
  }
}
@media screen and (max-width: 767px) {
  #faq .faq-wrap .faq-list-wrap .faq-list li {
    min-height: 40px;
    padding: 0 0 0 45px;
  }
  #faq .faq-wrap .faq-list-wrap .faq-list li .faq-list-border {
    display: block;
    border: 1px solid #f1b723;
    padding: 13px 13px 10px;
    border-radius: 8px;
    background: #fff;
  }
  #faq .faq-wrap .faq-list-wrap .faq-list li.ico-q {
    background: url(/img/faq/ico_q_sp.png) left top no-repeat;
    background-size: 40px auto;
  }
  #faq .faq-wrap .faq-list-wrap .faq-list li.ico-q .faq-list-border {
    font-size: 12px;
    font-weight: bold;
    position: relative;
  }
  #faq .faq-wrap .faq-list-wrap .faq-list li.ico-q .faq-list-border:after {
    content: "";
    position: absolute;
    top: 50%;
    bottom: 0;
    margin-top: -7px;
    right: 10px;
    width: 10px;
    height: 10px;
    /*border-right: 2px solid #f1b723;
    border-top: 2px solid #f1b723;*/
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  #faq .faq-wrap .faq-list-wrap .faq-list li.ico-a {
    /*display: none;*/
    background: url(/img/faq/ico_a_sp.png) left top no-repeat;
    background-size: 40px auto;
    margin-top: 10px;
  }
  #faq .faq-wrap .faq-list-wrap .faq-list li.ico-a .faq-list-border {
    font-size: 12px;
    border-color: #004da0;
  }
  #faq .faq-wrap .faq-list-wrap .faq-list li span {
    display: block;
  }
  #faq .faq-wrap .faq-list-wrap .faq-list.is_open li.ico-q .faq-list-border:after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-top: -0px;
  }
  #faq .faq-wrap .faq-list-wrap .faq-list.is_open li.ico-a {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  #faq .faq-wrap .faq-list-wrap .faq-list {
    margin-bottom: 40px;
  }
  #faq .faq-wrap .faq-list-wrap .faq-list li {
    min-height: 70px;
    padding: 0 0 0 90px;
  }
  #faq .faq-wrap .faq-list-wrap .faq-list li .faq-list-border {
    display: block;
    border: 2px solid #f1b723;
    padding: 25px 35px 20px;
    border-radius: 8px;
    background: #fff;
  }
  #faq .faq-wrap .faq-list-wrap .faq-list li.ico-q {
    background: url(/img/faq/ico_q_pc.png) left top no-repeat;
    background-size: auto;
  }
  #faq .faq-wrap .faq-list-wrap .faq-list li.ico-q .faq-list-border {
    font-size: 16px;
    font-weight: bold;
  }
  #faq .faq-wrap .faq-list-wrap .faq-list li.ico-a {
    background: url(/img/faq/ico_a_pc.png) left top no-repeat;
    background-size: auto;
    margin-top: 20px;
  }
  #faq .faq-wrap .faq-list-wrap .faq-list li.ico-a .faq-list-border {
    font-size: 14px;
    border-color: #004da0;
  }
  #faq .faq-wrap .faq-list-wrap .faq-list li span {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  #faq .concept-wrap .lead-text {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  #faq .concept-wrap .concept-description-list-wrap .heading {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  #faq .concept-wrap .concept-description-list-wrap .heading span {
    font-size: 14px;
    width: 240px;
    height: 25px;
    line-height: 28px;
    border-radius: 12.5px;
  }
}
@media screen and (max-width: 767px) {
  #faq .concept-wrap .concept-description-list-wrap .descrription-list li {
    width: 100%;
    float: none;
    border-radius: 4px;
    padding: 15px 4.47761%;
  }
}
@media screen and (max-width: 767px) {
  #faq .concept-wrap .concept-description-list-wrap .descrription-list li:not(:last-child) {
    margin: 0 0 20px;
  }
}
@media screen and (max-width: 768px) {
  #faq .method-wrap .content-inner:before {
    background-image: url(/img/course/sp/about_flag_001.png);
    top: -35px;
    left: -5px;
    width: 103px;
    height: 60px;
    background-size: contain;
  }
}
@media screen and (max-width: 768px) {
  #faq .method-wrap .content-inner:after {
    background-image: url(/img/course/sp/about_flag_002.png);
    top: -35px;
    right: -5px;
    width: 103px;
    height: 60px;
    background-size: contain;
  }
}
@media screen and (max-width: 768px) {
  #faq .method-wrap .method-list-wrap {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  #faq .method-wrap .method-list-wrap .method-list li .text-wrap {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #faq .method-wrap .method-list-wrap .method-list li .text-wrap .list-heading-wrap {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 768px) {
  #faq .method-wrap .method-list-wrap .method-list li .text-wrap .list-heading-wrap .icon {
    width: 60px;
    box-sizing: content-box;
  }
}
@media screen and (max-width: 768px) {
  #faq .method-wrap .method-list-wrap .method-list li .text-wrap .list-heading-wrap .heading {
    font-size: 15px;
    line-height: 1.6;
  }
}
@media screen and (max-width: 768px) {
  #faq .method-wrap .method-list-wrap .method-list li .text-wrap .text {
    font-size: 15px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 768px) {
  #faq .method-wrap .method-list-wrap .method-list li:nth-of-type(2n-1) .text-wrap {
    float: none;
  }
}
@media screen and (max-width: 768px) {
  #faq .method-wrap .method-list-wrap .method-list li:nth-of-type(2n-1) .list-image {
    float: none;
    display: block;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  #faq .method-wrap .method-list-wrap .method-list li:nth-of-type(2n) .text-wrap {
    float: none;
  }
}
@media screen and (max-width: 768px) {
  #faq .method-wrap .method-list-wrap .method-list li:nth-of-type(2n) .list-image {
    float: none;
    display: block;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  #faq .method-wrap .method-list-wrap .method-list li:not(:last-child) {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  #faq .conversion-middle-area {
    padding: 30px 0 70px;
    overflow: hidden;
    background-image: url(/img/course/sp/about_action-area-bg.png);
  }
}
@media screen and (max-width: 768px) {
  #faq .conversion-middle-area .conversion-title {
    font-size: 15px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 768px) {
  #faq .conversion-middle-area .conversion-text-image {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  #faq .conversion-middle-area .btn-conversion {
    font-size: 12px;
    padding: 9px 20px;
    width: 100%;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  #faq .conversion-middle-area .btn-conversion:after {
    width: 8px;
    height: 8px;
  }
}
@media screen and (max-width: 767px) {
  #faq .conversion-middle-area .btn-conversion span {
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  #faq .conversion-middle-area .image_001 {
    bottom: -80px;
    left: -38px;
    width: 183px;
  }
}
@media screen and (max-width: 768px) {
  #faq .conversion-middle-area .image_002 {
    bottom: -80px;
    right: -9px;
    width: 230px;
  }
}
@media screen and (max-width: 768px) {
  #faq .support-wrap {
    background-image: url(/img/course/sp/about_support-bg.jpg);
  }
}
@media screen and (max-width: 768px) {
  #faq .support-wrap .lead-text {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  #faq .support-wrap .support-list-wrap .support-list li {
    padding: 0;
    box-shadow: rgba(178, 131, 90, 0.4) 2px 2px 0px;
    height: auto;
    width: 47.76119%;
    margin-top: 35px;
  }
}
@media screen and (max-width: 767px) {
  #faq .support-wrap .support-list-wrap .support-list li:not(:last-child) {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  #faq .support-wrap .support-list-wrap .support-list li:nth-of-type(2n - 1) {
    float: left;
  }
  #faq .support-wrap .support-list-wrap .support-list li:nth-of-type(2n) {
    float: right;
  }
}
@media screen and (max-width: 768px) {
  #faq .support-wrap .support-list-wrap .support-list li:before {
    width: 19px;
    height: 37px;
    top: -20px;
  }
}
@media screen and (max-width: 768px) {
  #faq .support-wrap .support-list-wrap .support-list li img {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  #faq .price-wrap {
    background-size: 275px auto;
  }
}
@media screen and (max-width: 768px) {
  #faq .price-wrap .lead-text {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  #faq .price-wrap .course-heading {
    font-size: 15px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  #faq .price-wrap .course-wrap .course-table.pc {
    display: none;
  }
  #faq .price-wrap .course-wrap .course-table:not(:last-of-type) {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  #faq .price-wrap .course-wrap .course-table.sp {
    display: table;
  }
}
@media screen and (max-width: 767px) {
  #faq .price-wrap .course-wrap .course-table .tb1 {
    width: 24.77612%;
  }
}
@media screen and (max-width: 767px) {
  #faq .price-wrap .course-wrap .course-table thead th, #faq .price-wrap .course-wrap .course-table thead td {
    padding: 8px 0;
  }
}
@media screen and (max-width: 767px) {
  #faq .price-wrap .course-wrap .course-table tbody th, #faq .price-wrap .course-wrap .course-table tbody td {
    padding: 8px 0;
  }
}
@media screen and (min-width: 768px) {
  #faq .price-wrap .course-wrap .course-table tbody tr:first-child th, #faq .price-wrap .course-wrap .course-table tbody tr:first-child td {
    border-top: none;
  }
}
@media screen and (max-width: 767px) {
  #faq .price-wrap .infant-block {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  #faq .price-wrap .infant-block .course-table tbody tr th:first-child {
    background-color: #ed759c;
    color: #fff;
  }
}
@media screen and (max-width: 767px) {
  #faq .price-wrap .primary-school-block {
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 767px) {
  #faq .price-wrap .primary-school-block .course-table tr th:first-child {
    background-color: #33bec9;
    color: #fff;
  }
}
@media screen and (max-width: 767px) {
  #faq .price-wrap .notice-sentence {
    font-size: 11px;
  }
}
@media screen and (max-width: 768px) {
  #faq .float-wrap .left-wrap {
    width: 100%;
    float: none;
  }
}
@media screen and (max-width: 768px) {
  #faq .float-wrap .left-wrap .float-heading {
    font-size: 18px;
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 768px) {
  #faq .float-wrap .left-wrap .text-wrap {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  #faq .float-wrap .right-wrap {
    float: none;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  #faq .float-wrap .right-wrap .point-image {
    width: 229px;
  }
}
@media screen and (max-width: 768px) {
  #faq .point-wrap .button-wrap {
    padding: 20px 0;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  #faq .point-wrap .button-wrap a {
    width: 86.56716%;
    border-radius: 4px;
  }
}
@media screen and (min-width: 768px) {
  #point .m_sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  #point .m_sp {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  #point .m_pc {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  #point .m_pc {
    display: none !important;
  }
}
#point .style__point {
  /*# sourceMappingURL=style.css.map */
  /*追加↓*/
}
#point .style__point #tpointSpace #mainVisBlock {
  background: url(/img/point/mainvis_new.jpg) no-repeat center;
  min-width: 952px;
  height: 410px;
}
#point .style__point #tpointSpace #mainVisBlock .inner {
  padding-bottom: 0;
  padding-right: 0;
}
#point .style__point #tpointSpace #Cont02 {
  width: 100%;
  background: #f2f2f2;
  border-top: 3px solid #f5b6c2;
}
#point .style__point #tpointSpace #Cont02 div.left_space {
  width: 660px;
  float: left;
}
#point .style__point #tpointSpace #Cont02 div.right_space {
  width: 320px;
  float: right;
  line-height: 1;
  text-align: right;
}
#point .style__point #tpointSpace #Cont02 div.inner {
  width: 980px;
  margin: 0 auto;
  padding: 10px 0;
}
#point .style__point #tpointSpace #Cont02 div.left_space p {
  padding-top: 10px;
  font-size: 14px;
}
#point .style__point #tpointSpace #mainContents .outline {
  padding: 0px;
  text-align: center;
}
#point .style__point #tpointSpace #mainContents .outline img {
  display: inline-block;
}
#point .style__point #tpointSpace #mainContents .outline h1 {
  font-size: 24px;
  color: #e60012;
  margin-bottom: 0.3em;
  text-align: center;
  padding-top: 20px;
  font-weight: bold;
}
#point .style__point #tpointSpace #mainContents #Cont01 div.left_space {
  float: left;
  width: 490px;
}
#point .style__point #tpointSpace #mainContents #Cont01 div.right_space {
  float: right;
  width: 490px;
}

#point .style__point #tpointSpace #Cont10 {
  background: url(/img/point/presents.jpg) no-repeat center;
  min-width: 952px;
  height: 335px !important;
}
#point .style__point #tpointSpace #mainContents ul {
  margin: 20px 20px;
}
#point .style__point #tpointSpace #mainContents ul li {
  float: left;
}
#point .style__point #tpointSpace #mainContents #Cont01 {
  padding: 80px 0px 0px;
}
#point .style__point #tpointSpace #mainContents #Cont01 div.right_space p {
  margin-bottom: 15px;
}
#point .style__point #tpointSpace #mainContents #Cont01 div.right_space div.img_space {
  margin-top: 30px;
  text-align: center;
}
#point .style__point #tpointSpace #mainContents #Cont02 {
  padding: 80px 0px 0px;
  margin-top: 20px;
}
#point .style__point #tpointSpace #mainContents #Cont02 div.left_space p {
  margin-bottom: 15px;
}
#point .style__point #tpointSpace #mainContents #Cont02 div.left_space div.btn_space {
  text-align: right;
}
#point .style__point #tpointSpace #mainContents #Cont02 div.left_space div.btn_space img {
  vertical-align: bottom;
}
#point .style__point #tpointSpace #mainContents #Cont02 div.right_space {
  width: 300px;
  float: right;
}

#point .style__point #tpointSpace #mainContents #Cont03 div.left_space {
  float: left;
  width: 540px;
}
#point .style__point #tpointSpace #mainContents #Cont03 div.left_space dl {
  padding: 10px 0px 10px 45px;
  line-height: 1.0;
}
#point .style__point #tpointSpace #mainContents #Cont03 div.left_space dl dt {
  margin-bottom: 5px;
  color: #00aa84;
  font-weight: bold;
}

#point .style__point #tpointSpace #mainContents #Cont03 div.left_space p {
  font-size: 12px;
  margin-top: 5px;
}
#point .style__point #tpointSpace #mainContents #Cont03 div.right_space {
  padding-right: 40px;
  float: right;
  width: 280px;
}
#point .style__point #tpointSpace #mainContents #Cont03 div.right_space div.bnrBlock {
  padding: 10px 5px;
  border: solid 2px #014099;
  text-align: center;
}
#point .style__point #tpointSpace #mainContents #Cont03 div.right_space p {
  margin: 10px 0px;
  color: #00aa84;
  line-height: 1.5;
}
#point .style__point #tpointSpace #mainContents #Cont03 div.right_space span {
  font-size: 11px;
  line-height: 1.8;
}
#point .style__point #tpointSpace #mainContents #Cont04 {
  margin-top: 50px;
  padding: 80px 0px 40px;
}
#point .style__point #tpointSpace #mainContents #Cont04 div.left_space {
  width: 324px;
  float: left;
}
#point .style__point #tpointSpace #mainContents #Cont04 div.right_space {
  width: 550px;
  float: right;
}
#point .style__point #tpointSpace #mainContents #Cont05 div.left_space {
  margin-top: 20px;
  width: 390px;
  float: left;
}
#point .style__point #tpointSpace #mainContents #Cont05 div.left_space p {
  margin-bottom: 20px;
  color: #00aa84;
}
#point .style__point #tpointSpace #mainContents #Cont05 div.left_space span {
  font-size: 11px;
  line-height: 1.8;
}
#point .style__point #tpointSpace #mainContents #Cont05 div.right_space {
  margin-top: 40px;
  width: 484px;
  float: right;
}
#point .style__point #tpointSpace #mainContents #Cont06 p {
  width: 630px;
  color: #00aa84;
  line-height: 1.6;
}
#point .style__point #tpointSpace #mainContents div.bnr_space {
  margin: 30px 0px;
  text-align: center;
}
#point .style__point #tpointSpace #mainContents h2 {
  background: none;
  padding-left: 0;
}
#point .style__point #tpointSpace #mainContents p {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: left;
}
#point .style__point #tpointSpace #mainContents #Cont01, #point .style__point #tpointSpace #mainContents #Cont02 {
  padding-top: 25px;
}
#point .style__point #tpointSpace #mainContents #Cont04 {
  padding-top: 25px;
}
#point .style__point #tpointSpace #mainContents #Cont04 div.left_space {
  width: 300px;
}
#point .style__point #tpointSpace #mainContents #Cont04 div.right_space {
  width: 574px;
}
#point .style__point #tpointSpace #mainContents #Cont04-inner {
  margin-top: 50px;
  padding: 55px 45px 10px 45px;
  background: url(/img/bg_bn03.png) left top no-repeat;
}
#point .style__point #tpointSpace #mainContents #Cont04-inner ul.goods-list {
  margin: 20px 0 0 0 !important;
  padding: 0 !important;
}
#point .style__point #tpointSpace #mainContents #Cont04-inner ul.goods-list li {
  width: 270px;
  height: 130px;
  margin: 0 10px 15px 0;
  line-height: 1.3em;
}
#point .style__point #tpointSpace #mainContents #Cont04-inner ul.goods-list li p {
  display: block;
  float: left;
  width: 130px;
  height: 130px;
  float: left;
  margin: 0 10px 10px 0;
  border: 1px solid #44caac;
  background: #ffffff;
}
#point .style__point #tpointSpace #mainContents #Cont04-inner ul.goods-list li p.photo img {
  width: 130px;
  height: 130px;
}
#point .style__point #tpointSpace #mainContents #Cont04-inner ul.goods-list li span {
  display: block;
  font-weight: bolder;
  line-height: 1.3em;
  padding: 5px 5px 0 0;
}
#point .style__point #tpointSpace #mainContents .goods-caption {
  text-align: right;
  font-size: 80%;
  margin-right: 40px;
}
#point .style__point .clearfix:after {
  display: block;
  clear: both;
  content: "";
}
#point .style__point #mainVisBlock div.inner {
  text-align: center;
  padding-top: 230px;
}
#point .style__point #tpointSpace #mainContents {
  width: 980px;
  margin: 50px auto;
}
#point .style__point #tpointSpace #mainContents #Cont01 {
  padding-top: 50px;
}
#point .style__point #tpointSpace #mainContents #Cont01 div.right_space2 {
  float: right;
  width: 460px;
}
#point .style__point #tpointSpace #mainContents #Cont10 {
  margin: 50px auto 0;
}
#point .style__point #tpointSpace #mainContents.info {
  padding-top: 50px;
  width: 100%;
  background: #fcf3f5;
  margin-top: 0px;
  padding-bottom: 50px;
  margin-bottom: 0px;
}
#point .style__point #tpointSpace #mainContents .right_space img {
  padding-left: 30px;
}
#point .style__point #tpointSpace #mainContents.info .inner {
  width: 980px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
#point .style__point #tpointSpace #mainContents.info .popImg {
  position: absolute;
  right: 100px;
}
#point .style__point #tpointSpace #mainContents.info .example {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  text-align: center;
  padding: 30px 0 30px 0;
  margin-top: 30px;
}
#point .style__point #tpointSpace #mainContents h2.process {
  font-size: 18px;
  text-align: center;
  padding-top: 20px;
  padding-right: 40px;
}
#point .style__point #tpointSpace #mainContents.info .howto {
  background: #fff;
  padding: 50px 0 20px;
  margin-top: 30px;
}
#point .style__point #tpointSpace #mainContents.info .howto .left_space img {
  padding-left: 60px;
}
#point .style__point #tpointSpace #mainContents #Cont01 div.right_space p {
  margin-bottom: 15px;
  padding-left: 80px;
}
#point .common-point__style {
  padding-top: 20px;
}
#point .common-point__style .imgBlock {
  text-align: center;
  padding: 20px;
}
#point .common-point__style p {
  padding: 0px 20px 30px;
}
#point .pc_mt50 {
  margin-top: 50px;
}
#point .m_pc_bg-white {
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  #point .style__point #tpointSpace #mainVisBlock {
    background: none;
    width: 100%;
    min-width: auto;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  #point .style__point #tpointSpace #Cont02 div.left_space {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  #point .style__point #tpointSpace #Cont02 div.right_space {
    width: 100%;
  }
  #point .style__point #tpointSpace #Cont02 div.right_space img {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  #point .style__point #tpointSpace #Cont02 div.inner {
    width: 100%;
    padding: 10px;
  }
}
@media screen and (max-width: 767px) {
  #point .style__point #tpointSpace #Cont02 div.left_space p {
    padding: 0;
    margin-bottom: 10px;
    font-size: 10px;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  #point .style__point #tpointSpace #mainContents .outline h1 {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  #point .style__point #tpointSpace #mainContents #Cont01 div.left_space {
    float: none;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  #point .style__point #tpointSpace #mainContents #Cont01 div.right_space {
    float: none;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  #point .style__point #tpointSpace #mainContents h2 {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  #point .style__point #tpointSpace #mainContents h2 {
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  #point .style__point #tpointSpace #mainContents p {
    font-size: 15px;
    line-height: 1.6;
  }
}
@media screen and (max-width: 767px) {
  #point .style__point #tpointSpace #mainContents #Cont01 {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  #point .style__point #tpointSpace #mainContents #Cont01 div.right_space2 {
    width: 100%;
    float: none;
  }
}
@media screen and (max-width: 767px) {
  #point .style__point #tpointSpace #mainContents.info {
    padding: 20px;
  }
}
@media screen and (max-width: 767px) {
  #point .style__point #tpointSpace #mainContents .right_space img {
    padding: 20px 0 20px;
  }
}
@media screen and (max-width: 767px) {
  #point .style__point #tpointSpace #mainContents.info .inner {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  #point .style__point #tpointSpace #mainContents {
    width: 100%;
    padding: 20px;
    margin: 0;
  }
}
@media screen and (max-width: 767px) {
  #point .style__point #tpointSpace #mainContents.info .howto {
    background-color: transparent;
    padding: 0;
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  #point .style__point #tpointSpace #mainContents.info .howto .left_space img {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  #point .style__point #tpointSpace #mainContents #Cont01 div.right_space p {
    padding-left: 0;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  #point .pc_mt50 {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  #point .m_pc_bg-white {
    background-color: transparent;
  }
}
.m-head {
  padding: 30px 0 20px;
  background: #f1b723;
  text-align: center;
}
.m-block__inner {
  width: 980px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .m-block__inner {
    width: calc(100% - 50px);
    margin: 0 auto;
  }
}
.sitemap-title h2 {
  font-size: 20px;
  font-weight: bold;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .sitemap-title h2 {
    font-size: 18px;
  }
}
.sitemap {
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .sitemap {
    padding-bottom: 50px;
    padding-top: 15px;
  }
}
.sitemap__boxTtl {
  padding-top: 60px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .sitemap__boxTtl {
    padding-top: 15px;
  }
}
.sitemap__boxTtl h3 {
  font-size: 20px;
  font-weight: bold;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .sitemap__boxTtl h3 {
    line-height: 2;
  }
}
.sitemap__boxTtl:before, .sitemap__boxTtl:after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  position: absolute;
}
.sitemap__boxTtl:before {
  background: #f1b723;
  width: 5.10204%;
  bottom: -3px;
  left: 0;
  z-index: 2;
}
.sitemap__boxTtl:after {
  background: #cbcbcb;
}
.sitemap__listsTtl {
  margin-top: 30px;
  margin-left: 30px;
  display: flex;
}
.sitemap__listsTtl.seasonal-list {
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .sitemap__listsTtl {
    margin-top: 15px;
    margin-left: 0px;
    display: block;
  }
}
.sitemap__listsTtl li {
  color: #333333;
  font-size: 16px;
  font-weight: bold;
}
.sitemap__listsTtl.seasonal-list li {
  width: 250px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .sitemap__listsTtl li {
    margin-bottom: 15px;
    font-size: 14px;
  }
}
.sitemap__listsTtl li a {
  display: inline-block;
  line-height: 1.2;
  text-decoration: underline;
  padding: 3px 30px 3px 10px;
  color: #004da0;
  border-left: 3px solid #f1b723;
}
.sitemap__listsTtl li span {
  color: #333333;
  text-align: justify;
  padding: 3px 30px 3px 10px;
  border-left: 3px solid #f1b723;
}
.sitemap__listsTtl--sub {
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .sitemap__listsTtl--sub {
    margin-top: 15px;
  }
}
.sitemap__listsTtl--sub li {
  position: relative;
}
.sitemap__listsTtl--sub li a {
  border-left: none;
  padding-left: 15px;
}
@media screen and (max-width: 767px) {
  .sitemap__listsTtl--sub li a {
    padding-left: 30px;
    font-size: 12px;
  }
}
.sitemap__listsTtl--sub li a:before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  position: absolute;
  left: -2px;
  top: 10px;
  border-top: 2px solid #004da0;
  border-right: 2px solid #004da0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .sitemap__listsTtl--sub li a:before {
    left: 15px;
    top: 10px;
    margin-top: -3px;
  }
}
.sp-nav-btn--menu {
  bottom: -7px;
  background: #fff !important;
}
/*20191213*/

.ls15 {
  letter-spacing: 15px;
}
.alignCenter {
  text-align: center;
}
@media screen and (max-width: 767px) {
  #perapera .text .txt {
    margin-bottom: 20px;
  }
}
