/*En*/
.kumbh-sans-<uniquifier > {
  font-family: "Kumbh Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "YOPQ"300;
}
/* パソコンで見たときは"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: 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;
}
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 {
  text-align: left;
  margin: auto;
  display: inline-block;
  position: relative;
  color: #fff !important;
  border-radius: 100px;
  font-weight: 500;
  padding: 15px 60px 15px 20px;
  background: linear-gradient(135deg, rgba(0, 185, 253, 1) 0%, rgba(0, 85, 887, 1)50%, rgba(0, 85, 887, 1)100%);
  background-position: 1% 50%;
  background-size: 200% auto;
  transition: all 0.3s ease-out;
}
.btn:hover {
  background-position: 99% 50%;
}
.btn::before {
  position: absolute;
  content: '';
  top: 50%;
  right: 10px;
  transform: translate(0%, -50%);
  display: block;
  width: 30px;
  height: 30px;
  background-image: url("/img/common/arrow_blue.webp");
  background-size: contain;
  background-repeat: no-repeat;
  transition: ease .2s;
}
.btn:hover::before {
  right: 5px;
}
.base_bg {
  overflow: hidden;
  padding: 3em 0;
}
.base_bg.gradation {
  background: url("/img/common/bg_sp.webp") center / cover;
}

.base_bg.gradation_repeat {
   background: url("/img/common/bg_repeat.webp") center / cover;
}

.heading {
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.4;
}
.heading span {
  color: #0066DD;
  font-family: "Kumbh Sans", sans-serif;
  font-weight: 600;
  display: block;
  font-size: 1.5rem;
}
.heading img{
	width: auto;
	height: 28px;
	margin: 0 5px 0 0;
}

.pagetitle {
  background: url("/img/common/bg_sp.webp") center / cover;
  padding: 100px 0 1.5em;
  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 #0066DD;
  margin: 2em auto 0.8em;
  font-weight: 500;
  font-size: 1.5rem;
  color: #0066DD;
}
.pp div.noborder {
  border-bottom: none;
  padding: 0;
  margin: 0 auto 0.5em;
  font-size: 1.6rem;
}
/* company */
.comp_list {
  width: 90%;
  max-width: 1000px;
  margin: auto;
}
.comp_list li {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #0066DD;
  text-align: left;
}
.comp_list li dt {
  width: 100px;
  color: #0066DD;
  font-weight: 500;
}
.comp_list li dd {
  width: calc(100% - 100px);
}
.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;
  }
  .btn {
    padding: 18px 100px 18px 30px;
  }
  .btn::before {
    right: 10px;
    width: 45px;
    height: 45px;
  }
  .btn:hover::before {
    right: 5px;
  }
  .base_bg {
    padding: 5em 0;
  }
  .base_bg.gradation {
	   padding: 4em 0 5em;
    background: url("/img/common/bg.webp") center / cover;
  }
  .heading {
    font-size: 3rem;
    line-height: 1.5;
  }
  .heading span {
    font-size: 2.3rem;
  }
	
	.heading img{
	height: 45px;
	margin: 0 8px 0 0;
}
	
  .pagetitle {
    background: url("/img/common/bg.webp") center / cover;
    padding: 120px 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;
  }
  /* company */
  .comp_list li {
    padding: 30px 0;
  }
  .comp_list li dt {
    width: 230px;
  }
  .comp_list li dd {
    width: calc(100% - 230px);
  }
  .map {
    max-width: 1000px;
    margin: 4em auto 0;
  }
}