@charset "UTF-8";
/*=============================================
 * body
 *=============================================*/
body {
  font-size: 16px;
  line-height: 36px;
  color: #000;
  letter-spacing: 0;
  font-family: 'Noto Sans JP', sans-serif;
  min-width: inherit;
  min-height: inherit;
  max-height: 100%;
  background: #fff;
  text-align: justify;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 15px;
    line-height: 1.7;
  }
}
.nav--opened {
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}
body.nav--opened, body.nav--opened *, body.nav--opened *:hover, body.nav--opened *:focus, body.nav--opened *:active {
  pointer-events: none !important;
  -ms-touch-action: none !important;
  touch-action: none !important;
}
body.nav--opened .hamburger, body.nav--opened #menu_toggle, body.nav--opened #menu_toggle * {
  pointer-events: visible !important;
  -ms-touch-action: auto !important;
  touch-action: auto !important;
}
#pagetop2 {
  position: fixed;
  right: 33px;
  bottom: 190px;
  z-index: 99;
  cursor: pointer;
  transition: 0.3s all ease-in-out;
}
@media only screen and (min-width: 768px) {
  #pagetop2 {
      bottom: 280px;
      right: 42px;
  }
}
/*=============================================
 * fonts - DON'T EDIT
 *=============================================*/
.fnt-mincho {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "メイリオ", Meiryo, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.fnt-meiryo {
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴシックPro", "ＭＳ ゴシック", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.fnt-gothic {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}
.fnt-shippori {
  font-family: 'Shippori Mincho', serif;
}
.fnt-athelas {
  font-family: athelas, serif;
}
.mb20{
  margin-bottom: 20px !important;
}
.mb30{
  margin-bottom: 30px !important;
}
.mb40{
  margin-bottom: 40px !important;
}
.mb50{
  margin-bottom: 50px !important;
}
.mb60{
  margin-bottom: 60px !important;
}
.mb70{
  margin-bottom: 70px !important;
}
.mb80{
  margin-bottom: 80px !important;
}
.mb130{
  margin-bottom: 130px !important;
}
/*=============================================
 * main
 *=============================================*/
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
a[href^="tel:"]:hover {
  text-decoration: none;
}
.wrap {
  margin: auto;
  max-width: 1240px;
  width: 100%;
  padding: 0;
  position: relative;
}
.fr{
  float: right;
}
@media only screen and (max-width: 767px) {
  .wrap {
    padding: 0 4%;
    position: relative;
  }
  .fr{
    float: none;
  }
}
@media only screen and (min-width: 768px){
  main{
    padding-top: 120px;
  }
}
/*=============================================
 * header
 *=============================================*/
header {
  background: #fff;
  position: relative;
  z-index: 1110;
  transition: 1.5s cubic-bezier(0.16, 0.52, 0.25, 1);
}

header .header-inner {
  width: 100%;
  box-sizing: border-box;
  max-width: 1420px;
  padding: 6px 20px;
  justify-content: space-between;
  margin: auto;
  align-items: center;
}
header .header-inner .dis-flex {
  align-items: center;
}
header .header-nav {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  padding-right: 30px;
}
header .header-nav li {
  margin-right: 30px;
  color: #333;
  font-weight: 500;
  padding: 36px 0;
}
header .header-nav span {
  cursor: pointer;
}
header .header-nav li.link-parent {
  position: relative;
}
header .header-nav li.link-parent:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10.5px 18px 10.5px;
  border-color: transparent transparent #ffffff transparent;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -10px;
  opacity: 0;
  transition: ease 0.3s;
}
@media only screen and (max-width: 1100px) and (min-width: 768px) {
  header .logo {
    width: 200px;
    margin-top: 10px;
  }
  header .logo img {
    width: 100%;
  }
  header .header-nav {
    padding-right: 10px;
  }
  header .header-nav li {
    margin-right: 12px;
    padding: 13px 0;
  }
  header .header-nav li a,
  header .header-nav li span {
    font-size: 12px;
  }
}
@media only screen and (min-width: 768px) {
  header{
    position: fixed;    
    top: 0;
    left: 0;
  }
}
@media only screen and (max-width: 767px) {
  header .header-nav {
    display: none;
  }
  header .header-inner {
    padding: 0 4%;
    height: 60px;
  }
  header .header-inner .logo {
    width: 150px;
  }
}
.hamburger {
  cursor: pointer;
  transition: ease 0.3s;
}
.hamburger:hover {
  opacity: 0.8;
}
@media only screen and (max-width: 767px) {
  .hamburger {
    width: 56px;
    position: fixed;
    top: 0;
    right: 0;
    background: #fff;
    padding: 10px;  
  }
}
.nav--opened .logo {
  background: url("../img/shared/menu_logo.png") no-repeat center/100% 100%;
  margin-top: 10px;
}
.nav--opened .logo img {
  opacity: 0;
}
.nav--opened .hamburger {
  background: url("../img/shared/close.png") no-repeat center/100% 100%;
}
.nav--opened .hamburger img {
  opacity: 0;
}
.nav--opened .header-nav {
  display: none;
}
.nav--opened header {
  background: none !important;
}
/*=============================================
 * key
 *=============================================*/
#key {
  height: 507px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 0 50px;
}
#key .wrap {
  height: 100%;
}
#key .key-txt {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 42px;
  color: #fff;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.01em;
}
@media only screen and (max-width: 1150px) and (min-width: 768px) {
  #key {
    height: 350px;
  }
  #key .key-txt {
    font-size: 35px;
  }
}
@media only screen and (max-width: 767px) {
  #key {
    height: 50vw;
    padding: 0;
  }
  #key .key-txt {
    left: 4%;
    right: 4%;
    font-size: 5vw;
  }
}
.page-parent #key {
  height: 235px;
  background-color: #d6e9fd;
  padding: 0 50px;
}
.page-parent #key h1 {
  color: #333;
  width: 100%;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .page-parent #key {
    height: 25vw;
  }
}
/*=============================================
 * nav
 *=============================================*/
#menu_toggle {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  overflow-y: auto;
  z-index: 1100;
  padding: 150px 0 20px;
  background: url("../img/shared/menu_toggle_sp.jpg") no-repeat center/cover;
  transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  color: #fff;
}
.nav--opened #menu_toggle {
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
}
@media only screen and (min-width: 768px) {
  #menu_toggle .dis-flex-pc {
    max-width: 1090px;
    margin: auto;
    width: 100%;
  }
  #menu_toggle .menu-col1 {
    width: 46%;
  }
  #menu_toggle .menu-col2 {
    width: 27%;
  }
}
#menu_toggle .menu-txt1 {
  font-weight: 500;
  font-size: 18px;
}
#menu_toggle .menu-col1 dl {
  margin-left: 25px;
}
#menu_toggle .menu-col1 dt {
  font-weight: 700;
  font-size: 16px;
}
#menu_toggle .menu-col1 dd {
  margin-left: 25px;
  font-size: 14px;
}
#menu_toggle .menu-col1 dd a {
  display: block;
  line-height: 2.5;
}
#menu_toggle .menu-col2 a {
  font-weight: 500;
  font-size: 18px;
  line-height: 2.6;
}
#menu_toggle .menu-col3 a {
  font-weight: 500;
  line-height: 3;
}
#menu_toggle .menu-col3 ul + ul {
  margin-top: 3em;
}
#menu_toggle .menu-last {
  margin-top: 80px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: flex-end;
}
#menu_toggle .menu-last a {
  font-size: 12px;
  line-height: 1.1;
}
#menu_toggle .menu-last li {
  line-height: 1.1;
}
#menu_toggle .menu-last li + li:before {
  content: "|";
  margin: 0 15px;
  line-height: 1.1;
  font-size: 12px;
}
@media only screen and (max-width: 767px) {
  #menu_toggle {
    padding: 70px 0 50px;
  }
  #menu_toggle .dis-flex-pc {
    padding-left: 3.6%;
  }
  #menu_toggle .menu-txt1 {
    font-weight: 400;
    font-size: 15px;
    margin-bottom: 10px;
  }
  #menu_toggle .menu-col1 dl {
    margin-left: 15px;
    margin-bottom: 13px;
  }
  #menu_toggle .menu-col1 dt {
    font-weight: 400;
    font-size: 15px;
    margin-bottom: 8px;
  }
  #menu_toggle .menu-col1 dd {
    margin-left: 15px;
    font-size: 15px;
  }
  #menu_toggle .menu-col1 dd a {
    display: block;
    line-height: 1.2;
    margin-bottom: 9px;
  }
  #menu_toggle .menu-col2 {
    padding: 15px 0;
  }
  #menu_toggle .menu-col2 ul {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
  }
  #menu_toggle .menu-col2 li {
    margin-right: 22px;
  }
  #menu_toggle .menu-col2 a {
    font-weight: 400;
    font-size: 15px;
    line-height: 2;
  }
  #menu_toggle .menu-col3 ul {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
  }
  #menu_toggle .menu-col3 li {
    margin-right: 22px;
  }
  #menu_toggle .menu-col3 a {
    font-weight: 400;
    line-height: 2;
  }
  #menu_toggle .menu-col3 ul + ul {
    margin-top: 0;
  }
  #menu_toggle .menu-col3 ul + ul li:nth-child(3) {
    margin-right: 0;
  }
  #menu_toggle .menu-last {
    margin: 20px 0 30px;
    display: block;
    text-align: center;
  }
  #menu_toggle .menu-last li + li:before {
    display: none;
  }
  #menu_toggle .menu-last a {
    font-size: 13px;
    line-height: 1.7;
  }
}
#menu_toggle .copyright {
  text-align: center;
  font-size: 10px;
}
.mb10 {
    margin-bottom: 10px;
}
.menu-sub {
  position: absolute;
  top: 113px;
  left: 0;
  z-index: 100;
  background: #fff;
  padding: 50px 0;
  width: 100%;
  letter-spacing: 0;
  opacity: 0;
  pointer-events: none;
  transition: ease 0.3s;
}
.menu-sub .menu-txt2 {
  font-weight: 500;
  color: #0068b7;
  font-size: 18px;
  margin-bottom: 25px;
}
.menu-sub dl {
  width: 23%;
}
.menu-sub dl dt {
  font-weight: 700;
  font-size: 15px;
}
.menu-sub dl dd {
  font-size: 14px;
  line-height: 36px;
  margin-left: 20px;
}
.menu-sub dl a {
  display: block;
  color: #333;
}
.menu-sub dl:last-child {
  width: 390px;
}
@media only screen and (max-width: 1270px) and (min-width: 768px) {
  .menu-sub {
    padding: 50px 20px;
  }
  .menu-sub .dis-flex {
    flex-wrap: wrap;
  }
  .menu-sub dl {
    width: 30%;
  }
}
@media only screen and (max-width: 900px) and (min-width: 768px) {
  .menu-sub dl:nth-child(2n+1) {
    margin-bottom: 20px;
    width: 44%;
  }
}
.navSubOpen .menu-sub {
  opacity: 1;
  pointer-events: visible;
}
.navSubOpen header .header-nav li.link-parent:before {
  opacity: 1;
}
.navSubClose .menu-sub {
  opacity: 0;
  pointer-events: none;
}
/*=============================================
 * footer
 *=============================================*/
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 20px 50px;
}
footer .footer-txt {
  font-size: 14px;
  line-height: 1.42;
  margin: 14px 0 37px;
}
footer .dis-flex-pc {
  font-size: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
footer copyright {
  order: -1;
}
footer .footer-nav li:before {
  content: "|";
  font-size: 10px;
  margin: 0 15px;
}
footer .footer-nav li:last-child:after {
  content: "|";
  font-size: 10px;
  margin-left: 15px;
}
@media only screen and (max-width: 1150px) and (min-width: 768px) {
  footer copyright {
    order: 2;
  }
}
@media only screen and (max-width: 767px) {
  footer {
    padding: 10vw 0;
  }
  footer .footer-logo {
    margin: auto;
    width: 52.2%;
  }
  footer .footer-txt {
    font-size: 12px;
    line-height: 1.5;
    margin: 2vw 0 6vw;
  }
  footer .footer-nav {
    justify-content: center;
    flex-wrap: wrap;
    line-height: 2.3;
    margin-bottom: 8vw;
  }
  footer .footer-nav li:before{
    margin: 0 10px;
  }
  footer .footer-nav li:not(:last-child):before, footer .footer-nav li:last-child:after{
    display: none;
  }
  footer copyright {
    font-size: 10px;
  }
}
.bnr_mail {
  position: fixed;
  bottom: 124px;
  right: 20px;
  z-index: 1000;
  width: 133px;
}
.bnr_career img,
.bnr_mail img{
  width: 100%;
}
.bnr_career{
  width: 150px;
  position: fixed;
  left: 0;
  bottom: 124px;
  z-index: 1000;
}
@media only screen and (max-width: 767px) {
  .bnr_mail {
    width: 112px;
    bottom: 70px;
  }
  .bnr_career{
    width: 120px;
    bottom: 70px;
  }
}
iframe {
  width: 100%;
  height: 100%;
}
#pagetop {
  opacity: 1;
  position: absolute;
  bottom: 7px;
  right: 0;
  visibility: visible;
}
@media only screen and (max-width: 1400px) and (min-width: 768px) {
  #pagetop {
    right: 0;
    bottom: 85px;
  }
}
/*=============================================
 * ft_fixed_shared
 *=============================================*/
.nav--opened #ft_fixed {
  z-index: 0;
}
.has_nav #ft_fixed {
  opacity: 1;
  visibility: visible;
}
/*=============================================
 * general
 *=============================================*/
.flex-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.flex-center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.flex-middle {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.slick-dots {
  font-size: 0;
  line-height: 0;
  text-align: center;
}
.slick-dots li {
  display: inline-block;
  line-height: 0;
  padding: 0 6px;
  cursor: pointer;
}
.slick-dots li button {
  border: 1px solid #363330;
  position: relative;
  cursor: pointer;
  outline: none;
  background: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
}
.slick-dots .slick-active button {
  background: #363330;
}
@media only screen and (min-width: 768px) {
  .slick-dots li {
    padding: 0 8px;
  }
  .slick-dots li button {
    width: 17px;
    height: 17px;
    border-radius: 50%;
  }
}
.slick-arrow {
  bottom: 0;
  z-index: 2;
  border: none;
  outline: none;
  color: transparent;
  position: absolute;
  cursor: pointer;
  background: transparent;
  width: 44px;
  height: 6px;
}
.slick-arrow.slick-prev {
  left: 0;
  background: url("../img/shared/arrow_prev.png") no-repeat center right/100% auto;
}
.slick-arrow.slick-next {
  right: 0;
  background: url("../img/shared/arrow_next.png") no-repeat center left/100% auto;
}
img {
  width: 100%;
  height: auto;
}
@media only screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
  img {
    width: auto;
  }
  .slick-dots li {
    transition: 0.2s;
  }
  .slick-dots li:hover {
    opacity: 0.8;
  }
  .slick-arrow:hover {
    opacity: 0.8;
  }
  .dis-flex-pc {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
  }
}
.j_between {
  justify-content: space-between;
}
.pb20 {
  padding-bottom: 20px;
}
.dis-flex {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
em {
  font-style: normal;
}
.txt-center {
  text-align: center;
}
.txt-right {
  text-align: right;
}
.breakcum {
  font-size: 12px;
  margin: -4px 0 16px;
}
.breakcum a {
  border-bottom: 1px solid #333;
  color: #333;
  line-height: 1.9;
  display: inline-block;
}
.breakcum a:hover {
  text-decoration: none;
  opacity: 0.8;
}
.breakcum li:not(:last-child):after {
  content: ">";
  margin: 0 6px;
}
@media only screen and (min-width: 768px) {
  .breakcum {
    padding: 0 50px;
  }
}
.breakcum ul{
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .breakcum {
    margin-bottom: 10px;
    margin-top: 5px;
  }
  .breakcum .wrap {
    width: 100%;
    overflow-x: auto;
  }
  .breakcum ul li{
    margin-bottom: 5px;
    letter-spacing: 0;
  }
  .breakcum li:not(:last-child):after{
    margin: 0 4px;
  }
}
.content {
  width: 100%;
  max-width: 1100px;
  box-sizing: border-box;
  margin: auto;
  padding: 87px 50px 36px;
}
@media only screen and (max-width: 767px) {
  .content {
    padding: 10vw 4% 5vw;
  }
}
.box_create {
  margin-bottom: 60px;
}
.box_create p {
  margin-bottom: 1.5em;
}
.box_create .txt-right {
  display: block;
}
@media only screen and (max-width: 1000px) {
  .box_create img {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .box_create {
    margin-bottom: 13vw;
  }
  .box_create img {
    width: 100%;
  }
}
.alignright {
  float: right;
  margin: 0 0 20px 50px;
}
.alignleft {
  float: left;
  margin: 0 50px 20px 0;
}
.img_right {
  float: right;
  margin: 0 0 20px 20px;
}
@media only screen and (max-width: 767px) {
  .alignright, .alignleft, .img_right {
    float: none;
    margin: 0 0 20px 0;
  }
}
.img-right {
  width: 37.4%;
  margin: 10px 0 20px 20px;
  float: right;
}
@media only screen and (max-width: 767px) {
  .img-right {
    width: 100%;
    max-width: 374px;
    margin: 10px 0 20px 0;
  }
}
.ttl-global {
  color: #0068b7;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.6;
  margin-bottom: 20px !important;
  letter-spacing: -0.05em;
}
@media only screen and (max-width: 767px) {
  .ttl-global {
    font-size: 5.5vw;
  }
}
.list_dot {
  padding-bottom: 20px;
}
.list_dot li {
  padding-left: 18px;
  position: relative;
  margin-bottom: 15px;
  letter-spacing: 0;
}
.list_dot li:before {
  content: "";
  border-radius: 50%;
  background: #0068b7;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 12px;
  left: 0;
}
@media only screen and (max-width: 767px) {
  .list_dot li {
    padding-left: 23px;
  }
  .list_dot li:before {
    width: 10px;
    height: 10px;
    top: 9px;
  }
}
.txt-global {
  color: #0068b7;
}
.box2 {
  border: 2px solid #0068b7;
  box-sizing: border-box;
  margin: 0 18px 20px;
  padding: 15px 30px;
}
.box2 dt {
  color: #0068b7;
  font-size: 20px;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .box2 {
    padding: 3vw 5% 5vw;
    margin: 0 5% 20px;
  }
  .box2 dt {
    font-size: 5vw;
  }
}
#bnr {
  margin-bottom: 150px;
  justify-content: space-between;
}
#bnr p {
  width: 48.4%;
}
#bnr p img {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  #bnr p {
    width: 100%;
  }
}
.ppa #key {
  background-image: url("../img/business/create/ppa/kv.jpg");
}
.fw700 {
  font-weight: 700 !important;
}
.mb0 {
  margin-bottom: 0 !important;
}
.pd0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.pb0 {
  padding-bottom: 0 !important;
}
.pb10 {
  padding-bottom: 10px !important;
}
.pb20 {
  padding-bottom: 20px !important;
}
.f_14 {
  font-size: 14px;
}
.txt-green {
  color: #99b939;
}
.txt-blue {
  color: #0068b7;
}
.txt-r {
  text-align: right;
}
.box-style-1 {
  margin-top: 5vw;
  padding: 5vw;
  box-sizing: border-box;
  background: #fff;
  text-align: center;
}
.box-style-1 .ttl {
  font-weight: 500;
  font-size: 4.5vw;
  letter-spacing: 0;
}
.box-style-1 .ttl small{
  display: block;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: 0.01em;
  margin-top: 5px;
}
.box-style-1 .img {
  margin-top: 5vw;
}
.box-style-1 .img img {
  width: 65vw;
}
.box-style-1 .btn-link {
  margin-top: 5vw;
}
.box-style-1 .btn-link a {
  width: 123px;
  display: inline-block;
}
.box-style-1 .btn-link img {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .box-style-1 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
    padding: 11px 15px;
    text-align: left;
  }
  .box-style-1 .ttl {
    font-size: 20px;
    line-height: 32px;
  }
  .box-style-1 .ttl small{
    font-size: 16px;
    line-height: 20px;
  }
  .box-style-1 .img {
    order: 2;
    width: 48%;
    margin-top: 0;
  }
  .box-style-1 .img img {
    width: auto;
    max-width: 100%;
  }
  .box-style-1 .btn-link {
    order: 3;
    width: 52%;
    margin-top: -34px;
    padding-right: 26px;
    box-sizing: border-box;
    text-align: right;
  }
  .box-style-1 .btn-link a {
    width: 132px;
  }
  .box-style-1 .txtbox {
    order: 1;
    width: 52%;
    padding: 0 11px 45px 5px;
    box-sizing: border-box;
  }
}
.box-style-2 {
  background: #f0f0f0;
  padding: 20px;
  margin: 0 0 90px;
}
.box-style-2 .box_ttl {
  font-size: 20px;
  font-weight: bold;
  color: #0068b7;
}
.box-style-2 .box_ttl2 {
  font-size: 18px;
  font-weight: bold;
  padding: 0 0 25px;
}
.box-style-2 table {
  font-size: 16px;
}
.box-style-2 table th {
  width: 93px;
  text-align: left;
}
.box-style-2 table td {
  text-align: left;
}
@media only screen and (min-width: 768px) {
  .box-style-2 {
    padding: 30px 38px;
  }
}
.box-style-3 {
  background: #f5fae6;
  padding: 8vw 5vw;
  box-sizing: border-box;
  margin-bottom: 30px;
}
.box-style-3 h5 {
  font-weight: 700;
  font-size: 113%;
}
.box-style-3 .txtbox .gr {
  margin-top: 5vw;
}
@media only screen and (min-width: 768px) {
  .box-style-3 {
    padding: 50px 50px 35px;
    margin-bottom: 50px;
  }
  .box-style-3 .txtbox {
    display: flex;
  }
  .box-style-3 .txtbox h3 {
    width: 220px;
  }
  .box-style-3 .txtbox .gr {
    width: calc(100% - 220px);
    margin-left: 50px;
    box-sizing: border-box;
    margin-top: 0;
  }
}
.box-style-4 {
  background: #fbfbfb;
  padding: 8vw 5vw;
  box-sizing: border-box;
  margin-bottom: 30px;
}
.box-style-4 .ttl {
  font-weight: 700;
  font-size: 20px;
  color: #99b939;
}
@media only screen and (min-width: 768px) {
  .box-style-4 {
    padding: 50px 50px 17px;
    margin-bottom: 50px;
  }
  .box-style-4 .ttl {
    font-size: 25px;
  }
}
.box-img-fr .txt {
  margin-top: 30px;
}
@media only screen and (min-width: 768px) {
  .box-img-fr .img {
    float: right;
    margin: 0 0 25px 55px;
  }
  .box-img-fr .txt {
    margin-top: 0;
  }
}
/*=============================================
 * title style
 *=============================================*/
.ttl {
  margin-bottom: 30px;
}
h5.ttl {
  font-weight: 500;
  font-size: 17px;
  line-height: 1.5;
}
h5.ttl span.new{
  display: block;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  background: #ec0000;
  text-align: center;
  width: 48px;
  height: 19px;
  line-height: 19px;
  margin: 8px 0 3px;
}
@media only screen and (min-width: 768px) {
  h5.ttl {
    font-size: 18px;
    line-height: 24px;
  }
}
.ttl-style-default {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "メイリオ", Meiryo, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 500;
  font-size: 5vw;
  line-height: 2;
  letter-spacing: 0.025em;
  color: #333;
}
@media only screen and (min-width: 768px) {
  .ttl-style-default {
    font-size: 36px;
    line-height: 52px;
  }
}
.ttl-style-1 {
  font-size: 4.5vw;
  letter-spacing: 0.01em;
  line-height: 2;
  color: #333;
}
.ttl-style-1 .en, .ttl-style-1 .jp {
  display: block;
}
.ttl-style-1 .en {
  font-family: athelas, serif;
  text-transform: capitalize;
  color: #a4c8e3;
}
@media only screen and (min-width: 768px) {
  .ttl-style-1 {
    font-size: 26px;
    line-height: 40px;
  }
}
.ttl-style-2 {
  padding-bottom: 10px;
  border-bottom: 1px solid #888;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "メイリオ", Meiryo, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 500;
  font-size: 6vw;
  line-height: 1.5;
  letter-spacing: 0.025em;
}
@media only screen and (min-width: 768px) {
  .ttl-style-2 {
    padding-bottom: 20px;
    font-size: 30px;
    line-height: 36px;
  }
}
.ttl-style-3 {
  padding-bottom: 10px;
  border-bottom: 1px solid #888;
  font-weight: 700;
  font-size: 5vw;
  letter-spacing: 0;
  line-height: 1.5;
}

.ttl-h3 {

  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.5;
    padding-bottom: 10px;
}
@media only screen and (min-width: 768px) {
  .ttl-style-3 {
    padding-bottom: 20px;
    font-size: 30px;
    line-height: 36px;
  }
    
    .ttl-h3 {

  
  font-size: 20px;
padding-bottom: 10px;
}
}
/*=============================================
 * button-style
 *=============================================*/
.btn-style-1 {
  text-align: center;
}
.btn-style-1 a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 14px;
  color: #333 !important;
}
.btn-style-1 a::before {
  content: '';
  width: 44px;
  height: 6px;
  display: inline-block;
  margin-right: 10px;
  background: url("../img/shared/arrow_prev.png") 0 0/contain no-repeat;
}
@media only screen and (min-width: 768px) {
  .btn-style-1 a {
    font-size: 15px;
  }
  .btn-style-1 a:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}
.btn-style-2 {
  text-align: center;
}
.btn-style-2 a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 20px;
  background-image: linear-gradient(to right, #12b294, #3eb4d3);
  border-radius: 5px;
  font-weight: 700;
  text-decoration: none !important;
  color: #fff !important;
}
.btn-style-2 a::after {
  content: '';
  width: 44px;
  height: 6px;
  display: inline-block;
  margin-left: 10px;
  background: url("../img/shared/arrow_next.png") no-repeat;
  filter: brightness(100);
}
@media only screen and (min-width: 768px) {
  .btn-style-2 a {
    font-size: 20px;
  }
  .btn-style-2 a:hover {
    opacity: 0.7;
  }
}
.btn-style-2.btn-prev a:after {
  display: none;
}
.btn-style-2.btn-prev a::before {
  background: url("../img/shared/arrow_prev.png") no-repeat;
  content: '';
  width: 44px;
  height: 6px;
  display: inline-block;
  margin-right: 10px;
  filter: brightness(100);
}
.btn-back {
  margin-top: 80px;
}
@media only screen and (min-width: 768px) {
  .btn-back {
    margin-top: 80px;
  }
}
/*=============================================
 * table style
 *=============================================*/
.table-style-1 {
  width: 100%;
  margin-bottom: 30px;
  border-collapse: collapse;
  line-height: 20px;
}
.table-style-1 tbody th, .table-style-1 tbody td {
  box-sizing: border-box;
  border-top: 1px solid #cbcbcb;
  border-bottom: 1px solid #cbcbcb;
}
.table-style-1 tbody th {
  width: 140px;
  padding: 13px;
  text-align: center;
}
.table-style-1 tbody td {
  padding: 13px 20px;
  border-left: 1px solid #cbcbcb;
}
.table-style-1 tbody tr:nth-child(even) {
  background: #f7f6f7;
}
@media only screen and (min-width: 768px) {
  .table-style-1 tbody th {
    width: 210px;
  }
}

.table-style-2 {
  width: 100%;
  margin-bottom: 30px;
  border-collapse: collapse;
  border-left: 1px solid #cbcbcb;
  border-right: 1px solid #cbcbcb;
}
.table-style-2 tbody th, .table-style-2 tbody td {
  box-sizing: border-box;
  border-top: 1px solid #cbcbcb;
  border-bottom: 1px solid #cbcbcb;
}
.table-style-2 tbody th {
  width: 105px;
  padding: 10px 5px;
  text-align: right;
  background: #f1f6fa;
}
.table-style-2 tbody td {
  padding: 10px 5px;
  border-left: 1px solid #cbcbcb;
}
@media only screen and (min-width: 768px) {
  .table-style-2 tbody th {
    width: 180px;
    padding: 10px;
  }
  .table-style-2 tbody td{
    padding: 10px 20px;
  }
}
.table-style-3{
  border: 1px solid #cbcbcb;
  text-align: center;
  width: 100%;
}
.table-style-3 th{
  background: #f1f6fa;
  font-weight: 500;
}
.table-style-3 th,
.table-style-3 td{
  padding: 10px 5px;
  vertical-align: middle;
}
.table-style-3 thead th+th{
  border-left: 1px solid #cbcbcb;
}
.table-style-3 tr{
  border-top: 1px solid #cbcbcb;
}
.table-style-3 td{
  border-left: 1px solid #cbcbcb;
}
@media only screen and (min-width: 768px){
  .table-style-3 th,
  .table-style-3 td{
    padding: 21px 10px;
  }
}

.table-style-4{
  border: 1px solid #cbcbcb;
  text-align: center;
  width: 100%;
}
.table-style-4 th{
  font-weight: 500;
}
.table-style-4 th,
.table-style-4 td{
  padding: 10px 5px;
  vertical-align: middle;
}
.table-style-4 thead th+th{
  border-left: 1px solid #cbcbcb;
}
.table-style-4 tr{
  border-top: 1px solid #cbcbcb;
}
.table-style-4 td{
  border-left: 1px solid #cbcbcb;
}
.table-style-4 thead th:nth-child(2){
  background: #fcfadf;
}
.table-style-4 thead th:nth-child(3){
  background: #ebebea;
}
.table-style-4 tbody th{
  background: #f1f6fa;
  white-space: nowrap;
}
.table-style-4 tbody td{
  text-align: left;
}
.table-style-4 .vat{
  vertical-align: top;
}
@media only screen and (min-width: 768px){
  .table-style-4 th,
  .table-style-4 td{
    padding: 21px 10px;
  }
}

.set-table .ttl {
  font-weight: 500;
  font-size: 17px;
  line-height: 1.5;
}
.color_red{
  color: #e50101;
}
@media only screen and (min-width: 768px) {
  .set-table .ttl {
    font-size: 18px;
    line-height: 24px;
  }
}
/*=============================================
 * sections
 *=============================================*/
section {
  padding-bottom: 80px;
}
@media only screen and (min-width: 768px) {
  section {
    padding-bottom: 100px;
  }
}
.section {
  padding: 20px 0;
}
.section *:last-child {
  margin-bottom: 0 !important;
}
.section b {
  font-weight: 700;
}
.section a {
  color: #0068b7;
}
.section p, .section .txt {
  margin-bottom: 30px;
}
.section p a, .section .txt a {
  text-decoration: underline;
  color: #000;
}
.section p a:hover, .section .txt a:hover {
  text-decoration: none;
}
.section dl.txt dt {
  font-weight: 700;
}
.section .img {
  margin-bottom: 30px;
  text-align: center;
}
.section .btn-link {
  margin-bottom: 30px;
}
.section .txtbox {
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) {
  .section {
    padding: 30px;
  }
}
@media only screen and (min-width: 1280px) {
  .section {
    padding: 30px 0;
  }
  .section .wrap {
    width: 1000px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 1120px){
  .br_not_ipad{
    display: none;
  }
}
#wpfront-scroll-top-container{
  display: none !important;
}


.box_hover a{
  width: 100%;
  display: table;
  border: 3px solid #d9e8f4;
  padding: 20px;
  position: relative;
  color: #000;
  transition: 0.3s all ease-in-out;
}
.box_hover a .box_img{
  width: 180px;
  display: table-cell;
  vertical-align: middle;
}
.box_hover a .box_img img{
  width: 100%;
  height: 126px;
  object-fit: cover;
  object-position: 50%;
}
.box_hover a .box_col{
  display: table-cell;
  vertical-align: middle;
  padding-left: 30px;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0;
}
.box_hover a .box_col small{
  display: block;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}
.box_hover a .box_col small.mb{
  margin-bottom: 15px !important;
}
.box_hover a .box_col small.mt{
  margin-top: 15px !important;
}
.box_hover a .box_col small.box_txt{
  margin-bottom: 0;
}
.box_hover a .box_col small.box_txt.mt15{
  margin-top: 15px;
}
.box_hover a .box_col q{
  display: block;
  margin-left: 100px;
}
.box_hover a .box_catch{
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 0;
  color: #5686ac;
  background: #d9e8f4;
  position: absolute;
  right: -3px;
  top: -3px;
  padding: 0 10px;
}
.box_hover a:hover{
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1), 0 12px 28px -12px rgba(0,0,0,0.05);
}
.box_hover a:hover img{
  opacity: 1 !important;
}
@media only screen and (max-width: 767px) {

  .box_hover a{
      padding: 40px 20px 20px;
      display: block;
  }
  .box_hover a .box_img{
      display: block;
      max-width: 180px;
      width: 100%;
      margin: 0 auto;
  }
  .box_hover a .box_col{
      display: block;
      padding: 20px 0 0;
  }
}



.np-news__banner{
  margin: 0px 0 46px;
  display: flex !important;
  align-items: center;
  background: #fff;
  border: 3px solid #b0d4e5;
}
.np-news__banner .img{
  width: 275px;
  order: 2;
  position: relative;
}
.np-news__banner .img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}
.np-news__banner .col{
  width: calc(100% - 275px);
  text-align: center;
  padding: 10px;
  order: 1;
}
.np-news__banner .col .ttl{
  font-size: 21px;
  line-height: 26px;
  font-weight: bold;
  letter-spacing: 0;
  margin-bottom: 10px;
}
.np-news__banner .col .ttl small{
  display: block;
  font-size: 18px;
  color: #0068b7;
}
.np-news__banner .col .btn{
  max-width: 324px;
  width: 100%;
  margin: 0 auto;
}
.np-news__banner .col .btn a{
  display: block;
  background: #89c0e0;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 25px;
  padding: 5px 5px 5px 0;
  border-radius: 30px;
  position: relative;
}
.np-news__banner .col .btn a:before{
  content: '';
  background-image: url('../img/article/icon_arrow.png');
  background-repeat: no-repeat;
  background-size: 56px;
  background-position: right center;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 25px;
  width: 56px;
}
.np-news__banner .col .btn a:hover{
  text-decoration: none;
  opacity: 0.8;
}
.np-news__banner.sp{
  display: none !important;
}
@media screen and (min-width: 768px) and (max-width: 980px){
  .article #sec2 .set1 .box-style-1 .txtbox{
    padding-left: 0;
  }
  .article #sec2 .set1 .box-style-1 .ttl{
    font-size: 27px;
  }
  .article #sec2 .set1 .box-style-1 .btn-link{
    margin-top: 0;
  }
}
@media screen and (max-width: 767px){
  .np-news__banner.pc{
    display: none !important;
  }
  .np-news__banner.sp{
    display: block !important;
    border: none;
  }
  /* .np-news__banner .col{
    width: 100%;
    padding: 20px;
  }
  .np-news__banner .img{
    width: 100%;
  }
  .np-news__banner .col .btn a:before{
    right: 13px;
    width: 35px;
  } */
}
.link_nounderline{
  text-decoration: none !important;
}
.link_nounderline:hover{
  text-decoration: underline !important;
}

.btn-click a{
  display: block;
  background: #0068b7;
  color: #fff !important;
  text-align: center;
  font-size: 20px;
  line-height: 35px;
  font-weight: 700;
  letter-spacing: 0.025em;
  padding: 20px 80px;
  border-radius: 15px;
  position: relative;
  text-decoration: none !important;
  transition: 0.3s all ease;
}
.btn-click a:after{
  content: '';
  width: 44px;
  background-image: url('../img/shared/icon_click.png');
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center bottom;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 33px;
}
.btn-click a:hover{
  opacity: 0.8;
}
@media screen and (max-width: 767px){
  .btn-click a{
    font-size: 16px;
    line-height: 28px;
    padding: 12px 50px;
    border-radius: 10px;
  }
  .btn-click a:after{
    width: 29px;
    right: 10px;
  }
  .btn-click a:hover{
    opacity: 1;
  }
}