@charset "UTF-8";
/* definition
=================================*/
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Noto+Sans+JP:wght@400;700&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  font-family: "Noto Sans JP, YuGothic, 'Yu Gothic', 'Hiragino Sans','Hiragino Kaku Gothic Pro', Meiryo, Osaka, MS PGothic, -apple-system, BlinkMacSystemFont, sans-serif";
  font-size: 16px;
  line-height: 1.6;
  background: #fff;
  color: #333333;
}

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

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
}

.clear::after {
  content: ""; /* 擬似要素を実体化*/
  clear: both; /* floatを解除*/
  display: block; /* ブロック要素にする*/
}

section {
  padding-top: 20px;
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

/*body
=================================*/
.container {
  width: 800px;
  max-width: 100%;
  margin: 0 auto;
  height: inherit;
}
@media screen and (max-width: 767px) {
  .container {
    width: 95%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .container {
    width: 95%;
    margin: 0 auto;
  }
}

.section-title {
  font-size: 32px;
  text-align: center;
  padding-top: 0px;
  padding-bottom: 40px;
  margin-bottom: 20px;
  position: relative;
  font-family: "Noto Sans JP, YuGothic, 'Yu Gothic', 'Hiragino Sans','Hiragino Kaku Gothic Pro', Meiryo, Osaka, MS PGothic, -apple-system, BlinkMacSystemFont, sans-serif";
}
.section-title h2 {
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .section-title {
    font-size: 22px;
  }
}
.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: #00004d;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .section-title::after {
    width: 60px;
  }
}

.section-subtitle {
  font-size: 22px;
  line-height: 2em;
  font-weight: 700;
  text-align: center;
  padding-top: 0px;
  padding-bottom: 28px;
  font-family: "Noto Sans JP, YuGothic, 'Yu Gothic', 'Hiragino Sans','Hiragino Kaku Gothic Pro', Meiryo, Osaka, MS PGothic, -apple-system, BlinkMacSystemFont, sans-serif";
}
@media screen and (max-width: 767px) {
  .section-subtitle {
    font-size: 16px;
  }
}

/*==============================
ドロワー
==============================*/
.drawer-icon {
  position: fixed;
  top: 20px;
  right: 16px;
  z-index: 300;
  display: none;
  transition: transform 0.5s ease 0s;
}
@media screen and (max-width: 767px) {
  .drawer-icon {
    display: none;
  }
}
.drawer-icon.is-active {
  transform: translateX(-200px);
}
.drawer-icon.is-active .drawer-icon__bar1 {
  transform: rotate(-45deg);
  top: 8px;
}
.drawer-icon.is-active .drawer-icon__bar2 {
  display: none;
}
.drawer-icon.is-active .drawer-icon__bar3 {
  transform: rotate(45deg);
  top: 8px;
}

.drawer-icon__bars {
  width: 22px;
  height: 20px;
  display: block;
  position: relative;
}

.drawer-icon__bar1,
.drawer-icon__bar2,
.drawer-icon__bar3 {
  position: absolute;
  width: 22px;
  height: 4px;
  background: #fff;
  top: 0;
  left: 0;
}

.drawer-icon__bar1 {
  top: 0;
}

.drawer-icon__bar2 {
  top: 8px;
}

.drawer-icon__bar3 {
  top: 16px;
}

.drawer-content {
  background: #fff;
  width: 200px;
  height: 100%;
  position: fixed;
  right: 0;
  top: 0;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
  z-index: 299;
  transform: translateX(105%);
  transition: transform 0.5s ease 0s;
}
.drawer-content.is-active {
  transform: translateX(0);
}

.drawer-content__item {
  border-bottom: 1px dotted #707070;
}
.drawer-content__item a {
  display: block;
  color: #707070;
  text-decoration: none;
  padding: 18px 20px;
  position: relative;
}
.drawer-content__item a::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  height: 11px;
  width: 8px;
  background: url(../IMG/arrow-b.svg) no-repeat center center/contain;
}

.drawer-backgrand {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 298;
  display: none;
}
.drawer-backgrand.is-active {
  display: block;
}

/*header
=================================*/
.header {
  background-color: #00004d;
  height: 60px;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16);
  position: fixed;
  width: 100%;
  z-index: 100;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .header {
    height: 40px;
  }
}

.header-container {
  display: flex;
  align-items: center;
  height: inherit;
  width: 1200px;
}

@media screen and (max-width: 767px) {
  .header-left {
    width: 100%;
    text-align: center;
  }
}
.header-left img {
  height: 50px;
  width: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .header-left img {
    height: 32px;
    margin-left: 5px;
  }
}

.header-right {
  margin-left: auto;
  height: 40px;
  align-items: center;
}

.nav {
  display: flex;
  font-family: "Montserrat", sans-serif, "ヒラギノ角ゴ W6 JIS2004";
}
@media screen and (max-width: 767px) {
  .nav {
    display: none;
  }
}

.nav-item:not(:first-child) {
  margin-left: 40px;
}
.nav-item a {
  font-size: 14px;
  color: #ffffff;
  text-decoration: none;
  line-height: 40px;
  position: relative; /*アンダーラインの位置を決めるための基準 */
  padding-top: 9px;
  padding-bottom: 9px;
}
.nav-item a::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 2px;
  background: transparent;
  transition: all 0.3s ease 0s;
  /*動的なアンダーライン*/
}
.nav-item a:hover::after, .nav-item a.is-active::after {
  background: #e81919;
}

/*top
=================================*/
.top {
  height: 200px;
  width: 100%;
  margin-top: 60px;
  padding: 0px;
}
@media screen and (max-width: 767px) {
  .top {
    height: 150px;
    margin-top: 40px;
  }
}

.top-contents {
  width: 100%;
  line-height: 1.5;
}

.top-title {
  font-size: 60px;
  font-weight: bold;
  color: #000;
  text-shadow: 0px 0px 3px #707070;
  padding-top: 20px;
}
@media screen and (max-width: 767px) {
  .top-title {
    font-size: 32px;
    padding-right: 46px;
  }
}

@media screen and (min-width: 1200px) {
  .hidden-pc {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .hidden-tab {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .hidden-sp {
    display: none;
  }
}
.top-lead {
  font-size: 26px;
  font-weight: bold;
  font-weight: bold;
  color: #000;
  text-shadow: 0px 0px 3px #707070;
}
@media screen and (max-width: 767px) {
  .top-lead {
    font-size: 18px;
  }
}

/*footer
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/
footer {
  background: linear-gradient(to bottom, #666666, #333333);
  padding: 60px 0 24px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  footer {
    padding-top: 20px;
  }
}

.footer__content {
  display: flex;
}
@media screen and (max-width: 767px) {
  .footer__content {
    display: block;
  }
}

.footer__left {
  width: 36%;
}
@media screen and (max-width: 767px) {
  .footer__left {
    width: 100%;
  }
}

.footer__logo img {
  width: 205px;
}

.footer__address,
.footer__tel {
  margin-top: 32px;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .footer__address,
  .footer__tel {
    margin-top: 12px;
  }
}

.footer__tel {
  margin-top: 14px;
}
@media screen and (max-width: 767px) {
  .footer__tel {
    margin-top: 8px;
  }
}

.footer__center {
  width: 55%;
}
@media screen and (max-width: 767px) {
  .footer__center {
    width: 100%;
    font-size: 10px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .footer__center {
    font-size: 12px;
  }
}

.footer__nav {
  display: flex;
  font-family: "Montserrat", sans-serif, "ヒラギノ角ゴ W6 JIS2004";
}
@media screen and (max-width: 767px) {
  .footer__nav {
    margin-top: 20px;
    justify-content: center;
  }
}
.footer__nav li:not(:first-child) {
  margin-left: 40px;
}
@media screen and (max-width: 767px) {
  .footer__nav li:not(:first-child) {
    margin-left: 20px;
  }
}
.footer__nav li a {
  text-decoration: none;
}

.footer__right {
  width: 16%;
}
@media screen and (max-width: 767px) {
  .footer__right {
    width: 100%;
    margin-top: 20px;
  }
}

.footer__sns {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .footer__sns {
    justify-content: center;
  }
}
.footer__sns li:not(:first-child) {
  margin-left: 16px;
}
.footer__sns a {
  text-decoration: none;
}
.footer__sns img {
  width: 30px;
}

.footer__copy {
  text-align: center;
  margin-top: 46px;
  font-size: 14px;
  font-family: "Montserrat", sans-serif, "ヒラギノ角ゴ W6 JIS2004";
}
@media screen and (max-width: 767px) {
  .footer__copy {
    margin-top: 20px;
    font-size: 8px;
  }
}

.to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease 0s;
}
@media screen and (max-width: 767px) {
  .to-top {
    display: none;
    right: 12px;
    bottom: 12px;
  }
}
.to-top.is-show {
  opacity: 1;
  visibility: visible;
}
.to-top a {
  text-decoration: none;
}
.to-top img {
  width: 60px;
}

.container-footer {
  width: 1200px;
}
@media screen and (max-width: 767px) {
  .container-footer {
    width: 90%;
  }
}

/*==============================
javascript
==============================*/
/*Interview
=================================*/
.interview {
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .interview {
    padding-top: 0;
  }
}

.company-name p {
  font-weight: bold;
}

.company-text {
  margin-top: 20px;
}

.head1 {
  text-align: left;
  font-weight: bold;
  font-size: 32px;
  color: #000;
  width: 100%;
  margin: 0 auto;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: solid 3px black;
}

.head2 {
  text-align: left;
  font-weight: bold;
  font-size: 30px;
  width: 100%;
  margin: 0 auto;
  margin-top: 40px;
  margin-bottom: 20px;
  padding: 0.25em 0.5em; /*上下 左右の余白*/
  color: #494949; /*文字色*/
  background: transparent; /*背景透明に*/
  border-left: solid 5px #7db4e6; /*左線*/
}

.head3 {
  text-align: left;
  font-weight: bold;
  font-size: 30px;
  width: 100%;
  margin: 0 auto;
  margin-top: 40px;
  margin-bottom: 20px;
  padding: 0.5em; /*文字周りの余白*/
  color: #494949; /*文字色*/
  background: #fffaf4; /*背景色*/
  border-left: solid 5px #ffaf58; /*左線（実線 太さ 色）*/
}

.head4 {
  text-align: left;
  font-weight: bold;
  font-size: 32px;
  color: #000;
  width: 100%;
  margin: 0 auto;
  margin-top: 40px;
  margin-bottom: 20px;
  position: relative;
  padding: 0.25em 0;
}
.head4 h2:after {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(to right, rgb(230, 90, 90), transparent);
}

.head5 {
  text-align: left;
  font-weight: bold;
  font-size: 32px;
  color: #000;
  width: 100%;
  margin: 0 auto;
  border-bottom: solid 3px #bdbdff;
  position: relative;
}
.head5 h2:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #00004d;
  bottom: -3px;
  width: 20%;
}
@media screen and (max-width: 767px) {
  .head5 {
    font-size: 24px;
  }
}

.head-contents {
  display: flex;
  text-align: left;
  font-size: 18px;
  color: #000;
  width: 100%;
  margin-bottom: 20px;
  margin-top: 5px;
  align-items: center;
  height: inherit;
}
@media screen and (max-width: 767px) {
  .head-contents {
    font-size: 12px;
  }
}

.head-contents_name {
  background-color: #707070;
  display: block;
  width: 8%;
  margin: 5px;
  margin-right: 20px;
  padding: 2px 5px;
  text-align: center;
  border-radius: 100px;
  color: #f7f7f7;
}
@media screen and (max-width: 767px) {
  .head-contents_name {
    width: 13%;
    margin-right: 10px;
  }
}

.head-contents_text {
  display: block;
  width: 90%;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .head-contents_text {
    width: 87%;
    font-size: 12px;
  }
}

.head_h3 h3 {
  position: relative;
  display: inline-block;
  padding-left: 45px;
  margin-bottom: 20px;
  font-size: 28px;
  margin-top: 50px;
  margin-bottom: 30px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .head_h3 h3 {
    font-size: 22px;
    padding-left: 35px;
  }
}
.head_h3 h3:before,
.head_h3 h1:after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 35px;
  height: 1px;
  background-color: #707070;
}
@media screen and (max-width: 767px) {
  .head_h3 h3:before,
  .head_h3 h1:after {
    width: 25px;
  }
}
.head_h3 h3:before {
  left: 0;
}

@media screen and (max-width: 767px) {
  .wrapper {
    font-size: 15px;
  }
}
.wrapper img {
  width: 100%;
}

.wrapper-text {
  margin-bottom: 20px;
  line-height: 2;
  text-align: justify;
}
.wrapper-text span {
  font-size: 17px;
  font-weight: bold;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .wrapper-text span {
    font-size: 15px;
  }
}
.wrapper-text span-a {
  color: #2f7dc8;
  font-size: 17px;
  font-weight: bold;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .wrapper-text span-a {
    font-size: 15px;
  }
}
.wrapper-text span-b {
  color: #ff9b45;
  font-size: 17px;
  font-weight: bold;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .wrapper-text span-b {
    font-size: 15px;
  }
}

.wrapper-note {
  font-size: 12px;
}

.wrapper-note_center {
  text-align: center;
  font-size: 15px;
}

.wrapper-split {
  display: flex;
}
.wrapper-split img {
  display: block;
  margin: 20px;
  width: 55%;
  height: 100%;
  border-radius: 0px;
}
@media screen and (max-width: 767px) {
  .wrapper-split {
    display: block;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 40px;
  }
}

.wrapper-split-text {
  display: block;
  margin: 20px;
}

.wrapper-text-1 {
  margin-bottom: 20px;
  color: #2f7dc8;
}
.wrapper-text-1 h3 {
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .wrapper-text-1 h3 {
    text-align: center;
    margin-top: 50px;
    font-size: 22px;
  }
}

.wrapper-text-2 {
  font-size: 16px;
  line-height: 2em;
  text-align: justify;
}

.wrapper-text-3 {
  display: inline;
  text-align: right;
  margin-bottom: auto;
}

.about {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .about {
    font-size: 14px;
  }
}

.about-name {
  font-size: 24px;
  font-weight: 600;
  border-bottom: solid 2px #00004d;
}
@media screen and (max-width: 767px) {
  .about-name {
    font-size: 18px;
  }
}

.about-text {
  margin-top: 10px;
}

.about-addres {
  margin-top: 20px;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .about-addres {
    margin-top: 10px;
  }
}

.contact {
  margin-top: 60px;
}

.contact-wrapper {
  display: flex;
  padding: 20px 40px;
  background-color: #f7f7f7;
  border-radius: 12px;
}
@media screen and (max-width: 767px) {
  .contact-wrapper {
    padding: 10px 20px;
    margin: 0 20px;
    display: block;
  }
}

.contact-text {
  display: block;
  font-size: 18px;
  width: 70%;
  padding-right: 50px;
  margin: auto 0;
}
@media screen and (max-width: 767px) {
  .contact-text {
    width: 100%;
    padding-right: 0px;
  }
}

.contact-mail {
  position: relative;
  border-style: solid;
  border-color: #000;
  border-width: 1px;
  padding: 10px 15px;
  margin-top: 20px;
  padding-left: 70px;
  font-weight: 500;
  font-size: 22px;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .contact-mail {
    padding: 5px 0px;
    padding-left: 55px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 18px;
    text-decoration: none;
  }
}
.contact-mail::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateX(10px) translateY(-50%);
  width: 30px;
  height: 30px;
  background: url(../IMG/mail_logo.png) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .contact-mail::after {
    left: 10px;
    transform: translateX(0px) translateY(-50%);
    top: 52%;
  }
}

.contact-img {
  display: block;
  width: 30%;
}
.contact-img img {
  border-radius: 6px;
  box-shadow: 10px 10px 15px -10px;
}
@media screen and (max-width: 767px) {
  .contact-img {
    display: none;
  }
}

.contact-text_a {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .contact-text_a {
    font-size: 12px;
  }
}

.contact-text_b {
  font-size: 22px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .contact-text_b {
    font-size: 16px;
  }
}