/* パソコンで見たときは"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: "source-han-sans-japanese", sans-serif;
  font-weight: 300;
  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.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: #00964B;
  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*/
.regular {
  font-weight: 400;
}
.medium {
  font-weight: 500;
}
.bold {
  font-weight: 700;
}
.en_font {
  font-family: 'Helvetica', sans-serif;
}
a.btn {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
  background: #EDF5EE;
  padding: 10px 50px 10px 30px;
  border-radius: 50px;
  outline: none;
  transition: ease .2s;
}
a.btn span {
  position: relative;
  z-index: 3;
  color: #00964B;
}
a.btn:hover span {
  color: #fff;
}
/*== 背景が流れる（左から右） */
a.btn:before {
  content: '';
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #00964B;
  width: 100%;
  height: 100%;
  transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
/*hoverした際の形状*/
a.btn:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
a.btn::after {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(0%, -50%);
  width: 18px;
  height: 20px;
  border-radius: 50%;
  background: #00964B;
  line-height: 20px;
  text-align: center;
  content: '\f054';
  font-family: FontAwesome;
  font-weight: 400;
  font-size: 1rem;
  color: #fff;
  padding: 0 0 0 2px;
  transition: all .3s;
  z-index: 3;
}
a.btn:hover::after {
  right: 5px;
  background: #fff;
  color: #00964B;
}
a.gradationbtn {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
  background: linear-gradient(45deg, rgba(0, 196, 98, 1) 0%, rgba(0, 150, 75, 1)50%, rgba(0, 150, 75, 1)100%);
  background-position: 1% 50%;
  background-size: 200% auto;
  padding: 10px 50px 10px 30px;
  border-radius: 50px;
  outline: none;
  font-family: 'Helvetica', sans-serif;
  transition: ease .2s;
}
a.gradationbtn span {
  position: relative;
  z-index: 3;
  color: #fff;
}
a.gradationbtn:hover {
  background-position: 99% 50%;
}
a.gradationbtn::after {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(0%, -50%);
  width: 18px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  line-height: 20px;
  text-align: center;
  content: '\f054';
  font-family: FontAwesome;
  font-weight: 400;
  font-size: 1rem;
  color: #00964B;
  padding: 0 0 0 2px;
  transition: all .3s;
  z-index: 3;
}
a.gradationbtn:hover::after {
  right: 5px;
}
.ttl_h2 {
  width: 80%;
  margin: auto;
  text-align: left;
  font-size: 1.6rem;
  letter-spacing: 2px;
  font-weight: 500;
  color: #00964B;
}
.ttl_h2 span {
  display: block;
  font-family: 'Helvetica', sans-serif;
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: bold;
  color: #000;
}
.pagetitle {
  margin: 70px auto 0 0;
  background: linear-gradient(-45deg, rgba(0, 196, 98, 1) 0%, rgba(0, 150, 75, 1)50%, rgba(0, 150, 75, 1)100%);
  border-radius: 0 0 0 30px;
  padding: 1.5em 0;
}
.pagetitle h2 {
  width: 80%;
  margin: auto;
  text-align: left;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 2px;
  color: #fff;
}
.pagetitle h2 span {
  display: block;
  font-family: 'Helvetica', sans-serif;
  font-weight: bold;
  font-size: 2.7rem;
  line-height: 1.2;
}
/* pp */
.sof_pp {
  padding: 2em 0 2em;
  width: 90%;
  margin: auto;
  text-align: left;
}
.sof_pp div {
  padding: 0 0 0.5em;
  border-bottom: 0.5px solid #00964B;
  margin: 2em auto 1em;
  font-size: 1.6rem;
  font-weight: bold;
  position: relative;
}
.sof_pp p {
  margin: 0 auto 0.5em;
}
.sof_pp p.bb {
  font-weight: bold;
}
.sof_pp ol {
  margin: 0;
  list-style-type: decimal;
  padding: 0 0 0 20px;
}
.sof_pp ol li {
  margin-bottom: 10px;
}
.sof_pp ul.disc {
  list-style-type: disc;
  margin: 5px auto;
  padding: 0 0 0 20px;
}
.sof_pp ul.disc li {
  margin-bottom: 5px;
}
.sof_pp ol.number {
  margin: 0;
  list-style: none;
  counter-reset: number;
  padding: 0 0 0 20px;
}
.sof_pp ol.number li {
  position: relative;
  margin: 8px auto;
}
.sof_pp ol.number li::before {
  counter-increment: number;
  content: counter(number);
  position: absolute;
  top: 3px;
  left: -20px;
  width: 12px;
  height: 12px;
  border: 1px solid #000;
  border-radius: 50%;
  font-size: 10px;
  text-align: center;
  line-height: 1.2;
}
.sof_pp ol.number ul.disc li {
  margin: 4px auto;
}
.sof_pp ol.number ul.disc li::before {
  display: none;
}
/* company */
.company_bg {
  width: 90%;
  margin: 0 auto 0;
  padding: 3em 0;
}
.comp_list {
  margin: 0em auto 3em;
}
.comp_list li {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #00964B;
  text-align: left;
}
.comp_list li dt {
  width: 90px;
  font-weight: 500;
}
.comp_list li dd {
  width: calc(100% - 100px);
}
.map {}
.map iframe {
  border-radius: 20px;
}
/* agency */
.agency_ttl {
  text-align: left;
  font-weight: bold;
  letter-spacing: 2px;
  font-size: 1.5rem;
}
.agency_ttl span {
  color: #00964B;
  padding: 0 5px 0 0;
  font-size: 2rem;
}
.agency_list {
  margin: 1em auto 3em;
  border-top: 1px solid #00964B;
}
.agency_list li {
  position: relative;
  padding: 15px 0;
  border-bottom: 1px solid #00964B;
  text-align: left;
}
.agency_list li dt {
  font-weight: 500;
  font-size: 1.5rem;
  margin: 0 auto 0.2em;
}
.agency_list li dd {}
.agency_list.overseas li {
  padding: 15px 0 15px 20px;
  border-bottom: 1px dotted #00964B;
}

.agency_list li dt img{
	display: block;
	width: 40px;
	margin: 0 auto 0.3em 0;
}

.agency_subttl {
  position: relative;
  margin: 1em auto 0;
  padding: 0.5em 0 0 20px;
  border-top: 1px solid #00964B;
  text-align: left;
  font-weight: bold;
  font-size: 1.6rem;
}
.agency_subttl::before {
  position: absolute;
  top: 1em;
  left: 0%;
  content: '\f111';
  font-family: FontAwesome;
  font-weight: 400;
  color: #00964B;
  font-size: 1.2rem;
}
/* ------------------------------------ */
/* ▼PC用デザインとして付け足すデザイン */
/* ------------------------------------ */
@media all and (min-width: 768px) {
  body {
    font-size: 1.6rem; /* 16px */
  }
  a.btn {
    padding: 12px 60px 12px 40px;
    font-size: 1.6rem;
  }
  a.gradationbtn {
    padding: 12px 60px 12px 40px;
  }
  .ttl_h2 {
    width: 90%;
    max-width: 1200px;
    font-size: 2.3rem;
    letter-spacing: 3px;
  }
  .ttl_h2 span {
    font-size: 4rem;
  }
  .ttl_h2.inline span {
    display: inline-block;
    margin: 0 10px 0 0;
  }
  .pagetitle {
    margin: 70px auto 0;
    padding: 2em 0;
    border-radius: 0 0 0px 50px;
  }
  .pagetitle h2 {
    width: 85%;
    font-size: 1.7rem;
    line-height: 1.5;
    letter-spacing: 4px;
  }
  .pagetitle h2 span {
    font-size: 4rem;
  }
  /* pp */
  .sof_pp {
    padding: 5em 0;
    max-width: 1000px;
  }
  .sof_pp div {
    margin: 3em auto 1em;
    font-size: 1.8rem;
  }
  .sof_pp ol.number li::before {
    top: 6px;
    left: -25px;
    width: 16px;
    height: 16px;
    font-size: 13px;
    line-height: 1.4;
  }
  /* company */
  .company_bg {
    max-width: 1000px;
    margin: 0em auto 0;
    padding: 3em 0 5em;
  }
  .comp_list {
    margin: 2em auto 3em;
  }
  .comp_list li {
    padding: 20px 0;
  }
  .comp_list li dt {
    width: 180px;
  }
  .comp_list li dd {
    width: calc(100% - 180px);
  }
  /* agency */
  .agency_ttl {
    font-size: 1.8rem;
  }
  .agency_ttl span {
    font-size: 2.8rem;
    padding: 0 10px 0 0;
  }
  .agency_list {
    margin: 1em auto 4em;
  }
  .agency_list li {
    position: relative;
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: space-between;
  }
  .agency_list li dt {
    width: 300px;
    font-size: 1.7rem;
    margin: 0;
  }
  .agency_list li dd {
    width: calc(100% - 300px);
  }
  .agency_list.overseas li {
    padding: 20px 0 20px 0px;
  }
  .agency_subttl {
    margin: 1em auto 0;
    padding: 0.6em 0 0 25px;
    font-size: 2rem;
  }
  .agency_subttl::before {
    top: 1em;
    font-size: 1.7rem;
  }
}