/*EN Regular*/
.en {
 font-family: "ador-hairline", sans-serif;
font-weight: 400;
}
.en_bold {
  font-weight: 700;
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
  display: block !important;
}
.sp {
  display: none !important;
}
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
/* --------------------------------------------- */
/* ▼モバイルファースト (全環境に共通のデザイン) */
/* --------------------------------------------- */
* {
  margin: 0;
  padding: 0;
}
html {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400; 
  font-style: normal;
  font-size: 62.5%; /* 16px x 0.625 = 10px(=1rem) */
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}
body {
  font-size: 1.3rem; /* 13px */
  line-height: 1.6;
  letter-spacing: 2px;
  font-feature-settings: "palt";
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  text-size-adjust: 100%;
  position: relative;
  text-align: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
div {
  position: relative;
}
fieldset, img {
  border: 0
}
ol, ul {
  list-style: none;
}
/*link*/
a {
  color: #333;
  text-decoration: none;
}
a:link {
  color: #333;
  text-decoration: none;
}
a:visited {
  color: #333;
  text-decoration: none;
}
a:hover {
  color: #7E7E7E;
  text-decoration: none;
}
a:hover img {
  opacity: 0.8;
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  padding-top: 0px;
  transition: .3s;
}
img {
  border-style: none;
  z-index: 0;
  vertical-align: bottom;
  line-height: 1.0em;
  width: 100%;
  height: auto;
}
.btn {
  font-family: "ador-hairline", sans-serif;
  position: relative;
  display: inline-block;
  padding: 12px 70px;
  border-radius: 50px;
  border: 0.5px solid #333;
  text-decoration: none;
  outline: none;
  overflow: hidden;
}
.btn:hover {
  color: #fff;
  border-color: transparent;
}
.btn span {
  display: block;
  z-index: 2;
}
.btn::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  height: 100%;
  width: 0;
  background: #333;
  transition: all .3s;
}
.btn:hover::before {
  width: 100%;
}
.btn::after {
  position: absolute;
  content: '';
  display: block;
  width: 19px;
  height: 10px;
  background-image: url("/img/common/arrow.webp");
  background-size: contain;
  background-repeat: no-repeat;
  top: 50%;
  right: 15px;
  transform: translate(0%, -50%);
  transition: all .3s;
}
.btn:hover::after {
  background-image: url("/img/common/arrow_w.webp");
}
.base_bg {
  padding: 3em 0;
}
.base_bg.black {
  background: #000;
}
.heading {
  font-family: "ador-hairline", sans-serif;
  font-weight: 400;
  font-size: 2.5rem;
}
.heading i {
  display: block;
}
.pagetitle {
  background: #000;
	color: #fff;
  padding: 70px 0 1.5em;
  position: relative;
}
.pagetitle h2 {
  font-family: "ador-hairline", sans-serif;
font-weight: 400;
  font-size: 2.5rem;
}
.pagetitle p {
  font-size: 1.5rem;
}
/* pp */
.pp {
  padding: 3em 0 3em;
  width: 90%;
  margin: auto;
  text-align: left;
}
.pp ul {
  margin: 2em auto;
}
.pp ul li {
  position: relative;
  counter-increment: mycounter;
  margin: 1em auto 0;
}
.pp ul li::before {
  position: absolute;
  top: 0px;
  left: 0px;
  content: counter(mycounter, decimal) ". ";
}
.pp ul li div {
  padding: 0 0 0.3em 18px;
}
.pp ul li p {
  padding: 0 0 18px;
}
/* shop */
.comp_list {
  width: 90%;
  max-width: 900px;
  margin: auto;
}
.comp_list li {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #7E7E7E;
  text-align: left;
}
.comp_list li dt {
  width: 120px;
}
.comp_list li dd {
  width: calc(100% - 120px);
}
.map {
  width: 90%;
  margin: 2em auto 0;
}
/* ------------------------------------ */
/* ▼PC用デザインとして付け足すデザイン */
/* ------------------------------------ */
@media all and (min-width: 768px) {
  html {
    scroll-padding-top: 80px;
  }
  body {
    font-size: 1.5rem; /* 15px */
    line-height: 1.8;
  }
  .base_bg {
    padding: 5em 0;
  }
  .heading {
    font-size: 4rem;
  }
  .pagetitle {
    padding: 70px 0 2em;
  }
  .pagetitle h2 {
    font-size: 3.5rem;
    line-height: 1.3;
  }
  .pagetitle p {
    font-size: 2rem;
    letter-spacing: 4px;
  }
  /* pp */
  .pp {
    padding: 5em 0 5em;
    width: 90%;
    max-width: 900px;
  }
  .pp ul {
    margin: 3em auto 2em;
  }
  .pp ul li {
    margin: 1.5em auto 0;
  }
  .pp ul li div {
    padding: 0 0 0.3em 22px;
  }
  .pp ul li p {
    padding: 0 0 22px;
  }
  /* shop */
  .comp_list li {
    padding: 20px 0;
  }
  .comp_list li dt {
    width: 230px;
  }
  .comp_list li dd {
    width: calc(100% - 230px);
  }
  .map {
    max-width: 1200px;
    margin: 4em auto 0;
  }
}