@charset "UTF-8";
/* SCSSの読み込み */
@import url(all.css);
/* font-weight */
:root {
  /* カラー */
  --color-text: #222;
  --color-green: #224930;
  --color-yomogi: #a2b47c;
  --color-orange: #d96d25;
  --color-karashi: #dbc273;
  --bg-green: #f8faf6;
  --line-green: #e9ede0;
  /* font-family */
  --font-family-noto: "Noto Sans JP", sans-serif;
  --font-family-mincho: "Noto Serif JP", serif;
  --font-family-shippori: "Shippori Mincho B1", serif;
  /* font-weight */
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  /* パターン */
  --pattern-base: url(../img/common/pt-base.jpg);
}

@media screen and (min-width: 768px) {
  :root {
    /* フォントサイズ */
    --font-size-xxxxl: 5.4rem;
    --font-size-xxxl: 4.6rem;
    --font-size-xxl: 3.6rem;
    --font-size-xl: 2.4rem;
    --font-size-gl: 2rem;
    --font-size-btn: 1.8rem;
    --font-size-base: 1.6rem;
    --font-size-sm: 1.4rem;
    --font-size-xs: 1.3rem;
    /* line-height */
    --line-height-xxxxl: 1.666666667;
    --margin-height-xxxxl: -0.3333333335em;
    --line-height-xxxl: 1.956522;
    --margin-height-xxxl: -0.478261em;
    --line-height-xxl: 1;
    --margin-height-xxl: -0em;
    --line-height-xl: 1.916667;
    --margin-height-xl: -0.4583335em;
    --line-height-gl: 1.6;
    --margin-height-gl: -0.3em;
    --line-height-base: 2.5;
    --margin-height-base: -0.75em;
    --line-height-base-mid: 1.875;
    --margin-height-base-mid: -0.4375em;
    --line-height-sm: 1.714286;
    --line-height-xs: 1.6666667;
    /* letter-spacing */
    --letter-spacing-base: 0.1em;
    --letter-spacing-sm: 0.06em;
  }
}
@media screen and (max-width: 767px) {
  :root {
    /* フォントサイズ */
    --font-size-xxxxl: 2em;
    --font-size-xxxl: 1.75em;
    --font-size-xxl: 1.5625em;
    --font-size-xl: 1.375em;
    --font-size-gl: 1.25em;
    --font-size-btn: 1.125em;
    --font-size-base: 1em;
    --font-size-sm: 0.875em;
    --font-size-xs: 0.75em;
    /* line-height */
    --line-height-xxxxl: 1.5;
    --line-height-xxxl: 1.5;
    --line-height-xxl: 1.5;
    --line-height-xl: 1.5;
    --line-height-gl: 1.5;
    --line-height-base: 1.875;
    --line-height-base-mid: 1.5;
    --line-height-sm: 1.714286;
    --line-height-xs: 1.666667;
    /* letter-speacing */
    --letter-spacing-base: 0.1em;
    --letter-spacing-sm: 0.06em;
  }
}
/*===============================================
  切り替え用
===============================================*/
.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;
}

/*===============================================
  ページネーション
===============================================*/
.pagenation {
  font-size: var(--font-size-sm);
  padding-top: 2.5em;
}
.pagenation li {
  width: 2em;
  line-height: 2.15;
  margin: 0.5em 0.5em 0;
}

/*===============================================
  詳細ページ前後
===============================================*/
.paginated {
  font-size: var(--font-size-sm);
}
.paginated__list {
  padding-top: 1em;
  margin-top: 2em;
}
.paginated__link {
  line-height: var(--line-height-sm);
  letter-spacing: var(--letter-spacing-base);
}
.paginated__link--prev::before {
  margin-right: 0.5em;
}
.paginated__link--next::after {
  margin-left: 0.5em;
}

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

/*===============================================
  header
===============================================*/
#header .header__logo {
  width: min(140px, 31.1111111111vw);
}

/*===============================================
  footer
===============================================*/
#footer {
  padding: min(60px, 13.3333333333vw) 0 60px;
  padding-bottom: 60px;
}
#footer .footer__logo {
  width: min(140px, 31.1111111111vw);
  margin: 0 auto min(45px, 10vw);
}
#footer .footer__inner {
  width: 90%;
}
#footer .footer__inner > * {
  margin-bottom: min(36px, 8vw);
}
#footer .footer__inner > *:last-child {
  margin-bottom: 0;
}
#footer .footer__info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  line-height: var(--line-height-base-mid);
  letter-spacing: var(--letter-spacing-base);
  gap: 1em;
}
#footer .footer__info-item dt {
  padding: 0 0.4em 0 0.5em;
  margin-right: 0.5em;
}
#footer .footer__add {
  width: 100%;
}
#footer .footer__links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: clamp(20px, 5.5555555556vw, 25px);
}
#footer .footer__sns {
  gap: clamp(20px, 5.5555555556vw, 25px);
}
#footer .footer__sns li {
  width: clamp(40px, 11.1111111111vw, 50px);
}

/*フッターナビ
-----------------------------*/
.footer-nav {
  width: 100vw;
  background: var(--bg-green);
  margin-left: -5vw;
}
.footer-nav__list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  border-top: solid 1px var(--color-yomogi);
}
.footer-nav__item {
  width: 100%;
  border-bottom: solid 1px var(--color-yomogi);
}
.footer-nav__item--min {
  width: 50%;
}
.footer-nav__item--min:nth-last-of-type(2n) {
  border-right: solid 1px var(--color-yomogi);
}
.footer-nav__link {
  line-height: var(--line-height-base-mid);
  letter-spacing: var(--letter-spacing-base);
  padding: 1.25em;
}
.footer-nav__link--min {
  font-size: var(--font-size-sm);
}
.footer-nav__sub-list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}
.footer-nav__sub-item {
  width: 50%;
  border-bottom: solid 1px var(--color-yomogi);
}
.footer-nav__sub-item:nth-last-of-type(2n) {
  border-right: solid 1px var(--color-yomogi);
}
.footer-nav__sub-link {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-base-mid);
  letter-spacing: var(--letter-spacing-base);
  padding: 1.25em;
}

/*コピーライト
-----------------------------*/
.copy {
  font-size: var(--font-size-xs);
  padding: 1.5em 0 1em;
}
.copy p {
  line-height: var(--line-height-xs);
}

/*===============================================
  fixed固定
===============================================*/
/*ページトップ
-----------------------------*/
#pagetop {
  width: min(50px, 11.1111111111vw);
  right: 8px;
  bottom: 65px;
}

/*サイドボタン
-----------------------------*/
#side {
  width: 100%;
  left: 0;
  bottom: 0;
}

/*===============================================
  visual
===============================================*/
.visual::before {
  background-size: min(288px, 64vw);
}

/*メインビジュアル
-----------------------------*/
.visual__main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100dvh;
  min-height: min(675px, 150vw);
  padding-top: min(45px, 10vw);
  transition: all 0.3s ease-out;
}
.visual__main::before {
  width: 100%;
  height: 48%;
}
.visual__main-box {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-direction: row-reverse;
  width: 50%;
  max-width: 225px;
  padding: min(36px, 8vw) 0;
  margin-left: auto;
  margin-right: max(50% - 280px, 0px);
}
.visual__main-box::before {
  display: none;
}
.visual__main-box::after {
  width: 40%;
  right: -20%;
  top: -12%;
}
.visual__main-catch {
  font-size: min(3.2rem, 7.1111111111vw);
  letter-spacing: var(--letter-spacing-base);
  line-height: var(--line-height-xxxxl);
  padding-bottom: 1em;
  writing-mode: vertical-rl;
  max-height: auto;
  text-orientation: mixed;
}
.visual__main-catch .min {
  font-size: 0.75em;
}
.visual__main-text {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: row-reverse;
  font-size: min(2rem, 4.4444444444vw);
  line-height: var(--line-height-xxxl);
  margin-right: 0.5em;
}
.visual__main-text > span {
  background: linear-gradient(to left, rgba(219, 194, 115, 0.5) clamp(1px, 0.4444444444vw, 2px), transparent clamp(1px, 0.4444444444vw, 2px));
  margin-left: min(8px, 1.7777777778vw);
  writing-mode: vertical-rl;
  max-height: auto;
  text-orientation: mixed;
}
.visual__main-text > span:last-child {
  margin-left: 0;
}
.visual__main-image {
  width: 64%;
  margin-top: max(-180px, -40vw);
  margin-right: auto;
}
.visual__main-image img {
  width: 100%;
  height: min(350px, 77.7777777778vw);
  -o-object-fit: cover;
     object-fit: cover;
}

/*サブビジュアル
-----------------------------*/
.visual__sub {
  height: min(400px, 88.8888888889vw);
  padding-top: min(90px, 20vw);
  background-size: 32%;
  background-position: right top -5%;
}
.visual__sub::before {
  display: none;
}
.visual__sub::after {
  width: 100%;
  height: calc(100% - min(90px, 20vw));
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.visual__sub-box {
  width: 80%;
  max-width: 360px;
  height: 32.2581%;
  padding-top: min(12px, 2.6666666667vw);
}
.visual__sub-box::before {
  width: 17.5%;
  left: -12%;
  bottom: -12%;
}
.visual__sub-catch {
  min-width: 82%;
  font-size: min(2.8rem, 6.2222222222vw);
  padding-bottom: min(16px, 3.5555555556vw);
}
.visual__sub-catch > span {
  letter-spacing: var(--letter-spacing-sm);
  margin-right: calc(var(--letter-spacing-sm) * -1);
}
.visual__sub--e404 .visual__sub-catch {
  font-size: min(2.4rem, 5.3333333333vw);
}

/*===============================================
  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-sm);
  line-height: var(--line-height-sm);
}
.breadcrumb + .section {
  padding-top: min(120px, 26.6666666667vw);
}

/*===============================================
  main共通
===============================================*/
.section {
  padding: min(100px, 22.2222222222vw) 0;
}

.inbox {
  width: 90%;
}

/*電話番号
-----------------------------*/
.com-tel {
  padding-bottom: 13px;
  border-bottom: solid 2px var(--color-yomogi);
}
.com-tel-num {
  min-width: 9em;
  font-size: var(--font-size-xxxxl);
}
.com-tel-num::before {
  width: 0.75em;
  margin-right: 10px;
}
.com-tel-num span {
  letter-spacing: var(--letter-spacing-sm);
  margin-right: calc(var(--letter-spacing-sm) * -1);
}
.com-tel .com-replace {
  font-size: var(--font-size-xs);
  height: 1em;
  margin-top: 8px;
}

/*ボタン
-----------------------------*/
.com-btn {
  width: min(320px, 75%);
  height: 60px;
  font-size: var(--font-size-btn);
  letter-spacing: var(--letter-spacing-sm);
}
.com-btn--target::after {
  width: 1.5em;
  margin-left: 1em;
}
.com-btn--mail {
  padding-right: 1em;
}
.com-btn--mail::before {
  width: 1.5em;
  margin-right: 1em;
}

/*テーブル
-----------------------------*/
.com-table tr {
  border-bottom: solid 1px var(--line-green);
}
.com-table tr:first-of-type {
  border-top: solid 1px var(--line-green);
}
.com-table tr th {
  padding: 1em;
}
.com-table tr td {
  padding: 1em;
}

/*テキストボックス
-----------------------------*/
.com-text .mb {
  margin-bottom: 1em;
}
.com-text br {
  display: none;
}

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

/*===============================================
  タイトル
===============================================*/
/*大タイトル
-----------------------------*/
.com-title01 {
  font-size: var(--font-size-xxxl);
  margin-bottom: 1.5em;
}
.com-title01 > span {
  line-height: var(--line-height-xxxl);
  letter-spacing: var(--letter-spacing-base);
  margin-right: calc(var(--letter-spacing-base) * -1);
}
.com-title01 > span .b {
  font-size: 1.12em;
  line-height: 1;
}
.com-title01::before {
  height: 1.5em;
  margin-bottom: 0.5em;
}

/*中タイトル
-----------------------------*/
.com-title02 {
  font-size: var(--font-size-xl);
  margin-bottom: 1em;
}
.com-title02 > span {
  line-height: var(--line-height-xl);
  letter-spacing: var(--letter-spacing-base);
  margin-right: calc(var(--letter-spacing-base) * -1);
}

/*小タイトル
-----------------------------*/
.com-title03 {
  font-size: var(--font-size-gl);
  margin-bottom: 1.25em;
}
.com-title03 > span {
  line-height: var(--line-height-gl);
  letter-spacing: var(--letter-spacing-base);
  margin-right: calc(var(--letter-spacing-base) * -1);
}

/*===============================================
  共通セクション
===============================================*/
/*お問い合わせ
-----------------------------*/
.com-contact {
  padding: min(80px, 17.7777777778vw) 0;
}
.com-contact__box {
  width: 100%;
  padding: min(64px, 14.2222222222vw) 5%;
}
.com-contact__box::before {
  width: 100%;
  background-size: min(45px, 10vw);
}
.com-contact__title {
  margin-bottom: 1em;
}
.com-contact__text {
  text-align: center;
}
.com-contact__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: min(30px, 6.6666666667vw);
  padding-top: min(30px, 6.6666666667vw);
}
.com-contact__tel {
  padding-top: 10px;
}
.com-contact__time {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  gap: 0 1em;
}

/*セクション名
-----------------------------*/
/*===============================================
  トップページ
===============================================*/
/*四十年以上愛される、伝統の味。
和菓子の仕入れは、幸崎けやき堂で。
-----------------------------*/
.top-about {
  background-size: 42%;
}
.top-about::before {
  width: 102%;
  height: calc(100% - min(96px, 21.3333333333vw));
  background-size: min(120px, 24%);
  top: min(48px, 10.6666666667vw);
}
.top-about__title {
  width: -moz-fit-content;
  width: fit-content;
  align-items: flex-start;
  flex-direction: row-reverse;
  height: 22em;
  text-align: left;
  padding: 2em 0.75em 0;
  margin-left: auto;
  margin-bottom: 1em;
}
.top-about__title > span {
  writing-mode: vertical-rl;
  max-height: 100%;
  text-orientation: mixed;
  margin: 0;
}
.top-about__title::before {
  position: absolute;
  top: 0;
  left: 0;
}
.top-about__images {
  display: grid;
  grid-template: "top top" 1fr "left right" 1.2fr/1fr 1.1fr;
  gap: 0.5em;
  width: calc(100% - 8em);
  height: 33.75em;
  position: absolute;
  top: min(56px, 12.4444444444vw);
  left: calc(0.5em - 5vw);
}
.top-about__images::after {
  content: "";
  aspect-ratio: 210/186;
  width: min(120px, 26.6666666667vw);
  background: url(../img/common/deco_yomogimochi.png) no-repeat right bottom/contain;
  position: absolute;
  right: -8%;
  bottom: 0;
  z-index: -1;
}
.top-about__image--top {
  grid-area: top;
  max-height: 235px;
  transform: translateX(0.5em);
}
.top-about__image--left {
  grid-area: left;
  height: 100%;
  max-height: 270px;
}
.top-about__image--right {
  grid-area: right;
  height: 50%;
}
.top-about__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*幸崎けやき堂のこだわり
-----------------------------*/
.top-quality {
  margin-bottom: min(360px, 88.8888888889vw);
}
.top-quality__list {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.top-quality__item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5em;
}
.top-quality__item-icon {
  aspect-ratio: 1;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
.top-quality__item-text {
  width: calc(100% - 100px);
}
.top-quality__item-text::before {
  font-size: var(--font-size-xxxl);
  margin-bottom: 0.25em;
}
.top-quality__item-text p {
  font-size: var(--font-size-btn);
  line-height: var(--line-height-btn);
}
.top-quality__item-text p br {
  display: none;
}
.top-quality__btn {
  margin: 2em auto 0;
}

/*バナーリンクセクション
-----------------------------*/
.top-bnr {
  padding: min(80px, 17.7777777778vw) 0;
}
.top-bnr__item {
  height: min(280px, 62.2222222222vw);
  box-shadow: 0px 0px 16px 4px rgba(34, 34, 34, 0.18);
  margin-bottom: 20px;
}
.top-bnr__item:last-of-type {
  margin-bottom: 0;
}
.top-bnr__link {
  padding: 1.5em 1.25em;
}
.top-bnr__title {
  padding-bottom: 1em;
  margin-bottom: 0.5em;
}
.top-bnr__title::before {
  height: 2em;
  bottom: 0;
}
.top-bnr__text {
  padding: 1em 0.75em;
  letter-spacing: var(--letter-spacing-sm);
}

/*お知らせ
-----------------------------*/
.top-news {
  background-size: 36%;
}
.top-news__item {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  padding-bottom: 2em;
  margin-bottom: 3em;
}
.top-news__item-link {
  row-gap: 1em;
}
.top-news__item-date {
  width: 8em;
}
.top-news__item-tags {
  width: calc(100% - 8em);
  gap: 10px;
}
.top-news__item-tag {
  padding: 0 0.5em;
}
.top-news__item-title {
  font-size: 1.14286em;
  line-height: var(--line-height-base);
}
.top-news__btn {
  margin: 2em auto 0;
}

/*===============================================
  幸崎けやき堂について
===============================================*/
/*ご挨拶
-----------------------------*/
.about-greeting::before {
  width: 120%;
  height: calc(100% - min(128px, 28.4444444444vw));
  background-size: 48%;
  top: min(64px, 14.2222222222vw);
}
.about-greeting::after {
  width: 88%;
  height: min(96px, 21.3333333333vw);
  right: 4%;
  bottom: min(20px, 4.4444444444vw);
}

/*幸崎けやき堂のこだわり
-----------------------------*/
.about-quality__item {
  margin-bottom: min(80px, 17.7777777778vw);
}
.about-quality__item::before {
  text-align: center;
  font-size: var(--font-size-xxxxl);
  margin-bottom: 0.5em;
}
.about-quality__item-title {
  align-items: center;
  text-align: center;
}
.about-quality__item-title > span {
  word-break: keep-all;
}
.about-quality__item-image {
  margin-top: 2em;
}
.about-quality__item-image img {
  aspect-ratio: 1.7777777778;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-quality__item-image::after {
  width: min(180px, 40vw);
  bottom: max(-45px, -10vw);
  left: -10%;
}

/*販売実績
-----------------------------*/
.about-case__list {
  font-size: var(--font-size-btn);
  line-height: 1.5;
  box-shadow: 0 0 0 2px var(--color-yomogi) inset, 0 0 0 8px #fff inset;
  gap: 0.5em 1em;
  padding: 1.5em 1.25em;
}

/*===============================================
  商品紹介
===============================================*/
/*商品紹介　一覧
-----------------------------*/
.lineup-list__item {
  padding: 1.5em;
  margin-bottom: 30px;
}
.lineup-list__item::before {
  background-size: 32%;
  transform: scale(1, -1);
}
.lineup-list__item-image {
  margin-bottom: 1.5em;
}
.lineup-list__item-image img {
  aspect-ratio: 1.5;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lineup-list__item-title {
  margin-bottom: 0.5em;
}

/*===============================================
  ご注文案内
===============================================*/
/*ご注文について
-----------------------------*/
.order-about__list {
  padding: 2em 1.5em;
}
.order-about__list::before {
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  top: 8px;
  left: 8px;
}
.order-about__list::after {
  width: min(150px, 33.3333333333vw);
  right: -2%;
  bottom: max(-80px, -17.7777777778vw);
}
.order-about__item {
  padding-left: 1.5em;
  margin-bottom: 1.5em;
}
.order-about__item::before {
  width: 0.875em;
  top: 0.40625em;
}
.order-about__item > span {
  font-size: var(--font-size-btn);
  line-height: 1.5;
}

/*ご注文の流れ
-----------------------------*/
.order-flow {
  background-size: 42%;
}
.order-flow::before {
  width: 102%;
  height: calc(100% - min(160px, 35.5555555556vw));
  background-size: min(120px, 24%);
  top: min(80px, 17.7777777778vw);
}
.order-flow__item {
  margin-bottom: min(90px, 20vw);
}
.order-flow__item-title {
  justify-content: space-between;
  align-items: flex-end;
  flex-direction: row;
  padding-bottom: 1em;
  margin-bottom: 1em;
}
.order-flow__item-title::before {
  letter-spacing: var(--letter-spacing-base);
}
.order-flow__item-title > span {
  width: calc(100% - 2em);
}
.order-flow__item-image {
  margin-bottom: 1.5em;
}
.order-flow__item-image img {
  aspect-ratio: 1.7777777778;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.order-flow__item::after {
  width: min(60px, 13.3333333333vw);
  aspect-ratio: 3/1;
  top: calc(100% + min(35px, 7.7777777778vw));
}

/*よくある質問
-----------------------------*/
.order-faq__item {
  margin-bottom: 30px;
}
.order-faq__item-title::before {
  width: 2.7em;
  font-size: var(--font-size-gl);
  padding: 0.8em 0 0.9em;
}
.order-faq__item-title > span {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: calc(100% - 4em);
  font-size: var(--font-size-btn);
  line-height: 1.5;
  padding: 0.75em 1.5em 0.75em 0;
}
.order-faq__item-text {
  line-height: 2;
}
.order-faq__item-text::before {
  width: 2.7em;
  font-size: var(--font-size-gl);
  padding: 0.8em 0 0.9em;
}
.order-faq__item-text p {
  width: calc(100% - 4.5em);
  padding: 0.6875em 0;
}

/*===============================================
  会社案内
===============================================*/
/*会社情報
-----------------------------*/
.company-info {
  padding: 0 !important;
}
.company-info::before {
  width: 102%;
  height: calc(100% - min(160px, 35.5555555556vw));
  background-size: min(120px, 24%);
  top: min(80px, 17.7777777778vw);
}
.company-info .inbox {
  padding: min(100px, 22.2222222222vw) 0;
}
.company-info:has(.company-info__map)::before {
  height: calc(100% - min(520px, 115.5555555556vw));
}
.company-info:has(.company-info__map) .inbox {
  padding-bottom: min(64px, 14.2222222222vw);
}
.company-info__table td .com-replace {
  font-size: 1em;
  line-height: var(--line-height-base);
}
.company-info__table td .com-replace img {
  height: var(--font-size-sm);
  vertical-align: baseline;
}
.company-info__map {
  height: min(450px, 100vw);
}

/*==================================================
 ニュース一覧
================================================== */
.news-archive__item {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  padding-bottom: 2em;
  margin-bottom: 3em;
}
.news-archive__item-link:has(.news-archive__item-image) {
  grid-template-columns: min(125px, 27.7777777778vw) 1fr;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.news-archive__item-inner {
  row-gap: 1em;
}
.news-archive__item-date {
  width: 8em;
}
.news-archive__item-tags {
  width: calc(100% - 8em);
  gap: 10px;
}
.news-archive__item-tag {
  padding: 0 0.5em;
}
.news-archive__item-title {
  font-size: 1.14286em;
  line-height: var(--line-height-base);
}

/*タグリスト
-----------------------------*/
.tag-select {
  margin-bottom: 40px;
}
.tag-select__box {
  min-width: 160px;
}
.tag-select__box::after {
  right: 12px;
}
.tag-select__dropdown {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  padding: 1em 2.5em 1em 1em;
}

/*==================================================
 ニュース詳細
================================================== */
.news-detail__title {
  padding-bottom: 1em;
}
.news-detail__post {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  margin-bottom: 1em;
}
/*==================================================
 お問い合わせ
================================================== */
.contact-form::before {
  width: 102%;
  height: calc(100% - min(160px, 35.5555555556vw));
  background-size: min(120px, 24%);
  top: min(80px, 17.7777777778vw);
}
.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-sm);
  line-height: var(--line-height-sm);
  padding: 0 0.5em;
  margin-top: 0.25em;
}
.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: 0.75em 1em;
}
.contact-form .contact-submits-wrap {
  padding-top: 16px;
}
.contact-form .contact-submits-wrap > * {
  width: 75vw;
  max-width: 320px;
  height: 60px;
  margin: 0 auto 20px;
}
.contact-form .contact-submits-wrap > *:last-child {
  margin-bottom: 0;
}

/*==================================================
 お問い合わせ完了
================================================== */
.contact-complete::before {
  width: 102%;
  height: calc(100% - min(160px, 35.5555555556vw));
  background-size: min(120px, 24%);
  top: min(80px, 17.7777777778vw);
}
/*===============================================
  プライバシーポリシー
===============================================*/
.privacy-policy__box {
  padding: 2em 1.5em;
  margin-bottom: 2em;
}

/*==================================================
 サイトマップ
================================================== */
.sitemap-list__items {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 10px 0;
}
.sitemap-list__item {
  width: 100%;
}
.sitemap-list__item--min {
  width: 48%;
}
.sitemap-list__link {
  padding: 1em 0.5em;
}
.sitemap-list__link--min {
  font-size: var(--font-size-sm);
}

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