.pagelink {
  padding: 1em 0 0em;
  position: relative;
}
.pagelink ul {
  width: 95%;
  margin: 0em auto 0;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: space-between;
}
.pagelink ul li {
  margin: 1em 5px 0em;
  width: calc(100% / 2 - 10px);
}
.pagelink ul li a {
  /*矢印の基点とするためrelativeを指定*/
  position: relative;
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  background: #30BDDE;
  color: #fff !important;
  padding: 10px 0px;
  width: 100%;
  border-radius: 25px;
  text-align: center;
  outline: none;
  /*アニメーションの指定*/
  transition: ease .2s;
}
.pagelink ul li a:hover {
  background: #EDF7F8;
  color: #30BDDE !important;
}
.pagelink ul li a::after {
  content: '\f078';
  font-family: FontAwesome;
  font-weight: 400;
  color: #30BDDE;
  font-size: 1rem;
  position: absolute;
  top: 50%;
  -ms-transform: translate(0%, -50%);
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  right: 5px;
  width: 17px;
  height: 17px;
  background: #fff;
  border-radius: 50%;
  transition: all .3s;
}
/*hoverした際の移動*/
.pagelink ul li a:hover::after {
  top: 52%;
}
.foreigner_ttl {
  width: 90%;
  margin: auto;
}
.foreigner_ttl h2 {
  color: #30BDDE;
  font-size: 1.8rem;
  letter-spacing: 2px;
  line-height: 1.5;
}
.foreigner_ttl h2 span {
  display: inline-block;
}
.foreigner_ttl p {
  margin: 0.5em auto 0;
  font-size: 1.4rem;
}
.foreigner_ttl p span {
  display: inline-block;
}
/* method */
#method01, #method02, #method03, #method04 {
  margin-top: -70px;
  padding-top: 70px;
  z-index: -1;
}
.method_bg {
  padding: 3em 0;
}
.method_link {
  width: 80%;
  margin: auto;
}
.method_link li {
  position: relative;
  overflow: hidden;
  margin: 1em auto 0;
  background: #EDF7F8;
  border-radius: 10px;
  padding: 40px 0 20px;
  counter-increment: mycounter;
}
.method_link li:first-child {
  background: #30BDDE;
  color: #EDF7F8;
}
.method_link li:first-child::before {
  background: #EDF7F8;
  color: #30BDDE;
}
.method_link li::before {
  position: absolute;
  top: 10px;
  left: calc(50% - 12px);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  line-height: 28px;
  background: #30BDDE;
  color: #fff;
  font-family: 'metropolis', sans-serif;
  font-weight: 700;
  font-size: 13px;
  content: counter(mycounter, decimal-leading-zero);
}
.ribbon {
  position: absolute;
  top: 30px;
  left: -55px;
  width: 200px;
  text-align: center;
  background: #FFEF33;
  color: #30BDDE;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 6px 0;
  transform: rotate(-45deg);
}
.method_link li:first-child div {
  color: #EDF7F8;
}
.method_link li div {
  color: #30BDDE;
  font-weight: bold;
  font-size: 1.6rem;
  margin: 0 auto 0.5em;
}
.method_link li img {
  width: 120px;
}
.method_link li p {
  margin: 0.5em auto 1em;
}
.method_link li p span {
  display: inline-block;
}
.method_link li a {
  position: relative;
  text-decoration: none;
  display: inline-block;
  background: #30BDDE;
  color: #fff !important;
  padding: 10px 40px;
  border-radius: 25px;
  text-align: center;
  outline: none;
  transition: ease .2s;
}
.method_link li a:hover {
  background: #fff;
  color: #30BDDE !important;
}
.method_link li a::after {
  content: '\f078';
  font-family: FontAwesome;
  font-weight: 400;
  color: #30BDDE;
  font-size: 1rem;
  position: absolute;
  top: 50%;
  -ms-transform: translate(0%, -50%);
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  right: 10px;
  width: 17px;
  height: 17px;
  background: #fff;
  border-radius: 50%;
  transition: all .3s;
}
.method_link li a:hover::after {
  top: 52%;
}
.method_link li:first-child a {
  background: #EDF7F8;
  color: #30BDDE !important;
}
.method_link li:first-child a:hover {
  background: #fff;
  color: #30BDDE !important;
}
.method_link li:first-child a::after {
  background: #30BDDE;
  color: #fff;
}
.method {}
.method > li {
  position: relative;
  counter-increment: mycounter;
  margin: 3em auto 0;
}
.method > li::before {
  position: absolute;
  z-index: 1;
  top: -12px;
  left: 50%;
  transform: translate(-50%, 0%);
  content: counter(mycounter, decimal-leading-zero);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  line-height: 28px;
  background: #30BDDE;
  color: #fff;
  font-family: 'metropolis', sans-serif;
  font-weight: 700;
  font-size: 13px;
}
.method_ttl {
  position: relative;
  background: #EDF7F8;
  padding: 20px 0;
  font-weight: bold;
  letter-spacing: 2px;
  font-size: 1.7rem;
  color: #208AD8;
}
.method > li > p {
  width: 80%;
  margin: 1em auto 0;
  text-align: left;
}
.method > li a {
  position: relative;
  text-decoration: none;
  display: inline-block;
  background: #30BDDE;
  color: #fff !important;
  padding: 10px 40px;
  border-radius: 25px;
  text-align: center;
  outline: none;
  transition: ease .2s;
  margin: 1.5em auto 0;
}
.method > li a:hover {
  background: #EDF7F8;
  color: #30BDDE !important;
}
.method > li a::after {
  content: '\f078';
  font-family: FontAwesome;
  font-weight: 400;
  color: #30BDDE;
  font-size: 1rem;
  position: absolute;
  top: 50%;
  -ms-transform: translate(0%, -50%);
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  right: 10px;
  width: 17px;
  height: 17px;
  background: #fff;
  border-radius: 50%;
  transition: all .3s;
}
.method > li a:hover::after {
  top: 52%;
}
.method_list_ttl {
  width: 80%;
  margin: 1.5em auto 0.5em;
  text-align: left;
  color: #30BDDE;
  font-weight: bold;
  font-size: 1.5rem;
  border-bottom: 1px solid #30BDDE;
  padding: 0 0 5px;
}
.method_list {
  width: 80%;
  margin: auto;
  text-align: left;
}
.method_list li {
  position: relative;
  padding: 3px 0 3px 25px;
  font-weight: bold;
  counter-increment: methodcounter;
}
.method_list li span {
  display: inline-block;
  margin: 0.5em auto 0;
  font-weight: 300;
  font-size: 1.2rem;
}
.method_list li::before {
  position: absolute;
  z-index: 1;
  top: 5px;
  left: 0%;
  content: counter(methodcounter, decimal);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  line-height: 18px;
  text-align: center;
  background: #30BDDE;
  color: #fff;
  font-family: 'metropolis', sans-serif;
  font-weight: 700;
  font-size: 10px;
}
.method_list_txt {
  color: #FF0000;
}
/* about */
.about_bg {
  padding: 3em 0 4em;
  background: #B6EAF0;
  position: relative;
}
.about_bg h2 {
  font-weight: 300;
  font-size: 1.4rem;
}
.about_bg h2 span {
  display: block;
  color: #fff;
  font-family: 'metropolis', sans-serif;
  font-weight: 700;
  font-size: 3.0rem;
  letter-spacing: 4px;
  line-height: 1;
}
.about {
  position: relative;
  z-index: 10;
  width: 80%;
  margin: 0 auto 1em;
}
.about li {
  background: #fff;
  padding: 15px;
  margin: 1em auto 0;
  border-radius: 10px;
}
.about li div {
  margin: 0 auto 0.5em;
  font-weight: bold;
}
.about li div span {
  display: block;
  color: #30BDDE;
  font-size: 1.8rem;
  letter-spacing: 2px;
}
.about li p {
  text-align: left;
  margin: 1em auto 0;
}
.about li p span {
  font-weight: bold;
}
.about_btn {
  margin: 2em auto 3em;
}
.about_btn a {
  /*矢印の基点とするためrelativeを指定*/
  position: relative;
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  background: #30BDDE;
  color: #fff !important;
  padding: 12px 53px 12px 43px;
  border-radius: 25px;
  text-align: center;
  outline: none;
  letter-spacing: 2px;
  /*アニメーションの指定*/
  transition: ease .2s;
}
.about_btn a:hover {
  background: #FFEF33;
  color: #30BDDE !important;
}
.about_btn a::after {
  content: '\f054';
  font-family: FontAwesome;
  font-weight: 400;
  color: #30BDDE;
  font-size: 1rem;
  position: absolute;
  top: 50%;
  -ms-transform: translate(0%, -50%);
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  right: 10px;
  width: 17px;
  height: 17px;
  background: #fff;
  border-radius: 50%;
  transition: all .3s;
}
.about_btn a:hover::after {
  right: 5px;
  background: #30BDDE;
  color: #fff;
}
.variation_wrap {
  width: 90%;
  margin: 0 auto 3em;
  position: relative;
  padding: 30px 0 30px;
  background: #fff;
  border-radius: 20px;
}
.variation_wrap::before {
  position: absolute;
  content: '';
  top: -15px;
  left: 50%;
  -ms-transform: translate(-50%, 0%);
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  display: block;
  width: 40px; /*幅*/
  height: 40px;
  background-image: url("/img/common/hamappi.webp");
  background-size: contain;
  background-repeat: no-repeat; /*画像を繰り返さない*/
  z-index: 5;
}
.variation_wrap h2 {
  font-weight: 300;
  font-size: 1.4rem;
}
.variation_wrap h2 span {
  display: block;
  color: #30BDDE;
  font-family: 'metropolis', sans-serif;
  font-weight: 700;
  font-size: 3.0rem;
  letter-spacing: 4px;
  line-height: 1;
}
.variation {
  width: 95%;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0em auto 0em;
  justify-content: flex-start;
}
.variation li {
  margin: 1.5em 8px 0em;
  width: calc(100% / 2 - 16px);
}
.variation li p {
  font-weight: bold;
  font-size: 1.4rem;
  margin: 5px auto 0;
}
.variation ul {
  width: 100%;
}
.variation ul li {
  margin: 5px auto 0;
  width: 90%;
}
.variation a {
  /*矢印の基点とするためrelativeを指定*/
  position: relative;
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  background: #208AD8;
  color: #fff !important;
  padding: 6px 10px 6px 0px;
  width: 100%;
  font-size: 1.3rem;
  border-radius: 25px;
  text-align: center;
  outline: none;
  letter-spacing: 2px;
  /*アニメーションの指定*/
  transition: ease .2s;
}
.variation a:hover {
  background: #EFF9FA;
  color: #208AD8 !important;
}
.variation a::after {
  content: '\f054';
  font-family: FontAwesome;
  font-weight: 400;
  color: #208AD8;
  font-size: 1rem;
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 50%;
  -ms-transform: translate(0%, -50%);
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  right: 10px;
  /*矢印の形状*/
  width: 17px;
  height: 17px;
  background: #fff;
  border-radius: 50%;
  /*アニメーションの指定*/
  transition: all .3s;
}
/*hoverした際の移動*/
.variation a:hover::after {
  right: 5px;
  background: #208AD8;
  color: #fff;
}
.variation a.commute {
  background: #1FD07E;
}
.variation a.commute:hover {
  background: #EFFAF2;
  color: #1FD07E !important;
}
.variation a.commute::after {
  color: #1FD07E;
}
.variation a.commute:hover::after {
  background: #1FD07E;
  color: #fff;
}
.variation_special {
  width: 80%;
  margin: 2em auto 0;
  background: #fff;
  border: 1px solid #000;
  border-radius: 10px;
}
.variation_special_img {}
.variation_special_img img {
  border-radius: 10px 10px 0 0;
}
.variation_special_txt {
  padding: 15px;
  text-align: left;
}
.variation_special_txt p {
  font-weight: bold;
}
.variation_special_txt p span {
  display: block;
  color: #30BDDE;
  font-size: 1.7rem;
  letter-spacing: 2px;
  margin: 0 auto 3px;
}
.variation_special_txt ul {
  margin: 2em auto 0;
}
.variation_special_txt ul li {
  margin: 10px auto 0;
}
.variation_special a {
  /*矢印の基点とするためrelativeを指定*/
  position: relative;
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  background: #208AD8;
  color: #fff !important;
  padding: 6px 0px;
  width: 100%;
  font-size: 1.3rem;
  border-radius: 25px;
  text-align: center;
  outline: none;
  letter-spacing: 2px;
  /*アニメーションの指定*/
  transition: ease .2s;
}
.variation_special a:hover {
  background: #EFF9FA;
  color: #208AD8 !important;
}
.variation_special a::after {
  content: '\f054';
  font-family: FontAwesome;
  font-weight: 400;
  color: #208AD8;
  font-size: 1rem;
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 50%;
  -ms-transform: translate(0%, -50%);
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  right: 10px;
  /*矢印の形状*/
  width: 17px;
  height: 17px;
  background: #fff;
  border-radius: 50%;
  /*アニメーションの指定*/
  transition: all .3s;
}
/*hoverした際の移動*/
.variation_special a:hover::after {
  right: 5px;
  background: #208AD8;
  color: #fff;
}
.variation_special a.commute {
  background: #1FD07E;
}
.variation_special a.commute:hover {
  background: #EFFAF2;
  color: #1FD07E !important;
}
.variation_special a.commute::after {
  color: #1FD07E;
}
.variation_special a.commute:hover::after {
  background: #1FD07E;
  color: #fff;
}
.course_wrap {
  width: 90%;
  margin: 5em auto 2em;
}
.course_ {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.course_::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: #FFEF33;
  border-radius: 30px;
  top: 10px;
  left: 10px;
  z-index: -1;
}
.course {
  position: relative;
  margin: 3em auto 0;
  background: #EFF9FA;
  padding: 0 0 50px;
  border-radius: 30px;
}
.course.school {
  background: #EFFAF2;
  margin: 7em auto 0;
}
.course::before {
  position: absolute;
  content: '';
  top: -45px;
  left: 50%;
  -ms-transform: translate(-50%, 0%);
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  display: block;
  width: 50px; /*幅*/
  height: 50px;
  background-image: url("/img/common/icon_camp.webp");
  background-size: contain;
  background-repeat: no-repeat; /*画像を繰り返さない*/
}
.course.school::before {
  background-image: url("/img/common/icon_school.webp");
}
.course_ttl {
  display: inline-block;
  background: #208AD8;
  color: #fff;
  font-weight: bold;
  letter-spacing: 3px;
  padding: 3px 30px;
  border-radius: 0 0 10px 10px;
  border-bottom: 1px solid #000;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  font-size: 2rem;
  margin: 0 auto 0.5em;
}
.course.school .course_ttl {
  background: #1FD07E;
}
.course_txt {
  width: 90%;
  margin: 0 auto 5px;
  line-height: 1.8;
  font-size: 1.4rem;
  border-bottom: 1px solid #208AD8;
  padding: 0 0 5px;
}
.course_txt span {
  display: block;
  font-weight: bold;
  letter-spacing: 2px;
  font-size: 2.3rem;
  line-height: 1.4;
  color: #208AD8;
}
.course.school .course_txt {
  border-bottom: 1px solid #1FD07E;
}
.course.school .course_txt span {
  color: #1FD07E;
}
.course_day {
  font-weight: bold;
  font-size: 1.7rem;
}
.course_day span {
  font-size: 2.5rem;
  color: #208AD8;
  padding: 0 3px;
}
.course.school .course_day span {
  color: #1FD07E;
}
.course_price {
  font-weight: bold;
  color: #208AD8;
  font-size: 2rem;
}
.course_price span {
  font-family: 'metropolis', sans-serif;
  font-weight: 700;
  font-size: 4.0rem;
  line-height: 1;
  padding: 0 5px 0 0;
  letter-spacing: 1px;
}
.course_price rt {
  color: #333;
  text-align: center;
  margin: 0 0 -2px -1px;
}
.course.school .course_price {
  color: #1FD07E;
}
.course_point {
  width: 90%;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0em auto 0em;
  justify-content: center;
}
.course_point li {
  margin: 1em 8px 0em;
  width: calc(100% / 2 - 16px);
  background: #fff;
  border-radius: 10px;
  border: 1px solid #000;
  box-sizing: border-box;
  height: 100px;
  position: relative;
}
.course_point li::before {
  position: absolute;
  top: 0%;
  left: 50%;
  -ms-transform: translate(-50%, 0%);
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  background: #208AD8;
  color: #fff;
  font-family: 'metropolis', sans-serif;
  font-weight: 700;
  padding: 2px 0px;
  width: 90px;
  border-radius: 0 0 5px 5px;
  font-size: 1rem;
}
.course.school .course_point li::before {
  background: #1FD07E;
}
.course_point li:nth-child(1)::before {
  content: 'Point 01';
}
.course_point li:nth-child(2)::before {
  content: 'Point 02';
}
.course_point li:nth-child(3)::before {
  content: 'Point 03';
}
.course_point li p {
  position: absolute;
  width: 100%;
  top: 58%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.course_btn {
  position: absolute;
  bottom: -20px;
  left: 50%;
  -ms-transform: translate(-50%, 0%);
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  width: 100%;
}
.course_btn a {
  /*矢印の基点とするためrelativeを指定*/
  position: relative;
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  background: #208AD8;
  color: #fff !important;
  padding: 12px 53px 12px 43px;
  border-radius: 25px;
  text-align: center;
  outline: none;
  letter-spacing: 2px;
  /*アニメーションの指定*/
  transition: ease .2s;
}
.course_btn a:hover {
  background: #fff;
  color: #208AD8 !important;
}
.course_btn a::after {
  content: '\f054';
  font-family: FontAwesome;
  font-weight: 400;
  color: #208AD8;
  font-size: 1rem;
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 50%;
  -ms-transform: translate(0%, -50%);
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  right: 10px;
  /*矢印の形状*/
  width: 17px;
  height: 17px;
  background: #fff;
  border-radius: 50%;
  /*アニメーションの指定*/
  transition: all .3s;
}
/*hoverした際の移動*/
.course_btn a:hover::after {
  right: 5px;
  background: #208AD8;
  color: #fff;
}
.course.school .course_btn a {
  background: #1FD07E;
}
.course.school .course_btn a:hover {
  background: #fff;
  color: #1FD07E !important;
}
.course.school .course_btn a::after {
  color: #1FD07E;
}
.course.school .course_btn a:hover::after {
  background: #1FD07E;
  color: #fff;
}
/* info */
.info_bg {
  padding: 3em 0;
}
.info_wrap {
  width: 85%;
  margin: auto;
}
.info_ttl {
  margin: 2em auto 0;
}
.info_ttl h3 {
  position: relative;
  font-size: 1.6rem;
  letter-spacing: 2px;
}
.info_ttl h3:before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 1px;
  content: '';
  background: #30BDDE;
}
.info_ttl h3 span {
  position: relative;
  padding: 0 1.5em;
  background: #fff;
}
.info_ttl p {
  text-align: left;
  margin: 0.5em auto 0;
}
.info_ttl p span {
  color: #FF0000;
}
.info_lang {
  width: calc(100% + 10px);
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 1em auto 0em -5px;
  justify-content: space-between;
}
.info_lang li {
  margin: 0.5em 5px 0em;
  width: calc(100% / 2 - 10px);
  background: #EDF7F8;
  border-radius: 5px;
  padding: 10px 0;
  font-weight: bold;
}
.flow {}
.flow li {
  position: relative;
  margin: 2.5em auto 0;
}
.flow li:first-child {
  margin: 1em auto 0;
}
.flow li::after {
  position: absolute;
  bottom: -30px;
  left: 50%;
  -ms-transform: translate(-50%, 0%);
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  content: '\f0d7';
  font-family: FontAwesome;
  font-weight: 400;
  font-size: 2.0rem;
  color: #30BDDE;
}
.flow li:last-child::after {
  display: none;
}
.flow_ttl {
  background: #30BDDE;
  color: #fff;
  font-weight: bold;
  font-size: 1.6rem;
  position: relative;
  border-radius: 50px;
  margin: 0 auto 0.5em;
  padding: 8px 0;
}
.flow_contents {
  text-align: left;
  background: #EDF7F8;
  border-radius: 10px;
  padding: 20px;
}
.flow_contents p {}
.flow_no {
  position: absolute;
  top: 50%;
  left: 5px;
  -ms-transform: translate(0%, -50%);
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  color: #30BDDE;
  font-family: 'metropolis', sans-serif;
  font-weight: 700;
}
.flow_no span {
  position: absolute;
  display: inline-block;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 30px;
  line-height: 30px;
  text-align: center;
}
.flow_time {
  background: #fff;
  border-radius: 5px;
  font-weight: bold;
  padding: 10px 15px;
  margin: 10px auto 0;
  text-align: center;
}
.flow_time span {
  display: block;
  color: #30BDDE;
  padding: 0 10px 0 0;
}
.payment {
  border: 1px solid #000;
  border-collapse: collapse;
  margin: 1em auto 4em;
  text-align: left;
}
.payment td {
  border: 1px solid #000;
  padding: 10px;
  font-size: 1.2rem;
}
.payment th {
  border: 1px solid #000;
  padding: 0 10px;
  width: 110px;
  background: #B6EAF0;
  font-size: 1.3rem;
}
.payment td img {
  margin: 0.5em auto 0;
}
.info_btn {
  margin: 0 auto 3em;
}
.info_btn li {
  margin: 1em auto 0;
}
.info_btn a {
  /*影の基点とするためrelativeを指定*/
  position: relative;
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  text-align: center;
  background: transparent;
  border-radius: 25px;
  width: 100%;
  outline: none;
  font-weight: bold;
  /*アニメーションの指定*/
  transition: all 0.2s ease;
}
.info_btn a div {
  display: inline-block;
  padding: 5px;
  background: #fff;
  border-radius: 30px;
  margin: 0 10px 0 0;
}
.info_btn a div img {
  width: 20px;
}
.info_btn a:hover div img {
  filter: hue-rotate(48deg) invert(100%) saturate(140%);
}
.info_btn a:hover.reverse div img {
  filter: brightness(89%) contrast(88%) hue-rotate(31deg) saturate(132%);
}
/*hoverをした後のボタンの形状*/
.info_btn a:hover {
  border-color: transparent;
}
/*ボタンの中のテキスト*/
.info_btn a span {
  position: relative;
  z-index: 2; /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  /*テキストの形状*/
  display: block;
  padding: 10px 0px;
  background: #FD4444;
  border-radius: 25px;
  color: #fff;
  /*アニメーションの指定*/
  transition: all 0.3s ease;
}
.info_btn a.reverse span {
  background: #04D580;
}
.info_btn a.reverse div {
  display: inline-block;
  background: none;
  border-radius: 30px;
  margin: 0 5px 0 0;
  padding: 5px 0 0;
}
.info_btn a.reverse div img {
  width: 25px;
}
/*== 右下に押し込まれる（立体が平面に） */
/*影の設定*/
.info_btn a.pushright::after {
  content: "";
  /*絶対配置で影の位置を決める*/
  position: absolute;
  z-index: -1;
  top: 4px;
  left: 4px;
  /*影の形状*/
  width: 100%;
  height: 100%;
  border-radius: 25px;
  background-color: #208AD8;
}
/*hoverの際にX・Y軸に4pxずらす*/
.info_btn a.pushright:hover span {
  background-color: #208AD8;
  transform: translate(4px, 4px);
}
.item_list {}
.item_list li {
  position: relative;
  margin: 1em auto 0em;
  background: #EDF7F8;
  border-radius: 10px;
  padding: 15px 0 15px;
  counter-increment: mycounter;
}
.item_list li::before {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  line-height: 28px;
  background: #30BDDE;
  color: #fff;
  font-family: 'metropolis', sans-serif;
  font-weight: 700;
  font-size: 13px;
  content: counter(mycounter, decimal-leading-zero);
}
.item_list li div {
  color: #30BDDE;
  font-weight: bold;
  font-size: 1.5rem;
  margin: 0.2em auto 0.3em;
}
.item_list li img {
  width: 70px;
}
.item_list li p span {
  font-size: 0.8em;
  vertical-align: top;
}
.ability {
  position: relative;
  margin: 2.5em auto 0;
  background: #FFEF33;
  border-radius: 10px;
  padding: 30px 20px 20px;
  font-weight: bold;
}
.ability div {
  position: absolute;
  top: -1em;
  left: 50%;
  transform: translate(-50%, 00%);
  display: inline-block;
  padding: 5px 15px;
  border-radius: 10px;
  color: #fff;
  background: #30BDDE;
  font-size: 1.6rem;
  white-space: nowrap;
}
.ability p {
  text-align: left;
  line-height: 1.8;
  font-size: 1.4rem;
}
.ability p span {
  color: #FF0000;
}
.item_note {
  position: relative;
  text-align: left;
  margin: 1em auto 0;
  padding: 0 0 0 30px;
}
.item_note::before {
  position: absolute;
  top: 0;
  left: 0;
  content: '※1';
}
/* ------------------------------------ */
/* ▼PC用デザインとして付け足すデザイン */
/* ------------------------------------ */
@media all and (min-width: 768px) {
  .pagelink {
    padding: 2em 0 0em;
  }
  .pagelink ul {
    width: 90%;
    margin: 0em auto 0;
    max-width: 1000px;
    justify-content: center;
  }
  .pagelink ul li {
    margin: 1em 8px 0em;
    width: calc(100% / 4 - 16px);
  }
  .pagelink ul li a {
    padding: 15px 0px;
    border-radius: 35px;
  }
  .pagelink ul li a::after {
    letter-spacing: 0;
    right: 10px;
  }
  .foreigner_ttl h2 {
    font-size: 2.5rem;
  }
  .foreigner_ttl p {
    font-size: 1.8rem;
  }
  /* method */
  .method_bg {
    padding: 5em 0;
  }
  .method_link {
    width: 90%;
    max-width: 1050px;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0em auto 0em;
    justify-content: space-between;
  }
  .method_link li {
    margin: 1.5em 10px 0em;
    width: calc(100% / 3 - 20px);
    border-radius: 20px;
    padding: 60px 0 25px;
  }
  .method_link li:first-child {
    margin: 1.5em 10px 0em;
    width: calc(100% / 1 - 20px);
  }
  .method_link li::before {
    top: 18px;
    width: 35px;
    height: 35px;
    line-height: 38px;
    font-size: 18px;
  }
  .method_link li:first-child div {
    font-size: 2.5rem;
  }
  .ribbon {
    top: 47px;
    left: -83px;
    width: 300px;
    font-size: 1.6rem;
  }
  .method_link li div {
    font-size: 2.2rem;
    margin: 0 auto 0.5em;
  }
  .method_link li:first-child img {
    width: 180px;
  }
  .method_link li img {
    width: 150px;
  }
  .method_link li:first-child p {
    font-size: 1.9rem;
  }
  .method_link li p {
    margin: 0.5em auto 1em;
    letter-spacing: 2px;
  }
  .method_link li a {
    padding: 10px 70px;
    border-radius: 35px;
  }
  .method_link li a::after {
    letter-spacing: 0;
    right: 10px;
  }
  .method {}
  .method > li {
    margin: 4.5em auto 0;
  }
  .method > li::before {
    top: -17px;
    width: 35px;
    height: 35px;
    line-height: 38px;
    font-size: 18px;
  }
  .method_ttl {
    padding: 30px 0;
    font-size: 2.5rem;
  }
  .method > li > p {
    max-width: 900px;
    margin: 2em auto 0;
  }
  .method > li a {
    padding: 12px 70px;
    border-radius: 35px;
  }
  .method > li a::after {
    letter-spacing: 0;
    right: 10px;
  }
  .method_list_ttl {
    width: 90%;
    max-width: 900px;
    margin: 1.5em auto 0.5em;
    font-size: 1.8rem;
  }
  .method_list {
    width: 90%;
    max-width: 900px;
  }
  .method_list li {
    padding: 3px 0 3px 33px;
    font-size: 1.7rem;
  }
  .method_list li span {
    font-size: 1.4rem;
  }
  .method_list li::before {
    top: 7px;
    width: 23px;
    height: 23px;
    line-height: 23px;
    font-size: 13px;
  }
  .method_list_txt {
    font-size: 1.7rem;
    margin: 0em auto 0.5em !important;
  }
  /* about */
  .about_bg {
    padding: 5em 0 7em;
  }
  .about_bg h2 {
    font-size: 1.7rem;
  }
  .about_bg h2 span {
    font-size: 7.0rem;
  }
  .about {
    width: 90%;
    max-width: 1200px;
    margin: 2em auto 2em;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: space-between;
  }
  .about li {
    margin: 0 10px 0em;
    width: calc(100% / 3 - 80px);
    padding: 30px;
    border-radius: 20px;
  }
  .about li div {
    margin: 0 auto 0.5em;
  }
  .about li div span {
    line-height: 1.6;
    font-size: 2.3rem;
  }
  .about li p {
    line-height: 2;
  }
  .about_btn {
    margin: 2em auto 5em;
  }
  .about_btn a {
    padding: 12px 63px 12px 53px;
    border-radius: 25px;
  }
  .variation_wrap {
    margin: 0 auto 5em;
    padding: 50px 0 60px;
  }
  .variation_wrap::before {
    top: -25px;
    width: 60px;
    height: 60px;
  }
  .variation_wrap h2 {
    font-size: 1.7rem;
  }
  .variation_wrap h2 span {
    font-size: 7.0rem;
  }
  .variation {
    max-width: 1200px;
    margin: 0em auto 0em;
  }
  .variation li {
    margin: 2em 15px 0em;
    width: calc(100% / 3 - 30px);
  }
  .variation li p {
    font-size: 1.7rem;
    letter-spacing: 2px;
  }
  .variation ul {
    width: 95%;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0.5em auto 0em;
    justify-content: center;
  }
  .variation ul li {
    margin: 0 5px;
    width: calc(48% - 10px);
  }
  .variation a {
    padding: 10px 0px;
    font-size: 1.4rem;
    border-radius: 25px;
  }
  .variation_special {
    max-width: 850px;
    margin: 5em auto 0;
    border-radius: 20px;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: space-between;
    align-items: center;
  }
  .variation_special_img {
    width: 45%;
  }
  .variation_special_img img {
    border-radius: 20px 0px 0 20px;
  }
  .variation_special_txt {
    width: calc(55% - 90px);
    padding: 0 45px;
  }
  .variation_special_txt p span {
    font-size: 2.5rem;
  }
  .variation_special_txt ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 1em auto 0em;
    justify-content: space-between;
  }
  .variation_special_txt ul li {
    margin: 0;
    width: 48%;
  }
  .variation_special a {
    padding: 10px 0px;
    font-size: 1.4rem;
    border-radius: 25px;
  }
  .course_wrap {
    width: 90%;
    max-width: 1200px;
    margin: 2em auto 3em;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: space-between;
  }
  .course_ {
    width: 48%;
  }
  .course_::before {
    top: 70px;
    left: -20px;
    width: 90px;
    height: 95px;
  }
  .course_::after {
    height: calc(100% - 90px);
    border-radius: 30px;
    top: 100px;
    left: 10px;
  }
  .course {
    margin: 3em auto 0;
    padding: 0 0 50px;
    border-radius: 30px;
  }
  .course::before {
    top: -60px;
    width: 70px;
    height: 70px;
  }
  .course.school {
    margin: 3em auto 0;
  }
  .course::after {
    top: -110px;
    right: inherit;
    left: 50px;
    width: 160px; /*幅*/
    height: 226px;
  }
  .course.school::after {
    right: 20px;
    left: inherit;
  }
  .course::after {
    position: absolute;
    z-index: -1;
    content: '';
    top: -180px;
    left: 50px;
    width: 160px; /*幅*/
    height: 226px;
    display: block;
    background-image: url("/img/top/cource01.webp");
    background-size: contain;
    background-repeat: no-repeat; /*画像を繰り返さない*/
  }
  .course.school::after {
    top: -170px;
    background-image: url("/img/top/cource02.webp");
    right: 20px;
    left: inherit;
  }
  .course_ttl {
    padding: 3px 50px;
    font-size: 2.5rem;
  }
  .course_txt {
    font-size: 1.5rem;
    letter-spacing: 2px;
    padding: 0 0 10px;
    width: 85%;
  }
  .course_txt span {
    font-size: 3.0rem;
    letter-spacing: 4px;
  }
  .course_day {
    font-size: 2.5rem;
  }
  .course_day span {
    font-size: 4rem;
    line-height: 1.3;
  }
  .course_price {
    font-size: 2.5rem;
    margin: 5px auto 0;
  }
  .course_price span {
    font-size: 6.0rem;
  }
  .course_price rt {
    margin: 0 0 -5px -2px;
  }
  .course_point {
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 1.5em auto 0em;
    justify-content: center;
  }
  .course_point li {
    margin: 0em 8px 0em;
    width: calc(100% / 3 - 16px);
    border-radius: 15px;
    height: 130px;
  }
  .course_point li::before {
    width: 90px;
    font-size: 1.2rem;
  }
  .course_point li p {
    top: 58%;
    line-height: 1.6;
  }
  .course_btn {
    bottom: -30px;
  }
  .course_btn a {
    padding: 12px 63px 12px 53px;
    border-radius: 25px;
  }
  /* info */
  .info_bg {
    padding: 5em 0;
  }
  .info_wrap {
    max-width: 900px;
  }
  .info_ttl {
    margin: 4em auto 0;
  }
  .info_ttl h3 {
    font-size: 2rem;
  }
  .info_ttl h3 span {
    padding: 0 1.5em;
  }
  .info_ttl p {
    text-align: center;
    line-height: 1.8;
    letter-spacing: 2px;
    font-size: 1.7rem;
    margin: 0.5em auto 0;
  }
  .info_lang li {
    width: calc(100% / 4 - 10px);
    border-radius: 10px;
    padding: 15px 0;
  }
  .flow {}
  .flow li {
    margin: 3.5em auto 0;
  }
  .flow li:first-child {
    margin: 1em auto 0;
  }
  .flow li::after {
    bottom: -50px;
    font-size: 3.0rem;
  }
  .flow_ttl {
    letter-spacing: 3px;
    font-size: 2.0rem;
    margin: 0 auto 0.5em;
    padding: 8px 0;
  }
  .flow_contents {
    border-radius: 20px;
    padding: 30px 50px;
  }
  .flow_contents p {
    text-align: center;
    line-height: 2;
  }
  .flow_no {
    left: 6px;
    width: 40px;
    height: 40px;
    letter-spacing: 0;
  }
  .flow_no span {
    width: 40px;
    line-height: 40px;
  }
  .flow_time {
    text-align: center;
    padding: 10px 15px;
    font-size: 1.8rem;
    letter-spacing: 2px;
  }
  .flow_time span {
    display: inline-block;
    padding: 0 20px 0 0;
  }
  .payment {
    width: 100%;
    margin: 2em auto 6em;
  }
  .payment td {
    padding: 18px 15px;
    font-size: 1.4rem;
  }
  .payment th {
    padding: 0 20px;
    width: 130px;
    font-size: 1.5rem;
  }
  .payment td img {
    display: block;
    width: 400px;
    margin: 0.8em auto 0 0;
  }
  .info_btn {
    max-width: 700px;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 1em auto 0em;
    justify-content: space-between;
  }
  .info_btn li {
    margin: 0;
    width: 48%;
  }
  .info_btn a {
    border-radius: 100px;
  }
  .info_btn a.pushright::after {
    border-radius: 100px;
  }
  .info_btn a div {
    padding: 5px;
    border-radius: 30px;
  }
  .info_btn a div img {
    width: 25px;
  }
  .info_btn a.reverse div {
    margin: 0 5px 0 0;
    padding: 4px 0 3px;
  }
  .info_btn a.reverse div img {
    width: 30px;
  }
  .info_btn a span {
    padding: 15px 0px;
    border-radius: 100px;
  }
  .item_list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0em auto 0em;
    justify-content: space-between;
  }
  .item_list li {
    margin: 1.5em 10px 0em;
    width: calc(100% / 2 - 20px);
    border-radius: 20px;
    padding: 20px 0 25px;
  }
  .item_list li::before {
    width: 35px;
    height: 35px;
    line-height: 38px;
    font-size: 18px;
  }
  .item_list li div {
    font-size: 2rem;
    margin: 0.3em auto 0.3em;
  }
  .item_list li img {
    width: 100px;
  }
  .item_list li p {
    letter-spacing: 2px;
  }
  .ability {
    margin: 4em auto 0;
    border-radius: 15px;
    padding: 50px 20px 40px;
  }
  .ability div {
    padding: 5px 30px;
    border-radius: 15px;
    font-size: 2.2rem;
  }
  .ability p {
    text-align: center;
    font-size: 1.8rem;
    letter-spacing: 2px;
  }
  .item_note {
    padding: 0 0 0 45px;
  }
  .item_note::before {
    left: 10px;
  }
}