@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700;900&family=Roboto:wght@400;700;900&display=swap');

:root {
  --bs-body-color: #222222;
  --bs-body-bg: #fff;
  --bs-font-jp: 'Noto Sans JP', sans-serif;
  --bs-font-en: 'Roboto', sans-serif;
  --bs-body-font-family: var(--bs-font-jp);
  --bs-body-font-weight: 400;
  --bs-body-font-size-pc: 1.6rem;
  --bs-body-font-size-sp: 1.4rem;
  --bs-body-line-height: 160%;
  --blue: #0b308e;
}

html {
  font-size: 10px;
  overflow-x: hidden;
}

@media screen and (max-width: 1440px) {
  html {
    font-size: 0.694444vw;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 2.6643vw;
  }
}

html.fixed {
  overflow: hidden;
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size-pc);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}
@media screen and (max-width: 768px) {
  body {
    font-size: var(--bs-body-font-size-sp);
  }
}

h2 {
  font-size: 4.8rem;
  font-weight: 600;
  line-height: 140%;
  position: relative;
  padding-bottom: 3rem;
}

h2::after {
  content: "";
  width: 8rem;
  height: 0.4rem;
  background: var(--blue);
  position: absolute;
  bottom: 0;
}

h3 {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 140%;
}

@media screen and (max-width: 768px) {
  h2 {
    font-size: 2.4rem;
    padding-bottom: 2rem;
  }

  h2::after {
    width: 6rem;
  }

  h3 {
    font-size: 2rem;
  }
}

.wrap {
  overflow: hidden;
  margin: 0 auto;
}

.nowrap {
  display: block;
  width: 100%;
}

.inner {
  width: 100%;
  margin: 0 auto;
  padding: 17rem 0;
}

@media screen and (max-width: 768px) {
  .inner {
    padding: 6rem 0;
    width: calc(100% - 4rem);
  }
}

.center {
  text-align: center;
}

.en {
  font-family: var(--bs-font-en);
}

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

header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 8.9rem;
  z-index: 10;
  /* background: var(--bs-body-bg);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15) */
}

header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  height: 8.9rem;
  padding: 0 6.1rem 0 6rem;
}

header .logo {
  width: 10.4rem;
}

header nav {
  width: 100%;
}

header .nav-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* margin-left: 23.1rem; */
  gap: 4rem;
  font-weight: 600;
  width: 80rem;
  margin: 0 auto;
}

header .nav-list li a{
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #fff;
}

header .nav-list li a:hover{
  opacity: 0.7;
}

header .resize .nav-list li a {
  color: var(--bs-body-color);
}

header #hamburger {
  display: none;
}

@media screen and (max-width: 768px) {
  header {
    height: 7.5rem;
  }

  header .inner {
    justify-content: flex-end;
    height: 7.5rem;
    padding: 0 2rem 0 1.6rem;
  }

  header .logo {
    width: 8rem;
  }

  header nav {
    position: fixed;
    z-index: 4;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(231, 234, 244, 1);
    transform: translateX(100%);
    transition: all .4s;
  }

  header .nav-list{
    flex-direction: column;
    justify-content: center;
    gap: 50px;
    width: 100%;
    height: auto;
    margin: 0;
    padding-top: 157px;
  }

  header .nav-list li {
    width: 100%;
    text-align: center;
  }

  header .nav-list li a{
    color: var(--bs-body-color);
    font-size: 1.6rem;
    line-height: 140%;
    transition: .3s;
  }

  header #nav.active{
    transform: translateX(0);
  }

  header .hamburger{
    position: relative;
    z-index: 5;
    cursor: pointer;
    width: 4rem;
    height: 3.3rem;
  }

  header .hamburger span{
    display: inline-block;
    position: absolute;
    right: 0;
    height: 0.4rem;
    background: #fff;
    width: 100%;
    transition: all .4s;
  }

  header .resize .hamburger span {
    background: var(--bs-body-color)
  }

  header .hamburger span:nth-of-type(1) {
    top:0; 
  }

  header .hamburger span:nth-of-type(2) {
    top:1.3rem;
  }

  header .hamburger span:nth-of-type(2)::after {
    content: "MENU";
    position: absolute;
    top: 0.9rem;
    right: 0.16rem;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: var(--bs-font-en);
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  header .resize .hamburger span:nth-of-type(2)::after {
    color: var(--bs-body-color);
  }

  header .hamburger.active span {
    background: var(--bs-body-color);
  }

  header .hamburger.active span:nth-of-type(1) {
    bottom: 0;
    right: 0;
    transform: translateY(0.65rem) rotate(-20deg);
  }

  header .hamburger.active span:nth-of-type(2){
    bottom: 0;
    right: 0;
    transform: translateY(-0.6rem) rotate(20deg);
  }

  header .hamburger.active span:nth-of-type(2)::after {
    content: "CLOSE";
    transform: translateY(0) rotate(-20deg);
    top: 1.4rem;
    right: -0.6rem;
    color: var(--bs-body-color)
  }
}

.btn {
  background: linear-gradient(90deg, #0b768e 0%, #0b308e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25rem;
  height: 7rem;
  font-size: 2rem;
  font-weight: 700;
  border-radius: 4rem;
  border: 0.1rem #0b538e solid;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .btn {
    width: 25rem;
    height: 7rem;
    font-size: 2rem;
  }
}

.btn:hover {
  transform: translate3d(0, 0.4rem, 0);
  box-shadow: none;
  text-decoration: none;
}

.mv {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  height: 64.5rem;
  color: #fff;
  background: linear-gradient(90deg, rgba(11, 48, 142, 0.6) 100%, rgba(255, 255, 255, 0) 100%),
  url(../img/mv.jpg);
  background-position: 0 0;
  background-size: cover;
}

.mv h2,
.mv p {
  width: 100%;
  text-align: center;
}

.mv h2 {
  padding: 0;
  font-size: 6.8rem;
  letter-spacing: 0.1em;
}

.mv h2::after {
  display: none;
}

@media screen and (max-width: 768px) {
  .mv {
    width: 100%;
    position: relative;
    background-position: 35% 50%;
  }

}

#sec_message {
  background: rgba(11, 48, 142, 0.05);
}

#sec_message .message-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8rem;
  width: 108rem;
  margin: 0 auto;
}

#sec_message .message-content h2 {
  margin-bottom: 6rem;
  text-align: left;
}

#sec_message .message-content h2::after {
  left: 0;
}

#sec_message .message-content p {
  margin-bottom: 8rem;
  font-size: 2rem;
  line-height: 1.75;
}

#sec_message .message-img {
  width: 50%;
  text-align: center;
}

#sec_message .message-img img {
  width: 45rem;
}

#sec_message .message-txt {
  width: 50%;
}

@media screen and (max-width: 768px) {
  #sec_message .message-content {
    flex-direction: column;
    gap: 3rem;
    width: 100%;
  }

  #sec_message .message-img,
  #sec_message .message-txt {
    width: 100%;
  }

  #sec_message .message-img img {
    width: 28rem;
  }

  #sec_message .message-content h2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
  }

  #sec_message .message-content h2::after {
    left: unset;
  }

  #sec_message .message-content p {
    margin-bottom: 4rem;
    font-size: 1.6rem;
  }

  #sec_message .message-txt .btn {
    margin: 0 auto;
  }

}

#sec_m-v .m-v-content {
  display: flex;
  width: 100%;
  height: 60rem;
}

#sec_m-v .m-v-img {
  width: 30%;
}

#sec_m-v .m-v-img img {
  width: 100%;
  height: 60rem;
  object-fit: cover;
}

#sec_m-v .m-v-txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 40%;
  padding: 0 4rem;
}

#sec_m-v .m-v-txt h2,
#sec_voice h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 4rem;
}

#sec_m-v .m-v-txt p {
  margin-bottom: 6rem;
  font-size: 2rem;
  line-height: 1.75;
}

@media screen and (max-width: 768px) {
  #sec_m-v .m-v-content {
    height: auto;
    flex-direction: column;
  }

  #sec_m-v .m-v-img,
  #sec_m-v .m-v-txt {
    width: 100%;
  }

  #sec_m-v .m-v-img img {
    height: 10rem;
  }

  #sec_m-v .m-v-txt {
    padding: 4rem 2rem;
  }

  #sec_m-v .m-v-txt h2 {
    margin-bottom: 3rem;
  }

  #sec_m-v .m-v-txt p {
    font-size: 1.6rem;
  }
}


#sec_voice {
  background: rgba(11, 48, 142, 0.05);
}

#sec_voice h2 {
  margin-bottom: 6rem;
}

#sec_voice .voice-list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  margin: auto 0;
}

#sec_voice .voice-item {
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  flex-direction: column;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 48rem;
}

#sec_voice .voice-img img {
  width: 100%;
}

#sec_voice .voice-content {
  width: 100%;
  margin-top: 3rem;
}

#sec_voice .voice-ttl {
  padding-bottom: 2rem;
  font-weight: 600;
}

#sec_voice .btn_wrap {
  margin-top: 2rem;
  text-align: right;
}

.btn_circle {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  position: relative;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: linear-gradient(90deg, #0b768e 0%, #0b308e 100%);
  border: 0.15rem #0b538e solid;
  transition: all .3s;
  color: #fff;
}

.btn_circle::before, .btn_circle::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.55rem;
  margin: auto;
  content: "";
  vertical-align: middle;
  transition: all .3s;
}

.btn_circle::before {
  width: 2.85rem;
  height: 0.15rem;
  background: currentColor;
}

.btn_circle::after {
  right: 1.75rem;
  width: 1.5rem;
  height: 1.5rem;
  border-top: 0.15rem solid currentColor;
  border-right: 0.15rem solid currentColor;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.btn_circle:hover {
  background: #fff;
}

.btn_circle:hover::before,
.btn_circle:hover::after {
  color: var(--blue);
}

@media screen and (max-width: 768px) {
  #sec_voice h2 {
    margin-bottom: 4rem;
  }

  #sec_voice .voice-item {
    width: 100%;
    max-width: 30rem;
  }

  #sec_voice .btn_wrap {
    margin-top: 1.5rem;
  }

  .btn_circle {
    width: 5rem;
    height: 5rem;
  }

  .btn_circle::before, .btn_circle::after {
    right: 1.3rem;
  }

  .btn_circle::before {
    width: 2.375rem;
  }

  .btn_circle::after {
    right: 1.5rem;
    width: 1.25rem;
    height: 1.25rem;
  }
}

footer {
  padding: 5rem 0 3.5rem;
  text-align: center;
  background: var(--bs-body-color)
}

footer .inner {
  max-width: 80rem;
  width: 95%;
  padding: 0;
}

footer .upper {
  display: flex;
  /* justify-content: space-between; */
  justify-content: flex-end;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 12.7rem;
}

/* footer .logo {
  width: 13rem;
} */

footer nav {
  width: 100%;
}

footer nav ul {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* footer nav ul:first-child {
  margin-right: 10em;
} */

footer nav ul li {
  padding-bottom: 2rem;
  text-align: left;
}

footer nav a {
  font-size: 1.6rem;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

footer nav a:hover {
  opacity: 0.7;
}

footer .copyright {
  color: #fff;
  font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
  footer {
    padding: 6rem 0 3rem;
  }

  footer .inner {
    width: calc(100% - 4rem);
  }

  footer .upper {
    justify-content: center;
    margin-bottom: 4rem;
  }

  footer .logo {
    width: 18rem;
    display: block;
    margin: 0 auto;
  }

  footer nav {
    margin: 6rem 0 0;
  }

  footer nav ul {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }

  footer nav ul:first-child {
    margin: 0 0 2em 0;
  }

  footer nav ul li {
    text-align: center;
  }

  footer nav a {
    font-size: 1.4rem;
  }

  footer .copyright {
    font-size: 1.2rem;
  }
}

/* -----------------------
下層ページ
----------------------- */

.subpage header .nav-list li a {
  color: var(--bs-body-color);
}

.subpage header .hamburger span {
  background: var(--bs-body-color);
}

.subpage header .hamburger span:nth-of-type(2)::after {
  color: var(--bs-body-color);
}

/* 代表メッセージ */
.subpage .message-intro .intro-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 108rem;
  margin: 0 auto;
}

.subpage .message-intro .intro-content {
  width: 50%;
}

.h2-grad {
  margin-bottom: 2rem;
  background: linear-gradient(90deg, #0b768e 0%, #0b308e 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}

.h2-grad::after {
  display: none;
}

.subpage .message-intro .intro-content p {
  font-size: 2rem;
  line-height: 1.75
}

.subpage .message-intro .intro-img {
  width: 50%;
}

.subpage .message-intro .intro-img img {
  width: 100%;
}

.subpage #sec_message {
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.05) 0%, rgba(11, 118, 142, 0.05) 30%, rgba(11, 48, 142, 0.15) 80%);
}

.subpage #sec_message .message-img {
  display: flex;
  width: 50%;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}

.subpage #sec_message .message-img img {
  width: 100%;
}

.subpage #sec_message .message-txt {
  width: 100%;
}

.subpage #sec_message .message-txt p {
  margin-bottom: 2em;
  font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
  .subpage .message-intro {
    margin-top: 10rem;
  }

  .subpage .message-intro .intro-wrap {
    flex-direction: column;
    width: calc(100% - 4rem);
  }

  .subpage .message-intro .intro-img,
  .subpage .message-intro .intro-content,
  .subpage #sec_message .message-img,
  .subpage #sec_message .message-txt {
    width: 100%;
  }

  .subpage .message-intro .intro-content {
    margin-bottom: 3rem;
  }

  .h2-grad {
    font-size: 2.8rem;
    padding: 0;
  }

  .subpage .message-intro .intro-content p {
    font-size: 1.6rem;
  }

  .subpage .message-intro .intro-img {
    text-align: center;
  }

  .subpage .message-intro .intro-img img {
    width: 28rem;
  }

  .subpage  #sec_message .message-content {
    flex-direction: column-reverse;
  }

  .subpage #sec_message .message-txt p {
    font-size: 1.4rem;
  }

}

/* ミッション・ビジョン */
.subpage .m-v-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8rem;
  width: 108rem;
  margin: 0 auto;
}

.subpage .m-v-txt {
  width: 50%;
}

.subpage .m-v-txt h3 {
  display: inline-block;
  padding: 0.25em;
  background: linear-gradient(90deg, #0b768e 0%, #0b308e 100%);
  color: #fff;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.subpage .m-v-img {
  width: 50%;
}

.subpage .m-v-img img {
  width: 100%;
}

.subpage #vision {
  background: rgba(11, 48, 142, 0.05);
}

@media screen and (max-width: 768px) {
  .subpage #mission .inner {
    padding: 10rem 0 6rem;
  }

  .subpage .m-v-content {
    flex-direction: column;
    gap: 4rem;
    width: 100%;
  }

  .subpage .m-v-txt,
  .subpage .m-v-img {
    width: 100%;
  }

  .subpage .m-v-txt h3 {
    font-size: 2rem;
  }

  .subpage #vision .m-v-content {
    flex-direction: column-reverse;
  }
}

/* 先輩社員の声 */
.subpage .voice-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8rem;
  width: 108rem;
  margin: 0 auto;
}

.subpage .voice-content .voice-img {
  width: 50%;
}

.subpage .voice-content .voice-img img {
  width: 100%;
}

.subpage .voice-content .voice-txt {
  width: 50%;
}

.subpage .voice-content .voice-txt .voice-position {
  font-size: 1.8rem;
  font-weight: 500;
}

.subpage .voice-content .voice-txt .voice-name {
  font-size: 2.4rem;
  font-weight: 600;
}

.subpage .v-i-content .v-i-img img {
  width: 100%;
}

.subpage #voice-interview .inner {
  padding: 3rem 0 17rem;
}

.subpage .v-i-wrap {
  width: 108rem;
  margin: 0 auto;
}

.subpage .v-i-content {
  display: flex;
  justify-content: center;
  gap: 8rem;
  width: 100%;
}

.subpage #voice-interview h2 {
  margin-bottom: 4rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid#cccccc;
  font-size: 3.2rem;
}

.subpage #voice-interview h2::after {
  display: none;
}

@media screen and (max-width: 768px) {
  .subpage .voice-content {
    flex-direction: column-reverse;
    gap: 4rem;
    width: 100%;
    margin-top: 2rem;
  }

  .subpage .voice-content .voice-img,
  .subpage .voice-content .voice-txt {
    width: 100%;
  }

  .subpage .voice-content .voice-txt .voice-position {
    font-size: 1.4rem;
  }

  .subpage .voice-content .voice-txt .voice-name {
    font-size: 1.8rem;
  }

  .subpage #voice-interview .inner {
    padding: 0 0 6rem;
  }

  .subpage .v-i-wrap {
    width: 100%;
  }

  .subpage .v-i-content {
    flex-direction: column;
    gap: 4rem;
    width: 100%;
  }

  .subpage .v-i-content.sp-reverse {
    flex-direction: column-reverse;
  }

  .subpage #voice-interview h2 {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    font-size: 2rem;
  }
}

/* margin */
.m-top0 {
  margin-top: 0;
}
.m-top10 {
  margin-top: 1rem;
}
.m-top15 {
  margin-top: 1.5rem;
}
.m-top20 {
  margin-top: 2rem;
}
.m-top30 {
  margin-top: 3rem;
}
.m-top40 {
  margin-top: 4rem;
}
.m-top50 {
  margin-top: 5rem;
}
.m-top60 {
  margin-top: 6rem;
}
.m-top70 {
  margin-top: 7rem;
}
.m-top80 {
  margin-top: 8rem;
}
.m-top90 {
  margin-top: 9rem;
}
.m-top100 {
  margin-top: 10rem;
}

.m-btm0 {
  margin-bottom: 0;
}
.m-btm10 {
  margin-bottom: 1rem;
}
.m-btm20 {
  margin-bottom: 2rem;
}
.m-btm30 {
  margin-bottom: 3rem;
}
.m-btm40 {
  margin-bottom: 4rem;
}
.m-btm50 {
  margin-bottom: 5rem;
}
.m-btm60 {
  margin-bottom: 6rem;
}
.m-btm70 {
  margin-bottom: 7rem;
}
.m-btm80 {
  margin-bottom: 8rem;
}
.m-btm90 {
  margin-bottom: 9rem;
}
.m-btm100 {
  margin-bottom: 10rem;
}

@media screen and (max-width: 768px) {
  .sp-m-top0 {
    margin-top: 0;
  }
  .sp-m-top10 {
    margin-top: 1rem;
  }
  .sp-m-top15 {
    margin-top: 1.5rem;
  }
  .sp-m-top20 {
    margin-top: 2rem;
  }
  .sp-m-top30 {
    margin-top: 3rem;
  }
  .sp-m-top40 {
    margin-top: 4rem;
  }
  .sp-m-top50 {
    margin-top: 5rem;
  }
  .sp-m-top60 {
    margin-top: 6rem;
  }
  .sp-m-top70 {
    margin-top: 7rem;
  }
  .sp-m-top80 {
    margin-top: 8rem;
  }
  .sp-m-top90 {
    margin-top: 9rem;
  }
  .sp-m-top100 {
    margin-top: 10rem;
  }
  
  .sp-m-btm0 {
    margin-bottom: 0;
  }
  .sp-m-btm10 {
    margin-bottom: 1rem;
  }
  .sp-m-btm20 {
    margin-bottom: 2rem;
  }
  .sp-m-btm30 {
    margin-bottom: 3rem;
  }
  .sp-m-btm40 {
    margin-bottom: 4rem;
  }
  .sp-m-btm50 {
    margin-bottom: 5rem;
  }
  .sp-m-btm60 {
    margin-bottom: 6rem;
  }
  .sp-m-btm70 {
    margin-bottom: 7rem;
  }
  .sp-m-btm80 {
    margin-bottom: 8rem;
  }
  .sp-m-btm90 {
    margin-bottom: 9rem;
  }
  .sp-m-btm100 {
    margin-bottom: 10rem;
  }

}