@charset "UTF-8";
/*!
 * base.css
 * kiso.css v1.2.4 ベース + 自社カスタマイズ統合版
 * MIT License | https://github.com/tak-dcxi/kiso.css
 */

/* ======================================================
//  MARK: Universal
// ====================================================== */
*,
::before,
::after {
  box-sizing: border-box;
}

/* ======================================================
//  MARK: Document
// ====================================================== */
:where(:root) {
  font-family: sans-serif;

  /*
  * アクセシビリティガイドラインに従い、行間は文字サイズの1.5倍以上を推奨。
  * https://waic.jp/translations/WCAG21/#visual-presentation
  */
  line-height: 1.5;

  /* 約物前後の余分なスペースを除去し、行頭の余白を詰める */
  text-spacing-trim: trim-start;

  /* 日本語と英数字の間に自然なスペースを自動挿入 */
  text-autospace: normal;

  /* 禁則処理を厳格に適用 */
  line-break: strict;

  /*
  * 英単語の途中での折り返しを許可。
  * flex / grid レイアウト内でのコンテンツ溢れも防ぐ。
  */
  overflow-wrap: anywhere;

  /* モバイルブラウザの自動フォントサイズ調整を無効化 */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;

  /*
  * スクロールバーの表示/非表示によるレイアウトシフトを防ぐ。
  * Chrome145以降は vw がスクロールバーを除いて計算されるため、横スクロールも防止できる。
  * ※ overflow-y: scroll の上位互換として採用。
  */
  scrollbar-gutter: stable;

  /* iOS のタップハイライトを非表示 */
  -webkit-tap-highlight-color: transparent;
}

html {
  /*
  * 1rem = 10px に設定（16px × 62.5%）。
  * rem ベースの寸法管理のための基準値。
  */
  font-size: 62.5%;
}

:where(body) {
  /*
  * min-height: 100% の現代的な代替。
  * dvb（動的ビューポートブロックサイズ）でモバイルのアドレスバー伸縮に対応。
  */
  min-block-size: 100dvb;

  /* UA スタイルシートの margin を除去 */
  margin: unset;
}

body {
  background-color: #fff;
  min-width: 320px;
  letter-spacing: 0.05rem;
  font-weight: 500;
  font-family: YakuHanJP_Narrow, "Noto Sans JP", "Murecho", serif, sans-serif;
  word-break: break-word;

  /*
  * 日本語の文字詰め（プロポーショナルメトリクス）を有効化。
  * font-feature-settings は最後に書いた宣言が有効になるため、
  * text-spacing-trim との併用では問題なし。
  */
  font-feature-settings: "palt";

  /* 行末の句読点を一文字分はみ出して配置するぶら下げ処理 */
  hanging-punctuation: last allow-end;

  color: #3a2c22;
}

/* ======================================================
//  MARK: Sections
// ====================================================== */
:where(:is(h1, h2, h3, h4, h5, h6):lang(en)) {
  /* 英語テキストの最終行が1語だけになる「孤立語」を防ぐ */
  text-wrap: pretty;
}

:where(h1) {
  /*
  * セクショニング要素内の h1 に対する UA スタイルの警告対策。
  * https://html.spec.whatwg.org/#sections-and-headings
  */
  margin-block: 0;
}

:where(h2, h3, h4, h5, h6) {
  margin-block: unset;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /* デザイン上、見出しは font-weight を個別に指定するため初期化 */
  font-weight: normal;
}

:where(search) {
  /* Safari 17 未満でブロック要素として表示されない問題の対策 */
  display: block flow;
}

/* ======================================================
//  MARK: Grouping content
// ====================================================== */
:where(p, blockquote, figure, pre, address, ul, ol, dl, menu) {
  margin-block: unset;
}

:where(blockquote, figure) {
  margin-inline: unset;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

:where(p:lang(en)) {
  text-wrap: pretty;
}

:where(address:lang(ja)) {
  /* 日本語では斜体表示が一般的でないため初期化 */
  font-style: unset;
}

:where(ul, ol, menu) {
  padding-inline-start: unset;

  /*
  * list-style: none ではなく list-style-type: "" を使う。
  * Safari では list-style: none を指定するとスクリーンリーダーがリストを
  * リストとして読み上げなくなるバグがあるため。
  * https://matuzo.at/blog/2023/removing-list-styles-without-affecting-semantics
  */
  list-style-type: "";
}

ol {
  /* 番号付きリストはインデントを維持 */
  padding-inline-start: 1.5em;
}

nav ul {
  /* ナビゲーションのリストはマーカーを非表示 */
  list-style-type: "";
}

:where(dt) {
  font-weight: bolder;
}

:where(dd) {
  margin-inline-start: unset;
}

:where(pre) {
  text-spacing-trim: space-all;
  text-autospace: no-autospace;
}

@media print {
  :where(pre) {
    text-wrap-mode: unset;
  }
}

/* ======================================================
//  MARK: Text-level semantics
// ====================================================== */
:where(em:lang(ja)) {
  /* 日本語の強調は太字で表現 */
  font-weight: bolder;
}

:where(:is(i, cite, em, dfn):lang(ja)) {
  font-style: unset;
}

:where(u, s, del, ins) {
  text-decoration-inset: auto;
}

:where(code, kbd, samp) {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  font-feature-settings: initial;
  font-variation-settings: initial;
  font-size: unset;

  /* Fira Code 等のプログラミングフォントで => が ⇒ のように合字化されることを防ぐ */
  font-variant-ligatures: none;
}

:where(abbr[title]) {
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-inset: auto;
  cursor: help;
}

:where(time) {
  text-autospace: no-autospace;
}

@media (forced-colors: active) {
  :where(mark) {
    background-color: Highlight;
    color: HighlightText;
  }
}

@media print {
  :where(mark) {
    border-width: 1px;
    border-style: dotted;
  }
}

/* ======================================================
//  MARK: Links
// ====================================================== */
:where(a) {
  /* UA スタイルシートの color を初期化し、継承を許可 */
  color: unset;
}

:where(a:any-link) {
  text-decoration-line: unset;
  text-decoration-thickness: from-font;
  text-decoration-inset: auto;
}

a {
  color: #3a2c22;
  text-decoration: none;
  transition: 0.6s;
}

a:hover,
a:active {
  text-decoration: none;
}

a:focus {
  outline: none;
}

/* ======================================================
//  MARK: Embedded content
// ====================================================== */
:where(img, svg, picture, video, audio, canvas, model, iframe, embed, object) {
  max-inline-size: 100%;
  /* vertical-align: bottom; */
}

:where(img, svg, picture, video, canvas, model, iframe, embed, object) {
  /* audio は block-size: auto で非表示になるため除外 */
  block-size: auto;
}

:where(iframe) {
  border: unset;
}

/* ======================================================
//  MARK: Tabular data
// ====================================================== */
:where(table) {
  border-collapse: collapse;
}

:where(caption, th) {
  text-align: unset;
}

:where(caption:lang(en)) {
  text-wrap: pretty;
}

/* ======================================================
//  MARK: Forms
// ====================================================== */
:where(button, input, select, textarea),
::file-selector-button {
  /*
  * フォーム要素は border を持つことが多いため 1px の枠を標準として設定。
  * スタイル未指定でも視認できる状態を保つ。
  */
  border-width: 1px;
  border-style: solid;
  border-color: unset;
  border-radius: unset;
  color: unset;
  font: unset;
  letter-spacing: unset;
  text-align: unset;
}

button {
  /*
  * button の完全リセット。
  * kiso.css の :where() による低詳細度宣言を上書きする。
  */
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

input[type="submit"],
input[type="button"] {
  cursor: pointer;
  -webkit-appearance: none;
}

:where(input:is([type="radio" i], [type="checkbox" i])) {
  margin: unset;
}

:where(input[type="file" i]) {
  border: unset;
}

:where(input[type="search" i]) {
  -webkit-appearance: textfield;
}

@supports (-webkit-touch-callout: none) {
  :where(input[type="search" i]) {
    background-color: Canvas;
  }
}

:where(
    input:is(
        [type="tel" i],
        [type="url" i],
        [type="email" i],
        [type="number" i]
      ):not(:placeholder-shown)
  ) {
  /* RTL 言語でも数値・URL等は左揃えを維持（値が入力済みの場合のみ） */
  direction: ltr;
}

:where(textarea) {
  margin-block: unset;
  resize: block;
}

:where(
    input:not([type="button" i], [type="submit" i], [type="reset" i]),
    textarea,
    [contenteditable]
  ) {
  /* 入力中に text-autospace がスペースを挿入する誤動作を防ぐ */
  text-autospace: no-autospace;
}

:where(
    button,
    input:is([type="button" i], [type="submit" i], [type="reset" i])
  ),
::file-selector-button {
  background-color: unset;
}

:where(
    button,
    input:is([type="button" i], [type="submit" i], [type="reset" i]),
    [role="tab" i],
    [role="button" i],
    [role="option" i]
  ),
::file-selector-button {
  /* iOS でのダブルタップズームを無効化 */
  touch-action: manipulation;
}

:where(
    button:enabled,
    label[for],
    select:enabled,
    input:is(
        [type="button" i],
        [type="submit" i],
        [type="reset" i],
        [type="radio" i],
        [type="checkbox" i]
      ):enabled,
    [role="tab" i],
    [role="button" i],
    [role="option" i]
  ),
:where(:enabled)::file-selector-button {
  cursor: pointer;
}

:where(fieldset) {
  /* flex / grid 内で子要素が fieldset を引き伸ばす問題を防ぐ */
  min-inline-size: 0;
  margin-inline: unset;
  padding: unset;
  border: unset;
}

:where(legend) {
  padding-inline: unset;
}

:where(progress) {
  vertical-align: unset;
}

::placeholder {
  /* Firefox でプレースホルダーの opacity が低く設定される問題を修正 */
  opacity: unset;
}

body,
button,
input,
textarea {
  /* フォーム要素のフォントを body に揃える（font: unset のリセット後に継承させる） */
  font-family: inherit;
}

/* ======================================================
//  MARK: Interactive elements
// ====================================================== */
:where(summary) {
  list-style-type: "";
  cursor: pointer;
}

:where(summary)::-webkit-details-marker {
  /* Safari 18.4 未満での三角アイコンを非表示 */
  display: none;
}

:where(dialog, [popover]) {
  /* 下層ページへのスクロール連鎖とモバイルのバウンス効果を防ぐ */
  overscroll-behavior-block: contain;
  padding: unset;
  border: unset;
}

:where(dialog:not([open], [popover]), [popover]:not(:popover-open)) {
  display: none !important;
}

:where(dialog) {
  max-inline-size: unset;
  max-block-size: unset;
}

:where(dialog)::backdrop {
  background-color: oklch(0% 0 0deg / 30%);
}

:where([popover]) {
  /* Anchor Positioning 使用時に margin が邪魔になるため除去 */
  margin: unset;
}

/* ======================================================
//  MARK: HR
// ====================================================== */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 0;
  padding: 0;
}

/* ======================================================
//  MARK: Focus Styles
// ====================================================== */
:where(:focus-visible) {
  outline-offset: 3px;
}

[tabindex="-1"]:focus {
  outline: none !important;
}

/* ======================================================
//  MARK: Misc
// ====================================================== */
:where(:disabled, [aria-disabled="true" i]) {
  cursor: default;
}

[hidden]:not([hidden="until-found" i]) {
  display: none !important;
}

/* ======================================================
//  MARK: Utilities
// ====================================================== */
.wrap {
  width: 100%;
  position: relative;
  min-height: 100%;
}

.url {
  word-break: break-all;
  text-justify: inter-character;
}
/* clearfix */
.cf::after {
content: "";
display: table;
clear: both;
}

.txt_bold{
font-weight: 700;
}

.txt_red {
color: #e45b5b;
}

.txt_link{
display: inline-block;
border-bottom: 1px dotted #0079e1;
color: #0079e1 !important;
}

.txt_gray {
color: #ccc;
}

.txt_blue {
color: #003B79;
}

.txt_blue2 {
color: #3ab3ce;
}

.pink500{
  color: #ec48a1;
  color: #d75c77;
  color:#f68804;font-weight: 500;
}

.txt_green2 {
color: #5fce62;
}

.txt_orange{
color: #ef9635;
}

.txt_azuki{
color: #9b473e;
}

.maru{
  color:#00C6CF;
}

.cen{
text-align: center
}

.cen_auto{
margin: 0 auto}

.s_note{font-size: .8em}

.m2_font{
color: #2fa314;
font-size: 1.8rem !important;}

.m3_font{
color: #2fa314;
font-size: 1.6rem !important;}

.ntbr{
white-space: nowrap;
}

@media screen and (min-width:769px) {
body {
font-size: 1.6rem;
line-height: 1.8;
letter-spacing: .08em;
background-color: #fffefd;
}

a[href^="tel:0454893638"] {
    pointer-events: none;
    cursor: default;
}

.pc{
display: block !important;
}

.sp{
display: none !important;
}

.mbpc5{
margin-bottom:.5rem !important;
}

.mbpc10{
margin-bottom:1rem !important;
}
.mbpc20{
margin-bottom:2rem !important;
}
.mbpc30{
margin-bottom:3rem !important;
}
.mbpc40{
margin-bottom:4rem !important;
}
.mbpc50{
margin-bottom:5rem !important;
}
.mbpc60{
margin-bottom:6rem !important;
}
.mbpc70{
margin-bottom:7rem !important;
}
.mbpc80{
margin-bottom:8rem !important;
}
.mbpc90{
margin-bottom:9rem !important;
}
.mbpc100{
margin-bottom:10rem !important;
}
.mbpc110{
margin-bottom:11rem !important;
}
.mbpc120{
margin-bottom:12rem !important;
}
.mbpc130{
margin-bottom:13rem !important;
}
.mbpc140{
margin-bottom:14rem !important;
}
.mbpc150{
margin-bottom:15rem !important;
}
.mbpc160{
margin-bottom:16rem !important;
}
.mbpc170{
margin-bottom:17rem !important;
}
.mbpc180{
margin-bottom:18rem !important;
}
.mbpc190{
margin-bottom:19rem !important;
}
.mbpc200{
margin-bottom:20rem !important;
}
.mtpc10{
margin-top:1rem !important;
}
.mtpc20{
margin-top:2rem !important;
}
.mtpc30{
margin-top:3rem !important;
}
.mtpc50{
margin-top:5rem !important;
}
.mtpc60{
margin-top:6rem !important;
}
.mtpc70{
margin-top:7rem !important;
}
.mtpc80{
margin-top:8rem !important;
}
.mtpc90{
margin-top:9rem !important;
}
.mtpc100{
margin-top:10rem !important;
}
.mtpc110{
margin-top:11rem !important;
}
.mtpc120{
margin-top:12rem !important;
}
.mtpc130{
margin-top:13rem !important;
}
.mtpc140{
margin-top:14rem !important;
}
.mtpc150{
margin-top:15rem !important;
}
.mtpc160{
margin-top:16rem !important;
}
.mtpc170{
margin-top:17rem !important;
}
.mtpc180{
margin-top:18rem !important;
}
.mtpc190{
margin-top:19rem !important;
}
.mtpc200{
margin-top:20rem !important;
}

.pbpc20{
padding-bottom:2rem !important;
}

.pbpc50{
padding-bottom:5rem !important;
}

.ptpc30{
padding-top:3rem !important;
}

.ptpc50{
padding-top:5rem !important;
}

.alink{
margin-top: -13rem !important;;
padding-top: 13rem !important;
}


}
/*PC*/


@media screen and (max-width:768px) { 
body {
font-size: 1.4rem;
      letter-spacing: 0.05em;
line-height: 1.8;
}


.pc{
display: none !important;
}

.sp{
display: block !important;
}

.mbsp5{
margin-bottom:.5rem !important;
}

.mbsp10{
margin-bottom:1rem !important;
}
.mbsp20{
margin-bottom:2rem !important;
}
.mbsp30{
margin-bottom:3rem !important;
}
.mbsp40{
margin-bottom:4rem !important;
}
.mbsp50{
margin-bottom:5rem !important;
}
.mbsp60{
margin-bottom:6rem !important;
}
.mbsp70{
margin-bottom:7rem !important;
}
.mbsp80{
margin-bottom:8rem !important;
}
.mbsp90{
margin-bottom:9rem !important;
}
.mbsp100{
margin-bottom:10rem !important;
}
.mbsp110{
margin-bottom:11rem !important;
}
.mbsp120{
margin-bottom:12rem !important;
}
.mbsp130{
margin-bottom:13rem !important;
}
.mbsp140{
margin-bottom:14rem !important;
}
.mbsp150{
margin-bottom:15rem !important;
}
.mbsp160{
margin-bottom:16rem !important;
}
.mbsp170{
margin-bottom:17rem !important;
}
.mbsp180{
margin-bottom:18rem !important;
}
.mbsp190{
margin-bottom:19rem !important;
}
.mbsp200{
margin-bottom:20rem !important;
}
.mtsp10{
margin-top:1rem !important;
}
.mtsp20{
margin-top:2rem !important;
}
.mtsp30{
margin-top:3rem !important;
}
.mtsp40{
margin-top:4rem !important;
}
.mtsp50{
margin-top:5rem !important;
}
.mtsp60{
margin-top:6rem !important;
}
.mtsp70{
margin-top:7rem !important;
}
.mtsp80{
margin-top:8rem !important;
}
.mtsp90{
margin-top:9rem !important;
}
.mtsp100{
margin-top:10rem !important;
}
.mtsp110{
margin-top:11rem !important;
}
.mtsp120{
margin-top:12rem !important;
}
.mtsp130{
margin-top:13rem !important;
}
.mtsp140{
margin-top:14rem !important;
}
.mtsp150{
margin-top:15rem !important;
}
.mtsp160{
margin-top:16rem !important;
}
.mtsp170{
margin-top:17rem !important;
}
.mtsp180{
margin-top:18rem !important;
}
.mtsp190{
margin-top:19rem !important;
}
.mtsp200{
margin-top:20rem !important;
}

.ptsp50{
padding-top:5rem !important;
}

.alink{
margin-top: -5rem !important;;
padding-top: 5rem !important;
}

}
/*sp*/





html, body {
  scroll-behavior: smooth;
  scroll-padding-top: 240px;
}

@media (max-width: 768px) {
html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}
}




