/* =============================================
   style.css - ページスタイル
   ============================================= */

/* =============================================
   ベース
   ============================================= */
body {
  background-color: #e8f5fd;
  color: #221714;
  font-family: 'Noto Sans JP', 'Noto Sans', sans-serif;
}

/* =============================================
   TOP
   ============================================= */

#top {
  padding-top: 70px;
  /* PC時のヘッダー高さ＋α（適宜微調整してください） */
}

@media screen and (max-width: 840px) {
  #top {
    padding-top: 80px;
    /* スマホ（840px以下）のヘッダー高さ（.btn_containerが80pxのため） */
  }
}

@media screen and (max-width: 640px) {
  #top {
    padding-top: 55px;
    /* スマホ（640px以下）のヘッダー高さ（.btn_containerが55pxのため） */
  }
}

/* =============================================
   セクション共通
   ============================================= */
.section {
  padding: 85px 0;
}

/*-----------------------------------
	mainvisual_block
-----------------------------------*/

/* 初期状態（PC・画面幅841px以上）では動画エリアごと完全に非表示にする */
#mainvisual_block {
  display: none;
}

/* ─── スマホ・タブレット（840px以下）のスタイル ─── */
@media screen and (max-width: 840px) {
  #mainvisual_block {
    display: block;
    /* スマホ環境で表示させる */
    width: 100%;
    max-width: 100%;
    /* 絶対に画面幅からはみ出さないようにガード */
    height: auto;
    aspect-ratio: 9 / 16;
    /* 動画の比率を16:9に固定（縦動画なら 9/16 に変更してください） */
    overflow: hidden;
  }

  #mainvisual_block video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* エリア内に隙間なく動画を敷き詰める */
  }
}

/* =============================================
   タイトルセクション
   ============================================= */
.section-main {
  text-align: center;
  padding: 0;
}

.main {
  padding-top: 95px;
  background-image: url(../img/main_bg.png);
  background-repeat: no-repeat;
  /* 💡 分けて記述する */
  background-size: cover;
}

.main_ttl {
  border-top: 3px solid #fff;
  border-bottom: 3px solid #fff;
  padding: 20px 0;
}

.main_ttl img {
  display: block;
  margin: 0 auto;
  max-width: 314px;
}


.main_txt {
  width: 100%;
  max-width: 1039px;
  margin: 70px auto 0px;
}

.main_txt img {
  width: 100%;
    display: block;
  margin: 0 auto;
}

.main_txt .txt_box {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.7;
  color: #fff;
}

.mv {
  width: 100%;
  margin: 0 auto;
  display: block;
}

  .main_txt .tab {
    display:  none;
  }
.section-main .link_btn {
  margin: 40px auto 0;
}

@media (max-width: 840px) {
  
  .main_ttl img {
    max-width: 300px;
  }

  .main_txt .pc {
    display: none !important;
  }

  .main_txt .tab {
    display: block !important;
  }
}


@media screen and (max-width: 640px) {
  .main {
    padding-top: 34px;
  }
  .section-main {
    padding: 0 0 0;
  }

  .main_ttl img {
  max-width: 157px;
}

.main_txt {
margin: 30px auto 0;
}
  .main_ttl {
    padding: 10px 0;
  }

  .mv_txt {
    margin: 20px auto 0;
    font-size: 16px;
  }

  .section-main .link_btn {
    margin: 20px auto 0;
  }
}

/* =============================================
   見える化する仕事
   ============================================= */
.section-job {
  padding: 100px 0;
  background-color: #e8f5fd;
}

.job_ttl_box {
  width: 100%;
  max-width: 1109px;
}

.job_ttl_box img {
  width: 100%;
}

.job_txt {
  margin-top: 56px;
  text-align: center;
}

.job_txt .blue {
  font-size: 24px;
  color: #0053a6;
  font-weight: 700;
  line-height: 1.7;
}

.job_txt .black {
  font-size: 20px;
  color: #231815;
  font-weight: 500;
  line-height: 1.8;
  margin-top: 10px;
}

@media screen and (max-width: 840px)  {
.section-job {
  padding: 80px 0;
}

}

@media screen and (max-width: 640px) {
.section-job {
  padding: 50px 0 0;
  background-color: #fff;
}
.job_txt {
  margin-top: 0px;
}
.job_txt .black {
  line-height: 1.7;
  font-size: 14px;
  margin-bottom: 30px;
}

.job_txt .blue {
  font-size: 16px;

}
}
/* =============================================
   給与・待遇セクション
   ============================================= */
.section-salary {
  padding: 85px 0 95px;
  background: #fff;
}

.section-salary>.inner {
  position: relative;
  border-radius: 15px;
}

.salary-title-block {
  text-align: center;
  margin-bottom: 36px;
}

.salary-subtitle {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: #0053a6;
  letter-spacing: 0.04em;
  margin-bottom: 15px;
}

.salary-heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 44px;
  color: #0053a6;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.salary-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 45px;
  margin-bottom: 12px;
  align-items: stretch;
}



.salary-card {
  background: #efefef;
  border-radius: 18px;
  height: 100%;
  padding: 25px 16px 20px;
  box-sizing: border-box;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.salary-card-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #0053a6;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.salary-card-icon {
  margin-bottom: 5px;
}

.salary-card-value {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #b81c25;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  line-height: 1.2;
}

.salary-num {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 1;
  color: #b81c25;
  vertical-align: baseline;
}

.salary-card-note {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  margin-bottom: 4px;
}

.salary-card-small {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  margin-top: auto;
}

.salary-footnote {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #444;
  text-align: right;
  padding-bottom: 28px;
  letter-spacing: 0.01em;
}

/* 起業サポートブロック（緑背景） */
.startup-block {
  background-color: #0053a6;
  position: relative;
}

/* ▲ 矢印（上向き、緑色） */
.startup-block::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  border-bottom: 40px solid #0053a6;
  /* ← border-topではなくborder-bottom で上向き▲ */
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.startup-inner {
  padding: 35px 20px 35px;
}

.startup-grid {
  display: flex;
  gap: 60px;
  align-items: center;
  /* flex-startより中央揃えの方が見栄えよい */
  justify-content: center;
}

.startup-left {
  flex: 0 0 auto;
  /* width: 50% をやめてautoに */
  text-align: center;
}

.startup-left img {
  width: 100%;
  max-width: 427px;
  display: block;
}

.startup-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  /* liのgapはここで管理 */
}

.startup-list li {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 25px;
  color: #fff;
  display: flex;
  align-items: flex-start;
  gap: 7px;
  letter-spacing: 0.01em;
  line-height: 1.8;
  flex-wrap: nowrap;
  /* noteが折り返せるように */
}

.startup-list li::before {
  content: '●';
  color: #fff;
  flex-shrink: 0;
  font-size: 19px;
  margin-top: 0.3em;
}

.startup-note {
  display: inline-block;
  /* margin-topを効かせるために必要 */
  white-space: nowrap;
  /* ← これを追加 */
  font-weight: 400;
  font-size: 17px;
  vertical-align: middle;
  align-self: center;
  /* flexアイテムとして垂直中央 */
}

@media (max-width: 1000px) {
  .salary-cards {
    gap: 20px;
  }


  .startup-left {
    flex: 0 0 calc(40% - 10px);
  }

  .startup-list {
    flex: 0 0 calc(60% - 10px);
  }

  .startup-grid {
    display: flex;
    gap: 20px;
    /* gapを小さめに調整 */
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
  }

  .startup-list li {
    font-size: 21px;
  }

  .startup-list li::before {
    margin-top: 0.05em;
  }
}

/* ─── レスポンシブ ─── */
@media (max-width: 840px) {
  .salary-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .startup-inner {
    padding: 40px 20px;
  }

  .salary-footnote {
    padding-bottom: 40px;
  }

  .startup-grid {
    flex-direction: column;
    /* 縦積みに */
    gap: 24px;
  }

  .startup-left {
    width: 100%;
  }

  .startup-left img {
    max-width: 500px;
    margin: 0 auto 10px;
  }

}

@media screen and (max-width: 640px) {
  .section-salary {
    padding: 0px 0 50px;
    background: #e8f5fd;
  }


  .salary-title-block {
    margin-bottom: 20px;
  }

  .salary-subtitle {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .salary-heading {
    font-size: 38px;
  }

  .salary-card {
    padding: 15px 0 15px;
    background-color: #fff;
  }

  .salary-cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }

  .salary_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .salary_wrap .right_box {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .salary-card-label {
    font-size: 15px;
    margin-bottom: 0px;
  }

  .salary-num {
    font-size: 55px;
  }

  .salary-card-value {
    font-size: 22px;
  }

  .salary-card-note {
    font-size: 12px;
  }

  .startup-left img {
    margin: 0 auto;
  }

  .startup-grid {
    gap: 20px;
   
  }

  .label_01 {
    margin-left: 30px;
  }

  .label_03,
  .label_04 {
    margin-left: 12px;
  }

  .salary-footnote {
    text-align: left;
  }

  .startup-inner {
    padding: 40px 30px;
  }

  .startup-list {
    gap: 0px;
  }

  .startup-list li::before {
    font-size: 12px;
    margin-top: 0.1em;
  }

  .startup-list li {
    font-size: 16px;
  }

  .startup-note {
    font-size: 11px;
  }
}


/* =============================================
   KDWアカデミー
   ============================================= */
.section-academy {
  padding: 120px 0 80px;
  text-align: center;
}

.section-academy .inner {
  border-bottom: dotted 3px #0053a6;

}

.section-academy .academy_ttl {
  width: 100%;
  max-width: 290px;
  margin: 0 auto;
}

.section-academy .intro_txt {
  font-size: 42px;
  font-weight: 900;
  margin: 75px auto 85px;
  line-height: 1.6;
  color: #0053a6;

}
@media screen and (max-width: 840px) {
.section-academy .intro_txt {
  font-size: 28px;
  font-weight: 900;
  margin: 50px auto 65px;
  line-height: 1.6;
  color: #0053a6;

}
}

@media screen and (max-width: 640px) {
.section-academy {
    padding: 50px 0 55px;
}

.section-academy .academy_ttl {
  max-width: 155px;
}
.section-academy .intro_txt {
    margin: 35px auto 45px;
    font-size: 20px;
}
}
/* =============================================
   3年間の成長ステップ
   ============================================= */
.section-step {
  padding: 0 0 80px;
}

.section-step .inner {
  border-bottom: dotted 3px #0053a6;
}

.step_wrap {
  margin: 0px 0 40px;
  	display: flex;
	justify-content: center;
	align-items: stretch;
  gap: 30px;
flex-wrap: wrap;
}

.step_box {
  width: calc((100% - 90px) / 4 );
  background-color: #fff;
  padding: 30px 15px;
  border-radius: 15px;
  box-sizing: border-box; /* パディングが幅を崩さないように追加 */
}

.step_num {
  font-size: 16px;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  text-align: center;
}

.step_ttl {
  font-size: 22px;
  font-weight: 800;
  text-align: center;
  line-height: 1.3;
  color: #0053a6;
 margin: 10px 0 15px;
}

.step_txt {
  font-size: 14px;
  font-weight: 600;
line-height: 1.6;
}

.robot_box {
  	display: flex;
	justify-content: center;
	align-items: center;
  gap: 45px;
  padding: 50px 65px;
  border-radius: 18px;
  border: 1.5px solid #0053a6;
  margin-bottom: 95px;
}

.robot_box .left_box {
    width: calc((53% - 20px));
}

.robot_box .left_box .title {
  font-size: 32px;
  font-weight: 900;
color: #0053a6;
line-height: 1.4;
text-align: left; /* 左端をきっちり揃える */
margin-bottom: 20px;
}

.robot_txt {
  font-size: 14px;
  font-weight: 600;
line-height: 1.8;
}

.robot_box .left_box .title .main_title {
  display: inline-block; /* マージンを効かせるために必要 */
  margin-left: -0.5em;    /* 左に10px引っ張る（数値は好みに合わせて調整してください） */
}

.robot_box .left_box .tiny {
  font-size: 24px;
}

.robot_box .right_box {
    width: calc((47% - 20px));
}

.robot_box .right_box img {
  width: 100%;
}

@media screen and (max-width: 840px) {
  .step_wrap {
    /* 左揃えベース（space-between）にして綺麗に2列に収める */
    justify-content: space-between; 
  }
  .robot_box {
    flex-direction: column;
    padding: 27px 21px 30px;
    gap: 25px;
    margin-bottom: 45px;
  }
    .robot_box .left_box {
    width: 100%;
  }
  .robot_box .right_box {
    width: 100%;
  }
  .step_box {
    /* 2等分にするため、隙間1つ分（30px）を引いて2で割る */
    width: calc((100% - 30px) / 2); 
  }
    .robot_box .left_box .title {
    text-align: center;
    margin-bottom: 20px;
  }

}

@media screen and (max-width: 640px) {
.section-step {
  padding: 0 0 40px;
}
  .section-step .inner {
  border-top: dotted 3px #0053a6;
}
 .section-step .h3_ttl {
  margin-top: 40px;
 }
  .step_wrap {
    /* 左揃えベース（space-between）にして綺麗に2列に収める */
    justify-content: center; 
    gap: 20px;
    margin: 0 0 20px;
  }
  .step_box {
    padding: 20px;
  }
  .step_txt {
max-width: 300px;
margin: 0 auto;
}

  .step_box {
    /* 2等分にするため、隙間1つ分（30px）を引いて2で割る */
    width: 100%; 
  }

  .robot_box {
    flex-direction: column;
    padding: 27px 21px 30px;
    gap: 12px;
    margin-bottom: 45px;
  }

  .robot_box .left_box {
    width: 100%;
  }
  .robot_box .right_box {
    width: 100%;
  }
  .robot_box .left_box .title {
    text-align: center;
    font-size: 22px;
    margin-bottom: 15px;
  }
  .robot_box .left_box .tiny {
    font-size: 18px;
  }
}


/* =============================================
   こんな方に向いています
   ============================================= */
.section-target {
  padding: 0 0 85px;
}

.section-target .inner {
  border-bottom: dotted 3px #0053a6;
}

.target-card {
  border-radius: 19px;
  padding: 0px 0px 80px;
  box-sizing: border-box;
}

.target-grid {
	display: flex;
	justify-content: center;
	align-items: flex-start;
  gap: 40px;
}

.target-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.target-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 19.85px;
  color: #000;
  line-height: 1.45;
  letter-spacing: 0.01em;
}

.target-list li .check-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  margin-top: 2px;
}

/* チェックマークの「丸い背景」の色を変える */
.check-icon svg circle {
  fill: #f6eb00; /* 例：オレンジに変更（好きな色に変えてください） */
}

/* チェックマークの「レ点（線）」の色を変える */
.check-icon svg polyline {
  stroke: #0053a6; /* 例：白に変更（好きな色に変えてください） */
}


@media (max-width: 840px) {
  .target-grid {
    flex-direction: column;
    gap: 10px;
  }

  .target-card {
    padding: 0px 0 90px;
  }

  .target-list {
    gap: 15px;
  }
}

@media (max-width: 640px) {
  .target-card {
    padding: 10px 0 0 0 ;
    margin-bottom: 45px;
  }
  .target-grid {
    flex-direction: column;
    gap: 10px;
  }

  .section-target {
    padding: 0 0 40px;
  }

  .target-list {
    gap: 10px;
  }

  .target-list li {
    font-size: 16px;
    gap: 7px;
    color: #0053a6;
  }

  .target-list svg {
    width: 22px;
    height: 22px;
    display: block;
    /* 周りに謎の隙間ができるのを防ぐ */
  }

  .target-list li .check-icon {
    width: 22px;
    height: 22px;
  }


}


/* =============================================
   Q&A
   ============================================= */
.section-qa {
  padding: 0 0 60px;
}

.section-qa .inner {
  border-bottom: dotted 3px #0053a6;
}

.qa-list {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-bottom: 90px;
}

@keyframes qa-slide-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* details 要素のリセット */
.qa-item {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
}

.icon-minus line {
  stroke: #0053a6; /* 好きな色に変更してください */
}

/* プラス（＋）アイコンの線の色を変える */
.icon-plus line {
  stroke: #0053a6; /* 好きな色に変更してください */
}

/* summary のデフォルト三角マーカーを非表示 */
.qa-question {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 40px;
  position: relative;
  min-height: 73px;
  box-sizing: border-box;
  cursor: pointer;
  list-style: none;
}

.qa-question::-webkit-details-marker {
  display: none;
}

.qa-question::marker {
  display: none;
}

.qa-q {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #0053a6;
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}

.qa-question-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #0053a6;
  line-height: 1.4;
  letter-spacing: 0.02em;
  flex: 1;
}

/* トグルアイコン */
.qa-toggle {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qa-toggle svg {
  display: block;
}

/* 閉じているとき: + を表示、- を非表示 */
.qa-item:not([open]) .qa-toggle .icon-minus {
  display: none;
}

.qa-item:not([open]) .qa-toggle .icon-plus {
  display: block;
}

/* 開いているとき: - を表示、+ を非表示 */
.qa-item[open] .qa-toggle .icon-minus {
  display: block;
}

.qa-item[open] .qa-toggle .icon-plus {
  display: none;
}

.qa-item[open] .qa-divider,
.qa-item[open] .qa-answer {
  animation: qa-slide-in 0.3s ease forwards;
}



.qa-answer {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 40px 28px;
}

.qa-a {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #cb5920;
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}

.qa-answer-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #221714;
  line-height: 1.8;
  letter-spacing: 0.02em;
  padding-top: 4px;
}

@media (max-width: 640px) {
  .section-qa {
    padding: 0 0 45px;
  }

  .qa-q {
    font-size: 22px;
  }

  .qa-a {
    font-size: 22px;
  }

  .qa-item {
    border-radius: 8px;
  }

  .qa-question-text {
    font-size: 14px;
  }

  .qa-answer-text {
    font-size: 12px;
    padding-top: 0px;
  }

  .qa-question {
    padding: 15px 20px;
    min-height: auto;
  }

  .qa-answer {
    padding: 0px 20px 15px;
  }

  .qa-list {
    gap: 12px;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .qa-toggle {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);

    /* ↓↓↓ ここを指定のサイズに調整 ↓↓↓ */
    height: 13px;
    width: 13px;
    /* 高さに合わせて正方形（13x13）になるように横幅も揃えると綺麗です */

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

  /* 内側のSVGがはみ出さず、13pxの中にぴったり収まるようにガード */
  .qa-toggle svg {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
  }


}


/* =============================================
   募集要項
   ============================================= */
.section-recruit {
  padding: 20px 0 0px;
}

.section-recruit .inner {
  border-bottom: dotted 3px #0053a6;
}




.recruit-grid {
display: flex;
	justify-content: center;
	align-items: flex-start;
  gap: 0 40px;
  width: 100%;
  margin-bottom: 75px;
}

.recruit-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.recruit-col li {
  /* ▼ ここがポイント */
  padding-left: 1em;      /* 「●」1文字分、全体を右に押し出す */
  text-indent: -1em;     /* 1行目だけを「●」1文字分、左に戻す */
  
  line-height: 1.2;       /* 改行したときに見やすいように調整 */
}



.recruit-col ul li {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #221714;
  line-height: 1.9;
  letter-spacing: 0.01em;
}

.recruit-col ul li .recruit-label {
  color: #0053a6;
  font-weight: 700;
}


@media (max-width: 768px) {

}

@media (max-width: 640px) {
  .section-recruit {
    padding: 0px 0 40px;
  }

  .recruit-grid {
    flex-direction: column;
  }

  .section-recruit .section-heading {
    font-size: 24px;
  }

  .recruit-col ul li {
    font-size: 14px;

  }

  .recruit-note {
    font-size: 14px;
  }

  .recruit-grid {
    margin: 0 auto 40px;
  }




}



/* =============================================
   育成・研修実施企業
   ============================================= */
   .section-company {
    padding: 70px 0 65px;
   }
.company-block {
  text-align: center;
}


.company-block .company-name {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #221714;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.company-block .company-address {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #221714;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .company-block .company-subtitle {
    font-size: 24px;
  }

  .company-block .company-name {
    font-size: 20px;
  }

  .company-block .company-address {
    font-size: 12px;
  }

.section-company {
  padding: 0 0 30px 0;
}

}


/* =============================================
   リンクボタンエリア
   ============================================= */
.link-section {
  padding: 20px 0 115px;
  text-align: center;
}

@media (max-width: 640px) {
  .link-section {
    padding: 0px 0 55px;
  }
}