.hdr_main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 10px 50px;
  background: #fff;
  border-bottom: 6px solid #f58181;
}

/* ▼ 左カラム：テキストロゴ（PC時） */
.logo_texts {
  display: flex;
  flex-direction: column;
  gap: 4px;
  grid-column: 1;
}

.logo_texts a {
  font-size: 24px;
  text-decoration: none;
}

.logo_texts .sub {
  font-size: 16px;
  font-weight: normal;
  color: #361816;
}
.logo_texts .main {
  font-size: 26px;
  color: #660D0D;
}
.logo_texts .main span {
  color: #EC6060;
}

/* ▼ 中央カラム：tujihongou-logo（PC時） */
.tujihongou-logo {
  grid-column: 2;
  text-align: center; /* ← PC時のみ中央寄せ */
}

.tujihongou-logo img {
  max-width: 220px;
  height: auto;
}

/* ▼ 右カラム：TEL（PC/SPまとめ） */
.h_tel_wrap {
  grid-column: 3;
  justify-self: end;
}

/* ▼ PC電話 */
.hdr_main .tel.pc a {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hdr_main .tel.pc a .tel_i {
  width: 24px;
  flex: 0 0 24px;
  position: relative;
  top: 5px;
}
.hdr_main .tel.pc a .tel_i img {
  width: 100%;
}
.hdr_main .tel.pc a .tel_i img {
  width: 100%;
  /* #660D0D に変換するフィルター */
  filter: invert(10%) sepia(87%) saturate(3821%) hue-rotate(349deg) brightness(88%) contrast(106%);
}
.hdr_main .tel.pc a .tel_txt {
  font-size: 24px;
  color: #EC6060;
  line-height: 1.25;
}
.hdr_main .tel.pc a .tel_txt2 {
  font-size: 12px;
  color: #361816;
  text-align: center;
  line-height: 1.25;
}
.hdr_main .tel.pc a .u_txt {
  font-size: 12px;
}

/* ▼ スマホ時：PC用TELを非表示 */
@media (max-width: 540px) {
  .hdr_main .tel.pc {
    display: none;
  }
}

/* ▼ SP電話 */
.hdr_main .tel.sp {
  display: none;
}
@media (max-width: 540px) {
  .hdr_main .tel.sp {
    display: block;
    text-align: right;
  }
}
.hdr_main .tel.sp .tel_i img {
  transform: rotate(270deg);
}


@media (max-width: 1024px) {
  .hdr_main {
    padding: 10px 20px;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    row-gap: 10px;
  }

  .logo_texts {
    grid-column: 1;
    grid-row: 1;
    display: block;
    color: #ffa5a5;
  }

  .tujihongou-logo {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
    text-align: left;
  }

  .tujihongou-logo img {
    display: block;
    margin-left: 0;
    margin-right: auto;
  }

  .h_tel_wrap {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }
}



.fv_main.pc {
  position: relative;
  width: 100%;
}
@media (max-width: 600px) {
  .fv_main.pc {
    display: none;
  }
}
.fv_main.pc img {
  width: 100%;
  vertical-align: bottom;
}
.fv_main.pc .mv_cta {
  position: absolute;
  top: calc(50% + 6vw);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44.29vw;
  height: 20.571vw;
}
.fv_main.pc .mv_cta img {
  width: 100%;
}

.fv_main.sp {
  display: none;
  position: relative;
  width: 100%;
}
@media (max-width: 600px) {
  .fv_main.sp {
    display: block;
  }
}
.fv_main.sp img {
  width: 100%;
  vertical-align: bottom;
}
.fv_main.sp .mv_cta {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
}
.fv_main.sp .mv_cta img {
  width: 100%;
}

.worry {
  padding: 100px 0;
  background-image: url(https://www.ht-tax.or.jp/startup/commons/direct/magokoro/worry-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: auto;
}
@media (max-width: 600px) {
  .worry {
    padding: 50px 0;
  }
}
.worry .inner {
  width: 1125px;
  margin: 0 auto;
}
@media (max-width: 1125px) {
  .worry .inner {
    width: 90%;
  }
}
.worry .inner h2.ttl {
  margin-bottom: 20px;
  font-size: 34px;
  text-align: center;
  font-weight: 500;
}
@media (max-width: 600px) {
  .worry .inner h2.ttl {
    font-size: 24px;
  }
}
.worry .inner h2.ttl span {
  font-size: 38px;
  color: #f58181;
}
@media (max-width: 600px) {
  .worry .inner h2.ttl span {
    font-size: 28px;
  }
}
.worry .inner .txt {
  margin-bottom: 50px;
  font-size: 20px;
  text-align: center;
}
@media (max-width: 600px) {
  .worry .inner .txt {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
.worry .inner .worry_wrap {
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 600px) {
  .worry .inner .worry_wrap {
    display: block;
  }
}
.worry .inner .worry_wrap .w_b {
  width: 400px;
}
@media (max-width: 600px) {
  .worry .inner .worry_wrap .w_b {
    width: 100%;
    margin-bottom: 20px;
  }
}
.worry .inner .worry_wrap .w_b img {
  width: 100%;
}
.worry .inner .worry_wrap.sec {
  margin-top: 30px;
}

.problem {
  background-image: url(../img/problem-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: auto;
  padding: 100px 0 0;
  border-radius: 0 0 60px 60px;
}
@media (max-width: 600px) {
  .problem {
    padding: 50px 0 0;
  }
}
.problem .inner {
  width: 1125px;
  margin: 0 auto;
}
@media (max-width: 1125px) {
  .problem .inner {
    width: 90%;
  }
}
.problem .inner h2.ttl {
  margin-bottom: 20px;
  font-size: 34px;
  text-align: center;
  font-weight: 500;
}
@media (max-width: 600px) {
  .problem .inner h2.ttl {
    font-size: 24px;
  }
}
.problem .inner h2.ttl span {
  font-size: 38px;
  color: #f58181;
}
@media (max-width: 600px) {
  .problem .inner h2.ttl span {
    font-size: 28px;
  }
}
.problem .inner .txt {
  margin-bottom: 50px;
  font-size: 20px;
  text-align: center;
}
@media (max-width: 600px) {
  .problem .inner .txt {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
.problem .inner .p_con {
  width: 825px;
  margin: 0 auto;
}
@media (max-width: 1125px) {
  .problem .inner .p_con {
    width: 100%;
  }
}
.problem .inner .p_con .p_b {
  margin-bottom: 15px;
  padding: 20px 25px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 15px;
  border-radius: 8px;
  box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.1);
}
@media (max-width: 600px) {
  .problem .inner .p_con .p_b {
    padding: 15px;
  }
}
.problem .inner .p_con .p_b .p_i {
  width: 25px;
  flex: 0 0 25px;
}
.problem .inner .p_con .p_b .p_i img {
  width: 100%;
}
.problem .inner .p_con .p_b .p_txt {
  font-size: 20px;
}
@media (max-width: 600px) {
  .problem .inner .p_con .p_b .p_txt {
    font-size: 16px;
  }
}

.sol_wrap {
  margin-top: 50px;
  display: flex;
  background: #fff;
  padding: 30px;
  gap: 30px;
  border-radius: 8px;
  box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.1);
}
@media (max-width: 650px) {
  .sol_wrap {
    display: block;
  }
}
.sol_wrap .left {
  width: 250px;
  flex: 0 0 250px;
}
@media (max-width: 650px) {
  .sol_wrap .left {
    flex: none;
    width: 100%;
  }
}
.sol_wrap .left img {
  width: 100%;
}
.sol_wrap .right .main {
  font-size: 30px;
  color: #ee6b6b;
  margin-bottom: 25px;
  font-weight: 500;
}
@media (max-width: 650px) {
  .sol_wrap .right .main {
    margin-top: 20px;
    font-size: 24px;
  }
}
.sol_wrap .right .sub {
  font-size: 20px;
}
@media (max-width: 650px) {
  .sol_wrap .right .sub {
    margin-top: 0;
    font-size: 16px;
  }
}
.sol_wrap .right .sub span {
  font-size: 20px;
  color: #f58181;
}
@media (max-width: 600px) {
  .sol_wrap .right .sub span {
    font-size: 16px;
  }
}

.cta_sec {
  margin-top: 100px;
  background-image: url(https://www.ht-tax.or.jp/startup/commons/direct/magokoro/cta-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: auto;
  padding: 80px 0;
  border-radius: 64px;
}
@media (max-width: 600px) {
  .cta_sec {
    padding: 60px 0;
    border-radius: 32px;
  }
}
.cta_sec .c_ttl {
  font-size: 34px;
  color: #fff;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 600px) {
  .cta_sec .c_ttl {
    font-size: 24px;
  }
}
.cta_sec .sub {
  font-size: 18px;
  color: #fff;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 30px;
}
.cta_sec .c_btn_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
@media (max-width: 995px) {
  .cta_sec .c_btn_wrap {
    display: block;
  }
}
.cta_sec .c_btn_wrap .left {
  padding: 10px;
  background: #fff;
  width: 400px;
  border-radius: 12px;
}
@media (max-width: 995px) {
  .cta_sec .c_btn_wrap .left {
    margin: 0 auto;
  }
}
@media (max-width: 460px) {
  .cta_sec .c_btn_wrap .left {
    width: 90%;
  }
}
.cta_sec .c_btn_wrap .left a .u_t {
  color: #fff;
  background: #f58181;
  font-size: 13px;
  padding: 2px 0;
  border-radius: 9999px;
  text-align: center;
  width: 150px;
  margin: 0 auto;
}
.tel_wrap {  justify-content: center !important;}
.cta_sec .c_btn_wrap .left a .tel_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.cta_sec .c_btn_wrap .left a .tel_wrap .tel_i {
  width: 30px;
  flex: 0 0 30px;
}
.cta_sec .c_btn_wrap .left a .tel_wrap .tel_i img {
  width: 100%;
}
.cta_sec .c_btn_wrap .left a .tel_wrap .num {
  font-size: 30px;
  color: #ee6b6b;
  font-weight: 500;
}
.cta_sec .c_btn_wrap .right {
  background: #ffba00;
  padding: 30px 0;
  width: 400px;
  border-radius: 12px;
}
@media (max-width: 995px) {
  .cta_sec .c_btn_wrap .right {
    margin: 0 auto;
    margin-top: 30px;
  }
}
@media (max-width: 460px) {
  .cta_sec .c_btn_wrap .right {
    width: 90%;
  }
}
.cta_sec .c_btn_wrap .right a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.cta_sec .c_btn_wrap .right a .mail_i {
  width: 30px;
  flex: 0 0 30px;
  position: relative;
  top: 5px;
}
.cta_sec .c_btn_wrap .right a .mail_i img {
  width: 100%;
}
.cta_sec .c_btn_wrap .right a .mail_txt {
  color: #fff;
  font-size: 22px;
  font-weight: 500;
}
.cta_sec .c_btn_wrap2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.cta_sec .c_btn_wrap2 .left {
  padding: 10px;
  background: #fff;
  width: 400px;
  margin: 0 auto;
  border-radius: 12px;
}
@media (max-width: 480px) {
  .cta_sec .c_btn_wrap2 .left {
    width: 100%;
  }
}
.cta_sec .c_btn_wrap2 .left a .u_t {
  color: #fff;
  background: #ee6b6b;
  font-size: 13px;
  padding: 2px 0;
  border-radius: 9999px;
  text-align: center;
  width: 150px;
  margin: 0 auto;
}
.cta_sec .c_btn_wrap2 .left a .tel_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.cta_sec .c_btn_wrap2 .left a .tel_wrap .tel_i {
  width: 30px;
  flex: 0 0 30px;
}
.cta_sec .c_btn_wrap2 .left a .tel_wrap .tel_i img {
  width: 100%;
}
.cta_sec .c_btn_wrap2 .left a .tel_wrap .num {
  font-size: 30px;
  color: #ee6b6b;
  font-weight: 500;
}

.cta_block2 {
  position: relative;
}
.cta_block2:after {
  position: absolute;
  bottom: 0;
  background: #fff4e3;
  content: "";
  width: 100%;
  height: 20%;
  z-index: -1;
}

.cta_block3 {
  margin-top: -60px;
  position: relative;
  border-radius: 64px 64px 0 0;
  background-image: url(../img/cta-bg2.png);
}
@media (max-width: 590px) {
  .cta_block3 {
    border-radius: 32px 32px 0 0;
  }
}
@media (max-width: 480px) {
  .cta_block3 {
    padding: 40px 10px;
  }
}

.can {
  padding: 100px 0 0;
}
.can .inner {
  width: 1125px;
  margin: 0 auto;
}
@media (max-width: 1125px) {
  .can .inner {
    width: 90%;
  }
}
.can .inner h2.ttl {
  margin-bottom: 20px;
  font-size: 34px;
  text-align: center;
  font-weight: 500;
}
@media (max-width: 600px) {
  .can .inner h2.ttl {
    font-size: 24px;
  }
}
.can .inner h2.ttl span {
  font-size: 38px;
  color: #f58181;
}
@media (max-width: 600px) {
  .can .inner h2.ttl span {
    font-size: 28px;
  }
}
.can .inner p.sub {
  margin-bottom: 50px;
  font-size: 20px;
  text-align: center;
}
@media (max-width: 600px) {
  .can .inner p.sub {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
.can .inner .can_wrap.pc__only {
  margin-top: 70px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1165px) {
  .can .inner .can_wrap.pc__only {
    gap: 2%;
    display: none;
  }
}
.can .inner .can_wrap.pc__only .can_b {
  padding: 20px;
  width: 360px;
  background: #fff9f6;
  border-radius: 8px;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1165px) {
  .can .inner .can_wrap.pc__only .can_b {
    width: 32%;
  }
}
.can .inner .can_wrap.pc__only .can_b .can_pic {
  width: 222px;
  margin: 0 auto;
}
@media (max-width: 1165px) {
  .can .inner .can_wrap.pc__only .can_b .can_pic {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .can .inner .can_wrap.pc__only .can_b .can_pic {
    width: 100%;
  }
}
.can .inner .can_wrap.pc__only .can_b .can_pic img {
  width: 100%;
}
.can .inner .can_wrap.pc__only .can_b h3.c_ttl {
  padding: 20px 0;
  font-size: 20px;
  font-weight: 500;
  color: #ee6b6b;
  text-align: center;
  border-bottom: 1px solid #ffa5a5;
}
.can .inner .can_wrap.pc__only .can_b p.txt {
  padding-top: 20px;
}
.can .inner .can_wrap.sp__only {
  display: none;
  margin-top: 70px;
}
@media (max-width: 1165px) {
  .can .inner .can_wrap.sp__only {
    gap: 2%;
    margin-top: 2%;
    display: flex;
    justify-content: space-between;
  }
}
.can .inner .can_wrap.sp__only .can_b {
  padding: 20px;
  width: 262px;
  background: #fff9f6;
  border-radius: 8px;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1165px) {
  .can .inner .can_wrap.sp__only .can_b {
    width: 48%;
  }
}
@media (max-width: 700px) {
  .can .inner .can_wrap.sp__only .can_b {
    padding: 10px;
  }
}
.can .inner .can_wrap.sp__only .can_b .can_pic {
  width: 222px;
  margin: 0 auto;
}
@media (max-width: 1165px) {
  .can .inner .can_wrap.sp__only .can_b .can_pic {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .can .inner .can_wrap.sp__only .can_b .can_pic {
    width: 100%;
  }
}
.can .inner .can_wrap.sp__only .can_b .can_pic img {
  width: 100%;
}
.can .inner .can_wrap.sp__only .can_b h3.c_ttl {
  padding: 20px 0;
  font-size: 20px;
  font-weight: 500;
  color: #ee6b6b;
  text-align: center;
  border-bottom: 1px solid #ffa5a5;
}
.can .inner .can_wrap.sp__only .can_b p.txt {
  padding-top: 20px;
}

/*

.reason .inner {
  width: 1165px;
  margin: 0 auto;
}
@media (max-width: 1165px) {
  .reason .inner {
    width: 90%;
  }
}


.reason .inner .can_wrap {
  margin-top: 70px;
  display: flex;
  justify-content: space-between;
  justify-content: center;
  gap: 30px;
}
@media (max-width: 1165px) {
  .reason .inner .can_wrap {
    gap: 3%;
  }
}
@media (max-width: 800px) {
  .reason .inner .can_wrap {
    display: block;
  }
}
.reason .inner .can_wrap .can_b {
  padding: 20px;
  *width: 353px;
  border-radius: 8px;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.05);
  background: #fff9f6;
}
@media (max-width: 1165px) {
  .reason .inner .can_wrap .can_b {
    width: 32%;
  }
}
@media (max-width: 800px) {
  .reason .inner .can_wrap .can_b {
    width: 100%;
    margin-bottom: 30px;
  }
}
.reason .inner .can_wrap .can_b .can_pic {
  width: 303px;
  margin: 0 auto;
}
@media (max-width: 1165px) {
  .reason .inner .can_wrap .can_b .can_pic {
    width: 100%;
  }
}
.reason .inner .can_wrap .can_b .can_pic img {
  width: 100%;
}

*/



.reason {
  padding: 100px 0;
  background: #fff4e3;
}
@media (max-width: 1165px) {
  .reason {
    padding: 50px 0;
  }
}
.reason .inner h2.ttl {
  margin-bottom: 20px;
  font-size: 34px;
  text-align: center;
  font-weight: 500;
}
@media (max-width: 600px) {
  .reason .inner h2.ttl {
    font-size: 24px;
  }
}
.reason .inner h2.ttl span {
  font-size: 38px;
  color: #f58181;
}
@media (max-width: 600px) {
  .reason .inner h2.ttl span {
    font-size: 28px;
  }
}
.reason .inner p.sub {
  margin-bottom: 50px;
  font-size: 20px;
  text-align: center;
}
@media (max-width: 600px) {
  .reason .inner p.sub {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
.reason .inner .can_wrap .can_b h3.c_ttl {
  padding: 20px 0;
  font-size: 20px;
  font-weight: 500;
  color: #ee6b6b;
  text-align: center;
  border-bottom: 1px solid #ffa5a5;
}
.reason .inner .can_wrap .can_b p.txt {
  padding-top: 20px;
}

/* 共通：.reason 内側の幅制御 */
.reason .inner {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* 共通：カードの並び */
.reason .inner .can_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 20px;
}


/* 共通：カード本体 */
.reason .inner .can_wrap .can_b {
  box-sizing: border-box;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.05);
  background: #fff9f6;
}

/* 画像まわりは常に枠内に収める */
.reason .inner .can_wrap .can_b .can_pic,
.reason .inner .can_wrap .can_b .can_pic img {
  width: 100%;
  height: auto;
  display: block;
}

/* 5カラム：本当に広い画面だけ */
@media (min-width: 1800px) {
  .reason .inner .can_wrap .can_b {
    width: calc(20% - 16px);
    margin-bottom: 40px; /* ← PC広画面用の余白（あなたの好みに合わせて調整可） */
  }
}

/* 4カラム：1600よりも早く発動（あなたの希望） */
@media (max-width: 1799px) and (min-width: 1400px) {
  .reason .inner .can_wrap .can_b {
    width: calc(25% - 15px);
    margin-bottom: 40px; /* PC中画面用の余白 */
  }
}

/* 3カラム：中くらいのPC幅 */
@media (max-width: 1399px) and (min-width: 1100px) {
  .reason .inner .can_wrap .can_b {
    width: calc(33.333% - 14px);
    margin-bottom: 35px; /* PC小画面用の余白 */
  }
}

/* 2カラム：タブレット（あなたの元CSSの margin-bottom:30px を維持） */
@media (max-width: 1099px) and (min-width: 801px) {
  .reason .inner .can_wrap .can_b {
    width: calc(50% - 10px);
    margin-bottom: 30px; /* ← 元の値をそのまま維持 */
  }
}

/* 1カラム：スマホ（あなたの元CSSの margin-bottom:20px を維持） */
@media (max-width: 800px) {
  .reason .inner .can_wrap .can_b {
    width: 100%;
    margin-bottom: 20px; /* ← 元の値をそのまま維持 */
  }
}




.staff {
  padding: 100px 0;
  background: #fff;
}
@media (max-width: 600px) {
  .staff {
    padding: 50px 0;
  }
}
.staff .inner {
  width: 1165px;
  margin: 0 auto;
}
@media (max-width: 1165px) {
  .staff .inner {
    width: 90%;
  }
}
.staff .inner h2.ttl {
  margin-bottom: 20px;
  font-size: 34px;
  text-align: center;
  font-weight: 500;
}
.staff .inner h2.ttl span {
  font-size: 38px;
  color: #ee6b6b;
}
@media (max-width: 600px) {
  .staff .inner h2.ttl span {
    font-size: 28px;
  }
}
.staff .inner p.sub {
  text-align: center;
}
.staff .inner .can_wrap {
  margin-top: 70px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 800px) {
  .staff .inner .can_wrap {
    display: block;
  }
}
.staff .inner .can_wrap .can_b {
  padding: 20px;
  width: 353px;
  border-radius: 8px;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.05);
  background: #fff9f6;
}
@media (max-width: 1165px) {
  .staff .inner .can_wrap .can_b {
    width: 32%;
  }
}
@media (max-width: 800px) {
  .staff .inner .can_wrap .can_b {
    width: 100%;
    margin-bottom: 30px;
  }
}
.staff .inner .can_wrap .can_b .can_pic {
  width: 303px;
  margin: 0 auto;
}
@media (max-width: 1165px) {
  .staff .inner .can_wrap .can_b .can_pic {
    width: 100%;
  }
}
.staff .inner .can_wrap .can_b .can_pic img {
  width: 100%;
}
.staff .inner .can_wrap .can_b .c_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 20px 0;
  border-bottom: 1px solid #ffa5a5;
}
.staff .inner .can_wrap .can_b .c_wrap .career {
  color: #fff;
  background: #ee6b6b;
  padding: 2px 8px;
  border-radius: 9999px;
  font-size: 12px;
}
.staff .inner .can_wrap .can_b .c_wrap h3.c_ttl {
  font-size: 20px;
  font-weight: 500;
  color: #ee6b6b;
  text-align: center;
}
.staff .inner .can_wrap .can_b p.txt {
  padding-top: 20px;
}

.map {
  padding: 100px 0;
  background: #fff9f6;
}
@media (max-width: 600px) {
  .map {
    padding: 50px 0;
  }
}
.map .inner {
  width: 1165px;
  margin: 0 auto;
}
@media (max-width: 1165px) {
  .map .inner {
    width: 90%;
  }
}
.map .inner h2.ttl {
  margin-bottom: 20px;
  font-size: 34px;
  text-align: center;
  font-weight: 500;
}
@media (max-width: 600px) {
  .map .inner h2.ttl {
    font-size: 24px;
  }
}
.map .inner h2.ttl span {
  font-size: 38px;
  color: #f58181;
}
@media (max-width: 600px) {
  .map .inner h2.ttl span {
    font-size: 28px;
  }
}
.map .inner p.sub {
  margin-bottom: 50px;
  font-size: 20px;
  text-align: center;
}
@media (max-width: 600px) {
  .map .inner p.sub {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
.map .inner .map_con {
  margin-top: 50px;
}
.map .inner .map_con iframe {
  width: 100%;
}



.faq_sec {
  padding: 100px 0 160px;
  background: #fff4e3;
}
@media (max-width: 600px) {
  .faq_sec {
    padding: 50px 0 100px;
  }
}
.faq_sec .f_inner {
  width: 1165px;
  margin: 0 auto;
}
@media (max-width: 1165px) {
  .faq_sec .f_inner {
    width: 90%;
  }
}
.faq_sec .f_inner h2.ttl {
  margin-bottom: 20px;
  font-size: 34px;
  text-align: center;
  font-weight: 500;
}
@media (max-width: 600px) {
  .faq_sec .f_inner h2.ttl {
    font-size: 24px;
  }
}
.faq_sec .f_inner h2.ttl span {
  font-size: 38px;
  color: #f58181;
}
@media (max-width: 600px) {
  .faq_sec .f_inner h2.ttl span {
    font-size: 28px;
  }
}
.faq_sec .f_inner p.sub {
  margin-bottom: 50px;
  font-size: 20px;
  text-align: center;
}
@media (max-width: 600px) {
  .faq_sec .f_inner p.sub {
    font-size: 16px;
    margin-bottom: 30px;
  }
}

.ftr_main {
  padding: 60px 0;
  background: #333333;
}
@media (max-width: 500px) {
  .ftr_main {
    padding: 30px 10px;
  }
}
.ftr_main .txt1 {
  color: #fff;
  text-align: center;
  font-size: 16px;
}
.ftr_main .txt_wrap {
  padding: 30px 0;
  display: flex;
  justify-content: center;
  gap: 40px;
}
.ftr_main .txt_wrap .w_txt {
  color: #fff;
  font-size: 16px;
}
.ftr_main .privacy_policy {
  text-align: center;
  font-size: 14px;
  color: #cecece;
}/*# sourceMappingURL=style.css.map */

/* オフィスレポート */
.office-repo {
    padding: 100px 0;
    background: #F9F9F9;
}
@media (max-width: 600px) {
  .office-repo {
    padding: 50px 0;
  }
}
.office-repo .inner {
  width: 1165px;
  margin: 0 auto;
}
@media (max-width: 1165px) {
  .office-repo .inner {
    width: 90%;
  }
}
.office-repo .inner h2.ttl {
  margin-bottom: 20px;
  font-size: 34px;
  text-align: center;
  font-weight: 500;
}
@media (max-width: 600px) {
  .office-repo .inner h2.ttl {
    font-size: 24px;
  }
}
.office-repo .inner h2.ttl span {
  font-size: 38px;
  color: #f58181;
}
@media (max-width: 600px) {
  .office-repo .inner h2.ttl span {
    font-size: 28px;
  }
}
.office-repo .inner p.sub {
  margin-bottom: 50px;
  font-size: 20px;
  text-align: center;
}
@media (max-width: 600px) {
  .office-repo .inner p.sub {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
.office-repo .inner div.office-repo_con {
  margin-bottom: 50px;
  padding: 1.5em 3em;
  font-size: 18px;
  background: #FFF;
  border-radius: 12px;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.12);
  outline: 1px solid rgba(0, 0, 0, 0.05);
  outline-offset: -15px;
}


@media (max-width: 600px) {
  .office-repo .inner div.office-repo_con {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
.office-repo .inner div.office-repo_con span{
	font-weight:bold;
	color: #f58181;
}

/* 会社概要・プライバシーポリシー */
.content_area {
  text-align: center;
}

.content_area img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.company {
  padding: 100px 0;
  background-image: url(https://www.ht-tax.or.jp/startup/commons/direct/magokoro/company-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: auto;
}
.privacy {
  padding: 100px 0;
  background-image: url(https://www.ht-tax.or.jp/startup/commons/direct/magokoro/privacy-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: auto;
}
@media (max-width: 600px) {
  .company, .privacy {
    padding: 50px 0;
  }
}
.company .inner, .privacy .inner {
  width: 1125px;
  margin: 0 auto;
}
@media (max-width: 1125px) {
  .company .inner, .privacy .inner {
    width: 90%;
  }
}
.company .inner h2.ttl, .privacy .inner h2.ttl {
  margin-bottom: 20px;
  font-size: 34px;
  text-align: center;
  font-weight: 500;
}
@media (max-width: 600px) {
  .company .inner h2.ttl, .privacy .inner h2.ttl  {
    font-size: 24px;
  }
}
.company .inner h2.ttl span, .privacy .inner h2.ttl span {
  font-size: 38px;
  color: #f58181;
}
@media (max-width: 600px) {
  .company .inner h2.ttl span, .privacy .inner h2.ttl span {
    font-size: 28px;
  }
}
.company .inner .txt, .privacy .inner .txt {
  margin-bottom: 50px;
  font-size: 20px;
  text-align: center;
}
@media (max-width: 600px) {
  .company .inner .txt, .privacy .inner .txt {
    font-size: 16px;
    margin-bottom: 30px;
  }
}


/* html追記分 */
.link_color {
color: #0068E2;
}

.hdr_main {
margin-top: -28px !important;
}

  .contact_sec {
    padding: 100px 0 150px;
    background: #fff9f6;
  }
  @media (max-width: 600px) {
    .contact_sec {
      padding: 50px 0 100px;
    }
  }
  .contact_sec .inner {
    width: 825px;
    margin: 0 auto;
  }
  @media (max-width: 1125px) {
    .contact_sec .inner {
      width: 90%;
    }
  }
  .contact_sec .inner h2.ttl {
    margin-bottom: 20px;
    font-size: 34px;
    text-align: center;
    font-weight: 500;
  }
  
  .contact_sec .inner .sub {
    text-align: center;
    padding: 20px 0;
    font-size: 20px;
  }
  @media (max-width: 600px) {
    .contact_sec .inner h2.ttl {
      font-size: 24px;
    }
  }
  .contact_sec .inner h2.ttl span {
    font-size: 38px;
    color: #f58181;
  }
  @media (max-width: 600px) {
    .contact_sec .inner h2.ttl span {
      font-size: 28px;
    }
.can .inner .can_wrap.sp__only {
        display: block;
    }
.can .inner .can_wrap.sp__only .can_b {
        width: 100%;
        margin-bottom: 2%;
        padding: 15px;
    }
  }