/*************************************
style.css
*************************************/

.f_ss {font-size: 80%;}
.f_s {font-size: 90%;}
.f_m {font-size: 110%;}
.f_l {font-size: 120%;}

.f_orangered {color: #FF3B2A;}

.f_bold {font-weight: bold;}
.f_deco_ul {text-decoration: underline;}

.l_space_l {letter-spacing: .9rem;}

.asta {font-size: 90%;}
.asta::before {content: "※";}
.attention {margin-top: 3rem;}

.sp_br {display: block;}
.pc_br {display: none;}

.breakpoint {
    text-align: center;
    color: #036eb8;
    margin: 4rem 0 5rem;
    letter-spacing: .2rem;
}

section {
    max-width: 800px;
  margin: 2rem auto 4rem auto;
}

figure img {
    width: 100%;
}

.main_title {
  width: fit-content;
  margin: 5rem auto 4rem;
  text-align: left;
  color: #036eb8;
  font-weight: 900;
  letter-spacing: 0.2rem;
}

.main_title h1 {
    font-size: 1.3rem;
    text-align: center;
}

.main_title h3 {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 2rem;
}

.main_message {
    position: relative;
    margin: 4rem 6rem 0;
    padding: 2.5rem 3rem 1.5rem;
    box-shadow: 6px 6px #036eb8;
    background: linear-gradient(135deg, transparent 20px, #f0f8ff 20px);
	font-size: 1.1rem;
    letter-spacing: .1rem;
}

.main_message::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    background: #036eb8;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.main_message h2 {
    font-weight: bold;
    color: #036eb8;
    border-bottom: 1px dotted #036eb8;
    padding-bottom: 1rem;
}

.main_message p {
	text-align: justify;
	line-height: 2.2rem;
}


@media screen and (orientation: portrait) and (max-width: 767px){
	
  .sp_br {display: none;}
  .pc_br {display: block;}
    
    .breakpoint {
    margin: 3rem 0 3rem;
}
    
    section {
    max-width: 90%;
  margin: 1rem auto 3rem auto;
}
    
    .main_title {
  margin: 3rem 1rem 2rem;
  letter-spacing: 0.1rem;
        transform: rotate(-4deg)
}
    
    .main_title h3 {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.7rem;
}

.main_message {
    margin: 3rem auto 1.5rem;
    padding: 1.5rem 1.5rem 0.5rem;
    width: 90%;
    background: linear-gradient(135deg, transparent 10px, #f0f8ff 10px);
  }
    
    .main_message::before {
    width: 15px;
    height: 15px;
    background: #036eb8;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
		
.main_message p {
	line-height: 2.1rem;
	letter-spacing: .05rem;
}
    
    
}





/* place_fee
============================ */

.place_fee {
    letter-spacing: .1rem;
    border: 1px solid #036eb8;
    padding: 2rem 2rem 1.5rem;
    width: fit-content;
    margin: 0 auto;
    position: relative;
}

.place_fee dl {
    display: flex;
    margin-bottom: 1rem;
    column-gap: 3rem;
    border-bottom: 1px dotted #036eb8;
    padding-bottom: 1rem;
}

.place_fee dl dt {
    color: #036eb8;
    width: 30%;
    font-size: 1.2rem;
    white-space: nowrap;
}

.place_fee dl dd {
    width: 70%;
    font-size: 1.2rem;
}

.place_fee dl dd ul li:not(:last-of-type) {
    margin-bottom: 1rem;
}

.place_fee img {
    position: absolute;
    bottom: 5.5rem;
    right: 1rem;
    width: 150px;
    height: 150px;
}

@media screen and (orientation: portrait) and (max-width: 767px){
    
    .place_fee {
    padding: 1rem 1.5rem 1rem;
}
    
    .place_fee dl {
    display: block;
}
    
    .place_fee dl dt {
    width: 100%;
        margin-bottom: 1rem;
}

.place_fee dl dd {
    width: 100%;
    margin-left: .5rem;
}
    
    .place_fee img {
    bottom: 8rem;
    right: .5rem;
}
    
}



/* main_step
============================ */

.main_step {
	max-width: 960px;
	display: flex;
	flex-flow: column;
	justify-content: center;
	margin: 6rem auto .5rem auto;
}
.main_step_title {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  color: #036eb8;
  margin-bottom: 1.8rem;
  letter-spacing: .1rem;
}
.main_step_title:before, .main_step_title:after {
  border-top: 1px solid;
  content: "";
  flex-grow: 1;
}
.main_step_title:before {
  margin-right: 1rem; /* 文字の右隣 */
}
.main_step_title:after {
  margin-left: 1rem; /* 文字の左隣 */
}


.triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 30px solid #87cefa;
  border-right: 0;
  margin: auto 1.5rem;	
}

.application > section {
	display: flex;
	justify-content: center;
	margin-bottom: 1rem;
}
.triangle_application {
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  border-top: 30px solid #036eb8;
  border-bottom: 0;
}



@media screen and (orientation: portrait) and (max-width: 767px){

.main_step {
	margin: 3rem 0rem 1rem;
}
.main_step_title {
	font-size: 1.2rem;
}
.main_step_title:before, .main_step_title:after {
  width: 5rem; /* 線の長さ */
}
	
.application > section {
	margin-bottom: 0rem;
}
 
.triangle {
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 12px solid #87cefa;
  border-right: 0;
  margin: 0px auto 2px auto;	
  transform: rotate(90deg);
}
	
}

/* contact_banner
============================ */

@media screen and (orientation: portrait) and (max-width: 767px){

  .contact_banner .inner > p {
    padding: 2rem 0 0;
    font-size: 1.2rem;
  }

}


/* phone
============================ */
.contact_banner.phone .contact_txt {
  display: none;
}

.contact_banner.phone .phone_ikebukuro,
.contact_banner.phone .phone_kichijoji,
.contact_banner.phone .phone_tokyo {
  display: none;
}