/***************************************

style.css

***************************************/
/* ----------------------------

  common

---------------------------- */ 

.br_sp {display: none;}
.br_pc {display: block;}

.f_bold {font-weight: bold;}

.fc_blue {color: #036eb8;}

@media screen and (orientation: portrait) and (max-width: 767px) {
    
    .br_sp {display: block;}
    .br_pc {display: none;}

}
/* main img

============================ */
.main_img img {
  width: 100%;
  height: auto;
}
.main_img.closed {
  position: relative;
}
.main_img.closed::before {
  position: absolute;
  top: calc(50% - 1.6rem);
  right: 0;
  left: 0;
  z-index: 100;
  width: 60%;
  margin: 0 auto;
  padding: 1rem;
  border: 3px solid var(--Main_Color);
  background-color: #fff;
  border-radius: .5rem;
  color: #000;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", 'メイリオ', Meiryo, Helvetica, Arial, Sans-Serif;
  font-size: 1.2rem;
  line-height: 1.2;
  text-align: center;
  white-space: pre;
  content: '受付は終了しました。';
}
.main_img.closed::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .main_img.closed::before {
    width: 90%;
    padding: .5rem;
    font-size: 1rem;
    white-space: pre;
    content: '受付は終了しました。';
  }
}

/* main_catch

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

.main_catch {
    width: 80%;
    margin: 2rem auto;
    letter-spacing: .1rem;
}

.main_catch h1 {
    width: fit-content;
    font-weight: bold;
    font-size: 1.4rem;
    margin: 1rem auto;
    padding-bottom: .5rem;
    border-bottom: 2px solid #e55b1d;
}

.main_catch h2 {
    text-align: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.main_catch h3 {
    text-align: center;
    font-weight: bold;
    font-size: 1rem;
}

.main_catch p {
    line-height: 1.8rem;
}

@media screen and (orientation: portrait) and (max-width: 767px) {  
    .main_catch {
    width: 85%;
}
    
}


/* pamphlet

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

.pamphlet {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.pamphlet a {
    width: 55%;
    position: relative;
    padding: 1rem 1rem 1rem 2rem;
    background: var(--Main_Color);
    border-radius: .5rem;
    color: #fff;
    font-size: 1.1rem;
}

.pamphlet a:hover {
    opacity: .5;
}

.pamphlet a::after {
    position: absolute;
    top: calc(50% - .6rem);
    right: 1rem;
    width: auto;
    height: auto;
    border: none;
    line-height: 1;
    font-weight: 900;
    font-family: var(--Font_Awesome);
    content: var(--Arrow_Right);
}

@media screen and (orientation: portrait) and (max-width: 767px) {
    
    .pamphlet a {
    width: 85%;
}
    
}

/* point

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

.point {
    width: 80%;
    margin: 4rem auto;
}

.point dl {
    margin: 2.5rem 0;
}

.point dl dt {
    margin-bottom: 1rem;
    border-bottom: 1px solid #e55b1d;
    display: flex;
    align-items:flex-start;
}

.point dl dt .grade {
    font-weight: bold;
    color: #fff;
    background-color: #e55b1d;
    margin-right: 1rem;
    padding: .2rem .5rem;
    white-space: nowrap;
}

.point dl dt .g_catch {
    font-weight: bold;
    font-size: 1.1rem;
}

.point dl dd {
    line-height: 1.8rem;
}

@media screen and (orientation: portrait) and (max-width: 767px) {
    .point {
    width: 90%;
}
    
    .point dl {
    margin: 2rem 0;
}
    
}


/* course_fee

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

.course_fee {
    width: 80%;
    margin: 4rem auto;
    background-color: #fdf5e6;
    padding: 2rem;
}

.course_fee h4 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.course_fee .fee_waku {
    border: 1px solid #036eb8;
    padding: 2rem;
}

.course_fee .fee_waku dl {
    display: flex;
    border-bottom: 1px solid #036eb8;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}

.course_fee .fee_waku dl:nth-child(4) {
        display: flex;
    }

.course_fee .fee_waku dl dt {
    width: 45%;
}

.course_fee .fee_waku dl dd {
    width: 55%;
    line-height: 2rem;
    font-size: 1.1rem;
    letter-spacing: .1rem;
}

.course_fee .fee_waku ul li {
    text-indent: -3.1rem;
    margin-left: 3.1rem;
    font-size: .9rem;
}

.course_fee ul.asta {
    margin-top: 1rem;
}

.course_fee ul.asta li {
        font-size: .9rem;
}

.course_fee ul.asta li::before {
    content: "※";
}

@media screen and (orientation: portrait) and (max-width: 767px) {
    
    .course_fee {
    width: 100%;
    margin: 4rem auto;
    padding: 1rem;
}
    
.course_fee .fee_waku {
    padding: 1rem;
}
    
    .course_fee .fee_waku dl:nth-child(4) {
        display: block;
    }
    
    .course_fee .fee_waku dl:nth-child(4) dd {
        width: 100%;
    }
    
.course_fee .fee_waku dl dd {
    font-size: 1rem;
}
    
}


/* contact_banner

============================ */
.contact_banner .button dl:first-of-type dd.trial_btn a {
  background: #00578a;
  color: #fff;
}