* {
  box-sizing: border-box;
}
body.is-fixed {
  overflow: hidden;
  position: fixed;
  width: 100vw;
}

.font-yugothic {
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif !important;
}

ul {
  list-style-type: none;
}

a {
  color: currentcolor;
  text-decoration: none;
  transition: all 0.2s ease 0s;
}

a:hover {
  opacity: 0.5;
}

img {
  max-width: 100%;
}
/* h1 {
  display: none;
} */
.c-bg {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.c-flex {
  display: flex;
  justify-content: space-between;
}
.c-main {
  margin: 30px 0 110px;
  font-family: "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
}
@media (max-width: 767px) {
  .c-main {
    margin: 40px 0 60px;
  }
}
/**Btn*/
.c-btn-list {
  display: flex;
  justify-content: center;
  gap: 20px 20px;
}

.c-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0px;
  position: relative;
  line-height: 1;
  transition: all 0.4s ease 0s;
}

.c-btn::before,
.c-btn::after {
  content: "";
  flex-shrink: 0;
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: inherit;
}

.c-btn:hover {
  opacity: 1;
}

.c-btn2 {
  border: 1px solid #0a1066;
  width: 320px;
  padding: 22px 5px;
  gap: 20px;
  font-size: 18px;
  color: #0a1066;
  justify-content: center;
  transition: 0.4s;
}
.c-btn2:hover,
.c-btn2.active {
  background-color: #0a1066;
  color: #fff;
}
.c-btn2::after {
  background-image: url("../img/common/ic-arr.png");
  width: 8px;
  height: 13px;
}
.c-btn2:hover::after,
.c-btn2.active::after {
  background-image: url("../img/common/ic-arr-hv.png");
}
@media (max-width: 1024px) {
  .c-btn-list {
    gap: 15px 20px;
  }
}
@media (max-width: 767px) {
  .c-btn2 {
    width: 48%;
    font-size: 13px;
    padding: 20px 5px;
    gap: 12px;
  }
  .c-btn-list {
    gap: 15px 10px;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .c-btn2::after {
    width: 6px;
    height: 11px;
  }
}
/*Custom btn*/

@media (max-width: 767px) {
}
/**End btn*/

/*Title*/
.c-title {
  font-family: "Yu Gothic";
  text-align: center;
  font-weight: 600;
  line-height: 1.8;
}

.c-title span {
  display: block;
  text-align: center;
}

/*custom*/
.c-title1 {
  font-size: 42px;
}

.c-title1 span {
  color: #0a1066;
  margin-bottom: 17px;
  font-size: 10px;
}

.c-title2 {
  font-size: 18px;
  line-height: 34px;
  font-weight: 500;
}
.c-subtitle {
  font-size: 18px;
  line-height: 38px;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .c-title1 {
    font-size: 38px;
  }
  .c-title2 {
    font-size: 16px;
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  .c-title1 {
    font-size: 24px;
    line-height: 1.6;
  }
  .c-title1 span {
    margin-bottom: 8px;
  }
  .c-title2 {
    font-size: 14px;
    line-height: 1.8;
  }
  .c-subtitle {
    font-size: 14px;
    line-height: 1.6;
  }
}
/**End Title */
/**Title */
.c-heading {
  font-weight: bold;
  border-bottom: 2px solid #ccc;
  padding-bottom: 26px;
  font-size: 24px;
  position: relative;
  line-height: 1.6;
}
.c-heading1 {
  /* border-bottom: 1px solid #111; */
  padding-left: 17px;
}
.c-heading1::after {
  content: "";
  height: 2px;
  width: 67px;
  background: #0a1066;
  position: absolute;
  bottom: -2px;
  left: 0;
}
.c-heading2 {
  padding-left: 40px;
  position: relative;
  padding-bottom: 22px;
}
.c-heading2::before {
  content: "";
  width: 12px;
  height: 27px;
  background-color: #0a1066;
  position: absolute;
  top: 4px;
  left: 11px;
  display: inline-block;
}
@media (max-width: 767px) {
  .c-heading {
    font-size: 18px;
    padding-left: 18px;
    padding-bottom: 16px;
  }
  .c-heading1::after {
    width: 45px;
  }
  .c-heading2::before {
    width: 5px;
    height: 19px;
    left: 8px;
    top: 4px;
  }
}
/**End Title */
