@charset "UTF-8";
/* SCSSの読み込み */
@import url(all.css);
/* font-weight */
:root {
  /* カラー */
  --color-text: #333;
  --color-blue: #1c74ed;
  --color-yellow: #fec221;
  --color-ocean: #016874;
  --color-sky: #e0f6f8;
  /* font-family */
  --font-family-noto: "Noto Sans JP", sans-serif;
  --font-family-kaku: "Zen Kaku Gothic New", sans-serif;
  --font-family-kanjuku: "kanjuku", serif;
  /* font-weight */
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
}

@media screen and (min-width: 768px) {
  :root {
    /* フォントサイズ */
    --font-size-xxxl: 4.6rem;
    --font-size-xxl: 3.2rem;
    --font-size-xl: 2.4rem;
    --font-size-base: 1.6rem;
    /* line-height */
    --line-height-xxxl: 1.56522;
    --margin-height-xxxl: -0.28261em;
    --line-height-base: 2;
    --margin-height-base: -0.5em;
    /* letter-speacing */
    --letter-spacing-base: 0.06em;
  }
}
@media screen and (max-width: 767px) {
  :root {
    /* フォントサイズ */
    --font-size-xxxl: 1.875em;
    --font-size-xxl: 1.5em;
    --font-size-xl: 1.25em;
    --font-size-gl: 1.125em;
    --font-size-base: 1em;
    --font-size-sm: 0.875em;
    --font-size-xs: 0.75em;
    /* line-height */
    --line-height-xxxl: 1.5;
    --line-height-xxl: 1.5;
    --line-height-xl: 1.5;
    --line-height-gl: 1.6666667;
    --line-height-base: 1.875;
    --line-height-sm: 1.714286;
    --line-height-xs: 1.666667;
    /* letter-speacing */
    --letter-spacing-base: 0em;
  }
}
/*===============================================
  切り替え用
===============================================*/
.sp-none {
  display: none !important;
}

.com-table table,
.com-table table tbody,
.com-table table th,
.com-table table tr,
.com-table table td {
  display: block !important;
  width: 100% !important;
}

/*===============================================
  wrapper
===============================================*/
#wrapper {
  min-width: 320px;
  font-size: clamp(1.3rem, 4vw, 1.6rem);
}

/*===============================================
  header
===============================================*/
#header .header__inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 90%;
  height: 72px;
}
#header .header__logo img {
  height: 18px;
}

/*===============================================
  footer
===============================================*/
#footer {
  padding: clamp(48px, 15vw, 60px) 0;
}
#footer .footer__logo {
  text-align: center;
  margin-bottom: clamp(32px, 10vw, 40px);
}
#footer .footer__logo img {
  height: 18px;
}
#footer .footer__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: clamp(24px, 7.5vw, 30px);
}
#footer .footer__inner > * {
  width: 100%;
}
#footer .footer__info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1em;
  padding: 0 5%;
  line-height: 1.5;
}
#footer .footer__info-add {
  width: 100%;
  text-align: center;
}
#footer .footer__info-item dt {
  padding: 0 0.5em;
  margin-right: 0.5em;
}
#footer .footer__links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(16px, 5vw, 20px);
  padding: 0 5%;
}
#footer .footer__btn {
  width: calc(50% - 10px);
  min-width: clamp(200px, 60vw, 240px);
  height: 60px;
  border-radius: 10px;
  letter-spacing: var(--letter-spacing-base);
  padding-right: 0.875em;
}
#footer .footer__btn::before {
  width: 1.25em;
  margin-right: 0.75em;
}
#footer .footer__sns {
  width: 100%;
  gap: 30px;
  padding-top: 5px;
}
#footer .footer__sns-item {
  width: clamp(40px, 12.5vw, 50px);
}

/*フッターナビ
-----------------------------*/
.fnav {
  padding-top: clamp(24px, 7.5vw, 30px);
}
.fnav__list {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  background: var(--color-ocean);
  gap: 1px;
  padding: 1px 0;
}
.fnav__item {
  width: 100%;
  background: #f2fafe;
}
.fnav__item--sub {
  width: calc(50% - 0.5px);
}
.fnav__link {
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  letter-spacing: var(--letter-spacing--base);
  padding: 1.25em 1em;
}
.fnav__link--sub {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
}

/*コピーライト
-----------------------------*/
.copy {
  padding-top: 10px;
}

/*===============================================
  fixed固定
===============================================*/
/*ページトップ
-----------------------------*/
#pagetop {
  width: 3em;
  height: 3em;
  font-size: var(--font-size-xl);
  right: 8px;
  bottom: 8px;
}

/*===============================================
  visual
===============================================*/
/*メインビジュアル
-----------------------------*/
.visual__main::before {
  height: 60%;
}
.visual__main-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 90%;
  gap: 2.5vw;
}
.visual__main-button {
  width: 100%;
  height: 50vw;
  border: solid 0.625vw #fff;
  border-radius: 5vw;
  box-shadow: 0px 0px 9px 2px rgba(0, 0, 0, 0.1);
}
.visual__main-button-en {
  font-size: 5vw;
  letter-spacing: 0.025em;
  margin-bottom: 0.5em;
}
.visual__main-button-ja {
  width: 80%;
  border-radius: 100vh;
  padding: 5vw 5vw;
}
.visual__main-button-ja > span {
  display: block;
  letter-spacing: var(--letter-spacing-base);
  margin-right: calc(var(--letter-spacing-base) * -1);
}
.visual__main-button-ja .txt {
  font-size: 6.25vw;
}
.visual__main-button-ja .min {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 5vw;
  margin: 0.2em auto 0;
  position: relative;
}
.visual__main-button-ja .min::after {
  content: "";
  display: block;
  width: 0.75em;
  aspect-ratio: 12/15;
  background: var(--color-yellow);
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  margin-left: 0.5em;
}
.visual__main-button--hidden::after {
  font-size: 7.5vw;
  letter-spacing: var(--letter-spacing-base);
}
.visual__main-box {
  padding-top: 15vw;
}
.visual__main-box::after {
  width: 36%;
  right: 7.5vw;
  bottom: 5vw;
}
.visual__main-catch {
  align-items: flex-start;
  text-align: left;
  width: 100%;
  padding: 15vw 5vw;
}
.visual__main-catch .main {
  font-size: 7.5vw;
  line-height: 1.5;
  letter-spacing: var(--letter-spacing-base);
  margin-right: -0.56em;
  margin-bottom: 0.5em;
  word-break: keep-all;
}
.visual__main-catch .main .blue {
  font-size: 1.08em;
}
.visual__main-catch .main::after {
  width: calc(100% - 0.56em);
  height: 0.625vw;
  background: linear-gradient(to right, var(--color-yellow) 0.625vw, transparent 0.625vw, transparent 2.1875vw) repeat-x left center/2.1875vw 100%;
  margin-top: 0.25em;
}
.visual__main-catch .sub {
  font-size: 5.625vw;
  line-height: 1.5;
  padding-right: 20%;
  word-break: keep-all;
}

/*サブビジュアル
-----------------------------*/
.visual__sub {
  height: clamp(180px, 56.25vw, 225px);
}
.visual__sub::before, .visual__sub::after {
  width: 180%;
  max-width: 780px;
}
.visual__sub-catch {
  width: 90%;
  max-width: 360px;
  height: 53.3334%;
  font-size: clamp(2rem, 6.25vw, 2.5rem);
  border-radius: 5vw;
}
.visual__sub-catch > span {
  letter-spacing: var(--letter-spacing-base);
  margin-right: calc(var(--letter-spacing-base) * -1);
}
.visual__sub-catch::after {
  font-size: 0.8em;
  letter-spacing: 0.025em;
  margin-right: -0.025em;
  margin-top: 0.5em;
}

/*===============================================
  main#container
===============================================*/
#container {
  line-height: var(--line-height-base);
  letter-spacing: var(--letter-spacing--base);
}

/*===============================================
  パンくずリスト
===============================================*/
.breadcrumb {
  padding-top: 0.5em;
}
.breadcrumb__list {
  width: 90%;
}
.breadcrumb__item {
  font-size: var(--font-size-xs);
  line-height: var(--line-height-xs);
}
.breadcrumb + .section {
  padding-top: clamp(80px, 25vw, 100px);
}

/*===============================================
  main共通
===============================================*/
.section {
  padding: clamp(64px, 20vw, 80px) 0;
}

.inbox {
  width: 90%;
}

/*電話番号
-----------------------------*/
.com-tel {
  font-size: 2em;
  height: 80px;
}
.com-tel-num::before {
  width: 0.75em;
  height: 0.75em;
  margin-right: 0.25em;
}
.com-tel-num span {
  letter-spacing: var(--letter-spacing-base);
  margin: -0.2em calc(var(--letter-spacing-base) * -1) -0.0666667em 0;
}
.com-tel .com-replace {
  font-size: 1em;
  height: 0.375em;
  margin-top: 0.375em;
}

/*ボタン
-----------------------------*/
.com-btn {
  width: min(400px, 75%);
  max-width: 100%;
  height: 60px;
  font-size: var(--font-size-gl);
  padding-left: 0.6em;
  margin: 0 auto;
}
.com-btn::before {
  width: 10px;
  left: 8%;
}

.com-mail {
  height: 80px;
  font-size: 1.6rem;
  line-height: 1.25;
  letter-spacing: var(--letter-spacing-base);
}
.com-mail::before {
  height: 37.5%;
  margin-right: 20px;
}

.com-line {
  height: 80px;
  font-size: 1.6rem;
  line-height: 1.25;
  letter-spacing: var(--letter-spacing-base);
}
.com-line::before {
  height: 50%;
  margin-right: 20px;
}

/*テーブル
-----------------------------*/
.com-table tr th {
  background: #f2fafe;
  padding: 1em 1.25em;
}
.com-table tr td {
  padding: 1em 1.25em;
}

/*テキストボックス
-----------------------------*/
.com-text strong {
  font-size: var(--font-size-gl);
  font-weight: var(--font-weight-bold);
}
.com-text .mb {
  margin-bottom: var(--font-size-base);
}
.com-text br {
  display: none;
}

/*SB未記入テキスト
-----------------------------*/
.com-empty {
  font-size: var(--font-size-xl);
  line-height: var(--line-height-xl);
  padding: 2.5em 0;
}

/*===============================================
  タイトル
===============================================*/
/*大タイトル
-----------------------------*/
.com-title01 {
  font-size: var(--font-size-xxxl);
  margin-bottom: 1.2em;
}
.com-title01 .ja {
  line-height: var(--line-height-xxxl);
  word-break: keep-all;
}
.com-title01 .en {
  font-size: 0.5em;
  margin-top: 0.6em;
}

/*中タイトル
-----------------------------*/
.com-title02 {
  font-size: var(--font-size-xxl);
  padding-bottom: 0.5em;
  margin-bottom: 1em;
}
.com-title02 > span {
  line-height: var(--line-height-xxl);
  word-break: keep-all;
}

/*小タイトル
-----------------------------*/
.com-title03 {
  font-size: var(--font-size-xl);
  border-left-width: 4px;
  padding: 0.25em 1em 0.25em 1em;
  margin-bottom: 1em;
}
.com-title03 > span {
  line-height: var(--line-height-xl);
}

/*===============================================
  共通セクション
===============================================*/
/*無料相談・お問い合わせはこちら
-----------------------------*/
.com-contact {
  padding: clamp(48px, 15vw, 60px) 0 clamp(24px, 7.5vw, 30px);
  background-size: 160%;
  background-position: center top;
}
.com-contact__box {
  width: 100%;
  padding: clamp(48px, 15vw, 60px) 5% clamp(80px, 25vw, 100px);
}
.com-contact__box::before {
  opacity: 0.88;
}
.com-contact__box::after {
  width: 98%;
  min-width: 360px;
  height: clamp(80px, 25vw, 100px);
  bottom: clamp(-13px, -3.25vw, -10px);
}
.com-contact__tel {
  margin-bottom: 15px;
}
.com-contact__links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-auto-flow: row;
  gap: 15px;
}
/*セクション名
-----------------------------*/
/*===============================================
  トップページ
===============================================*/
/*このような
疑問・お悩みはありませんか？
-----------------------------*/
.top-worries {
  padding-bottom: 0;
}
.top-worries::before {
  width: 106%;
  height: 96%;
  background-size: 32%, 60%;
  top: 1%;
}
.top-worries .inbox::after {
  display: block;
  width: 100%;
  height: clamp(120px, 37.5vw, 150px);
  margin-top: clamp(36px, 11.25vw, 45px);
}
.top-worries__title br {
  display: none;
}
.top-worries__item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: var(--font-size-gl);
  padding-left: 2.3em;
  margin-bottom: 1.25em;
}
.top-worries__item::before {
  width: 1.5em;
  height: calc(var(--line-height-gl) * 1em);
}
.top-worries__item p {
  line-height: var(--line-height-gl);
}
.top-worries:has(+ .top-greeting) + .top-greeting {
  padding-top: clamp(100px, 31.25vw, 125px);
}
.top-worries:has(+ .top-greeting) + .top-greeting::before {
  height: clamp(48px, 15vw, 60px);
}

/*そのお悩み、『街の法律家』
行政書士山野伊紀事務所にご相談ください！
-----------------------------*/
.top-greeting {
  background-size: 120%;
}
.top-greeting::after {
  width: 96%;
  height: clamp(80px, 25vw, 100px);
  bottom: clamp(-60px, -15vw, -48px);
}
.top-greeting__title {
  font-size: 1.625em;
}
.top-greeting__title .ja:has(.ruby) .ruby {
  display: inline-block;
  padding-bottom: 0.4615385em;
}
.top-greeting__title .ruby span {
  font-size: 0.4615385em;
  letter-spacing: 0.2em;
  margin-right: -0.2em;
}
.top-greeting__image {
  margin-top: 30px;
  margin-right: -5vw;
}
.top-greeting__image img {
  aspect-ratio: 1.7777777778;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-greeting__image img {
  border-radius: 2.5vw 0 0 2.5vw;
}
.top-greeting__btn {
  margin-top: 40px;
}

/*当事務所が選ばれる3つの理由
-----------------------------*/
.top-reason {
  background-size: 56%;
}
.top-reason::before {
  width: 98%;
  padding-top: 36%;
  bottom: 0;
}
.top-reason__item {
  margin-bottom: clamp(48px, 15vw, 60px);
}
.top-reason__item:last-of-type {
  margin-bottom: 0;
}
.top-reason__item::before {
  width: clamp(224px, 67.5vw, 270px);
  text-align: right;
  font-size: var(--font-size-xxxl);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.top-reason__item-icon {
  text-align: center;
  margin-bottom: clamp(24px, 7.5vw, 30px);
}
.top-reason__item-icon img {
  width: clamp(160px, 50vw, 200px);
}
.top-reason__item-title {
  text-align: center;
  font-size: var(--font-size-xl);
  line-height: var(--line-height-xl);
  padding-bottom: 0.5em;
}
.top-reason__btn {
  margin-top: 40px;
}

/*リンクセクション
-----------------------------*/
.top-link::before {
  background-size: 48%;
  background-position: right top;
}
.top-link__item {
  margin-bottom: clamp(32px, 10vw, 40px);
}
.top-link__item-image {
  width: 82%;
  position: relative;
  z-index: 0;
}
.top-link__item-image img {
  aspect-ratio: 1.5;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-link__item-image img {
  box-shadow: 0px 0px 9px 2px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}
.top-link__item-btn {
  width: 80%;
  margin-left: auto;
  border-radius: 12px 12px 0 12px;
  padding: 1.5em;
  margin-top: -15%;
  position: relative;
  z-index: 1;
}
.top-link__item-btn::before {
  width: 12px;
  height: 12px;
  -webkit-clip-path: polygon(12px 0, 100% 0, 100% 100%, 0 100%, 0 12px);
          clip-path: polygon(12px 0, 100% 0, 100% 100%, 0 100%, 0 12px);
}
.top-link__item-title {
  padding-bottom: 1em;
  margin-bottom: 1em;
}
.top-link__item-title .ja {
  font-size: var(--font-size-xxxl);
}
.top-link__item-title .en {
  font-size: var(--font-size-xl);
  margin-top: 0.5em;
}

/*===============================================
  業務内容
===============================================*/
/*取り扱い業務
-----------------------------*/
.business-service {
  background-size: 42%;
}
.business-service__btns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  grid-auto-flow: row;
  gap: 10px;
  margin-bottom: clamp(64px, 20vw, 80px);
}
.business-service__btn {
  height: 60px;
  font-size: 1em;
  padding-left: 2.5%;
}
.business-service__btn::before {
  width: 12px;
  left: 6%;
}
.business-service__box {
  padding: clamp(48px, 15vw, 60px) 0;
  margin-bottom: clamp(64px, 20vw, 80px);
}
.business-service__box::before {
  width: 115vw;
  background-size: 42%;
}
.business-service__box-image {
  margin-bottom: clamp(24px, 7.5vw, 30px);
}
.business-service__box-image img {
  aspect-ratio: 1.7777777778;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.business-service__box-image img {
  border-radius: 12px;
}
.business-service__box-list {
  padding-top: clamp(24px, 7.5vw, 30px);
}
.business-service__box-btn {
  margin-top: clamp(24px, 7.5vw, 30px);
}

/*当事務所が選ばれる3つの理由
-----------------------------*/
.business-reasons {
  background-size: 56%;
}
.business-reasons__item {
  margin-bottom: clamp(48px, 15vw, 60px);
}
.business-reasons__item:last-of-type {
  margin-bottom: 0;
}
.business-reasons__item::before {
  width: clamp(224px, 67.5vw, 270px);
  text-align: right;
  font-size: var(--font-size-xxxl);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.business-reasons__item-icon {
  text-align: center;
  margin-bottom: clamp(24px, 7.5vw, 30px);
}
.business-reasons__item-icon img {
  width: clamp(160px, 50vw, 200px);
}
.business-reasons__item-title {
  text-align: center;
  font-size: var(--font-size-xl);
  line-height: var(--line-height-xl);
  padding-bottom: 0.5em;
  margin-bottom: 1em;
}
.business-reasons__item-text {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

/*===============================================
  初めての方へ
===============================================*/
/*ご相談の流れ
-----------------------------*/
.beginner-flow::after {
  width: 92%;
  height: clamp(100px, 31.25vw, 125px);
  bottom: clamp(-15px, -3.75vw, -12px);
  z-index: 6;
}
.beginner-flow__item {
  margin-bottom: 76px;
}
.beginner-flow__item::after {
  width: 6px;
  height: 36px;
  background-image: radial-gradient(circle, var(--color-yellow) 3px, transparent 3px);
  background-position: right center;
  background-repeat: repeat-y;
  background-size: 6px 15px;
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%);
}
.beginner-flow__item-title {
  align-items: center;
}
.beginner-flow__item-title::before {
  font-size: 0.75em;
  letter-spacing: var(--letter-spacing-base);
  margin-bottom: 0.5em;
}
.beginner-flow__item-image {
  border: solid 2px var(--color-yellow);
  border-radius: 12px;
  overflow: hidden;
  margin-top: clamp(24px, 7.5vw, 30px);
}
.beginner-flow__item-image img {
  aspect-ratio: 1.7777777778;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*よくある質問
-----------------------------*/
.beginner-faq__item {
  padding: 1.5em;
  margin-bottom: clamp(24px, 7.5vw, 30px);
}
.beginner-faq__item-title {
  font-size: var(--font-size-gl);
  margin-bottom: 1em;
}
.beginner-faq__item-title::before {
  width: 1.666667em;
  height: 1.666667em;
  font-size: 1.33334em;
  padding-bottom: 0.15em;
}
.beginner-faq__item-title > span {
  width: calc(100% - 3em);
  line-height: 1.5;
  padding: 0.3611112em 0;
}
.beginner-faq__item-text::before {
  width: 1.666667em;
  height: 1.666667em;
  font-size: 1.5em;
  padding-bottom: 0.15em;
}
.beginner-faq__item-text .inner {
  width: calc(100% - 3.375em);
}

/*===============================================
  ご相談事例
===============================================*/
.case-list__item {
  margin-bottom: clamp(64px, 20vw, 80px);
}
.case-list__item-inner {
  padding: 1.5em;
  border-radius: 20px;
  margin-bottom: clamp(32px, 10vw, 40px);
}
.case-list__item-inner::after {
  width: clamp(64px, 20vw, 80px);
  right: -2.5vw;
  bottom: clamp(-20px, -5vw, -16px);
}
.case-list__item-text br {
  display: none;
}
.case-list__item-text:has(+ .case-list__item-box) + .case-list__item-box {
  margin-top: 1.5em;
}
.case-list__item-box {
  padding: 1em;
  border-radius: 16px;
  margin-top: 1em;
}
.case-list__item-heading {
  font-size: var(--font-size-gl);
  line-height: var(--line-height-gl);
  padding: 0.5em 1em;
  margin-bottom: 1em;
}
.case-list__item-body br {
  display: none;
}

/*===============================================
  事務所案内
===============================================*/
/*ご挨拶
-----------------------------*/
.information-greeting {
  background-size: 64%;
}
.information-greeting::after {
  width: 96%;
  height: clamp(80px, 25vw, 100px);
  bottom: clamp(-60px, -15vw, -48px);
}
.information-greeting__image {
  margin-bottom: clamp(24px, 7.5vw, 30px);
}
.information-greeting__image::before {
  width: 120vw;
  max-width: 480px;
  background-size: 56%;
  background-position: left bottom, right top;
  height: calc(100% + 20px);
  top: -10px;
}
.information-greeting__image img {
  height: clamp(160px, 50vw, 200px);
  outline: solid var(--color-yellow) 2px;
  outline-offset: -2px;
}
.information-greeting__text .name {
  font-size: var(--font-size-gl);
  line-height: var(--line-height-gl);
}
.information-greeting__list {
  padding-top: clamp(48px, 15vw, 60px);
}
.information-greeting__item {
  margin-bottom: clamp(24px, 7.5vw, 30px);
}
.information-greeting__item-title {
  margin-bottom: 0;
}
.information-greeting__item-text {
  padding: 1em 1.5em;
}

/*事務所情報
-----------------------------*/
.information-outline {
  padding: 0;
}
.information-outline .inbox {
  padding: clamp(64px, 20vw, 80px) 0;
}
.information-outline:has(.information-outline__map) .inbox {
  padding-bottom: clamp(48px, 15vw, 60px);
}
.information-outline__table tr th {
  background: #fff;
}
.information-outline__table tr td .replace img {
  height: calc(var(--font-size-base) - 2px);
  vertical-align: baseline;
}
.information-outline__map {
  height: clamp(320px, 100vw, 400px);
}

/*==================================================
 お問い合わせ
================================================== */
.contact-form__table {
  margin-bottom: 40px;
}
.contact-form__table tr th .optional-mark,
.contact-form__table tr th .required-mark {
  font-size: var(--font-size-xs);
  line-height: var(--line-height-xs);
  margin-left: 0.5em;
}
.contact-form__table tr td select,
.contact-form__table tr td textarea,
.contact-form__table tr td input[type=tel],
.contact-form__table tr td input[type=num],
.contact-form__table tr td input[type=text],
.contact-form__table tr td input[type=email],
.contact-form__table tr td input[type=url] {
  font-size: 1em;
  line-height: 1.5;
  padding: 1em;
}
.contact-form .contact-submits-wrap {
  padding-top: 16px;
}
.contact-form .contact-submits-wrap > * {
  width: 75vw;
  max-width: 360px;
  height: 60px;
  font-size: var(--font-size-gl);
  margin: 0 auto 20px;
}
.contact-form .contact-submits-wrap > *:last-child {
  margin-bottom: 0;
}

/*==================================================
 お問い合わせ完了
================================================== */
/*===============================================
  プライバシーポリシー
===============================================*/
.privacy-policy__box {
  padding: 1.5em;
  margin-bottom: clamp(24px, 7.5vw, 30px);
  border-radius: 12px;
}

/*==================================================
 サイトマップ
================================================== */
.sitemap-list__item {
  margin-bottom: 10px;
}
.sitemap-list__item:last-of-type {
  margin-bottom: 0;
}
.sitemap-list__link {
  font-size: var(--font-size-gl);
  line-height: var(--line-height-gl);
  padding: 1em;
}

/*===============================================
  404エラー
===============================================*/