@charset "UTF-8";
/*===========================
  @use
===========================*/
@keyframes headerFixed {
  0% {
    position: absolute;
    transform: translateY(-100%);
  }
  1% {
    position: fixed;
  }
  100% {
    transform: translateY(0);
  }
}
/*===========================
  @use
===========================*/
/*===========================
  @use
===========================*/
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  font-size: inherit;
  font-style: normal;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

html {
  overflow-y: scroll;
}

blockquote,
q {
  quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}

input,
textarea {
  margin: 0;
  padding: 0;
}

button,
input,
select,
textarea {
  font: inherit;
  border: none;
  border-radius: 0;
  outline: none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #000;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
}

ol,
ul {
  list-style: none;
}

img {
  vertical-align: middle;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

caption,
th {
  text-align: left;
}

a {
  vertical-align: bottom;
  text-decoration: none;
  color: inherit;
}
a:focus {
  text-decoration: none;
  color: inherit;
}
@media (hover) {
  a:hover {
    text-decoration: none;
    color: inherit;
  }
}
.ua-ie a:hover {
  text-decoration: none;
  color: inherit;
}

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

a:focus {
  outline: none;
}

* {
  box-sizing: border-box;
}

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

/*===========================
  @use
===========================*/
body {
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  line-height: 1.5;
  width: 100%;
  height: 100%;
  color: #000;
  background: #fff;
  -webkit-text-size-adjust: 100%;
  overflow-X: hidden;
  box-sizing: border-box;
}
body p {
  line-height: 2.1875;
}

* {
  letter-spacing: 0.05em;
}
*::-moz-selection {
  background: #97cbe2;
}
*::selection {
  background: #97cbe2;
}
*::-moz-selection {
  background: #97cbe2;
}

@media screen and (max-width: 1200px) {
  .xlUp {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .lgUp {
    display: none;
  }
}

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

@media screen and (max-width: 576px) {
  .smUp {
    display: none;
  }
}

.xlUnder {
  display: none;
}
@media screen and (max-width: 1200px) {
  .xlUnder {
    display: block;
  }
}

.lgUnder {
  display: none;
}
@media screen and (max-width: 1024px) {
  .lgUnder {
    display: block;
  }
}

.mdUnder {
  display: none;
}
@media screen and (max-width: 768px) {
  .mdUnder {
    display: block;
  }
}

.smUnder {
  display: none;
}
@media screen and (max-width: 576px) {
  .smUnder {
    display: block;
  }
}

.global-header + main {
  margin-top: 100px;
}
@media screen and (max-width: 576px) {
  .global-header + main {
    margin-top: 70px;
  }
}
.global-header.home + main {
  margin-top: 0;
}

.global-header__wrap {
  width: 100%;
  height: 100px;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  transition: background-color 0.3s, position 0s;
}
.home .global-header__wrap {
  background-color: rgba(0, 0, 0, 0);
  color: #fff;
}
.open .global-header__wrap, .fixed .global-header__wrap {
  background-color: #fff;
  color: #000;
}
.fixed .global-header__wrap {
  animation-name: headerFixed;
  animation-duration: 0.3s;
  animation-fill-mode: backwards;
  position: fixed;
}
@media screen and (max-width: 576px) {
  .global-header__wrap {
    height: 70px;
  }
}

.global-header__inner {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 100;
}

.global-header__logo {
  font-weight: 700;
  color: #0053A5;
  line-height: 1;
}
.global-header__logo img {
  width: 210px;
  margin-right: 18px;
}
@media screen and (max-width: 576px) {
  .global-header__logo img {
    width: 140px;
    margin-right: 10px;
  }
}
.home .global-header__logo {
  color: #fff;
}
.open .global-header__logo, .fixed .global-header__logo {
  color: #0053A5;
}
@media screen and (max-width: 576px) {
  .global-header__logo {
    font-size: 14px;
  }
}

.global-header__content {
  display: flex;
  align-items: center;
}

.global-header__outside-nav {
  display: flex;
  gap: 36px;
  font-weight: 700;
  margin-right: 36px;
}
@media screen and (max-width: 1024px) {
  .global-header__outside-nav {
    display: none;
  }
}

.global-header__link a:hover, .global-header__link a:focus {
  color: #003b93;
}

.ham-menu {
  position: relative;
  width: 44px;
  height: 44px;
  background-color: #000;
  border-radius: 50%;
  cursor: pointer;
}
.ham-menu span {
  position: absolute;
  left: 14px;
  height: 1px;
  background-color: #fff;
}
.ham-menu, .ham-menu span {
  display: inline-block;
  box-sizing: border-box;
  transition: all 0.5s;
}
.ham-menu span:nth-of-type(1) {
  width: 16px;
  top: 17px;
}
.ham-menu span:nth-of-type(2) {
  width: 12px;
  top: 22px;
}
.ham-menu span:nth-of-type(3) {
  width: 16px;
  bottom: 16px;
}
.ham-menu.open {
  background-color: #66ccff;
}
.ham-menu.open span {
  background-color: #000;
}
.ham-menu.open span:nth-of-type(1) {
  transform: translateY(5px) rotate(45deg);
}
.ham-menu.open span:nth-of-type(2) {
  opacity: 0;
}
.ham-menu.open span:nth-of-type(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.global-nav {
  position: absolute;
  width: 100vw;
  height: auto;
  max-height: calc(100% - 100px);
  padding: 50px;
  background-color: #363636;
  color: #fff;
  top: 0;
  left: 0;
  transition: all 0.3s;
  z-index: 99;
  transform: translateY(-100%);
  overflow: auto;
}
.global-nav.open {
  transform: translateY(100px);
}
.fixed .global-nav {
  position: fixed;
}
@media screen and (max-width: 576px) {
  .global-nav {
    padding: 30px 20px;
    height: calc(100% - 70px);
    max-height: 100%;
  }
  .global-nav.open {
    transform: translateY(70px);
  }
}

.global-nav__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .global-nav__inner {
    justify-content: center;
    gap: 0 6%;
  }
}

.global-nav__link {
  width: 240px;
}
@media screen and (max-width: 1024px) {
  .global-nav__link {
    width: 47%;
  }
}

.global-nav__item {
  width: 100%;
}
.global-nav__item:not(:first-child) {
  margin-top: 28px;
}
.global-nav__item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 576px) {
  .global-nav__item a {
    font-size: 12px;
  }
}
.global-nav__item a::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  transform-origin: left top;
  transform: scale(0, 1);
  transition: transform 0.2s;
}
.global-nav__item a::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  background: url(../img/common/arrow_white.svg) no-repeat center center;
}
.global-nav__item a:hover, .global-nav__item a:focus {
  color: #fff;
}
.global-nav__item a:hover::before, .global-nav__item a:focus::before {
  transform: scale(1, 1);
}
@media screen and (max-width: 576px) {
  .global-nav__item {
    min-width: 0;
    width: 100%;
  }
}

.global-nav__external {
  max-width: 330px;
}
@media screen and (max-width: 1200px) {
  .global-nav__external {
    max-width: 280px;
  }
}
@media screen and (max-width: 1024px) {
  .global-nav__external {
    max-width: none;
    width: 100%;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #969696;
  }
}

.global-nav__sns {
  height: 30px;
  margin-top: 28px;
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .global-nav__sns {
    justify-content: center;
  }
}
.global-nav__sns a, .global-nav__sns img {
  height: 100%;
  width: auto;
  transition: opacity 0.3s;
}
.global-nav__sns a:hover, .global-nav__sns a:focus {
  opacity: 0.7;
}

.global-nav__sns-tiktok img {
  height: 16px;
}

.global-nav__bnr {
  width: 100%;
  margin-top: 30px;
  text-align: center;
}

.side-link {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-flow: column;
  align-items: flex-end;
  gap: 4px;
  z-index: 98;
}
@media screen and (max-width: 768px) {
  .side-link {
    justify-content: center;
    width: 100%;
    top: auto;
    bottom: 0;
    transform: translateY(0);
    flex-flow: row;
  }
}

.side-link__item {
  height: 162px;
}
@media screen and (max-width: 768px) {
  .side-link__item {
    height: 50px;
    max-width: 50%;
  }
}
.side-link__item img {
  height: 100%;
  width: auto;
  max-width: none;
}

.global-footer {
  padding: 46px 0 0;
}

.global-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 30px 0;
}
@media screen and (max-width: 1024px) {
  .global-footer__inner {
    flex-wrap: wrap;
  }
}

.global-footer-link {
  width: 50%;
}
.global-footer-link .btn-wrap {
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .global-footer-link .btn-wrap {
    justify-content: center;
  }
}
.global-footer-link .btn {
  max-width: 265px;
}
@media screen and (max-width: 1024px) {
  .global-footer-link {
    width: 100%;
    margin-bottom: 30px;
  }
}

.global-footer-link__logo {
  margin-bottom: 26px;
}
@media screen and (max-width: 768px) {
  .global-footer-link__logo {
    text-align: center;
  }
}

.global-footer-nav {
  display: flex;
  gap: 14px 0;
}
@media screen and (max-width: 1024px) {
  .global-footer-nav {
    flex-wrap: wrap;
  }
}

.global-footer-nav__list {
  min-width: 190px;
}
.global-footer-nav__list:not(:last-child) {
  margin-right: 20px;
}

.global-footer-nav__item {
  font-weight: 500;
}
.global-footer-nav__item a {
  display: block;
  position: relative;
}
.global-footer-nav__item a::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #003b93;
  position: absolute;
  bottom: 0;
  left: 0;
  transform-origin: left top;
  transform: scale(0, 1);
  transition: transform 0.2s;
}
.global-footer-nav__item a:hover, .global-footer-nav__item a:focus {
  color: #003b93;
}
.global-footer-nav__item a:hover::before, .global-footer-nav__item a:focus::before {
  transform: scale(1, 1);
}
.global-footer-nav__item:not(:first-child) {
  margin-top: 14px;
}

.global-footer-sns {
  flex-shrink: 0;
  margin-right: 50px;
}
@media screen and (max-width: 576px) {
  .global-footer-sns {
    display: flex;
    gap: 20px;
  }
}

.global-footer-sns__link {
  display: block;
  width: 30px;
  margin-bottom: 20px;
}
@media screen and (max-width: 576px) {
  .global-footer-sns__link {
    margin-bottom: 0;
  }
}

.global-footer-sns__link--wide {
  display: block;
  width: 55px;
  margin-bottom: 20px;
}
@media screen and (max-width: 576px) {
  .global-footer-sns__link--wide {
    margin-bottom: 0;
  }
}

.copyright {
  display: block;
  margin-top: 42px;
  padding: 20px 65px;
  color: #c9c9c9;
  border-top: 2px solid #EFEFEF;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .copyright {
    padding: 20px 65px 80px;
  }
}

.c-scroll {
  position: absolute;
  left: 6%;
  bottom: -10%;
  /* 上から下にかけて丸が透過→不透明→透過する */
}
@media screen and (max-width: 1400px) {
  .c-scroll {
    bottom: -10%;
  }
}
@media screen and (max-width: 768px) {
  .c-scroll {
    bottom: -6%;
  }
}
@media screen and (max-width: 576px) {
  .c-scroll {
    bottom: -8%;
  }
}
.c-scroll::before {
  position: absolute;
  right: -3.1px;
  bottom: 3rem;
  width: 8px;
  height: 8px;
  content: "";
  background: #fff;
  border-radius: 50%;
  animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}
.c-scroll::after {
  position: absolute;
  right: 0;
  bottom: 3rem;
  width: 1px;
  height: 13vw;
  content: "";
  background: #fff;
}
.c-scroll.top-scroll {
  right: initial;
}
@media (--mobile) {
  .c-scroll.top-scroll {
    display: block;
  }
}
.c-scroll.top-scroll::before {
  animation: circlemove02 1.6s ease-in-out infinite;
}
.c-scroll.top-scroll::after {
  height: 21vw;
}
@media screen and (max-width: 768px) {
  .c-scroll.top-scroll::after {
    height: 35vw;
  }
}
.c-scroll.mg-scroll {
  right: initial;
  right: 3.5rem;
  bottom: 0;
}
@media (--mobile) {
  .c-scroll.mg-scroll {
    display: block;
  }
}
.c-scroll.mg-scroll::before {
  animation: circlemove02 2s ease-in-out infinite;
}
.c-scroll.mg-scroll::after {
  height: 14rem;
}
@keyframes circlemove {
  0% {
    bottom: 10rem;
  }
  100% {
    bottom: 3rem;
  }
}
@keyframes circlemove02 {
  0% {
    bottom: 24vw;
    opacity: 0;
  }
  20% {
    bottom: 20vw;
    opacity: 1;
  }
  80% {
    bottom: 8vw;
    opacity: 1;
  }
  100% {
    bottom: 3vw;
    opacity: 0;
  }
}
@media screen and (max-width: 768px) {
  @keyframes circlemove02 {
    0% {
      bottom: 45vw;
      opacity: 0;
    }
    20% {
      bottom: 39vw;
      opacity: 1;
    }
    80% {
      bottom: 8vw;
      opacity: 1;
    }
    100% {
      bottom: 3vw;
      opacity: 0;
    }
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}

.content {
  width: 100%;
  max-width: calc(1240px + 65px * 2);
  margin: auto;
  padding-right: 65px;
  padding-left: 65px;
}
@media screen and (max-width: 768px) {
  .content {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.min-content {
  width: 100%;
  max-width: calc(1030px + 65px * 2);
  margin: auto;
  padding-right: 65px;
  padding-left: 65px;
}
@media screen and (max-width: 768px) {
  .min-content {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.section {
  padding: 150px 0;
}
@media screen and (max-width: 768px) {
  .section {
    padding: 70px 0;
  }
}

.section__footer-line {
  position: relative;
}
.section__footer-line::after {
  content: "";
  display: block;
  width: calc(100% - 65px * 2);
  height: 1px;
  max-width: 1240px;
  background-color: #e2e2e2;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .section__footer-line::after {
    width: calc(100% - 15px * 2);
  }
}

.lower-section {
  padding: 100px 0 120px;
}
@media screen and (max-width: 768px) {
  .lower-section {
    padding: 50px 0;
  }
}

.block + .block {
  padding-top: 100px;
}
@media screen and (max-width: 576px) {
  .block + .block {
    padding-top: 60px;
  }
}

.btn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
}

.btn-wrap--left {
  justify-content: flex-start;
}

.btn-wrap--section-bottom {
  margin-top: 63px;
}

.btn {
  display: inline-block;
  width: 100%;
  max-width: 330px;
  text-align: center;
}

.btn--blue {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background-color: #003b93;
  padding: 20px;
  border-radius: 100px;
  transition: all 0.2s;
}
.btn--blue:hover, .btn--blue:focus {
  color: #fff;
  background-color: #66ccff;
}

.btn--white {
  font-size: 15px;
  font-weight: 700;
  color: #363636;
  background-color: #fff;
  padding: 20px;
  border-radius: 100px;
  transition: all 0.2s;
}
.btn--white:hover, .btn--white:focus {
  color: #fff;
  background-color: #66ccff;
}

.btn--orange {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background-color: #eba03b;
  padding: 20px;
  border-radius: 100px;
  transition: all 0.2s;
}
.btn--orange:hover, .btn--orange:focus {
  color: #fff;
  background-color: #66ccff;
}

.btn--arrow {
  position: relative;
}
.btn--arrow::after {
  content: "";
  width: 15px;
  height: 15px;
  background: url(../img/common/btn_arrow_white.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.btn--cocoa {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background-color: #231815;
  padding: 20px;
  transition: all 0.2s;
}
.btn--cocoa:hover, .btn--cocoa:focus {
  color: #fff;
  background-color: #66ccff;
}

.bullet-list {
  margin: 1em 0;
}
@media screen and (max-width: 576px) {
  .bullet-list {
    margin: 10px 0;
  }
}
@media screen and (max-width: 576px) {
  .bullet-list + .bullet-list {
    margin: 0 0 10px;
  }
}
.bullet-list > li {
  padding-left: 1.2em;
  position: relative;
}
.bullet-list > li:not(:first-child) {
  margin-top: 10px;
}
.bullet-list > li::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  background-color: #003b93;
  position: absolute;
  top: 5px;
  left: 0;
}

.bullet-list__title {
  font-weight: 700;
  color: #003b93;
}

.bullet-list--small-bullet {
  margin: 1em 0;
}
@media screen and (max-width: 576px) {
  .bullet-list--small-bullet {
    margin: 10px 0;
  }
}
@media screen and (max-width: 576px) {
  .bullet-list--small-bullet + .bullet-list--small-bullet {
    margin: 0 0 10px;
  }
}
.bullet-list--small-bullet li {
  padding-left: 1.2em;
  position: relative;
}
.bullet-list--small-bullet li:not(:first-child) {
  margin-top: 10px;
}
.bullet-list--small-bullet li::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #003b93;
  position: absolute;
  top: 11px;
  left: 0;
}

.text {
  line-height: 2.1875;
}
.text + .text {
  margin-top: 50px;
}
@media screen and (max-width: 576px) {
  .text + .text {
    margin-top: 25px;
  }
}

.text--link {
  color: #3461ac;
  text-decoration: underline;
}

.text--indent {
  display: inline-block;
  text-indent: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
.text--indent::after {
  content: ".";
  display: inline-block;
  width: 0;
  color: transparent;
  pointer-events: none;
}

.text--center {
  text-align: center;
}

.text--bold {
  font-weight: 700;
}

.text--note {
  line-height: 1.5;
  font-size: 13px;
}

.section-heading {
  text-align: center;
  margin-bottom: 63px;
}
@media screen and (max-width: 576px) {
  .section-heading {
    margin-bottom: 40px;
  }
}

.section-heading__title {
  font-weight: 900;
  font-size: 52px;
}
@media screen and (max-width: 1024px) {
  .section-heading__title {
    font-size: 36px;
    line-height: 2;
  }
}

.section-heading__en {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid;
  padding: 0 10px;
}

.section-heading__lead {
  margin-top: 30px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.6111111111;
}
@media screen and (max-width: 768px) {
  .section-heading__lead {
    font-size: 24px;
  }
}

.bnr-area {
  display: flex;
  flex-wrap: wrap;
}
.bnr-area .bnr {
  max-width: none;
  border-radius: 0;
}

.bnr-area--gap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  row-gap: 0px;
}
.bnr-area--gap .bnr {
  max-width: none;
  max-height: 450px;
}
.bnr-area--gap .bnr--column2 {
  width: calc(50% - 10px);
}
@media screen and (max-width: 576px) {
  .bnr-area--gap .bnr--column2 {
    width: 100%;
  }
}
.bnr-area--gap .bnr--column2.rela {
  position: relative;
  width: 100%;
}
.bnr-area--gap .bnr--column3 {
  width: calc(33.3333333333% - 20px);
  max-height: 330px;
}
@media screen and (max-width: 1024px) {
  .bnr-area--gap .bnr--column3 {
    width: calc(50% - 20px);
  }
}
@media screen and (max-width: 576px) {
  .bnr-area--gap .bnr--column3 {
    width: 100%;
  }
}

.bnr {
  display: block;
  margin: auto;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  max-width: 610px;
}
.bnr::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);
  position: absolute;
  top: 0;
  left: 0;
  transition: background-color 0.3s;
}
.bnr:hover::before, .bnr:focus::before {
  background-color: rgba(0, 0, 0, 0.2);
}

.bnr--column1 {
  width: 100%;
}
.bnr--column1 .bnr__title {
  font-size: 52px;
  position: relative;
}
.bnr--column1 .bnr__title::after {
  content: "";
  position: absolute;
  background-image: url(../img/top/img-text-bg.png);
  background-size: cover;
  width: 133%;
  height: 100%;
  left: -7%;
  z-index: -10;
  bottom: -10%;
}
@media screen and (max-width: 1200px) {
  .bnr--column1 .bnr__title {
    font-size: 36px;
  }
}
@media screen and (max-width: 576px) {
  .bnr--column1 .bnr__title {
    font-size: 32px;
  }
}

.bnr--column2 {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .bnr--column2 {
    width: 100%;
  }
}

.bnr--column3 {
  width: 33.3333333333%;
}
@media screen and (max-width: 1024px) {
  .bnr--column3 {
    width: 50%;
  }
}
@media screen and (max-width: 576px) {
  .bnr--column3 {
    width: 100%;
  }
}
.bnr--column3 .bnr__title {
  position: relative;
}
.bnr--column3 .bnr__title::after {
  content: "";
  position: absolute;
  background-image: url(../img/top/img-text-bg.png);
  background-size: cover;
  width: 113%;
  height: 83%;
  left: -5%;
  z-index: -10;
  bottom: -6%;
}
@media screen and (max-width: 768px) {
  .bnr--column3 .bnr__title::after {
    width: 129%;
    height: 99%;
    left: -5%;
    bottom: -11%;
  }
}
@media screen and (max-width: 768px) {
  .bnr--column3.mediahalf {
    width: 100%;
  }
}

.bnr__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.bnr__content {
  color: #fff;
  font-weight: 700;
  text-align: start;
  width: 90%;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  bottom: 0;
}

.bnr__sub-en {
  display: block;
  font-size: 18px;
  color: #66ccff;
  color: #fff;
  font-weight: 400;
  font-family: "Raleway", "Noto Sans JP", sans-serif;
  font-style: italic;
  margin-bottom: 44px;
  margin-bottom: -8px;
}
@media screen and (max-width: 1200px) {
  .bnr__sub-en {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .bnr__sub-en {
    font-size: 12px;
    margin-bottom: 4px;
  }
}

.bnr__title {
  font-size: 29px;
}
@media screen and (max-width: 1200px) {
  .bnr__title {
    font-size: 24px;
  }
}

.bnr__text {
  font-size: 28px;
  font-weight: 500;
  line-height: 42px;
  margin-bottom: -30px;
  margin-top: 18px;
}
@media screen and (max-width: 1200px) {
  .bnr__text {
    font-size: 24px;
  }
}
@media screen and (max-width: 576px) {
  .bnr__text {
    font-size: 16px;
    margin-bottom: -29px;
    margin-top: 5px;
    line-height: 28px;
  }
}

.label-bnr {
  position: relative;
  border-radius: 5px;
}
.label-bnr::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  transition: background-color 0.3s;
  bottom: 7%;
}
@media screen and (max-width: 768px) {
  .label-bnr::before {
    bottom: 0%;
  }
}
.label-bnr:hover::before, .label-bnr:focus::before {
  background-color: rgba(0, 0, 0, 0.2);
}

.label-bnr__content {
  font-weight: 700;
  text-align: center;
  width: 90%;
  align-items: center;
  display: flex;
  padding-left: 2%;
  width: 100%;
}
@media screen and (max-width: 576px) {
  .label-bnr__content {
    padding-bottom: 5px;
  }
}
.label-bnr__content.colmun {
  flex-direction: column;
}
.label-bnr__content span {
  font-size: min(2vw, 35px);
  color: #3461AC;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .label-bnr__content span {
    font-size: min(3.5vw, 35px);
  }
}
@media screen and (max-width: 576px) {
  .label-bnr__content span {
    font-size: min(3.8vw, 35px);
  }
}

.label-bnr__title {
  display: inline-block;
  font-size: min(2.3vw, 27px);
  font-weight: 700;
  margin-left: 8px;
  background-color: #fff;
}
.label-bnr__title.special {
  padding: 0 28px;
}
@media screen and (max-width: 768px) {
  .label-bnr__title {
    font-size: min(3vw, 35px);
  }
}
@media screen and (max-width: 576px) {
  .label-bnr__title {
    font-size: min(4vw, 35px);
  }
}

.label-bnr__text {
  display: inline-block;
  font-size: min(1vw, 16px);
  font-weight: 600;
  margin-left: 20px;
  padding-bottom: 1%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .label-bnr__text {
    position: absolute;
    color: #fff;
    margin-left: 0;
    z-index: 1;
    bottom: 13%;
    left: 4%;
    font-size: min(1.9vw, 35px);
  }
}
@media screen and (max-width: 576px) {
  .label-bnr__text {
    font-size: min(2.5vw, 35px);
    bottom: 26%;
  }
}
.label-bnr__text::before {
  position: absolute;
  content: "";
  background-image: url(../img/top/img-p-back.svg);
  width: 100%;
  height: auto;
  background-size: cover;
  aspect-ratio: 232/19;
  bottom: -22%;
  z-index: -10;
  left: -2%;
}
.label-bnr__img {
  width: 100%;
  height: 73.6%;
  margin-top: 10px;
}
.label-bnr__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.bnr--arrow-black::after {
  content: "";
  display: block;
  width: 45px;
  height: 45px;
  background: url(../img/common/bnr_arrow_black2.svg) no-repeat center center;
  background-size: contain;
  margin: 25px auto 0;
  position: absolute;
  top: -8px;
  right: 1px;
}
.bnr--arrow-black.topsp::after {
  width: 70px;
  height: 70px;
  top: 90px;
  right: 10px;
}
@media screen and (max-width: 1200px) {
  .bnr--arrow-black.topsp::after {
    width: 45px;
    height: 45px;
    top: 56px;
    right: 1px;
  }
}

.bnr--arrow-skyblue {
  position: absolute;
  top: 39%;
  left: 0;
}
.bnr--arrow-skyblue::after {
  content: "";
  display: block;
  width: 35px;
  height: 35px;
  background: url(../img/common/bnr_arrow_blue.svg) no-repeat center center;
  background-size: contain;
  margin: 21px auto 0;
}

.bg--gallery {
  background-color: #EFEFEF;
}

.bg--blue {
  color: #fff;
  background-color: #003b93;
}

.bg--azure {
  color: #fff;
  background-color: #3461ac;
}

.bg--catskill {
  background-color: #E3E7F2;
}

.bg--half-gallery {
  background: linear-gradient(180deg, transparent 0%, transparent 50%, #EFEFEF 50%, #EFEFEF 100%);
}

.swiper-container {
  position: relative;
}

.swiper {
  width: 100%;
}

.swiper-slide {
  padding: 0 10px;
}

.swiper-button-prev {
  width: 35px;
  height: 35px;
  background: url(../img/common/bnr_arrow_black.svg) no-repeat center center;
  background-size: contain;
  left: 2%;
  top: 40%;
  transform: rotate(180deg);
}
.swiper-button-prev::after {
  font-size: 0;
}

.swiper-button-next {
  width: 35px;
  height: 35px;
  background: url(../img/common/bnr_arrow_black.svg) no-repeat center center;
  background-size: contain;
  right: 2%;
  top: 40%;
}
.swiper-button-next::after {
  font-size: 0;
}

.loop-swiper .swiper-wrapper {
  transition-timing-function: linear;
}

.card-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 80px 20px;
}
@media screen and (max-width: 768px) {
  .card-wrap {
    gap: 40px 20px;
  }
}

.card-wrap__title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  margin-left: 10px;
}

.card:hover, .card:focus {
  color: #3461ac;
}
.card:hover .card__img img, .card:focus .card__img img {
  transform: scale(1.05);
}

.card__img {
  width: 100%;
  padding-top: 65%;
  overflow: hidden;
  position: relative;
}
.card__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: transform 0.2s;
}
.card__img .card__category {
  position: absolute;
  bottom: 16px;
  left: 20px;
}

.card__text {
  padding: 20px;
  font-weight: 500;
  line-height: 1.875;
}
@media screen and (max-width: 576px) {
  .card__text {
    padding: 5px 20px;
  }
}

.card__category-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 20px;
}

.card__category {
  font-size: 14px;
  letter-spacing: 0;
  padding: 0 10px;
}
.card__category:not(:first-child) {
  border-left: 1px solid;
}

.card__time {
  font-family: "Raleway", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  margin-top: 7px;
  padding: 0 10px 0 20px;
}

.card-recruit__content {
  padding: 20px 17px;
}

.card-recruit__title {
  padding: 16px 0 24px;
  margin-bottom: 22px;
  border-bottom: 1px solid #000;
  line-height: 1.875;
  font-weight: 500;
}
@media screen and (max-width: 576px) {
  .card-recruit__title {
    padding: 10px 0 13px;
    margin-bottom: 13px;
  }
}

.card-recruit__info {
  font-weight: 500;
  margin-bottom: 30px;
}
@media screen and (max-width: 576px) {
  .card-recruit__info {
    margin-bottom: 15px;
  }
}

.category-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 45px 0 62px;
}
@media screen and (max-width: 576px) {
  .category-wrap {
    margin: 20px 0 40px;
  }
}

.category {
  display: inline-block;
  border-radius: 100px;
  min-width: 160px;
  font-weight: bold;
  border: 3px solid;
  padding: 15px;
  text-align: center;
  transition: all 0.2s;
}
.category:nth-child(4n+2), .category.category-news {
  color: #003b93;
  border-color: #003b93;
}
.category:nth-child(4n+2):hover, .category:nth-child(4n+2):focus, .category:nth-child(4n+2).is-active, .category:nth-child(4n+2).current, .category.category-news:hover, .category.category-news:focus, .category.category-news.is-active, .category.category-news.current {
  border-color: #003b93;
  background-color: #003b93;
}
.category:nth-child(4n+3), .category.category-event {
  color: #eba03b;
  border-color: #eba03b;
}
.category:nth-child(4n+3):hover, .category:nth-child(4n+3):focus, .category:nth-child(4n+3).is-active, .category:nth-child(4n+3).current, .category.category-event:hover, .category.category-event:focus, .category.category-event.is-active, .category.category-event.current {
  border-color: #eba03b;
  background-color: #eba03b;
}
.category:nth-child(4n+4), .category.category-internship {
  color: #3D9137;
  border-color: #3D9137;
}
.category:nth-child(4n+4):hover, .category:nth-child(4n+4):focus, .category:nth-child(4n+4).is-active, .category:nth-child(4n+4).current, .category.category-internship:hover, .category.category-internship:focus, .category.category-internship.is-active, .category.category-internship.current {
  border-color: #3D9137;
  background-color: #3D9137;
}
.category:hover, .category:focus, .category.is-active, .category.current {
  color: #fff;
  border-color: #003b93;
  background-color: #003b93;
}

.lower-mv {
  height: 500px;
  position: relative;
}
.lower-mv::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/common/mv_cover.png);
  background-size: 2px;
  position: absolute;
  top: 0;
  left: 0;
}

.lower-mv__img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.lower-mv__img img {
  max-width: none;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.lower-mv__content {
  height: 100%;
  width: 100%;
  color: #fff;
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.lower-mv__heading {
  flex-grow: 1;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
}

.lower-mv__title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.3653846154;
}
@media screen and (max-width: 576px) {
  .lower-mv__title {
    font-size: 32px;
  }
}

.lower-mv__en {
  background-color: #003b93;
  font-size: 20px;
  font-weight: 700;
  padding: 5px 10px;
  margin-top: 12px;
}
@media screen and (max-width: 576px) {
  .lower-mv__en {
    font-size: 18px;
  }
}

.breadcrumbs {
  display: block;
  margin: 10px 0;
  font-size: 14px;
}

.breadcrumbs--job {
  display: block;
  font-size: 14px;
}

.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
}

.breadcrumbs__item:not(:last-child)::after {
  content: "＞";
  display: inline-block;
  margin: 0 5px;
}

.block-wrap {
  border: 2px solid #003b93;
  padding: 90px 0;
  margin: 100px auto;
}
@media screen and (max-width: 576px) {
  .block-wrap {
    padding: 40px 0;
    margin: 60px auto;
  }
}
.block-wrap .block + .block {
  position: relative;
}
.block-wrap .block + .block::before {
  content: "";
  display: block;
  width: 1030px;
  height: 1px;
  background-color: #EFEFEF;
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1200px) {
  .block-wrap .block + .block::before {
    width: calc(100% - 65px * 2);
  }
}
@media screen and (max-width: 768px) {
  .block-wrap .block + .block::before {
    width: calc(100% - 15px * 2);
  }
}
@media screen and (max-width: 576px) {
  .block-wrap .block + .block::before {
    top: 30px;
  }
}

.block__heading {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 40px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .block__heading {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

.block__heading--center {
  text-align: center;
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  margin: 0 40px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .block__heading--center {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

.block__heading-box {
  color: #fff;
  background: #003b93;
  padding: 10px 20px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  line-height: 1.8;
}
@media screen and (max-width: 576px) {
  .block__heading-box {
    padding: 4px 10px;
  }
}
.block__heading-box.white {
  color: #003b93;
  background: #fff;
}

.block__subheading {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #003b93;
  margin-bottom: 30px;
}
.block__subheading:not(:first-child) {
  margin-top: 55px;
}
@media screen and (max-width: 576px) {
  .block__subheading:not(:first-child) {
    margin-top: 40px;
  }
}
@media screen and (max-width: 576px) {
  .block__subheading {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
.block__subheading.white {
  color: #fff;
}

.block__sublead {
  display: block;
  font-size: 24px;
  font-weight: 700;
  padding-left: 18px;
  margin-bottom: 30px;
  position: relative;
}
.block__sublead::after {
  content: "";
  display: block;
  width: 6px;
  height: 100%;
  background-color: #969696;
  border-radius: 3px;
  position: absolute;
  top: 0;
  left: 0;
}
.text + .block__sublead:not(:first-child) {
  margin-top: 50px;
}
@media screen and (max-width: 576px) {
  .text + .block__sublead:not(:first-child) {
    margin-top: 30px;
  }
}
@media screen and (max-width: 576px) {
  .block__sublead {
    font-size: 18px;
    margin-bottom: 15px;
  }
}

.block__lead {
  display: block;
  font-size: 20px;
  line-height: 2;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .block__lead {
    font-size: 16px;
  }
}

.block__text {
  line-height: 2.1875;
  letter-spacing: 0;
}
.block__text + .block__text {
  margin-top: 1em;
}

.block__inner-block {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  margin: 30px 0;
}

.block__text-conspicuous {
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 576px) {
  .block__text-conspicuous {
    font-size: 16px;
    display: block;
  }
}

.pager {
  margin: 50px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 76px;
}

.pager__prev {
  width: 30px;
  height: 30px;
  display: grid;
  place-content: center;
}
.pager__prev::after {
  content: "";
  display: block;
  width: 10px;
  height: 18px;
  background: url(../img/common/arrow_black.svg) no-repeat center center;
  background-size: contain;
}

.pager__next {
  width: 30px;
  height: 30px;
  display: grid;
  place-content: center;
}
.pager__next::after {
  content: "";
  display: block;
  width: 10px;
  height: 18px;
  background: url(../img/common/arrow_black.svg) no-repeat center center;
  background-size: contain;
  transform: rotate(180deg);
}

.pager__list {
  min-width: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pager__no {
  display: block;
  text-align: center;
  padding: 0 20px;
}
.pager__no::after {
  content: "";
  display: block;
  width: 14px;
  height: 4px;
  background-color: transparent;
  margin: 10px auto 0;
}
.pager__no.current {
  color: #003b93;
}
.pager__no.current::after {
  background-color: #003b93;
}
.pager__no:hover, .pager__no:focus {
  color: #003b93;
}

.img-switch img {
  width: 100%;
  max-width: none;
}

.video {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
}
.video iframe, .video img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.top-mv {
  position: relative;
}
.top-mv::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/common/mv_cover.png);
  background-size: 2px;
  position: absolute;
  top: 0;
  left: 0;
  position: relative;
}
.top-mv img {
  width: 43%;
  position: absolute;
  bottom: 14%;
  left: 12%;
}
@media screen and (max-width: 768px) {
  .top-mv img {
    width: 53%;
    left: 40%;
    width: calc(100% - 80px);
    left: 70px;
  }
}

.top-mv__video video {
  vertical-align: bottom;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .top-mv__pc {
    display: none;
  }
}

.top-mv__sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .top-mv__sp {
    display: block;
  }
  .top-mv__sp video {
    width: 100%;
  }
}

.top-mv__text {
  width: 100%;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.32em;
  line-height: 3.125;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: grid;
  place-content: center;
}
@media screen and (max-width: 1024px) {
  .top-mv__text {
    font-size: clamp(18px, 3.125vw, 32px);
  }
}

.top-mv__scroll {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 2px 8px;
  position: absolute;
  left: 5%;
  bottom: 19%;
  z-index: 2;
  transform: rotate(90deg); /* 90度回転 */
  transform-origin: center;
}
.top-mv__scroll:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  left: 6%;
  transform: translate(-50%, 50%);
  transform: rotate(-90deg); /* 90度回転 */
  top: 112%;
}
.top-mv__scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 257px;
  background-color: #fff;
  position: absolute;
  top: -335%;
  left: 165%;
  transform: translate(-50%, 0);
  transform: rotate(-90deg); /* 90度回転 */
  transform-origin: center;
}

.top-lead__section {
  color: #fff;
  padding: 83px 65px 119px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-lead__section {
    padding: 97px 15px 100px;
  }
}
.top-lead__section::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  bottom: 282px;
}
@media screen and (max-width: 768px) {
  .top-lead__section::before {
    display: none;
  }
}
.top-lead__section::after {
  content: "";
  display: block;
  width: 2px;
  height: 435px;
  background-color: #fff;
  position: absolute;
  bottom: -150px;
  z-index: 1;
}
@media screen and (max-width: 1400px) {
  .top-lead__section::after {
    height: 355px;
    bottom: -70px;
  }
}
@media screen and (max-width: 768px) {
  .top-lead__section::after {
    display: none;
  }
}
.top-lead__section.top-lead__mission {
  background-color: #3461ac;
}
.top-lead__section.top-lead__mission::before {
  right: 138px;
}
@media screen and (max-width: 1024px) {
  .top-lead__section.top-lead__mission::before {
    right: 48px;
  }
}
.top-lead__section.top-lead__mission::after {
  right: 140px;
}
@media screen and (max-width: 1024px) {
  .top-lead__section.top-lead__mission::after {
    right: 50px;
  }
}
.top-lead__section.top-lead__mission .top-lead__title {
  text-align: right;
  top: 167px;
  right: 0;
}
@media screen and (max-width: 1024px) {
  .top-lead__section.top-lead__mission .top-lead__title {
    top: 205px;
  }
}
@media screen and (max-width: 768px) {
  .top-lead__section.top-lead__mission .top-lead__title {
    top: 197px;
    right: -240px;
  }
}
.top-lead__section.top-lead__future {
  background-color: #eba03b;
}
.top-lead__section.top-lead__future::before {
  left: 138px;
}
@media screen and (max-width: 1024px) {
  .top-lead__section.top-lead__future::before {
    left: 48px;
  }
}
.top-lead__section.top-lead__future::after {
  left: 140px;
}
@media screen and (max-width: 1024px) {
  .top-lead__section.top-lead__future::after {
    left: 50px;
  }
}
.top-lead__section.top-lead__future .top-lead__title {
  text-align: left;
  top: 100px;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .top-lead__section.top-lead__future .top-lead__title {
    top: 130px;
  }
}
@media screen and (max-width: 768px) {
  .top-lead__section.top-lead__future .top-lead__title {
    top: 180px;
    left: -230px;
  }
}
.top-lead__section.top-lead__future .top-lead__heading {
  text-align: right;
}
.top-lead__section.top-lead__future .top-lead__text {
  margin: 0 0 0 auto;
}

.top-lead__inner {
  max-width: 1030px;
  margin: auto;
}

.top-lead__title {
  font-family: "Raleway", "Noto Sans JP", sans-serif;
  font-size: 17.3611111111vw;
  font-weight: 900;
  position: absolute;
  z-index: 0;
  opacity: 0.3;
}
@media screen and (max-width: 768px) {
  .top-lead__title {
    font-size: 130px;
    transform: rotate(90deg);
    opacity: 0.15;
  }
}

.top-lead__heading {
  display: block;
  font-size: 36px;
  font-weight: 900;
  line-height: 1.9444444444;
  margin-bottom: 150px;
}
@media screen and (max-width: 768px) {
  .top-lead__heading {
    font-size: 20px;
    line-height: 2;
    margin-bottom: 48px;
    letter-spacing: 0;
  }
}

.top-lead__text {
  font-size: 20px;
  line-height: 2.25;
  font-weight: 700;
  max-width: 611px;
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .top-lead__text {
    font-size: 16px;
    line-height: 2.0625;
  }
}

.top-lead {
  margin-bottom: 112px;
}
.top-lead__wrap div {
  height: 18vw;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 126px;
}
.top-lead__wrap div img {
  width: 50%;
  transform: translateY(30px);
}
@media screen and (max-width: 768px) {
  .top-lead__wrap div img {
    width: 76%;
  }
}
.top-lead__wrap .bg1 {
  background-image: url(../img/top/top-lead-bg1.png);
  display: flex;
  align-items: flex-end;
}
.top-lead__wrap .bg1 img {
  margin-left: 131.2px;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .top-lead__wrap .bg1 img {
    margin-left: 35.2px;
    transform: translateY(52%) !important;
  }
}
.top-lead__wrap .bg2 {
  background-image: url(../img/top/top-lead-bg2.png);
}
.top-lead__wrap .bg2 img {
  margin-right: 131.2px;
  margin-left: auto;
  display: block;
  transform: translateY(-25%) !important;
}
@media screen and (max-width: 768px) {
  .top-lead__wrap .bg2 img {
    margin-right: 23.2px;
    transform: translateY(33%) !important;
  }
}

.footer-recruit {
  background: url(../img/common/recruit_bg.jpg) no-repeat center right;
  background-size: cover;
  padding: 100px 0 70px;
}
.footer-recruit .section-heading {
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .footer-recruit {
    background-position-x: -60px;
  }
}

.footer-recruit__links {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.footer-recruit__link {
  background-color: #fff;
  display: grid;
  place-content: center;
  padding: 50px 20px;
  border-radius: 13px;
  font-size: 30px;
  font-weight: 700;
  transition: background-color 0.2s;
}
.footer-recruit__link::after {
  content: "";
  display: block;
  width: 35px;
  height: 35px;
  background: url(../img/common/bnr_arrow_black.svg) no-repeat center center;
  margin: 30px auto 0;
}
.footer-recruit__link:hover, .footer-recruit__link:focus {
  background-color: #66ccff;
}
@media screen and (max-width: 768px) {
  .footer-recruit__link {
    font-size: 24px;
    padding: 30px 20px;
  }
}

.careerpath-plan__content {
  margin-top: 22px;
}

.careerpath-plan__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.6944444444vw;
}
@media screen and (max-width: 768px) {
  .careerpath-plan__list {
    display: block;
    margin-top: 40px;
  }
}

.careerpath-plan__item {
  background-color: #e3e3e3;
  padding: 0 20px 20px;
}
@media screen and (max-width: 768px) {
  .careerpath-plan__item {
    padding: 0 0 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .careerpath-plan__item:not(:first-child) {
    margin-top: 10px;
  }
}

.careerpath-plan__level {
  display: none;
}
@media screen and (max-width: 768px) {
  .careerpath-plan__level {
    display: block;
    width: 100%;
    background-color: #000;
    color: #fff;
    padding: 11px 11px 22px;
    text-align: center;
    font-weight: 700;
    font-size: 17px;
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 50%, 50% 100%, 0 50%);
            clip-path: polygon(0 0, 100% 0%, 100% 50%, 50% 100%, 0 50%);
    margin-bottom: 20px;
  }
  .careerpath-plan__level span {
    font-size: 14px;
    font-weight: 500;
    margin-right: 10px;
  }
}

.careerpath-plan__training {
  display: block;
  background-color: #231815;
  color: #fff;
  text-align: center;
  padding: 3px;
  margin-bottom: 13px;
}
@media screen and (max-width: 768px) {
  .careerpath-plan__training {
    background-color: transparent;
    color: #000;
    padding-right: 18px;
    margin-right: 18px;
    border-right: 1px solid;
  }
}

.careerpath-plan__training-content {
  line-height: 1.6666666667;
  font-size: 15px;
}

.careerpath-plan-figure__img img {
  display: block;
}

.careerpath-detail__item:not(:first-child) {
  margin-top: 50px;
  padding-top: 50px;
  border-top: 1px solid #fff;
}

.careerpath-detail__year {
  font-size: 20px;
  font-weight: 700;
  padding-left: 123px;
  color: #003b93;
  margin-bottom: 34px;
  position: relative;
}
.careerpath-detail__year::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background-color: #003b93;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 106px;
  transform: translateY(-50%);
}
.careerpath-detail__year::after {
  content: "";
  display: block;
  width: 108px;
  height: 2px;
  background-color: #003b93;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 576px) {
  .careerpath-detail__year {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

.careerpath-detail__title {
  font-size: 30px;
  color: #003b93;
  letter-spacing: 0;
  font-weight: 700;
  margin-bottom: 50px;
}
@media screen and (max-width: 576px) {
  .careerpath-detail__title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

.careerpath-detail__lead {
  margin: 50px 0 40px;
  font-size: 20px;
  line-height: 2;
  font-weight: 700;
}
@media screen and (max-width: 576px) {
  .careerpath-detail__lead {
    font-size: 16px;
    margin: 25px 0 20px;
  }
}

.careerpath-detail-block {
  background-color: #fff;
  padding: 27px 31px;
  display: flex;
  align-items: flex-start;
}
.careerpath-detail-block:not(:first-child) {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .careerpath-detail-block {
    display: block;
  }
}

.careerpath-detail-block__title {
  display: inline-block;
  background-color: #231815;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  padding: 5px 15px;
  margin-right: 36px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .careerpath-detail-block__title {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 576px) {
  .careerpath-detail-block__title {
    font-size: 16px;
  }
}

.careerpath-detail-block__list--dl {
  display: flex;
  flex-wrap: wrap;
}
.careerpath-detail-block__list--dl dt {
  font-size: 20px;
  font-weight: 700;
  width: 80px;
  flex-shrink: 0;
}
.careerpath-detail-block__list--dl dd {
  line-height: 1.8;
  width: calc(100% - 80px);
}
@media screen and (max-width: 576px) {
  .careerpath-detail-block__list--dl dd {
    width: 100%;
    margin: 5px 0 10px;
  }
}

.careerpath-detail-block__item {
  text-indent: -2em;
  padding-left: 2em;
  position: relative;
}
.careerpath-detail-block__item:not(:first-child) {
  margin-top: 17px;
}
.careerpath-detail-block__item::before {
  content: "●";
  color: #003b93;
  margin-right: 1em;
}

.upbringing-program {
  margin: 38px auto 100px;
  text-align: center;
}
@media screen and (max-width: 576px) {
  .upbringing-program {
    margin: 30px auto 50px;
  }
}

.upbringing-program__inner {
  padding: 70px 80px;
}
@media screen and (max-width: 768px) {
  .upbringing-program__inner {
    padding: 40px 20px;
  }
}

.upbringing-program__title {
  display: inline-block;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.3em;
  background-color: #000;
  color: #fff;
  margin: 0 0 50px;
  padding: 10px 21px 10px 30px;
}
@media screen and (max-width: 768px) {
  .upbringing-program__title {
    font-size: 18px;
  }
}

.upbringing-program__content {
  width: 100%;
  overflow: auto;
  position: relative;
}

.upbringing-program__table {
  width: 1080px;
}

.upbringing-program__links {
  width: 1080px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.upbringing-program__hukidashi {
  display: none;
  padding: 10px 35px;
  background-color: #003b93;
  color: #fff;
  text-align: left;
  min-width: 150px;
}
.upbringing-program__hukidashi.open {
  display: block;
}
.upbringing-program__hukidashi li {
  padding-left: 1em;
  text-indent: -1em;
}

.upbringing-program__btn {
  background-color: #e3e3e3;
  border-radius: 5px;
  padding: 9px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s;
  position: absolute;
}
.upbringing-program__btn::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../img/common/bnr_arrow_skyblue.svg) no-repeat center center;
  background-size: contain;
  margin-left: 12px;
}
.upbringing-program__btn:hover, .upbringing-program__btn:focus {
  background-color: #969696;
  color: #fff;
}
.upbringing-program__btn.link1 {
  top: 6%;
  left: 4.2%;
  width: 94.5%;
}
.upbringing-program__btn.link2 {
  top: 13%;
  left: 4.2%;
  width: 71%;
}
.upbringing-program__btn.link3 {
  top: 20%;
  left: 3.5%;
  width: 8%;
}
.upbringing-program__btn.link4 {
  top: 20%;
  left: 33%;
  width: 42.2%;
}
.upbringing-program__btn.link5 {
  top: 35%;
  left: 4.2%;
  width: auto;
}
.upbringing-program__btn.link6 {
  top: 27%;
  left: 35.5%;
  width: 24.2%;
}
.upbringing-program__btn.link7 {
  top: 27%;
  left: 60%;
  width: 15.9%;
}
.upbringing-program__btn.link8 {
  top: 27%;
  left: 76.3%;
  width: 16%;
}
.upbringing-program__btn.link9 {
  top: 34%;
  left: 35.5%;
  width: 63%;
}
.upbringing-program__btn.link10 {
  top: 45%;
  left: 35.5%;
  width: 8.5%;
}
.upbringing-program__btn.link11 {
  top: 44.5%;
  left: 70.5%;
  width: 22%;
}
.upbringing-program__btn.link12 {
  top: 51.5%;
  left: 70.5%;
  width: 28%;
}
.upbringing-program__btn.link13 {
  top: 58.5%;
  left: 70.5%;
  width: 28%;
}
.upbringing-program__btn.link14 {
  top: 68%;
  left: 12.8%;
  width: 13.2%;
}
.upbringing-program__btn.link15 {
  top: 68%;
  left: 33.5%;
  width: 18.5%;
}
.upbringing-program__btn.link16 {
  top: 75.5%;
  left: 33.5%;
  width: 65%;
}
.upbringing-program__btn.link17 {
  top: 84%;
  left: 4.2%;
  width: 64%;
}
.upbringing-program__btn.link18 {
  top: 92%;
  left: 6%;
  width: 92.5%;
}
.upbringing-program__btn.link19 {
  top: 20%;
  left: 11.7%;
  width: 16%;
}

.upbringing-program__item {
  background-color: #eba03b;
  color: #fff;
  writing-mode: vertical-rl;
  letter-spacing: 0.2em;
  padding: 9px;
  border-radius: 5px;
  position: absolute;
  top: 23%;
  left: 28.5%;
  height: 59.5%;
}

.upbringing-program__popup {
  width: 100%;
  height: 700px;
  position: relative;
  margin-bottom: -700px;
  display: none;
  z-index: 10;
  padding: 30px;
  place-content: center;
}
.upbringing-program__popup.open {
  display: grid;
}

.upbringing-program__hukidashi-close {
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.upbringing-program__hukidashi-close.open {
  display: block;
}
.upbringing-program__hukidashi-close::before {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  background-color: #fff;
  position: absolute;
  top: 30px;
  right: 30px;
  transform: rotate(45deg);
}
.upbringing-program__hukidashi-close::after {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  background-color: #fff;
  position: absolute;
  top: 30px;
  right: 30px;
  transform: rotate(-45deg);
}

.upbringing-program__table-text {
  font-weight: bold;
  text-align: center;
  height: 600px;
  position: relative;
  margin-bottom: -600px;
  z-index: 9;
  pointer-events: none;
}

.upbringing-program__table-text01 {
  position: absolute;
  background-color: #efefef;
  writing-mode: vertical-lr;
  top: 4.1%;
  left: -1%;
  height: 71.8%;
}

.upbringing-program__table-text02 {
  position: absolute;
  background-color: #efefef;
  writing-mode: vertical-lr;
  top: 58.3%;
  left: -1%;
  height: 34%;
}

.external-recruitment {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px 70px;
}

.external-recruitment__item {
  width: 250px;
}
.external-recruitment__item img {
  mix-blend-mode: darken;
}

.entry-tel {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 30px 0 25px;
}

.entry-tel__text {
  text-align: center;
  padding: 20px 25px;
  background-color: #231815;
  color: #fff;
  display: grid;
  place-content: center;
}
@media screen and (max-width: 1024px) {
  .entry-tel__text {
    width: 100%;
  }
}

.entry-tel__tel {
  text-align: center;
  padding: 10px 25px;
  background-color: #EFEFEF;
}
@media screen and (max-width: 1024px) {
  .entry-tel__tel {
    width: 100%;
  }
}
.entry-tel__tel a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.bg--gallery .entry-tel__tel {
  background-color: #fff;
  border: 1px solid #DAD7D3;
}

.entry-tel__no {
  font-size: 35px;
  font-weight: 700;
  letter-spacing: 0;
  margin-right: 10px;
}

.form__inner {
  margin-top: 42px;
  padding: 100px 105px;
  border: 1px solid;
}
@media screen and (max-width: 768px) {
  .form__inner {
    padding: 50px 15px;
  }
}

.form-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 120px;
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .form-flow {
    gap: 50px;
  }
}
@media screen and (max-width: 576px) {
  .form-flow {
    gap: 0px;
    margin-bottom: 30px;
  }
}

.form-flow__item {
  font-size: 20px;
  font-weight: 700;
  position: relative;
  min-width: 94px;
  text-align: center;
}
@media screen and (max-width: 576px) {
  .form-flow__item {
    font-size: 14px;
  }
}
.form-flow__item:not(:last-child)::after {
  content: "";
  display: block;
  width: 190px;
  height: 3px;
  background-color: #c9c9c9;
  position: absolute;
  top: 34px;
  left: 50%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .form-flow__item:not(:last-child)::after {
    width: 120px;
  }
}
@media screen and (max-width: 576px) {
  .form-flow__item:not(:last-child)::after {
    width: 90px;
    top: 24px;
  }
}

.form-flow__no {
  display: block;
  width: 70px;
  height: 70px;
  background-color: #231815;
  border-radius: 50%;
  color: #66ccff;
  display: grid;
  place-content: center;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 auto 20px;
}
@media screen and (max-width: 576px) {
  .form-flow__no {
    width: 50px;
    height: 50px;
    margin-bottom: 5px;
    font-size: 24px;
  }
}

.form__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-align: left;
}

.form__title {
  width: 35%;
  padding: 10px 10px 10px 0;
  margin-bottom: 20px;
}
@media screen and (max-width: 576px) {
  .form__title {
    width: 100%;
    padding: 0;
    margin-bottom: 10px;
  }
}
.form__title.required {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 20px;
}
.form__title.required::after {
  content: "必須";
  background-color: #c9171e;
  color: #fff;
  font-size: 12px;
  padding: 0 15px;
}

.form__input {
  width: 65%;
  margin-bottom: 20px;
}
@media screen and (max-width: 576px) {
  .form__input {
    width: 100%;
  }
}
.form__input.input input {
  border: 1px solid #e3e3e3;
  background-color: #EFEFEF;
  padding: 10px;
  width: 100%;
  font-size: 0.8em;
}
.form__input.textarea textarea {
  border: 1px solid #e3e3e3;
  background-color: #EFEFEF;
  padding: 10px;
  width: 100%;
  font-size: 0.8em;
}
.form__input.radio label {
  position: relative;
  margin-right: 1em;
  padding-left: 1.25em;
}
.form__input.radio label::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 15px;
  height: 15px;
  content: "";
  border: 1px solid #ddd;
  border-radius: 50%;
  background: #eee;
}
.form__input.radio input:checked + label::after {
  position: absolute;
  top: 2px;
  left: 3px;
  display: block;
  width: 11px;
  height: 11px;
  content: "";
  border-radius: 50%;
  background: #a66970;
}
.form__input.checkbox label {
  position: relative;
  margin-right: 1em;
  padding-left: 1.25em;
}
.form__input.checkbox label::before {
  position: absolute;
  top: calc((1.5 * 1em - 1em) / 2);
  left: 0;
  display: block;
  width: 15px;
  height: 15px;
  content: "";
  border: 1px solid #ddd;
  background: #eee;
}
.form__input.checkbox input:checked + label::after {
  position: absolute;
  top: calc((1.5 * 1em - 1em) / 2 + 2px);
  left: 2px;
  display: block;
  width: 10px;
  height: 5px;
  content: "";
  border-left: 3px solid #a66970;
  border-bottom: 3px solid #a66970;
  transform: rotate(-45deg);
}
.form__input.select select {
  padding: 10px;
  border: 1px solid #ddd;
  background: #eee;
  font-size: 0.8em;
}

.form__btn {
  width: 100%;
}

.form-conf__list {
  max-width: 750px;
  margin: 50px auto;
}

.form-conf__item {
  padding: 15px 0;
  border-top: 1px solid #ddd;
  display: flex;
}
.form-conf__item:last-child {
  border-bottom: 1px solid #ddd;
}

.form-conf__title {
  width: 200px;
  flex-shrink: 0;
}
.form-conf__title.required::after {
  content: "必須";
  display: inline-block;
  background-color: #c9171e;
  color: #fff;
  font-size: 12px;
  padding: 2px 10px;
  margin-left: 5px;
}

.entry-thanks__title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
}

.entry-thanks__text {
  text-align: center;
  margin-top: 15px;
}

.privacy-policy {
  margin: 30px 0 37px;
}
@media screen and (max-width: 576px) {
  .privacy-policy {
    margin: 10px 0 27px;
  }
}

.privacy-policy__title {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}

.privacy-policy__text {
  font-size: 14px;
  padding: 32px 30px;
  line-height: 2;
  letter-spacing: -0.01em;
  border: 1px solid #969696;
  margin-top: 20px;
}
@media screen and (max-width: 576px) {
  .privacy-policy__text {
    padding: 20px 15px;
  }
}

.information__content {
  padding-bottom: 80px;
  border-bottom: 1px solid #c9c9c9;
}
@media screen and (max-width: 576px) {
  .information__content {
    padding-bottom: 40px;
  }
}

.info-page__inner .info-page__category {
  display: flex;
  align-items: center;
  font-weight: 700;
}
.info-page__inner .info-page__category span {
  font-size: 14px;
  background-color: #231815;
  color: #fff;
  padding: 10px 6px;
  margin-right: 10px;
}
.info-page__inner .info-page__category .category-internship {
  background-color: #3D9137;
}
.info-page__inner .info-page__category .category-news {
  background-color: #003b93;
}
.info-page__inner .info-page__category .category-event {
  background-color: #eba03b;
}
.info-page__inner h1 {
  padding: 53px 0 70px;
  margin-bottom: 64px;
  border-bottom: 2px solid #c9c9c9;
  font-size: 36px;
  font-weight: 700;
  line-height: 2;
}
@media screen and (max-width: 576px) {
  .info-page__inner h1 {
    font-size: 24px;
    line-height: 1.7;
    padding: 10px 0 30px;
    margin-bottom: 30px;
  }
}
.info-page__inner h2 {
  margin: 50px 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.6666666667;
  color: #003b93;
}
@media screen and (max-width: 576px) {
  .info-page__inner h2 {
    margin: 20px 0;
    font-size: 20px;
  }
}
.info-page__inner h3 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3846153846;
  padding-left: 25px;
  margin: 67px 0 42px;
  position: relative;
}
.info-page__inner h3::before {
  content: "";
  display: block;
  width: 6px;
  height: 100%;
  background-color: #969696;
  border-radius: 3px;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 576px) {
  .info-page__inner h3::before {
    width: 3px;
  }
}
@media screen and (max-width: 576px) {
  .info-page__inner h3 {
    font-size: 18px;
    padding-left: 15px;
    margin: 27px 0 12px;
  }
}
.info-page__inner h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4166666667;
  margin: 30px 0;
}
@media screen and (max-width: 576px) {
  .info-page__inner h4 {
    font-size: 18px;
    margin: 20px 0 10px;
  }
}
.info-page__inner h5 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin: 30px 0;
}
@media screen and (max-width: 576px) {
  .info-page__inner h5 {
    font-size: 16px;
    margin: 20px 0 10px;
  }
}
.info-page__inner p {
  line-height: 2.25;
}
* + .info-page__inner p {
  margin-top: 1em;
}
@media screen and (max-width: 576px) {
  .info-page__inner p {
    line-height: 1.8;
  }
}
.info-page__inner img {
  display: block;
  margin: 30px auto;
}
.info-page__inner blockquote {
  padding: 13px 0 13px 40px;
  margin: 30px 0;
  line-height: 2.25;
  position: relative;
}
@media screen and (max-width: 576px) {
  .info-page__inner blockquote {
    padding: 0 0 0 20px;
  }
}
.info-page__inner blockquote::before {
  content: "";
  display: block;
  width: 3px;
  height: 100%;
  background-color: #969696;
  position: absolute;
  left: 0;
  top: 0;
}
.info-page__inner .block {
  background-color: #EFEFEF;
  padding: 30px;
  margin: 30px 0;
  border-radius: 10px;
}
.info-page__inner a {
  color: #003b93;
  text-decoration: underline;
  text-underline-offset: 8px;
}
.info-page__inner a:hover, .info-page__inner a:focus {
  text-decoration: none;
}
.info-page__inner ul {
  margin: 30px 0;
}
.info-page__inner ul li {
  line-height: 2.25;
  position: relative;
  padding-left: 1.7em;
}
.info-page__inner ul li:not(:first-child) {
  margin-top: 10px;
}
.info-page__inner ul li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}
.info-page__inner ol {
  margin: 30px 0;
  counter-reset: pageOl;
}
.info-page__inner ol li {
  line-height: 2.25;
  position: relative;
  padding-left: 1.7em;
}
.info-page__inner ol li:not(:first-child) {
  margin-top: 10px;
}
.info-page__inner ol li::before {
  counter-increment: pageOl;
  content: counter(pageOl) ".";
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0;
}
.info-page__inner table {
  border-collapse: collapse;
  width: 100%;
  margin: 30px 0;
}
.info-page__inner thead {
  background-color: #003b93;
  color: #fff;
  font-weight: 700;
}
.info-page__inner th, .info-page__inner td {
  font-weight: 400;
  padding: 22px 15px;
  border: 1px solid #000;
}
.info-page__inner tbody th {
  background-color: #EFEFEF;
}
.info-page__inner .btn {
  margin: 30px 0;
  color: #fff;
  text-decoration: none;
}

.outline-numbers__list {
  margin: 100px 0 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 576px) {
  .outline-numbers__list {
    margin: 30px 0;
  }
}

.outline-numbers__item {
  background-color: #e3e7f2;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
}
@media screen and (max-width: 768px) {
  .outline-numbers__item {
    padding: 30px;
  }
}
.outline-numbers__item.column--1 {
  width: 100%;
}
.outline-numbers__item.column--2 {
  width: calc(50% - 10px);
}
@media screen and (max-width: 1024px) {
  .outline-numbers__item.column--2 {
    width: 100%;
  }
}
.outline-numbers__item.column--3 {
  width: calc(75% - 5px);
  position: relative;
}
.outline-numbers__item.column--3::before {
  content: "職種別 人員構成比";
  position: absolute;
  font-size: 22px;
  font-weight: bold;
  top: 2.5rem;
  left: 4rem;
}
@media screen and (max-width: 768px) {
  .outline-numbers__item.column--3::before {
    top: 2rem;
    left: 6rem;
  }
}
@media screen and (max-width: 1024px) {
  .outline-numbers__item.column--3 {
    width: 100%;
  }
}
.outline-numbers__item.row--2 {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  background: none;
  padding: 0;
}
.outline-numbers__item.row--2 > div {
  width: 100%;
  padding: 40px;
  background: #e3e7f2;
  display: flex;
  align-items: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .outline-numbers__item.row--2 > div {
    flex-direction: column;
    row-gap: 40px;
    padding: 30px;
  }
}
.outline-numbers__item.row--2 > div > h3 {
  font-size: 22px;
  font-weight: bold;
}
.outline-numbers__item.row--2 > div:first-of-type img {
  width: 126px;
  height: auto;
}
.outline-numbers__item.row--2 > div:last-of-type img {
  width: 360px;
  height: auto;
}
.outline-numbers__item.column--4 {
  width: calc(25% - 15px);
}
@media screen and (max-width: 1024px) {
  .outline-numbers__item.column--4 {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 768px) {
  .outline-numbers__item.column--4 {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .outline-numbers__item.pt14 {
    padding-top: 6rem;
  }
}

.outline-numbers__title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 40px;
}
.outline-numbers__title .text--small {
  display: block;
  font-size: 20px;
}
.outline-numbers__title span {
  font-size: 14px;
  margin-left: 10px;
}

.outline-numbers__img {
  flex-grow: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.outline-start {
  position: relative;
}

.outline-start__en {
  font-size: 17.3611111111vw;
  font-family: "Raleway", "Noto Sans JP", sans-serif;
  font-weight: 900;
  opacity: 0.1;
  position: absolute;
  top: 0;
  right: -50px;
  transform: translateY(-50%);
}

.outline-start__since {
  color: #3461ac;
  font-size: 14px;
  font-weight: 700;
  position: absolute;
  bottom: 105px;
  right: 140px;
  z-index: 1;
}
@media screen and (max-width: 1400px) {
  .outline-start__since {
    right: 65px;
  }
}
@media screen and (max-width: 768px) {
  .outline-start__since {
    bottom: 25px;
  }
}
.outline-start__since::before {
  content: "";
  display: block;
  width: 3px;
  height: 210px;
  background: linear-gradient(180deg, #3461ac 0%, #3461ac 50%, #fff 50%, #fff 100%);
  position: absolute;
  top: 100%;
  right: 2px;
}
@media screen and (max-width: 768px) {
  .outline-start__since::before {
    height: 80px;
    background: linear-gradient(180deg, #3461ac 0%, #3461ac 33%, #fff 33%, #fff 100%);
  }
}
.outline-start__since::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #3461ac;
  position: absolute;
  top: 100%;
  right: 0px;
}

.outline-philosophy {
  position: relative;
  padding: 150px 0 250px;
}
@media screen and (max-width: 1400px) {
  .outline-philosophy {
    padding: 10.4166666667vw 0 17.3611111111vw;
  }
}
.outline-philosophy::before {
  content: "";
  display: block;
  width: 3px;
  height: 210px;
  background: linear-gradient(0deg, #3461ac 0%, #3461ac 50%, #fff 50%, #fff 100%);
  position: absolute;
  bottom: 0%;
  left: 202px;
  transform: translateY(50%);
}
@media screen and (max-width: 1400px) {
  .outline-philosophy::before {
    left: calc(65px + 2px);
  }
}
@media screen and (max-width: 768px) {
  .outline-philosophy::before {
    display: none;
  }
}
.outline-philosophy::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  bottom: 105px;
  left: 200px;
}
@media screen and (max-width: 1400px) {
  .outline-philosophy::after {
    left: 65px;
  }
}
@media screen and (max-width: 768px) {
  .outline-philosophy::after {
    display: none;
  }
}

.outline-philosophy__en {
  font-size: 17.3611111111vw;
  font-family: "Raleway", "Noto Sans JP", sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  opacity: 0.1;
  position: absolute;
  bottom: 0;
  right: -5.7638888889vw;
}

.outline-message__wrap {
  display: flex;
  gap: 125px;
}
@media screen and (max-width: 1200px) {
  .outline-message__wrap {
    gap: 30px 50px;
  }
}
@media screen and (max-width: 768px) {
  .outline-message__wrap {
    flex-wrap: wrap;
  }
}

.outline-message__img {
  max-width: 295px;
  flex-shrink: 0;
}
.outline-message__img p {
  margin-top: 10px;
}

.outline-message__content {
  line-height: 2.1875;
}

.outline-message__btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #003b93;
  border-bottom: 2px solid;
  padding-bottom: 6px;
  margin-top: 32px;
}
.outline-message__btn span {
  margin-left: 25px;
  width: 20px;
  height: 20px;
  border: 1px solid #003b93;
  border-radius: 50%;
  position: relative;
}
.outline-message__btn span::before, .outline-message__btn span::after {
  content: "";
  width: 9px;
  height: 1px;
  background-color: #003b93;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.outline-message__btn span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.2s;
}
.open .outline-message__btn span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.outline-message__text--hidden {
  display: none;
}
.open .outline-message__text--hidden {
  display: block;
}

.about-us {
  position: relative;
  padding-bottom: 54vw;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .about-us {
    padding-bottom: 74vw;
  }
}

.about-us__content {
  position: absolute;
}

.about-us__info {
  display: flex;
  flex-wrap: wrap;
  max-width: 610px;
  margin: 0;
  position: relative;
  z-index: 1;
}

.about-us__title {
  width: 34.6%;
  border-bottom: 1px solid;
  padding: 16px 21px;
  font-weight: 700;
}
.about-us__title:first-child {
  border-top: 1px solid;
}
@media screen and (max-width: 576px) {
  .about-us__title {
    width: 100%;
    border-bottom: none;
    padding: 20px 16px 0;
  }
}

.about-us__text {
  width: 65.4%;
  padding: 16px 21px;
  border-bottom: 1px solid;
}
.about-us__text:nth-child(2) {
  border-top: 1px solid;
}
@media screen and (max-width: 576px) {
  .about-us__text:nth-child(2) {
    border-top: none;
  }
}
@media screen and (max-width: 576px) {
  .about-us__text {
    width: 100%;
    padding: 10px 16px 20px;
  }
}

.about-us__en {
  font-size: 10.4166666667vw;
  font-family: "Raleway", "Noto Sans JP", sans-serif;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-top: 20px;
}

.about-us__sub {
  position: relative;
  z-index: 1;
}

.about-us__img {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
}
@media screen and (max-width: 576px) {
  .about-us__img {
    width: 100%;
  }
}

.business-details__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 40px 50px;
}

.business-details__item {
  display: grid;
  place-content: center;
}

.business-details__bnr-list {
  margin-top: 76px;
}

.business-details-bnr {
  overflow: hidden;
  border-radius: 5px;
}

.business-details-bnr__title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}
.business-details-bnr__title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: #fff;
  margin: 20px auto 0;
}

.business-details-bnr__text {
  font-weight: 500;
  margin-bottom: 25px;
  min-height: 3em;
}

.business-details-bnr__link {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  padding: 5px 20px;
  background-color: #231815;
  color: #fff;
}

.recruit__attribute {
  display: flex;
  align-items: center;
  gap: 7px;
}

.recruit__category {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 7px;
}
.recruit__category.cocoa {
  background-color: #231815;
}
.recruit__category.industry1 {
  background-color: #eba03b;
}
.recruit__category.industry2 {
  background-color: #0082d2;
}
.recruit__category.industry3 {
  background-color: #0b7d0b;
}
.recruit__category.industry4 {
  background-color: #00B900;
}
.recruit__category.industry5 {
  background-color: #eb3d30;
}
.recruit__category.industry6 {
  background-color: #2a7cef;
}
.recruit__category.industry7 {
  background-color: #e86b1c;
}
.recruit__category.industry8 {
  background-color: #72b6cd;
}
.recruit__category.industry9 {
  background-color: #f3c025;
}
.recruit__category.industry10 {
  background-color: #64e580;
}
.recruit__category .easternblue {
  background-color: #2bb1ef;
}

.recruit__place {
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.recruit__place::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 23px;
  background: url(../img/common/map_icon.svg) no-repeat center center;
  background-size: contain;
  margin: 0 5px;
}

.recruit-mv {
  margin-top: 62px;
}
@media screen and (max-width: 576px) {
  .recruit-mv {
    margin-top: 30px;
  }
}

.recruit-mv__main {
  width: 100%;
  overflow: hidden;
}
.recruit-mv__main .swiper-slide {
  padding-top: 56.3%;
  position: relative;
}
.recruit-mv__main .swiper-slide img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.recruit-mv__main .swiper-slide p {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  width: 100%;
  text-align: center;
  padding: 3px 10px;
}
.recruit-mv__main .swiper-slide iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

.recruit-mv__sub {
  margin-top: 20px;
  overflow: hidden;
}
.recruit-mv__sub .swiper-slide {
  opacity: 0.5;
  position: relative;
  transition: opacity 0.2s;
}
.recruit-mv__sub .swiper-slide:hover, .recruit-mv__sub .swiper-slide:focus {
  opacity: 1;
}
.recruit-mv__sub .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
.recruit-mv__sub .swiper-slide img {
  width: 100%;
}

.recruit-mv__sub-img {
  padding-top: 64.4%;
  position: relative;
}
.recruit-mv__sub-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.recruit-lead .block__heading {
  margin-top: 30px;
}

.recruit-lead__nav {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
@media screen and (max-width: 576px) {
  .recruit-lead__nav {
    margin-top: 40px;
    gap: 10px;
  }
}

.recruit-lead__link .btn {
  max-width: none;
}

.recruit-info__btn {
  margin-top: 50px;
}

.recruit-info__column-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media screen and (max-width: 576px) {
  .recruit-info__column-2 {
    grid-template-columns: 1fr;
  }
}
.recruit-info__column-2 + .recruit-info__column-2 {
  margin-top: 20px;
}
.recruit-info__column-2:nth-child(odd) .recruit-info__half-img {
  order: 2;
}
@media screen and (max-width: 576px) {
  .recruit-info__column-2:nth-child(odd) .recruit-info__half-img {
    order: 1;
  }
}
.recruit-info__column-2:nth-child(odd) .recruit-info__half-text {
  order: 1;
}
@media screen and (max-width: 576px) {
  .recruit-info__column-2:nth-child(odd) .recruit-info__half-text {
    order: 2;
  }
}
@media screen and (max-width: 576px) {
  .recruit-info__column-2.sp-gap0 {
    gap: 0;
  }
}

.recruit-info ul {
  margin: 10px 0;
}
.recruit-info ul li {
  padding-left: 0.8em;
  position: relative;
}
.recruit-info ul li:not(:first-child) {
  margin-top: 10px;
}
.recruit-info ul li::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #003b93;
  position: absolute;
  top: 11px;
  left: 0;
}
.recruit-info ul li h4 {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
}
.recruit-info h4 {
  display: block;
  font-size: 30px;
  font-weight: 700;
  color: #003b93;
  margin-bottom: 30px;
}
.recruit-info h4:not(:first-child) {
  margin-top: 55px;
}
@media screen and (max-width: 576px) {
  .recruit-info h4:not(:first-child) {
    margin-top: 40px;
  }
}
@media screen and (max-width: 576px) {
  .recruit-info h4 {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
.recruit-info #job-description h4 {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
}
.recruit-info #job-description h4:not(:first-child) {
  margin-top: 1em;
}
.recruit-info h5 {
  display: block;
  font-size: 26px;
  font-weight: 700;
  padding-left: 18px;
  margin-bottom: 30px;
  margin-top: 50px;
  position: relative;
}
@media screen and (max-width: 576px) {
  .recruit-info h5 {
    margin-top: 30px;
  }
}
.recruit-info h5::after {
  content: "";
  display: block;
  width: 6px;
  height: 100%;
  background-color: #969696;
  border-radius: 3px;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 576px) {
  .recruit-info h5 {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

.recruit-info__half-text {
  display: flex;
  flex-flow: column;
  justify-content: center;
}

.recruit-schedule {
  position: relative;
}
.recruit-schedule li {
  padding-left: 50px;
  font-size: 22px;
  font-weight: 700;
  position: relative;
}
@media screen and (max-width: 576px) {
  .recruit-schedule li {
    font-size: 18px;
    padding-left: 33px;
  }
}
.recruit-schedule li:not(:first-child) {
  margin-top: 30px;
}
.recruit-schedule li:not(:last-child)::after {
  content: "";
  display: block;
  width: 3px;
  height: calc(100% + 30px);
  background-color: #c9c9c9;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: -1;
  transform: translateX(-50%);
}
.recruit-schedule li::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-color: #003b93;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}
.recruit-schedule li > span {
  margin-right: 2em;
}
@media screen and (max-width: 576px) {
  .recruit-schedule li > span {
    margin-right: 0.5em;
  }
}

.recruit-requirements {
  display: flex;
  flex-wrap: wrap;
}

.recruit-requirements__heading {
  width: 24%;
  border-bottom: 1px solid;
  padding: 26px 13px;
  font-weight: 700;
}
@media screen and (max-width: 576px) {
  .recruit-requirements__heading {
    width: 100%;
    padding: 10px 10px 0;
    border-bottom: none;
  }
}
.recruit-requirements__heading:first-child {
  border-top: 1px solid;
}

.recruit-requirements__text {
  width: 76%;
  padding: 26px 13px;
  border-bottom: 1px solid;
}
@media screen and (max-width: 576px) {
  .recruit-requirements__text {
    width: 100%;
    padding: 10px;
    border-top: none;
  }
}
.recruit-requirements__text:nth-child(2) {
  border-top: 1px solid;
}
@media screen and (max-width: 576px) {
  .recruit-requirements__text:nth-child(2) {
    border-top: none;
  }
}

.recruit-requirements__base {
  display: flex;
}

.recruit-requirements__base-title {
  width: 92px;
}

.recruit-requirements__base-content {
  width: calc(100% - 92px);
}

.recruit-requirements-flow__item {
  padding-left: 1em;
}
.recruit-requirements-flow__item:not(:last-child)::after {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border-right: 2px solid #003b93;
  border-bottom: 2px solid #003b93;
  margin: 20px 0 30px;
  transform: rotate(45deg);
}
@media screen and (max-width: 576px) {
  .recruit-requirements-flow__item:not(:last-child)::after {
    margin: 10px 0 20px;
  }
}

.recruit-requirements-flow__title {
  color: #003b93;
  font-weight: 700;
  position: relative;
}
.recruit-requirements-flow__title::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background-color: #003b93;
  border-radius: 50%;
  position: absolute;
  left: -1em;
  top: 4px;
}

.voice-search {
  display: flex;
}

.voice-search__text {
  font-size: 20px;
  font-weight: 700;
}

.voice-item {
  padding: 50px 0;
  border-top: 1px solid #EFEFEF;
  display: block;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  position: relative;
  position: relative;
}
.voice-item:first-child {
  margin-top: 50px;
}
@media screen and (max-width: 576px) {
  .voice-item:first-child {
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .voice-item {
    gap: 20px;
  }
}
@media screen and (max-width: 576px) {
  .voice-item {
    padding: 30px 24px 30px 0;
    grid-template-columns: 1fr;
  }
}
.voice-item a:hover, .voice-item a:focus {
  color: #003b93;
}
.voice-item a.voice-tag__item:hover, .voice-item a.voice-tag__item:focus {
  color: #fff;
}
.voice-item:last-child {
  border-bottom: 1px solid #EFEFEF;
}

.voice-item__img a {
  padding-top: 66.6%;
  display: block;
  position: relative;
  overflow: hidden;
}
.voice-item__img a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s;
  position: absolute;
  top: 0;
  left: 0;
}
.voice-item__img a:hover img, .voice-item__img a:focus img {
  transform: scale(1.05);
}

.voice-item__content {
  padding: 28px 31px;
}
@media screen and (max-width: 1024px) {
  .voice-item__content {
    padding: 0;
    padding-right: 20px;
  }
}
.voice-item__content .voice-tag {
  margin: 26px 0 0;
}
@media screen and (max-width: 768px) {
  .voice-item__content .voice-tag {
    margin: 15px 0 0;
  }
}

.voice-item__title {
  font-size: 36px;
  font-weight: 700;
  max-width: 475px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .voice-item__title {
    font-size: 24px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 576px) {
  .voice-item__title {
    font-size: 18px;
  }
}

.voice-item__en {
  color: #003b93;
  font-weight: 700;
  font-size: 14px;
  position: absolute;
  bottom: 190px;
  right: -110px;
  transform: rotate(90deg);
  padding-right: 156px;
}
@media screen and (max-width: 1024px) {
  .voice-item__en {
    bottom: 140px;
  }
}
.voice-item__en::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #003b93;
  position: absolute;
  top: 50%;
  left: 90px;
  transform: translateY(-50%);
}
.voice-item__en::after {
  content: "";
  display: block;
  width: 146px;
  height: 2px;
  background-color: #003b93;
  position: absolute;
  bottom: 50%;
  right: 0;
  transform: translateY(50%);
}

.voice-tag {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 7px;
}

.voice-tag__item {
  display: block;
  background-color: #231815;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 9px 6px;
}
.voice-tag__item.tag-cat1 {
  background-color: #003b93;
}
.voice-tag__item.tag-cut2 {
  background-color: #eba03b;
}
.voice-tag__item:hover, .voice-tag__item:focus {
  background-color: #66ccff;
  color: #fff;
}

.voice-page__heading {
  position: relative;
}
@media screen and (max-width: 576px) {
  .voice-page__heading {
    padding-bottom: 50px;
  }
}

.voice-page__en {
  color: #003b93;
  font-weight: 700;
  position: absolute;
  bottom: 0;
  right: 0;
}
.voice-page__en::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #003b93;
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
}
.voice-page__en::after {
  content: "";
  display: block;
  width: 146px;
  height: 2px;
  background-color: #003b93;
  position: absolute;
  top: 50%;
  left: -166px;
  transform: translateY(-50%);
}

.voice-content {
  margin: 50px 0 0;
  padding: 50px 0;
  border-top: 1px solid #EFEFEF;
  border-bottom: 1px solid #EFEFEF;
}
.voice-content img {
  display: block;
  margin: 80px auto;
}
@media screen and (max-width: 576px) {
  .voice-content img {
    margin: 40px auto;
  }
}
.voice-content > img {
  margin: 0 auto;
}
.voice-content h3 {
  display: block;
  font-size: 30px;
  font-weight: 700;
  color: #003b93;
  margin-bottom: 30px;
}
.voice-content h3:not(:first-child) {
  margin-top: 55px;
}
@media screen and (max-width: 576px) {
  .voice-content h3:not(:first-child) {
    margin-top: 40px;
  }
}
@media screen and (max-width: 576px) {
  .voice-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
.voice-content p {
  line-height: 2.1875;
}
p + .voice-content p {
  margin-top: 50px;
}
@media screen and (max-width: 576px) {
  p + .voice-content p {
    margin-top: 25px;
  }
}
.voice-content ol {
  position: relative;
}
.voice-content ol::after {
  content: "";
  display: block;
  width: 3px;
  height: calc(100% - 20px);
  background-color: #c9c9c9;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: -1;
  transform: translateX(-50%);
}
.voice-content ol li {
  padding-left: 50px;
  font-size: 22px;
  font-weight: 700;
  position: relative;
}
@media screen and (max-width: 576px) {
  .voice-content ol li {
    font-size: 18px;
  }
}
.voice-content ol li:not(:first-child) {
  margin-top: 30px;
}
.voice-content ol li::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-color: #003b93;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}

.voice-content-profile {
  margin: 20px 0 30px;
  padding: 26px 30px;
  border-radius: 10px;
  display: flex;
}
@media screen and (max-width: 576px) {
  .voice-content-profile {
    display: block;
  }
}

.voice-content-profile__title {
  color: #003b93;
  font-weight: 700;
  font-family: "Raleway", "Noto Sans JP", sans-serif;
  letter-spacing: 0;
  margin-right: 118px;
}
@media screen and (max-width: 576px) {
  .voice-content-profile__title {
    margin-right: 0;
  }
}
.voice-content-profile__title::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background-color: #003b93;
  margin-top: 5px;
}

@media screen and (max-width: 576px) {
  .voice-content-profile__content {
    margin-top: 10px;
  }
}
.voice-content-profile__content p:not(:first-child) {
  margin-top: 10px;
}
@media screen and (max-width: 576px) {
  .voice-content-profile__content p:not(:first-child) {
    margin-top: 5px;
  }
}

.voice-content-profile__name {
  font-size: 23px;
  font-weight: 500;
}

.welfare-lead__btn {
  margin-top: 80px;
}

.welfare-lead__slider {
  margin-top: 50px;
}
.welfare-lead__slider .swiper-slide {
  padding: 215px 0 0;
  margin: 0 10px;
  position: relative;
  overflow: hidden;
}
.welfare-lead__slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.welfare-list {
  position: relative;
}

.welfare-list__en {
  font-family: "Raleway", "Noto Sans JP", sans-serif;
  font-size: 17.3611111111vw;
  font-weight: 900;
  line-height: 1;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  opacity: 0.1;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .welfare-list__en {
    font-size: 130px;
    transform-origin: right top;
    transform: translateX(-20%) rotate(-90deg);
  }
}

.welfare-list__content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.welfare-list__item {
  background-color: #fff;
  border-radius: 7px;
  padding: 30px;
  text-align: center;
  display: grid;
  place-content: center;
}

.welfare-list__title {
  font-weight: 700;
  font-size: 20px;
}

.welfare-list__sub {
  font-weight: 500;
}

.next-line--left {
  position: relative;
}
.next-line--left::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  background-color: #003b93;
  border-radius: 50%;
  position: absolute;
  bottom: -70px;
  left: calc(65px - 2px);
}
@media screen and (max-width: 768px) {
  .next-line--left::before {
    bottom: -20px;
    left: calc(15px - 2px);
  }
}
.next-line--left::after {
  content: "";
  display: block;
  width: 3px;
  height: 103px;
  background-color: #003b93;
  position: absolute;
  bottom: -170px;
  left: 65px;
}
@media screen and (max-width: 768px) {
  .next-line--left::after {
    height: 63px;
    bottom: -80px;
    left: 15px;
  }
}

.next-line--right {
  position: relative;
}
.next-line--right::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  background-color: #003b93;
  border-radius: 50%;
  position: absolute;
  bottom: -70px;
  right: calc(65px - 2px);
}
@media screen and (max-width: 768px) {
  .next-line--right::before {
    bottom: -20px;
    right: calc(15px - 2px);
  }
}
.next-line--right::after {
  content: "";
  display: block;
  width: 3px;
  height: 103px;
  background-color: #003b93;
  position: absolute;
  bottom: -170px;
  right: 65px;
}
@media screen and (max-width: 768px) {
  .next-line--right::after {
    height: 63px;
    bottom: -80px;
    right: 15px;
  }
}

.welfare-backup {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 72px;
}
@media screen and (max-width: 576px) {
  .welfare-backup {
    grid-template-columns: 1fr;
    margin-bottom: 40px;
  }
}

.welfare-backup__item {
  display: grid;
  place-content: center;
  text-align: center;
  padding: 47px;
  position: relative;
}
@media screen and (max-width: 576px) {
  .welfare-backup__item {
    padding: 20px;
  }
  .welfare-backup__item::after {
    display: none;
  }
  .welfare-backup__item:not(:first-child) {
    border-top: 1px solid #EFEFEF;
  }
}
.welfare-backup__item:nth-child(1)::after {
  content: "";
  width: 1px;
  height: calc(100% - 30px);
  background-color: #000;
  position: absolute;
  top: 0;
  right: 0;
}
.welfare-backup__item:nth-child(2)::after {
  content: "";
  height: 1px;
  width: calc(100% - 30px);
  background-color: #000;
  position: absolute;
  bottom: 0;
  right: 0;
}
.welfare-backup__item:nth-child(3)::after {
  content: "";
  width: calc(100% - 30px);
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
}
.welfare-backup__item:nth-child(4)::after {
  content: "";
  width: 1px;
  height: calc(100% - 30px);
  background-color: #000;
  position: absolute;
  bottom: 0;
  left: 0;
}

.welfare-backup__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (max-width: 576px) {
  .welfare-backup__title {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

.welfare-holiday {
  display: flex;
  flex-wrap: wrap;
  line-height: 2.1875;
}

.welfare-holiday__heading {
  width: 36%;
  padding: 30px 16px;
  border-bottom: 1px solid;
}
@media screen and (max-width: 576px) {
  .welfare-holiday__heading {
    width: 100%;
    padding: 20px 20px 5px;
    border: none;
    font-weight: 700;
  }
}
.welfare-holiday__heading:first-child {
  border-top: 1px solid;
}
@media screen and (max-width: 576px) {
  .welfare-holiday__heading:first-child {
    border: none;
  }
}

.welfare-holiday__text {
  width: 64%;
  padding: 30px 16px;
  border-bottom: 1px solid;
}
@media screen and (max-width: 576px) {
  .welfare-holiday__text {
    width: 100%;
    padding: 5px 20px 20px;
  }
  .welfare-holiday__text:last-child {
    border-bottom: none;
  }
}
.welfare-holiday__text:nth-child(2) {
  border-top: 1px solid;
}
@media screen and (max-width: 576px) {
  .welfare-holiday__text:nth-child(2) {
    border-top: none;
  }
}

.welfare-list2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.welfare-list2__item {
  background-color: #EFEFEF;
  padding: 20px 30px 44px;
}

.welfare-list2__title {
  display: grid;
  place-content: center;
  min-height: 100px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  border-bottom: 1px solid;
  margin-bottom: 24px;
}
.welfare-list2__title span {
  font-size: 16px;
  font-weight: 400;
}

.welfare-list2__text {
  line-height: 2.25;
}

.welfare-woman {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 70px auto 60px;
}
@media screen and (max-width: 576px) {
  .welfare-woman {
    margin: 30px auto;
  }
}

.welfare-woman__item {
  background-color: #fff;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
}
.welfare-woman__item.column-3 {
  width: calc(33.3333333333% - 10px);
}
@media screen and (max-width: 1024px) {
  .welfare-woman__item.column-3 {
    width: 100%;
  }
}
.welfare-woman__item.column-3-2 {
  width: calc((33.3333333333% - 10px) * 2);
}
@media screen and (max-width: 1024px) {
  .welfare-woman__item.column-3-2 {
    width: 100%;
  }
}

.welfare-woman__title {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .welfare-woman__title {
    font-size: 20px;
  }
}

.welfare-woman__sub-title {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  margin-top: -40px;
  line-height: 1.5;
}

.welfare-woman__img {
  flex-grow: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.trip-list {
  margin: 75px auto 300px;
  max-width: 1440px;
}
@media screen and (max-width: 576px) {
  .trip-list {
    margin: 40px auto 0;
  }
}
.trip-list .swiper-pagination1, .trip-list .swiper-pagination2, .trip-list .swiper-pagination3, .trip-list .swiper-pagination4 {
  position: absolute;
  bottom: 0;
  right: 65px;
  left: auto;
  text-align: right;
}
@media screen and (max-width: 576px) {
  .trip-list .swiper-pagination1, .trip-list .swiper-pagination2, .trip-list .swiper-pagination3, .trip-list .swiper-pagination4 {
    right: auto;
    left: 0;
    text-align: center;
  }
}
.trip-list .swiper-pagination1 .swiper-pagination-bullet, .trip-list .swiper-pagination2 .swiper-pagination-bullet, .trip-list .swiper-pagination3 .swiper-pagination-bullet, .trip-list .swiper-pagination4 .swiper-pagination-bullet {
  margin: 2px;
  width: 85px;
  height: 5px;
  background-color: #fff;
  border-radius: 0;
  opacity: 1;
}
@media screen and (max-width: 576px) {
  .trip-list .swiper-pagination1 .swiper-pagination-bullet, .trip-list .swiper-pagination2 .swiper-pagination-bullet, .trip-list .swiper-pagination3 .swiper-pagination-bullet, .trip-list .swiper-pagination4 .swiper-pagination-bullet {
    width: 45px;
  }
}
.trip-list .swiper-pagination1 .swiper-pagination-bullet.swiper-pagination-bullet-active, .trip-list .swiper-pagination2 .swiper-pagination-bullet.swiper-pagination-bullet-active, .trip-list .swiper-pagination3 .swiper-pagination-bullet.swiper-pagination-bullet-active, .trip-list .swiper-pagination4 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #66ccff;
}
.trip-list .swiper-pagination1 .swiper-slide, .trip-list .swiper-pagination2 .swiper-slide, .trip-list .swiper-pagination3 .swiper-slide, .trip-list .swiper-pagination4 .swiper-slide {
  max-width: 610px;
}
.trip-list .trip-slider {
  padding-bottom: 50px;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 576px) {
  .trip-list .trip-slider {
    position: relative;
    padding-bottom: 30px;
  }
}
.trip-list .swiper-container {
  width: 42.3611111111vw;
  max-width: 610px;
}
@media screen and (max-width: 576px) {
  .trip-list .swiper-container {
    width: 100%;
  }
}
.trip-list .swiper-container .swiper-inner {
  width: 100%;
}
.trip-list .swiper-inner {
  width: 63.9583333333vw;
  max-width: 921px;
  overflow: hidden;
}
@media screen and (max-width: 576px) {
  .trip-list .swiper-inner {
    width: 100%;
  }
}

.trip-list__item {
  position: relative;
}
.trip-list__item:not(:first-child) {
  margin-top: 29.1666666667vw;
}
@media screen and (max-width: 576px) {
  .trip-list__item:not(:first-child) {
    margin-top: 30px;
  }
}

.trip-list__title {
  color: #003b93;
  font-weight: 700;
  font-size: 30px;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .trip-list__title {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
.trip-list__title .no {
  font-size: 70px;
  padding-right: 28px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .trip-list__title .no {
    font-size: 40px;
    padding-right: 18px;
  }
}
.trip-list__title .no::after {
  content: "";
  display: block;
  width: 2px;
  height: 54px;
  background-color: #003b93;
  position: absolute;
  top: 54%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .trip-list__title .no::after {
    height: 36px;
  }
}

.welfare-trip {
  position: relative;
}

.welfare-trip__en {
  font-family: "Raleway", "Noto Sans JP", sans-serif;
  font-size: 17.3611111111vw;
  font-weight: 900;
  line-height: 1;
  text-align: right;
  position: absolute;
  top: -2.4305555556vw;
  right: 0;
  z-index: 0;
  opacity: 0.1;
}
@media screen and (max-width: 768px) {
  .welfare-trip__en {
    font-size: 130px;
    transform-origin: bottom right;
    top: -110px;
    transform: translateX(0%) rotate(-90deg);
  }
}

.welfare-club {
  position: relative;
}

.welfare-club__en {
  font-family: "Raleway", "Noto Sans JP", sans-serif;
  font-size: 17.3611111111vw;
  font-weight: 900;
  line-height: 1;
  text-align: right;
  position: absolute;
  top: -2.4305555556vw;
  right: 0;
  z-index: 0;
  opacity: 0.1;
}
@media screen and (max-width: 768px) {
  .welfare-club__en {
    font-size: 130px;
    transform-origin: bottom right;
    top: -110px;
    transform: translateX(0%) rotate(-90deg);
  }
}

.welfare-club__list {
  margin: 50px 0 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 78px 66px;
}
@media screen and (max-width: 768px) {
  .welfare-club__list {
    gap: 30px 20px;
  }
}
@media screen and (max-width: 576px) {
  .welfare-club__list {
    grid-template-columns: 1fr;
  }
}

.welfare-club__club-name {
  display: inline-block;
  padding: 10px 30px;
  background-color: #231815;
  color: #fff;
  font-weight: 700;
  font-size: 30px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .welfare-club__club-name {
    font-size: 20px;
    padding: 5px 15px;
  }
}

.welfare-club-other {
  background-color: #fff;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.welfare-club-other__title {
  flex-grow: 1;
}
.welfare-club-other__title .title {
  display: inline-block;
  background-color: #231815;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  padding: 7px 17px;
  margin: 0 15px 15px 0;
}
@media screen and (max-width: 576px) {
  .welfare-club-other__title .title {
    font-size: 18px;
    padding: 5px 10px;
  }
}

.welfare-club-other__content {
  display: flex;
  flex-wrap: wrap;
  flex-grow: 1;
  gap: 10px 0;
}
.welfare-club-other__content .bullet-list {
  margin: 0;
  flex-grow: 1;
}

.woman-section__inner {
  position: relative;
}
.woman-section__inner::after {
  content: "";
  display: block;
  background-color: #F6F1D8;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 54px;
  left: 65px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .woman-section__inner::after {
    left: 6px;
  }
}

.woman-section__list {
  display: flex;
  flex-wrap: wrap;
}

.woman-section__item {
  padding: 0 50px;
}
@media screen and (max-width: 768px) {
  .woman-section__item {
    padding: 30px;
  }
}
.woman-section__item:not(:first-child) {
  border-left: 1px solid;
}
@media screen and (max-width: 768px) {
  .woman-section__item:not(:first-child) {
    border-left: none;
    border-top: 1px solid;
  }
}
.woman-section__item.column-2 {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .woman-section__item.column-2 {
    width: 100%;
  }
}
.woman-section__item.column-3 {
  width: 40%;
}
@media screen and (max-width: 768px) {
  .woman-section__item.column-3 {
    width: 100%;
  }
}
.woman-section__item.column-3-2 {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .woman-section__item.column-3-2 {
    width: 100%;
  }
}
.woman-section__item.column-1 {
  width: 100%;
  border-bottom: 1px solid;
  padding: 70px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .woman-section__item.column-1 {
    justify-content: center;
    flex-flow: column;
  }
}
@media screen and (max-width: 768px) {
  .woman-section__item.column-1 {
    padding: 30px;
  }
}
.woman-section__item.column-1 > * {
  text-align: center;
}
.woman-section__item img {
  display: block;
  margin: auto;
}

.woman-section__title {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 30px;
}

.woman-section__text {
  font-size: 20px;
  font-weight: 700;
}

.woman-lead__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.woman-lead__text {
  width: 50%;
  font-size: 24px;
  color: #003b93;
  font-weight: 700;
  line-height: 2.5;
  flex-grow: 1;
}
@media screen and (max-width: 1024px) {
  .woman-lead__text {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .woman-lead__text {
    width: 100%;
    margin-bottom: 15px;
  }
}

.woman-lead__img {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .woman-lead__img {
    width: 100%;
  }
}

.woman-flow__item {
  display: flex;
  flex-wrap: wrap;
  padding: 50px 0 67px;
}
@media screen and (max-width: 576px) {
  .woman-flow__item {
    padding: 30px 0 37px;
  }
}
.woman-flow__item:not(:last-child) {
  border-bottom: 1px solid #fff;
}

.woman-flow__left {
  width: 20%;
}
@media screen and (max-width: 576px) {
  .woman-flow__left {
    width: 100%;
  }
}

.woman-flow__right {
  width: 80%;
}
@media screen and (max-width: 576px) {
  .woman-flow__right {
    width: 100%;
  }
}

.woman-flow__en {
  padding-left: 110px;
  font-size: 14px;
  font-weight: 700;
  color: #003b93;
  position: relative;
}
.woman-flow__en::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #003b93;
  position: absolute;
  top: 50%;
  left: 97px;
  transform: translateY(-50%);
}
.woman-flow__en::after {
  content: "";
  display: block;
  width: 100px;
  height: 2px;
  background-color: #003b93;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.woman-flow__no {
  display: block;
  font-size: 70px;
  font-weight: 700;
  color: #003b93;
  line-height: 1;
}
@media screen and (max-width: 576px) {
  .woman-flow__no {
    font-size: 50px;
  }
}

.woman-flow__title {
  font-size: 30px;
  font-weight: 700;
  color: #003b93;
  margin: 28px 0;
}
@media screen and (max-width: 576px) {
  .woman-flow__title {
    font-size: 24px;
    margin: 20px 0 10px;
  }
}

.woman-flow__text {
  line-height: 2.25;
}

.woman-flow-time {
  background-color: #fff;
  padding: 30px;
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  max-width: 454px;
}
@media screen and (max-width: 576px) {
  .woman-flow-time {
    flex-flow: column;
  }
}

.woman-flow-time__item {
  padding-left: 1em;
}
.woman-flow-time__item:not(:first-child) {
  margin-left: 74px;
  position: relative;
}
@media screen and (max-width: 576px) {
  .woman-flow-time__item:not(:first-child) {
    margin-left: 0;
    margin-top: 10px;
  }
}
.woman-flow-time__item:not(:first-child)::after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: #000;
  position: absolute;
  left: -35px;
  top: 0;
}
@media screen and (max-width: 576px) {
  .woman-flow-time__item:not(:first-child)::after {
    display: none;
  }
}

.woman-flow-time__title {
  font-weight: 700;
  position: relative;
}
.woman-flow-time__title::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #003b93;
  position: absolute;
  top: 11px;
  left: -1em;
}

.woman-flow-time__text {
  line-height: 1.875;
}

.woman-flow-list__item {
  line-height: 2.25;
}
.woman-flow-list__item:not(:first-child) {
  margin-top: 56px;
}
@media screen and (max-width: 576px) {
  .woman-flow-list__item:not(:first-child) {
    margin-top: 30px;
  }
}

.woman-flow-list__title {
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 576px) {
  .woman-flow-list__title {
    font-size: 18px;
  }
}
.woman-flow-list__title::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-color: #003b93;
  border-radius: 50%;
}

.woman-system__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media screen and (max-width: 576px) {
  .woman-system__list {
    grid-template-columns: 1fr;
  }
}

.woman-system__item {
  background-color: #EFEFEF;
  padding: 40px 30px;
}

.woman-system__title {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid;
}

.woman-kounotori {
  background-color: #F6F1D8;
}

.woman-kounotori__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.woman-kounotori__content {
  max-width: 714px;
}

.woman-kounotori__title {
  font-size: 30px;
  font-weight: 700;
  color: #003b93;
  margin-bottom: 30px;
}

.woman-kounotori__text {
  line-height: 2.25;
}
@media screen and (max-width: 576px) {
  .woman-kounotori__text {
    margin-bottom: 15px;
  }
}

.woman-kounotori__img {
  width: 190px;
  flex-shrink: 0;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mt-0 {
  margin-top: 0px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-100 {
  margin-top: 100px;
}

.ml-0 {
  margin-left: 0px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-70 {
  margin-left: 70px;
}

.ml-80 {
  margin-left: 80px;
}

.ml-90 {
  margin-left: 90px;
}

.ml-100 {
  margin-left: 100px;
}

.mr-0 {
  margin-right: 0px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-70 {
  margin-right: 70px;
}

.mr-80 {
  margin-right: 80px;
}

.mr-90 {
  margin-right: 90px;
}

.mr-100 {
  margin-right: 100px;
}

.js-tabContent {
  display: none;
}
.js-tabContent.is-show {
  display: block;
}

.faq-section {
  padding-top: 80px;
  padding-bottom: 80px;
}
.faq-section + .faq-section {
  margin-top: -80px;
}

.faq-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.faq-content__wrap {
  background-color: #EFEFEF;
  padding: 10px 0;
  position: relative;
}
.faq-content__wrap[open] .faq-content__question span::after {
  display: none;
}

.faq-content__question {
  padding: 18px 74px 18px calc(30px + 2em);
  font-size: 20px;
  line-height: 1.8;
  font-weight: bold;
  list-style: none;
  cursor: pointer;
  text-indent: -2em;
  position: relative;
}
@media screen and (max-width: 576px) {
  .faq-content__question {
    font-size: 18px;
    padding: 8px 56px 8px calc(16px + 2em);
  }
}
.faq-content__question::before {
  content: "Q.";
  display: inline;
  font-size: 26px;
  color: #003b93;
  margin-right: 10px;
}
@media screen and (max-width: 576px) {
  .faq-content__question::before {
    font-size: 20px;
    margin-right: 12px;
  }
}
.faq-content__question span {
  display: block;
  width: 24px;
  height: 24px;
  border: 1px solid;
  border-radius: 50%;
  position: absolute;
  top: 32px;
  right: 30px;
}
@media screen and (max-width: 576px) {
  .faq-content__question span {
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
  }
}
.faq-content__question span::before {
  content: "";
  display: block;
  width: 11px;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-content__question span::after {
  content: "";
  display: block;
  width: 1px;
  height: 11px;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-content__answer {
  padding: 0 30px 20px;
}
@media screen and (max-width: 576px) {
  .faq-content__answer {
    padding: 0 16px 20px;
  }
}
.faq-content__answer::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
  margin-bottom: 23px;
}

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

.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

.moderu {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  transition: 0.6s all;
  opacity: 0;
  pointer-events: none;
}
.moderu.is-active {
  pointer-events: auto;
  opacity: 1;
}
.moderu figure {
  width: 21rem;
  height: auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .moderu figure {
    width: 16rem;
  }
}
.moderu figure .close {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(100%);
  width: 2.7rem;
  height: 2.7rem;
  background: #dcd9d9;
}
.moderu figure .close span {
  position: absolute;
  transform: translate(-50%, -50%) rotate(45deg);
  top: 50%;
  left: 50%;
  width: 80%;
  height: 2px;
  background-color: #000;
}
.moderu figure .close span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/*===*//*# sourceMappingURL=style.css.map */