@charset "UTF-8";
/* 色コード */
/* ============================================ */
/* ブレイクポイント */
/* ============================================ */
/* 画面サイズ表示・非表示 */
/* ============================================ */
.tab-only {
  display: none;
}

.sp {
  display: none;
}

@media screen and (max-width: 1024px) {
  .pc {
    display: none;
  }
  .tab {
    display: block;
  }
  .tab-only {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .tab {
    display: none;
  }
  .tab-only {
    display: none;
  }
  .sp {
    display: block;
  }
}

/* 共通設定 */
/* ============================================ */
html {
  font-size: 62.5%;
}

@media screen and (max-width: 1024px) {
  html {
    font-size: 55%;
  }
}

@media screen and (max-width: 767px) {
  html {
    font-size: 45%;
  }

  .flow_btn{
    width: 100%;
    max-width: 50vw;
    bottom: 10%;
    right: 0%;
    position: fixed;
  }
}


@media(min-width:500px){
   .flow_btn{
    width: 100%;
    max-width: 225px;
    bottom: 10%;
    right: 0%;
    position: fixed;
  }
}

@media(min-width:700px){
.flow_btn{
  width: 100%;
  max-width: 300px;
  bottom: 10%;
  right: 0%;
  position: fixed;
}
}

@media(min-width:900px){
.flow_btn{
  display: none;
}
}

@media (min-width: 1000px){
.sp {
    display: none!important;
}
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.05rem;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

h1 {
  width: 1px;
  height: 1px;
  overflow: hidden;
  visibility: hidden;
  position: absolute;
}

h2.sub_title {
  font-size: 2.6rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background-color: #006F4F;
  padding: 8px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 60px;
  position: relative;
}

h2.sub_title:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -60px;
  border-style: solid;
  border-color: #006F4F transparent transparent transparent;
  border-width: 20px 25px 20px 25px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

a {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

a:hover {
  opacity: .7;
}

img {
  width: 100%;
}

.accent {
  color: #ED6C00;
}

.contact_btn {
  width: 65%;
  margin: 0 auto;
}

/* レスポンシブ */
/* ============================================ */
@media screen and (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }
}

@media screen and (max-width: 767px) {
  .container {
    padding: 0 15px;
  }
  h2.sub_title {
    margin-bottom: 40px;
  }
  .contact_btn {
    width: 100%;
  }
}

/* ai */
/* ============================================ */
.ai {
  padding: 0 0 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.ai .main_text {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  color: #6EB52C;
  margin-bottom: 40px;
}

.ai .main_text span {
  font-size: 3.2rem;
}

.ai .sub_text {
  font-weight: 700;
  line-height: 1.8;
  padding: 30px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 60px;
  border-top: 2px solid #6EB52C;
  border-bottom: 2px solid #6EB52C;
}

.ai .slider_title {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  color: #006F4F;
  margin-bottom: 20px;
}

.ai .slider_title span {
  font-weight: normal;
  vertical-align: top;
}

.ai .slider_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 2000px;
  margin: 0 auto;
  overflow: hidden;
}

.ai .slider_container .slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.ai .slider_container .slider li {
  min-width: 250px;
  -webkit-animation: slider 30s linear infinite;
          animation: slider 30s linear infinite;
  position: relative;
  background-color: #000;
}

@-webkit-keyframes slider {
  0% {
    left: 0;
  }
  100% {
    left: -130%;
  }
}

@keyframes slider {
  0% {
    left: 0;
  }
  100% {
    left: -130%;
  }
}

@media screen and (max-width: 767px) {
  .ai {
    padding: 0 0 40px;
  }
  .ai .main_text {
    margin-bottom: 20px;
  }
  .ai .sub_text {
    padding: 20px 0;
    margin-bottom: 20px;
  }
  .ai .slider_title {
    margin-bottom: 10px;
  }
  .ai .slider_container .slider li {
    min-width: 160px;
    -webkit-animation: slider 20s linear infinite;
            animation: slider 20s linear infinite;
  }
  .ai .slider_container .slider:hover li {
    -webkit-animation-play-state: initial;
            animation-play-state: initial;
  }
}

/* info */
/* ============================================ */
.info {
  background-color: #F3F3E8;
  padding: 30px 0 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.info .top_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2.6rem;
  font-weight: 900;
  color: #006F4F;
  margin-bottom: 20px;
}

.info .top_title span {
  font-size: 1.6rem;
  padding: 2px 12px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-right: 10px;
  border: 1px solid #006F4F;
  border-radius: 30px;
}

.info .school {
  font-size: 3.6rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background-color: #6EB52C;
  margin-bottom: 80px;
  position: relative;
}

.info .school_bg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: url(../images/school.png) no-repeat;
  background-size: 100% 100%;
  letter-spacing: -0.1rem;
  line-height: 1.3;
  width: 180px;
  height: 180px;
  position: absolute;
  top: -65px;
  left: -5px;
}

.info .school_bg .year {
  font-size: 18px;
}

.info .school_bg .date {
  font-size: 26px;
}

.info .school_bg .date .day {
  font-size: 20px;
  vertical-align: middle;
}

.info .school_bg .text {
  font-size: 34px;
  color: #FFED00;
}

.info_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 60px;
}

.info_top_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 48.5%;
}

.info_top_text .tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  width: 100%;
  height: 100px;
  background-color: #fff;
  margin-bottom: 60px;
}

.info_top_text .tel_left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #D4114F;
  background: url(../images/tel_line.png);
  background-size: 100% 100%;
  width: 30%;
  height: 100%;
  padding: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.info_top_text .tel_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 70%;
  font-size: 2.6rem;
}

.info_top_text .tel_right span {
  font-size: 1.6rem;
  font-weight: normal;
}

.info_top table {
  width: 100%;
  table-layout: fixed;
}

.info_top table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 2rem;
  line-height: 1.8;
  padding: 30px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-top: 2px solid #6EB52C;
}

.info_top table tr th {
  font-weight: 700;
  color: #6EB52C;
  min-width: 25%;
}

.info_top table tr td {
  font-weight: normal;
  padding-right: 20px;
}

.info_top table tr:last-child {
  border-bottom: 2px solid #6EB52C;
}

.info_top_map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 48.5%;
  background-color: #fff;
}

.info_top_map iframe {
  width: 100%;
  height: 100%;
}

.info_top_message {
  background-color: #fff;
  width: 100%;
  padding: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 60px;
}

.info_top_message h3 {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background-color: #6EB52C;
  padding: 10px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 20px;
}

.info_top_message .message_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.info_top_message .message_container .img_area {
  min-width: 200px;
  text-align: center;
  margin-right: 20px;
}

.info_top_message .message_container .img_area p {
  font-size: 2.4rem;
  margin-top: 10px;
}

.info_top_message .message_container .img_area p span {
  font-weight: 700;
  color: #6EB52C;
}

.info_top_message .message_container .message_text {
  font-size: 1.8rem;
  width: 100%;
}

.info_bottom {
  margin: 60px 0 40px;
}

.info_bottom h3 {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background-color: #6EB52C;
  width: 100%;
  padding: 10px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.info_bottom_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: #fff;
  width: 100%;
  padding: 30px 30px 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.info_bottom_list dl {
  text-align: center;
  width: 100%;
  padding: 0 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 20px;
  border: 2px solid #000;
}

.info_bottom_list dl.pink {
  border: 2px solid #E65378;
}

.info_bottom_list dl.pink dt {
  color: #E65378;
}

.info_bottom_list dl.pink dd {
  border-color: #E65378;
}

.info_bottom_list dl.blue {
  border: 2px solid #009DDF;
}

.info_bottom_list dl.blue dt {
  color: #009DDF;
}

.info_bottom_list dl.blue dd {
  border-color: #009DDF;
}

.info_bottom_list dl.orange {
  border: 2px solid #EB7800;
}

.info_bottom_list dl.orange dt {
  color: #EB7800;
}

.info_bottom_list dl.orange dd {
  border-color: #EB7800;
}

.info_bottom_list dl.green {
  border: 2px solid #6EB52C;
}

.info_bottom_list dl.green dt {
  color: #6EB52C;
}

.info_bottom_list dl.green dd {
  border-color: #6EB52C;
}

.info_bottom_list dl.sm {
  width: 49%;
}

.info_bottom_list dl dt {
  font-size: 2.2rem;
  font-weight: 700;
  padding: 15px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.info_bottom_list dl dd {
  font-size: 1.8rem;
  padding: 15px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-top: 1px solid #000;
}

.info_bottom_list .list_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2.2rem;
  font-weight: 700;
  width: 100%;
  margin: 20px 0;
}

.info_bottom_list .list_title:before {
  content: "●";
  color: #6EB52C;
}

.info_bottom_list .list_title:after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-left: 10px;
  border-top: 1px solid #6EB52C;
}

.info_bottom_list .add {
  font-size: 2rem;
  font-weight: 700;
  margin-left: auto;
}

.info .sub_text {
  font-size: 1.4rem;
  color: #ED6C00;
  padding: 10px 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-top: 1px solid #ED6C00;
  border-bottom: 1px solid #ED6C00;
}

@media screen and (max-width: 1024px) {
  .info .school {
    padding-left: 80px;
  }
  .info_top_text .tel {
    height: 85px;
    margin-bottom: 40px;
  }
  .info_top_text .tel_left {
    width: 35%;
  }
  .info_top_text .tel_right {
    width: 65%;
  }
  .info_top table tr {
    padding: 20px 0;
  }
}

@media screen and (max-width: 767px) {
  .info {
    padding: 20px 0 40px;
  }
  .info .top_title {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    font-size: 2rem;
    margin-bottom: 10px;
  }
  .info .top_title span {
    font-size: 1.2rem;
    padding: 3px 6px;
    margin-right: 5px;
  }
  .info .school {
    font-size: 3rem;
    padding-left: 130px;
    padding-right: 30px;
    margin-bottom: 50px;
  }
  .info .school_bg {
    width: 110px;
    height: 110px;
    top: -40px;
  }
  .info .school_bg .year {
    font-size: 12px;
  }
  .info .school_bg .date {
    font-size: 18px;
  }
  .info .school_bg .date .day {
    font-size: 12px;
    vertical-align: middle;
  }
  .info .school_bg .text {
    font-size: 20px;
    color: #FFED00;
  }
  .info_top {
    margin-bottom: 30px;
  }
  .info_top_text {
    width: 100%;
  }
  .info_top_text .tel {
    height: 70px;
    margin-bottom: 30px;
  }
  .info_top table {
    margin-bottom: 15px;
  }
  .info_top table tr {
    padding: 15px 0;
  }
  .info_top table tr:nth-of-type(2) {
    border-bottom: 2px solid #6EB52C;
  }
  .info_top table tr.tab {
    display: none;
  }
  .info_top table.sp {
    display: table;
  }
  .info_top table.sp tr {
    border-top: none;
  }
  .info_top_map {
    width: 100%;
    height: 330px;
  }
  .info_top_message {
    padding: 30px 15px;
    margin-top: 40px;
  }
  .info_top_message h3 {
    padding: 5px 0;
  }
  .info_top_message .message_container {
    display: initial;
  }
  .info_top_message .message_container .img_area {
    float: left;
    min-width: auto;
    width: 120px;
    margin-right: 15px;
  }
  .info_bottom {
    margin: 30px 0 20px;
  }
  .info_bottom_list {
    padding: 15px;
  }
  .info_bottom_list dl {
    margin-bottom: 15px;
  }
  .info_bottom_list dl.sm {
    width: 100%;
  }
  .info_bottom_list dl dt {
    padding: 10px 0;
  }
  .info_bottom_list dl dd {
    text-align: left;
    padding: 10px 0;
  }
  .info_bottom_list .add {
    margin-right: auto;
  }
  .info_bottom_list .add .vertical {
    display: block;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    padding-left: 5px;
  }
  .info .sub_text {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 350px) {
  .info .top_title {
    font-size: 1.8rem;
  }
  .info .top_title span {
    padding: 2px 5px;
  }
  .info .school {
    font-size: 2.6rem;
    padding-left: 105px;
    padding-right: 15px;
  }
  .info .school_bg {
    width: 90px;
    height: 90px;
    top: -35px;
  }
  .info .school_bg .year {
    font-size: 10px;
  }
  .info .school_bg .date {
    font-size: 16px;
  }
  .info .school_bg .date .day {
    font-size: 10px;
  }
  .info .school_bg .text {
    font-size: 24px;
  }
  .info_top_message .message_container .img_area {
    width: 110px;
  }
}

/* trouble */
/* ============================================ */
.trouble {
  padding: 0 0 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.trouble .main_text {
  font-size: 2.8rem;
  font-weight: 700;
  color: #6EB52C;
  width: 50%;
  padding-right: 60px;
  margin: 80px auto 40px;
  position: relative;
}

.trouble .main_text:before {
  content: url(../images/trouble1.png);
  position: absolute;
  top: -35px;
  right: 50px;
}

.trouble .main_text:after {
  content: url(../images/trouble2.png);
  position: absolute;
  top: 40px;
  right: 50px;
}

.trouble .main_text img {
  width: 180px;
  position: absolute;
  top: -50px;
  right: -100px;
}

.trouble_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 2px solid #6EB52C;
  margin-bottom: 40px;
}

.trouble_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2rem;
  font-weight: 700;
  width: 49%;
  margin-bottom: 10px;
}

.trouble_list li:before {
  content: url(../images/trouble_check.png);
  width: 2.4rem;
  height: 2.4rem;
  margin-right: 15px;
}

.trouble .contact_text {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  color: #006F4F;
  margin-bottom: 20px;
}

.trouble .contact_text span {
  font-weight: normal;
  vertical-align: top;
}

.trouble .school {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  color: #006F4F;
  padding: 10px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 60px 0 40px;
  border-top: 1px solid #006F4F;
  border-bottom: 1px solid #006F4F;
}

@media screen and (max-width: 1024px) {
  .trouble .main_text {
    width: 65%;
  }
  .trouble .main_text img {
    width: 170px;
  }
  .trouble_list {
    padding: 20px;
  }
  .trouble_list li {
    font-size: 1.8rem;
  }
  .trouble_list li:before {
    width: 2.6rem;
    height: 2.6rem;
    margin-right: 10px;
  }
}

@media screen and (max-width: 767px) {
  .trouble {
    padding: 0 0 40px;
  }
  .trouble .main_text {
    font-size: 2rem;
    text-align: center;
    width: 100%;
    padding-right: 80px;
    margin: 60px auto 30px;
  }
  .trouble .main_text:before {
    content: '';
    display: inline-block;
    width: 70px;
    height: 40px;
    background: url(../images/trouble1.png) no-repeat;
    background-size: contain;
    top: -15px;
    right: 90px;
  }
  .trouble .main_text:after {
    content: '';
    display: inline-block;
    width: 70px;
    height: 40px;
    background: url(../images/trouble2.png) no-repeat;
    background-size: contain;
    top: 20px;
    right: 90px;
  }
  .trouble .main_text img {
    width: 110px;
    top: -30px;
    right: 0px;
  }
  .trouble_list {
    padding: 20px 15px;
    margin-bottom: 20px;
  }
  .trouble_list li {
    width: 100%;
  }
  .trouble_list li:before {
    width: 3rem;
    height: 3rem;
  }
  .trouble .contact_text {
    font-size: 2.6rem;
    margin-bottom: 10px;
  }
  .trouble .school {
    font-size: 2.6rem;
    padding: 5px 0;
    margin: 30px 0 20px;
  }
}

@media screen and (max-width: 767px) and (max-width: 350px) {
  .trouble .main_text {
    font-size: 1.8rem;
  }
  .trouble .main_text:before {
    top: -18px;
    right: 80px;
  }
  .trouble .main_text:after {
    right: 80px;
  }
  .trouble .main_text img {
    width: 100px;
    top: -25px;
  }
  .trouble_list li {
    font-size: 1.6rem;
  }
  .trouble_list li:before {
    height: 3.4rem;
  }
  .trouble .contact_text {
    font-size: 2.4rem;
  }
}

/* course1 */
/* ============================================ */
.course1 {
  padding: 0 0 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.course1 .top_area {
  width: 85%;
  margin: 0 auto;
}

.course1 .bg_area {
  background: url(../images/course_bg.png);
  width: 100%;
  padding: 60px 0 30px;
  margin-bottom: 40px;
}

.course1 .bg_area h3 {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  color: #006F4F;
  width: 100%;
  padding: 10px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 40px;
  border: 1px solid #006F4F;
}

.course1 .bg_area .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.course1 .bg_area .content_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 40px;
}

.course1 .bg_area .content_top img {
  width: 48.5%;
}

.course1 .bg_area .content_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-weight: 700;
  text-align: center;
  width: 100%;
  color: #fff;
  background-color: #3C85C2;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 20px;
}

.course1 .bg_area .content_bottom .left {
  font-size: 2.4rem;
  color: #3C85C2;
  background-color: #fff;
  padding: 5px 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 30px;
}

.course1 .bg_area .content_bottom .center {
  font-size: 4.6rem;
}

.course1 .bg_area .content_bottom .right {
  font-size: 1.4rem;
  font-weight: normal;
  text-align: center;
  border: 1px solid #fff;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0 0 2px 1px #fff;
          box-shadow: 0 0 2px 1px #fff;
}

.course1 .bg_area .content .add {
  font-size: 1.4rem;
  font-weight: 700;
  margin-left: auto;
}

@media screen and (max-width: 1024px) {
  .course1 .bg_area .content_bottom .center {
    font-size: 4rem;
    line-height: 1.2;
  }
}

@media screen and (max-width: 767px) {
  .course1 {
    padding: 0 0 40px;
  }
  .course1 h2.sub_title {
    margin-bottom: 20px;
  }
  .course1 .bg_area {
    padding: 30px 0 20px;
    margin-bottom: 20px;
  }
  .course1 .bg_area h3 {
    font-size: 2.4rem;
    padding: 8px 0;
    margin-bottom: 20px;
  }
  .course1 .bg_area .content_top {
    margin-bottom: 20px;
  }
  .course1 .bg_area .content_top img {
    width: 100%;
    margin-bottom: 20px;
  }
  .course1 .bg_area .content_top img:last-child {
    margin-bottom: 0;
  }
  .course1 .bg_area .content_bottom {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .course1 .bg_area .content_bottom .left {
    font-size: 2.2rem;
    width: 100%;
    padding: 3px 15px;
    margin-bottom: 8px;
  }
  .course1 .bg_area .content_bottom .center {
    font-size: 4.2rem;
    width: 100%;
    margin-bottom: 8px;
  }
  .course1 .bg_area .content_bottom .right {
    font-size: 1.6rem;
    font-weight: 700;
    width: 100%;
    padding: 8px;
  }
  .course1 .bg_area .content .add {
    margin-left: initial;
    margin-right: auto;
  }
}

@media screen and (max-width: 350px) {
  .course1 .bg_area .content_bottom .left {
    font-size: 1.8rem;
  }
  .course1 .bg_area .content_bottom .center {
    font-size: 3.4rem;
  }
  .course1 .bg_area .content_bottom .right {
    font-size: 1.4rem;
  }
}

/* course2 */
/* ============================================ */
.course2 {
  padding: 0 0 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.course2 .sub_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 0;
}

.course2 .sub_title span {
  font-size: 1.8rem;
  font-weight: 700;
  color: #006F4F;
  background-color: yellow;
  padding: 3px 13px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-left: 15px;
  border-radius: 20px;
}

.course2 .bg_area {
  background: url(../images/course_bg.png);
  width: 100%;
  padding: 40px 0 30px;
  margin-bottom: 60px;
}

.course2 .bg_area .main_text {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.course2 .bg_area .main_text span {
  font-size: 2.8rem;
}

.course2 .bg_area .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 20px;
}

.course2 .bg_area .content_left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 50%;
}

.course2 .bg_area .content_left .sub_text {
  font-size: 2.4rem;
  font-weight: 700;
}

.course2 .bg_area .content_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 45%;
  position: relative;
}

.course2 .bg_area .content_right_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  top: 40px;
  left: 30px;
}

.course2 .bg_area .content_right_list span {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background-color: #005BA9;
  padding: 5px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 15px;
}

.course2 .bg_area .content_right_list span:last-child {
  margin-bottom: 0;
}

.course2 .bg_area .add {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-size: 1.4rem;
  font-weight: 700;
}

.course2 .banner {
  margin-bottom: 40px;
}

.course2 .caution {
  margin: 60px 0 80px;
}

.course2 .caution p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.4rem;
  font-weight: 700;
}

.course2 .caution p:before {
  content: "※";
}

.course2 h3 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background-color: #006F4F;
  padding: 5px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 20px;
}

.course2 .contact_text {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  color: #ED6C00;
  margin-bottom: 10px;
}

.course2 .contact_text span {
  font-weight: normal;
  vertical-align: top;
}

.course2 .tel {
  width: 55%;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .course2 {
    padding: 0 0 30px;
  }
  .course2 .sub_title span {
    font-size: 2.2rem;
    margin: 8px 0 0;
  }
  .course2 .bg_area {
    padding: 30px 0 20px;
    margin-bottom: 20px;
  }
  .course2 .bg_area .main_text {
    font-size: 2.2rem;
    letter-spacing: 0;
    margin-bottom: 20px;
  }
  .course2 .bg_area .main_text span {
    font-size: 2.4rem;
  }
  .course2 .bg_area .content_left {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }
  .course2 .bg_area .content_left .sub_text {
    text-align: center;
    margin-bottom: 20px;
  }
  .course2 .bg_area .content_right {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    width: 100%;
    margin-bottom: 20px;
  }
  .course2 .bg_area .content_right_list {
    top: 30px;
    left: 20px;
  }
  .course2 .bg_area .content_right_list span {
    -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  .course2 .bg_area .add {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .course2 .banner {
    margin-bottom: 20px;
  }
  .course2 .caution {
    margin: 20px 0 30px;
  }
  .course2 .contact_text {
    font-size: 2.6rem;
  }
  .course2 .tel {
    width: 85%;
  }
}

/* footer */
/* ============================================ */
footer {
  text-align: center;
  color: #fff;
  background-color: #006F4F;
  padding-bottom: 20px;
}

footer .logo {
  width: 300px;
  margin: 0 auto;
}

footer p {
  font-size: 1.2rem;
  letter-spacing: initial;
}

@media screen and (max-width: 767px) {
  footer {
    padding-bottom: 15px;
  }
  footer .logo {
    width: 270px;
  }
}

/* thanks page */
/* ============================================ */
.thanks {
  padding: 30px 0 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.thanks .bg_area {
  background-color: #F3F3E8;
  padding: 30px 0;
  margin-top: 30px;
}

.thanks .bg_area .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  margin-bottom: 30px;
}

.thanks .bg_area .content p {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.thanks .bg_area a {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background-color: #006F4F;
  width: 280px;
  padding: 15px 0;
  margin: 0 auto;
  border-radius: 3px;
}

@media screen and (max-width: 767px) {
  .thanks {
    padding: 15px 0 0;
  }
  .thanks .bg_area {
    padding: 20px 0;
    margin-top: 15px;
  }
  .thanks .bg_area .content {
    margin-bottom: 20px;
  }
  .thanks .bg_area .content p {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  .thanks .bg_area a {
    width: 200px;
    padding: 10px 0;
  }
}

/* contact form */
/* ============================================ */
.form {
  padding: 30px 0 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.form .top_title {
  margin-bottom: 15px;
}

.form_area {
  width: 80%;
  margin: 0 auto;
}

.form_area table {
  width: 100%;
  table-layout: fixed;
  margin-bottom: 10px;
}

.form_area table th {
  font-weight: normal;
  width: 37%;
  padding: 10px 0;
  vertical-align: middle;
}

.form_area table th .require {
  color: #EB7800;
}

.form_area table td {
  width: 63%;
  padding: 10px 0;
  border: 1px solid #fff;
}

.form_area table td input {
  font-size: 18px;
  width: 100%;
  padding: 10px 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 2px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.form_area table td input:focus {
  outline: 0;
  border-color: #009DDF;
  -webkit-box-shadow: 0 0 5px rgba(0, 157, 223, 0.5);
          box-shadow: 0 0 5px rgba(0, 157, 223, 0.5);
}

.form_area table td select {
  font-size: 18px;
  width: 100%;
  padding: 10px 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 2px;
}

.form_area table td.select {
  position: relative;
}

.form_area table td.select:after {
  content: "\02228";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.form_area .scroll_area {
  font-size: 14px;
  width: 100%;
  height: 300px;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 2px;
  overflow-y: scroll;
}

.form_area .scroll_area .title {
  font-weight: bold;
  margin-bottom: 3px;
}

.form_area .scroll_area .text {
  margin-bottom: 10px;
}

.form_area .agreement {
  width: 100%;
  text-align: center;
}

.form_area .agreement input {
  margin-top: -4px;
}

.form_area .submit {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background-color: #EB7800;
  width: 330px;
  padding: 15px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 40px auto 0;
  border-radius: 5px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  cursor: pointer;
}

.form_area .submit:hover {
  opacity: .7;
}

@media screen and (max-width: 767px) {
  .form {
    padding: 20px 0 40px;
  }
  .form_area {
    width: 100%;
  }
  .form_area table th {
    display: block;
    font-size: 14px;
    width: 100%;
    padding: 0;
  }
  .form_area table td {
    display: block;
    width: 100%;
    padding-top: 0;
    padding: 0 0 15px;
  }
  .form_area table td input {
    font-size: 16px;
  }
  .form_area table td select {
    font-size: 16px;
  }
  .form_area .scroll_area {
    font-size: 12px;
  }
  .form_area .submit {
    width: 280px;
  }
  .form_area .agreement {
    margin-bottom: 30px;
  }
}

label.error {
  display: block;
  font-size: 1.5rem;
  text-align: center;
  color: red;
  cursor: default;
}

td > label.error {
  text-align: left;
}
/*# sourceMappingURL=style.css.map */
