@charset "Shift_JIS";

html{ color: #333;}
main { 
  font-size: 10px;
  overflow: hidden;
}
@media screen and (max-width: 599px) {
  main{ font-size: 8px;}
}

a{ color: #666;}
a[href^="tel:"]{ pointer-events: none;}
@media screen and (max-width: 599px) {
  a[href^="tel:"] {
    pointer-events: visible;
  }
}

p{
  text-align: justify;
  text-justify: inter-ideograph;
}

img {
  max-width: 100%;
  height: auto;
}

@media screen and (min-width: 1025px) {
  .pc { display: block !important;}
  .tab { display: none;}
  .sp { display: none;}
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .pc{ display: none;}
  .tab{ display: block !important;}
  .sp{ display: none;}
}
@media screen and (max-width: 599px) {
  .pc{ display: none;}
  .tab{ display: none;}
  .sp{ display: block !important;}
}

optgroup{ display: none;}

.bg-beige { background: #f3f3f2;}
.bg-lblue { background-color: #F2F8FF;}
.bg-orange { background-color: rgba(218, 95, 52, 0.1);}

.mark {
  margin: 0 2px;
  background: #fff100;
}
.mark01 {
  margin: 0 2px;
  text-decoration: underline;
  background: none;
  color: #1C246D;
}
.mark02 {
  margin: 0 2px;
  background: none;
  color: #1C246D;
}

.marker {
  background: linear-gradient( rgba(255, 242, 160, 0)20%, rgba(215, 186, 65, 0.3)20%);
  padding: 2px;
}

.txt_red{ color: red;}
.txt_orange{ color: #EA5520;}
.txt_bold{ font-weight: bold;}

.txt_s{ font-size: .85em;}
.txt_l{ font-size: 1.5em;}

section {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0;
}
section article,
section .inner {
  width: 100%;
  max-width: 1000px;
  padding: 80px 130px;
  margin: 0 auto;
}
section .inner.wide {
  width: 92%;
  padding: 80px 0;
}
@media screen and (max-width: 1024px) {
  section article,
  section .inner{ padding: 65px 10%;}
}
@media screen and (max-width: 599px) {
  section article,
  section .inner{
    padding: 50px 5%;
  }
  section .inner.wide {
    padding: 50px 0;
  }
  section article.pt_auto{ padding-top: 25px;}
}

/* heading */
.heading_01 {
  display: inline-block;
  margin-bottom: 2em;
  padding: 0 0.5em 0.2em;
  border-bottom: 2px dashed #da5f34;
  color: #da5f34;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.6;
}
.heading_01::after {
  content: none;
}
.heading_02 {
  position: relative;
  margin-bottom: 1.5em;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  line-height: 1.6;
}
.heading_02::after {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  border-top: 2px dashed #333;
  content: '';
}
.heading_02 span {
  position: inherit;
  z-index: 2;
  display: inline-block;
  padding: 0 1em;
  background: #fff;
}
@media screen and (max-width: 599px) {
  .heading_01 {
    padding-bottom: 0.5em;
    font-size: 20px;
  }
  .heading_02 {
    font-size: 16px;
  }
}

section h2 {
  font-size: 36px;
  letter-spacing: .13em;
  font-weight: normal;
  line-height: 1.7;
  position: relative;
}
section h2::after {
  content: "";
  display: block;
  border-bottom: 3px solid #EA5520;
  width: 100px;
  margin: 20px auto 50px;
}
section h2.bd_none::after{ content: none;}
section h3 {
  font-size: 27px;
  font-size: 2.7em;
  letter-spacing: .15em;
  font-weight: normal;
  line-height: 1.7;
}
section h4 {
  font-size: 20px;
  font-size: 2.0em;
  letter-spacing: .15em;
  font-weight: normal;
  line-height: 1.7;
}
@media screen and (max-width: 599px) {
  section h2 {
    font-size: 24px;
  }
  section h2::after {
    width: 50px;
    margin: 15px auto 30px;
  }
  section h3 {
    font-size: 21px;
    font-size: 2.1em;
  }
  section h4 {
    font-size: 15px;
    font-size: 1.5em;
  }
}

section p {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: .05em;
}
.lead{ font-size: 1.2rem;}
@media screen and (max-width: 599px) {
  section p {
    font-size: 13px;
    line-height: 1.5;
  }
  section p.lead{ font-size: 16px;}
  section p.lead_sp{
    font-size: 14px;
    line-height: 2;
  }
}

/* button */
button{ outline: 0;}
.btn a,
.btn input, .btn button{
  display: block;
  color: #fff;
  font-size: 1.2rem;
  width: 100%;
  max-width: 465px;
  padding: 10px 40px;
  margin: 0 auto;
  position: relative;
  border-radius: 2.8px;
  background: #EA5520;
  box-shadow: 0 1.5px 0 #CBCBCB;
  letter-spacing: .11em;
}
.btn a:hover,
.btn input:hover { text-decoration: none;}
.btn .red {
  background: #E60A17;
  box-shadow: 0 1.5px 0 #C60813;
}
.btn .arrow01::after {
  content: '';
  padding: 9px;
  background: url(/images/common/arrow02.svg) left center/contain no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 12px;
}
.btn input {
  border: none;
}
.btn input:hover {
  opacity: 0.7;
  cursor: pointer;
}
.btn input.orange{
  background: #EA5520 url(/images/common/arrow02.svg) 98% center/.85em no-repeat;
}
.btn input.l_orange {
  background: #eba145 url(../images/common/btn_icon_arrow01.png) 95% center no-repeat;
}
.fixed-btn {
  padding: 0px 90px 0px 0px;
}
@media screen and (max-width: 599px) {
  .btn a,
  .btn input,
  .btn1ck p input {
    width: 100%;
    padding: 10px;
    letter-spacing: normal;
    font-size: 15px;
  }
  .btn a.arrow01::after {
    padding: 6px;
  }
}

/* article */
.article p {
  font-size: 16px;
  letter-spacing: 0.13em;
}
.article p + p {
  margin-top: 2em;
}
.article .strong {
  background: linear-gradient(transparent 40%, rgba(255, 255, 0, 0.5) 40%);
  font-weight: bold;
}

/* figure */
.figure_01 {
  margin: 50px 0;
  padding: 30px 6%;
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  text-align: center;
}
.figure_01 img {
  width: 100%;
  max-width: 800px;
}
@media screen and (max-width: 599px) {
  .figure_01 {
    margin: 30px 0;
    padding: 20px 2%;
  }
}

/* ----------------------
mv
---------------------- */
.mv {
  margin-bottom: 70px;
  background: url(/school/image/sansan/mv.jpg), linear-gradient(to bottom,  #fff7d5 50%,#fcfaf0 100%);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
  border-top: 5px solid #da5f34;
  border-bottom: 5px solid #da5f34;
}
.mv .mv_inner {
  position: relative;
  max-width: 1440px;
  min-height: 580px;
  margin: 0 auto;
  padding: 60px 5% 20px;
  text-align: left;
}
.mv h1 {
  display: inline-block;
  text-align: center;
}
.mv .sub_01 {
  margin-bottom: 0.5em;
  padding-left: 0.5em;
  color: #da5f34;
  font-size: 28px;
  letter-spacing: 0.12em;
  transform: rotate(-1deg);
}
.mv .sub_01 .txt_l {
  font-size: 49px;
}
.mv .sub_02 {
  display: inline-block;
  margin-bottom: 0.5em;
  padding: 0.2em 0.5em;
  background: linear-gradient(to right,  #da5f34 0%,#d5465b 100%);
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.18em;
}
.mv .sub_02 .txt_l {
  font-size: 45px;
}
.mv .main_ttl {
  margin-bottom: 30px;
  font-size: 51px;
  font-weight: bold;
  letter-spacing: 0.15em;
}
.mv .main_ttl .txt_l {
  font-size: 64px;
}
.mv .btn_list {
  display: flex;
  justify-content: space-between;
  width: 96%;
  max-width: 600px;
}
.mv .btn_list li {
  width: 49.2%;
}
.mv .labe_free {
  display: block;
  padding: 0.56em;
  background: linear-gradient(to right,  #da5f34 0%,#da3434 100%);
  border: 1px solid #da5f34;
  border-radius: 4px;
  color: #fff;
  font-size: 25px;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
}
.mv .mv_btn {
  display: block;
  padding: 0.56em;
  background: #fff;
  border: 1px solid #da5f34;
  border-radius: 4px;
  color: #da5f34;
  font-size: 25px;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
}
.mv .ico_no1 svg {
  max-width: 90%;
  height: auto;
}
.mv .no1_caution {
  position: absolute;
  bottom: -70px;
  left: 50%;
  transform: translateX(-50%);
  width: 94%;
  max-width: 1000px;
  height: 50px;
  color: #969696;
  font-size: 10px;
}
@media screen and (min-width: 600px) {
  .mv .btn_list {
    position: absolute;
    right: 3.5%;
    bottom: 60px;
  }
}
@media screen and (max-width: 1299px) {
  .mv {
    background-position: center right -120px;
  }
  .mv .mv_inner {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .mv .btn_list {
    right: 2%;
    bottom: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .mv {
    background-position: center right -150px;
  }
  .mv .mv_inner {
    padding: 20px 2%;
  }
}
@media screen and (max-width: 1099px) {
  .mv {
    background-position: center right -200px;
  }
}
@media screen and (max-width: 999px) {
  .mv {
    background-position: center right -250px;
  }
  .mv .main_ttl {
    text-shadow: 2px 2px 5px #fff;
  }
}
@media screen and (max-width: 629px) {
  .mv .sub_02 .txt_l {
    font-size: 40px;
  }
}
@media screen and (max-width: 599px) {
  .mv {margin-bottom: 200px;
    background: #fff7d5 url(/school/image/sansan/mv_sp.jpg) no-repeat bottom center / cover;
    border-top: 5px solid #da5f34;
    border-bottom: 5px solid #da5f34;
  }
  .mv .mv_inner {
    min-height: auto;
    padding: 20px 5% 170px;
  }
  .mv .sub_01 {
    font-size: 17px;
    letter-spacing: 0.05em;
  }
  .mv .sub_01 .txt_l {
    font-size: 28px;
  }
  .mv .sub_02 {
    font-size: 14px;
    letter-spacing: 0.15em;
  }
  .mv .sub_02 .txt_l {
    font-size: 24px;
  }
  .mv .main_ttl {
    margin-bottom: 0.3em;
    font-size: 29px;
    text-shadow: none;
  }
  .mv .main_ttl .txt_l {
    font-size: 39px;
  }
  .mv .btn_list {
    max-width: 260px;
  }
  .mv .labe_free {
    font-size: 14px;
  }
  .mv .mv_btn {
    font-size: 14px;
  }
  .mv .ico_no1 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: -120px;
    left: 0;
    width: 100%;
    height: 120px;
    background: #f3f3f2;
    text-align: center;
  }
  .mv .ico_no1 svg {
    width: 90%;
    max-width: 400px;
    height: auto;
  }
  .mv .no1_caution {
    bottom: -200px;
    height: 70px;
  }
}

/* ----------------------
osusume
---------------------- */
#osusume ul{
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#osusume li{
  width: calc(95% / 3);
  margin: 15px 0;
  padding-top: 58px;
  background-position: center top;
  background-repeat: no-repeat;
}
#osusume li:first-child{
  background-image: url(/school/image/sansan/img_osusume04.svg);
  background-size: 60px;
}
#osusume li:nth-child(2){
  background-image: url(/school/image/sansan/img_osusume02.svg);
  background-size: 53px;
}
#osusume li:nth-child(3){
  background-image: url(/school/image/sansan/img_osusume03.svg);
  background-size: 46px;
}
#osusume li:nth-child(4){
  background-image: url(/school/image/sansan/img_osusume01.svg);
  background-size: 60px;
}
#osusume li:nth-child(5){
  background-image: url(/school/image/sansan/img_osusume04.svg);
  background-size: 60px;
}
#osusume li:nth-child(6){
  background-image: url(/school/image/sansan/img_osusume02.svg);
  background-size: 53px;
}
#osusume li p{
  color: #ea5520;
  font-size: 14px;
  border: 1px solid;
  padding: 1em;
  text-align: center;
  height: 6em;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 599px) {
  #osusume li{ width: calc(95% / 2);}
}

/* ----------------------
students
---------------------- */
#students .video-message {
  margin-bottom: 70px;
}
#students .btn {
  padding: 50px;
}
#students .dashed-line {
  position: relative;
  padding-bottom: 30px;
}
#students .dashed-line::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  width: 100%;
  border-bottom: 1px dashed #EA5520;
  z-index: 0;
}
#students .voice {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 0;
}
#students .voice p {
  width: 49%;
  text-align: center;
  margin: 5px 0;
  background: #fff;
}
#students .message {
  border: 2px solid #1C246D;
  padding: 25px;
  font-size: 26px;
  color: #1C246D;
  line-height: 1.7;
  letter-spacing: .025em;
  width: 85%;
  margin: 0 auto;
}
#students .stgtitle {
  font-size: 17px;
  font-size: 1.7em;
  text-align: left;
  line-height: 1.7;
  letter-spacing: .015em;
  margin-bottom: 20px;
}
#students .stgphoto {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
#students .stgphoto p{ max-width: 200px;}
.ambassador .box_profile{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5em;
}
.ambassador .box_profile .title{ width: 55%;}
.ambassador .box_profile h3{
  text-align: left;
  color: #EA5520;
  font-size: 1.5rem;
  line-height: 1.3;
  margin-bottom: .5em;
}
.ambassador .box_profile .photo{
  order: -1;
  width: 42%;
}
.ambassador .interview{
  text-align: left;
  font-size: .95rem;
}
.ambassador .interview dt{ font-weight: bold;}
.ambassador .interview dd{
  padding-left: 1em;
  padding-bottom: .8em;
}
@media screen and (max-width: 1024px) {
  #students .btn {
    padding: 50px 0;
  }
}
@media screen and (max-width: 599px) {
  #students .btn {
    padding: 25px 0;
  }
  #students .voice{ margin-bottom: 0;}
  #students .voice p {
    float: none;
    width: 100%;
  }
  #students01 .message,
  #students .message {
    padding: 15px;
    font-size: 15px;
    width: 100%;
  }
  #students .video-message {
    margin-bottom: 30px;
  }
  .ambassador .box_profile{ justify-content: center;}
  .ambassador .box_profile .title{
    width: 100%;
    padding-bottom: 1em;
    font-size: 11px;
  }
  .ambassador .box_profile .photo{
    order: 0;
    width: 85%;
  }
  .stgphoto p{
    width:100%;
  }
}

/* ----------------------
faq
---------------------- */
.faq dl{
  font-size: 1.6em;
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  margin-bottom: 30px;
  text-align: left;
}
.faq dt{
  padding-left: 3em;
  padding-bottom: .8em;
  margin-bottom: .8em;
  border-bottom: 1px solid #ddd;
  color: #1c236d;
  position: relative;
}
.faq dt::before{
  content: "Q";
  color: #fff;
  background: #1c236d;
  width: 1.3em;
  height: 1.3em;
  border-radius: 100%;
  margin-right: 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6em;
  position: absolute;
  left: 0;
  top: 0;
}
.faq dd{
  padding-left: 3em;
  position: relative;
}
.faq dd::before{
  content: "A";
  color: #fff;
  background: #EA5521;
  width: 1.3em;
  height: 1.3em;
  border-radius: 100%;
  margin-right: 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6em;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 599px) {
  .faq dl{ font-size: 14px;}
}

/* ----------------------
mokuji
---------------------- */
.mokuji{
  width:1000px;
  background: rgb(234 85 32 / .1);
  border:1px dashed #EA5520;
  border-left:none;
  border-right:none;
  margin:50px auto;
  padding:50px;
}
.mokuji h3{
  color:#EA5520;
  margin-top:30px;
  font-size:18px;
}
.mokuji h3,.mokuji ul{
  width:65%;
  text-align: left;
  margin-left:auto;
  margin-right:auto;
}
.mokuji ul li{
  line-height: 2em;
  font-size:14px;
}
.conts_hide{
  max-height: 380px;
  transition: max-height 0.3s;
  overflow: hidden;
}
.conts_hide.active {
  max-height: 9999px;
}
#open,#close{
  cursor: pointer;
  color:#EA5520;
  width:50%;
  margin:40px auto;
  border:1px solid #EA5520;
  border-radius: 25px;
  padding: 10px 0;
  background: #fdeee9;
  text-align: center;
  position: relative;
}
#open::after,
#close::after{
  content: '';
  width: 8px;
  height: 8px;
  border-left: 1px solid;
  border-bottom: 1px solid;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
}
#open::after{ transform: rotate(-45deg);}
#close::after{ transform: rotate(135deg);}
.is-hide{ display: none;}
#mokuji_area {
  padding-bottom: 60px;
}
@media screen and (max-width: 1000px) {
  .mokuji{
    width:75%;
  }
  .mokuji h3,.mokuji ul{
    width:85%;
  }
  #open,#close{
    width:85%;
  }
}
@media screen and (max-width: 599px) {
  .mokuji{
    width:95%;
    padding:20px 0;
  }
  .mokuji h3,.mokuji ul{
    width:90%;
  }
  #open,#close{
    width:90%;
  }
  .conts_hide{ max-height: 440px;}
  #mokuji_area {
    padding-bottom: 30px;
  }
  #mokuji_area .btn a {
    width: 90%;
  }
}

/* ----------------------
dream
---------------------- */
.dream{
  background: #FFF4E5;
  position: relative;
}
.dream .inner{
  padding-top: 100px;
  position: relative;
  z-index: 1;
}
.dream h2{
  position: relative;
  z-index: 1;
  margin-bottom: 2em;
}
.dream h2::before{
  content: "Q";
  color: #fff;
  font-size: 3em;
  line-height: 1;
  position: absolute;
  left: 0;
  right: 0;
  top: -.5em;
  z-index: -1;
}
.dream h2 span{ background: linear-gradient(rgba(255, 242, 160, 0)75%, rgba(208, 155, 4, 0.7)75%);}
.dream h3{
  font-size:2.5em;
  margin:50px auto 30px auto;
}
.dream_list{
  margin: 0 auto 120px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.dream_list li{
  width: 48%;
  border-radius: 10px;
  background: #fff;
  margin: 10px .5%;
  overflow: hidden;
}
.dream_list li p{
  text-align: center;
  padding: 10px;
  line-height: 1.5;
}
.dream_list + .wrapper_circle::before{
  content: "";
  width: 1px;
  height: 120px;
  background: #707070;
  position: absolute;
  left: 0;
  right: 0;
  top: -100px;
  margin: auto;
  z-index: 2;
}
.dream_list + .wrapper_circle::after{
  content: "";
  border: 5px solid transparent;
  border-top: 8px solid #707070;
  background: transparent;
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.wrapper_circle{
  position: relative;
  border-top:1px dashed #EA5520;
  border-bottom: 2px solid #EA5520;
}
.wrapper_circle h3 .baloon{
  background: url(/school/image/goichi/bg_baloon.png) center center/contain no-repeat;
  padding: 10px 25px 30px;
  font-size: .8em;
  color: #fff;
  font-weight: bold;
  position: absolute;
  top: 75px;
  left: 7%;
}
.support_wrap{
  border:1px solid #000;
  width:100%;
  height: 175px;
  margin-bottom:50px;
}
.support{
  font-size:23px !important;
  background:#fff;
  padding:20px 0;
  width:90%;
  margin:0 auto;
  height: 180px;
  position: relative;
  top:-2px;
}
@media screen and (min-width: 600px) {
  .wrapper_circle{
    width: 100%;
    padding-top: 120%;
    background: #fff;
  }
  .wrapper_circle .inner{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
  }
  .wrapper_circle p{
    text-align: center;
    font-size:13px;
    line-height: 2.5em;;
  }
}
@media screen and (max-width: 599px) {
  .wrapper_circle{
    border:none;
  }
  .dream .inner{ padding-top: 60px;}
  .dream h2{ margin-bottom: 20px;}
  .wrapper_circle{ margin-bottom: 50px;}
  .dream .wrapper_circle .inner::after{
    content: "";
    width: 300%;
    padding-top: 100%;
    background: #fff;
    border-top: 1px dashed #eb5520;
    border-bottom: 2px solid #eb5520;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    z-index: -1;
  }
  .wrapper_circle h3{
    font-size: 1.1rem;
    margin-bottom: 1em;
  }
  .wrapper_circle h3 .baloon{
    left: 0;
    top: 15px;
  }
  .support_wrap{
    height: 100px;
    margin-bottom: 0;
  }
  .support {
    font-size: 18px !important;
    height: 102px;
    text-align: center;
  }
}

/* ----------------------
teacher
---------------------- */
.teacher {
  background: rgba(234, 85, 32, 0.1);
}
.teacher .inner {
  width: 92%;
  padding-left: 0;
  padding-right: 0;
}
.teacher h2 {
  font-size: 30px;
}
.teacher .teacher_main {
  display: grid;
  grid-template-columns: 200px auto;
  column-gap: 40px;
  row-gap: 1em;
  margin-top: 50px;
}
.teacher .teacher_main .img {
  grid-column: 1/2;
  grid-row: 1/4;
}
.teacher .teacher_main .name {
  grid-column: 2/3;
  grid-row: 1/2;
  font-size: 30px;
  text-align: left;
}
.teacher .teacher_main .name span {
  white-space: nowrap;
}
.teacher .teacher_main .position {
  grid-column: 2/3;
  grid-row: 2/3;
  text-align: left;
}
.teacher .teacher_main .career {
  grid-column: 2/3;
  grid-row: 3/4;
  text-align: left;
}
@media screen and (max-width: 599px) {
  .teacher h2 {
    font-size: 20px;
  }
  .teacher .teacher_main {
    grid-template-columns: 140px auto;
    column-gap: 15px;
    row-gap: 2em;
    margin-top: 30px;
  }
  .teacher .teacher_main .img {
    grid-row: 1/3;
  }
  .teacher .teacher_main .name {
    align-self: flex-end;
    font-size: 20px;
  }
  .teacher .teacher_main .position {
    align-self: flex-start;
  }
  .teacher .teacher_main .career {
    grid-column: 1/3;
    grid-row: 3/4;
    font-size: 14px;
  }
}

/* ----------------------
course
---------------------- */
.course .tab_content {
  border-style: solid;
  border-width: 1px;
  padding-bottom: 30px;
  display: block;
}
.course .tab_content .seminar_ttl {
  font-size: 18px;
  font-weight: bold;
  color: #1C246D;
}
.course .tab_content p {
  margin-bottom: 20px;
  letter-spacing: .05em;
}
.course .tab_content.content-plus {
  border: 1px solid #1C246D !important;
}
@media screen and (max-width: 599px){
  .course p {
    font-size: 14px;
    }
  .course_link .kabu a,
  .course .sp-tab-title.kabu {
    background-color: #5e76a7;
  }
  .course_link .fudo a,
  .course .sp-tab-title.fudo {
    background-color: #44a1c5;
  }
  .course .btn a,
  .course .btn input {
    letter-spacing: 0;
  }
  .course .tab_content {
    padding: 30px 5%;
  }
}
/* entry_btn */
.course .tab_content p.entry_btn_txt {
  margin-bottom: 0;
}
.entry_btn_txt {
  display: inline-block;
  position: relative;
  padding: 0.5em 3em 0.1em;
  color: #e16f4e;
  font-size: 14px;
  line-height: 1;
}
.entry_btn_txt::before,
.entry_btn_txt::after {
  position: absolute;
  bottom: 10px;
  width: 25px;
  border-top: 1px dashed #1c236d;
  content: '';
}
.entry_btn_txt::before {
  left: 0;
  transform: rotate(45deg);
}
.entry_btn_txt::after {
  right: 0;
  transform: rotate(-45deg);
}
.btn_entry {
  display: block;
  position: relative;
  width: 100%;
  max-width: 324px;
  margin: 10px auto 0;
  background-color: #e60012;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2236.04%22%20height%3D%2234.839%22%20viewBox%3D%220%200%2036.04%2034.839%22%3E%3Cg%20transform%3D%22translate(-16%20-40)%22%3E%3Cpath%20d%3D%22M51.439%2C41.8h-1.8V40.6a.6.6%2C0%2C0%2C0-.6-.6H36.423a3%2C3%2C0%2C0%2C0-2.4%2C1.2%2C3%2C3%2C0%2C0%2C0-2.4-1.2H19a.6.6%2C0%2C0%2C0-.6.6v1.2H16.6a.6.6%2C0%2C0%2C0-.6.6V65.829a.6.6%2C0%2C0%2C0%2C.6.6H41.228v6.607a1.8%2C1.8%2C0%2C0%2C0%2C1.8%2C1.8h2.4a1.8%2C1.8%2C0%2C0%2C0%2C1.8-1.8V66.429h4.2a.6.6%2C0%2C0%2C0%2C.6-.6V42.4A.6.6%2C0%2C0%2C0%2C51.439%2C41.8ZM19.6%2C61.624H31.617a1.8%2C1.8%2C0%2C0%2C1%2C1.7%2C1.2H19.6Zm23.842-9.611h1.571l.788%2C2.4H42.658Zm.394-1.2.392-1.195.392%2C1.195ZM41.228%2C62.825h-6.5a1.8%2C1.8%2C0%2C0%2C1%2C1.7-1.2h4.805Zm1.2-7.208h1.2V67.631h-1.2Zm0%2C13.215h3.6v1.2h-3.6Zm3.6-1.2h-1.2V55.617h1.2Zm1.2-6.007h1.2v1.2h-1.2ZM36.423%2C41.2H48.436V60.423h-1.2V55.017c0-.01%2C0-.02%2C0-.031s0-.015%2C0-.023a.6.6%2C0%2C0%2C0-.009-.062.006.006%2C0%2C0%2C0%2C0%2C0%2C.586.586%2C0%2C0%2C0-.018-.067v0L45.372%2C49.24a1.2%2C1.2%2C0%2C0%2C0-2.281%2C0l-1.833%2C5.589v0a.583.583%2C0%2C0%2C0-.018.067.006.006%2C0%2C0%2C1%2C0%2C0%2C.6.6%2C0%2C0%2C0-.009.062c0%2C.008%2C0%2C.015%2C0%2C.023s0%2C.02%2C0%2C.031v5.406H36.423a2.987%2C2.987%2C0%2C0%2C0-1.8.6V43A1.8%2C1.8%2C0%2C0%2C1%2C36.423%2C41.2ZM19.6%2C41.2H31.617a1.8%2C1.8%2C0%2C0%2C1%2C1.8%2C1.8V61.025a2.988%2C2.988%2C0%2C0%2C0-1.8-.6H19.6ZM17.2%2C65.228V43h1.2V63.426a.6.6%2C0%2C0%2C0%2C.6.6H41.228v1.2Zm28.832%2C7.809a.6.6%2C0%2C0%2C1-.6.6h-2.4a.6.6%2C0%2C0%2C1-.6-.6v-1.8h3.6Zm4.805-7.809h-3.6v-1.2h1.8a.6.6%2C0%2C0%2C0%2C.6-.6V43h1.2Z%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M80.6%2C209.2h6.007a.6.6%2C0%2C0%2C0%2C0-1.2H80.6a.6.6%2C0%2C0%2C0%2C0%2C1.2Z%22%20transform%3D%22translate(-59.195%20-155.386)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M194.4%2C208h-1.8a.6.6%2C0%2C0%2C0%2C0%2C1.2h1.8a.6.6%2C0%2C1%2C0%2C0-1.2Z%22%20transform%3D%22translate(-162.785%20-155.386)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M143.208%2C272.6a.6.6%2C0%2C0%2C0-.6-.6H136.6a.6.6%2C0%2C1%2C0%2C0%2C1.2h6.007A.6.6%2C0%2C0%2C0%2C143.208%2C272.6Z%22%20transform%3D%22translate(-110.99%20-214.581)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M82.4%2C272H80.6a.6.6%2C0%2C1%2C0%2C0%2C1.2h1.8a.6.6%2C0%2C1%2C0%2C0-1.2Z%22%20transform%3D%22translate(-59.195%20-214.581)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M80.6%2C241.2H90.812a.6.6%2C0%2C0%2C0%2C0-1.2H80.6a.6.6%2C0%2C1%2C0%2C0%2C1.2Z%22%20transform%3D%22translate(-59.195%20-184.983)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M144.6%2C177.2h5.406a.6.6%2C0%2C1%2C0%2C0-1.2H144.6a.6.6%2C0%2C1%2C0%2C0%2C1.2Z%22%20transform%3D%22translate(-118.389%20-125.789)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M144.6%2C145.2h5.406a.6.6%2C0%2C0%2C0%2C0-1.2H144.6a.6.6%2C0%2C1%2C0%2C0%2C1.2Z%22%20transform%3D%22translate(-118.389%20-96.191)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M336.6%2C81.2h6.007a.6.6%2C0%2C1%2C0%2C0-1.2H336.6a.6.6%2C0%2C1%2C0%2C0%2C1.2Z%22%20transform%3D%22translate(-295.973%20-36.997)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M280.6%2C81.2h1.8a.6.6%2C0%2C1%2C0%2C0-1.2h-1.8a.6.6%2C0%2C0%2C0%2C0%2C1.2Z%22%20transform%3D%22translate(-244.178%20-36.997)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M280.6%2C145.2h4.805a.6.6%2C0%2C0%2C0%2C0-1.2H280.6a.6.6%2C0%2C0%2C0%2C0%2C1.2Z%22%20transform%3D%22translate(-244.178%20-96.191)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M280.6%2C113.2h10.211a.6.6%2C0%2C0%2C0%2C0-1.2H280.6a.6.6%2C0%2C0%2C0%2C0%2C1.2Z%22%20transform%3D%22translate(-244.178%20-66.594)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M280.6%2C209.2h3a.6.6%2C0%2C0%2C0%2C0-1.2h-3a.6.6%2C0%2C0%2C0%2C0%2C1.2Z%22%20transform%3D%22translate(-244.178%20-155.386)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M280.6%2C273.2h3a.6.6%2C0%2C0%2C0%2C0-1.2h-3a.6.6%2C0%2C0%2C0%2C0%2C1.2Z%22%20transform%3D%22translate(-244.178%20-214.581)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M280.6%2C241.2h3a.6.6%2C0%2C0%2C0%2C0-1.2h-3a.6.6%2C0%2C0%2C0%2C0%2C1.2Z%22%20transform%3D%22translate(-244.178%20-184.983)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M280.6%2C177.2h4.2a.6.6%2C0%2C0%2C0%2C0-1.2h-4.2a.6.6%2C0%2C0%2C0%2C0%2C1.2Z%22%20transform%3D%22translate(-244.178%20-125.789)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M80.6%2C83.6H83a.6.6%2C0%2C0%2C0%2C.6-.6V80.6A.6.6%2C0%2C0%2C0%2C83%2C80H80.6a.6.6%2C0%2C0%2C0-.6.6V83A.6.6%2C0%2C0%2C0%2C80.6%2C83.6Zm.6-2.4h1.2v1.2H81.2Z%22%20transform%3D%22translate(-59.195%20-36.997)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M80.6%2C147.6H83a.6.6%2C0%2C0%2C0%2C.6-.6v-2.4a.6.6%2C0%2C0%2C0-.6-.6H80.6a.6.6%2C0%2C0%2C0-.6.6V147A.6.6%2C0%2C0%2C0%2C80.6%2C147.6Zm.6-2.4h1.2v1.2H81.2Z%22%20transform%3D%22translate(-59.195%20-96.191)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M144.6%2C113.2h5.406a.6.6%2C0%2C0%2C0%2C0-1.2H144.6a.6.6%2C0%2C1%2C0%2C0%2C1.2Z%22%20transform%3D%22translate(-118.389%20-66.594)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M144.6%2C81.2h5.406a.6.6%2C0%2C0%2C0%2C0-1.2H144.6a.6.6%2C0%2C1%2C0%2C0%2C1.2Z%22%20transform%3D%22translate(-118.389%20-36.997)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  background-position: 20px 19px;
  border-radius: 5px;
  box-shadow: 0 3px 0 #d7d7d7;
  color: #fff;
  font-size: 18px;
  line-height: 1.4;
  overflow: hidden;
}
.btn_entry span {
  display: block;
  position: relative;
  width: 100%;
  padding: 1em 40px 1em 60px;
}
.btn_entry span::before {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border: 1px solid #fff;
  border-radius: 50%;
  content: '';
}
.btn_entry span::after {
  position: absolute;
  top: 50%;
  right: 26px;
  transform: translateY(-50%);
  border-left: 8px solid #fff;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  content: '';
}
.btn_entry:hover {
  opacity: 0.8;
  text-decoration: none;
}
.btn_entry::before {
  position: absolute;
  content: '';
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fff;
  animation: btn_shiny 3s ease-in-out infinite;
}
@-webkit-keyframes btn_shiny {
  0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
  80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
  100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}

/* ----------------------
tab_content
---------------------- */
.tab_content .box {
  background: #fff;
  padding: 15px;
}

/* ----------------------
courseInfo
---------------------- */
.courseInfo th,
.courseInfo td {
  font-size: 15px;
}
.courseInfo td {
  text-align: left;
}
.courseInfo td .free {
  color: #1C246D;
  font-size: 1.2em;
}
.courseInfo tbody th {
  width: 155px;
}
@media screen and (max-width: 599px) {
  .courseInfo tbody th,
  .courseInfo tbody td{
    display: block;
    width: 100%;
  }
  .courseInfo tbody th{
    width:auto !important;
    background:#fafafa !important;
    border-right: 1px solid #999 !important;
  }
  .courseInfo select{
    font-size: 16px;
    transform: scale(0.75) translateX(-15%);
    width: 130%;
  }
}

/* ----------------------
another-school
---------------------- */
.another-school .introduction {
  display: flex;
  margin-top: 5em;
}
.another-school .introduction > div {
  width: 50%;
}
.another-school .introduction .photo {
  height: 100%;
}
.another-school .introduction .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.another-school .introduction .detail {
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px 5px;
}
.another-school .introduction.fudo .detail {
  background-color: #44a1c5;
}
.another-school .introduction.mf .detail {
  background-color: #8A9F55;
}
.another-school .introduction.izumi .detail {
  background-color: #1E236E;
}
.another-school .introduction.kabu .detail {
  background-color: #5e76a7;
}
.another-school .introduction .detail .heading {
  font-size: 20px;
  margin-bottom: 10px;
  text-align: center;
}
.another-school .introduction .detail .txt {
  font-size: 16px;
  margin-bottom: 20px;
  text-align: center;
}
.another-school .introduction .detail .btn {
  display: block;
  background-color: #fff;
  background-position: 95% 50%;
  background-repeat: no-repeat;
  background-size: 25px;
  text-align: center;
  font-size: 16px;
  border-radius: 4px;
  padding: 4px 0;
  width: 90%;
  margin: 0 auto;
}
.another-school .introduction.kabu .detail .btn {
  background-image: url(/school/image/common/Introduction_icn_arrow_circle_kabu.svg);
  color: #5e76a7;
}
.another-school .introduction.fudo .detail .btn {
  background-image: url(/school/image/common/Introduction_icn_arrow_circle_fudo.svg);
  color: #44a1c5;
}
.another-school .introduction.mf .detail .btn {
  background-image: url(/school/image/common/Introduction_icn_arrow_circle_mf.svg);
  color: #8A9F55;
}
.another-school .introduction.izumi .detail .btn {
  background-image: url(/school/image/common/Introduction_icn_arrow_circle_izumi.svg);
  color: #1E236E;
}
.another-school .introduction .detail .btn:hover {
  text-decoration: none;
}
@media screen and (max-width: 599px) {
  .another-school .introduction {
    display: block;
    margin-top: 3em;
  }
  .another-school .introduction > div {
    width: 100%;
  }
}

/* ----------------------
canlearn
---------------------- */
.canlearn {
  padding-top: 90px;
}
.canlearn .canlearn_box {
  padding: 50px 5%;
  background: rgba(218, 95, 52, .1);
  border: 1px solid #EA5520;
  border-radius: 5px;
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}
.canlearn .canlearn_heading {
  margin: 0 auto 15px;
  text-align: center;
  letter-spacing: normal;
  line-height: 1.7;
  display: flex;
  justify-content: center;
  align-items: center;
  }
.canlearn .canlearn_heading::after {
  content: none;
  }
.canlearn .canlearn_heading svg {
  flex: 0 0 55px;
  }
.canlearn .canlearn_body {
  border-top: 1px dashed #EA5520;
  }
.canlearn .canlearn_heading svg {
  vertical-align: top;
  }
.canlearn .canlearn_heading .heading_txt {
  display: inline-block;
  padding-right: 1em;
  color: #333;
  font-size: 26px;
  font-weight: bold;
  }
.canlearn .canlearn_heading .heading_txt .num {
  color: #EA5520;
  font-family: 'Josefin Slab', serif;
  font-size: 40px;
  }
.canlearn .canlearn_list {
  width: fit-content;
  margin: 40px auto 0;
  line-height: 1.6;
  counter-reset: number 0; 
  }
.canlearn .canlearn_list li {
  position: relative;
  margin-left: 15px;
  padding: 0.2em 0.5em 0.2em 1.5em;
  background: #fff;
  border-radius: 5px;
  color: #333;
  font-size: 26px;
  text-align: left;
  }
.canlearn .canlearn_list li + li {
  margin-top: 34px;
  }
.canlearn .canlearn_list li::before {
  position: absolute;
  left: -27px;
  top: 50%;
  transform: translateY(-50%);
  width: 53px;
  height: 53px;
  padding-top: 0.4em;
  background: #EA5520;
  box-sizing: border-box;
  border-radius: 50%;
  color: #fff;
  font-family: 'Josefin Slab', serif;
  font-size: 32px;
  text-align: center;
  line-height: 1;
  counter-increment: number 1;
  content: counter(number) '';
}
.canlearn .canlearn_list li span {
  color: #EA5520;
}
@media screen and (max-width: 599px) {
  .canlearn {
    padding-top: 60px;
  }
  .canlearn .canlearn_box {
    padding: 18px 4% 40px;
  }
  .canlearn .canlearn_heading {
    margin-bottom: 0;
  }
  .canlearn .canlearn_heading svg {
    flex-basis: 48px;
  }
  .canlearn .canlearn_heading .heading_txt {
    padding: 0;
    font-size: 20px;
  }
  .canlearn .canlearn_heading .heading_txt .num {
    font-size: 34px;
  }
  .canlearn .canlearn_list {
    margin-top: 28px;
  }
  .canlearn .canlearn_list li {
    margin-left: 20px;
    padding: 0.5em 0.5em 0.5em 1.8em;
    font-size: 16px;
  }
  .canlearn .canlearn_list li + li {
    margin-top: 17px;
  }
  .canlearn .canlearn_list li::before {
    left: -21px;
    width: 42px;
    height: 42px;
    padding-top: 0.4em;
    font-size: 25px;
  }
}

/* ----------------------
.web_movie_thumbnail
---------------------- */
.web_movie_thumbnail {
  margin: 50px auto;
  text-align: center;
}
@media screen and (max-width: 599px){
  .web_movie_thumbnail {
    margin: 30px auto;
  }
}

/* ----------------------
.web_course
---------------------- */
.web_course article {
  padding-bottom: 80px;
}
@media screen and (max-width: 599px) {
  .web_course article {
    padding-bottom: 50px;
  }
}

/* ----------------------
campaign
---------------------- */
.campaign .campaign_inner {
  margin-bottom: 0;
}