@charset "UTF-8";

/*
  File Name   : _mixin.scss
  Description : メディアクエリ mixin
*/

/*
  File Name   : _variable.scss
  Description : 変数
*/

/*
  File Name   : _common.scss
  Description : base,header,footer
*/

/* BASE
================================================== */

/*** structure ***/

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  background-color: #FFF;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  font-weight: 400;
}

body > article,
body > footer,
body > header,
body > main {
  width: 100%;
  min-width: 320px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

a:link {
  text-decoration: none;
}

a:hover,
a:active {
  text-decoration: none;
}

a:visited {
  /*color: inherit;*/
}

a img {
  border: none;
}

a:hover {
  filter: alpha(opacity=90);
  opacity: 0.9;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

a:hover img {
  filter: alpha(opacity=90);
  opacity: 0.9;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

input:hover {
  filter: alpha(opacity=90);
  opacity: 0.9;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

figure {
  margin: 0;
}

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

button,
input,
optgroup,
select,
textarea {
  width: 100%;
}

/* Common
============================================================ */

.contents_in {
  margin: 0 auto;
  max-width: 1720px;
}

main {
  display: block;
}

.notosans {
  font-family: "Noto Sans JP", sans-serif;
}

.jost {
  font-family: "Jost", sans-serif;
}

.montserrat {
  font-family: "Montserrat", sans-serif;
}

.text_italic {
  font-style: italic;
}

.vertical {
  display: inline-block;
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  -moz-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  vertical-align: middle;
  text-align: left;
}

.anchor_item {
  scroll-margin-top: 105px;
}

.disabled {
  pointer-events: none;
}

.bold {
  font-weight: 700;
}

.color_red {
  color: #B13B23;
}

.color_green {
  color: #336D59;
}

/*animate.css動作*/

.animated {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

/*範囲に入ってから動作開始までの遅延時間（秒）*/

.animate_delay {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

.animate_duration {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
}

/*inview.js要素の初期表示*/

.iv,
.ivo {
  visibility: hidden;
}

.object_fit {
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}

/*hoverアニメーション（拡大）*/

.hover_ptn01 {
  overflow: hidden;
}

.hover_ptn01 img {
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}

.hover_ptn01:hover img,
a:hover .hover_ptn01 img {
  -webkit-transform: scale(1.2, 1.2);
  transform: scale(1.2, 1.2);
  opacity: 0.8;
}

.no_link {
  pointer-events: none;
}

/*** pc / sp ***/

/* Header
============================================================ */

.header {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.85);
  z-index: 2;
}

.contact-lg-btn {
  background-color: rgba(69, 69, 69, 0.85);
}

#page_header {
  position: relative;
  z-index: 9999;
  /*ハンバーガーボタン*/
  /*END　ハンバーガーボタン*/
}

#page_header .menu_g_wrap.active {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  overflow: auto;
}

#page_header .menu_g_wrap.active {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

#page_header .menu_g_wrap.active::-webkit-scrollbar {
  display: none;
}

#page_header .menu_g {
  position: absolute;
  top: 100px;
  right: 100%;
  display: none;
  width: 510px;
  min-height: 870px;
  height: auto;
  background: rgba(177, 59, 35, 0.85);
  padding: 110px 20px 80px;
}

#page_header .menu_g.active {
  right: 100px;
}

#page_header .menu_g .logo {
  max-width: 228px;
  margin: 0 auto 60px;
}

#page_header .menu_g .logo img {
  width: 100%;
}

#page_header .menu_g .menu_list {
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
}

#page_header .menu_g .menu_list li {
  margin-bottom: 25px;
}

#page_header .menu_g .menu_list li a {
  position: relative;
  display: block;
  color: #FFF;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: 0.14em;
}

#page_header .menu_g .menu_list li a:hover {
  opacity: 0.7;
}

#page_header .openbtn {
  position: fixed;
  z-index: 9999;
  top: 200px;
  right: 0;
  width: 100px;
  height: 100px;
  background: rgba(177, 59, 35, 0.85);
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#page_header .openbtn.move {
  top: 0;
}

#page_header .openbtn span.bar {
  display: inline-block;
  background-color: #FFF;
  border-radius: 2px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  left: 50%;
  max-width: 27px;
  width: 100%;
  height: 2px;
  margin: 0 auto;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

#page_header .openbtn span.bar:nth-of-type(1) {
  top: 29px;
}

#page_header .openbtn span.bar:nth-of-type(2) {
  top: 39px;
}

#page_header .openbtn span.bar:nth-of-type(3) {
  top: 49px;
}

#page_header .openbtn .btn_text {
  position: absolute;
  bottom: 20px;
  left: 50%;
  color: #FFF;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

#page_header .openbtn.active {
  display: none;
}

#page_header .closebtn {
  position: fixed;
  z-index: 9999;
  top: 200px;
  right: 0;
  width: 100px;
  height: 100px;
  background: rgba(177, 59, 35, 0.85);
  cursor: pointer;
}

#page_header .closebtn span {
  display: inline-block;
  background-color: #FFF;
  border-radius: 2px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 32px;
  height: 1.5px;
}

#page_header .closebtn span:nth-of-type(1) {
  width: 100%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

#page_header .closebtn span:nth-of-type(2) {
  width: 100%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.is-hidden {
  visibility: hidden;
  opacity: 0;
}

/* Global nav
============================================================ */

/* sp nav */

/* pc nav */

/* Footer
============================================================ */

#page_footer {
  position: relative;
  background-color: #FFF;
  padding: 61px 10px 20px;
}

#page_footer .logo {
  max-width: 255px;
  width: 100%;
  margin-right: 160px;
}

#page_footer .footer_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 1185px;
  margin: 0 auto;
}

#page_footer .footer_nav li {
  margin: 0 32px 50px;
}

#page_footer .footer_nav li:first-child {
  margin-left: 120px;
}

#page_footer .footer_nav li:nth-child(4) {
  margin-right: 120px;
}

#page_footer .footer_nav li a {
  position: relative;
  color: #231815;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.14em;
}

#page_footer .footer_nav li a::after {
  position: absolute;
  content: "";
  display: block;
  height: 1px;
  background-color: #231815;
  bottom: -3px;
  left: 0;
  width: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#page_footer .page_top {
  position: absolute;
  right: 130px;
  top: -13px;
  width: 50px;
  height: 50px;
  background-color: #336D59;
  border: 1px solid #336D59;
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 99;
}

#page_footer .page_top:hover {
  background-color: #719B8B;
  border: 1px solid #719B8B;
}

#page_footer .page_top a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

#page_footer .page_top a::before {
  content: "";
  display: block;
  color: #FFF;
  width: 16px;
  height: 16px;
  border: 1.5px solid #FFF;
  border-left: 0;
  border-bottom: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transform: translateY(25%) rotate(-45deg);
  transform: translateY(25%) rotate(-45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.footer_cv_btn {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 80px;
  background: #B13B23;
  padding: 13.5px 11px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 10;
}

.footer_cv_btn.btn-hidden {
  bottom: -81px;
}

.footer_cv_btn_list {
  max-width: 676px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 auto;
}

.footer_cv_btn_list li {
  max-width: 300px;
  width: 44.37%;
}

.footer_cv_btn_list li a {
  position: relative;
  display: block;
  width: 100%;
  background: #FFF;
  border: 1px solid #FFF;
  border-radius: 26.5px;
  color: #B13B23;
  font-size: 19px;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: 0.1em;
  padding: 12px 50px 13px 31px;
}

.footer_cv_btn_list li a:hover {
  background: #B13B23;
  color: #FFF;
}

.footer_cv_btn_list li a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  display: block;
  width: 24.5px;
  height: 24.5px;
  background: url(../img/common/icon_arrow_btn_red.svg) no-repeat;
  background-size: contain;
  opacity: 1;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.footer_cv_btn_list li a:hover::before {
  background: url(../img/common/icon_arrow_btn_white.svg) no-repeat;
  background-size: contain;
}

/* copy-right
=========================== */

.copy_right {
  display: block;
  max-width: 265px;
  width: 18.9%;
  color: #000;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.1em;
}

/*end*/

/*
  File Name   : _parts.scss
  Description : 共通パーツ
*/

/* Common
============================================================ */

/*ボタンデザイン*/

.btn_ptn01 {
  max-width: 385px;
  width: 100%;
}

.btn_ptn01 a {
  position: relative;
  display: block;
  width: 100%;
  border: 1px solid #FFF;
  border-radius: 21px;
  color: #FFF;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.07em;
  padding: 9px 57px 9px 23px;
}

.btn_ptn01 a::before {
  position: absolute;
  top: 46%;
  right: 20px;
  content: "";
  display: block;
  width: 40px;
  height: 10px;
  background: url(../img/common/arrow_white.svg) no-repeat;
  background-size: contain;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.btn_ptn02 {
  max-width: 409px;
  width: 100%;
  margin: 0 auto;
}

.btn_ptn02 a {
  display: block;
  width: 100%;
  background-color: #970B31;
  border-radius: 31.5px;
  color: #FFF;
  font-size: 17.5px;
  font-weight: 700;
  line-height: 1.43;
  letter-spacing: 0.22em;
  text-align: center;
  padding: 19px 10px;
}

.btn_ptn03 {
  max-width: 359px;
  width: 100%;
  margin: 0 auto;
}

.btn_ptn03 a {
  display: block;
  width: 100%;
  border: 1px solid #FFF;
  background-color: #FFF;
  border-radius: 25px;
  color: #357059;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.22em;
  text-align: center;
  padding: 12px 10px;
  opacity: 1;
}

.slider_wrap figure {
  margin-bottom: 0;
}

.slider_wrap.arrow_outside {
  position: relative;
  margin-inline: auto;
}

.slider_wrap.arrow_outside .swiper-button-prev {
  left: -30px;
}

.slider_wrap.arrow_outside .swiper-button-next {
  right: -30px;
}

.slider_wrap.arrow_outside .swiper-button-next:after,
.slider_wrap.arrow_outside .swiper-button-prev:after {
  color: #fff;
  font-size: 1.3em;
}

.interview_title {
  color: #FFF;
  font-size: 34.5px;
  font-weight: 700;
  line-height: 1.74;
  letter-spacing: 0.18em;
  text-align: center;
}

.interview_sub {
  position: absolute;
  top: 0;
  left: 0;
  border-left: 1px solid #FFF;
  color: #FFF;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.88;
  letter-spacing: 0.38em;
  padding-left: 20px;
  margin-left: 20px;
}

.interview_bnr_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 1040px;
  margin: 0 auto;
}

.interview_bnr_list li {
  max-width: 300px;
  width: 28.84%;
  position: relative;
}

.interview_bnr_list li .circle_text {
  position: absolute;
  top: -33px;
  left: -19px;
  width: 76px;
  -webkit-animation: rotate 15s linear infinite;
  animation: rotate 15s linear infinite;
  z-index: 1;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.interview_bnr_list li .list_img {
  position: relative;
  margin: 0;
}

.interview_bnr_list li .list_img figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: rgba(53, 112, 89, 0.85);
  color: #FFF;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.41;
  letter-spacing: 0.1em;
  padding: 6.5px 10px 7px 13px;
}

.interview_bnr_list li .text_box {
  position: relative;
  background: rgba(255, 255, 255, 0.85);
  color: #357059;
  padding: 8px 30px 12px 13px;
}

.interview_bnr_list li .text_box::before {
  content: "";
  position: absolute;
  bottom: 12px;
  right: 15px;
  display: block;
  width: 19px;
  height: 19px;
  background: url(../img/common/arrow_green_circle.svg) no-repeat;
  background-size: contain;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.interview_bnr_list li a {
  display: block;
}

.interview_bnr_list li a:hover {
  opacity: 0.95;
}

.interview_bnr_list li a:hover .text_box::before {
  right: 10px;
}

.interview_bnr_list li a img:hover {
  opacity: 1;
}

.interview_bnr_list li .company {
  font-size: 15px;
  line-height: 1.53;
  letter-spacing: 0.1em;
}

.interview_bnr_list li .list_title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.27;
  letter-spacing: 0.1em;
}

.interview_bnr_list li .list_title .text_small {
  display: inline-block;
  font-size: 0.8em;
  letter-spacing: 0.02em;
  margin-left: 0.3em;
}

/*end*/

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

@media screen and (max-width: 1720px) {
  #page_header .menu_g .menu_list li a {
    font-size: clamp(16px, 1.163vw, 19px);
  }

  #page_footer .logo {
    margin-right: 9.302vw;
  }

  #page_footer .footer_nav li a {
    font-size: clamp(14px, 1.163vw, 20px);
  }

  .interview_title {
    font-size: clamp(30px, 2.006vw, 34.5px);
  }

  .interview_bnr_list li .list_title {
    font-size: clamp(16px, 1.047vw, 18px);
  }
}

@media screen and (max-width: 1350px) {
  #page_footer .footer_nav {
    max-width: 1050px;
  }
}

@media screen and (max-width: 1280px) {
  .contents_in {
    width: 94%;
  }

  #page_footer .logo {
    width: clamp(160px, 19.392vw, 255px);
    margin-right: 1vw;
  }

  #page_footer .footer_nav {
    max-width: 865px;
  }

  #page_footer .footer_nav li {
    margin: 0 20px 30px;
  }

  #page_footer .footer_nav li:first-child {
    margin-left: 50px;
  }

  #page_footer .footer_nav li:nth-child(4) {
    margin-right: 50px;
  }

  #page_footer .page_top {
    right: 50px;
  }

  .copy_right {
    font-size: clamp(10px, 1.065vw, 14px);
  }

  .interview_bnr_list li {
    width: 31%;
  }
}

@media screen and (max-width: 1024px) {
  #page_footer {
    padding: 40px 10px 20px;
  }
}

@media screen and (max-width: 960px) {
  .contents_in {
    width: calc(100% - 8vw);
  }

  .anchor_item {
    scroll-margin-top: 0;
  }

  .pc {
    display: none !important;
  }

  .header {
    position: static;
    width: 100%;
    background: none;
  }

  #page_header {
    z-index: 100;
  }

  #page_header .menu_g_wrap.active {
    position: static;
    overflow: hidden;
  }

  #page_header .menu_g {
    position: fixed;
    top: 0;
    right: 0;
    display: none;
    width: 100%;
    height: 100vh;
    padding: 58px 20px 72px;
    margin: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 999;
  }

  #page_header .menu_g.active {
    right: 0;
  }

  #page_header .menu_g .logo {
    max-width: 160px;
    margin: 0 auto 35px;
  }

  #page_header .menu_g .menu_list {
    max-width: 255px;
  }

  #page_header .menu_g .menu_list li {
    margin-bottom: 0;
  }

  #page_header .menu_g .menu_list li a {
    height: auto;
    font-size: 16px;
    line-height: 2.56;
    text-align: left;
  }

  #page_header .openbtn {
    z-index: 100;
    top: 55px;
    width: 55px;
    height: 55px;
    background: #B13B23;
  }

  #page_header .openbtn span.bar {
    max-width: 23px;
  }

  #page_header .openbtn span.bar:nth-of-type(1) {
    top: 19px;
  }

  #page_header .openbtn span.bar:nth-of-type(2) {
    top: 27.5px;
  }

  #page_header .openbtn span.bar:nth-of-type(3) {
    top: 36px;
  }

  #page_header .openbtn .btn_text {
    display: none;
  }

  #page_header .closebtn {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 25px;
    height: 25px;
    background: transparent;
  }

  #page_header .closebtn span {
    width: 100%;
  }

  #page_footer {
    padding: 60px 0 34px;
  }

  #page_footer .logo {
    max-width: 153px;
    margin: 0 auto 34px;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  #page_footer .footer_nav {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 335px;
  }

  #page_footer .footer_nav li:first-child {
    margin-left: 0;
  }

  #page_footer .footer_nav li:nth-child(4) {
    margin-left: auto;
  }

  #page_footer .footer_nav li {
    margin: 0 0 27px;
  }

  #page_footer .footer_nav li:nth-child(n+4) {
    width: 50%;
    text-align: center;
    margin: 0 auto 27px;
  }

  #page_footer .footer_nav li a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-align: center;
  }

  #page_footer .footer_nav li a::after {
    display: none;
  }

  #page_footer .page_top {
    right: 23px;
    top: -20px;
    bottom: auto;
    width: 40.5px;
    height: 40.5px;
  }

  #page_footer .page_top a::before {
    width: 14px;
    height: 14px;
  }

  .footer_cv_btn {
    bottom: 55px;
    height: 45px;
    padding: 7.5px 11px;
  }

  .footer_cv_btn.btn-hidden {
    bottom: -46px;
  }

  .footer_cv_btn_list {
    max-width: 352px;
    width: 100%;
  }

  .footer_cv_btn_list li {
    width: 48.6%;
  }

  .footer_cv_btn_list li a {
    font-size: 11px;
    line-height: 15px;
    padding: 7px 30px 6px 18px;
  }

  .footer_cv_btn_list li a::before {
    right: 15px;
    width: 14px;
    height: 14px;
  }

  .btn-pagetop.slide-in {
    bottom: 93px !important;
  }

  .copy_right {
    width: 115%;
    display: block;
    font-size: 10px;
    margin: 0 -5%;
    text-align: center;
    -webkit-transform: scale(0.85);
    transform: scale(0.85);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .btn_ptn01 {
    max-width: 270px;
    margin: 0 auto;
  }

  .btn_ptn01 a {
    border-radius: 30px;
    font-size: 14px;
    line-height: 1.42;
    padding: 8px 70px 8px 34px;
  }

  .btn_ptn02 {
    max-width: 315px;
  }

  .btn_ptn02 a {
    border-radius: 25px;
    font-size: 14px;
    padding: 14px 10px;
  }

  .btn_ptn03 {
    max-width: 297px;
  }

  .slider_wrap.arrow_outside .swiper-button-prev {
    left: -25px;
  }

  .slider_wrap.arrow_outside .swiper-button-next {
    right: -25px;
  }

  .slider_wrap.arrow_outside .swiper-button-next.arrow_green:after,
  .slider_wrap.arrow_outside .swiper-button-prev.arrow_green:after {
    position: absolute;
    top: -15px;
    color: #336D59;
    font-weight: 700;
  }

  .interview_title {
    font-size: 20px;
    line-height: 2.25;
  }

  .interview_sub {
    position: static;
    max-width: 280px;
    width: 100%;
    letter-spacing: 0.35em;
    margin: 0 auto;
  }

  .interview_bnr_list {
    display: block;
  }

  .interview_bnr_list li {
    width: 100%;
    margin: 0 auto 55px;
  }

  .interview_bnr_list li:last-child {
    margin-bottom: 0;
  }

  .interview_bnr_list li .list_title {
    font-size: 18px;
  }
}

@media screen and (max-width: 370px) {
  #page_header .menu_g {
    padding: 50px 15px 30px 15px;
  }

  #page_footer .footer_nav li a {
    font-size: 11px;
  }

  .btn_ptn01 a {
    font-size: 12px;
  }

  .interview_title {
    font-size: 17px;
  }

  .interview_bnr_list li .list_title {
    font-size: 16px;
  }
}

@media (any-hover: hover) {
  #page_footer .footer_nav li a:hover::after {
    width: 100%;
  }

  .btn_ptn01 a:hover {
    background-color: #FFF;
    color: #336D59;
  }

  .btn_ptn01 a:hover::before {
    right: 15px;
    background: url(../img/common/arrow_green02.svg) no-repeat;
    background-size: contain;
  }

  .btn_ptn02 a:hover {
    background-color: #d71147;
  }

  .btn_ptn03 a:hover {
    background-color: #357059;
    border: 1px solid #FFF;
    color: #FFF;
  }
}