@charset "UTF-8";
/* ==========================================================================
   Foundation
========================================================================== */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after {
  content: "";
  content: none;
}
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
select {
  -moz-appearance: none;
  -webkit-appearance: none;
  text-indent: 0.01px;
  text-overflow: "";
  appearance: none;
  border-radius: 0;
  border: 0;
  margin: 0;
  padding: 0;
  background: none transparent;
  vertical-align: middle;
  color: inherit;
  box-sizing: content-box;
}
select::-ms-expand {
  display: none;
}
em {
  font-style: normal;
}
main {
  display: block;
}
html,
body {
  height: 100%;
  width: 100%;
}
html {
  font-size: 62.5%;
}
body {
  background: #efefef;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #000;
  line-height: 1.8;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-wrap: break-word;
  font-feature-settings: "palt";
}
a {
  color: #000;
  text-decoration: none;
}
a:hover {
  color: #000;
}
* {
  box-sizing: border-box;
}
*:focus {
  outline: none;
}
img {
  vertical-align: bottom;
  max-width: 100%;
  width: 100%;
  height: auto;
}

/* ==========================================================================
   Base
========================================================================== */
@media screen and (min-width: 769px) {
  #wrap {
    width: 100%;
    margin: 0 auto;
    position: relative;
  }
  /* --- page-inner --- */
  .page-inner {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
  }
  /* --- img for PC/SP --- */
  .img_pc {
    display: block;
  }
  .img_sp {
    display: none;
  }
  /* --- br for PC/SP --- */
  .br_pc {
    display: inline !important;
  }
  .br_sp {
    display: none !important;
  }
  /* --- txt-link --- */
  .txt-link {
    text-decoration: underline;
  }
  .txt-link:hover {
    color: #c92f07;
  }
}
@media screen and (max-width: 768px) {
  #wrap {
    width: 100%;
    margin: 0 auto;
    position: relative;
  }
  /* --- page-inner --- */
  .page-inner {
    width: 100%;
    margin: 0;
    padding: 0 35px;
  }
  /* --- img for PC/SP --- */
  .img_pc {
    display: none;
  }
  .img_sp {
    display: block;
  }
  /* --- br for PC/SP --- */
  .br_pc {
    display: none !important;
  }
  .br_sp {
    display: inline !important;
  }
  /* --- txt-link --- */
  .txt-link {
    text-decoration: underline;
  }
  .txt-link:hover {
    color: #c92f07;
  }
}

/* ==========================================================================
   Navigation
========================================================================== */
@media screen and (min-width: 769px) {
  /* gnav */
  #gnav {
    position: fixed;
    top: 0;
    left: 0;
    right: auto;
    z-index: 10000;
    width: 100%;
    height: 80px;
    min-height: 80px;
    background-color: #5a5757;
    transform: none;
    display: flex;
    justify-content: space-between;
    transition: all 0.5s;
  }
  #gnav.active {
    background-color: #5a5757;
    transform: none;
    transition: all 0.5s;
  }
  #gnav h1 {
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translate(0, -50%);
  }
  #gnav h1 img {
    width: 56px;
  }
  #gnav > a {
    position: absolute;
    top: 0;
    right: 30px;
    color: #fff;
    height: 80px;
    cursor: pointer;
    transition: all 0.5s;
    display: flex;
    align-items: center;
  }
  #gnav > a:hover {
    opacity: 0.7;
  }
  #gnav > a span {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 768px) {
  /* gnav */
  #gnav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: auto;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    transition-property: top, width, left;
  }
  #gnav.active {
    background-color: #5a5757;
    transform: none;
    transition: all 0.5s;
    height: 100%;
  }
  #gnav h1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: #5a5757;
    text-align: center;
  }
  #gnav h1 img {
    width: 43px;
    margin: 12px auto 5px;
  }
  #gnav.active h1 {
    display: none;
  }
  #gnav > a {
    display: none;
  }
}

/* ==========================================================================
   Btn
========================================================================== */

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

footer {
  position: relative;
  z-index: 10;
  background-color: #222;
  line-height: 1.4;
}

/* footer_inner
----------------------- */
.footer_inner {
  color: #fff;
  max-width: 1100px;
  margin: 0 auto;
  padding: 75px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer_info {
  width: 62%;
}
.footer_info_name {
  font-size: 1.6rem;
}
.footer_info_address {
  font-size: 1.6rem;
  margin: 0 0 15px;
}
.footer_info_tel {
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
}
.footer_info_telnum {
  font-size: 3rem;
  line-height: 1.1;
}
.footer_info_telnum span {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
.footer_contact {
  width: 36%;
}
.footer_contact_txt {
  font-size: 1.4rem;
  text-align: center;
  margin: 0 0 15px;
}
.footer_contact_btn {
  width: 100%;
  height: 60px;
}
.footer_contact_btn a {
  display: block;
  background-color: #fff;
  font-size: 1.6rem;
  line-height: 58px;
  color: #000;
  border: 1px solid #fff;
  text-align: center;
  transition: 0.3s;
}
.footer_contact_btn a:hover {
  background-color: #222;
  color: #fff;
}
.footer_contact_btn a span::after {
  content: url(../images/icon_blank.svg);
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 0 0 8px;
}
.footer_contact_btn a:hover span::after {
  content: url(../images/icon_blank_white.svg);
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .footer_info_telnum {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 768px) {
  .footer_inner {
    max-width: 100%;
    padding: 10vw;
    display: block;
  }
  .footer_info {
    width: 100%;
  }
  .footer_info_name {
    font-size: 3.2vw;
  }
  .footer_info_address {
    font-size: 3.2vw;
    margin: 0 0 2.666vw;
  }
  .footer_info_tel {
    font-size: 3.2vw;
  }
  .footer_info_telnum {
    font-size: 5.333vw;
    line-height: 1.2;
  }
  .footer_contact {
    width: 100%;
    margin: 9.333vw 0 0;
  }
  .footer_contact_txt {
    font-size: 2.8vw;
    margin: 0 0 2.666vw;
  }
  .footer_contact_btn {
    width: 72vw;
    height: 12vw;
    margin: 0 auto;
  }
  .footer_contact_btn a {
    font-size: 3.2vw;
    line-height: calc(12vw - 2px);
  }
  .footer_contact_btn a span::after {
    width: 2.4vw;
    height: 2.4vw;
    margin: 0 0 0 1.333vw;
  }
}

/* footer_copy
----------------------- */
.footer_copy {
  background-color: #000;
  color: #fff;
  text-align: center;
  width: 100%;
  padding: 45px;
}
.footer_copy small {
  font-size: 1.4rem;
  line-height: 40px;
  vertical-align: middle;
}
.footer_copy small::before {
  content: url(../images/logo_white.svg);
  display: inline-block;
  width: 56px;
  height: 40px;
  margin: 0 30px 0 0;
  vertical-align: middle;
}
.footer_copy .pagetop {
  display: none;
}
@media screen and (max-width: 768px) {
  .footer_copy {
    text-align: left;
    padding: 6vw;
    position: relative;
  }
  .footer_copy small {
    font-size: 2.8vw;
  }
  .footer_copy small::before {
    width: 11.333vw;
    height: 8vw;
    margin: 0 6.666vw 0 2vw;
  }
  .footer_copy .pagetop {
    display: block;
    background-color: #000;
    width: 8vw;
    height: 8vw;
    position: absolute;
    top: calc(50% - 4vw);
    right: 5.333vw;
  }
  .footer_copy .pagetop::before {
    content: "";
    position: absolute;
    left: 50%;
    top: calc(50% + 0.8vw);
    width: 2.666vw;
    height: 2.666vw;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}

/* ==========================================================================
=============================================================================
   SPECIAL TALK
=============================================================================
========================================================================== */

@media screen and (min-width: 769px) {
  #page-special_talk {
    padding: 80px 0 0;
  }
  #page-interview #gnav {
    position: fixed;
    top: 0;
    left: 0;
    right: auto;
    z-index: 10000;
    width: 100%;
    height: 80px;
    min-height: 80px;
    background-color: rgba(255, 255, 255, 1);
    transform: none;
    display: flex;
    justify-content: space-between;
    transition: all 0.5s;
  }
}
@media screen and (max-width: 768px) {
  #page-special_talk {
    padding: 50px 0 0;
  }
}

/* ==========================================================================
   Interview - KEYVISUAL
========================================================================== */

@media screen and (min-width: 769px) {
  #page-special_talk #keyvisual {
    position: relative;
    height: 180px;
    background-color: #efefef;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .interview-title {
    color: #5a5757;
    text-align: center;
  }
  .interview-title .en {
    display: block;
    font-size: 6rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    line-height: 1;
  }
  .interview-title .ja {
    display: block;
    font-size: 1.6rem;
    font-weight: 400;
    margin: 10px auto 0;
  }
}
@media screen and (max-width: 768px) {
  #page-special_talk #keyvisual {
    position: relative;
    height: 120px;
    background-color: #efefef;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .interview-title {
    color: #5a5757;
    text-align: center;
    padding-top: 25px;
  }
  .interview-title .en {
    display: block;
    font-size: 3rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    line-height: 1;
  }
  .interview-title .ja {
    display: block;
    font-size: 1.1rem;
    font-weight: 400;
    margin: 3px auto 0;
  }
}

/* ==========================================================================
   Interview - UPPER
========================================================================== */

@media screen and (min-width: 769px) {
  .interview-upper {
    background-color: #fff;
    padding: 100px 0;
  }
  .interview-upper-inner {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 50px;
  }
  .interview-upper-title {
    color: #5a5757;
    text-align: center;
    line-height: 1.4;
  }
  .interview-upper-title .subtit {
    display: block;
    font-size: 2rem;
    font-weight: 500;
    margin: 0 0 10px;
  }
  .interview-upper-title .tit {
    display: block;
    font-size: 3.8rem;
    font-weight: 900;
  }
  .interview-upper-txt {
    color: #5a5757;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.8;
    margin: 60px auto 0;
  }
}
@media screen and (max-width: 768px) {
  .interview-upper {
    background-color: #fff;
    padding: 45px 0 25px;
  }
  .interview-upper-inner {
    position: relative;
    width: calc(100% - 30px);
    margin: 0 auto;
  }
  .interview-upper-title {
    color: #5a5757;
    text-align: center;
    line-height: 1.4;
  }
  .interview-upper-title .subtit {
    display: block;
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0 0 10px;
  }
  .interview-upper-title .tit {
    display: block;
    font-size: 2rem;
    font-weight: 900;
  }
  .interview-upper-txt {
    color: #5a5757;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.8;
    margin: 25px auto 0;
  }
}

/* ==========================================================================
   Interview - VISUAL01
========================================================================== */

@media screen and (min-width: 769px) {
  .interview-visual01 {
    background-color: #999497;
    padding: 100px 0;
  }
  .interview-visual01-inner {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 50px;
  }
  .interview-visual01-logo {
    width: 41.8%;
    margin: 0 auto;
  }
  .interview-visual01-photo {
    width: 72%;
    margin: 20px auto 0;
  }
}
@media screen and (max-width: 768px) {
  .interview-visual01 {
    background-color: #999497;
    padding: 45px 0;
  }
  .interview-visual01-inner {
    position: relative;
    width: calc(100% - 30px);
    margin: 0 auto;
  }
  .interview-visual01-logo {
    width: 47.733%;
    margin: 0 auto;
  }
  .interview-visual01-photo {
    width: 100%;
    margin: 20px auto 0;
  }
}

/* ==========================================================================
   Interview - VISUAL02
========================================================================== */

@media screen and (min-width: 769px) {
  .interview-visual02 {
    background-color: #999497;
  }
  .interview-visual02-inner {
    position: relative;
    width: 82%;
    margin: 0 auto;
    padding: 100px 70px;
  }
  .interview-visual02-photo {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .interview-visual02 {
    background-color: #999497;
  }
  .interview-visual02-inner {
    position: relative;
    width: calc(100% - 30px);
    margin: 0 auto;
    padding: 30px 0;
  }
  .interview-visual02-photo {
    width: 100%;
    margin: 0 auto;
  }
}

/* ==========================================================================
   Interview - CONTENT
========================================================================== */

@media screen and (min-width: 769px) {
  .interview-content {
    background-color: #fff;
  }
  .interview-content.last {
    padding-bottom: 0;
  }
  .interview-content-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 100px 70px;
  }
  .interview-content.last .interview-content-inner {
    padding: 70px 70px 0;
  }
  .interview-content-title {
    max-width: 1100px;
    color: #5a5757;
    text-align: center;
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.3;
  }
  .interview-content-title.sec {
    margin: 90px auto 0;
  }
  .interview-content-catch {
    max-width: 1100px;
    color: #5a5757;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.3;
    margin: 60px auto 0;
  }
  .interview-content-catch.fir {
    margin: 0 auto;
  }
  .interview-content-q {
    max-width: 1100px;
    color: #5a5757;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.6;
    margin: 40px auto 0;
  }
  .interview-content-q.fir {
    margin: 70px auto 0;
  }
  .interview-content-a {
    max-width: 1100px;
    color: #5a5757;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.8;
    margin: 30px auto 0;
  }
  .interview-content-a span {
    font-weight: 700;
  }
  .interview-content-img {
    max-width: 720px;
    margin: 60px auto 0;
  }
  .interview-content-wrapbox {
    max-width: 1000px;
    margin: 0 auto;
  }
  .interview-content-imgL {
    float: left;
    width: 47.5%;
    max-width: 475px;
    margin: 5px 45px 10px 0;
  }
  .interview-content-imgR {
    float: right;
    width: 47.5%;
    max-width: 475px;
    margin: 5px 0 10px 45px;
  }
}
@media screen and (max-width: 768px) {
  .interview-content {
    background-color: #fff;
  }
  .interview-content.last {
    padding-bottom: 0;
  }
  .interview-content-inner {
    width: calc(100% - 30px);
    margin: 0 auto;
    padding: 50px 0;
  }
  .interview-content.last .interview-content-inner {
    padding: 40px 0 0;
  }
  .interview-content-title {
    color: #5a5757;
    text-align: center;
    font-size: 1.9rem;
    font-weight: 900;
    line-height: 1.3;
  }
  .interview-content-title.sec {
    margin: 50px auto 0;
  }
  .interview-content-catch {
    color: #5a5757;
    font-size: 1.7rem;
    font-weight: 900;
    line-height: 1.4;
    margin: 30px auto 0;
  }
  .interview-content-catch.fir {
    margin: 0 auto;
  }
  .interview-content-q {
    color: #5a5757;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.6;
    margin: 25px auto 0;
  }
  .interview-content-q.fir {
    margin: 45px auto 0;
  }
  .interview-content-a {
    color: #5a5757;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.8;
    margin: 25px auto 0;
  }
  .interview-content-a span {
    font-weight: 700;
  }
  .interview-content-img {
    max-width: 100%;
    margin: 45px auto 0;
  }
  .interview-content-imgL {
    max-width: 100%;
    margin: 30px auto 0;
  }
  .interview-content-imgR {
    max-width: 100%;
    margin: 30px auto 0;
  }
}

/* ==========================================================================
   Interview - AWARDS
========================================================================== */

@media screen and (min-width: 769px) {
  .interview-awards {
    background-color: #fff;
    padding: 100px 0;
  }
  .interview-awards-inner {
    max-width: 620px;
    margin: 0 auto;
    padding: 40px 60px;
    border: 1px solid #5a5757;
  }
  .interview-awards-title {
    color: #5a5757;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.3;
  }
  .interview-awards-list {
    color: #5a5757;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.3;
  }
  .interview-awards-list li {
    margin: 12px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .interview-awards {
    background-color: #fff;
    padding: 30px 0;
  }
  .interview-awards-inner {
    width: calc(100% - 30px);
    margin: 0 auto;
    padding: 30px 0;
    border-top: 1px solid #5a5757;
    border-bottom: 1px solid #5a5757;
  }
  .interview-awards-title {
    color: #5a5757;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.3;
  }
  .interview-awards-list {
    color: #5a5757;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.3;
  }
  .interview-awards-list li {
    margin: 6px 0 0;
  }
}

/* ==========================================================================
   Interview - BTN
========================================================================== */

@media screen and (min-width: 769px) {
  .sec_btn {
    background-color: #fff;
    padding: 0 0 100px;
  }
  .btn_inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }
  .btn_inner > div {
    width: 47%;
    height: 100px;
    position: relative;
  }
  .btn_inner > div a {
    display: block;
    background-color: #5a5757;
    font-size: 2rem;
    line-height: 98px;
    color: #fff;
    border: 1px solid #5a5757;
    text-align: center;
    transition: 0.3s;
  }
  .btn_inner > div a:hover {
    background-color: #fff;
    color: #5a5757;
  }
  .corp_btn a span::after {
    content: url(../images/icon_blank_white.svg);
    display: inline-block;
    width: 17px;
    height: 17px;
    margin: 0 0 0 10px;
  }
  .corp_btn a:hover span::after {
    content: url(../images/icon_blank.svg);
  }
  .top_btn::after {
    content: "";
    position: absolute;
    top: calc(50% - 12px);
    right: 30px;
    width: 58px;
    height: 12px;
    border-bottom: solid 1px #fff;
    border-right: solid 1px #fff;
    transform: skew(45deg);
  }
  .top_btn:hover::after {
    border-bottom: solid 1px #5a5757;
    border-right: solid 1px #5a5757;
  }
}
@media screen and (max-width: 768px) {
  .sec_btn {
    background-color: #fff;
    padding: 0 0 30px;
  }
  .btn_inner {
    width: calc(100% - 30px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .btn_inner > div {
    width: 72vw;
    height: 12vw;
    margin: 0 auto;
    position: relative;
  }
  .btn_inner > div a {
    display: block;
    background-color: #5a5757;
    font-size: 1.2rem;
    line-height: calc(12vw - 2px);
    color: #fff;
    border: 1px solid #5a5757;
    text-align: center;
    transition: 0.3s;
  }
  .corp_btn a span::after {
    content: url(../images/icon_blank_white.svg);
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 0 0 8px;
  }
  .top_btn::after {
    content: "";
    position: absolute;
    top: calc(50% - 6px);
    right: 15px;
    width: 29px;
    height: 6px;
    border-bottom: solid 1px #fff;
    border-right: solid 1px #fff;
    transform: skew(45deg);
  }
}

/*---*/
