@charset "UTF-8";
/* ==================================================
	basic settings
================================================== */
/* ==================================================
	only
================================================== */
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .only_pc {
    display: none;
  }
}
/* ========== end △ */

/* ▽ PC-TAB layout ========== */
@media print, screen and (min-width: 768px) {
  .only_sp {
    display: none;
  }
}
/* ========== end △ */

/* ==================================================
	btn
================================================== */
.btn_style a {
  display: inline-block;
  line-height: 60px;
  background: url(../common_img/ico_arrow.png) left center no-repeat;
  background-size: 60px auto;
  padding-left: 80px;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .btn_style a {
    line-height: 40px;
    background-size: 40px auto;
    padding-left: 50px;
  }
}
/* ========== end △ */
/* ▽ PC-TAB layout ========== */
@media print, screen and (min-width: 768px) {
  .btn_style a:hover {
    color: #489FE3;
    margin-left: 10px;
  }
}
/* ========== end △ */
.btn_style.min a {
  line-height: 40px;
  background-size: 40px auto;
  padding-left: 50px;
}
.btn_style.min a:hover {
  margin-left: 0;
}

/* ==================================================
	breadcrumb
================================================== */
.breadcrumb {
  margin-right: calc(2.5vw + 72px);
  margin-bottom: 100px;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .breadcrumb {
    display: none;
  }
}
/* ========== end △ */
.breadcrumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.breadcrumb li {
  font-size: 1.4rem;
}
.breadcrumb li + li {
  margin-left: 10px;
  padding-left: 60px;
  position: relative;
}
.breadcrumb li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 50px;
  height: 1px;
  background: #181818;
}
.breadcrumb li a {
  color: #808080;
}

/* ==================================================
	breadcrumb
================================================== */
.anchorlink {
  margin-bottom: 100px;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .anchorlink {
    margin-bottom: 13.33vw;
  }
}
/* ========== end △ */
/* ▽ PC-TAB layout ========== */
@media print, screen and (min-width: 768px) {
  .anchorlink ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
/* ========== end △ */
.anchorlink li {
  position: relative;
  padding-left: 80px;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .anchorlink li {
    padding-left: 13.33vw;
  }
}
/* ========== end △ */
/* ▽ PC-TAB layout ========== */
@media print, screen and (min-width: 768px) {
  .anchorlink li + li {
    margin-left: 30px;
  }
}
/* ========== end △ */
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .anchorlink li {
    margin-top: 7.998vw;
  }
}
/* ========== end △ */
.anchorlink li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: -15px;
  width: 60px;
  height: 60px;
  background: url(../common_img/ico_arrow.png) left center no-repeat;
  background-size: 60px auto;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .anchorlink li a::before {
    background-size: 40px auto;
    top: -8px;
    width: 40px;
    height: 40px;
  }
}
/* ========== end △ */
/* ▽ PC-TAB layout ========== */
@media print, screen and (min-width: 768px) {
  .anchorlink li:hover {
    color: #489FE3;
  }
}
/* ========== end △ */

/* ==================================================
	preparation
================================================== */
.preparation {
  padding: 250px 0 500px;
  text-align: center;
}