@charset "UTF-8";
/*-------- フォントcss --------*/

/* --------------------------------------------------------
全体
-------------------------------------------------------- */
/* ブラウザのデフォルト値 = 16px */
/* htmlタグの文字サイズは16px * 0.625 = 10px ※初期値を10pxにする */
/* remの指定方法：1.4remで14px、1.8remで18px、2remで20px、2.4remで24px、、、 */
html { font-size: 62.5%; }

body{
  color: var(--main-color);
  font-family: "Noto Sans JP", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic Pro", "Meiryo", verdana, "Osaka", "MS PGothic", Sans-Serif;
  font-size: 1.6rem; /* 16px */
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: normal;
}

@media print, screen and (min-width: 980px) {
  body{
    font-size: 1.8rem; /* 18px */
    line-height: 1.8em;
  }
}

/* webフォントがかすれてしまう場合は、該当の文字に下記cssを追記する */
.rubbing{
  transform: rotate(0.03deg);
}

/* --------------------------------------------------------
link
-------------------------------------------------------- */
a {
  color: #89554B;
  opacity: 1;
  transition: 0.6s;
  text-underline-offset: 3px;
}

a:hover {
  opacity: 0.6;
  text-decoration: none;
}

/* 三角 */
a.triangle {
  position: relative;
  margin: 0 0 0 30px;
  padding: 0 0 5px 5px;
  text-decoration: none;
}
a.triangle:before, a.triangle:after {
  content: "";
  display: inline-block;
  position: absolute;
}
a.triangle:before {
  height: 15px;
  width: 10px;
  background: #FFF;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
          clip-path: polygon(0 0, 0 100%, 100% 50%);
  z-index: 2;
  top: 50%;
  left: -11%;
  transform: translateX(-100%) translateY(-50%);
}
a.triangle:after {
  width: 30px;
  height: 30px;
  background-color: #6EC8D8;
  border-radius: 50px;
  z-index: 1;
  top: 50%;
  left: 0;
  transform: translateX(-100%) translateY(-50%);
}

/* --------------------------------------------------------
font
-------------------------------------------------------- */

.center {
  text-align: center;
}


h1, h2, h3, h4, h5 {
  font-family: "Kiwi Maru", sans-serif;
  font-weight: 500;
}

/* 見出しの改行位置を調整する */
h2 span, h3 span, h4 span {
  display: inline-block;
}

.red {
  /* color: #f00; */
  color: #CA4135;
}

.blue{
  color: blue;
}

.orange {
  color: #F1AC43;
}

.brown {
  color: #7A6A56;
}

p {
  text-align: left;
}

em, address {
  font-style: normal;
}

/* --------------------------------------------------------
line
-------------------------------------------------------- */
hr.red {
  border: none;
  border-top: #F00 dotted 2px;
}

/* --------------------------------------------------------
電話設定
-------------------------------------------------------- */
@media print, screen and (min-width: 751px) { /*pc電話不可*/
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    color: #373737;
  }
}
@media screen and (max-width: 751px) { /*sp電話可*/
  a[href*="tel:"] {
    color: #373737;
    text-decoration: none;
  }
  a[href*="tel:"] img {
    margin-right: 0.3em;
    margin-bottom: 6px;
    vertical-align: middle;
  }
}