@charset "UTF-8";

/*=============================================
基本的な設定
=============================================*/

/*-----------------------------
フォントの設定とスムーススクロール
-----------------------------*/
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

html[lang=ja] {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

body {
  margin: 0;
  position: relative;
  line-height: 1.8;
  background-color: #fff;
  color: #333;
  letter-spacing: 0.05em;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

/*-----------------------------
ダークモード対応
-----------------------------*/

/* @media(prefers-color-scheme:dark){
    body{
        background: #333;
        color:#b3b3b3;
    }
} */


/*-----------------------------
コンテナーサイズ
-----------------------------*/
.container{
    max-width:1000px;
    margin-inline:auto;
}

.container-sp{
    padding-left:1em;
    padding-right:1em;
}

/*-----------------------------
ボタンを念の為リセット
-----------------------------*/
button {
  padding: 0;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none;
}

/*-----------------------------
共通の設定
-----------------------------*/
/*clearfix*/
.cf:after {
  content: "";
  display: block;
  clear: both;
}

dl dt, dl dd {
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  width: auto;
  vertical-align: top;
}

.resize img {
  max-width: 100vw;
}

.tel-link a:link, .tel-link a:hover, .tel-link aa:active {
  text-decoration: none;
}

section, article {
  padding: 10px 0;
  @media(max-width: 999px){
    padding: 1em;
  }
  /* margin-bottom: 20px; */
}
@media print, screen and (min-width: 768px) {
  section, article {
    padding-bottom: 50px;
  }
}

.home section, .home article {
  padding-bottom: 40px;
}

address {
  font-style: normal;
}

/*-----　　禁則処理　　-----*/
p {
  line-break: normal;
}

p {
  line-break: strict;
}

/*----------------------------------------------------
リンク
------------------------------------------------------*/
a:hover img {
  opacity: 0.8;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

a:link, a:visited {
  color: #333;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
a:before, a:after {
  text-decoration: none;
  display: inline-block;
}

/* hoverの時はふわっと */
a {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

a:hover {
  color: #999;
}

.post {
  margin-bottom: 0.5em;
}

/* リンクの装飾（アンダーライン）を表示させない */
.g-nav a,
.foot-nav a {
  text-decoration: none;
}

button a {
  text-decoration: none !important;
}

.btn-report-wrapper a {
  text-decoration: none;
}

a {
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}
