@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: #fff;
  color: #082b48;
}

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;
}

.inner {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  letter-spacing: 0.7px;
}
@media (min-width: 768px) and (max-width: 1000px) {
  .inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 767px) {
  .inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 767px) {
  .section {
    padding-top: 50px;
    padding-bottom: 60px;
  }
}

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

/* スマホのみ適用 */
@media screen and (min-width: 768px) { /*横幅が761px以上になったら適用*/
  .sp {
    display: none;
  }
}
/* PCのみ適用 */
@media screen and (max-width: 768px) { /*横幅が76px以下になったら適用*/
  .pc {
    display: none;
  }
}
.header {
  background: #fff;
  height: 80px;
  position: fixed;
  width: 100%;
  box-shadow: 0 3px 3px rgba(8, 43, 72, 0.3);
  z-index: 100;
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  .header {
    height: 100px;
  }
}

.header_inner {
  display: flex;
  align-items: center;
  height: inherit;
  margin: 0 100px;
}
@media (max-width: 767px) {
  .header_inner {
    display: block;
  }
}

.header_logo {
  display: block;
  width: 80px;
}
@media (max-width: 767px) {
  .header_logo {
    width: 60px;
    padding: 15px 0 15px;
    margin-left: auto;
    margin-right: auto;
  }
}
.header_logo img {
  display: block;
}

.header_nav {
  display: flex;
  align-items: center;
  margin-left: auto;
}
@media (max-width: 767px) {
  .header_nav {
    font-size: 12px;
    justify-content: space-around;
  }
}

.header_nav li {
  margin-left: 40px;
}
@media (max-width: 767px) {
  .header_nav li {
    margin: 0;
  }
}
.header_nav li a {
  text-decoration: none;
  font-weight: 700;
  padding-bottom: 7px;
  color: #082b48;
  display: block;
  position: relative;
}
.header_nav li a::before {
  content: "";
  width: 0;
  left: 40%;
  bottom: 0;
  transition: all 0.3s ease;
  border-bottom: 3px solid #E81919;
  position: absolute;
  display: block;
}
.header_nav li a:hover:before {
  width: 40%;
  border-bottom: 3px solid #E81919;
}
.header_nav li a::after {
  content: "";
  width: 0;
  right: 40%;
  bottom: 0;
  transition: all 0.3s ease;
  border-bottom: 3px solid #E81919;
  position: absolute;
  display: block;
}
.header_nav li a:hover:after {
  width: 40%;
  border-bottom: 3px solid #E81919;
}

/* レスポンシブ */
@media only screen and (max-width: 768px) {
  .drawer-icon {
    display: block;
    position: fixed;
    top: 20px;
    right: 16px;
    z-index: 300;
    transition: transform 0.5s ease 0s;
    padding: 7px 7px 16px 7px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
  }
  .drawer-icon.is-active {
    transform: translateX(-216px);
    background: transparent;
  }
  .drawer-icon.is-active .drawer-icon_bar1 {
    transform: rotate(-45deg);
    top: 8px;
    background: #fff;
  }
  .drawer-icon.is-active .drawer-icon_bar2 {
    display: none;
  }
  .drawer-icon.is-active .drawer-icon_bar3 {
    transform: rotate(45deg);
    top: 8px;
    background: #fff;
  }
  .drawer-icon.is-active .drawer-icon_bar4 {
    display: none;
  }
  .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: 3px;
    background: #082b48;
    top: 0;
    left: 0;
  }
  .drawer-icon_bar1 {
    top: 0;
  }
  .drawer-icon_bar2 {
    top: 8px;
  }
  .drawer-icon_bar3 {
    top: 16px;
  }
  .drawer-icon_bar4 {
    position: absolute;
    top: 22px;
    left: -3px;
    font-size: 10px;
  }
  .drawer-content {
    width: 220px;
    height: 100%;
    position: fixed;
    right: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
    z-index: 299;
    transform: translateX(105%);
  }
  .drawer-content.is-active {
    transform: translateX(0);
    transition: transform 0.5s ease 0s;
  }
  .drawer-content_item {
    border-bottom: 1px dotted #707070;
    margin: 10px 0;
  }
  .drawer-content_item a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 16px 0 16px 22px;
    font-size: 15px;
  }
  .drawer-backgraund {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 298;
    display: none;
  }
  .drawer-backgraund.is-active {
    display: block;
  }
}
.main-visual {
  height: 200px;
  width: auto;
  background: url(../img/interview.jpg) no-repeat center center/cover;
  margin-top: 80px;
}
@media (max-width: 767px) {
  .main-visual {
    height: 140px;
    margin: 0;
  }
}

.main-visual_title {
  text-align: left;
  padding: 75px 50px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  opacity: 0.8;
}
@media (max-width: 767px) {
  .main-visual_title {
    display: none;
  }
}

/*=====================
   interview
=====================*/
.interview {
  margin-bottom: 70px;
}

.interview_title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  padding-bottom: 12px;
  margin: 70px 0;
  position: relative;
}
@media (max-width: 767px) {
  .interview_title {
    margin: 30px 0;
    font-size: 24px;
  }
}
.interview_title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 60px;
  height: 4px;
  background: #E81919;
}
@media (max-width: 767px) {
  .interview_title::after {
    width: 42px;
    height: 3px;
  }
}

.interview_items {
  margin: 30px 20px;
}
@media (max-width: 767px) {
  .interview_items {
    margin: 0;
  }
}

h2 {
  position: relative;
  overflow: hidden;
  padding: 16px 0 16px 150px;
  border-bottom: 3px solid #082b48;
  font-size: 22px;
  margin: 70px 0 50px 0;
}
@media (max-width: 767px) {
  h2 {
    font-size: 18px;
    margin: 50px 0 20px;
  }
}

h2:before {
  position: absolute;
  top: -90%;
  left: -100px;
  width: 210px;
  height: 280%;
  content: "";
  transform: rotate(25deg);
  background: #082b48;
}

h2 span {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: block;
  padding-top: 10px;
  padding-left: 20px;
  color: #fff;
  font-size: 16px;
  letter-spacing: 2px;
}
@media (max-width: 767px) {
  h2 span {
    font-size: 14px;
    padding-left: 30px;
  }
}

.interview_item {
  margin: 0 20px 150px 20px;
}
@media (max-width: 767px) {
  .interview_item {
    margin: 0 20px 60px 20px;
  }
}
.interview_item h3 {
  color: #E81919;
  font-size: 22px;
  padding: 10px 0;
}
@media (max-width: 767px) {
  .interview_item h3 {
    font-size: 20px;
  }
}
.interview_item h4 {
  font-size: 20px;
  padding: 0 50px;
}
@media (max-width: 767px) {
  .interview_item h4 {
    padding: 0 20px;
    font-size: 16px;
  }
}
.interview_item p {
  padding: 0 40px;
}
@media (max-width: 767px) {
  .interview_item p.ans {
    padding: 0;
  }
  .interview_item p.image {
    padding: 0 10px;
  }
}

.image {
  display: flex;
  height: 200px;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .image {
    display: inline-block;
    margin-top: 30px;
  }
}

.footer {
  height: 60px;
  line-height: 60px;
  background: linear-gradient(to bottom, #181f44, #082b48);
  color: #fff;
}
@media (max-width: 767px) {
  .footer {
    height: 40px;
    line-height: 40px;
  }
}

.footer_copy {
  font-size: 12px;
  text-align: right;
}
@media (max-width: 767px) {
  .footer_copy {
    height: 40px;
    font-size: 10px;
    text-align: center;
  }
}

.to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
}
@media (max-width: 767px) {
  .to-top {
    right: 12px;
    bottom: 12px;
  }
}
.to-top a {
  text-decoration: none;
}
.to-top a img {
  width: 50px;
}
@media (max-width: 767px) {
  .to-top a img {
    width: 36px;
  }
}