@charset "utf-8";

/*====================
takeover共通
====================*/
#takeover {
  font-weight: 500;
}

#takeover ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*====================
mv
====================*/
/*
 * 共通の .subpage-header__bg は flex + overflow で画像を中央トリミングしている。
 * picture に高さが無いと img の height:100% / object-position が効かないため、
 * 画像ボックスを枠いっぱいにしてから位置を指定する。
 */
#takeover .subpage-header .subpage-header__bg picture {
  width: 100vw;
  height: 100%;
  flex-shrink: 0;
}

#takeover .subpage-header .subpage-header__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

#takeover .subpage-header .sabpage-header__title .subpage-header__text {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(0%, 0%);
  color: var(--color-white);
}

#takeover .subpage-header .sabpage-header__title .subpage-header__text h3 {
  font-size: 54px;
  font-weight: 600;
  letter-spacing: 0.4rem;
  filter: drop-shadow(3px 3px 0px rgba(0, 0, 0, 0.3));
}

#takeover .subpage-header .sabpage-header__title .subpage-header__text h2 {
  white-space: nowrap;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.8rem;
  filter: drop-shadow(3px 3px 0px rgba(0, 0, 0, 0.3));
  margin-top: 1rem;
}

@media screen and (max-width: 960px) {
  #takeover .subpage-header .sabpage-header__title {
    top: 90px;
    left: 5vw;
  }

  #takeover .subpage-header .sabpage-header__title .subpage-header__text {
    font-size: 28px;
  }

  #takeover .subpage-header .sabpage-header__title .subpage-header__text h3 {
    font-size: 43px;
  }

  #takeover .subpage-header .sabpage-header__title .subpage-header__text h2 {
    font-size: 18px;
  }

  #takeover .scroll {
    display: none;
  }

  /*===========max-width:960px============*/
}

@media screen and (max-width: 600px) {
  #takeover .subpage-header::before {
    top: -300px;
  }

  #takeover .subpage-header .sabpage-header__title .subpage-header__text h3 {
    font-size: 24px;
  }

  #takeover .subpage-header .sabpage-header__title .subpage-header__text h2 {
    font-size: 16px;
    margin-top: 0.5rem;
  }

  /*===========max-width:600px============*/
}

/*====================
circle
====================*/
@media screen and (max-width: 768px) {
  #takeover .subpage-header .property-circle .property-circle__link .property-circle__image-wrapper {
    width: 56px;
    height: 56px;
  }

  #takeover .subpage-header .property-circle .property-circle__link .property-circle__svg.property-circle__svg-tab {
    display: none;
  }

  #takeover .subpage-header .property-circle .property-circle__link .property-circle__svg {
    font-size: 8px;
  }

  /*===========max-width:768px============*/
}

/*====================
①導入
manage.css の #mng03-use と同一レイアウト。
3枚目のイラスト（mng03-use03.png）はHTMLテキストに置き換え。
イラスト2は見出しが長い分、右へ寄せて文字と重ならないようにしている。
====================*/
#tko-use {
  position: relative;
  margin-top: 120px;
  margin-bottom: 70px;
}

#tko-use .con-r.title {
  padding-left: calc(((100% - 930px) / 2) + 195px);
}

#tko-use h3 {
  font-size: 30px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin: 0 0 40px;
}

#tko-use .con-r.illust {
  /* 帯（::before）とコピーの間の余白。上下ともこの値になる */
  --tko-band-space: 70px;
  position: relative;
  padding: var(--tko-band-space) 0;
  max-width: 700px;
  margin: 0 auto;

}

/* 帯は親（max-width: 700px）に縛られず、画面幅いっぱいに伸ばす */
#tko-use .con-r.illust::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: #e7ebff;
  mix-blend-mode: multiply;
  z-index: -1;
}

#tko-use .illust .con-t {
  position: relative;
  margin: 0 auto;
}

#tko-use .illust .con-t img {
  display: block;
}

/* タイトル・コピーに重ねず、帯の左右へ配置 */
#tko-use .illust .con-t img:nth-of-type(1) {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-100%, -80%);
  width: 180px;
}

#tko-use .illust .con-t img:nth-of-type(2) {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(70%, -50%);
  width: 280px;
}

#tko-use .illust .con-t .tko-use__copy {
  max-width: 620px;
  margin: 0 auto;

  color: #95b9e2;
  font-size: 35px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.6;
}

#tko-use .illust .con-t .tko-use__copy .tko-use__copy-mark {
  display: inline;
  background: var(--color-white);
  padding: 0 10px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

@media screen and (max-width: 1200px) {
  #tko-use .illust .con-t img:nth-of-type(1) {
    width: 150px;
  }

  #tko-use .illust .con-t img:nth-of-type(2) {
    width: 220px;
  }

}

@media screen and (max-width: 960px) {
  #tko-use .illust .con-t .tko-use__copy {
    font-size: 28px;
  }

  #tko-use .illust .con-t img:nth-of-type(1) {
    left: 0;
    top: auto;
    bottom: 100%;
    transform: translate(-70%, -20%);
    width: 110px;
  }

  #tko-use .illust .con-t img:nth-of-type(2) {
    right: 0;
    transform: translateY(-50%);
    width: 180px;
  }

  /*===========max-width:960px============*/
}

@media screen and (max-width: 890px) {
  #tko-use .con-r.illust {
    --tko-band-space: 40px;
  }

  #tko-use .con-r.title {
    padding-left: calc(((100% - 930px) / 2) + 230px);
  }

  #tko-use .illust .con-t img:nth-of-type(1) {
    transform: translate(-20%, -20%);
  }

  #tko-use .illust .con-t .tko-use__copy {
    max-width: 600px;
  }

  /*===========max-width:890px============*/
}

@media (max-width: 768px) {
  #tko-use {
    margin-top: 64px;
    margin-bottom: 40px;
  }

  #tko-use .con-r.title {
    padding-left: calc(110px + 8px);
  }

  #tko-use h3 {
    font-size: 20px;
    letter-spacing: 0.1em;
    margin: 0 0 24px;
  }


  #tko-use .illust .con-t img:nth-of-type(1) {
    width: 72px;
    transform: translate(0, -20%);
    left: 16px;
  }

  #tko-use .illust .con-t img:nth-of-type(2) {
    width: 120px;
    transform: translate(-70%, -50%);
  }

  #tko-use .illust .con-t .tko-use__copy {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 84px;
    font-size: 22px;
  }

  /*===========max-width:768px============*/
}

@media (max-width: 600px) {
  #tko-use h3 {
    font-size: 18px;
  }

  #tko-use .con-r.title {
    padding-left: calc(80px + 8px);
  }

  #tko-use .illust .con-t img:nth-of-type(1) {
    width: 64px;
  }

  #tko-use .illust .con-t img:nth-of-type(2) {
    width: 90px;
    transform: translate(0, -50%);
    right: 16px;
  }

  #tko-use .illust .con-t .tko-use__copy {
    padding: 0;
    font-size: 18px;
  }

  #tko-use .illust .con-t .tko-use__copy .tko-use__copy-mark {
    padding: 0 6px;
  }

  /*===========max-width:600px============*/
}


#tko-intro {
  margin-bottom: 100px;
}

#tko-intro .con-t.text p {
  font-size: 14px;
  letter-spacing: 0.2em;
  line-height: 2.2em;
  margin-bottom: 25px;
}

#tko-intro .con-t.text p:last-of-type {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  #tko-intro {
    margin-bottom: 70px;
  }

  #tko-intro .con-r {
    padding: 0 20px;
  }

  #tko-intro .con-t.text p {
    letter-spacing: 0.1em;
    margin-bottom: 20px;
  }

  /*===========max-width:768px============*/
}

/*====================
②お悩み紹介
====================*/
#tko-worry {
  position: relative;
  margin-bottom: 100px;
}

#tko-worry .con-r {
  margin: auto;
}

#tko-worry .con-t {
  border: 2px solid #a4bfab;
  background: #fff;
}

#tko-worry h3 {
  text-align: center;
  padding: 20px;
  background: #d8ece4;

  font-size: 22px;
  letter-spacing: 0.3em;
}

#tko-worry .list {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 30px 20px;
}

#tko-worry li {
  padding: 5px 0 5px 34px;
  background: url("../../img/manage/mng01-worry_icon.png") no-repeat center left / 24px auto;
  letter-spacing: 0.2em;
  margin-bottom: 5px;
  font-size: 14px;
}

#tko-worry li:last-of-type {
  padding-bottom: 0;
}

#tko-worry .con-r.closing {
  margin-top: 40px;
}

#tko-worry .con-r.closing .con-t {
  border: none;
  background: none;
  text-align: center;

  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 768px) {
  #tko-worry {
    margin-bottom: 70px;
  }

  #tko-worry .con-r {
    padding: 0 20px;
  }

  #tko-worry h3 {
    padding: 15px;
    font-size: 18px;
    letter-spacing: 0.1em;
  }

  #tko-worry .list {
    display: block;
    padding: 15px 20px;
  }

  #tko-worry li {
    padding: 5px 0 5px 30px;
    background: url("../../img/manage/mng01-worry_icon.png") no-repeat center left / 20px auto;
    letter-spacing: 0.1em;
    margin-bottom: 0px;
  }

  #tko-worry .con-r.closing {
    margin-top: 25px;
  }

  #tko-worry .con-r.closing .con-t {
    font-size: 16px;
    letter-spacing: 0.1em;
  }

  /*===========max-width:768px============*/
}

/*====================
③私たちの考え方
manage.css の #mng02-plan（背景・.con-t.title の h3 / h4）を流用。
本文（.con-t.text）は従来のまま。
====================*/
#tko-policy {
  position: relative;
  background: url("../../img/manage/mng02-plan_bk.jpg") no-repeat center / cover;
  margin-bottom: 100px;
  padding: 50px 0 0;
}

#tko-policy .con-t.title {
  position: relative;
}

#tko-policy .con-t.title h3 {
  white-space: nowrap;
  background: url("../../img/manage/mng01-force_icon.png") no-repeat left center / 25px auto;
  padding: 5px 0 5px 46px;
  font-size: 24px;

  letter-spacing: 0.15em;
  font-weight: 500;
  margin: 0 0 30px 0;
}

#tko-policy .con-t.title h4 {
  width: 70%;
  padding-bottom: 50px;
  line-height: 2.2;
}

#tko-policy .con-t.title h4 span {
  display: inline;
  background: #fff;
  font-weight: 600;
  letter-spacing: 0.25em;
  padding: 4px 8px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

#tko-policy .con-t.title img {
  display: block;
  position: absolute;
  bottom: 60px;
  right: 0;
  max-width: 400px;
}

#tko-policy .con-t.text {
  /* manage02 はカード群が下余白を持つため、本文側で同じ余白を確保 */
  padding-bottom: 50px;
}

#tko-policy .con-t.text p {
  font-size: 14px;
  letter-spacing: 0.2em;
  line-height: 2.2em;
  margin-bottom: 25px;
}

#tko-policy .con-t.text .tko-policy__lead {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
  line-height: 1.8;
}

#tko-policy .con-t.text p:last-of-type {
  margin-bottom: 0;
}

@media screen and (max-width: 1030px) {
  #tko-policy .con-t.title img {
    max-width: 250px;
    bottom: 60px;
    right: -30px;
  }

  /*===========max-width:1030px============*/
}

@media screen and (max-width: 890px) {
  #tko-policy .con-t.title h4 {
    width: 100%;
  }

  #tko-policy .con-t.title img {
    max-width: 170px;
    bottom: 60px;
    right: -30px;
  }

  /*===========max-width:890px============*/
}

@media screen and (max-width: 768px) {
  #tko-policy {
    margin-bottom: 70px;
  }

  #tko-policy .con-r {
    padding: 0 20px;
  }

  #tko-policy .con-t.title h3 {
    background: url("../../img/manage/mng01-force_icon.png") no-repeat left center / 10px auto;
    padding: 6px 0 5px 15px;
    font-size: 17.5px;
    letter-spacing: 0.15em;
    margin: 0 0 20px 0;
  }

  #tko-policy .con-t.title h4 {
    font-size: 16px;
    padding-bottom: 10px;
  }

  #tko-policy .con-t.title h4 span {
    padding: 3px 6px;
    letter-spacing: 0.15em;
    text-align: left;
  }

  #tko-policy .con-t.title img {
    bottom: auto;
    top: auto;
    bottom: 100%;
    right: 0;
    max-width: 120px;
  }

  #tko-policy .con-t.text {
    padding-bottom: 40px;
  }

  #tko-policy .con-t.text p {
    letter-spacing: 0.1em;
    margin-bottom: 20px;
  }

  #tko-policy .con-t.text .tko-policy__lead {
    font-size: 15px;
    letter-spacing: 0.1em;
  }

  /*===========max-width:768px============*/
}


/*====================
④ご相談から土地整理までの流れ
ステップ表示は sell.css の .sell-detail と同一デザイン。
sell.css には未スコープの .inner-small 上書きが含まれるため読み込まず、
必要な定義のみ #tko-flow 配下に複製している。
====================*/
#tko-flow {
  position: relative;
  margin-bottom: 100px;
}

#tko-flow .sell-detail {
  padding-bottom: 48px;
  position: relative;
}

#tko-flow .sell-detail:last-of-type {
  padding-bottom: 0;
}

#tko-flow .sell-detail .sell-detail__header {
  display: flex;
  align-items: center;
  padding-bottom: 32px;
}

#tko-flow .sell-detail .sell-detail__header .sell-detail__number {
  height: 72px;
  background-color: #a29494;
  padding-left: 30px;
  padding-right: 22px;
  border-radius: 36px 0 0 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#tko-flow .sell-detail .sell-detail__header .sell-detail__number .sell-detail__step {
  color: var(--color-white);
  font-size: 13px;
  letter-spacing: 0.075em;
}

#tko-flow .sell-detail .sell-detail__header .sell-detail__number .sell-detail__icon {
  width: 37px;
}

#tko-flow .sell-detail .sell-detail__header .sell-detail__title {
  border: 2px solid #a29494;
  height: 72px;
  display: flex;
  align-items: center;
  padding-left: 40px;
  padding-right: 40px;
  border-radius: 0 36px 36px 0;
  background-color: var(--color-white);
  width: 100%;
  color: #a29494;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.28em;
}

#tko-flow .sell-detail .sell-detail__content .sell-detail__content-text {
  max-width: 620px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 1025px) {
  #tko-flow .sell-detail .sell-detail__content .sell-detail__content-text {
    max-width: 500px;
  }

  /*===========max-width:1025px============*/
}

#tko-flow .tko-flow__price {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding-top: 12px;
}

#tko-flow .tko-flow__price .tko-flow__price-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

#tko-flow .tko-flow__price .tko-flow__price-value {
  font-weight: 700;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 960px) {
  #tko-flow .section-title.line-right::before {
    left: 36px;
  }

  /* 左に 16px 余白を残し、そこから 20px 内側で縦線とクロス */
  #tko-flow .section-title.line-right::after {
    width: calc(100% - 16px);
  }

  #tko-flow .section-title.line-right .section-title__text-en,
  #tko-flow .section-title.line-right .section-title__text-ja {
    padding-left: 48px;
  }

  /*===========max-width:960px============*/
}

@media screen and (max-width: 768px) {
  #tko-flow {
    margin-bottom: 70px;
  }

  #tko-flow .con-r {
    padding: 0 20px;
  }

  #tko-flow .sell-detail .sell-detail__header {
    padding-bottom: 16px;
  }

  #tko-flow .sell-detail {
    padding-bottom: 24px;
  }

  #tko-flow .sell-detail .sell-detail__header .sell-detail__title {
    font-size: 15px;
    padding-left: 24px;
    padding-right: 24px;
    height: 40px;
    letter-spacing: .1em;
    line-height: 1.5;
  }

  #tko-flow .sell-detail .sell-detail__header .sell-detail__number {
    height: 40px;
  }

  #tko-flow .sell-detail .sell-detail__header .sell-detail__number .sell-detail__step {
    font-size: 10px;
  }

  #tko-flow .sell-detail .sell-detail__header .sell-detail__number .sell-detail__icon {
    width: 18px;
  }

  #tko-flow .sell-detail .sell-detail__content .sell-detail__content-text {
    max-width: 400px;
  }

  #tko-flow .tko-flow__price .tko-flow__price-label {
    letter-spacing: 0.1em;
  }


  /*===========max-width:768px============*/
}

@media screen and (max-width: 600px) {
  #tko-flow .section-title.line-right::before {
    left: 32px;
  }

  #tko-flow .section-title.line-right::after {
    width: calc(100% - 16px);
  }

  #tko-flow .section-title.line-right .section-title__text-en,
  #tko-flow .section-title.line-right .section-title__text-ja {
    padding-left: 44px;
  }

  #tko-flow .section-title .section-title__text-ja {
    letter-spacing: 0.06em;
  }

  #tko-flow .sell-detail .sell-detail__header .sell-detail__number {
    padding-left: 20px;
    padding-right: 12px;
  }

  #tko-flow .sell-detail .sell-detail__header .sell-detail__title {
    padding-left: 16px;
    padding-right: 16px;
  }

  /*===========max-width:600px============*/
}

/* #ser-our 本文：p 区切りの余白 */
#takeover #ser-our .ser-our__text-con_t .ser__description-text p {
  text-align: inherit;
  margin: 0 0 12px;
}

#takeover #ser-our .ser-our__text-con_t .ser__description-text p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  #takeover #ser-our .ser-our__text-con_t .ser__description-text p {
    margin: 0 0 8px;
  }
}

/*====================
⑦相談窓口
====================*/
#tko-contact {
  position: relative;
  margin-bottom: 100px;
}

/* #top-service .top-service__bg と同じ左ウェーブ */
#tko-contact .tko-contact__bg {
  position: absolute;
  background-image: var(--bg-wave-medium_02);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
  width: 392px;
  height: 306px;
  left: -240px;
  bottom: 20%;
  z-index: -1;
}

/* 相談窓口カード */
#tko-contact .tko-contact__card {
  background: var(--color-white);
  border: 2px solid #e4e4e6;
  /* サイト共通の非対称な丸み（.subpage-header__bg / .ser-our__bg）に合わせる */
  border-radius: 0 60px 0 60px;
  padding: 60px 72px;
}

#tko-contact .tko-contact__card-head {
  padding-bottom: 32px;
  margin-bottom: 8px;
  border-bottom: 0.8px solid #e4e4e6;
}

#tko-contact .tko-contact__company {
  color: var(--color-gray-medium);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.5;
}

#tko-contact .tko-contact__representative {
  margin-top: 8px;

  font-size: 13px;
  letter-spacing: 0.15em;
}

#tko-contact .tko-contact__label {
  position: relative;
  display: inline-block;
  margin-top: 24px;
  padding-left: 40px;

  color: var(--color-orange);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
}

#tko-contact .tko-contact__label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 28px;
  height: 0.8px;
  background-color: var(--color-orange);
}

#tko-contact .tko-contact__business-name {
  margin-top: 10px;

  color: var(--color-gray-medium);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.5;
}

#tko-contact .tko-contact__row {
  display: flex;
  align-items: baseline;
  gap: 32px;
  padding: 20px 0;
  border-bottom: 0.8px solid #f0f0f2;
}

#tko-contact .tko-contact__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

#tko-contact .tko-contact__row dt {
  flex: 0 0 84px;

  color: var(--color-gray-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

#tko-contact .tko-contact__row dd {
  font-size: 14px;
  letter-spacing: 0.15em;
}

#tko-contact .tko-contact__tel {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  color: var(--color-gray-medium);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  transition: all 0.3s ease;
}

#tko-contact .tko-contact__tel-link {
  display: none;
}

#tko-contact .tko-contact__tel::before {
  content: "";
  flex: none;
  width: 17px;
  height: 19px;
  background: url("../../img/common/phone-icon.svg") no-repeat center / contain;
}

#tko-contact .tko-contact__link {
  color: var(--color-gray-medium);
  text-decoration: underline;
  word-break: break-all;
  transition: all 0.3s ease;
}

#tko-contact .tko-contact__tel-link:hover,
#tko-contact .tko-contact__link:hover {
  color: var(--color-orange);
}

#tko-contact .tko-contact__message {
  width: fit-content;
  margin: 60px auto 50px;
  padding: 0 32px 0 35px;
  background-image: url("../../img/manage/manage-foot_i1.png"),
    url("../../img/manage/manage-foot_i2.png");
  background-repeat: no-repeat, no-repeat;
  background-size: 22px auto, 22px auto;
  background-position: left top, right top;
  text-align: center;

  font-size: 26px;
  letter-spacing: 0.2em;
  font-weight: 600;
}

#tko-contact .btn-gradation {
  margin: 0 auto;
  font-weight: 500;
}

@media screen and (max-width: 960px) {
  #tko-contact .tko-contact__bg {
    top: 73%;
  }

  #tko-contact .tko-contact__card {
    padding: 48px 40px;
  }

  #tko-contact .tko-contact__company {
    font-size: 22px;
  }

  #tko-contact .tko-contact__tel {
    font-size: 22px;
  }

  /*===========max-width:960px============*/
}

@media screen and (max-width: 768px) {
  #tko-contact .tko-contact__bg {
    top: 80%;
  }

  #tko-contact .con-r {
    padding: 0 20px;
  }

  #tko-contact .tko-contact__card {
    border-radius: 0 40px 0 40px;
    padding: 32px 24px;
  }

  #tko-contact .tko-contact__card-head {
    padding-bottom: 24px;
  }

  #tko-contact .tko-contact__company {
    font-size: 18px;
    letter-spacing: 0.08em;
  }

  #tko-contact .tko-contact__representative {
    font-size: 12px;
    letter-spacing: 0.1em;
  }

  #tko-contact .tko-contact__label {
    margin-top: 20px;
    padding-left: 28px;
    font-size: 12px;
  }

  #tko-contact .tko-contact__label::before {
    width: 20px;
  }

  #tko-contact .tko-contact__business-name {
    margin-top: 8px;
    font-size: 16px;
    letter-spacing: 0.08em;
  }

  /* SPはラベルを見出しのように上に置く */
  #tko-contact .tko-contact__row {
    display: block;
    padding: 16px 0;
  }

  #tko-contact .tko-contact__row dt {
    margin-bottom: 6px;
    font-size: 11px;
  }

  #tko-contact .tko-contact__row dd {
    letter-spacing: 0.1em;
  }

  #tko-contact .tko-contact__tel {
    gap: 10px;
    font-size: 20px;
  }

  #tko-contact .tko-contact__message {
    margin: 40px auto 25px;
    padding: 0 16px 0 18px;
    font-size: 16px;
    letter-spacing: 0.1em;
    background-size: 12px auto, 12px auto;
    background-position: left bottom, right bottom;

  }

  /*===========max-width:768px============*/
}

@media screen and (max-width: 600px) {
  #tko-contact .tko-contact__bg {
    width: 196px;
    height: 153px;
    left: -120px;
  }

  #tko-contact .tko-contact__tel-text {
    display: none;
  }

  #tko-contact .tko-contact__tel-link {
    display: inline-flex;
  }

  /*===========max-width:600px============*/
}