@charset "utf-8";

/* スタイルシート
作成者：Hatomi Inc.
作成日：R8.05.07
-------------------------------------------------------------------------------------*/

.home{
  background: #D7E4F3;
}

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

mv

*****************************/
.mv{
  overflow: hidden;
}

@media screen and (min-width: 701px){

  .mv{
    padding: 0;
  }

}

/* TB/SP */
@media screen and (max-width: 700px){

  .mv{
    padding: 0 0 2rem;
  }

}


.mv .column__outer{
  padding-left: 0;
  padding-right: 0;
}

/* PC */
@media screen and (min-width: 1301px){
  .mv .column__outer{
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* TB */
@media screen and (min-width: 481px) and (max-width: 1300px){
  .mv .column__outer{
    padding-left: 0;
    padding-right: 0;
  }
}

/* SP */
@media screen and (max-width: 480px){
  .mv .column__outer{
    padding-left: 0;
    padding-right: 0;
  }
}

.mv .column__inner{
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0;
}

@media screen and (max-width: 700px){

  .mv .column__inner{
    padding: 0;
  }

}


/* =========================
visual
========================= */

.mv__visual{
  position: relative;
}

@media screen and (max-width: 700px){

  .mv__visual{
  }

}


.mv__visual img{
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 700px){

  .mv__visual img{
    width: 100%;
  }

}


/* =========================
button wrap
========================= */

.mv__btnWrap{
  position: static;
}

@media screen and (max-width: 700px){

  .mv__btnWrap{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: center;
    gap: 1rem;

    padding: 1.5rem 0 0;
  }

}

/* 550以下 */
@media screen and (max-width: 550px){

  .mv__btnWrap{
    grid-template-columns: 1fr;
  }

}


/* =========================
button base
========================= */

.mv__btn{
  position: absolute;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  box-sizing: border-box;
  border-radius: 999px;

  color: #fff;
  font-weight: 700;
  letter-spacing: .03em;
  text-decoration: none;
  white-space: nowrap;

  transition: opacity .3s;
}

@media screen and (max-width: 700px){

  .mv__btn{
    position: relative;

    width: 100%;
    min-height: 56px;

    padding: 0 50px 0 1.25rem;

    font-size: 14px;
    line-height: 1.2;
				max-width: 100%;
  }

}


.mv__btn:hover{
  opacity: .85;
}


.mv__btn::after{
  content: "";

  position: absolute;
  top: 50%;
  right: 25px;

  transform: translateY(-50%);

  width: 0;
  height: 0;

  /*border-top: .45em solid transparent;
  border-bottom: .45em solid transparent;
  border-left: .7em solid #fff;*/
  border-top: .3em solid transparent;
  border-bottom: .3em solid transparent;
  border-left: .5em solid #fff;
}


/* =========================
entry button
========================= */

.mv__btn--entry{
  left: 2.5%;
  /*bottom: 7%;*/
  bottom: 8%;

  width: 300px;
  min-height: 54px;
  padding: 0 50px 0 1.5rem;

  background: linear-gradient(
    90deg,
    #FF9800 0%,
    #FF6B00 100%
  );

  /*font-size: 16px;*/
  font-size: 23px;
 /* line-height: 1.2;*/
    line-height: 3;
}

@media screen and (min-width: 701px) and (max-width: 1000px){

  .mv__btn--entry{
    width: 240px;
    min-height: 48px;

    font-size: 18px;
  }

}

@media screen and (max-width: 700px){

  .mv__btn--entry{
    left: auto;
    bottom: auto;
      font-size: 16px;
  }

}


/* =========================
seminar button
========================= */

.mv__btn--seminar{
  right: 1.5%;
  bottom: 2.5%;

  width: 300px;
  min-height: 70px;
  padding: 0 50px 0 2rem;

  background: linear-gradient(
    90deg,
    #2D5DE8 0%,
    #2AB6F1 100%
  );

  font-size: 15px;
  line-height: 1.2;
  text-align: center;
}

@media screen and (min-width: 701px) and (max-width: 1000px){

  .mv__btn--seminar{
    width: 240px;
    min-height: 72px;

    font-size: 14px;
  }

}

@media screen and (max-width: 700px){

  .mv__btn--seminar{
    right: auto;
    bottom: auto;
  }

}


.mv__btn--seminar span{
  display: inline;
}


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

Component

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

/* title__bar */
.title__bar{
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 3rem;
  padding: 0 3.5rem 0 2rem;
  background: #004b99;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2;
}

.title__bar::after{
  content: "";
  position: absolute;
  top: 0;
  right: -3rem;
  width: 0;
  height: 0;
  border-bottom: 3rem solid #004b99;
  border-right: 3rem solid transparent;
}

/* c-largeButton */
.c-largeButton{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 30rem;
  min-height: 6rem;
  padding: 2rem 1rem 2rem 1rem;
  background: #004b99;
  border-radius: 1rem;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
		margin: 0 auto;
}

.c-largeButton:hover{
  opacity: 0.85;
}

.c-largeButton__text{
  font-size: 1.0rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.c-largeButton__icon{
  position: absolute;
  top: 50%;
  right: .7rem;
  width: 1.75rem;
  height: 1.75rem;
  border: 1px solid #fff;
  border-radius: 50%;
  transform: translateY(-50%);
}

.c-largeButton__icon::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translate(-20%, -50%) rotate(45deg);
}

.c-largeButton__icon::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 1px;
  background: #fff;
  transform: translate(-50%, -50%);
}




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

purpose

*****************************/
.p-purpose{
  padding: 0 0 5rem;
}

@media screen and (min-width: 701px){
  .p-purpose{
  }
}

/* TB */
@media screen and (min-width: 481px) and (max-width: 700px){
  .p-purpose{
  }
}

/* SP */
@media screen and (max-width: 480px){
  .p-purpose{
  }
}


.p-purpose__body{
  background: #ffffff;
  padding: 3rem 2rem;
}

@media screen and (min-width: 701px){
  .p-purpose__body{
  }
}

/* TB */
@media screen and (min-width: 481px) and (max-width: 700px){
  .p-purpose__body{
    padding: 3rem 1.5rem;
  }
}

/* SP */
@media screen and (max-width: 480px){
  .p-purpose__body{
    padding: 2rem 1.5rem;
  }
}


.p-purpose__lead{
}

@media screen and (min-width: 701px){
  .p-purpose__lead{
    margin-bottom: 4rem;
  }
}

/* TB */
@media screen and (min-width: 481px) and (max-width: 700px){
  .p-purpose__lead{
    margin-bottom: 3rem;
  }
}

/* SP */
@media screen and (max-width: 480px){
  .p-purpose__lead{
    margin-bottom: 2.5rem;
  }
}

.p-purpose__lead p{
  line-height: 2;
}

.p-purpose__visual{
}

@media screen and (min-width: 701px){
  .p-purpose__visual, .p-purpose__visual_flow{
    margin-bottom: 4rem;
  }
}

/* TB */
@media screen and (min-width: 481px) and (max-width: 700px){
  .p-purpose__visual, .p-purpose__visual_flow{
    margin-bottom: 3rem;
  }
}

/* SP */
@media screen and (max-width: 480px){
  .p-purpose__visual, .p-purpose__visual_flow{
    margin-bottom: 2.5rem;
  }
}

.p-purpose__visual img{
  width: 100%;
  height: auto;
  display: block;
}

.p-purpose__buttonList{
gap: 1rem 1rem;
}

@media screen and (min-width: 651px){
  .p-purpose__buttonList{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 650px){
  .p-purpose__buttonList{
    display: grid;
    grid-template-columns: 1fr;
  }
}

.p-purpose .c-largeButton{
}

@media screen and (max-width: 650px){
  .p-purpose .c-largeButton{
    max-width: 100%;
				padding: 1.5rem 1rem;
				min-height: 2rem;
  }
}


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

recruit

*****************************/
.p-recruit{
  padding: 0 0 5.5rem;
}

@media screen and (min-width: 701px){
  .p-recruit{
  }
}

/* TB */
@media screen and (min-width: 481px) and (max-width: 700px){
  .p-recruit{
    padding: 0 0 5rem;
  }
}

/* SP */
@media screen and (max-width: 480px){
  .p-recruit{
    padding: 0 0 4rem;
  }
}


.p-recruit__body{
  background: #ffffff;
  padding: 2rem 2rem;
}

@media screen and (min-width: 701px){
  .p-recruit__body{
  }
}

/* TB */
@media screen and (min-width: 481px) and (max-width: 700px){
  .p-recruit__body{
    padding: 2rem 2rem;
  }
}

/* SP */
@media screen and (max-width: 480px){
  .p-recruit__body{
    padding: 2rem 2rem;
  }
}


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

unit

*****************************/
.p-recruitUnit{
}

@media screen and (min-width: 701px){
  .p-recruitUnit{
    margin-top: 5rem;
  }

  .p-recruitUnit:first-child{
    margin-top: 0;
  }
  .p-recruitUnit.mts{
    margin-top: 3rem;
  }

}

/* TB */
@media screen and (min-width: 481px) and (max-width: 700px){
  .p-recruitUnit{
    margin-top: 4rem;
  }

  .p-recruitUnit:first-child{
    margin-top: 0;
  }
  .p-recruitUnit.mts{
    margin-top: 2rem;
  }
}

/* SP */
@media screen and (max-width: 480px){
  .p-recruitUnit{
    margin-top: 3rem;
  }

  .p-recruitUnit:first-child{
    margin-top: 0;
  }
  .p-recruitUnit.mts{
    margin-top: 1rem;
  }
}


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

heading

*****************************/
.p-recruitHeading{
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #004A8F;
}

@media screen and (min-width: 701px){
  .p-recruitHeading{
    margin-bottom: 2rem;
  }
}

/* TB */
@media screen and (min-width: 481px) and (max-width: 700px){
  .p-recruitHeading{
    margin-bottom: 1.5rem;
  }
}

/* SP */
@media screen and (max-width: 480px){
  .p-recruitHeading{
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
  }
}


.p-recruitHeading__icon{
  width: 1rem;
  height: 1rem;
  background: #004A8F;
  flex-shrink: 0;
}


.p-recruitHeading small{
  font-size: 0.65em;
  font-weight: 700;
}

@media screen and (max-width: 480px){
  .p-recruitHeading small{
    width: 100%;
  }
}


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

table

*****************************/
.p-recruitTableWrap{
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media screen and (min-width: 701px){
  .p-recruitTableWrap{
  }
}

/* TB */
@media screen and (min-width: 481px) and (max-width: 700px){
  .p-recruitTableWrap{
    padding-bottom: 1rem;
  }
}

/* SP */
@media screen and (max-width: 480px){
  .p-recruitTableWrap{
    padding-bottom: 1rem;
  }
}


.p-recruitTable{
  width: 100%;
  min-width: 1000px;
  border-collapse: collapse;
  table-layout: fixed;
  background: #ffffff;
}


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

col width

*****************************/
.p-recruitTable__col01{
  width: 120px;
}

.p-recruitTable__col02{
  width: 130px;
}

.p-recruitTable__col03{
  width: 130px;
}

.p-recruitTable__col04{
  width: 130px;
}

.p-recruitTable__col05{
  width: 130px;
}

.p-recruitTable__col06{
  width: 130px;
}


.p-recruitTable th,
.p-recruitTable td{
  border: 1px solid #4C81BF;
  padding: .5rem;
  vertical-align: middle;
  line-height: 1.7;
		font-size: 90%;
}

.p-recruitTable th{
  border-bottom: 1px solid #CCC;
}

.p-recruitTable tr:nth-last-of-type(1) th{
  border-bottom: 1px solid #4C81BF;
}

@media screen and (min-width: 701px){
  .p-recruitTable th,
  .p-recruitTable td{
  }
}

/* TB */
@media screen and (min-width: 481px) and (max-width: 700px){
  .p-recruitTable th,
  .p-recruitTable td{
    font-size: 0.875rem;
    padding: 0.875rem;
  }
}

/* SP */
@media screen and (max-width: 480px){
  .p-recruitTable th,
  .p-recruitTable td{
    font-size: 0.8125rem;
    padding: 0.75rem;
  }
}


.p-recruitTable__head{
  background: #4C81BF;
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  white-space: nowrap;
}


.p-recruitTable__theme{
  background: #F3F0E8;
  text-align: center;
  font-weight: 700;
}

.p-recruitTable tr td:nth-of-type(2){
  background: #F3F0E8;
}



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

support

*****************************/
.p-recruitSupport{
  display: flex;
  align-items: center;
  gap: 1rem;
}

@media screen and (min-width: 701px){
  .p-recruitSupport{
    margin-top: 2.5rem;
  }
}

/* TB */
@media screen and (min-width: 481px) and (max-width: 700px){
  .p-recruitSupport{
    margin-top: 2rem;
    align-items: flex-start;
  }
}

/* SP */
@media screen and (max-width: 480px){
  .p-recruitSupport{
    display: block;
    margin-top: 1.5rem;
  }
}


.p-recruitSupport__icon{
  flex-shrink: 0;
}

@media screen and (min-width: 701px){
  .p-recruitSupport__icon{
    width: 6rem;
  }
}

/* TB */
@media screen and (min-width: 481px) and (max-width: 700px){
  .p-recruitSupport__icon{
    width: 5rem;
  }
}

/* SP */
@media screen and (max-width: 480px){
  .p-recruitSupport__icon{
    width: 4.5rem;
				margin: 0 auto 1rem;
  }
}


.p-recruitSupport__icon img{
  width: 100%;
  display: block;
}


.p-recruitSupport__text p{
  font-size: 1rem;
  line-height: 2;
  font-weight: 700;
}

@media screen and (min-width: 701px){
  .p-recruitSupport__text p{
		line-height: 1.6;
  }
}

/* TB */
@media screen and (min-width: 481px) and (max-width: 700px){
  .p-recruitSupport__text p{
    line-height: 1.6;
  }
}

/* SP */
@media screen and (max-width: 480px){
  .p-recruitSupport__text p{
    line-height: 1.6;
  }
}


.p-recruitSupport__text span.marker{
  background: linear-gradient(transparent 60%, #FFF28A 60%);
}

.p-recruitSupport__text span.marker span.largetxt{
  font-size: 150%;
		font-weight: bold;
}

.p-recruitSupport__text br.sp__view{
  display: inline;
}

@media screen and (max-width: 700px){
  .p-recruitSupport__text br.sp__view{
    display: none;
  }
}


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

list

*****************************/
.p-recruitList{
  counter-reset: number;
}


.p-recruitList li{
  position: relative;
  padding-left: 2rem;
  font-size: 1rem;
  line-height: 1.6;
  counter-increment: number;
		font-weight: 500;
}

.p-recruitList li::before{
  content: counter(number);
  position: absolute;
  top: 0.3em;
  left: 0;
  width: 1.4rem;
  height: 1.4rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  line-height: 1;
  font-weight: 700;
}

@media screen and (min-width: 701px){
  .p-recruitList li{
    margin-top: .5rem;
  }

  .p-recruitList li:first-child{
    margin-top: 0;
  }
}

/* TB */
@media screen and (min-width: 481px) and (max-width: 700px){
  .p-recruitList li{
    margin-top: .5rem;
  }

  .p-recruitList li:first-child{
    margin-top: 0;
  }
}

/* SP */
@media screen and (max-width: 480px){
  .p-recruitList li{
    margin-top: .5rem;
  }

  .p-recruitList li:first-child{
    margin-top: 0;
  }
}


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

period

*****************************/
.p-recruitPeriod{
}


.p-recruitPeriod__row{
  display: flex;
  align-items: center;
  gap: 2rem;
}

@media screen and (min-width: 701px){
  .p-recruitPeriod__row{
    margin-top: 1.5rem;
  }

  .p-recruitPeriod__row:first-child{
    margin-top: 0;
  }
}

/* TB */
@media screen and (min-width: 481px) and (max-width: 700px){
  .p-recruitPeriod__row{
    gap: 1rem;
    margin-top: 1rem;
  }

  .p-recruitPeriod__row:first-child{
    margin-top: 0;
  }
}

/* SP */
@media screen and (max-width: 480px){
  .p-recruitPeriod__row{
    display: block;
    margin-top: 1rem;
  }

  .p-recruitPeriod__row:first-child{
    margin-top: 0;
  }
}


.p-recruitPeriod__label{
  width: 11rem;
  min-width: 11rem;
  flex-shrink: 0;
  box-sizing: border-box;
  background: #004A8F;
  color: #ffffff;
  border-radius: .5rem;
  padding: 0.3rem 1rem;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

@media screen and (min-width: 701px){
  .p-recruitPeriod__label{
  }
}

/* TB */
@media screen and (min-width: 481px) and (max-width: 700px){
  .p-recruitPeriod__label{
    width: 9rem;
    min-width: 9rem;
    font-size: 0.9375rem;
  }
}

/* SP */
@media screen and (max-width: 480px){
  .p-recruitPeriod__label{
    width: 100%;
    min-width: 100%;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
  }
}


.p-recruitPeriod__text{
  font-size: 1rem;
  line-height: 1.8;
		font-weight: bold;
}

@media screen and (min-width: 701px){
  .p-recruitPeriod__text{
  }
}

/* TB */
@media screen and (min-width: 481px) and (max-width: 700px){
  .p-recruitPeriod__text{
		line-height: 1.4;
  }
}

/* SP */
@media screen and (max-width: 480px){
  .p-recruitPeriod__text{
    line-height: 1.7;
  }
}

.p-recruitPeriod__text.large{
  font-size: 120%;
}

.p-recruitPeriod__text br.sp__view{
display: none;
}

@media screen and (min-width: 481px) and (max-width: 610px){
  .p-recruitPeriod__text br.sp__view{
    display: inline;
  }
}

.p-recruitPeriod__text small{
    font-size: 0.8rem;
    font-weight: normal;
    margin-left: 0.5rem;
}
.p-recruitUnit p.note{
    margin-top: 1rem;
}

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

notes

*****************************/
.p-recruitNotes{
}


.p-recruitNotes li{
  position: relative;
  padding-left: 1.25rem;
  font-size: 1rem;
  line-height: 2;
}

.p-recruitNotes li::before{
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (min-width: 701px){
  .p-recruitNotes li{
    margin-top: .2rem;
  }

  .p-recruitNotes li:first-child{
    margin-top: 0;
  }
}

/* TB */
@media screen and (min-width: 481px) and (max-width: 700px){
  .p-recruitNotes li{
    margin-top: 0.2rem;
  }

  .p-recruitNotes li:first-child{
    margin-top: 0;
  }
}

/* SP */
@media screen and (max-width: 480px){
  .p-recruitNotes li{
    margin-top: 0.2rem;
    font-size: 0.9375rem;
    line-height: 1.9;
  }

  .p-recruitNotes li:first-child{
    margin-top: 0;
  }
}


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

flow

*****************************/
.p-flow{
}

@media screen and (min-width: 701px){
  .p-flow{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }
}

/* TB */
@media screen and (min-width: 481px) and (max-width: 700px){
  .p-flow{
    display: block;
  }
}

/* SP */
@media screen and (max-width: 480px){
  .p-flow{
    display: block;
  }
}


.p-flow__item{
}

@media screen and (min-width: 701px){
  .p-flow__item{
    width: 18rem;
  }
}

/* TB */
@media screen and (min-width: 481px) and (max-width: 700px){
  .p-flow__item{
    width: 15rem;
    margin: 0 auto;
  }
}

/* SP */
@media screen and (max-width: 480px){
  .p-flow__item{
    width: 13rem;
    margin: 0 auto;
  }
}


.p-flow__item img{
  width: 100%;
  display: block;
}


.p-flow__arrow{
  width: 0;
  height: 0;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
  border-left: 45px solid #F3C517;
}

@media screen and (min-width: 701px){
  .p-flow__arrow{
  }
}

/* TB */
@media screen and (min-width: 481px) and (max-width: 700px){
  .p-flow__arrow{
    margin: 1.5rem auto;
    border-left: 22px solid transparent;
    border-right: 22px solid transparent;
    border-top: 45px solid #F3C517;
    border-bottom: 0;
  }
}

/* SP */
@media screen and (max-width: 480px){
  .p-flow__arrow{
    margin: 1.25rem auto;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 40px solid #F3C517;
    border-bottom: 0;
  }
}


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

entry button

*****************************/
.p-recruitEntryButton{
}

@media screen and (min-width: 701px){
  .p-recruitEntryButton{
    margin-top: 4rem;
    display: flex;
    justify-content: center;
  }
}

/* TB */
@media screen and (min-width: 481px) and (max-width: 700px){
  .p-recruitEntryButton{
    margin-top: 3rem;
  }
}

/* SP */
@media screen and (max-width: 480px){
  .p-recruitEntryButton{
    margin-top: 2.5rem;
  }
}


.c-entryButton{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4.5rem;
  padding: 1rem 1rem 1rem 1rem;
  border-radius: 999px;
  background: linear-gradient(
    to bottom,
    #FF9A00 0%,
    #FE5100 100%
  );
  text-decoration: none;
}

.c-entryButton:hover{
  color: #FFF;
  background: linear-gradient(
    to bottom,
    #FFB238 0%,
    #FF6A1F 100%
  );
}

@media screen and (min-width: 701px){
  .c-entryButton{
    width: 30rem;
  }
}

/* TB */
@media screen and (min-width: 481px) and (max-width: 700px){
  .c-entryButton{
    width: 100%;
    min-height: 5rem;
  }
}

/* SP */
@media screen and (max-width: 480px){
  .c-entryButton{
    width: 100%;
    min-height: 4.5rem;
    /*padding: 1rem 4rem 1rem 1.5rem;*/
    padding: 1rem 2rem 1rem 1.5rem;
  }
}

.c-entryButton__text{
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.4;
}

@media screen and (min-width: 701px){
  .c-entryButton__text{
  }
}

/* TB */
@media screen and (min-width: 481px) and (max-width: 700px){
  .c-entryButton__text{
    font-size: 1rem;
  }
}

/* SP */
@media screen and (max-width: 480px){
  .c-entryButton__text{
    font-size: 0.95rem;
  }
}


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

icon

*****************************/
.c-entryButton__icon{
  position: absolute;
  top: 50%;
  right: 15px;
  width: 2rem;
  height: 2rem;
  border: 1px solid #ffffff;
  border-radius: 50%;
  transform: translateY(-50%);
}

.c-entryButton__icon::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  transform: translate(-20%, -50%) rotate(45deg);
}

.c-entryButton__icon::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 1px;
  background: #ffffff;
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 701px){
  .c-entryButton__icon{
  }
}

/* TB */
@media screen and (min-width: 481px) and (max-width: 700px){
  .c-entryButton__icon{
    width: 1.85rem;
    height: 1.85rem;
  }
}

/* SP */
@media screen and (max-width: 480px){
  .c-entryButton__icon{
    width: 1.7rem;
    height: 1.7rem;
  }
}










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

scroll hint

*****************************/
.tableArea{
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media screen and (min-width: 701px){
  .tableArea{
  }
}

/* TB */
@media screen and (min-width: 481px) and (max-width: 700px){
  .tableArea{
    padding-bottom: 1rem;
  }
}

/* SP */
@media screen and (max-width: 480px){
  .tableArea{
    padding-bottom: 1rem;
  }
}



.scroll-hint-icon-wrap{
  top: auto !important;
  bottom: 1rem;
  right: 1rem !important;
  transform: none !important;
		z-index: 999;
}

@media screen and (min-width: 701px){
  .scroll-hint-icon-wrap{
  }
}

/* TB */
@media screen and (min-width: 481px) and (max-width: 700px){
  .scroll-hint-icon-wrap{
  }
}

/* SP */
@media screen and (max-width: 480px){
  .scroll-hint-icon-wrap{
  }
}


.scroll-hint-text{
  font-size: 0.75rem !important;
  font-weight: 700;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 701px){
  .scroll-hint-text{
  }
}

/* TB */
@media screen and (min-width: 481px) and (max-width: 700px){
  .scroll-hint-text{
  }
}

/* SP */
@media screen and (max-width: 480px){
  .scroll-hint-text{
  }
}



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

outline

*****************************/
.p-outline{
  padding: 3rem 0 5rem;
}

/* TB */
@media screen and (min-width: 481px) and (max-width: 900px){
  .p-outline{
    padding: 3.5rem 0 4rem;
  }
}

/* SP */
@media screen and (max-width: 480px){
  .p-outline{
    padding: 3rem 0;
  }
}


.p-outline .column__inner{
  max-width: 1000px;
}


.p-outline__body{
  padding: 2rem;
  background: #fff;
}

/* SP */
@media screen and (max-width: 480px){
  .p-outline__body{
    padding: 1.5rem;
  }
}


.p-outline__top{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24rem;
  gap: 3rem;
  align-items: start;
}

/* TB */
@media screen and (min-width: 481px) and (max-width: 900px){
  .p-outline__top{
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* SP */
@media screen and (max-width: 480px){
  .p-outline__top{
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}


.p-outline__main{
  min-width: 0;
}


.p-outline__side{
  width: 100%;
}


.p-outline__bottom{
  margin-top: 1.5rem;
}


.p-outline__item{
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.p-outline__item:first-child{
  margin-top: 0;
}


.p-outline__item--start{
  align-items: flex-start;
}

/* SP */
@media screen and (max-width: 480px){
  .p-outline__item{
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}


.p-outline__label{
  width: 10rem;
  min-height: 1.8rem;
  padding: 0.45rem 1rem;
  background: #004b99;
  border-radius: 0.35rem;
  color: #fff;
  font-size: 90%;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  flex-shrink: 0;
}

/* SP */
@media screen and (max-width: 480px){
  .p-outline__label{
    width: 100%;
    min-height: auto;
  }
}


.p-outline__content{
  flex: 1;
  min-width: 0;
  color: #004b99;
}


.p-outline__content strong{
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

/* TB */
@media screen and (min-width: 481px) and (max-width: 900px){
  .p-outline__content strong{
    font-size: 1.2rem;
  }
}

/* SP */
@media screen and (max-width: 480px){
  .p-outline__content strong{
    font-size: 1.1rem;
  }
}


.p-outline__content--price{
}

@media screen and (max-width: 900px){
.p-outline__content--price{
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  flex-wrap: wrap;
}
}


.p-outline__content--price strong{
  line-height: 1.2;
}


.p-outline__content--price span{
  color: #111;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.5;
}

/* SP */
@media screen and (max-width: 480px){
  .p-outline__content--price{
    flex-direction: column;
    gap: 0.25rem;
  }
}


.p-outline__targetTitle{
  margin-bottom: 0.5rem;
  color: #004b99;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
}

/* SP */
@media screen and (max-width: 480px){
  .p-outline__targetTitle{
    font-size: 1.1rem;
  }
}


.p-outline__targetList li{
  position: relative;
  padding-left: 1.2rem;
  color: #111;
  font-size: 1rem;
  line-height: 1.8;
}

.p-outline__targetList li::before{
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}


.p-outline__cta{
  margin-top: 3rem;
}

/* TB */
@media screen and (min-width: 481px) and (max-width: 700px){
  .p-outline__cta{
    margin-top: 2.5rem;
  }
}

/* SP */
@media screen and (max-width: 480px){
  .p-outline__cta{
    margin-top: 2rem;
  }
}



/* outlineButton */
.p-outlineButton{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 22.5rem;
  min-height: 4.5rem;
  padding: 1.25rem 1rem;
  background: #004b99;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
  margin: 0 auto;
}

.p-outlineButton:hover{
  opacity: 0.85;
}


.p-outlineButton__text{
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

/* SP */
@media screen and (max-width: 480px){
  .p-outlineButton__text{
    font-size: 1.1rem;
  }
}


.p-outlineButton__icon{
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  border: 1px solid #fff;
  border-radius: 50%;
  transform: translateY(-50%);
}


.p-outlineButton__icon::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.45rem;
  height: 0.45rem;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translate(-20%, -50%) rotate(45deg);
}


.p-outlineButton__icon::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.9rem;
  height: 1px;
  background: #fff;
  transform: translate(-50%, -50%);
}



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

problem

*****************************/
.p-problem{
		margin-bottom: 5rem;
}



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

p-recruit txt

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

.p-recruitList__lead{
    font-weight: 700;
}
@media screen and (min-width: 701px){
  .p-recruitList__lead{
      margin-top: 0.8rem;
    margin-bottom: 1rem;
  }
}

/* TB */
@media screen and (min-width: 481px) and (max-width: 700px){
  .p-recruitList__lead{
    margin-top: 0.5rem;
    margin-bottom: 0.8rem;
  }
}

/* SP */
@media screen and (max-width: 480px){
  .p-recruitList__lead{
    margin-bottom: 0.5rem;
  }
}


.p-recruitHeading__icon{
  width: 1rem;
  height: 1rem;
  background: #004A8F;
  flex-shrink: 0;
}

.p-recruitTxt__lead .large{
    font-size: 120%;
    font-weight: bold;
    color: #004A8F;
}
.p-recruitTxt__lead small{
    font-size: 0.8em;
    margin-left: 0.5rem;
}