@charset "UTF-8";

/* ===============================
   Base Reset
   =============================== */
/*! 統合版 CSS Reset | kiso.css + カスタムリセット */

/* ===============================
   Universal Box Model
   =============================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===============================
   Document Root Configuration
   =============================== */
:where(:root) {
  /* 日本語サイト向けフォント設定 */
  font-family: "Montserrat", "Noto Sans JP", 'YuGothic', "ヒラギノ角ゴ Pro W3", sans-serif;
  font-size: 62.5%; /* 1rem = 10px for easier calculation */
  
  /* アクセシビリティと可読性 */
  line-height: 1.6;
  letter-spacing: 0.03em;
  
  /* 日本語向けテキスト設定 */
  text-spacing-trim: trim-start;
  text-autospace: normal;
  line-break: strict;
  overflow-wrap: anywhere;
  
  /* ブラウザ調整 */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scrollbar-gutter: stable;
  -webkit-tap-highlight-color: transparent;
  
  /* スムーススクロール */
  scroll-behavior: smooth;
  scroll-padding-top: 200px;
}

/* ===============================
   Body Configuration
   =============================== */
:where(body) {
  min-block-size: 100dvb;
  margin: unset;
  
  /* テキスト設定 */
  font-size: 1.6rem; /* 16px */
  color: #343434;
  background: #fff;
  word-break: break-word;
  -webkit-font-smoothing: antialiased;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  :where(:root) {
    scroll-padding-top: 120px;
  }
  
  :where(body) {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.8;
  }
}

/* ===============================
   Headings
   =============================== */
:where(h1, h2, h3, h4, h5, h6) {
  text-wrap: pretty;
  font-weight: normal;
  font-size: inherit;
}

:where(h1) {
  margin-block: 0;
  font-size: 2em;
}

:where(h2, h3, h4, h5, h6) {
  margin-block: unset;
}

/* ===============================
   Sections
   =============================== */
:where(search) {
  display: block flow;
}

/* ===============================
   Grouping Content
   =============================== */
:where(p, blockquote, figure, pre, address, ul, ol, dl, menu) {
  margin-block: unset;
}

:where(blockquote, figure) {
  margin-inline: unset;
}

:where(blockquote, q) {
  quotes: none;
}

:where(blockquote)::before,
:where(blockquote)::after,
:where(q)::before,
:where(q)::after {
  content: "";
}

/* 英語テキストの改行最適化 */
:where(p:lang(en)) {
  text-wrap: pretty;
}

/* 日本語の住所表記 */
:where(address:lang(ja)) {
  font-style: unset;
}

/* ===============================
   Lists
   =============================== */
:where(ul, ol, menu) {
  padding-inline-start: unset;
  list-style-type: "";
}

:where(ol) {
  padding-left: 2rem;
}

:where(dt) {
  font-weight: bolder;
}

:where(dd) {
  margin-inline-start: unset;
}

/* ===============================
   Code and Preformatted Text
   =============================== */
:where(pre) {
  text-spacing-trim: space-all;
  text-autospace: no-autospace;
}

: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;
  font-variant-ligatures: none;
}

/* ===============================
   Text-level Semantics
   =============================== */
/* 日本語の強調表現 */
:where(em:lang(ja)) {
  font-weight: bolder;
}

:where(:is(i, cite, em, dfn, var):lang(ja)) {
  font-style: unset;
}

:where(strong, em) {
  font-weight: inherit;
  font-style: normal;
}

:where(mark) {
  background: none;
  color: inherit;
}

:where(abbr[title]) {
  text-decoration-line: underline;
  text-decoration-style: dotted;
  cursor: help;
}

:where(time) {
  text-autospace: no-autospace;
}

/* Forced colors mode対応 */
@media (forced-colors: active) {
  :where(mark) {
    background-color: Highlight;
    color: HighlightText;
  }
}

/* Print styles */
@media print {
  :where(mark) {
    border-width: 1px;
    border-style: dotted;
  }
}

/* ===============================
   Links
   =============================== */
:where(a:any-link) {
  color: inherit;
  text-decoration-line: unset;
  text-decoration-thickness: from-font;
  transition: all 0.2s ease;
}

:where(a):hover,
:where(a):active {
  text-decoration: none;
}

:where(a):focus {
  outline: none;
}

/* ===============================
   Embedded Content
   =============================== */
:where(img, svg, picture, video, canvas, model, audio, iframe, embed, object) {
  display: block;
  block-size: auto;
  max-inline-size: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

:where(iframe) {
  border: unset;
}

/* ===============================
   Tables
   =============================== */
:where(table) {
  border-collapse: collapse;
  border-spacing: 0;
}

:where(caption, th) {
  text-align: unset;
}

:where(caption) {
  text-wrap: pretty;
}

:where(th, td) {
  text-align: left;
  vertical-align: top;
}

/* ===============================
   Forms
   =============================== */
:where(button, input, select, textarea),
::file-selector-button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  appearance: none;
  
  /* kiso.cssのborder設定をオーバーライド */
  border-width: 0;
  border-style: none;
  border-color: transparent;
  border-radius: unset;
  letter-spacing: unset;
  text-align: unset;
}

: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;
}

:where(input[type="search" i])::-webkit-search-cancel-button,
:where(input[type="search" i])::-webkit-search-decoration {
  -webkit-appearance: none;
}

@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)) {
  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: no-autospace;
}

:where(button, input:is([type="button" i], [type="submit" i], [type="reset" i])),
::file-selector-button {
  background-color: unset;
  cursor: pointer;
}

: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 {
  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(input):focus,
:where(textarea):focus,
:where(select):focus,
:where(button):focus {
  outline: none;
}

:where(fieldset) {
  min-inline-size: 0;
  margin-inline: unset;
  padding: unset;
  border: unset;
}

:where(legend) {
  padding: unset;
  font-weight: normal;
}

:where(progress) {
  vertical-align: unset;
}

::placeholder {
  opacity: unset;
}

/* ===============================
   Interactive Elements
   =============================== */
:where(summary) {
  list-style-type: "";
  cursor: pointer;
}

:where(summary)::-webkit-details-marker {
  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]) {
  margin: unset;
}

/* ===============================
   Focus Styles
   =============================== */
:where(:focus-visible) {
  outline-offset: 3px;
}

[tabindex="-1"]:focus {
  outline: none !important;
}

/* ===============================
   HTML5 Elements
   =============================== */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

/* ===============================
   Misc
   =============================== */
:where(:disabled, [aria-disabled="true" i]) {
  cursor: default;
}

[hidden]:not([hidden="until-found" i]) {
  display: none !important;
}

:where(hr) {
  display: block;
  height: 1px;
  border: none;
  border-top: 1px solid #ccc;
  margin: 0;
}

/* Scroll buttons support */
@supports selector(::scroll-button(*)) {
  ::scroll-button(*) {
    border-width: 1px;
    border-style: solid;
    border-color: unset;
    border-radius: unset;
    background-color: unset;
    color: unset;
    font: unset;
    letter-spacing: unset;
    text-align: unset;
    touch-action: manipulation;
  }

  ::scroll-button(*):enabled {
    cursor: pointer;
  }
}







/*  
-----------------------------------------------
-----------------------------------------------
common margin-bottomなど
-----------------------------------------------
-----------------------------------------------
*/


.txt_bold{
font-weight: 700;
}

.txt_center{
text-align: center;
}


.txt_link{
display: inline-block;
border-bottom: 1px dotted #0079e1;
color: #0079e1 !important;
}












/*  
-----------------------------------------------
-----------------------------------------------
PC
-----------------------------------------------
-----------------------------------------------
*/
@media screen and (min-width:769px) {
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;
}

.mbpc16{
    margin-bottom: 1.6rem !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) { 

.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;
}



}
/*sp*/