/***************************************
top.css
***************************************/

h1.h1ttl {
  display: none;
}



/* campaign_box
============================ */
.campaign_box .note .fee {
  display: none;
}

.campaign_box .note .prep {
  display: block;
}


/* link_wrap_2026
============================ */

.link_wrap_2026 {
    border: 1px solid #555;
    padding: 2rem;
    margin: 5rem 0;
}

.link_wrap_2026 .link_list_2026 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.link_wrap_2026 .link_list_2026 li a {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 80%;
    height: 3.6rem;
    padding: 0rem 1rem 0 0;
    border-radius: .5rem;
    background: var(--Main_Color);
    color: #fff;
    font-size: 1.2rem;
    text-align: center;
    line-height: 1rem;
    margin: 1rem auto;
}

.link_wrap_2026 .link_list_2026 li a:hover {
    opacity: .5;
}

.link_wrap_2026 .link_list_2026 li 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);
}

.link_wrap_2026 p {
  font-size: 1.2rem;
  margin-bottom: 0;
  text-align: center;
}

.link_wrap_2026 p a {
  color: var(--Spring_Main_Color);
}

.link_wrap_2026 p a:hover {
    opacity: .5;
}

.link_wrap_2026 p a::after {
  padding-left: 1rem;
  font-weight: 900;
  font-family: var(--Font_Awesome);
  content: var(--Arrow_Right);
}


@media screen and (orientation: portrait) and (max-width: 767px){
    
    .link_wrap_2026 {
    border: 1px solid #555;
    padding: 1rem;
    margin: 4rem .5rem;
}
    
    .link_wrap_2026 .link_list_2026 li a {
    width: 100%;
    height: auto;
    padding: .8rem;
    border-radius: .5rem;
    font-size: 1.1rem;
    text-align: left;
    line-height: 1.5rem;
    margin: 1rem auto;
}
    
}



/* link_wrap
============================ */
.link_wrap .link_list span {
  font-size: 1rem;
}

.link_wrap p {
  font-size: 1.2rem;
  margin-bottom: 0;
  text-align: center;
}

.link_wrap p a {
  color: var(--Spring_Main_Color);
}

.link_wrap p a::after {
  padding-left: 1rem;
  font-weight: 900;
  font-family: var(--Font_Awesome);
  content: var(--Arrow_Right);
}



/* schedule
============================ */

.schedule {
  width: 80%;
  margin: 2rem auto;
}

.schedule > p {
  margin: 3rem 0 0 0;
  color: var(--Spring_Main_Color);
  font-weight: bold;
  font-size: 1.6rem;
  font-family: var(--Font_Weight_Bold);
}

.schedule > div {
  display: flex;
}

.schedule > div div {
  margin: 1rem;
}

.schedule > div div:nth-of-type(1) {
  flex: 2;
}

.schedule > div div:nth-of-type(2) {
  flex: 1;
}

.schedule > div ul {
  margin: 0 auto;
}

.schedule > div table {
  width: 100%;
  margin: 1rem auto;
  border-collapse: collapse;
}

.schedule > div table th,
.schedule > div table td {
  border: 1px solid #ccc;
}

.schedule > div table th {
  width: 40%;
  background-color: #eee;
}

.schedule > div table td {
  width: 60%;
}

.schedule > div table.term td {
  padding: .5rem 0 .5rem 1rem;
  text-align: left;
}

.schedule > div table.time td {
  padding: .5rem;
  text-align: right;
}


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

  .schedule {
    width: 96%;
    font-size: 1rem;
  }
  
  .schedule > p {
    font-size: 1.2rem;
  }

  .schedule > div {
    display: block;
  }

  .schedule > div div {
    margin: 1rem 0;
  }

  .schedule > div table th {
    width: 25%;
    background-color: #eee;
  }
  
  .schedule > div table td {
    width: 75%;
  }
  
  .schedule > div table.time {
    width: 60%;
  }
  
  .schedule > div table.time td {
    padding: .5rem 2rem .5rem 0;
  }

}


/* feature
============================ */

.feature {
  width: 80%;
  margin: 2rem auto;
}

.feature > p {
  max-width: 100%;
  margin: 4rem auto 2rem;
  padding: .5rem;
  border: 1px solid var(--Spring_Main_Color);
  color: var(--Spring_Main_Color);
  font-weight: 900;
  font-family: var(--Font_Weight_Bold);
  font-size: 1.6rem;
}

.feature_info + .feature_info {
  margin-top: 2rem;
}

.feature_list {
  display: flex;
  width: 100%;
}

.feature_list dt {
  display: block;
  position: relative;
  height: 4rem;
  width: 4rem;
  margin-right: 1rem;
  border-radius: 50%;
  background: var(--Spring_Main_Color);
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
  line-height: 5rem;
}

.feature_list dt::before {
  position: absolute;
  top: -1.2rem;
  left: .7rem;
  font-size: .8rem;
  content: 'POINT';
}

.feature_list dd {
  flex: 1;
}

.feature_list dd p:first-child {
  color: var(--Spring_Main_Color);
  font-size: 1.4rem;
  line-height: 1.4;
}


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

  .feature {
    width: 96%;
    font-size: 1rem;
  }

  .feature > p {
    font-size: 1.2rem;
  }

  .feature_list dd p:first-child {
    margin-top: .5rem;
    font-size: 1.2rem;
    line-height: 1.2;
  }

}


/* fday_experience

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

.arrow_box{
    position:relative;
    width:fit-content;
	margin: 3rem auto 0;
    background:#FFFFFF;
    padding:1rem 3rem;
    text-align:center;
    border:1px solid #000000;
    color:#000000;
    font-size:1.2rem;
    font-weight:bold;
    border-radius:10px;
}
.arrow_box:after,.arrow_box:before{
    border: solid transparent;
    content:'';
    height:0;
    width:0;
    pointer-events:none;
    position:absolute;
    top:100%;
    left:50%;
}
.arrow_box:after{
    border-color: rgba(255, 255, 255, 0);
    border-top-width:20px;
    border-bottom-width:20px;
    border-left-width:20px;
    border-right-width:20px;
    margin-left: -20px;
    border-top-color:#FFFFFF;
}
.arrow_box:before{
    border-color: rgba(0, 0, 0, 0);
    border-top-width:21px;
    border-bottom-width:21px;
    border-left-width:21px;
    border-right-width:21px;
    margin-left: -21px;
    margin-top: 1px;
    border-top-color:#000000;
}



.fday_experience {
	width: 90%;
	margin: 1rem auto 4rem;
	border: 1px solid #036eb8;
	border-radius: 10px;
	padding: 2.5rem;
	letter-spacing: .1rem;
}

.fday_experience > h2 {
	font-size: 1.7rem;
	text-align: center;
	padding-bottom: 3rem;
}

.fday_experience > h2::before {
	content: "＼";
	margin-right: 1rem;
}

.fday_experience > h2::after {
	content: "／";
	margin-left: 1rem;
}

.fday_experience > h3 {
	font-size: 1.4rem;
	text-align: center;
	padding: 1.5rem 0;
	margin: 0rem 0 2rem;
	background-color: #deebf7;
}

.fday_experience > h3 > span {
	font-size: 140%;
	padding: 0 .5rem;
}

.fday_experience > h4 {
	font-size: 1.5rem;
	text-align: center;
	margin-bottom: 3rem;
	line-height: 3rem;
	background-color: #f0f8ff;
	padding: .5rem 0;
}

.fday_experience > ul {
	padding-left: 2rem;
	margin: 0 2rem;
}

.fday_experience > ul > li {
	padding-bottom: 1rem;
	text-indent: -2rem;
}

.fday_experience > ul > li::before {
	content: "※";
	margin-left: 1rem;
}

.fday_experience > .link_bt {
	display: flex;
	justify-content: center;
	width: 350px;
	margin: 0 auto;
}

.fday_experience > .link_bt a {
	background: var(--Gradation_Red);
	    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 50px;
    margin: 1rem auto;
    padding-right: 15px;
    border-radius: 25px;
    color: #fff;
    font-weight: 900;
    font-family: var(--Font_Weight_Bold);
    font-size: 20px;
    text-align: center;
    line-height: 150%;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
}

.fday_experience > .link_bt a::after {
	    position: absolute;
    top: calc(45% - 10px);
    right: 15px;
    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){
	
	.arrow_box{
	margin: 2rem auto 0;
    padding:.5rem 2rem;
    font-size:1.1rem;
}
	
	.fday_experience {
	width: 90%;
	margin: 1rem auto 2rem;
	border: 1px solid #036eb8;
	padding: 1rem .8rem;
}
	
	.fday_experience > h2 {
		font-size: 1.5rem;
	padding-bottom: 1.5rem;
}
	
	.fday_experience > h2::before {
	content: "";
	margin-right: 0rem;
}

.fday_experience > h2::after {
	content: "";
	margin-left: 0rem;
}
	
	.fday_experience > h3 {
	font-size: 1.2rem;
	padding: 1rem 0;
	margin: 0rem 0 2rem;
}
	
	.fday_experience > h3 > span {
	font-size: 130%;
	padding: 0 .2rem;
}

.fday_experience > h4 {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	line-height: 2rem;
}
	
	.fday_experience > ul {
	padding-left: 1rem;
	margin: 0 0rem;
}
	
	.fday_experience > ul > li {
	padding-bottom: .5rem;
}
	
	.fday_experience > .link_bt {
	width: 100%;
	margin: 0 0rem;
}
	
}

/* apply_for

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

.apply_for {
    position: relative;
    width: 80%;
    padding: 1rem 3rem;
    margin: 0 auto 4rem;
    background-color: #deebf7;
    letter-spacing: .1rem;
}

.apply_for::after {
    position: absolute;
    content: "";
    border: 1px solid #036eb8;
    width: 102%;
    height: 106%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.apply_for p.to_apply {
    text-align: center;
    font-size: 1.3rem;
    font-weight: bold;
    margin: 1.5rem 0 2rem;
    color: #036eb8;
}

.apply_for ul {
    display: flex;
    flex-wrap:wrap;
    column-gap: 3rem;
    justify-content: center;
    
}

.apply_for ul li {
    width: calc((100% - 6rem) / 3);
    text-align: center;
}

.apply_for ul li a {
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 1.8rem;
    background: #ff8c00;
    color: #fff;
    font-weight: 900;
    font-family: var(--Font_Weight_Bold);
    font-size: 1.2rem;
    text-align: center;
    line-height: 1;
    padding: 1rem 0 1rem 1.5rem;
    margin: 1rem 0;
}

.apply_for ul li 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);
}

.apply_for ul li a:hover {
    opacity: .5;
    letter-spacing: .5rem;
}

.jh1_junbi {
    text-align: center;
    font-weight: bold;
    letter-spacing: .05rem;
    margin-bottom: 2rem;
}


.jh1_junbi a {
    text-decoration: underline;
}

@media screen and (orientation: portrait) and (max-width: 767px){
    
    .apply_for {
    width: 100%;
    padding: 1rem 1rem;
        letter-spacing: .01rem;
        margin: 0 auto 2rem;
}
    
.apply_for ul {
    column-gap: 1rem;
    justify-content: center;  
}
    
    .apply_for ul li {
    width: calc((100% - 2rem) / 3);
}
    
    .apply_for ul li a {
    padding: 1rem 0 1rem .8rem;
    margin: .8rem 0;
        font-size: 1.1rem;
}
    
    .apply_for ul li a::after {
    right: .4rem;
}

    
}





