:root {
  --bc-blue: #093f8e;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

@media screen and (max-width: 900px) {
  .pc2 {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}

@media screen and (min-width: 901px) {
  .sp2 {
    display: none !important;
  }
}

.ov {
  transition: 0.3s;
}
.ov:hover {
  opacity: 0.75;
}

img[src*="_sp."] {
  width: 100%;
}

body {
  overflow-x: hidden;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 0 0 min(2.5%, 50px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
@media screen and (max-width: 768px) {
  header {
    padding: 10px 2.5%;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  }
}
header a.logo {
  width: 323px;
}
@media screen and (max-width: 768px) {
  header a.logo {
    width: 180px;
  }
}
header .navTgl {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
header .navTgl.ex + nav {
  translate: 0 0;
}
header .navTgl.ex i {
  background-color: transparent !important;
}
header .navTgl.ex i::before, header .navTgl.ex i::after {
  width: 50px;
}
header .navTgl.ex i::before {
  top: 0;
  rotate: 40deg;
}
header .navTgl.ex i::after {
  bottom: 0;
  rotate: -40deg;
}
header .navTgl i {
  display: flex;
  background-color: transparent;
  position: relative;
}
header .navTgl i, header .navTgl i::before, header .navTgl i::after {
  width: inherit;
  height: 3px;
  background-color: var(--bc-blue);
}
header .navTgl i::before, header .navTgl i::after {
  content: "";
  position: absolute;
  left: 50%;
  translate: -50% 0;
}
header .navTgl i::before {
  top: -13px;
}
header .navTgl i::after {
  bottom: -13px;
}
header nav {
  display: flex;
  flex-direction: column;
  max-width: 360px;
  width: 90%;
  padding: 30px 5% 50px;
  background-color: #fff;
  position: absolute;
  top: 100%;
  right: 0;
  translate: 100% 0;
  transition: translate 0.5s;
}
header nav a {
  padding: 10px;
  border-bottom: 1px solid #b5b5b5;
  color: var(--bc-blue);
  font-size: 20px;
  font-weight: bold;
}
header .cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 2px;
  width: 560px;
  padding: 20px 0;
  background-color: #fff;
  border-radius: 0 0 0 40px;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  header .cta {
    gap: 0 2%;
    width: 100%;
    padding: 15px 5%;
    border-radius: 20px 20px 0 0;
    position: fixed;
    left: 0;
    bottom: 0;
  }
}
header .cta svg {
  width: 100%;
  height: 100%;
  position: absolute;
  filter: grayscale(1) brightness(1.5);
}
header .cta a {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 240px;
  width: 48%;
  height: 60px;
  border: 2px solid #fff;
  border-radius: 30px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.2);
  color: #fff;
  font-size: min(3vw, 22px);
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 768px) {
  header .cta a {
    height: 50px;
    border-radius: 5px;
  }
}
header .cta a.btn-blue {
  background-color: var(--bc-blue);
}
header .cta a.btn-gold {
  background-color: #9e882f;
}

main section:not(.mv) {
  padding: 120px 5%;
}
@media screen and (max-width: 900px) {
  main section:not(.mv) {
    padding: 100px 5%;
  }
}
@media screen and (max-width: 768px) {
  main section:not(.mv) {
    padding: 68px 5%;
  }
}
@media screen and (max-width: 500px) {
  main section:not(.mv) {
    padding: 54px 5%;
  }
}
main section hgroup, main section h2 {
  font-weight: bold;
}
main section hgroup p, main section hgroup h2, main section h2 p, main section h2 h2 {
  font-weight: inherit;
}
main section hgroup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px 0;
  line-height: 1;
}
main section .ttl-grad {
  background: linear-gradient(90deg, rgb(9, 63, 142) 0%, rgb(57, 125, 173) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
@media screen and (max-width: 768px) {
  main section.earn {
    padding: 0;
  }
}
main section.earn .inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
main section.earn .inner h2 {
  margin-bottom: 50px;
  text-align: center;
  font-size: 50px;
  font-weight: bold;
}
main section.interview {
  background-color: #eee;
}
@media screen and (max-width: 768px) {
  main section.interview {
    padding: 72px 0;
  }
}
@media screen and (max-width: 500px) {
  main section.interview {
    padding: 54px 0;
  }
}
main section.interview .inner {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
}
main section.interview .inner hgroup {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  main section.interview .inner hgroup {
    width: 90%;
    margin: 0 auto 36px;
  }
}
main section.interview .inner hgroup h2 {
  font-size: 30px;
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  main section.interview .inner hgroup h2 {
    font-size: 26px;
  }
}
@media screen and (max-width: 768px) {
  main section.interview .inner hgroup h2 {
    font-size: 22px;
  }
}
main section.interview .inner hgroup p {
  font-size: 90px;
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  main section.interview .inner hgroup p {
    font-size: 68px;
  }
}
@media screen and (max-width: 768px) {
  main section.interview .inner hgroup p {
    font-size: 48px;
  }
}
main section.interview .inner .cntWrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
main section.interview .inner .cntWrap .cntBox {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  main section.interview .inner .cntWrap .cntBox {
    flex-wrap: wrap;
    gap: 18px 0;
  }
}
@media screen and (min-width: 769px) {
  main section.interview .inner .cntWrap .cntBox:nth-of-type(1) {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #b5b5b5;
  }
}
@media screen and (max-width: 768px) {
  main section.interview .inner .cntWrap .cntBox:nth-of-type(1) p.comment {
    margin-bottom: 34px !important;
    padding-bottom: 34px;
    border-bottom: 1px solid #b5b5b5;
  }
}
main section.interview .inner .cntWrap .cntBox .txt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 340px;
  width: 35.5%;
  padding-top: 80px;
  position: relative;
}
@media screen and (max-width: 768px) {
  main section.interview .inner .cntWrap .cntBox .txt {
    display: contents;
  }
}
main section.interview .inner .cntWrap .cntBox .txt .index {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
@media screen and (max-width: 768px) {
  main section.interview .inner .cntWrap .cntBox .txt .index {
    padding-left: 5vw;
    position: relative;
    z-index: 1;
  }
}
main section.interview .inner .cntWrap .cntBox .txt .index h3 {
  margin-bottom: 20px;
  font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  main section.interview .inner .cntWrap .cntBox .txt .index h3 {
    margin: clamp(30px, 9vw, 60px) 0 clamp(60px, 12vw, 80px);
  }
}
main section.interview .inner .cntWrap .cntBox .txt .index h3 span {
  padding: 10px 20px;
  background-color: #fff;
  line-height: 2.3;
  font-size: 30px;
  color: var(--bc-blue);
  font-weight: bold;
  white-space: nowrap;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
@media screen and (max-width: 768px) {
  main section.interview .inner .cntWrap .cntBox .txt .index h3 span {
    padding: 6px 10px;
    font-size: 20px;
  }
}
@media screen and (min-width: 769px) {
  main section.interview .inner .cntWrap .cntBox .txt .index .profile {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  main section.interview .inner .cntWrap .cntBox .txt .index .profile {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    background-color: #eee;
  }
}
main section.interview .inner .cntWrap .cntBox .txt .index .profile b {
  font-size: 24px;
}
main section.interview .inner .cntWrap .cntBox .txt .index .profile p.career {
  margin-top: 25px;
  padding: 3px 10px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  main section.interview .inner .cntWrap .cntBox .txt .index .profile p.career {
    margin-top: 20px;
  }
}
main section.interview .inner .cntWrap .cntBox .txt p.comment {
  line-height: 1.8;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  main section.interview .inner .cntWrap .cntBox .txt p.comment {
    width: 90%;
    margin: 0 auto;
  }
}
main section.interview .inner .cntWrap .cntBox .pic {
  max-width: 600px;
  width: 62.5%;
}
@media screen and (max-width: 768px) {
  main section.interview .inner .cntWrap .cntBox .pic {
    align-self: stretch;
    width: 0;
    position: relative;
  }
  main section.interview .inner .cntWrap .cntBox .pic img {
    max-width: none;
    width: 80vw;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    top: 0;
    right: 0;
  }
}
main section.reason .inner {
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
}
main section.reason .inner h2 {
  margin-bottom: 50px;
  text-align: center;
  font-size: 60px;
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  main section.reason .inner h2 {
    font-size: 48px;
  }
}
@media screen and (max-width: 768px) {
  main section.reason .inner h2 {
    margin-bottom: 28px;
    font-size: 28px;
  }
}
main section.reason .inner .cntWrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 60px 0;
}
@media screen and (max-width: 768px) {
  main section.reason .inner .cntWrap {
    gap: 32px 0;
  }
}
main section.reason .inner .cntWrap dl {
  width: 48%;
}
@media screen and (max-width: 768px) {
  main section.reason .inner .cntWrap dl {
    width: 100%;
  }
}
main section.reason .inner .cntWrap dl:has(dd img) {
  width: 100%;
}
main section.reason .inner .cntWrap dl:has(dd img) dd {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  main section.reason .inner .cntWrap dl:has(dd img) dd {
    flex-direction: column;
    gap: 12px 0;
  }
}
main section.reason .inner .cntWrap dl:has(dd img) dd * {
  width: 48%;
}
@media screen and (max-width: 768px) {
  main section.reason .inner .cntWrap dl:has(dd img) dd * {
    width: 100%;
  }
}
main section.reason .inner .cntWrap dl dt {
  display: flex;
  align-items: center;
  gap: 0 20px;
  margin-bottom: 20px;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  main section.reason .inner .cntWrap dl dt {
    gap: 0 15px;
    margin-bottom: 12px;
  }
}
main section.reason .inner .cntWrap dl dt img {
  width: 100px;
}
@media screen and (max-width: 768px) {
  main section.reason .inner .cntWrap dl dt img {
    width: 60px;
  }
}
main section.reason .inner .cntWrap dl dt span {
  color: var(--bc-blue);
  font-size: 30px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  main section.reason .inner .cntWrap dl dt span {
    font-size: 24px;
  }
}
main section.reason .inner .cntWrap dl dd p {
  line-height: 1.8;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  main section.reason .inner .cntWrap dl dd p {
    line-height: 1.6;
  }
}
main section.support {
  background: url(../img/support_bg.jpg) no-repeat top right/cover;
}
@media screen and (max-width: 768px) {
  main section.support {
    background-image: url(../img/support_bg_sp.jpg);
  }
}
main section.support .inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  color: #fff;
}
main section.support .inner hgroup {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  main section.support .inner hgroup {
    margin-bottom: 24px;
  }
}
main section.support .inner hgroup p {
  font-size: 34px;
}
@media screen and (max-width: 900px) {
  main section.support .inner hgroup p {
    font-size: 30px;
  }
}
@media screen and (max-width: 768px) {
  main section.support .inner hgroup p {
    font-size: 22px;
  }
}
main section.support .inner hgroup h2 {
  font-size: 60px;
}
@media screen and (max-width: 900px) {
  main section.support .inner hgroup h2 {
    font-size: 48px;
  }
}
@media screen and (max-width: 768px) {
  main section.support .inner hgroup h2 {
    font-size: 34px;
  }
}
main section.support .inner p.lead {
  margin-bottom: 40px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  main section.support .inner p.lead {
    margin-bottom: 28px;
  }
}
main section.support .inner .cntWrap {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}
main section.support .inner .cntWrap dl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 40px min(5%, 50px);
  background-color: rgba(255, 255, 255, 0.1);
}
@media screen and (max-width: 900px) {
  main section.support .inner .cntWrap dl {
    flex-direction: column;
    gap: 18px 0;
  }
}
@media screen and (max-width: 768px) {
  main section.support .inner .cntWrap dl {
    padding: 28px 5%;
  }
}
main section.support .inner .cntWrap dl dt {
  width: 250px;
  font-size: 36px;
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  main section.support .inner .cntWrap dl dt {
    width: 100%;
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  main section.support .inner .cntWrap dl dt {
    font-size: 26px;
  }
}
main section.support .inner .cntWrap dl dd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 720px;
}
@media screen and (min-width: 901px) {
  main section.support .inner .cntWrap dl dd {
    width: calc(100% - 250px);
  }
}
@media screen and (max-width: 900px) {
  main section.support .inner .cntWrap dl dd {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  main section.support .inner .cntWrap dl dd {
    flex-direction: column-reverse;
    gap: 16px 0;
  }
}
main section.support .inner .cntWrap dl dd p {
  width: calc(100% - 270px);
  text-align: justify;
}
@media screen and (max-width: 768px) {
  main section.support .inner .cntWrap dl dd p {
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  main section.support .inner .cntWrap dl dd img {
    max-width: 255px;
  }
}
main section.support .inner .cntWrap dl dd ul {
  display: grid;
  grid-template-columns: auto auto;
  gap: 10px;
  width: 100%;
  padding: 20px min(5%, 50px);
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  main section.support .inner .cntWrap dl dd ul {
    grid-template-columns: 1fr;
    gap: 6px 0;
  }
}
main section.support .inner .cntWrap dl dd ul li {
  display: flex;
  gap: 0 10px;
  color: #000;
}
@media screen and (max-width: 768px) {
  main section.support .inner .cntWrap dl dd ul li {
    gap: 0 8px;
  }
}
main section.support .inner .cntWrap dl dd ul li:nth-last-of-type(1) {
  grid-column: 1/3;
}
main section.support .inner .cntWrap dl dd ul li::before {
  content: "";
  min-width: 10px;
  height: 10px;
  margin-top: 6px;
  background-color: var(--bc-blue);
}
main section.flow .inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
main section.flow .inner h2 {
  margin-bottom: 30px;
  font-size: 60px;
}
@media screen and (max-width: 900px) {
  main section.flow .inner h2 {
    font-size: 48px;
  }
}
@media screen and (max-width: 768px) {
  main section.flow .inner h2 {
    margin-bottom: 24px;
    font-size: 36px;
  }
}
main section.flow .inner p {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  main section.flow .inner p {
    margin-bottom: 28px;
  }
}
main section.qa {
  background-color: #eee;
}
main section.qa .inner {
  display: flex;
  justify-content: start;
  align-items: flex-start;
  gap: 28px 5%;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  main section.qa .inner {
    flex-direction: column;
  }
}
main section.qa .inner h2 {
  line-height: 1.1;
  font-size: 50px;
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  main section.qa .inner h2 {
    font-size: 42px;
  }
}
@media screen and (max-width: 768px) {
  main section.qa .inner h2 {
    font-size: 32px;
  }
}
main section.qa .inner .cntWrap {
  width: calc(100% - 400px);
}
@media screen and (min-width: 901px) {
  main section.qa .inner .cntWrap {
    max-width: 650px;
  }
}
@media screen and (max-width: 900px) {
  main section.qa .inner .cntWrap {
    width: 100%;
  }
}
main section.qa .inner .cntWrap dl {
  padding-bottom: 20px;
  border-bottom: 1px solid #888;
}
@media screen and (max-width: 900px) {
  main section.qa .inner .cntWrap dl {
    padding-bottom: 15px;
  }
}
@media screen and (max-width: 768px) {
  main section.qa .inner .cntWrap dl {
    padding-bottom: 12px;
  }
}
main section.qa .inner .cntWrap dl:nth-of-type(n+2) {
  margin-top: 20px;
}
@media screen and (max-width: 900px) {
  main section.qa .inner .cntWrap dl:nth-of-type(n+2) {
    margin-top: 15px;
  }
}
@media screen and (max-width: 768px) {
  main section.qa .inner .cntWrap dl:nth-of-type(n+2) {
    margin-top: 12px;
  }
}
main section.qa .inner .cntWrap dl dt, main section.qa .inner .cntWrap dl dd {
  display: flex;
  align-items: center;
  gap: 0 20px;
  padding-right: 50px;
}
@media screen and (max-width: 768px) {
  main section.qa .inner .cntWrap dl dt, main section.qa .inner .cntWrap dl dd {
    gap: 0 15px;
    padding-right: 40px;
  }
}
main section.qa .inner .cntWrap dl dt img, main section.qa .inner .cntWrap dl dd img {
  min-width: 50px;
  max-width: 50px;
}
@media screen and (max-width: 768px) {
  main section.qa .inner .cntWrap dl dt img, main section.qa .inner .cntWrap dl dd img {
    min-width: 40px;
    max-width: 40px;
  }
}
main section.qa .inner .cntWrap dl dt p, main section.qa .inner .cntWrap dl dt span, main section.qa .inner .cntWrap dl dd p, main section.qa .inner .cntWrap dl dd span {
  padding: 10px 0;
}
main section.qa .inner .cntWrap dl dt {
  line-height: 1;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  main section.qa .inner .cntWrap dl dt {
    align-items: flex-start;
  }
}
main section.qa .inner .cntWrap dl dt.ex::before {
  height: 0;
}
main section.qa .inner .cntWrap dl dt::before, main section.qa .inner .cntWrap dl dt::after {
  content: "";
  background-color: var(--bc-blue);
  position: absolute;
  top: 25px;
}
@media screen and (max-width: 768px) {
  main section.qa .inner .cntWrap dl dt::before, main section.qa .inner .cntWrap dl dt::after {
    top: 20px;
  }
}
main section.qa .inner .cntWrap dl dt::before {
  width: 4px;
  height: 32px;
  right: 16px;
  translate: 50% -50%;
  transition: height 0.3s;
}
@media screen and (max-width: 768px) {
  main section.qa .inner .cntWrap dl dt::before {
    height: 28px;
    right: 14px;
  }
}
main section.qa .inner .cntWrap dl dt::after {
  width: 32px;
  height: 4px;
  right: 0;
  translate: 0 -50%;
}
@media screen and (max-width: 768px) {
  main section.qa .inner .cntWrap dl dt::after {
    width: 28px;
  }
}
main section.qa .inner .cntWrap dl dt span {
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  main section.qa .inner .cntWrap dl dt span {
    padding: 0;
  }
  main section.qa .inner .cntWrap dl dt span:first-line {
    line-height: 40px;
  }
}
main section.qa .inner .cntWrap dl dd {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed #b5b5b5;
}
@media screen and (max-width: 900px) {
  main section.qa .inner .cntWrap dl dd {
    margin-top: 15px;
    padding-top: 15px;
  }
}
@media screen and (max-width: 768px) {
  main section.qa .inner .cntWrap dl dd {
    margin-top: 12px;
    padding-top: 12px;
  }
}
main section.qa .inner .cntWrap dl dd p {
  text-align: justify;
  font-weight: 400;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100px;
  background-color: #000;
}
@media screen and (max-width: 768px) {
  footer {
    height: 160px;
    padding-bottom: 80px;
  }
}
footer small {
  color: #fff;
  font-size: 14px;
}