@charset "UTF-8";
@import url(all.css);
/*rootの変数宣言*/
:root {
  /*==============================
      カラー    
  ==============================*/
  --color-font: #1a1a1c;
  --color-white: #ffffff;
  --color-blue: #122a69;
  --color-whitegray: #fafafa;
  --color-lightgray: #eaebec;
  --color-gray: #cfd0d3;
  --color-darkgray: #737277;
  --color-footergray: #dbdcdf;
  /*カレントカラー*/
  --color-current: #122a69;
  /*テキストリンクカラー*/
  --color-textlink: #122a69;
  /*必須ボタンカラー*/
  --color-required: #122a69;
  /*任意ボタンカラー*/
  --color-optional: #122a69;
  /*ラジオボタンカラー*/
  --color-radio: #122a69;
  /*チェックボタンカラー*/
  --color-check: #122a69;
  /*==============================
      フォントファミリー
  ==============================*/
  /*タイトル*/
  --font-family-heading: "Zen Old Mincho", serif;
  /*本文*/
  --font-family-body: "Noto Sans JP", sans-serif;
  --font-family-hina: "Hina Mincho", serif;
  /*==============================
      フォントサイズ
  ==============================*/
  /*基準のフォントサイズ*/
  --font-size-body: 1.7rem;
  /*==============================
      行間
  ==============================*/
  /*基準の行間*/
  --line-height-base: 2.353;
  /*==============================
      文字間
  ==============================*/
  /*基準の文字間*/
  --letter-spacing-base: 0.05em;
}

/*rootの変数宣言*/
:root {
  /*==============================
      カラー    
  ==============================*/
  --color-font: #1a1a1c;
  --color-white: #ffffff;
  --color-blue: #122a69;
  --color-whitegray: #fafafa;
  --color-lightgray: #eaebec;
  --color-gray: #cfd0d3;
  --color-darkgray: #737277;
  --color-footergray: #dbdcdf;
  /*カレントカラー*/
  --color-current: #122a69;
  /*テキストリンクカラー*/
  --color-textlink: #122a69;
  /*必須ボタンカラー*/
  --color-required: #122a69;
  /*任意ボタンカラー*/
  --color-optional: #122a69;
  /*ラジオボタンカラー*/
  --color-radio: #122a69;
  /*チェックボタンカラー*/
  --color-check: #122a69;
  /*==============================
      フォントファミリー
  ==============================*/
  /*タイトル*/
  --font-family-heading: "Zen Old Mincho", serif;
  /*本文*/
  --font-family-body: "Noto Sans JP", sans-serif;
  --font-family-hina: "Hina Mincho", serif;
  /*==============================
      フォントサイズ
  ==============================*/
  /*基準のフォントサイズ*/
  --font-size-body: 1.7rem;
  /*==============================
      行間
  ==============================*/
  /*基準の行間*/
  --line-height-base: 2.353;
  /*==============================
      文字間
  ==============================*/
  /*基準の文字間*/
  --letter-spacing-base: 0.05em;
}

/*opacity含めたカラー指定あればここで定義*/
/*========================
    default
========================*/
html {
  font-size: 62.5%;
}

a[href^="tel:"] {
  pointer-events: none;
}

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

.wrapper {
  min-width: 1280px;
  max-width: 1920px;
  margin-inline: auto;
}

.container {
  /*ヘッダー追従の時はここにmax-width:1920px;,overflow-x:hidden;をかける*/
}

.com-inbox {
  width: 1080px;
}

/*パンくずリスト*/
.breadcrumb {
  padding-block: 2rem;
}
.breadcrumb__list {
  width: 1080px;
  margin-inline: auto;
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
}
.breadcrumb__item {
  display: flex;
  align-items: center;
  line-height: 1;
  font-size: 1.4rem;
  font-weight: 500;
  color: #737277;
}
.breadcrumb__item::before {
  content: "";
  display: inline-block;
  aspect-ratio: 8/13;
  width: 0.8rem;
  margin-right: 1rem;
  pointer-events: none;
  background: url(../img/common/arw-bread.png) top left/contain no-repeat;
}
.breadcrumb__item:first-child {
  color: var(--color-blue);
}
.breadcrumb__item:first-child::before {
  display: none;
}
.breadcrumb__item:last-child {
  display: block;
  max-width: 23rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/*==============================
    各種ホバー処理
==============================*/
/*ロゴ*/
.logo a:hover {
  transition: opacity 0.3s;
}
.logo a:hover:hover {
  opacity: 0.5;
}

/*パンくずリスト*/
.breadcrumb__item a {
  transition: all 0.3s;
}
.breadcrumb__item a:hover {
  transition: opacity 0.3s;
}
.breadcrumb__item a:hover:hover {
  opacity: 0.5;
}

/*ヘッダーナビ*/
.gnav__item a {
  transition: all 0.3s;
}
.gnav__item a:hover {
  transition: opacity 0.3s;
}
.gnav__item a:hover:hover {
  opacity: 0.5;
}

.header .mail-btn {
  transition: all 0.3s;
}
.header .mail-btn::before {
  transition: all 0.3s;
}
.header .mail-btn:hover {
  background-color: var(--color-blue);
  color: var(--color-white);
}
.header .mail-btn:hover::before {
  background: url(../img/common/icon_mail_w.png) top left/contain no-repeat;
}

/*共通ボタン*/
.com-btn {
  transition: all 0.3s;
}
.com-btn::after {
  transition: all 0.3s;
}
.com-btn:hover {
  opacity: 0.5;
}
.com-btn:hover::after {
  transform: translateX(1rem);
}

/*テキストリンク*/
.com-textlink {
  transition: all 0.3s;
}
.com-textlink:hover {
  transition: opacity 0.3s;
}
.com-textlink:hover:hover {
  opacity: 0.5;
}

/*下層リンク*/
.top-link__item a {
  transition: all 0.3s;
}
.top-link__item a::before, .top-link__item a::after {
  transition: all 0.3s;
}
.top-link__item a:hover {
  background-color: var(--color-blue);
  color: var(--color-white);
}
.top-link__item a:hover::after {
  background: url(../img/common/arw_w.svg);
  right: 3rem;
}
.top-link__item:first-child a:hover::before {
  background: url(../img/top/icon-voice_w.png) top left/contain no-repeat;
}
.top-link__item:last-child a:hover::before {
  background: url(../img/top/icon_qa_w.png) top left/contain no-repeat;
}

/*チャート*/
.chart_btn {
  transition: all 0.3s;
}
.chart_btn::after {
  transition: all 0.3s;
}
.chart_btn:hover {
  background-color: var(--color-blue);
  color: var(--color-white);
}
.chart_btn:hover::after {
  background: url(../img/common/arw_w.svg) top left/contain no-repeat;
}

/*商品一覧*/
.menu-section .menu-tag__item a {
  transition: all 0.3s;
}
.menu-section .menu-tag__item a::after {
  transition: all 0.3s;
}
.menu-section .menu-tag__item a:hover {
  background-color: var(--color-white);
  color: var(--color-blue);
}
.menu-section .menu-tag__item a:hover::after {
  background: url(../img/menu/menu_tag_arw_b.png) top left/contain no-repeat;
}
.menu-section__item a {
  transition: all 0.3s;
}
.menu-section__item a:hover {
  opacity: 0.5;
}

.back_btn {
  transition: all 0.3s;
}
.back_btn:hover {
  opacity: 0.5;
}

/*お問い合わせ完了（トップへ戻る）*/
.complete__btn {
  transition: all 0.3s;
}
.complete__btn:hover {
  transition: opacity 0.3s;
}
.complete__btn:hover:hover {
  opacity: 0.5;
}

/*追従ボタン*/
.follow_btn a {
  transition: all 0.3s;
}
.follow_btn a:hover {
  color: var(--color-white);
  background-color: var(--color-blue);
}

.contact .com-btn {
  transition: all 0.3s;
}
.contact .com-btn:hover {
  background-color: var(--color-white);
  color: var(--color-blue);
}

/*ページネーション*/
.pagenation li a:hover {
  opacity: 0.5;
}

.paginated__link:hover {
  opacity: 0.5;
}

/*フッターナビ*/
.footer-nav__item a {
  transition: all 0.3s;
}
.footer-nav__item a:hover {
  opacity: 0.5;
}
.footer small a:hover {
  opacity: 0.5;
}
.footer .mail-btn {
  transition: all 0.3s;
}
.footer .mail-btn::before {
  transition: all 0.3s;
}
.footer .mail-btn:hover {
  background-color: var(--color-white);
  color: var(--color-blue);
}
.footer .mail-btn:hover::before {
  background: url(../img/common/icon_mail_b.png) top left/contain no-repeat;
}

/*==============================
    ヘッダー
==============================*/
.wrapper:has(.mv) .header {
  padding-left: clamp(27px, 2.08vw, 40px);
}
.wrapper:has(.mv) .header .logo {
  margin: clamp(27px, 2.08vw, 40px) 0 clamp(40px, 3.13vw, 60px) 0;
}
.wrapper:has(.mv) .header .current {
  color: var(--color-darkgray);
}
.wrapper:has(.mv) .header .gnav__list {
  padding-left: clamp(47px, 3.65vw, 70px);
}
.wrapper:has(.mv) .header .util__list {
  margin-top: clamp(40px, 3.13vw, 60px);
  gap: clamp(20px, 1.56vw, 30px);
  padding-top: clamp(27px, 2.08vw, 40px);
}

.header {
  position: absolute;
  top: 0;
  left: 0;
}
.header__inner {
  flex-direction: column;
  padding: 0;
}
.header .logo {
  height: clamp(39px, 3.02vw, 58px);
  margin: clamp(7px, 0.52vw, 10px) 0 clamp(20px, 1.56vw, 30px) clamp(7px, 0.52vw, 10px);
}
.header nav {
  width: 100%;
}
.header .util__list {
  border-top: 1px solid var(--color-white);
  margin-top: clamp(20px, 1.56vw, 30px);
  padding-top: clamp(20px, 1.56vw, 30px);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(13px, 1.04vw, 20px);
}
.header .mail-btn {
  width: clamp(160px, 12.5vw, 240px);
  height: clamp(40px, 3.13vw, 60px);
  font-size: clamp(11px, 0.89vw, 17px);
  gap: clamp(7px, 0.52vw, 10px);
}
.header .mail-btn::before {
  width: clamp(15px, 1.2vw, 23px);
}
.header .tel-box {
  gap: clamp(7px, 0.52vw, 10px);
}
.header .tel-box .replace {
  width: clamp(141px, 11.04vw, 212px);
}
.header .com-tel {
  font-size: clamp(17px, 1.3vw, 25px);
  gap: clamp(3px, 0.21vw, 4px);
  color: var(--color-white);
}
.header .com-tel::before {
  width: clamp(14px, 1.09vw, 21px);
}

/*==============================
    メインビジュアル
==============================*/
.mv {
  gap: clamp(88px, 6.88vw, 132px);
}
.mv__title {
  gap: clamp(27px, 2.08vw, 40px);
}
.mv__title .sub {
  padding: clamp(13px, 1.04vw, 20px) clamp(12px, 0.94vw, 18px);
  font-size: clamp(23px, 1.82vw, 35px);
}
.mv__title .main {
  font-size: clamp(30px, 2.34vw, 45px);
  padding-top: clamp(7px, 0.52vw, 10px);
}

/*==============================
    サブビジュアル
==============================*/
.sv {
  gap: clamp(67px, 5.21vw, 100px);
}
.sv__title {
  gap: clamp(27px, 2.08vw, 40px);
}
.sv__title .main {
  padding: clamp(20px, 1.56vw, 30px) clamp(13px, 1.04vw, 20px);
  font-size: clamp(27px, 2.08vw, 40px);
}
.sv__title .sub {
  padding-top: clamp(20px, 1.56vw, 30px);
  font-size: clamp(20px, 1.56vw, 30px);
  min-width: clamp(40px, 3.13vw, 60px);
}

/*==============================
    共通ボタン
==============================*/
/*==============================
    TOP
==============================*/
.top-concept {
  padding-block: 15rem;
}
.top-concept .com-inbox {
  justify-content: space-between;
}
.top-concept__text {
  width: 54rem;
}

.top-menu {
  padding-block: 19rem 18rem;
}

.top-font__image {
  margin-left: -22rem;
}

.top-link {
  padding-block: 15rem 22rem;
}
.top-link__list {
  justify-content: space-between;
}
.top-link__item {
  width: 48rem;
  height: 12rem;
}
.top-link__item a {
  padding-right: 7rem;
}

.top-shop {
  padding-bottom: 15rem;
  overflow: hidden;
}
.top-shop__wrap::after {
  width: 98rem;
  margin-right: -42rem;
  flex-shrink: 0;
}
.top-shop .com-title01 {
  padding-top: 2rem;
}
.top-shop .com-table tr th {
  width: 10rem;
}

.top-news {
  padding-block: 2rem 15rem;
  justify-content: space-between;
  overflow: hidden;
}
.top-news::before {
  top: 10rem;
  left: calc(50% - 64rem);
  width: 160rem;
}
.top-news .com-news__list {
  width: 67.6rem;
  padding-top: 16rem;
}
.top-news__box {
  margin-bottom: 5rem;
}
.top-news .com-btn {
  margin-left: 5rem;
}

/*==============================
    一心堂について
==============================*/
.concept-section {
  padding-block: 12rem 10rem;
}
.concept-section__image {
  width: 50rem;
  flex-shrink: 0;
}
.concept-section__text {
  margin-right: -1em;
}

.concept-review {
  padding-bottom: 10rem;
}
.concept-review__item {
  width: 30rem;
  height: 6rem;
}

.concept-features {
  padding-block: 12rem 10rem;
}
.concept-features__item {
  align-items: flex-start;
}
.concept-features__item:nth-child(even) {
  flex-direction: row-reverse;
}
.concept-features__image {
  flex-shrink: 0;
  width: 52rem;
}

.concept-staff {
  padding-block: 12rem 10rem;
}
.concept-staff__image {
  flex-shrink: 0;
  width: 30rem;
}
.concept-staff__history dl dt {
  width: 12rem;
}

.concept-movie {
  padding-block: 12rem 15rem;
}
.concept-movie .movie {
  width: 80rem;
}

/*==============================
    商品紹介
==============================*/
.menu-chart {
  padding-block: 12rem 10rem;
}
.menu-chart .chart_btn {
  min-height: 8rem;
  width: 48rem;
}
.menu-chart .result_container .result_img {
  flex-shrink: 0;
  width: 52rem;
}
.menu-chart .result_container .result_txt {
  padding-top: 2rem;
}

.menu-section {
  padding-block: 12rem 15rem;
}

/*==============================
    商品詳細
==============================*/
.menu-detail {
  padding-block: 12rem 15rem;
}
.menu-detail__image {
  flex-shrink: 0;
  width: 52rem;
}

/*==============================
    書体見本
==============================*/
.font-section {
  padding-block: 12rem 10rem;
}
.font-section__item:nth-child(odd) .font-section__text {
  padding: 4rem 0 0 4rem;
}
.font-section__item:nth-child(even) .font-section__text {
  padding: 4rem 4rem 0 0;
}
.font-section__item:first-child .font-section__wrap {
  gap: 11.3rem;
}
.font-section__item:nth-child(2) .font-section__wrap {
  gap: 13.3rem;
}
.font-section__item:last-child .font-section__wrap {
  gap: 22.4rem;
}
.font-section__item:last-child .font-section__image {
  width: 46rem;
}
.font-section__item:last-child .font-section__text {
  margin-top: -17rem;
  width: 72rem;
}
.font-section__text {
  width: 82rem;
}
.font-section__image {
  width: 83rem;
  flex-shrink: 0;
}

.font-sample {
  padding-block: 12rem 15rem;
}
.font-sample .com-title01 {
  margin-bottom: 8rem;
}
.font-sample__image {
  width: 60rem;
}

/*==============================
    お客様の声
==============================*/
.voice-section {
  padding-block: 12rem 15rem;
}

/*==============================
    よくある質問
==============================*/
.faq-intro {
  padding-block: 12rem;
}

.faq-section {
  padding-block: 12rem 15rem;
}

/*==============================
    会社概要
==============================*/
.shop-history {
  padding-block: 12rem 10rem;
}

.shop-info {
  padding-block: 12rem 15rem;
}

/*==============================
    お知らせ一覧
==============================*/
.news {
  padding-block: 12rem 15rem;
}

/*お知らせ共通部分*/
.com-news__list {
  width: 80rem;
}
.com-news__item a:hover {
  transition: opacity 0.3s;
}
.com-news__item a:hover:hover {
  opacity: 0.5;
}

/*タグリスト(PC)
-----------------------------*/
.tag-select {
  text-align: right;
  margin-bottom: 5rem;
}
.tag-select__box {
  min-width: 24rem;
}
.tag-select__box::after {
  right: 1.8rem;
}
.tag-select__dropdown {
  line-height: 1;
  padding: 12px 48px 12px 12px;
  background-color: var(--color-white);
}

/*==============================
    お知らせ詳細
==============================*/
.news-detail {
  padding-block: 12rem 15rem;
}
.news-detail__box {
  padding: 4rem 4rem 6rem 4rem;
}

/*==============================
  お問い合わせ
==============================*/
.contact {
  padding-block: 12rem 15rem;
}
.contact .com-table {
  margin-bottom: 3rem;
  table-layout: fixed;
}
.contact .com-table th {
  width: 35%;
}
.contact .com-btn {
  margin-inline: auto;
  margin-top: 5rem;
  width: 30rem;
}
.contact .contact-submits-wrap {
  display: flex;
  justify-content: center;
  gap: 3rem;
}
.contact .contact-submits-wrap .com-btn {
  margin-inline: 0;
}

/*==============================
  お問い合わせ完了
==============================*/
.complete {
  padding-block: 12rem 15rem;
}
.complete__box {
  text-align: center;
}
.complete__btn {
  margin-top: 5rem;
}
.complete__btn:hover {
  opacity: 0.5;
}

/*==============================
　プライバシーポリシー
==============================*/
.privacy {
  padding-block: 12rem 15rem;
}
.privacy__box {
  margin-bottom: 5rem;
}
.privacy__box:last-child {
  margin-bottom: 0;
}

/*==============================
    サイトマップ
==============================*/
.site {
  padding-block: 12rem 15rem;
}
.site .com-inbox {
  width: 70rem;
}
.site__list {
  display: flex;
  flex-direction: column;
}
.site__item {
  height: 7.5rem;
}
.site__item a {
  padding: 1rem;
}
.site__item a::after {
  width: 1rem;
  transform: rotate(-45deg);
}
.site__item a:hover {
  transition: all 0.3s;
  opacity: 0.5;
}
.site__item a:hover::after {
  transform: rotate(-45deg) translate(5px, 5px);
  transition: all 0.3s;
}

/*==============================
    このページは存在しません
==============================*/
.e404 {
  padding-block: 12rem 15rem;
}
/*==============================
    フッター
==============================*/
.footer {
  padding-block: 15rem;
}
.footer .logo {
  height: 5.8rem;
}
.footer__inner {
  width: 1080px;
  display: flex;
  justify-content: space-between;
  margin-inline: auto;
}
.footer-nav__list {
  display: grid;
  grid-template-rows: repeat(6, 1fr);
  grid-auto-flow: column;
  gap: 3rem 6rem;
}
.footer-nav__item {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.footer-nav__item::before {
  content: "";
  display: block;
  height: 1px;
  width: 1.5rem;
  background-color: var(--color-white);
}
.footer-nav__item:has(.current)::before {
  background-color: var(--color-blue);
}
.footer__box:last-of-type {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.footer .mail-btn {
  width: 26rem;
  height: 8rem;
}
.footer small {
  width: 100%;
  padding-top: 6rem;
  border-top: 1px solid rgba(115, 114, 119, 0.5);
  justify-content: flex-end;
  margin-top: 11rem;
}