/* パソコンで見たときは"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: 90px;
}
body {
  font-size: 1.3rem; /* 13px */
  line-height: 1.7;
  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: #0086CC;
  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*/
.en_font {
  font-family: brandon-grotesque, sans-serif;
  font-weight: 400;
}
.en_font.bold {
  font-weight: 700;
}
.base_bg {
  overflow: hidden;
  padding: 3em 0;
}
.base_bg.blue {
  background: #E4F5FA;
  position: relative;
}
.heading {
  color: #0086CC;
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 2px;
}
.heading img {
  display: block;
  width: 30px;
  margin: auto;
}
.heading span {
  display: block;
  font-family: brandon-grotesque, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  text-transform: uppercase;
}
.btn a {
  position: relative;
  overflow: hidden;
  padding: 10px 90px 10px 50px;
  transition: ease .2s;
  border-radius: 5px;
  background: #0086CC;
  color: #fff !important;
}
.btn a span {
  position: absolute;
  left: 50%;
  top: 20%;
  transition: all .5s;
  transform: translate(-50%, 0);
  display: block;
  opacity: 1;
  white-space: nowrap;
}
.btn a span:nth-child(2) {
  opacity: 0;
  transform: translate(-50%, 100%);
}
.btn a:hover span:nth-child(1) {
  opacity: 0;
  transform: translate(-50%, -100%);
}
.btn a:hover span:nth-child(2) {
  opacity: 1;
  transform: translate(-50%, 0);
}
.btn a::after {
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
  right: 13px;
  content: '\f0da';
  font-family: FontAwesome;
  font-weight: 400;
  color: #fff;
  transition: all .3s;
}
.btn a:hover::after {
  right: 11px;
}
.btn.reverse a::after{
	right: auto;
	 content: '\f0d9';
	left: 13px;
}
.btn.reverse a:hover::after{
	left: 11px;
}

.pagetitle {
  background: #0086CC;
  padding: 100px 0 1.5em;
  border-radius: 0 0 30px 30px;
}
.pagetitle h2 {
  font-weight: 600;
  color: #fff;
  letter-spacing: 2px;
  font-size: 1.8rem;
}
.category_list_ttl {
  color: #0086CC;
  font-size: 1.4rem;
  border-bottom: 1px solid #0086CC;
  font-weight: 600;
  padding: 0 0 5px;
  margin: 1em auto 0;
}
.category_list {
  width: calc(100% + 10px);
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0em auto 0em -5px;
  justify-content: center;
}
.category_list li {
  margin: 1em 4px 0em;
  width: calc(100% / 4 - 8px);
}
.category_list li img {
  display: block;
  max-width: 60px;
  margin: auto;
}
.category_list li p {
  margin: 0.5em auto 0;
  font-weight: 500;
  line-height: 1.4;
  font-size: 1.1rem;
  letter-spacing: 0;
}
/* ------------------------------------ */
/* PC */
/* ------------------------------------ */
@media all and (min-width: 768px) {
  html {
    scroll-padding-top: 100px;
  }
  body {
    font-size: 1.6rem; /* 16px */
  }
  .base_bg {
    padding: 5em 0;
  }
  .heading {
    font-size: 3rem;
    letter-spacing: 6px;
  }
  .heading img {
    width: 50px;
  }
  .heading span {
    letter-spacing: 2px;
    font-size: 2rem;
  }
  .btn a {
    padding: 12px 90px;
    border-radius: 8px;
  }
  .btn a span {
    top: 20%;
  }
  .pagetitle {
    padding: 140px 0 3em;
    border-radius: 0 0 50px 50px;
  }
  .pagetitle h2 {
    letter-spacing: 3px;
    font-size: 2.8rem;
  }
  .category_list_ttl {
    max-width: 950px;
    margin: 2em auto 0;
    letter-spacing: 3px;
    font-size: 2rem;
    padding: 0 0 0.7em;
  }
  .category_list {
    width: calc(100% + 0px);
    margin: 0em auto 0em;
  }
  .category_list li {
    margin: 1em 0px 0em;
    width: 95px;
  }
  .category_list li img {
    max-width: 75px;
  }
  .category_list li p {
    font-size: 1.4rem;
    letter-spacing: 1px;
  }
}