/*EN Regular*/
.en {
  font-family: "the-seasons", 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: 'Shippori Mincho', 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: 1px;
  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;
  background: #E2E2E2;
}
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: #333;
  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;
}
.font_zenkaku {
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: 400;
}
.font_zenkaku.medium {
  font-weight: 500;
}
.font_cochin {
  font-family: "cochin-lt-pro", sans-serif;
  font-weight: 400;
}
.base_bg {
  padding: 3em 0;
}
.base_bg.bg_white {
  background: #fff;
}
.base_bg.bg_black{
	background: #000;
	color: #fff;
}
.base_bg.bg_line{
	border-top: 0.5px solid #000;
}

.heading {
  font-weight: 400;
  font-size: 1.3rem;
}
.heading span {
  display: block;
  font-family: "cochin-lt-pro", sans-serif;
  text-transform: uppercase;
  font-size: 2.8rem;
  line-height: 1.3;
}
.pagetitle {
  margin: 70px auto 0;
  background: #000;
  color: #fff;
  padding: 1.5em 0;
  position: relative;
}
/* pp */
.pp {
  padding: 3em 0 3em;
  width: 90%;
  margin: auto;
  text-align: left;
}
.pp div:first-child {
  margin: 0 auto 0.8em;
}
.pp div {
  padding: 0 0 0.3em;
  border-bottom: 0.5px solid #707070;
  margin: 2em auto 0.8em;
  font-weight: 700;
  font-size: 1.5rem;
  color: #7E7E7E;
}
.pp div.noborder {
  border-bottom: none;
  padding: 0;
  margin: 0 auto 0.5em;
  font-size: 1.6rem;
}
/* ------------------------------------ */
/* ▼PC用デザインとして付け足すデザイン */
/* ------------------------------------ */
@media all and (min-width: 768px) {
  html {
    scroll-padding-top: 70px;
  }
  body {
    font-size: 1.5rem; /* 15px */
    line-height: 1.8;
  }
  .base_bg {
    padding: 6em 0;
  }
  .heading {
    font-size: 1.8rem;
    letter-spacing: 2px;
  }
  .heading span {
    font-size: 5rem;
    line-height: 1.2;
  }
  .pagetitle {
    margin: 70px auto 0;
    padding: 2em 0 2em;
  }
  /* pp */
  .pp {
    padding: 5em 0 5em;
    width: 90%;
    max-width: 900px;
  }
  .pp div {
    font-size: 1.8rem;
  }
  .pp div.noborder {
    font-size: 2rem;
  }
}