@charset "UTF-8";
/*----------------------------------------------------

	サイトの基本設定のファイルです。
	最初の設定以外、基本変更することはありません。

----------------------------------------------------*/
/*--------------------------
	カラーの設定
--------------------------*/
/*--------------------------
	レイアウトの設定
--------------------------*/
/*--------------------------
	グリッドのガター
--------------------------*/
/*--------------------------
	レスポンシブの設定
--------------------------*/
/*--------------------------
	レスポンシブ関連
--------------------------*/
/*--------------------------
  アニメーションの設定
--------------------------*/
.font_color {
  color: #ff8a00;
}

.font_color2 {
  color: #141437;
}

.font_white {
  color: #fff;
}

.align_center {
  text-align: center;
}

.align_right {
  text-align: right;
}

.align_left {
  text-align: left;
}

.block {
  display: block;
}

.en {
  font-family: Montserrat, sans-serif;
}

.underline {
  text-decoration: underline;
}

.marker {
  background: linear-gradient(transparent 10%, #fffb8f 10%);
  font-weight: bold;
}

/**********************************  margin ************************************/
.m_bottom_10 {
  margin-bottom: 10px;
}

.m_bottom_20 {
  margin-bottom: 20px;
}

.m_bottom_30 {
  margin-bottom: 30px;
}

.m_bottom_40 {
  margin-bottom: 40px;
}

.m_bottom_50 {
  margin-bottom: 50px;
}

.m_bottom_60 {
  margin-bottom: 60px;
}

.m_bottom_70 {
  margin-bottom: 70px;
}

.m_bottom_80 {
  margin-bottom: 80px;
}

.m_bottom_90 {
  margin-bottom: 90px;
}

.m_bottom_100 {
  margin-bottom: 100px;
}

.m_bottom_110 {
  margin-bottom: 110px;
}

.m_bottom_120 {
  margin-bottom: 120px;
}

.m_bottom_140 {
  margin-bottom: 140px;
}

.m_bottom_160 {
  margin-bottom: 160px;
}

.m_left_30 {
  margin-left: 30px;
}

.m_top_50 {
  margin-top: 50px;
}

.m_top_100 {
  margin-top: 100px;
}

/**********************************  font size / weight ************************************/
.bold {
  font-weight: bold;
}

.red {
  color: #ff0000;
}

.font_9 {
  font-size: 0.9rem;
}

.font_12 {
  font-size: 1.2rem;
}

.font_14 {
  font-size: 1.4rem;
}

.font_16 {
  font-size: 1.6rem;
}

.font_18 {
  font-size: 1.8rem;
}

.font_20 {
  font-size: 2rem;
}

.font_22 {
  font-size: 2.2rem;
}

.font_24 {
  font-size: 2.4rem;
}

.font_26 {
  font-size: 2.6rem;
}

.font_28 {
  font-size: 2.8rem;
}

.font_32 {
  font-size: 3.2rem;
}

.font_36 {
  font-size: 3.6rem;
}

.font_40 {
  font-size: 4rem;
}

.font_44 {
  font-size: 4.4rem;
}

.font_52 {
  font-size: 5.2rem;
}

.font_60 {
  font-size: 6rem;
}

.line_120 {
  line-height: 1.2;
}

.line_150 {
  line-height: 1.5;
}

.line_175 {
  line-height: 1.75;
}

.line_200 {
  line-height: 2;
}

/*文字詰め*/
.kern00 {
  letter-spacing: 0;
}

.kern01 {
  letter-spacing: 0.1em;
}

.kern02 {
  letter-spacing: 0.2em;
}

.kern03 {
  letter-spacing: 0.3em;
}

.kern04 {
  letter-spacing: 0.4em;
}

.kern05 {
  letter-spacing: 0.5em;
}

.kern-001 {
  letter-spacing: -0.01em;
}

.kern-005 {
  letter-spacing: -0.05em;
}

.kern-01 {
  letter-spacing: -0.1em;
}

.kern-02 {
  letter-spacing: -0.2em;
}

.kern-03 {
  letter-spacing: -0.3em;
}

.kern-04 {
  letter-spacing: -0.4em;
}

.kern-05 {
  letter-spacing: -0.5em;
}

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

	Flex

--------------------------------------*/
.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-content: flex-start;
  align-items: flex-start;
}

.flex_end {
  align-content: flex-end;
  align-items: flex-end;
  align-self: flex-end;
}

.flex_center {
  align-content: center;
  align-items: center;
  align-self: center;
}

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

	Wide / layout

--------------------------------------*/
.wide_center {
  margin-left: auto;
  margin-right: auto;
}

.wide_1_1 {
  width: 100%;
}

.wide_1_4 {
  width: 20.8%;
}

.wide_1_4_w {
  width: 26.3%;
}

.wide_3_4 {
  width: 73.6%;
}

.wide_3_4_w {
  width: 79.1%;
}

.wide_1_3 {
  width: 29.6%;
}

.wide_1_3_w {
  width: 35.5%;
}

.wide_2_3 {
  width: 64.5%;
}

.wide_2_3_w {
  width: 71%;
}

.wide_1_2 {
  width: 46.6%;
}

.wide_1_2_w {
  width: 53.4%;
}

.list-country {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 4vw;
}

.list-country .items {
  cursor: pointer;
}

.list-country .items figure {
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2vw;
  border: 1px solid #d0d0d0;
}

.list-country .items .title {
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.16em;
  margin-bottom: 7px;
  text-align: center;
}

.display-block {
  display: block;
}

.block-content:nth-child(2n) {
  position: relative;
  z-index: 1;
  background: #f4edde;
}

.urban {
  padding-block: 5.49vw 7.94vw;
}
@media screen and (max-width: 768px) {
  .urban {
    padding-block: 14.49vw 7.94vw;
  }
}

.need {
  padding-top: 5.29vw;
  margin-block: -5.29vw 7.94vw;
}
@media screen and (max-width: 768px) {
  .need {
    padding-top: 6.51vw;
    margin-block: -6.51vw 13.67vw;
  }
}
.need-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 2.65vw;
}
@media screen and (max-width: 768px) {
  .need-wrap {
    display: block;
    margin-top: 4.56vw;
  }
}
.need-wrap .image {
  flex-shrink: 0;
  margin-right: 3.97vw;
  width: 37.7vw;
  border-radius: 0.66vw;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .need-wrap .image {
    width: 100%;
    border-radius: 1.3vw;
    margin-bottom: 10.94vw;
  }
}
.need-wrap .content {
  margin-top: -0.66vw;
}
.need-wrap .content .title {
  font-size: 1.6vw;
  line-height: 1.6;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  .need-wrap .content .title {
    font-size: 4.65vw;
    margin-bottom: 6vw;
  }
}
.need-wrap .content ul {
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  .need-wrap .content ul {
    padding-left: 5vw;
  }
}
.need-wrap .content li {
  list-style: disc;
  list-style-position: inherit;
  margin-left: 2vw;
  margin-right: 2vw;
  margin-bottom: 3vh;
}
.need-wrap .content li:last-child {
  margin-bottom: 4vh;
}

.keypoint .img {
  margin-bottom: 5vh;
  width: 40%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .keypoint .img {
    width: 70%;
  }
}
.keypoint .page-tl {
  margin-bottom: 3.4vw;
}
@media screen and (max-width: 768px) {
  .keypoint .page-tl {
    margin-bottom: 4.4vh;
  }
}

.b-tl01 {
  display: flex;
  align-items: center;
  font-size: 1.9vw;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-bottom: 1.98vw;
}
@media screen and (max-width: 768px) {
  .b-tl01 {
    display: flex;
    font-size: 5.99vw;
    margin-top: 8.33vw;
    margin-bottom: 4.43vw;
  }
}
.b-tl01 .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.44vw;
  height: 3.44vw;
  margin-top: 0.26vw;
  flex-shrink: 0;
  background-color: var(--second-color);
  border-radius: 50%;
  margin-right: 0.99vw;
}
@media screen and (max-width: 768px) {
  .b-tl01 .icon {
    width: 9.11vw;
    height: 9.11vw;
    margin-top: 0.26vw;
    margin-right: 1.95vw;
  }
}
.b-tl01 .icon-ideal:before {
  content: "";
  width: 1.98vw;
  height: 1.98vw;
  background: url(../images/flow/ic_ideal.webp) no-repeat;
  background-size: 100% auto;
}
@media screen and (max-width: 768px) {
  .b-tl01 .icon-ideal:before {
    width: 5.21vw;
    height: 5.21vw;
  }
}
.b-tl01 .icon-career:before {
  content: "";
  width: 1.72vw;
  height: 1.85vw;
  background: url(../images/flow/ic_career.webp) no-repeat;
  background-size: 100% auto;
}
@media screen and (max-width: 768px) {
  .b-tl01 .icon-career:before {
    width: 4.69vw;
    height: 4.95vw;
  }
}
.b-tl01 .icon-staff:before {
  content: "";
  width: 2.38vw;
  height: 1.19vw;
  background: url(../images/flow/ic_staff.webp) no-repeat;
  background-size: 100% auto;
}
@media screen and (max-width: 768px) {
  .b-tl01 .icon-staff:before {
    width: 6.25vw;
    height: 3.13vw;
  }
}
@media screen and (max-width: 768px) {
  .b-tl01 .b-tl01 + .b-tl02 {
    margin-top: 3.91vw;
  }
}

.prediction-list {
  width: 90%;
  margin-top: 8vh;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 8vh;
}
@media screen and (max-width: 768px) {
  .prediction-list {
    width: 100%;
  }
}
.prediction-list__item {
  display: grid;
  gap: 1.06vw;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .prediction-list__item {
    display: block;
  }
}
.prediction-list__item .item {
  background-color: #fff;
  border: 0.13vw solid var(--text-color);
  border-radius: 0.99vw;
  min-height: 9.59vw;
  position: relative;
}
@media screen and (max-width: 768px) {
  .prediction-list__item .item {
    border: 0.39vw solid var(--text-color);
    border-radius: 1.95vw;
    min-height: 26.04vw;
    margin-bottom: 3vh;
  }
}
.prediction-list__item .item span {
  font-weight: 500;
}
.prediction-list__item .item strong {
  font-weight: 700;
}
.prediction-list__item .item .tl {
  background-color: var(--text-color);
  border-radius: 0.79vw 0.79vw 0 0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.19vw;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.6;
  min-height: 3.37vw;
  padding: 0.26vw 1.32vw 0.4vw;
}
@media screen and (max-width: 768px) {
  .prediction-list__item .item .tl {
    border-radius: 1.56vw 1.56vw 0 0;
    font-size: 4.2vw;
    min-height: 7.94vw;
    padding: 0.52vw 2.6vw 0.78vw;
  }
}
.prediction-list__item .item .item-text {
  text-align: left;
  font-weight: normal;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: calc(100% - 3.37vw);
  padding: 1.65vw 1.32vw;
}
@media screen and (max-width: 768px) {
  .prediction-list__item .item .item-text {
    height: calc(100% - 7.94vw);
    padding: 3.65vw 2.6vw;
  }
}
.prediction-list__item .highlight {
  border-color: #ff8a00;
  color: #ff8a00;
}
.prediction-list__item .highlight .tl {
  background-color: #ff8a00;
}
.prediction-list__item .highlight .item-text {
  font-weight: 700;
}

.content-info {
  margin-bottom: 5vh;
}
.content-info__cover img {
  border-radius: 20px;
}
.content-info__text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 2;
  margin-bottom: 3vh;
}
.content-info__text .text-info {
  background-color: var(--text-color);
  color: #fff;
  font-size: 1.32vw;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.6;
  padding: 0.26vw 0.86vw 0.33vw 1.06vw;
  width: fit-content;
  margin-bottom: 1.5vh;
}
@media screen and (max-width: 768px) {
  .content-info__text .text-info {
    font-size: 4.21vw;
  }
}
.content-info__text .text-name {
  font-size: 2.15vw;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .content-info__text .text-name {
    font-size: 5.21vw;
  }
}

.intro-box {
  position: relative;
  padding-block: 6.75vw 5.29vw;
  border: 1px solid #141437;
  border-radius: 0.99vw;
  background-color: #fff;
  background-image: url(../images/common/pattern01.webp);
  text-align: center;
  padding-left: 3vw;
  padding-right: 3vw;
  margin-top: 7vh;
}
.intro-box .img {
  width: 60%;
  margin-top: 6vh;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 6vh;
}
@media screen and (max-width: 768px) {
  .intro-box .img {
    width: 90%;
  }
}
.intro-box .img02 img {
  width: 70%;
  margin-top: 7vh;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 7vh;
  border-radius: 0.66vw;
}
@media screen and (max-width: 768px) {
  .intro-box .img02 img {
    width: 90%;
  }
}
.intro-box .text {
  text-align: left;
}
@media screen and (max-width: 768px) {
  .intro-box .sp-aline-left {
    text-align: left;
  }
}

.intro-title {
  position: relative;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 5.69vw;
  padding: 0.66vw 2.78vw;
  border-radius: 6.61vw;
  font-size: 2.38vw;
  letter-spacing: 0.01em;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 3.44vw;
  background: linear-gradient(rgba(255, 171, 86, 0.3), rgba(237, 101, 16, 0.3)), url(../images/common/bg_title_flow.png) 0 0/cover no-repeat;
  background-blend-mode: normal, normal, normal;
  background-position: center top -17.06vw;
}

@media screen and (max-width: 768px) {
  .intro-box {
    position: relative;
    padding: 13.28vw 5.21vw 11.19vw;
    border-radius: 1.95vw;
  }
  .intro-box .ill {
    position: absolute;
    display: block;
  }
  .intro-box .ill01 {
    left: 0;
    bottom: 0;
    width: 64.45vw;
    height: 41.67vw;
    border-bottom-left-radius: 1.95vw;
    background: url(../images_min/ill01_sp.webp?vf83cbb21fe5d752c9b3d21b2ce6bc82b) no-repeat;
    background-size: 100% 100%;
  }
  .intro-box .ill02 {
    right: 0;
    top: 0;
    width: 60.29vw;
    height: 36.33vw;
    border-top-right-radius: 1.95vw;
    background: url(../images_min/ill02_sp.webp?v47ad0614d897fb5a80362c5ab41b8693) no-repeat;
    background-size: 100% 100%;
  }
  .intro-title {
    padding: 3.17vw 4.51vw 4.21vw 5.11vw;
    border-radius: 3.02vw;
    font-size: 5.45vw;
    margin-bottom: 7.42vw;
    background: linear-gradient(rgba(255, 171, 86, 0.3), rgba(237, 101, 16, 0.3)), url(../images/common/bg_title_flow.png) 0 0/cover no-repeat;
    background-blend-mode: normal, normal, normal;
    background-position: center;
  }
}
.block-goal__text {
  display: flex;
  align-items: flex-start;
  padding: 1.85vw 2.51vw;
  border: 1px solid #141437;
  border-radius: 0.66vw;
  background: #f9f5ec;
  margin-top: 5vh;
}
.block-goal__text .icon-like {
  display: block;
  flex-shrink: 0;
  margin-right: 1.32vw;
  width: 3.97vw;
  height: 3.97vw;
  background: url(../images_min/file01/icon-like.webp) no-repeat;
  background-size: 100%;
}
.block-goal__text .text {
  position: relative;
  padding-left: 1.59vw;
  font-size: 1.45vw;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.block-goal__text .text:before {
  content: "";
  position: absolute;
  width: 0.79vw;
  height: 0.79vw;
  border-radius: 50%;
  left: 0;
  top: 0.99vw;
  background: linear-gradient(rgba(255, 171, 86, 0.3), rgba(237, 101, 16, 0.3)), url(../images/common/bg_title_flow.png) 0 0/cover no-repeat;
  background-blend-mode: normal, normal, normal;
}
.block-goal__text .text:not(:last-child) {
  margin-bottom: 1.2vw;
}
.block-goal__text .icon-like {
  background: url(../images/flow/icon-like.png) no-repeat;
  background-size: 100%;
}

.content-head {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .content-head {
    flex-direction: column;
  }
}
.content-head .content {
  margin-top: 1.46vw;
}
.content-head .content .title {
  font-size: 2.38vw;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 3vw;
}
@media screen and (max-width: 768px) {
  .content-head .content .title {
    text-align: center;
    font-size: 5.47vw;
    margin-bottom: 7vw;
  }
}
.content-head .content .text {
  line-height: 1.61;
  margin-bottom: 2.4vw;
}
@media screen and (max-width: 768px) {
  .content-head .content .text {
    margin-bottom: 2.34vw;
  }
}
.content-head .content .notes {
  position: relative;
  padding-left: 1.19vw;
  font-size: 0.93vw;
  line-height: 1.57;
  letter-spacing: 0.11em;
}
@media screen and (max-width: 768px) {
  .content-head .content .notes {
    padding-left: 4.04vw;
    font-size: 3.13vw;
  }
}
.content-head .content .notes:before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.content-head figure {
  margin-left: 2.65vw;
  border-radius: 0.66vw;
  overflow: hidden;
  flex-shrink: 0;
  width: 33.86vw;
  height: 25.13vw;
  transform: translateZ(0);
}
@media screen and (max-width: 768px) {
  .content-head figure {
    border-radius: 0.52vw;
    width: 100%;
    height: auto;
    margin-top: 6vw;
    margin-left: 0;
    margin-bottom: 7.65vw;
  }
}

@media screen and (max-width: 768px) {
  .block-goal .block-content {
    padding: 4.43vw 4.95vw;
  }
  .block-goal__text {
    display: flex;
    font-size: 3.65vw;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.1em;
  }
  .block-goal__text small {
    font-size: 3.65vw;
    margin-left: 1.04vw;
  }
  .block-goal__text .icon-like {
    display: block;
    flex-shrink: 0;
    margin-top: 1.56vw;
    margin-right: 4.17vw;
    width: 11.72vw;
    height: 11.72vw;
  }
  .block-goal__text p {
    font-size: 4.43vw;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.1em;
  }
  .block-goal__text p.text {
    position: relative;
    padding-left: 4.17vw;
    font-size: 3.65vw;
    line-height: 1.4;
  }
  .block-goal__text p.text:before {
    content: "";
    position: absolute;
    width: 2.34vw;
    height: 2.34vw;
    border-radius: 50%;
    left: 0;
    top: 1.95vw;
    background: linear-gradient(rgba(255, 171, 86, 0.3), rgba(237, 101, 16, 0.3)), url(../images/common/bg_title_flow.png) 0 0/cover no-repeat;
    background-blend-mode: normal, normal, normal;
  }
  .block-goal__text p.text:not(:last-child) {
    margin-bottom: 2.34vw;
  }
}
.dt-tl {
  color: var(--text-color);
  font-size: 2.38vw;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  padding-left: 4.43vw;
  position: relative;
}
@media screen and (max-width: 768px) {
  .dt-tl {
    font-size: 5.21vw;
    padding-left: 9.43vw;
  }
}

.dt-tl:not(:last-child) {
  margin-bottom: 2.78vw;
}
@media screen and (max-width: 768px) {
  .dt-tl:not(:last-child) {
    margin-bottom: 6.78vw;
  }
}

.dt-tl .icon {
  background-color: var(--second-color);
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 6.61vw;
  height: 3.44vw;
  width: 3.44vw;
  position: absolute;
  left: 0;
  top: 0.26vw;
}
@media screen and (max-width: 768px) {
  .dt-tl .icon {
    height: 7vw;
    width: 7vw;
    top: 0.8vw;
  }
}

.dt-tl .icon_flow {
  background-image: url(../images/flow/ic_flow.png);
  background-size: 2.16vw;
}
@media screen and (max-width: 768px) {
  .dt-tl .icon_flow {
    background-size: 5vw;
    height: 7vw;
    width: 7vw;
    top: 0.8vw;
  }
}

.dt-tl .icon-country {
  background-image: url(../images/flow/ic_country.png);
  background-size: 2.16vw;
}
@media screen and (max-width: 768px) {
  .dt-tl .icon-country {
    background-size: 5vw;
    height: 7vw;
    width: 7vw;
    top: 0.8vw;
  }
}

.dt-tl .icon-sending {
  background-image: url(../images/flow/ic_sending.png);
  background-size: 2.16vw;
}
@media screen and (max-width: 768px) {
  .dt-tl .icon-sending {
    background-size: 5vw;
    height: 7vw;
    width: 7vw;
    top: 0.8vw;
  }
}

.b-career__text {
  background-color: #fff;
  border-radius: 1.32vw;
  padding: 4.3vw 3.97vw 5.29vw;
}

.b-career__list {
  color: #000;
  font-size: 1.59vw;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
  position: relative;
}

.b-career__list:after {
  background-color: var(--primary-color);
  content: "";
  position: absolute;
  height: calc(100% - 1.72vw);
  top: 1.59vw;
  left: 15.83vw;
  width: 1px;
}

.b-career__list .item {
  display: grid;
  gap: 11.84vw;
  grid-template-columns: 10.67vw 1fr;
  position: relative;
}

.b-career__list .item:before, .b-career__list .item:after {
  content: "";
  position: absolute;
}

.b-career__list .item:before {
  background-color: var(--second-color);
  border-radius: 6.61vw;
  height: 1.59vw;
  left: 15.1vw;
  top: 0.99vw;
  width: 1.56vw;
  z-index: 2;
}

.b-career__list .item:after {
  background-image: linear-gradient(90deg, var(--second-color) 0%, var(--second-color) 30%, #fff 31%, #fff 70%, var(--text-color) 71%, var(--text-color) 100%);
  height: 1px;
  left: 11.4vw;
  top: 1.72vw;
  width: 8.86vw;
}

.b-career__list .item:not(:last-child) {
  padding-bottom: 6.4vw;
}

.b-career__list .item-label {
  color: var(--second-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.32vw;
  line-height: 1.5;
  text-align: center;
}
.b-career__list .item-label span {
  font-size: 0.9vw;
}

.b-career__list .item-label:first-child {
  padding-top: 0.9vh;
}

.b-career__list .item-label .symbol {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 3.44vw;
  font-weight: 300;
  line-height: 1.3;
  margin-inline: 0.4vw -0.13vw;
  -ms-writing-mode: tb;
  writing-mode: tb;
}

.b-career__list .item-text {
  padding-top: 0.4vw;
}

.b-career__list .item-text p:not(:last-child) {
  margin-bottom: 2.3vw;
}

.b-career__list .item-text .text-info {
  color: var(--text-color);
  font-weight: 400;
  font-size: 1.19vw;
  letter-spacing: 0.16em;
  line-height: 1.6;
  text-align: justify;
}

@media screen and (max-width: 768px) {
  .b-career__text {
    background-color: #fff;
    border-radius: 2.6vw;
    padding: 6.64vw 5.3vw 9.24vw 3.91vw;
  }
  .b-career__list {
    color: #000;
    font-size: 3.91vw;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1.6;
    position: relative;
  }
  .b-career__list:after {
    background-color: var(--primary-color);
    content: "";
    position: absolute;
    height: calc(100% - 3.39vw);
    top: 3.13vw;
    left: 1.43vw;
    width: 1px;
  }
  .b-career__list .item {
    padding-left: 9.11vw;
    position: relative;
    display: block;
    text-align: left;
  }
  .b-career__list .item:before, .b-career__list .item:after {
    content: "";
    position: absolute;
  }
  .b-career__list .item:before {
    background-color: var(--second-color);
    border-radius: 13.02vw;
    height: 3.13vw;
    left: 0;
    top: 1.95vw;
    width: 3.13vw;
    z-index: 2;
  }
  .b-career__list .item:after {
    background-color: var(--second-color);
    height: 1px;
    left: 4.43vw;
    top: 3.52vw;
    width: 3.26vw;
  }
  .b-career__list .item:not(:last-child) {
    padding-bottom: 12.16vw;
  }
  .b-career__list .item-label {
    color: var(--second-color);
    font-size: 5.73vw;
    letter-spacing: 0.1em;
    line-height: 1.4;
    margin-bottom: 4.86vw;
    text-align: left;
    align-items: flex-start;
  }
  .b-career__list .item-label span {
    font-size: 3.73vw;
  }
  .b-career__list .item-label .symbol {
    display: inline-block;
    font-family: var(--font-en);
    font-size: 7.29vw;
    font-weight: 300;
    line-height: 0.79;
    margin-inline: 0.39vw;
  }
  .b-career__list .item-text {
    padding-left: 0.65vw;
  }
  .b-career__list .item-label:first-child {
    padding-top: 0;
  }
  .b-career__list .item-text p:not(:last-child) {
    margin-bottom: 1.3vw;
  }
  .b-career__list .item-text .text-info {
    color: var(--text-color);
    font-weight: 400;
    font-size: 3.39vw;
    letter-spacing: 0.1em;
    line-height: 1.6;
    text-align: justify;
  }
  .b-career__list .item-text figure {
    margin-top: 6vw;
    margin-bottom: 6vw;
  }
  .b-career__list .item .sp-none {
    display: none;
  }
}
.box-flow .notes {
  position: relative;
  padding-left: 1.19vw;
  font-size: 0.93vw;
  font-weight: normal;
  line-height: 1.57;
  letter-spacing: 0.11em;
}
@media screen and (max-width: 768px) {
  .box-flow .notes {
    padding-left: 4.04vw;
    font-size: 3.13vw;
  }
}
.box-flow .notes:before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

.box-country .img {
  margin-top: 5vw;
}
.box-country .img img {
  border-radius: 0.66vw;
}

.box-sending .img {
  margin-top: 5vw;
}
.box-sending .img img {
  border-radius: 0.66vw;
}

.block-subtitle {
  font-size: 1.6vw;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-align: left;
  margin-top: 8vw;
  margin-bottom: 3.42vw;
  border-left: 5px solid #141437;
  padding-left: 2vw;
}
@media screen and (max-width: 768px) {
  .block-subtitle {
    font-size: 4.95vw;
    margin-top: 13.42vw;
    margin-bottom: 7.42vw;
    padding-left: 4vw;
  }
}

.block-accenttitle {
  font-size: 1.4vw;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-align: left;
  margin-bottom: 2.42vw;
}
@media screen and (max-width: 768px) {
  .block-accenttitle {
    font-size: 3.95vw;
    margin-bottom: 5.42vw;
  }
}

.block-content ol {
  list-style-type: decimal;
  padding-left: 3vw;
}

.block-content ol li {
  margin-bottom: 3vw;
}

.block-content ol li:last-of-type {
  margin-bottom: 0;
}

.b-career__text .img04 {
  width: 70%;
  margin-top: 7vh;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 7vh;
  border-radius: 0.66vw;
}
@media screen and (max-width: 768px) {
  .b-career__text .img04 {
    width: 90%;
  }
}