@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap");
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}
@media (max-width: 767.9px) {
  .header {
    height: 60px;
  }
}
.header__in {
  width: 1280px;
  margin: 0 auto;
}
@media (max-width: 767.9px) {
  .header__in {
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
  }
}
.header__global {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 110px;
}
@media (max-width: 767.9px) {
  .header__global {
    height: 35px;
  }
}
.header__logo {
  width: 322px;
}
@media (max-width: 767.9px) {
  .header__logo {
    width: 183px;
    height: auto;
  }
}

.logo-small {
  display: none;
}

.header.hscroll {
  background: rgba(255, 255, 255, 0.85);
}
@media (min-width: 768px) {
  .header.hscroll .logo-main {
    display: none;
  }
  .header.hscroll .logo-small {
    display: block;
  }
  .header.hscroll .header__logo {
    width: 50px;
    height: 44px;
    border-right: solid 1px #c2c7cb;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header.hscroll .header__global {
    height: 44px;
    justify-content: flex-start;
  }
  .header.hscroll .gn-main {
    margin: 0;
  }
  .header.hscroll .gn-aside {
    display: none;
  }
  .header.hscroll .gn-main__link {
    font-size: 1.5rem;
    line-height: 44px;
    padding: 0;
    border-right: solid 1px #c2c7cb;
    width: 140px;
    text-align: center;
  }
  .header.hscroll .gn-sub {
    top: 44px;
  }
  .header.hscroll .gn-main__item--recruit .gn-sub .gn-sub__header {
    display: none;
  }
  .header.hscroll .gn-main__item--recruit .gn-sub .gn-sub__in {
    padding: 0;
  }
  .header.hscroll .gn-main__item--recruit .gn-sub .gn-sub-list {
    display: flex;
    padding: 15px 0;
  }
  .header.hscroll .gn-main__item--recruit .gn-sub .gn-sub-list__item {
    font-size: 1.3rem;
    line-height: 1;
    padding: 0 20px;
    font-weight: 500;
    color: #6586a0;
  }
  .header.hscroll .gn-main__item--recruit .gn-sub .gn-sub-list__item:not(:last-child) {
    border-right: solid 1px #6586a0;
  }
  .header.hscroll .gn-main__item--recruit .gn-sub .gn-sub-list__item a {
    color: #6586a0;
  }
  .header.hscroll .gn-main__item--recruit .gn-sub .gn-sub-list__item a:hover {
    color: #fff;
    opacity: 1;
  }
  .header.hscroll .gn-main__item--recruit .gn-sub .gn-sub__close {
    display: none;
  }
  .header.hscroll .gn-main__item:hover .gn-main__link {
    color: #fff;
    background-color: #093a60;
  }
}

.gn-aside {
  display: flex;
  align-items: center;
}
@media (max-width: 767.9px) {
  .gn-aside {
    display: block;
  }
}
.gn-aside__search {
  background: #fff;
  width: 250px;
  height: 50px;
  overflow: hidden;
  border: 1px solid #0c8ee9;
  box-sizing: border-box;
  margin-left: 20px;
  position: relative;
}
@media (max-width: 767.9px) {
  .gn-aside__search {
    width: auto;
    margin: 35px 0 0;
    height: auto;
  }
}
.gn-aside__search::before {
  content: "";
  width: 1px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: 45px;
  background: #0c8ee9;
  transform: translateY(-50%);
}
.gn-aside__search input[type=text] {
  font-size: 1.5rem;
  color: #111;
  background: #fff;
  width: calc(100% - 45px);
  height: 48px;
  margin-left: 10px;
  padding: 5px 10px;
  border: none;
  box-sizing: border-box;
}
@media (max-width: 767.9px) {
  .gn-aside__search input[type=text] {
    font-size: 1.4rem;
    width: calc(100% - 50px);
    margin-left: 13px;
    height: 44px;
  }
}
.gn-aside__search input[type=image] {
  width: 22px;
  height: 22px;
  margin: 13px 0 0 13px;
  float: left;
}
@media (max-width: 767.9px) {
  .gn-aside__search input[type=image] {
    margin: 11px 0 0 10px;
  }
}
@media (min-width: 768px) {
  .gn-aside__contact {
    font-size: 1.7rem;
    font-weight: 500;
    line-height: 48px;
    text-align: center;
    color: #fff;
    width: 160px;
    height: 50px;
    display: block;
    background: #0c8ee9;
    margin-left: 10px;
    box-sizing: border-box;
    border-radius: 99px;
  }
}
@media (max-width: 767.9px) {
  .gn-aside__contact {
    font-size: 1.4rem;
    height: 55px;
    line-height: 55px;
    padding-left: 5px;
    display: block;
    background-size: 12px auto;
    color: #fff;
    border-bottom: solid 1px #c8ced3;
  }
}
@media (min-width: 768px) {
  .gn-aside__contact:hover {
    background: #093a60;
  }
}

@media (min-width: 768px) {
  .gn {
    display: flex;
  }
}
@media (max-width: 767.9px) {
  .gn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 62px 15px;
    box-sizing: border-box;
    color: #fff;
    background: #093a60;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    max-height: 100vh;
    overflow: scroll;
  }
  .gn.open {
    opacity: 1;
    visibility: visible;
  }
}

@media (min-width: 768px) {
  .gn-main {
    margin: 30px auto 0;
    display: flex;
    justify-content: space-between;
  }
  .gn-main__item {
    display: block;
  }
  .gn-main__item:hover .gn-main__link {
    color: #0c8ee9;
  }
  .gn-main__link {
    font-size: 1.7rem;
    line-height: 50px;
    font-weight: 500;
    white-space: nowrap;
    padding: 0 20px 30px;
    color: #111111;
    display: block;
  }
  .gn-main__link.current {
    color: #0c8ee9;
  }
}
@media (max-width: 767.9px) {
  .gn-main {
    border-bottom: solid 1px #c8ced3;
  }
  .gn-main__item {
    position: relative;
    border-top: solid 1px #c8ced3;
  }
  .gn-main__link {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 500;
    height: 55px;
    line-height: 55px;
    padding-left: 5px;
    display: block;
    background-size: 12px auto;
  }
}

@media (min-width: 768px) {
  .gn-sub {
    opacity: 0;
    visibility: hidden;
    width: 100%;
    color: #fff;
    background: #093a60;
    position: absolute;
    left: 0;
    top: 110px;
    z-index: 9999;
    transition: opacity 0.3s, visibility 0.3s;
    box-sizing: border-box;
  }
}
@media (max-width: 767.9px) {
  .gn-sub {
    display: none;
  }
}
@media (min-width: 768px) {
  .gn-sub.active {
    opacity: 1;
    visibility: visible;
  }
}
.gn-sub a {
  color: #fff;
}
@media (min-width: 768px) {
  .gn-sub a:hover {
    opacity: 0.7;
  }
}
@media (min-width: 768px) {
  .gn-sub__in {
    width: 1280px;
    margin: 0 auto;
    padding: 50px 0;
    text-align: left;
    display: flex;
    position: relative;
  }
}
.gn-sub__close {
  width: 50px;
  height: 50px;
  right: 0;
  top: -25px;
  position: absolute;
  display: block;
  border-radius: 25px;
  background: #0c8ee9;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}
.gn-sub__close::before, .gn-sub__close::after {
  content: "";
  width: 24px;
  height: 2px;
  background: #fff;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
}
.gn-sub__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.gn-sub__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media (max-width: 767.9px) {
  .gn-sub__close {
    display: none;
  }
}
.gn-sub__header {
  margin-right: 60px;
  padding: 30px 5px;
  border-top: solid 1px #386586;
}
@media (max-width: 767.9px) {
  .gn-sub__header {
    display: none;
  }
}
.gn-sub__header a {
  display: block;
  position: relative;
}
.gn-sub__header a::before, .gn-sub__header a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.gn-sub__header a::before {
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background: #4eb6ff;
  right: 15px;
}
.gn-sub__header a::after {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: #fff;
  right: 22px;
}
@media (min-width: 768px) {
  .gn-sub__header a:hover {
    opacity: 1;
  }
}
@media (min-width: 768px) {
  .gn-sub__header a:hover::before {
    background: #fff;
  }
}
@media (min-width: 768px) {
  .gn-sub__header a:hover::after {
    width: 0;
    height: 0;
    border-radius: 0;
    border-style: solid;
    border-width: 4px 0 4px 8px;
    border-color: transparent transparent transparent #4eb6ff;
    right: 20px;
  }
}
.gn-sub__title {
  font-size: 2.8rem;
  font-family: aktiv-grotesk-extended, sans-serif;
}
.gn-sub__title-sub {
  font-size: 1.6rem;
  margin-top: 10px;
}
.gn-sub__img {
  width: 270px;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .gn-sub__list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
  }
}
.gn-sub__item {
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 2.14;
  width: 280px;
  margin: 0 0 30px 0;
  padding-top: 20px;
  text-indent: 5px;
  border-top: solid 1px #386586;
}
@media (max-width: 767.9px) {
  .gn-sub__item {
    font-size: 1.3rem;
    line-height: 1;
    font-weight: 500;
    color: #fff;
    width: 100%;
    text-indent: 10px;
    margin: 0;
    padding: 10px 0 0 0;
    border: none;
    background: #1a507a;
  }
}

@media (max-width: 767.9px) {
  .gn-sub-list {
    font-size: 1.2rem;
    line-height: 2.14;
    font-weight: 400;
    line-height: 2.14;
    margin: 0 0 20px 5px;
  }
}
@media (min-width: 768px) {
  .gn-sub-list__item {
    font-size: 1.7rem;
    line-height: 2;
    color: #b9c0c9;
  }
}
.gn-sub-list a {
  color: #b9c0c9;
}
@media (max-width: 767.9px) {
  .gn-sub-list a {
    color: #fff;
  }
}
.gn-sub-list span {
  font-size: 1.2rem;
  margin-left: 10px;
}

.gn-child {
  font-size: 1.5rem;
  line-height: 2.14;
  color: #b9c0c9;
  border-top: solid 1px #386586;
  margin-top: 20px;
  padding-top: 20px;
}
@media (max-width: 767.9px) {
  .gn-child {
    font-size: 1.2rem;
    border-top: none;
    font-weight: 400;
    line-height: 2.14;
    margin: 10px 0 20px;
    padding-top: 10px;
    background: #093a60;
  }
}
.gn-child a {
  color: #b9c0c9;
}
@media (max-width: 767.9px) {
  .gn-child a {
    color: #fff;
  }
}

@media (min-width: 768px) {
  .gn-company .gn-sub__list:first-of-type {
    width: 166px;
  }
  .gn-company .gn-sub__list:nth-of-type(2) {
    width: 250px;
  }
  .gn-company .gn-sub__item {
    margin-bottom: 10px;
  }
}

.drawer {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 999;
  width: 35px;
  height: 35px;
  border-radius: 99px;
  background: #fff;
}
.drawer::before, .drawer::after {
  content: "";
  height: 2px;
  display: block;
  background: #0c8ee9;
  position: absolute;
  left: 8px;
}
.drawer::before {
  width: 19px;
  top: 14px;
}
.drawer::after {
  width: 11px;
  top: 20px;
}
.drawer.open {
  background: #0c8ee9;
}
.drawer.open::before, .drawer.open::after {
  background: #fff;
  height: 22px;
  width: 2px;
  top: 50%;
  left: 50%;
}
.drawer.open::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.drawer.open::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.nav-icon {
  position: absolute;
  right: 0;
  top: 0;
  width: 55px;
  height: 55px;
  background: url("/assets/images/common/i_close.png") center right no-repeat;
  background-size: 15px auto;
}
.nav-icon.open {
  background: url("/assets/images/common/i_open.png") center right no-repeat;
  background-size: 15px auto;
}

@media (max-width: 767.9px) {
  .menu-link-mark-sp {
    position: relative;
    display: block;
  }
  .menu-link-mark-sp::before, .menu-link-mark-sp::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .menu-link-mark-sp::before {
    width: 15px;
    height: 15px;
    border-radius: 10px;
    background: #4eb6ff;
    right: 0;
  }
  .menu-link-mark-sp::after {
    width: 5px;
    height: 5px;
    border-radius: 3px;
    background: #fff;
    right: 5px;
  }
}

.header-contact-sp {
  font-size: 1rem;
  font-weight: 500;
  line-height: 35px;
  text-align: center;
  color: #fff;
  width: 100px;
  display: block;
  background: #0c8ee9;
  box-sizing: border-box;
  border-radius: 99px;
  position: absolute;
  top: 15px;
  right: 60px;
}

.recruit-nav {
  background: #093a60;
  color: #fff;
}
.recruit-nav__in {
  width: 1280px;
  height: 60px;
  margin: auto;
  display: flex;
  align-items: center;
}
.recruit-nav__title {
  font-size: 2.1rem;
  font-weight: bold;
}
.recruit-nav__title a {
  color: #fff;
}
.recruit-nav__title a:hover {
  opacity: 0.7;
}
.recruit-nav ul {
  display: flex;
  align-items: center;
}
.recruit-nav li {
  margin-left: 80px;
  color: #869eb1;
  font-weight: 500;
}
.recruit-nav li span {
  display: block;
  font-size: 1.2rem;
  margin-top: 5px;
  font-weight: normal;
}
.recruit-nav li a {
  color: #fff;
  font-size: 1.7rem;
  font-weight: 500;
  display: block;
}
.recruit-nav li a::before {
  content: "";
  width: 14px;
  height: 14px;
  box-sizing: border-box;
  border: solid 4px #0c8ee9;
  border-radius: 14px;
  display: inline-block;
  margin-right: 8px;
}
.recruit-nav li a:hover {
  opacity: 0.7;
}
.recruit-nav li:last-child a {
  line-height: 50px;
  padding: 0 20px 0 50px;
  background: #0c8ee9 url(/assets/images/recruit/nav-icon.png) 20px center no-repeat;
}
.recruit-nav li:last-child a::before {
  display: none;
}

@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media (max-width: 767.9px) {
  .pc {
    display: none !important;
  }
}
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-size: 1.6rem;
  line-height: 1;
  color: #111;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 767.9px) {
  body {
    font-size: 1.4rem;
  }
}

.wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 60px;
}
@media (min-width: 768px) {
  .wrapper {
    min-width: 1300px;
    padding-top: 110px;
  }
}
.wrapper::before {
  content: "";
  width: 100%;
  height: 600px;
  background: url(/assets/images/common/bg_pc.jpg) center 0 no-repeat;
  background-size: cover;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
@media (max-width: 767.9px) {
  .wrapper::before {
    height: 400px;
    background: url(/assets/images/common/bg_sp.jpg) center 0 no-repeat;
    background-size: cover;
  }
}

@media (min-width: 768px) {
  .wrapper--sbg::before {
    display: none;
  }
}
@media (max-width: 767.9px) {
  .wrapper--sbg::before {
    height: 200px;
    background: url(/assets/images/common/kv-sbg_sp.jpg);
    background-size: cover;
  }
}

@media (min-width: 768px) {
  .wrapper--sbg .kv {
    background: url(/assets/images/common/kv-sbg_pc.jpg);
    background-size: cover;
    max-width: 100%;
  }
}
@media (max-width: 767.9px) {
  .wrapper--sbg .kv {
    margin: 0;
    padding: 0;
    height: auto;
  }
}
.wrapper--sbg .kv .kv__in {
  height: 290px;
}
@media (max-width: 767.9px) {
  .wrapper--sbg .kv .kv__in {
    height: 140px;
  }
}

@media (min-width: 768px) {
  .wrapper--mbg::before {
    height: 400px;
  }
}
@media (max-width: 767.9px) {
  .wrapper--mbg::before {
    height: 200px;
    background: url(/assets/images/common/bg_sp.jpg);
    background-size: cover;
  }
}

@media (max-width: 767.9px) {
  .wrapper--mbg .kv {
    margin: 0;
    padding: 0;
    height: auto;
  }
}
.wrapper--mbg .kv .kv__in {
  height: 290px;
}
@media (max-width: 767.9px) {
  .wrapper--mbg .kv .kv__in {
    height: 140px;
  }
}

h1,
h2,
h3,
h4,
h5,
p {
  max-height: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

strong {
  font-weight: bold;
}

.spacer {
  clear: both;
  font-size: 0;
  line-height: 0;
}

.mgB0 {
  margin-bottom: 0 !important;
}

.pdB0 {
  padding-bottom: 0px !important;
}

.mgT0 {
  margin-top: 0px !important;
}

.mgT05 {
  margin-top: 5px !important;
}

.mgR05 {
  margin-right: 5px !important;
}

.mgB05 {
  margin-bottom: 5px !important;
}

.mgL05 {
  margin-left: 5px !important;
}

.pdT05 {
  padding-top: 5px !important;
}

.pdR05 {
  padding-right: 5px !important;
}

.pdB05 {
  padding-bottom: 5px !important;
}

.pdL05 {
  padding-left: 5px !important;
}

.mgT10 {
  margin-top: 10px !important;
}

.mgR10 {
  margin-right: 10px !important;
}

.mgB10 {
  margin-bottom: 10px !important;
}

.mgL10 {
  margin-left: 10px !important;
}

.pdT10 {
  padding-top: 10px !important;
}

.pdR10 {
  padding-right: 10px !important;
}

.pdB10 {
  padding-bottom: 10px !important;
}

.pdL10 {
  padding-left: 10px !important;
}

.mgT15 {
  margin-top: 15px !important;
}

.mgR15 {
  margin-right: 15px !important;
}

.mgB15 {
  margin-bottom: 15px !important;
}

.mgL15 {
  margin-left: 15px !important;
}

.mgT20 {
  margin-top: 20px !important;
}

@media (max-width: 767.9px) {
  .mgT20--sp {
    margin-top: 20px !important;
  }
}

.mgR20 {
  margin-right: 20px !important;
}

.mgB20 {
  margin-bottom: 20px !important;
}

.mgL20 {
  margin-left: 20px !important;
}

.mgT30 {
  margin-top: 30px !important;
}

.mgB30 {
  margin-bottom: 30px !important;
}

.mgB40 {
  margin-bottom: 40px !important;
}

.mgT40 {
  margin-top: 40px !important;
}

.mgT60 {
  margin-top: 60px !important;
}

.mgB60 {
  margin-bottom: 60px !important;
}

.pdT20 {
  padding-top: 20px !important;
}

.pdR20 {
  padding-right: 20px !important;
}

.pdB20 {
  padding-bottom: 20px !important;
}

.pdL20 {
  padding-left: 20px !important;
}

.pdT25 {
  padding-top: 25px !important;
}

.pdR25 {
  padding-right: 25px !important;
}

.pdB25 {
  padding-bottom: 25px !important;
}

.pdL25 {
  padding-left: 25px !important;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.clearfix {
  display: block;
}

.center {
  text-align: center;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: none;
  z-index: 98;
}
@media (max-width: 767.9px) {
  .back-to-top {
    right: 15px;
  }
}
.back-to-top__btn {
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #0c8ee9;
  border-radius: 99px;
  font-size: 1.2rem;
  font-family: aktiv-grotesk-extended, sans-serif;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}
@media (max-width: 767.9px) {
  .back-to-top__btn {
    width: 60px;
    height: 60px;
    font-size: 0.9rem;
  }
}
@media (min-width: 768px) {
  .back-to-top__btn:hover {
    background: #093a60;
  }
}
.back-to-top__btn::before {
  content: "";
  width: 13px;
  height: 13px;
  background: url(/assets/images/common/i_up.svg);
  background-size: cover;
  display: block;
  margin-bottom: 15px;
}
@media (max-width: 767.9px) {
  .back-to-top__btn::before {
    margin-bottom: 5px;
  }
}

.color {
  color: #093a60;
}

.txt-orange {
  color: #093a60;
}

.en {
  font-family: aktiv-grotesk-extended, sans-serif !important;
}

.img-c {
  text-align: center;
  margin-top: 52px;
}
@media (max-width: 767.9px) {
  .img-c {
    margin-top: 25px;
  }
}

.fig-caption {
  font-size: 1.4rem;
  text-align: center;
  margin-top: 10px !important;
}
@media (max-width: 767.9px) {
  .fig-caption {
    font-size: 1.1rem;
  }
}
.fig-caption .small {
  font-size: 80%;
}

.fig-caption--left {
  text-align: left;
  margin: 10px auto 0 !important;
}
.fig-caption--left .small {
  font-size: 80%;
}

.h2 {
  font-size: 4rem;
  font-weight: 500;
  margin: 0 0 45px 0;
  padding-left: 30px;
  position: relative;
}
@media (max-width: 767.9px) {
  .h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    padding-left: 20px;
  }
}
.h2::before, .h2::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: #093a60;
  position: absolute;
  left: 0px;
  top: 12px;
}
@media (max-width: 767.9px) {
  .h2::before, .h2::after {
    width: 7px;
    height: 7px;
    top: 8px;
  }
}
.h2::after {
  background: #0c8ee9;
  left: 10px;
  top: 22px;
}
@media (max-width: 767.9px) {
  .h2::after {
    left: 7px;
    top: 15px;
  }
}
.h2 .small {
  font-size: 50%;
}
.h2 span {
  color: #093a60;
}

.h3 {
  font-size: 2.6rem;
  font-weight: 500;
  padding-left: 30px;
  position: relative;
}
@media (max-width: 767.9px) {
  .h3 {
    font-size: 1.9rem;
    padding-left: 20px;
  }
}
.h3::before {
  content: "";
  display: block;
  width: 20px;
  height: 5px;
  background: #0c8ee9;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 767.9px) {
  .h3::before {
    width: 15px;
    height: 4px;
  }
}
.h3:not(:first-child) {
  margin-top: 60px;
}
@media (max-width: 767.9px) {
  .h3:not(:first-child) {
    margin-top: 40px;
  }
}
.h3 .small {
  font-size: 2rem;
}
@media (max-width: 767.9px) {
  .h3 .small {
    font-size: 1.3rem;
  }
}
.h3--small {
  font-size: 2.2rem;
}
@media (max-width: 767.9px) {
  .h3--small {
    font-size: 1.8rem;
  }
}
.h3--small:not(:first-child) {
  margin-top: 30px;
}
.h3--noicon {
  padding-left: 0;
}
.h3--noicon::before, .h3--noicon::after {
  display: none;
}
.h3 span {
  color: #093a60;
}

.h4 {
  font-size: 1.9rem;
  padding: 0;
  line-height: 1.53;
  font-weight: 500;
}
@media (max-width: 767.9px) {
  .h4 {
    font-size: 1.3rem;
    padding: 15px 5px;
  }
}
.h4 span {
  color: #093a60;
}

.h4-bg {
  font-size: 2.4rem;
  font-weight: bold;
  color: #fff;
  background: #093a60;
  padding: 15px 35px;
  line-height: 1.53;
  position: relative;
}
@media (max-width: 767.9px) {
  .h4-bg {
    font-size: 1.7rem;
    padding: 8px 10px 8px 25px;
  }
}

.h4-bg::before {
  content: "";
  width: 20px;
  height: 5px;
  background: #0c8ee9;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media (max-width: 767.9px) {
  .h4-bg::before {
    width: 15px;
    height: 4px;
  }
}

.h4--big {
  font-size: 2.5rem;
  font-family: "Noto Serif JP", serif;
  padding: 20px 10px;
  line-height: 1.53;
}

@media (max-width: 767.9px) {
  .h4--big {
    font-size: 1.5rem;
    padding: 15px 5px;
  }
}
.kv {
  position: relative;
  margin: auto;
  max-width: 1800px;
}
@media (max-width: 767.9px) {
  .kv {
    margin-top: 38px;
    padding-bottom: 140px;
    height: 340px;
    box-sizing: border-box;
  }
}
.kv__in {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  position: relative;
  width: 1280px;
  height: 490px;
  margin: auto;
}
@media (max-width: 767.9px) {
  .kv__in {
    width: auto;
    height: auto;
    margin: 0 20px;
  }
}
.kv__in--white {
  color: #fff;
}
.kv__in--white .kv__lead {
  text-shadow: none;
}
.kv__img {
  width: 800px;
  height: 620px;
  position: absolute;
  background-size: cover !important;
  right: 0;
  top: 0;
}
@media (max-width: 767.9px) {
  .kv__img {
    width: 260px;
    height: 250px;
    top: auto;
    bottom: 0;
  }
}
.kv__title {
  font-size: 6rem;
  font-weight: 500;
  line-height: 1.333;
}
@media (max-width: 767.9px) {
  .kv__title {
    font-size: 3rem;
  }
}
.kv__title .small {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 20px;
}
@media (max-width: 767.9px) {
  .kv__title .small {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
}
.kv__title--s {
  font-size: 6rem;
  font-weight: 500;
  color: #111;
  line-height: 1.333;
}
@media (max-width: 767.9px) {
  .kv__title--s {
    font-size: 2.7rem;
  }
}
.kv__title--en {
  font-family: aktiv-grotesk-extended, sans-serif;
  font-weight: 300;
}
.kv__cat {
  font-size: 3rem;
  font-family: aktiv-grotesk-extended, sans-serif;
  position: relative;
  margin-bottom: 45px;
  padding-left: 26px;
}
@media (max-width: 767.9px) {
  .kv__cat {
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-left: 13px;
  }
}
.kv__cat::before, .kv__cat::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: #093a60;
  position: absolute;
  left: 0px;
  top: 6px;
}
@media (max-width: 767.9px) {
  .kv__cat::before, .kv__cat::after {
    width: 5px;
    height: 5px;
    top: 3px;
  }
}
.kv__cat::after {
  background: #0c8ee9;
  left: 10px;
  top: 16px;
}
@media (max-width: 767.9px) {
  .kv__cat::after {
    left: 5px;
    top: 8px;
  }
}
.kv__cat-btm {
  font-size: 1.9rem;
  position: relative;
  padding-left: 20px;
  font-weight: 500;
}
@media (max-width: 767.9px) {
  .kv__cat-btm {
    font-size: 1.2rem;
    padding-left: 15px;
  }
}
.kv__cat-btm::before, .kv__cat-btm::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: #093a60;
  position: absolute;
  left: 0px;
  top: 4px;
}
@media (max-width: 767.9px) {
  .kv__cat-btm::before, .kv__cat-btm::after {
    width: 5px;
    height: 5px;
    top: 2px;
  }
}
.kv__cat-btm::after {
  background: #0c8ee9;
  left: 8px;
  top: 12px;
}
@media (max-width: 767.9px) {
  .kv__cat-btm::after {
    left: 5px;
    top: 7px;
  }
}
.kv__title--white {
  color: #fff;
}
.kv__title--black {
  color: #111;
}
.kv__lead {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75;
  margin-top: 30px;
  text-shadow: 0 0 15px #fff;
}
@media (max-width: 767.9px) {
  .kv__lead {
    font-size: 1.2rem;
    margin-top: 20px;
  }
}
.kv__lead--white {
  color: #fff;
}
.kv__lead--black {
  color: #111;
}

.breadcrumb {
  width: 100%;
  height: 80px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767.9px) {
  .breadcrumb {
    height: auto;
    margin: 25px 0;
  }
}
.breadcrumb__in {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 1.4rem;
}
@media (max-width: 767.9px) {
  .breadcrumb__in {
    font-size: 1.1rem;
    line-height: 2;
    height: auto;
    display: block;
    padding: 0;
    margin: 0 20px;
  }
}
@media (max-width: 767.9px) {
  .breadcrumb__item {
    display: inline;
  }
}
@media (max-width: 767.9px) {
  .breadcrumb__item:last-child {
    font-weight: 500;
  }
}
.breadcrumb__item:not(:last-child)::after {
  content: "ー";
  margin: 0 10px;
}
@media (max-width: 767.9px) {
  .breadcrumb__item:not(:last-child)::after {
    margin: 0 3px;
  }
}
.breadcrumb__link {
  color: #093a60;
}
@media (min-width: 768px) {
  .breadcrumb__link:hover {
    opacity: 0.5;
  }
}

.container {
  width: 1280px;
  margin: 0 auto;
  margin-bottom: 80px;
}
@media (max-width: 767.9px) {
  .container {
    width: 100%;
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  .container--2col {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  .container--2col .content-main {
    width: 920px;
    margin-top: 120px;
  }
}

.content-side {
  width: 280px;
}
@media (max-width: 767.9px) {
  .content-side {
    display: none;
  }
}

@media (max-width: 767.9px) {
  .content-main {
    padding: 0 20px;
  }
}
.content-main p,
.content-main .ul,
.content-main .ol {
  line-height: 1.875;
}
@media (max-width: 767.9px) {
  .content-main p,
  .content-main .ul,
  .content-main .ol {
    line-height: 1.964;
  }
}
.content-main p:not(:first-child),
.content-main .ul:not(:first-child),
.content-main .ol:not(:first-child) {
  margin-top: 30px;
}
@media (max-width: 767.9px) {
  .content-main p:not(:first-child),
  .content-main .ul:not(:first-child),
  .content-main .ol:not(:first-child) {
    margin-top: 22px;
  }
}
.content-main .ul li {
  margin-left: 2rem;
  list-style: disc;
}
.content-main .ul--mark li {
  display: flex;
  margin-left: 0;
  list-style: none;
}
.content-main .ul--mark li:before {
  content: "※";
  margin-right: 0.2em;
}
.content-main .ol li {
  margin-left: 2rem;
  list-style: decimal;
}
.content-main .ol--mark li {
  margin-left: 0;
  display: flex;
  list-style: none;
  counter-increment: number;
}
.content-main .ol--mark li::before {
  margin-right: 0.2em;
  content: "※" counter(number);
}

.list-number {
  counter-reset: count 0;
  margin-left: 0px;
}

.list-number li {
  list-style: none !important;
  margin-left: 4rem !important;
}

@media (max-width: 767.9px) {
  .list-number li {
    margin-bottom: 10px;
    line-height: 1.923;
  }
}
.list-number li:before {
  content: "（" counter(count) "）";
  counter-increment: count 1;
  margin-left: -4rem;
}

.section {
  margin-top: 140px;
}
@media (max-width: 767.9px) {
  .section {
    margin-top: 70px;
  }
}
.section-top {
  margin-top: 60px;
}
@media (max-width: 767.9px) {
  .section-top {
    margin-top: 30px;
  }
}
.section__block:not(:first-of-type) {
  margin-top: 100px;
}
@media (max-width: 767.9px) {
  .section__block:not(:first-of-type) {
    margin-top: 50px;
  }
}
.section__block--s:not(:first-of-type) {
  margin-top: 50px;
}
@media (max-width: 767.9px) {
  .section__block--s:not(:first-of-type) {
    margin-top: 25px;
  }
}

.grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 767.9px) {
  .grid--1col-sp > div,
  .grid--1col-sp > li {
    width: 100%;
    margin-top: 20px;
  }
}
@media (min-width: 768px) {
  .grid--2col-pc > div,
  .grid--2col-pc > li {
    width: calc(50% - 30px);
  }
  .grid--2col-pc > div:nth-child(n+3),
  .grid--2col-pc > li:nth-child(n+3) {
    margin-top: 52px;
  }
}
@media (max-width: 767.9px) {
  .grid--2col-sp > div,
  .grid--2col-sp > li {
    width: calc(50% - 7.5px);
  }
  .grid--2col-sp > div:nth-child(n+3),
  .grid--2col-sp > li:nth-child(n+3) {
    margin-top: 25px;
  }
}
@media (min-width: 768px) {
  .grid--3col-pc > div,
  .grid--3col-pc > li {
    width: 280px;
  }
  .grid--3col-pc > div:nth-child(n+4),
  .grid--3col-pc > li:nth-child(n+4) {
    margin-top: 40px;
  }
}
.grid--3col-pc::after {
  content: "";
  display: block;
  width: 280px;
  height: 0;
}
@media (min-width: 768px) {
  .grid--4col-pc > div,
  .grid--4col-pc > li {
    width: 280px;
  }
  .grid--4col-pc > div:nth-child(n+5),
  .grid--4col-pc > li:nth-child(n+5) {
    margin-top: 40px;
  }
}
.grid--4col-pc::before {
  content: "";
  display: block;
  width: 280px;
  height: 0;
  order: 1;
}
.grid--4col-pc::after {
  content: "";
  display: block;
  width: 280px;
  height: 0;
}
@media (max-width: 767.9px) {
  .grid--reverse-sp {
    flex-direction: column-reverse;
  }
}
.grid--border > div,
.grid--border > li {
  border-top: solid 1px #ddd;
}
.grid--padding > div,
.grid--padding > li {
  padding-top: 30px;
}
@media (max-width: 767.9px) {
  .grid--padding > div,
  .grid--padding > li {
    padding-top: 20px;
  }
}

@media (min-width: 768px) {
  .container--2col .grid--4col-pc > div,
  .container--2col .grid--4col-pc > li {
    width: 200px;
  }
}
@media (min-width: 768px) {
  .container--2col .grid--4col-pc::before {
    content: "";
    display: block;
    width: 200px;
    height: 0;
    order: 1;
  }
}
@media (min-width: 768px) {
  .container--2col .grid--4col-pc::after {
    content: "";
    display: block;
    width: 200px;
    height: 0;
  }
}

.ln__header {
  background: #093a60;
}
.ln__header a {
  display: block;
  position: relative;
  color: #fff;
  padding: 25px;
}
.ln__header a::before, .ln__header a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.ln__header a::before {
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background: #4eb6ff;
  right: 15px;
}
.ln__header a::after {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: #fff;
  right: 22px;
}
@media (min-width: 768px) {
  .ln__header a:hover::before {
    background: #fff;
  }
}
@media (min-width: 768px) {
  .ln__header a:hover::after {
    width: 0;
    height: 0;
    border-radius: 0;
    border-style: solid;
    border-width: 4px 0 4px 8px;
    border-color: transparent transparent transparent #4eb6ff;
    right: 20px;
  }
}
.ln__title {
  font-size: 2.2rem;
  font-family: aktiv-grotesk-extended, sans-serif;
  position: relative;
}
.ln__title::before {
  content: "";
  width: 15px;
  height: 5px;
  display: block;
  background: #0c8ee9;
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
}
.ln__title--sub {
  font-size: 1.4rem;
  margin-top: 8px;
}

.ln-list {
  padding: 15px;
  margin-bottom: 40px;
  background: #f0f3f5;
}
.ln-list__item {
  position: relative;
}
.ln-list__item:not(:last-child) {
  border-bottom: solid 1px #ddd;
}
@media (min-width: 768px) {
  .ln-list__item a:hover {
    color: #093a60;
  }
}
.ln-list__item > a {
  font-size: 1.6rem;
  color: #111;
  padding: 16px 0;
  display: block;
}
.ln-list__item > a.current {
  color: #1c8de4;
}
.ln-list__cat {
  padding: 16px 5px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .ln-list__cat:hover {
    color: #093a60;
    cursor: pointer;
  }
}
.ln-list__icon {
  width: 25px;
  height: 50px;
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  background: url("../images/common/i_close.png") center center no-repeat;
  background-size: 16px auto;
}
@media (max-width: 767.9px) {
  .ln-list__icon {
    width: 65px;
    background-position: right 27px center;
    background-size: 12px auto;
  }
}
@media (min-width: 768px) {
  .ln-list__icon:hover {
    cursor: pointer;
    opacity: 0.3;
  }
}
.ln-list__icon.open {
  background: url("../images/common/i_open.png") center center no-repeat;
  background-size: 16px auto;
}
@media (max-width: 767.9px) {
  .ln-list__icon.open {
    background-position: right 27px center;
    background-size: 12px auto;
  }
}

.ln-child {
  margin: 1px 0 18px 18px;
  display: none;
}
.ln-child li {
  margin: 7px 0;
  line-height: 1.6;
}
.ln-child a {
  color: #093a60;
  display: block;
}
.ln-child a.current {
  color: #1c8de4;
}
@media (min-width: 768px) {
  .ln-child a:hover {
    opacity: 0.5;
  }
}

@media (min-width: 768px) {
  .scroll .simplebar-track,
  .sp-scroll .simplebar-track {
    display: none;
  }
}
@media (max-width: 767.9px) {
  .scroll,
  .sp-scroll {
    width: 100%;
    padding-bottom: 30px;
  }
}

@media (max-width: 767.9px) {
  .simplebar-track.simplebar-horizontal {
    background: #ededed;
    width: calc(100% - 30px);
    margin: 30px auto 0;
    height: 4px;
    border-radius: 2px;
  }
  .content-main .simplebar-track.simplebar-horizontal {
    width: 100%;
  }
  .simplebar-track.simplebar-horizontal .simplebar-scrollbar {
    top: 0;
    height: 4px;
  }
  .simplebar-scrollbar::before {
    background: #c1c1c1;
    border-radius: 2px;
    height: 4px;
  }
  .simplebar-scrollbar.simplebar-visible:before {
    opacity: 1 !important;
  }
  .simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
    left: 0;
    right: 0;
  }
  .scroll-img {
    max-width: inherit;
  }
}
.note {
  background: #f6f7f8;
  padding: 30px;
  margin-top: 35px;
}
@media (max-width: 767.9px) {
  .note {
    padding: 20px;
  }
}
.note__title {
  font-size: 1.9rem;
  line-height: 1.53;
  font-weight: 500;
}
@media (max-width: 767.9px) {
  .note__title {
    font-size: 1.5rem;
  }
}

.ft-links {
  margin: 0;
  padding: 60px 0;
  background: #f6f7f8;
}
@media (max-width: 767.9px) {
  .ft-links {
    margin: 75px 0 0;
    padding: 0 0 25px;
  }
}
@media (min-width: 768px) {
  .ft-links__in {
    width: 1280px;
    margin: 0 auto;
  }
}
@media (max-width: 767.9px) {
  .ft-links__in {
    padding: 30px 0;
  }
}

.ft-links-list {
  display: flex;
}
@media (min-width: 768px) {
  .ft-links-list {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.ft-links-list__item {
  width: 305px;
  height: 90px;
}
@media (max-width: 767.9px) {
  .ft-links-list__item {
    width: 275px;
    height: 75px;
    display: inline-block;
    flex-shrink: 0;
    margin-top: 0;
    margin-left: 15px;
  }
  .ft-links-list__item:last-child {
    padding-right: 15px;
  }
}
@media (min-width: 768px) {
  .ft-links-list a:hover {
    opacity: 0.5;
  }
}

.ft-kv {
  width: 100%;
  height: 400px;
  background: url(/assets/images/common/ft_kv_pc.jpg) center center no-repeat;
  background-size: cover !important;
}
@media (max-width: 767.9px) {
  .ft-kv {
    height: 300px;
    background-image: url(/assets/images/common/ft_kv_sp.jpg);
  }
}

.ft-nav {
  background: #f6f7f8;
  padding: 65px 0 0;
}
@media (max-width: 767.9px) {
  .ft-nav {
    padding: 0;
  }
}
@media (min-width: 768px) {
  .ft-nav__in {
    width: 1280px;
    margin: 0 auto;
  }
}
@media (max-width: 767.9px) {
  .ft-nav__in {
    margin: 0 15px;
  }
}
.ft-nav .nav-icon.open {
  background: url("/assets/images/common/i_open_r.png") center right no-repeat;
  background-size: 15px auto;
}

.ft-nav-products {
  position: relative;
}
@media (max-width: 767.9px) {
  .ft-nav-products {
    margin-top: 25px;
  }
}
.ft-nav-products__title {
  font-size: 1.6rem;
  font-weight: 500;
  padding: 0 0 0 25px;
  position: relative;
}
@media (max-width: 767.9px) {
  .ft-nav-products__title {
    font-size: 1.4rem;
    border-top: solid 1px #c8ced3;
    line-height: 55px;
    text-indent: 5px;
    padding: 0;
    margin: 0;
    display: block;
  }
}
@media (min-width: 768px) {
  .ft-nav-products__title::before, .ft-nav-products__title::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 99px;
  }
  .ft-nav-products__title::before {
    background: #4eb6ff;
    width: 15px;
    height: 15px;
    left: 5px;
  }
  .ft-nav-products__title::after {
    background: #fff;
    width: 5px;
    height: 5px;
    left: 10px;
  }
}
@media (max-width: 767.9px) {
  .ft-nav-products__list {
    display: none;
  }
}
@media (min-width: 768px) {
  .ft-nav-products__list {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 0 28px;
  }
  .ft-nav-products__list a:hover {
    color: #093a60;
  }
}
.ft-nav-products__list > li {
  font-size: 1.5rem;
  font-weight: 500;
  width: 190px;
  padding: 30px 0 0 5px;
  margin-top: 15px;
  border-top: solid 1px #c8ced3;
}
@media (max-width: 767.9px) {
  .ft-nav-products__list > li {
    font-size: 1.3rem;
    text-indent: 10px;
    margin: 0;
    padding: 10px 0 0 0;
    border: none;
    width: 100%;
    background: #e8ebee;
  }
}
.ft-nav-products__list ul {
  margin: 30px 0 0 0;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2.14;
}
@media (max-width: 767.9px) {
  .ft-nav-products__list ul {
    font-size: 1.2rem;
    margin: 10px 0 20px;
    padding-top: 10px;
    background: #f6f7f8;
  }
}
.ft-nav-products__list ul li a {
  color: #093a60;
}
@media (min-width: 768px) {
  .ft-nav-products__list ul li a:hover {
    opacity: 0.5;
  }
}

@media (min-width: 768px) {
  .ft-nav-cat {
    margin-top: 40px;
  }
}
@media (max-width: 767.9px) {
  .ft-nav-cat {
    border-bottom: solid 1px #c8ced3;
  }
}
@media (min-width: 768px) {
  .ft-nav-cat ul {
    display: flex;
    justify-content: center;
    gap: 45px;
    border-top: solid 1px #c8ced3;
    border-bottom: solid 1px #c8ced3;
    padding: 20px;
    font-size: 1.5rem;
  }
}
@media (max-width: 767.9px) {
  .ft-nav-cat > ul > li {
    position: relative;
    font-size: 1.4rem;
    border-top: solid 1px #c8ced3;
    line-height: 55px;
    font-weight: 500;
    text-indent: 5px;
    padding: 0;
    margin: 0;
    display: block;
  }
}
.ft-nav-cat a {
  color: #111;
}
@media (min-width: 768px) {
  .ft-nav-cat a:hover {
    color: #007aff;
  }
}
.ft-nav-cat__sub {
  display: none;
  font-weight: 400;
  line-height: 2.14;
  font-size: 1.2rem;
  margin: 0 0 20px;
}
.ft-nav-cat__sub a {
  color: #093a60;
}

.ft-bottom {
  background: #f6f7f8;
  padding: 60px 0;
}
@media (max-width: 767.9px) {
  .ft-bottom {
    padding: 50px 0;
  }
}
@media (min-width: 768px) {
  .ft-bottom__in {
    width: 1280px;
    margin: 0 auto;
  }
}

.ft-logo {
  margin: 0 auto 14px;
  width: 277px;
}
@media (max-width: 767.9px) {
  .ft-logo {
    margin: 0 0 27px 20px;
    width: 203px;
  }
}

.footer-sub-link {
  font-size: 1.4rem;
  display: flex;
  justify-content: center;
}
@media (max-width: 767.9px) {
  .footer-sub-link {
    font-size: 1.1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 0 20px;
  }
}
@media (max-width: 767.9px) {
  .footer-sub-link li:first-child {
    width: 100%;
    margin-bottom: 10px;
  }
}
@media (max-width: 767.9px) {
  .footer-sub-link li:nth-child(2) {
    border-left: none;
  }
}
@media (max-width: 767.9px) {
  .footer-sub-link li:nth-child(n+3) {
    margin-left: 12px;
    padding-left: 12px;
    border-left: solid 1px #111;
  }
}
@media (min-width: 768px) {
  .footer-sub-link li:not(:first-child) {
    border-left: solid 1px #111;
    margin-left: 20px;
    padding-left: 20px;
  }
}
@media (max-width: 767.9px) {
  .footer-sub-link li.copyright {
    font-size: 1rem;
    border-left: none;
    width: 100%;
    margin: 30px 0 0;
    padding: 0;
  }
}
.footer-sub-link a {
  color: #111;
}
@media (min-width: 768px) {
  .footer-sub-link a:hover {
    color: #007aff;
  }
}

.btn {
  font-size: 1.6rem;
  color: #fff;
  height: 60px;
  line-height: 60px;
  text-align: center;
  display: inline-block;
  position: relative;
  border-radius: 40px;
  background: #0c8ee9;
  font-weight: 500;
  padding: 0 70px;
}
@media (max-width: 767.9px) {
  .btn {
    font-size: 1.5rem;
    height: 55px;
    line-height: 55px;
    padding: 0 55px;
  }
}
.btn::before, .btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.btn::before {
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background: #4eb6ff;
  right: 15px;
}
.btn::after {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: #fff;
  right: 22px;
}
@media (min-width: 768px) {
  .btn:hover {
    background: #093a60;
  }
}
@media (min-width: 768px) {
  .btn:hover::before {
    background: #fff;
  }
}
@media (min-width: 768px) {
  .btn:hover::after {
    width: 0;
    height: 0;
    border-radius: 0;
    border-style: solid;
    border-width: 4px 0 4px 8px;
    border-color: transparent transparent transparent #4eb6ff;
    right: 20px;
  }
}

.btn--s {
  font-size: 1.4rem;
  line-height: 30px;
  height: 30px;
}

.link {
  color: #0c8ee9;
}
@media (min-width: 768px) {
  .link:hover {
    opacity: 0.5;
  }
}

.link-arrow {
  color: #093a60;
}
.link-arrow::after {
  width: 22px;
  height: 8px;
  margin-left: 7px;
  content: "";
  display: inline-block;
  background: url("../images/common/i_arrow.png") right center no-repeat;
  background-size: contain;
}
@media (min-width: 768px) {
  .link-arrow:hover {
    opacity: 0.5;
  }
}

.link-blank {
  color: #4766a5;
}
.link-blank::after {
  width: 16px;
  height: 16px;
  margin-left: 7px;
  content: "";
  display: inline-block;
  background: url("../images/common/i_link-blank.png") 0 0 no-repeat;
  background-size: contain;
}
@media (max-width: 767.9px) {
  .link-blank::after {
    width: 12px;
    height: 12px;
  }
}
@media (min-width: 768px) {
  .link-blank:hover {
    opacity: 0.5;
  }
}

.btn-blank {
  font-size: 1.7rem;
  padding: 10px;
  border: solid 1px #111;
  color: #111;
  display: inline-block;
}
@media (max-width: 767.9px) {
  .btn-blank {
    font-size: 1.4rem;
  }
}
.btn-blank::after {
  width: 16px;
  height: 16px;
  margin-left: 7px;
  content: "";
  display: inline-block;
  background: url("../images/common/i_link-blank.png") 0 0 no-repeat;
  background-size: contain;
}
@media (max-width: 767.9px) {
  .btn-blank::after {
    width: 12px;
    height: 12px;
  }
}
@media (min-width: 768px) {
  .btn-blank:hover {
    border-color: #093a60;
  }
}

.btn-arrow {
  font-size: 1.7rem;
  padding: 10px;
  border: solid 1px #111;
  color: #111;
  display: inline-block;
}
@media (max-width: 767.9px) {
  .btn-arrow {
    font-size: 1.4rem;
  }
}
.btn-arrow::after {
  width: 22px;
  height: 10px;
  margin-left: 7px;
  content: "";
  display: inline-block;
  background: url("../images/common/i_arrow.png") 0 0 no-repeat;
  background-size: contain;
}
@media (min-width: 768px) {
  .btn-arrow:hover {
    border-color: #093a60;
  }
}

.btn-catalog {
  font-size: 1.7rem;
  line-height: 60px;
  text-align: center;
  color: #fff;
  background: #093a60;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 400px;
  box-sizing: border-box;
  border: solid 1px #093a60;
}
@media (max-width: 767.9px) {
  .btn-catalog {
    font-size: 1.4rem;
    line-height: 55px;
  }
}
.btn-catalog::before {
  content: "";
  display: block;
  width: 19px;
  height: 23px;
  margin-right: 6px;
  background: url("../images/common/i_catalogue.png") 0 0 no-repeat;
  background-size: contain;
}
@media (max-width: 767.9px) {
  .btn-catalog::before {
    width: 15px;
    height: 18px;
  }
}
@media (min-width: 768px) {
  .btn-catalog:hover {
    color: #093a60;
    border: solid 1px #093a60;
    background: #fff;
  }
  .btn-catalog:hover::before {
    background: url("../images/common/i_catalogue-orange.png") 0 0 no-repeat;
    background-size: contain;
  }
}

.btn-catalog-e {
  font-size: 1.7rem;
  line-height: 60px;
  text-align: center;
  color: #111;
  border: solid 1px #111;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 400px;
}
@media (max-width: 767.9px) {
  .btn-catalog-e {
    font-size: 1.4rem;
    line-height: 55px;
  }
}
.btn-catalog-e::before {
  content: "";
  display: block;
  width: 27px;
  height: 21px;
  margin-right: 6px;
  background: url("../images/common/i_catalogue_e.png") 0 0 no-repeat;
  background-size: contain;
}
@media (max-width: 767.9px) {
  .btn-catalog-e::before {
    width: 20px;
    height: 16px;
  }
}
@media (min-width: 768px) {
  .btn-catalog-e:hover {
    border: solid 1px #093a60;
  }
}

.btn-download {
  font-size: 1.7rem;
  line-height: 60px;
  text-align: center;
  color: #111;
  border: solid 1px #111;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 400px;
}
@media (max-width: 767.9px) {
  .btn-download {
    font-size: 1.4rem;
    line-height: 55px;
  }
}
.btn-download::before {
  content: "";
  display: block;
  width: 17px;
  height: 16px;
  margin-right: 6px;
  background: url("../images/common/i_dl.png") 0 0 no-repeat;
  background-size: contain;
}
@media (max-width: 767.9px) {
  .btn-download::before {
    width: 15px;
    height: 15px;
  }
}
@media (min-width: 768px) {
  .btn-download:hover {
    border: solid 1px #093a60;
  }
}

.btn-contact {
  font-size: 1.7rem;
  line-height: 60px;
  text-align: center;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 400px;
  box-sizing: border-box;
  border: solid 1px #111;
}
@media (max-width: 767.9px) {
  .btn-contact {
    font-size: 1.4rem;
    line-height: 55px;
  }
}
.btn-contact::before {
  content: "";
  display: block;
  width: 23px;
  height: 16px;
  margin-right: 6px;
  background: url("../images/common/i_mail-orange.png") 0 0 no-repeat;
  background-size: contain;
}
@media (max-width: 767.9px) {
  .btn-contact::before {
    width: 19px;
    height: 14px;
  }
}
@media (min-width: 768px) {
  .btn-contact:hover {
    border: solid 1px #093a60;
    background: #fff;
  }
}

.btn-ebook {
  max-width: 320px;
  display: block;
  border: solid 1px #111;
}
@media (min-width: 768px) {
  .btn-ebook:hover {
    background: #fffae8;
    border: solid 1px #093a60;
  }
}
.btn-ebook__title {
  font-size: 1.5rem;
  line-height: 35px;
  text-align: center;
  color: #fff;
  background: #093a60;
  display: block;
}
.btn-ebook__txt {
  font-size: 1.7rem;
  line-height: 1.53;
  display: block;
  padding: 14px 0;
  color: #111;
  text-align: center;
}
.btn-ebook__txt::before {
  content: "";
  width: 28px;
  height: 23px;
  background: url("../images/common/i_ebook.png") 0 0 no-repeat;
  background-size: contain;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

.thumbs__title {
  color: #fff;
  background: #093a60;
  text-align: center;
  padding: 10px;
  display: block;
  position: relative;
}
.thumbs__title::before, .thumbs__title::after {
  content: "";
  display: block;
  width: 10px;
  height: 8px;
  background: #fff;
  position: absolute;
  right: 17px;
  top: 18px;
  z-index: 2;
}
.thumbs__title::after {
  background: #0c8ee9;
  right: 12px;
  top: 13px;
  z-index: 1;
}
.thumbs__title:hover::before {
  background: #0c8ee9;
}
.thumbs__title:hover::after {
  background: #fff;
}

@media (max-width: 767.9px) {
  .outline {
    margin-top: 30px;
  }
}
.outline__img {
  text-align: center;
  margin-top: 52px;
}
@media (max-width: 767.9px) {
  .outline__img {
    margin-top: 33px;
  }
}

.outline-type {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  padding: 10px 20px;
  border: solid 1px #ddd;
}
@media (max-width: 767.9px) {
  .outline-type {
    margin-top: 25px;
    padding: 10px 15px;
  }
}
.outline-type__title {
  font-size: 1.7rem;
  font-weight: 500;
  text-align: center;
  width: 140px;
  padding-right: 20px;
  box-sizing: border-box;
}
@media (max-width: 767.9px) {
  .outline-type__title {
    font-size: 1.3rem;
    width: 105px;
    padding-right: 15px;
  }
}
.outline-type dl {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 140px);
}
@media (max-width: 767.9px) {
  .outline-type dl {
    width: calc(100% - 105px);
  }
}
.outline-type dt span {
  color: #fff;
  background: #093a60;
  border-radius: 3px;
  width: 50px;
  padding: 3px 3px 5px 3px;
  text-align: center;
  display: block;
  box-sizing: border-box;
}
@media (max-width: 767.9px) {
  .outline-type dt span {
    font-size: 1.1rem;
    width: 33px;
  }
}
.outline-type dd {
  line-height: 1.5;
  width: calc(100% - 50px);
  padding-left: 10px;
  box-sizing: border-box;
}
@media (max-width: 767.9px) {
  .outline-type dd {
    font-size: 1.3rem;
    width: calc(100% - 33px);
  }
}
.outline-type dt:not(:first-of-type),
.outline-type dd:not(:first-of-type) {
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px #ddd solid;
}

.features {
  color: #fff;
  background: #093a60 url(/assets/images/material/features-bg.jpg) no-repeat;
  background-size: cover;
  padding: 80px 70px 80px 60px;
  counter-reset: number 0;
}
@media (max-width: 767.9px) {
  .features {
    margin: 50px -20px 0;
    padding: 50px 20px 40px;
  }
}
.features__title-area {
  margin-bottom: 50px;
}
@media (max-width: 767.9px) {
  .features__title-area {
    margin-bottom: 45px;
  }
}
.features__title {
  font-size: 4.5rem;
  font-family: aktiv-grotesk-extended, sans-serif;
  position: relative;
}
@media (max-width: 767.9px) {
  .features__title {
    font-size: 2.8rem;
    padding: 0 0 0 8px;
  }
}
.features__title::before {
  content: "";
  width: 40px;
  height: 6px;
  background: #0c8ee9;
  position: absolute;
  left: -60px;
  top: 14px;
}
@media (max-width: 767.9px) {
  .features__title::before {
    width: 20px;
    height: 4px;
    left: -20px;
    top: 12px;
  }
}
.features__title-sub {
  font-size: 1.8rem;
  font-weight: 500;
  margin-top: 10px;
}
@media (max-width: 767.9px) {
  .features__title-sub {
    font-size: 1.1rem;
    padding-left: 9px;
  }
}
.features__block {
  padding: 10px 0 10px 135px;
  margin-top: 30px;
  position: relative;
}
@media (max-width: 767.9px) {
  .features__block {
    padding-left: 62px;
    margin-top: 25px;
  }
}
.features__block::before {
  counter-increment: number 1;
  content: counter(number, decimal-leading-zero);
  font-size: 1.8rem;
  font-family: aktiv-grotesk-extended, sans-serif;
  font-weight: 500;
  position: absolute;
  left: 40px;
  top: 15px;
}
@media (max-width: 767.9px) {
  .features__block::before {
    font-size: 1.5rem;
    left: 0;
  }
}
.features__block::after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: #0c8ee9;
  position: absolute;
  left: 100px;
  top: 0;
}
@media (max-width: 767.9px) {
  .features__block::after {
    left: 40px;
  }
}
.features__h3 {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.5;
}
@media (max-width: 767.9px) {
  .features__h3 {
    font-size: 1.7rem;
  }
}
.features p, .features__dl {
  font-size: 1.6rem;
  line-height: 1.875;
  margin-top: 10px !important;
}
@media (max-width: 767.9px) {
  .features p, .features__dl {
    font-size: 1.3rem;
    line-height: 1.923;
  }
}
@media (min-width: 768px) {
  .features__dl {
    display: flex;
    flex-wrap: wrap;
  }
  .features__dl dt {
    width: 110px;
  }
  .features__dl dd {
    width: calc(100% - 110px);
  }
}

.img-slider {
  position: relative;
}
@media (max-width: 767.9px) {
  .img-slider {
    margin: 25px 20px 0;
  }
}
@media (min-width: 768px) {
  .img-slider .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  .img-slider .swiper-wrapper .swiper-slide {
    width: 420px;
    margin-top: 40px;
  }
}
.img-slider .swiper-wrapper .swiper-slide__title {
  border-top: solid 1px #ddd;
  font-size: 1.8rem;
  padding: 20px 10px;
  line-height: 1.53;
}
@media (max-width: 767.9px) {
  .img-slider .swiper-wrapper .swiper-slide__title {
    font-size: 1.3rem;
    padding: 15px 5px;
  }
}
.img-slider .swiper-wrapper .swiper-slide__title span {
  color: #093a60;
}
@media (min-width: 768px) {
  .img-slider .swiper-wrapper--3col-pc .swiper-slide {
    width: 270px;
  }
}

@media (max-width: 767.9px) {
  .content-swiper {
    overflow: hidden;
  }
}

.ac__title {
  border: solid 1px #e2e2e2;
  padding: 18px 60px 18px 62px;
  position: relative;
  background: #f7f7f7 url("/assets/images/common/i_close.png") right 30px center no-repeat;
}
.ac__title.open {
  background: #f7f7f7 url("/assets/images/common/i_open.png") right 30px center no-repeat;
}
@media (min-width: 768px) {
  .ac__title {
    background-size: 13px auto !important;
  }
  .ac__title:hover {
    cursor: pointer;
  }
}
@media (max-width: 767.9px) {
  .ac__title {
    padding: 12px 40px 12px 40px;
    background-position: right 15px center !important;
    background-size: 11px auto !important;
  }
}
.ac__title p {
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 0 !important;
}
@media (max-width: 767.9px) {
  .ac__title p {
    font-size: 1.3rem;
  }
}
.ac__title:not(:first-of-type) {
  margin-top: 10px;
}
.ac__icon--q {
  font-size: 3.5rem;
  font-family: aktiv-grotesk-extended, sans-serif;
  font-weight: 400;
  color: #093a60;
  position: absolute;
  left: 21px;
  top: 15px;
}
@media (max-width: 767.9px) {
  .ac__icon--q {
    font-size: 2.5rem;
    left: 15px;
    top: 10px;
  }
}
.ac__content {
  border: solid 1px #e2e2e2;
  border-top: none;
  padding: 30px 25px 30px;
  display: none;
}
@media (max-width: 767.9px) {
  .ac__content {
    padding: 20px 15px;
  }
}

.cb {
  background: #093a60 url(/assets/images/common/contact-bg_pc.jpg);
  background-size: cover !important;
  color: #fff;
  margin-top: 80px;
  height: 200px;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .cb {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
}
@media (max-width: 767.9px) {
  .cb {
    margin: 50px 0 0;
    padding: 45px 25px;
    height: auto;
    background: #093a60 url(/assets/images/common/contact-bg_sp.jpg);
  }
}
@media (max-width: 767.9px) {
  .cb__header {
    text-align: center;
  }
}
.cb__title {
  font-size: 3.5rem;
  font-family: aktiv-grotesk-extended, sans-serif;
}
@media (max-width: 767.9px) {
  .cb__title {
    font-size: 2.6rem;
  }
}
.cb__title-sub {
  font-size: 1.4rem;
  margin-top: 0 !important;
}
@media (max-width: 767.9px) {
  .cb__title-sub {
    font-size: 1rem;
  }
}
.cb__btn {
  font-size: 1.6rem;
  color: #fff;
  width: 240px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 40px;
  background: #0c8ee9;
}
@media (max-width: 767.9px) {
  .cb__btn {
    font-size: 1.7rem;
    width: 100%;
    height: 65px;
    margin-top: 20px;
  }
}
.cb__btn::before, .cb__btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.cb__btn::before {
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background: #4eb6ff;
  right: 15px;
}
.cb__btn::after {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: #fff;
  right: 22px;
}
@media (min-width: 768px) {
  .cb__btn:hover::before {
    background: #fff;
  }
}
@media (min-width: 768px) {
  .cb__btn:hover::after {
    width: 0;
    height: 0;
    border-radius: 0;
    border-style: solid;
    border-width: 4px 0 4px 8px;
    border-color: transparent transparent transparent #4eb6ff;
    right: 20px;
  }
}
@media (min-width: 768px) {
  .cb__btn:hover {
    background: #093a60;
  }
}
@media (max-width: 767.9px) {
  .cb__tel {
    margin-top: 15px;
    height: 65px;
    text-align: center;
    position: relative;
    border-radius: 40px;
    background: #0c8ee9;
  }
  .cb__tel::before, .cb__tel::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .cb__tel::before {
    width: 20px;
    height: 20px;
    border-radius: 10px;
    background: #4eb6ff;
    right: 15px;
  }
  .cb__tel::after {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: #fff;
    right: 22px;
  }
}
.cb__telnum {
  font-size: 3.1rem;
  font-family: aktiv-grotesk-extended, sans-serif;
  color: #fff;
}
@media (max-width: 767.9px) {
  .cb__telnum {
    font-size: 2rem;
    padding-top: 15px;
  }
}
.cb__teltime {
  font-size: 1.3rem;
  margin-top: 10px;
}
@media (max-width: 767.9px) {
  .cb__teltime {
    font-size: 0.9rem;
    margin-top: 5px;
  }
}

.side-ibuhinget-btn {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  width: 270px;
  height: 76px;
  margin-top: 20px;
  background: url(../images/common/side_b_i-buhinget.png) 0 0 no-repeat;
  background-size: contain;
  display: block;
}
@media (min-width: 768px) {
  .side-ibuhinget-btn:hover {
    background: url(../images/common/side_b_i-buhinget_on.png) 0 0 no-repeat;
    background-size: contain;
  }
}

/* -----------------
ROCKY/ART
----------------- */
.rocky-nav {
  margin-bottom: 50px;
}
@media (max-width: 767.9px) {
  .rocky-nav {
    margin: 15px -15px 25px;
  }
}
.rocky-nav ul {
  display: flex;
}
.rocky-nav li {
  width: 100%;
}
.rocky-nav li:not(:first-child) {
  border-left: solid 1px #fff;
}
.rocky-nav a {
  font-size: 1.7rem;
  line-height: 60px;
  color: #111;
  text-align: center;
  display: block;
  background: #ebebeb;
}
@media (max-width: 767.9px) {
  .rocky-nav a {
    font-size: 1.2rem;
    line-height: 45px;
  }
}
@media (min-width: 768px) {
  .rocky-nav a:hover {
    color: #fff;
    background: #093a60;
    position: relative;
  }
  .rocky-nav a:hover::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 7px 0 7px;
    border-color: #093a60 transparent transparent transparent;
    display: block;
    position: absolute;
    bottom: -10px;
    left: 50%;
    margin-left: -7px;
  }
}
.rocky-nav .current {
  color: #fff;
  background: #093a60;
  position: relative;
}
.rocky-nav .current::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 7px 0 7px;
  border-color: #093a60 transparent transparent transparent;
  display: block;
  position: absolute;
  bottom: -10px;
  left: 50%;
  margin-left: -7px;
}
@media (max-width: 767.9px) {
  .rocky-nav .current::after {
    border-width: 4px 3px 0 3px;
    border-color: #fff transparent transparent transparent;
    bottom: 6px;
    margin-left: -3px;
  }
}

@media (max-width: 767.9px) {
  .rocky-flow {
    margin-top: -10px;
  }
}

.flow-step {
  background: #f7f7f7;
  border: solid 1px #ddd;
  padding: 18px;
  margin-top: 70px;
  position: relative;
}
@media (max-width: 767.9px) {
  .flow-step {
    padding: 15px 12px;
    margin-top: 50px;
  }
}
.flow-step__mark {
  font-size: 2.8rem;
  font-weight: 500;
  width: 70px;
  height: 70px;
  margin: -55px auto 0;
  text-align: center;
  color: #fff;
  background: #093a60;
  border-radius: 35px;
}
@media (max-width: 767.9px) {
  .flow-step__mark {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    margin: -40px auto 0;
  }
}
.flow-step__mark span {
  font-size: 1.4rem;
  display: block;
  padding: 15px 0 3px;
}
@media (max-width: 767.9px) {
  .flow-step__mark span {
    font-size: 1rem;
    padding: 10px 0 1px;
  }
}
.flow-step__title {
  font-size: 2rem;
  text-align: center;
  font-weight: bold;
  margin: 20px 0 35px;
  position: relative;
}
@media (max-width: 767.9px) {
  .flow-step__title {
    font-size: 1.4rem;
    margin: 10px 0 25px;
  }
}
.flow-step__title::after {
  content: "";
  width: 15px;
  height: 8px;
  background: url("../images/common/i_ac_open.png") no-repeat;
  background-size: cover;
  transform: scale(1, -1);
  display: block;
  position: absolute;
  bottom: -20px;
  left: 50%;
  margin-left: -7px;
}
@media (max-width: 767.9px) {
  .flow-step__title::after {
    width: 9px;
    height: 5px;
    bottom: -15px;
  }
}
.flow-step__list {
  display: flex;
}
.flow-step__list li {
  width: 100%;
}
.flow-step__list > li:not(:first-child) {
  margin-left: 10px;
}
.flow-step a {
  color: #111;
  background: #fff;
  border: solid 1px #ddd;
  height: 60px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  font-weight: bold;
  position: relative;
}
@media (max-width: 767.9px) {
  .flow-step a {
    font-size: 1.1rem;
    line-height: 1.3;
    text-align: center;
    padding-bottom: 5px;
  }
}
.flow-step a::after {
  content: "";
  width: 15px;
  height: 8px;
  background: url("../images/common/i_ac_open.png") no-repeat;
  background-size: cover;
  transform: scale(1, -1);
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -4px;
}
@media (max-width: 767.9px) {
  .flow-step a::after {
    width: 9px;
    height: 5px;
    top: auto;
    bottom: 10px;
    right: 50%;
    margin-right: -5px;
  }
}
@media (min-width: 768px) {
  .flow-step a:hover {
    color: #093a60;
    border: solid 1px #093a60;
  }
}
.flow-step a .small {
  display: block;
  font-size: 1.3rem;
  font-weight: normal;
  margin-top: -20px;
}
@media (max-width: 767.9px) {
  .flow-step a .small {
    font-size: 0.8rem;
  }
}
.flow-step__sub-list {
  width: 260px;
}
@media (max-width: 767.9px) {
  .flow-step__sub-list {
    width: 95px;
  }
}
.flow-step__sub-list li:not(:first-child) {
  margin-top: 10px;
  position: relative;
}
.flow-step__sub-list li:not(:first-child)::after {
  content: "";
  width: 4px;
  height: 10px;
  background: #ddd;
  display: block;
  position: absolute;
  left: 50%;
  top: -10px;
  margin-left: -2px;
}
.flow-step__list-item {
  color: #111;
  background: #fff;
  border: solid 1px #ddd;
  height: 70px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
@media (max-width: 767.9px) {
  .flow-step__list-item {
    font-size: 1.1rem;
    padding-bottom: 5px;
  }
}

.flow-step--1::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 19px 31px 0 31px;
  border-color: #f7f7f7 transparent transparent transparent;
  position: absolute;
  bottom: -19px;
  left: 50%;
  margin-left: -31px;
}
@media (max-width: 767.9px) {
  .flow-step--1::after {
    border-width: 10px 15px 0 15px;
    bottom: -10px;
    margin-left: -15px;
  }
}
.flow-step--1::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 32px 0 32px;
  border-color: #dddddd transparent transparent transparent;
  position: absolute;
  bottom: -20px;
  left: 50%;
  margin-left: -32px;
}
@media (max-width: 767.9px) {
  .flow-step--1::before {
    border-width: 11px 16px 0 16px;
    bottom: -11px;
    margin-left: -16px;
  }
}

.flow-step--2 .flow-step__list > li > a {
  height: 70px;
}

.rocky-results {
  margin-top: 60px;
  border-top: solid 2px #111;
}
@media (max-width: 767.9px) {
  .rocky-results {
    margin: 15px -15px 0;
    padding: 20px 15px;
  }
}
.rocky-results__in {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767.9px) {
  .rocky-results__in {
    border-bottom: solid 1px #f1f1f1;
    margin-bottom: 15px;
    padding: 0 5px;
  }
}
@media (max-width: 767.9px) {
  .rocky-results__dl {
    margin-right: 20px;
  }
}
.rocky-results dl {
  margin: 0 0 10px;
}
@media (min-width: 768px) {
  .rocky-results dl {
    font-size: 1.6rem;
    margin: 20px 0;
    width: 610px;
    display: flex;
    flex-wrap: wrap;
  }
  .rocky-results dl::after {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    border-top: solid 1px #ddd;
    clear: both;
  }
}
.rocky-results dt {
  font-weight: bold;
  margin-bottom: 5px;
}
@media (min-width: 768px) {
  .rocky-results dt {
    width: 80px;
    height: 50px;
    padding: 10px;
    margin-bottom: 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
  }
}
.rocky-results dd {
  line-height: 1.538;
}
@media (min-width: 768px) {
  .rocky-results dd {
    line-height: 1.5625;
    width: 530px;
    height: 50px;
    padding-left: 25px;
    margin-bottom: 20px;
    border-left: solid 1px #ddd;
    box-sizing: border-box;
    display: flex;
    align-items: center;
  }
}
.rocky-results__img {
  width: 115px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .rocky-results__img {
    width: 230px;
    margin-top: 10px;
  }
}

.method p {
  margin-bottom: 40px;
}
@media (max-width: 767.9px) {
  .method p {
    margin-bottom: 20px;
  }
}

.method-example {
  margin-top: 80px;
}
@media (max-width: 767.9px) {
  .method-example {
    margin-top: 50px;
  }
}

/* ARTWORK */
.artwork-nav {
  margin: 80px 0 100px;
}
@media (max-width: 767.9px) {
  .artwork-nav {
    margin: 40px 0 70px;
  }
}
.artwork-nav ul {
  display: flex;
}
@media (max-width: 767.9px) {
  .artwork-nav ul {
    flex-wrap: wrap;
  }
}
.artwork-nav li {
  width: 100%;
}
@media (max-width: 767.9px) {
  .artwork-nav li {
    width: 50%;
    box-sizing: border-box;
  }
}
@media (min-width: 768px) {
  .artwork-nav li:not(:first-child) {
    border-left: solid 1px #fff;
  }
}
@media (max-width: 767.9px) {
  .artwork-nav li:nth-child(even) {
    border-left: solid 2px #fff;
  }
}
@media (max-width: 767.9px) {
  .artwork-nav li:nth-child(n+3) {
    border-top: solid 2px #fff;
  }
}
.artwork-nav a {
  font-size: 1.7rem;
  line-height: 60px;
  color: #111;
  text-align: center;
  display: block;
  background: #ebebeb;
}
@media (max-width: 767.9px) {
  .artwork-nav a {
    font-size: 1.2rem;
    line-height: 45px;
  }
}
@media (min-width: 768px) {
  .artwork-nav a:hover {
    color: #fff;
    background: #093a60;
    position: relative;
  }
  .artwork-nav a:hover::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 7px 0 7px;
    border-color: #093a60 transparent transparent transparent;
    display: block;
    position: absolute;
    bottom: -10px;
    left: 50%;
    margin-left: -7px;
  }
}
.artwork-nav .current {
  color: #fff;
  background: #093a60;
  position: relative;
}
.artwork-nav .current::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 7px 0 7px;
  border-color: #093a60 transparent transparent transparent;
  display: block;
  position: absolute;
  bottom: -10px;
  left: 50%;
  margin-left: -7px;
}
@media (max-width: 767.9px) {
  .artwork-nav .current::after {
    border-width: 4px 3px 0 3px;
    border-color: #fff transparent transparent transparent;
    bottom: 6px;
  }
}

.artwork-lead__txt {
  margin-top: 10px !important;
}
.artwork-lead__txt--l {
  font-size: 2.2rem;
  color: #093a60;
  margin-top: 10px !important;
}
@media (max-width: 767.9px) {
  .artwork-lead__txt--l {
    font-size: 1.8rem;
  }
}

.phtoricart-btn {
  margin: 20px auto 0;
}
.phtoricart-btn--ft {
  margin: 50px auto 0;
}
@media (max-width: 767.9px) {
  .phtoricart-btn--ft {
    margin: 35px auto 0;
  }
}
.phtoricart-btn a {
  text-indent: 100%;
  width: 488px;
  height: 129px;
  margin: 0 auto;
  background: url("../images/material/artwork/sign/trickart-btn_off.jpg") 0 0 no-repeat;
  background-size: cover;
  display: block;
  white-space: nowrap;
  overflow: hidden;
}
@media (min-width: 768px) {
  .phtoricart-btn a:hover {
    background: url("../images/material/artwork/sign/trickart-btn_on.jpg") 0 0 no-repeat;
    background-size: cover;
  }
}
@media (max-width: 767.9px) {
  .phtoricart-btn a {
    width: 320px;
    height: 130px;
    background: url("../images/material/artwork/sign/trickart-btn_sp.jpg") 0 0 no-repeat;
    background-size: contain;
  }
}

.mtl-table {
  width: 100%;
  border-left: solid 1px #ddd;
  border-top: solid 1px #ddd;
  line-height: 1.538;
  margin-top: 52px;
}
@media (max-width: 767.9px) {
  .mtl-table {
    margin-top: 25px;
  }
}
.mtl-table th {
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  background: #093a60;
  text-align: center;
  padding: 20px;
  border-right: solid 1px #ddd;
  border-bottom: solid 1px #ddd;
  box-sizing: border-box;
  white-space: nowrap;
}
@media (max-width: 767.9px) {
  .mtl-table th {
    font-size: 1.2rem;
    padding: 15px;
  }
}
.mtl-table td {
  padding: 20px;
  vertical-align: top;
  border-right: solid 1px #ddd;
  border-bottom: solid 1px #ddd;
}
@media (max-width: 767.9px) {
  .mtl-table td {
    padding: 15px;
    white-space: nowrap;
  }
}
.mtl-table td.va-m {
  vertical-align: middle;
}
.mtl-table__cat {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  background: #093a60;
  white-space: nowrap;
}
@media (max-width: 767.9px) {
  .mtl-table__cat {
    font-size: 1.2rem;
    text-align: center;
  }
}
.mtl-table a {
  color: #4766a5;
}

/* 商品一覧 */
.pi-table {
  width: 100%;
  line-height: 1.538;
}
.pi-table th {
  font-size: 1.7rem;
  font-weight: 700;
  background: #dfedf7;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  border-right: solid 2px #fff;
}
@media (max-width: 767.9px) {
  .pi-table th {
    font-size: 1.2rem;
    padding: 15px;
  }
}
@media (max-width: 767.9px) {
  .pi-table th:first-child {
    width: 105px;
  }
}
.pi-table td {
  padding: 20px;
  vertical-align: top;
  border-bottom: solid 1px #eaeaea;
}
@media (max-width: 767.9px) {
  .pi-table td {
    padding: 15px;
  }
}
@media (max-width: 767.9px) {
  .pi-table td:nth-last-child(-n+2) {
    display: block;
  }
}
@media (max-width: 767.9px) {
  .pi-table td:nth-last-child(2) {
    border-bottom: none;
    padding-bottom: 0;
  }
}
@media (max-width: 767.9px) {
  .pi-table td:last-child {
    padding-top: 5px;
  }
}
@media (min-width: 768px) {
  .pi-table td:not(:last-child) {
    border-left: solid 2px #fff;
  }
}
.pi-table__cat {
  font-size: 1.6rem;
  font-weight: 700;
  background: #f4f7f9;
  text-align: center;
  border-bottom: none;
  border-top: solid 2px #fff;
}
@media (max-width: 767.9px) {
  .pi-table__cat {
    font-size: 1.2rem;
  }
}
.pi-table a {
  color: #4766a5;
}
@media (min-width: 768px) {
  .pi-table a:hover {
    opacity: 0.5;
  }
}

/* ---------------------------------
KV
---------------------------------- */
.company .wrapper::before {
  content: "";
  width: 100%;
  height: 730px;
  background: url(/assets/images/company/kv_pc.jpg) center center no-repeat;
  background-size: cover;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
@media (max-width: 767.9px) {
  .company .wrapper::before {
    height: 400px;
    background: url(/assets/images/company/kv_sp.jpg) center center no-repeat;
    background-size: cover;
  }
}

@media (max-width: 767.9px) {
  .company .kv {
    padding-bottom: 0;
    height: 302px;
  }
}

@media (min-width: 768px) {
  .company .kv__in {
    height: 620px;
  }
}

.company .kv__lead {
  max-width: 550px;
}
@media (max-width: 767.9px) {
  .company .kv__lead {
    max-width: 280px;
  }
}

/* ---------------------------------
GREETING
---------------------------------- */
@media (min-width: 768px) {
  .c-greeting {
    display: flex;
    justify-content: space-between;
  }
  .c-greeting__img {
    width: 490px;
  }
  .c-greeting__text {
    width: calc(100% - 545px);
  }
}
@media (max-width: 767.9px) {
  .c-greeting__text {
    margin-top: 30px;
  }
}

/* ---------------------------------
OUTLINE
---------------------------------- */
.c-outline {
  border-top: solid 1px #e3e4e5;
  line-height: 1.73;
}
@media (min-width: 768px) {
  .c-outline {
    font-size: 1.6rem;
    display: flex;
    flex-wrap: wrap;
    line-height: 1.875;
  }
}
@media (max-width: 767.9px) {
  .c-outline {
    padding: 15px 0 0;
  }
}
.c-outline > dt {
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .c-outline > dt {
    width: 178px;
    padding: 15px 0 15px 5px;
    border-bottom: solid 1px #e3e4e5;
  }
}
@media (max-width: 767.9px) {
  .c-outline > dt {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 6px;
    padding: 0 5px;
  }
}
.c-outline > dd {
  font-weight: 300;
  border-bottom: solid 1px #e3e4e5;
}
@media (min-width: 768px) {
  .c-outline > dd {
    width: calc(100% - 178px);
    padding: 15px 0;
    box-sizing: border-box;
  }
}
@media (max-width: 767.9px) {
  .c-outline > dd {
    margin-bottom: 15px;
    padding: 0 5px 15px 15px;
  }
}
.c-outline__yakuin {
  display: flex;
  flex-wrap: wrap;
}
.c-outline__yakuin dt {
  width: 6em;
}
.c-outline__yakuin dd {
  width: calc(100% - 6em);
}
@media (min-width: 768px) {
  .c-outline ul {
    display: flex;
    flex-wrap: wrap;
  }
  .c-outline ul li {
    width: 33.33%;
  }
}

/* ---------------------------------
ACCESS
---------------------------------- */
@media (min-width: 768px) {
  .c-access {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  .c-access__ac {
    width: 440px;
  }
}
@media (max-width: 767.9px) {
  .c-access__ac {
    margin-top: 15px;
  }
}
.c-access__gmap {
  width: 800px;
}
@media (max-width: 767.9px) {
  .c-access__gmap {
    width: auto;
    margin: 5px 0 0;
  }
}
.c-access__gmap iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 80/57;
}
@media (max-width: 767.9px) {
  .c-access__gmap iframe {
    aspect-ratio: 67/46;
  }
}
.c-access__title {
  font-size: 1.9rem;
  font-weight: 500;
  border-bottom: #e3e4e5 solid 1px;
  padding: 15px 0;
}
@media (max-width: 767.9px) {
  .c-access__title {
    font-size: 1.6rem;
    margin-top: 15px;
  }
}
.c-access__title-sub {
  font-weight: 500;
  margin-top: 15px;
}
.c-access p {
  margin-top: 5px !important;
}
@media (min-width: 768px) {
  .c-access p {
    font-size: 1.5rem;
  }
}

.contact .l-inner {
  max-width: 920px;
  margin: auto;
}
.contact__h {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2;
  text-align: center;
  margin: 30px auto;
  padding: 15px;
  max-width: 920px;
  background-color: #f6f7f8;
}
@media (max-width: 767.9px) {
  .contact__h {
    font-size: 1.4rem;
    text-align: left;
  }
}
@media (max-width: 767.9px) {
  .contact .text {
    line-height: 1.73;
    margin: 20px 15px 0;
  }
}
@media (min-width: 768px) {
  .contact .text:first-child {
    margin-top: 65px;
  }
}
.contact .text--small {
  font-size: 14px;
  line-height: 1.875;
  margin-top: 20px;
}
@media (max-width: 767.9px) {
  .contact .text--small {
    font-size: 11px;
    line-height: 1.59;
    margin: 20px 15px 0;
  }
}
.contact .form {
  max-width: 920px;
  margin: 60px auto 0;
}
@media (max-width: 767.9px) {
  .contact .form {
    padding: 0 15px;
    margin-top: 30px;
  }
}
.contact .form .required {
  color: #fff;
  background: #cd3b3b;
  font-size: 12px;
  font-weight: bold;
  padding: 1px 3px;
  border-radius: 3px;
  margin-left: 8px;
}
@media (min-width: 768px) {
  .contact .form__dl {
    display: flex;
    flex-wrap: wrap;
    margin-top: 35px;
  }
}
.contact .form__dt {
  width: 280px;
  font-weight: bold;
  line-height: 1.875;
  padding: 20px 5px;
  box-sizing: border-box;
}
@media (max-width: 767.9px) {
  .contact .form__dt {
    width: 100%;
    font-size: 14px;
    padding: 15px 5px;
  }
}
.contact .form__dd {
  width: calc(100% - 280px);
  margin: 0;
  line-height: 1.875;
  padding: 20px 5px;
  box-sizing: border-box;
}
@media (max-width: 767.9px) {
  .contact .form__dd {
    width: 100%;
    border-top: none;
    padding: 0 5px 10px;
  }
}
.contact .form__dd.noborder {
  border-bottom: none;
}
.contact .form .visually-hidden {
  /* コンテンツの流れから切り離す */
  position: absolute;
  /* 誤ったコードに対処するための回避策 */
  white-space: nowrap;
  /* 可能な限り文字サイズを小さくするための処理
         * (スクリーンリーダー中には height と width が 0 のものを無視するため)
         */
  width: 1px;
  height: 1px;
  /* オーバーフローしているコンテンツを隠す */
  overflow: hidden;
  /* 要素サイズを変更しうるプロパティのリセット */
  border: 0;
  padding: 0;
  /* 要素のどの部分が表示されるかを定義するもの */
  /* 古いブラウザでは使用できない */
  clip: rect(0 0 0 0);
  /* 最近のブラウザ用
         * コンテンツを非表示にする設定  */
  clip-path: inset(50%);
  /* 今現在なぜ-1pxがここで設定されるかは分かっていないそうです。
         * それに加えていくつか問題もあるそうです 
         * (参考: https://github.com/h5bp/html5-boilerplate/issues/1985)
         */
  margin: -1px;
}
.contact .form input[type=text],
.contact .form input[type=email],
.contact .form input[type=tel],
.contact .form input[type=number],
.contact .form textarea {
  background: #f7f7f7;
  border: solid 1px #cdd3d8;
  width: 100%;
  line-height: 1.6;
  font-size: 16px;
  padding: 10px;
  border-radius: 4px;
  box-sizing: border-box;
}
@media (max-width: 767.9px) {
  .contact .form input[type=text],
  .contact .form input[type=email],
  .contact .form input[type=tel],
  .contact .form input[type=number],
  .contact .form textarea {
    font-size: 12px;
    padding: 15px 10px;
  }
}
@media (min-width: 768px) {
  .contact .form input[type=number] {
    -moz-appearance: textfield !important;
  }
}
@media (min-width: 768px) {
  .contact .form input[type=number]::-webkit-inner-spin-button, .contact .form input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
  }
}
.contact .form .num {
  width: 100px !important;
  margin-right: 10px;
}
@media (max-width: 767.9px) {
  .contact .form .num {
    width: 80px !important;
  }
}
.contact .form textarea {
  width: 100%;
  padding: 10px;
}
@media (max-width: 767.9px) {
  .contact .form textarea {
    font-size: 12px;
  }
}
@media (min-width: 768px) {
  .contact .form__category {
    display: flex;
    align-items: center;
  }
}
.contact .form__category label {
  padding-left: 30px;
  position: relative;
}
@media (min-width: 768px) {
  .contact .form__category div:not(:first-child) {
    margin-left: 43px;
  }
}
@media (max-width: 767.9px) {
  .contact .form__category div:not(:first-child) {
    margin-top: 10px;
  }
}
.contact .form__category label::before,
.contact .form__category label::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}
.contact .form__category label::before {
  width: 24px;
  height: 24px;
  background: #fff;
  border: solid 1px #bcbcbc;
  left: 0px;
}
@media (max-width: 767.9px) {
  .contact .form__category label::before {
    width: 20px;
    height: 20px;
  }
}
.contact .form__category label::after {
  border-radius: 50%;
  opacity: 0;
  width: 18px;
  height: 18px;
  left: 4px;
  background: #0c8ee9;
}
@media (max-width: 767.9px) {
  .contact .form__category label::after {
    width: 14px;
    height: 14px;
  }
}
.contact .form__category label.radio-sq::before,
.contact .form__category label.radio-sq::after {
  border-radius: 0 !important;
}
.contact .form__category label.radio-sq::after {
  border-bottom: 2px solid #093a60;
  border-left: 2px solid #093a60;
  background: transparent;
  opacity: 0;
  height: 7px;
  width: 11px;
  transform: rotate(-45deg);
  top: 4px;
  left: 6px;
}
@media (max-width: 767.9px) {
  .contact .form__category label.radio-sq::after {
    top: 2px;
    left: 4px;
  }
}
.contact .form__category input:checked ~ label::after {
  opacity: 1;
}
.contact .form__select {
  position: relative;
  width: 300px;
  margin-bottom: 10px;
}
.contact .form__select::before, .contact .form__select::after {
  content: "";
  position: absolute;
  top: calc(50% - 5px);
  right: 20px;
  width: 2px;
  height: 9.4px;
  border-radius: 9999px;
  background-color: #aaaaaa;
  transform-origin: 50% calc(100% - 1px);
  z-index: 1;
}
.contact .form__select::before {
  transform: rotate(47.75deg);
}
.contact .form__select::after {
  transform: rotate(-47.75deg);
}
.contact .form select {
  position: relative;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #f7f7f7;
  border: solid 1px #cdd3d8;
  border-radius: 4px;
  font-size: 1.6rem;
  line-height: 1.6;
  padding: 10px;
  color: #222;
}
@media (max-width: 767.9px) {
  .contact .form select {
    font-size: 12px;
    padding: 15px 10px;
  }
}
.contact .form .privacy {
  margin-top: 65px;
}
@media (max-width: 767.9px) {
  .contact .form .privacy {
    margin-top: 50px;
  }
}
.contact .form .privacy__title {
  font-size: 1.9rem;
  font-weight: 500;
  background-color: #f6f7f8;
  padding: 15px;
}
.contact .form .privacy__text {
  margin-top: 30px;
  line-height: 1.875;
}
@media (min-width: 768px) {
  .contact .form .form-buttons {
    display: flex;
    justify-content: space-around;
  }
}
@media (max-width: 767.9px) {
  .contact .form .form-buttons {
    text-align: center;
    margin: 20px 0 80px;
  }
}
.contact .form .btn-submit {
  width: 320px;
  line-height: 70px;
  text-align: center;
  display: block;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background: #0c8ee9;
  border: 0;
  border-radius: 35px;
}
@media (min-width: 768px) {
  .contact .form .btn-submit:hover {
    background: #093a60;
    cursor: pointer;
  }
}
@media (max-width: 767.9px) {
  .contact .form .btn-submit {
    width: 275px;
    font-size: 14px;
    line-height: 65px;
  }
}
.contact .form .btn-submit-wrap {
  display: inline-block;
  position: relative;
  margin: 65px auto;
}
@media (max-width: 767.9px) {
  .contact .form .btn-submit-wrap {
    margin: 40px 0 0;
  }
}
.contact .form .btn-submit-wrap::before, .contact .form .btn-submit-wrap::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.contact .form .btn-submit-wrap::before {
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background: #4eb6ff;
  right: 15px;
}
.contact .form .btn-submit-wrap::after {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: #fff;
  right: 22px;
}
@media (min-width: 768px) {
  .contact .form .btn-submit-wrap:hover::before {
    background: #fff;
  }
}
@media (min-width: 768px) {
  .contact .form .btn-submit-wrap:hover::after {
    width: 0;
    height: 0;
    border-radius: 0;
    border-style: solid;
    border-width: 4px 0 4px 8px;
    border-color: transparent transparent transparent #4eb6ff;
    right: 20px;
  }
}

.contact-tel {
  margin-top: 10px;
}
.contact-tel__num {
  font-size: 3.5rem;
  font-family: aktiv-grotesk-extended, sans-serif;
  color: #093a60;
  text-align: center;
  margin-top: 30px;
}
@media (max-width: 767.9px) {
  .contact-tel__num {
    font-weight: 2.3rem;
  }
}
.contact-tel__num::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  background-image: url(/assets/images/contact/tel-icon.png);
  background-size: contain;
  background-position: 0 center;
  background-repeat: no-repeat;
  margin-right: 8px;
  transform: translateY(5px);
}
.contact-tel p {
  text-align: center;
  line-height: 1.875;
  margin-top: 10px;
}

.contact-email {
  margin-top: 80px;
}
.contact-email .form {
  margin-top: 0px;
}

/* ---------------------------------
KV
---------------------------------- */
.buisness .wrapper::before {
  content: "";
  width: 100%;
  height: 730px;
  background: url(/assets/images/business/kv_pc.jpg) center center no-repeat;
  background-size: cover;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
@media (max-width: 767.9px) {
  .buisness .wrapper::before {
    height: 400px;
    background: url(/assets/images/business/kv_sp.jpg) center center no-repeat;
    background-size: cover;
  }
}

@media (max-width: 767.9px) {
  .buisness .kv {
    padding-bottom: 0;
    height: 302px;
  }
}

@media (min-width: 768px) {
  .buisness .kv__in {
    height: 620px;
  }
}

.buisness .kv__lead {
  max-width: 550px;
}
@media (max-width: 767.9px) {
  .buisness .kv__lead {
    max-width: 280px;
  }
}

/*
.b-chart{
      display: flex;
      align-items: center;
      background: #f5faff;
      padding: 20px;

    .left-box {
      background-color: #0b3c5d;
      color: white;
      padding: 20px 30px;
      display: flex;
      align-items: center;
    }
    .left-box img {
      height: 50px;
      margin-right: 10px;
    }
    .middle-circle {
      background-color: #0096f0;
      color: white;
      border-radius: 50%;
      width: 140px;
      height: 140px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      font-weight: bold;
      margin: 0 30px;
      line-height: 1.4;
    }
    .right-box {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .main-title {
      font-size: 20px;
      font-weight: bold;
      text-align: center;
      width: 100%;
    }
    .subtitle {
      font-size: 13px;
      text-align: center;
      width: 100%;
    }
    .block {
      border: 2px solid #007bff;
      padding: 10px 20px;
      color: #007bff;
      font-weight: bold;
      background-color: white;
      text-align: center;
      width: 180px;
    }
}
*/
@media (min-width: 768px) {
  .b-outline .grid--2col-pc {
    margin-top: 90px;
  }
}
@media (max-width: 767.9px) {
  .b-outline .grid--1col-sp {
    margin-top: 30px;
  }
}
.b-outline__btn {
  margin-top: 80px;
}
@media (max-width: 767.9px) {
  .b-outline__btn {
    margin-top: 40px;
  }
}

.b-group {
  text-align: center;
  position: relative;
  background-image: url(/assets/images/business/group_bg_pc.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 90px 0 100px;
}
@media (max-width: 767.9px) {
  .b-group {
    padding: 70px 20px 60px;
    background-image: url(/assets/images/business/group_bg_sp.png);
  }
}
.b-group__title {
  font-size: 4.8rem;
  font-family: aktiv-grotesk-extended, sans-serif;
}
.b-group__title-sub {
  font-weight: 500;
}
.b-group__img {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .b-group__btn {
    position: absolute;
    right: 215px;
    bottom: 108px;
  }
}
@media (max-width: 767.9px) {
  .b-group__btn {
    margin-top: 30px;
  }
}
.b-group__btn a {
  line-height: 50px;
  display: inline-block;
  font-weight: 500;
  display: block;
  color: #111;
  background-image: url(/assets/images/business/icon.png);
  background-position: right 28px center;
  background-repeat: no-repeat;
  background-color: #fff;
  background-size: 16px auto;
  border: solid 1px #ddd;
  border-radius: 99px;
  padding: 0 50px;
}
@media (min-width: 768px) {
  .b-group__btn a:hover {
    color: #fff;
    background-color: #093a60;
    border-color: #093a60;
  }
}

.b-data-l {
  display: flex;
  justify-content: space-between;
  margin: 60px auto 40px;
}
@media (max-width: 767.9px) {
  .b-data-l {
    flex-wrap: wrap;
    gap: 10px;
    margin: 35px auto 40px;
    width: 320px;
  }
}
.b-data-l li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 260px;
  width: 296px;
  position: relative;
  box-sizing: border-box;
  background: #fff;
  border: solid 4px #093a60;
}
@media (max-width: 767.9px) {
  .b-data-l li {
    height: 140px;
    width: 155px;
  }
}
.b-data-l li::before {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  background-color: #f5f5f5;
  width: 100%;
  height: 100%;
  clip-path: polygon(0 100%, 100% 0%, 100% 100%);
}
.b-data-l__dt {
  color: #fff;
  background: #0c8ee9;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 5px 15px 8px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767.9px) {
  .b-data-l__dt {
    font-size: 1.1rem;
  }
}
.b-data-l__dt::after {
  content: "";
  display: block;
  width: 14px;
  height: 7px;
  background-color: #0c8ee9;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
}
@media (max-width: 767.9px) {
  .b-data-l__dt::after {
    width: 8px;
    height: 4px;
    bottom: -6px;
  }
}
.b-data-l__dd {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  font-size: 2.5rem;
  font-weight: bold;
  color: #093a60;
  text-align: center;
}
@media (max-width: 767.9px) {
  .b-data-l__dd {
    font-size: 1.4rem;
    margin-top: 12px;
  }
}
.b-data-l__XL {
  font-size: 6.5rem;
  font-family: aktiv-grotesk, sans-serif;
}
@media (max-width: 767.9px) {
  .b-data-l__XL {
    font-size: 3.5rem;
  }
}
.b-data-l__XS {
  font-size: 1.5rem;
  font-weight: 500;
}
@media (max-width: 767.9px) {
  .b-data-l__XS {
    font-size: 1rem;
  }
}/*# sourceMappingURL=common.css.map */