@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&amp;display=swap');
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, button, 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%;
  font: inherit;
  background: none;
}
body {
  font: 100% Noto Sans JP, NanumGothic, NanumGothicBold, verdana, gulim, dotum;
  font-weight: 400;
  color: #fff;
  background-color: #000;
}
a {
  color: #fff;
  text-decoration: none;
}
ol, ul, li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.pc {
  display: block;
}
.sp {
  display: none;
}
.menu-btn {
  position: fixed;
  top: 16px;
  right: 16px;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: #000;
}
.menu-btn span, .menu-btn span:before, .menu-btn span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #fff;
  position: absolute;
}
.menu-btn span:before {
  bottom: 8px;
}
.menu-btn span:after {
  top: 8px;
}
#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0);
}
#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}
#menu-btn-check {
  display: none;
}
.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  background-color: #000;
}
.menu-content ul {
  padding: 70px 10px 0;
}
.menu-content ul li {
  border-bottom: solid 1px #fff;
  list-style: none;
}
.menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 15px;
  box-sizing: border-box;
  color: #fff;
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
}
.menu-content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}
.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 80;
  background-color: #000;
  transition: all 0.5s;
}
#menu-btn-check:checked ~ .menu-content {
  left: 0;
}
@media (max-width: 599px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
.wrapper {
  max-width: 1140px;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 599px) {
  .wrapper {
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
.sr-only {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0;
  border: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #fff;
  background-color: #2fa0f6;
  min-width: 120px;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  text-align: center;
}
.button svg {
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  fill: #fff;
}
.button span {
  display: none;
}
@media (min-width: 600px) {
  .button span {
    display: initial;
  }
}
.button--icon {
  min-width: initial;
  padding: 0.5rem;
}
.brand {
  font-weight: bold;
  font-size: 20px;
}
.site-header {
  position: fixed;
  background-color: #000;
}
.site-header__wrapper {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (min-width: 600px) {
  .site-header__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media (min-width: 600px) {
  .nav__wrapper {
    display: flex;
  }
}
@media (max-width: 599px) {
  .nav__wrapper {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: -1;
    background-color: #d9f0f7;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-100%);
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  }
  .nav__wrapper.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
}
.nav__item a {
  display: block;
  padding: 1.5rem 1rem;
}
.nav__toggle {
  display: none;
}
@media (max-width: 599px) {
  .nav__toggle {
    display: block;
    position: absolute;
    right: 1rem;
    top: 1rem;
  }
}
#header {
  width: 100%;
  height: auto;
  margin: 0;
  padding-top: 16px;
  padding-bottom: 16px;
  display: fixed;
}
@media (max-width: 599px) {
  #header img {
    max-width: 30%;
  }
}
#main {
  width: 100%;
  height: auto;
  margin: 0;
  padding-top: 141px;
  padding-bottom: 16px;
  display: block;
}
@media (max-width: 599px) {
  #main img {
    max-width: 100%;
  }
}
#side {
  width: 220px;
  height: auto;
  margin: 0;
  padding: 0;
  float: left;
  text-align: center;
}
@media (max-width: 599px) {
  #side {
    display: none;
  }
}
#side ul li {
  margin: 10px auto;
}
#contents {
  width: 900px;
  height: auto;
  margin: 0;
  padding: 0;
  float: right;
}
#contents #ttl {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 10px;
  text-align: center;
  font-size: 32px;
}
#contents .interview_box {
  width: 100%;
  height: auto;
  margin: 20px auto;
  padding: 0;
}
#contents .heading {
  font-size: 1.5rem;
  margin-bottom: 20px;
}
#contents .interview_box .interview_left {
  width: 380px;
  padding: 10px;
  float: left;
}
#contents .interview_box .interview_right {
  width: 480px;
  padding: 10px;
  float: right;
}
#contents .talk_box {
  width: 750px;
  height: auto;
  margin: 10px auto 50px auto;
  padding: 0;
}
h3.talk {
    text-align: center;
    font-size: 30px;
    margin: 0 0 0 0;
}
h3.talk span {
    font-size: 40px;
    color: #b1b1b1;
}
.talk_box.clearfix ul {
    width: 100%;
    margin: 30px 0 0 0;
}
.talk_box.clearfix ul li {
    font-size: 12px;
    line-height: 22px;
    overflow: hidden;
    margin: 0 0 15px 0;
}
.talk_box.clearfix ul li:nth-child(odd) img {
    float: right;
    margin: 0 0 0 10px;
}
.talk_box.clearfix ul li:nth-child(odd) p {
    border: solid 1px #fff;
    padding: 10px;
    border-radius: 12px;
    float: right;
    max-width: 585px;
}
.talk_box.clearfix ul li:nth-child(even) img {
    float: left;
    margin: 0 10px 0 0;
}
.talk_box.clearfix ul li:nth-child(even) p {
    border: solid 1px #fff;
    padding: 10px;
    border-radius: 12px;
    float: left;
    max-width: 585px;
}
img.talk_img05 {
    margin: 20px 0;
}
@media (max-width: 599px) {
  #contents {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
  }
  #contents #ttl {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0;
    text-align: center;
  }
  #contents .interview_box {
    width: 100%;
    height: auto;
    margin: 20px 0;
    padding: 0;
  }
  #contents .heading {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  #contents .interview_box .interview_left {
    width: 100%;
    padding: 0;
    float: none;
  }
  #contents .interview_box .interview_right {
    width: 100%;
    padding: 0;
    float: none;
  }
  #contents .talk_box {
    width: 100%;
    height: auto;
    margin: 20px 0;
    padding: 0;
  }
  h3.talk {
    text-align: center;
    font-size: 25px;
    margin: 0 0 0 0;
  }
h3.talk span {
    font-size: 35px;
    color: #b1b1b1;
}
.talk_box.clearfix ul li {
    font-size: 12px;
    line-height: 22px;
    overflow: hidden;
    margin: 0 0 20px 0;
}
.talk_box.clearfix ul li:nth-child(odd) img {
    float: right;
    margin: 0 0 10px 10px;
}
.talk_box.clearfix ul li:nth-child(odd) p {
    border: solid 1px #fff;
    padding: 10px;
    border-radius: 12px;
    float: right;
    min-width: 260px;
}
.talk_box.clearfix ul li:nth-child(even) img {
    float: left;
    margin: 0 10px 10px 0;
}
.talk_box.clearfix ul li:nth-child(even) p {
    border: solid 1px #fff;
    padding: 10px;
    border-radius: 12px;
    float: left;
    min-width: 260px;
}
}
#footer {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}
#footer #footer_logo, #footer #copyright {
  text-align: center;
  margin: 0;
  padding-top: 16px;
  padding-bottom: 16px;
}
.contact-message {
  text-align: center;
  font-size: 14px;
  line-height: 2;
  margin-bottom: 50px;
}
.message-notice {
  color: #c10811;
  font-size: 14px;
}
.essential {
  background: #c10811;
  color: #fafafa;
  font-size: 12px;
  padding: 0 10px;
  font-weight: normal;
  margin-left: 10px;
}
.contact-area {
  background: #000;
  padding: 0;
  margin: 20px auto;
  width: 100%;
}
.contact-table {
  width: 100%;
}
.table-list {
  display: flex;
  justify-content: space-between;
  letter-spacing: 0.05em;
  width: 100%;
  margin-bottom: 40px;
}
.table-list th {
  font-weight: bold;
  width: 250px;
  text-align: left;
}
.table-list-address {
  flex-wrap: wrap;
}
.table-list-address .input-area {
  margin-bottom: 10px;
}
.input-area {
  letter-spacing: 0.05em;
  padding: 0 10px;
  border: none;
  width: 550px;
  height: 40px;
  box-sizing: border-box;
  border: 1px solid #c4c4c4;
}
.table-list td {
  width: calc(100% - 250px);
}
input::placeholder {
  color: #bfbfbf;
  font-weight: bold;
}
textarea {
  border: none;
  width: 550px;
  height: 200px;
  padding: 0;
  border: 1px solid #c4c4c4;
}
textarea::placeholder {
  color: #bfbfbf;
  font-size: 12px;
}
input[type="text"] {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.contact-area .text {
  font-size: 13px;
  text-align: center;
  margin-bottom: 100px;
}
.contact-area .text a {
  color: #000;
  border-bottom: 1px solid #000;
  transition: all .3s;
}
.contact-area .text a:hover {
  border-bottom: 1px solid #777;
  padding-bottom: 5px;
  color: #777;
}
.submit-button {
  box-sizing: border-box;
  position: relative;
  display: block;
  margin: 30px auto 0;
  background-color: #e4eeef;
  cursor: pointer;
  border: 1px solid #e4eeef;
  color: #000;
  text-align: center;
  text-decoration: none;
  line-height: 1.5;
  outline: none;
  -webkit-transition: all .3s;
  transition: all .5s;
  padding: 20px 100px;
}
.submit-button:hover {
  background: #cae1e3;
  color: #000;
  border: 1px solid #cae1e3;
}
@media(max-width:1024px) {
  .contact-area {
    /*padding: 50px 15px;*/
  }
  .table-list th {
    width: 180px;
  }
  .table-list td {
    width: 100%;
  }
  .input-area {
    width: 500px;
    height: 40px;
  }
  textarea {
    width: 500px;
    height: 200px;
  }
  .contact-message {
    margin-bottom: 30px;
  }
  .contact-area .text {
    margin-bottom: 30px;
  }
}
@media(max-width:834px) {
  .contact-area {
    /*margin: 50px auto;
    padding: 50px 20px;*/
  }
  .check-box label {
    width: 100%;
  }
  .input-area {
    width: 100%;
    height: 30px;
  }
  textarea {
    width: 100%;
    height: 200px;
  }
  .table-list {
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  .table-list th {
    font-size: 12px;
    width: 200px;
    margin-bottom: 10px;
  }
  .table-list td {
    font-size: 12px;
  }
  .table-list td {
    width: 100%;
  }
  .contact-message {
    font-size: 13px;
  }
  .contact-area .text {
    font-size: 13px;
  }
}
@media (max-width:599px) {
  .contact-message {
    text-align: left;
  }
  .contact-area .text {
    text-align: left;
  }
}