/* =================================
layout
================================= */
/* header */
.l-header {
  position: relative;
}

.l-header-in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1153px;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  .l-header-in {
    display: block;
    padding: 0 10px;
  }
}

.l-header-wrap {
  padding: 33px 0 0;
}

@media only screen and (max-width: 768px) {
  .l-header-wrap {
    max-width: 233px;
    padding: 13px 0;
  }
}

.l-header-wrap.lower {
  padding-bottom: 30px;
}

@media only screen and (max-width: 768px) {
  .l-header-wrap.lower {
    padding-bottom: 10px;
  }
}

.l-header_read {
  margin-bottom: 20px;
  font-size: 1.2rem;
  text-align: center;
  line-height: 1;
}

@media only screen and (max-width: 768px) {
  .l-header_read {
    margin-bottom: 13px;
    font-size: 1.1rem;
  }
}

.l-header_logo {
  max-width: 261px;
}

@media only screen and (max-width: 768px) {
  .l-header_logo {
    max-width: 233px;
  }
}

.l-header_logo img {
  width: 100%;
}

.l-header_nav {
  margin: 0 94.5px 0 auto;
}

@media only screen and (max-width: 768px) {
  .l-header_nav {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: -999;
    width: 100%;
    height: calc(100vh - 76px);
    margin: 0;
    padding: 0 25px;
    background: rgba(0, 0, 0, 0.9);
    opacity: 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
  }
}

@media only screen and (max-width: 768px) {
  .l-header_nav.active {
    z-index: 999;
    opacity: 1;
  }
}

.l-header_nav-anchor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 768px) {
  .l-header_nav-anchor {
    display: block;
  }
}

.l-header_nav-anchor li {
  position: relative;
  top: 20px;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  opacity: 0;
  -webkit-transition: all .3s .5s ease-out;
  -o-transition: all .3s .5s ease-out;
  transition: all .3s .5s ease-out;
}

@media only screen and (max-width: 768px) {
  .l-header_nav-anchor li {
    border-bottom: 1px solid #fff;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    opacity: 1;
  }
}

.l-header_nav-anchor li.animated {
  top: 0;
  opacity: 1;
}

.l-header_nav-anchor li.animated:after {
  top: -3px;
}

.l-header_nav-anchor li + li {
  margin-left: 14px;
}

@media only screen and (max-width: 768px) {
  .l-header_nav-anchor li + li {
    margin-left: 0;
  }
}

.l-header_nav-anchor li > a {
  display: block;
  position: relative;
  padding-top: 75px;
  color: #000;
  font-weight: bold;
}

@media only screen and (max-width: 768px) {
  .l-header_nav-anchor li > a {
    padding: 13px 0;
    color: #fff;
    font-size: 1.6rem;
  }
}

.l-header_nav-anchor li > a:before, .l-header_nav-anchor li > a:after {
  display: block;
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #058cd9;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

@media only screen and (max-width: 768px) {
  .l-header_nav-anchor li > a:before, .l-header_nav-anchor li > a:after {
    display: none;
  }
}

.l-header_nav-anchor li > a:before {
  top: 0;
  width: 1px;
  height: 0;
}

.l-header_nav-anchor li > a:after {
  top: -23px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
}

.l-header_nav-anchor li > a:hover {
  color: #058cd9;
  text-decoration: none;
}

.l-header_nav-anchor li > a:hover:before {
  height: 48px;
}

.l-header_nav-anchor li > a:hover:after {
  top: 47px;
}

.l-header .btn-forrow {
  position: fixed;
  top: 68.765%;
  right: 0;
  z-index: 100;
  -webkit-transition: all .7s;
  -o-transition: all .7s;
  transition: all .7s;
}

@media only screen and (max-width: 768px) {
  .l-header .btn-forrow {
    width: 45px;
  }
}

.l-header .btn-forrow > a {
  display: block;
  padding: 27px 17.5px;
  background: -webkit-gradient(linear, right top, left top, from(#0297e2), to(#4fd5ff));
  background: -webkit-linear-gradient(right, #0297e2, #4fd5ff);
  background: -o-linear-gradient(right, #0297e2, #4fd5ff);
  background: linear-gradient(to left, #0297e2, #4fd5ff);
  border-radius: 6px 0 0 6px;
  color: #fff;
  font-weight: bold;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

@media only screen and (max-width: 768px) {
  .l-header .btn-forrow > a {
    padding: 20px 13.5px;
    font-size: 1.2rem;
  }
}

.l-header .btn-forrow > a:hover {
  background: -webkit-gradient(linear, right top, left top, from(#83ccf1), to(#a8eaff));
  background: -webkit-linear-gradient(right, #83ccf1, #a8eaff);
  background: -o-linear-gradient(right, #83ccf1, #a8eaff);
  background: linear-gradient(to left, #83ccf1, #a8eaff);
  text-decoration: none;
}

.l-header .btn-forrow.hide {
  right: -60px;
  opacity: 0;
}

/* sp menu */
.btn-spMenu {
  display: none;
}

@media only screen and (max-width: 768px) {
  .btn-spMenu {
    display: block;
    position: absolute;
    top: 15px;
    right: 10px;
    width: 35px;
    height: 33px;
  }
}

@media only screen and (max-width: 768px) {
  .btn-spMenu span {
    position: absolute;
    right: 0;
    width: 100%;
    height: 3px;
    background-color: #c4c4c4;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
  }
}

@media only screen and (max-width: 768px) {
  .btn-spMenu span:nth-child(1) {
    top: 6px;
  }
}

@media only screen and (max-width: 768px) {
  .btn-spMenu span:nth-child(2) {
    top: 15px;
  }
}

@media only screen and (max-width: 768px) {
  .btn-spMenu span:nth-child(3) {
    bottom: 6px;
  }
}

@media only screen and (max-width: 768px) {
  .btn-spMenu.active span:nth-child(1) {
    -webkit-transform: translateY(9px) rotate(-45deg);
    -ms-transform: translateY(9px) rotate(-45deg);
    transform: translateY(9px) rotate(-45deg);
  }
}

@media only screen and (max-width: 768px) {
  .btn-spMenu.active span:nth-child(2) {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  .btn-spMenu.active span:nth-child(3) {
    -webkit-transform: translateY(-9px) rotate(45deg);
    -ms-transform: translateY(-9px) rotate(45deg);
    transform: translateY(-9px) rotate(45deg);
  }
}

/* footer */
.l-footer {
  position: relative;
  padding: 0 0 25px;
}

@media only screen and (max-width: 768px) {
  .l-footer {
    padding-bottom: 20px;
  }
}

.l-footer-in {
  max-width: 1153px;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  .l-footer-in {
    padding: 0 10px;
  }
}

.l-footer_contact {
  padding: 86px 0 74px;
  background: #f4f4f4;
}

@media only screen and (max-width: 768px) {
  .l-footer_contact {
    padding: 10px;
  }
}

.l-footer_contact address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  max-width: 756px;
  margin: 0 auto;
  padding: 77px 63px;
  background: #fff;
}

@media only screen and (max-width: 768px) {
  .l-footer_contact address {
    display: block;
    padding: 34px 15px;
  }
}

.l-footer_contact address dl {
  max-width: 234px;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .l-footer_contact address dl {
    max-width: none;
  }
}

.l-footer_contact address dt {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
}

@media only screen and (max-width: 768px) {
  .l-footer_contact address dt {
    font-size: 2.25rem;
  }
}

.l-footer_contact address dt small {
  display: block;
  margin-top: 5px;
  font-size: 1.4rem;
  font-weight: normal;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .l-footer_contact address dt small {
    font-size: 1rem;
  }
}

.l-footer_contact address dd {
  margin-top: 30px;
  font-size: 1.4rem;
  line-height: 1.7;
}

@media only screen and (max-width: 768px) {
  .l-footer_contact address dd {
    margin-top: 12px;
    font-size: 1.2rem;
  }
}

.l-footer_contact address .contact-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  max-width: 333px;
}

@media only screen and (max-width: 768px) {
  .l-footer_contact address .contact-wrap {
    max-width: none;
    margin-top: 20px;
  }
}

.l-footer_contact address .contact-in {
  width: 100%;
}

.l-footer_contact address .contact-tel strong, .l-footer_contact address .contact-tel small {
  display: block;
  text-align: center;
}

.l-footer_contact address .contact-tel strong {
  font-size: 3rem;
  font-weight: bold;
}

@media only screen and (max-width: 768px) {
  .l-footer_contact address .contact-tel strong {
    font-size: 2.25rem;
  }
}

.l-footer_contact address .contact-tel small {
  font-size: 1.4rem;
}

@media only screen and (max-width: 768px) {
  .l-footer_contact address .contact-tel small {
    font-size: 1rem;
  }
}

@media only screen and (max-width: 768px) {
  .l-footer_contact address .contact-tel a {
    color: #000;
  }
}

.l-footer_contact address .contact-btn {
  margin-top: 25px;
}

@media only screen and (max-width: 768px) {
  .l-footer_contact address .contact-btn {
    margin-top: 15px;
  }
}

.l-footer_contact address .contact-btn > a {
  display: block;
  padding: 16px 10px;
  background: -webkit-gradient(linear, right top, left top, from(#0297e2), to(#4fd5ff));
  background: -webkit-linear-gradient(right, #0297e2, #4fd5ff);
  background: -o-linear-gradient(right, #0297e2, #4fd5ff);
  background: linear-gradient(to left, #0297e2, #4fd5ff);
  border-radius: 6px;
  color: #fff;
  font-weight: bold;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .l-footer_contact address .contact-btn > a {
    padding: 8px;
    font-size: 1.6rem;
  }
}

.l-footer_contact address .contact-btn > a:hover {
  background: -webkit-gradient(linear, right top, left top, from(#83ccf1), to(#a8eaff));
  background: -webkit-linear-gradient(right, #83ccf1, #a8eaff);
  background: -o-linear-gradient(right, #83ccf1, #a8eaff);
  background: linear-gradient(to left, #83ccf1, #a8eaff);
  text-decoration: none;
}

.l-footer_nav {
  background: #00519b;
}

.l-footer_nav-list {
  display: table;
  margin: 0 auto;
  padding: 13px 0;
}

@media only screen and (max-width: 768px) {
  .l-footer_nav-list {
    padding: 19px 0;
  }
}

.l-footer_nav-list > li {
  display: table-cell;
  padding: 0 1em;
  font-size: 1.4rem;
  line-height: 1;
}

@media only screen and (max-width: 768px) {
  .l-footer_nav-list > li {
    font-size: 1.2rem;
  }
}

.l-footer_nav-list > li + li {
  border-left: 1px solid #fff;
}

.l-footer_nav-list > li > a {
  color: #fff;
}

.l-footer_copy .company-address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 25px 0;
}

@media only screen and (max-width: 768px) {
  .l-footer_copy .company-address {
    display: block;
    padding: 20px 0;
  }
}

.l-footer_copy .company-address dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 768px) {
  .l-footer_copy .company-address dl {
    display: block;
  }
}

.l-footer_copy .company-address dl + dl {
  margin-left: 55px;
}

@media only screen and (max-width: 768px) {
  .l-footer_copy .company-address dl + dl {
    margin: 20px 0 0;
  }
}

.l-footer_copy .company-address dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 11px;
  border: 1px solid #000;
  text-align: center;
  line-height: 1.43;
}

@media only screen and (max-width: 768px) {
  .l-footer_copy .company-address dt {
    display: block;
    padding: 6px 0 5px;
    font-size: 1.2rem;
  }
}

@media only screen and (max-width: 768px) {
  .l-footer_copy .company-address dt br {
    display: none;
  }
}

.l-footer_copy .company-address dd {
  margin: -4px 0 -4px 11px;
  line-height: 1.5;
}

@media only screen and (max-width: 768px) {
  .l-footer_copy .company-address dd {
    margin: 10px 0;
    font-size: 1.2rem;
  }
}

.l-footer_copy .company-address dd strong {
  font-weight: bold;
}

@media only screen and (max-width: 768px) {
  .l-footer_copy .company-address dd a {
    color: #000;
  }
}

.l-footer_copy-text {
  font-size: 1rem;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .l-footer_copy-text {
    margin: 0 -10px;
    padding-top: 10px;
    border-top: 1px solid #d6d6d6;
  }
}

/* common */
.l-inner {
  max-width: 1153px;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  .l-inner {
    padding: 0 10px;
  }
}

.l-pagetop {
  position: fixed;
  bottom: -45px;
  right: 65px;
  opacity: 0;
  -webkit-transition: all .7s;
  -o-transition: all .7s;
  transition: all .7s;
}

@media only screen and (max-width: 768px) {
  .l-pagetop {
    right: 10px;
  }
}

.l-pagetop.active {
  bottom: 10px;
  opacity: 1;
}

.l-pagetop.active.stop {
  position: absolute;
  top: -22.5px;
}

@media only screen and (max-width: 768px) {
  .l-pagetop.active.stop {
    position: fixed;
    top: auto;
    bottom: 10px;
  }
}

.l-pagetop > a {
  display: block;
  position: relative;
  width: 45px;
  height: 45px;
  background: #76c900;
  border-radius: 50%;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
  text-indent: -9999px;
}

@media only screen and (max-width: 768px) {
  .l-pagetop > a {
    width: 30px;
    height: 30px;
  }
}

.l-pagetop > a:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 21px;
  height: 14px;
  background: url(../images/common/icon_pagetop.png) no-repeat 0 0;
  background-size: contain;
}

@media only screen and (max-width: 768px) {
  .l-pagetop > a:before {
    width: 13px;
    height: 7px;
  }
}
