*, :after, :before {
  box-sizing: border-box;
}

blockquote, body, dd, dl, figure, h1, h2, h3, h4, h5, h6, ol, p, ul {
  margin: 0;
}

html {
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

body {
  background: #fff;
  color: #000;
  line-height: 1.55;
  text-rendering: optimizeSpeed;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: inherit;
}

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

a {
  color: inherit;
  text-decoration: underline;
}

img, picture, svg {
  display: block;
  height: auto;
  width: 100%;
}

button, input, select, textarea {
  font: inherit;
}

:focus {
  outline: none;
}

table {
  border-collapse: separate;
  border-spacing: 0;
}

button, input[type=button], input[type=reset], input[type=submit] {
  background: transparent;
  border: 0;
  font: inherit;
  margin: 0;
  padding: 0;
}

hr {
  background: transparent;
  border: solid #dcdcdc;
  border-width: 1px 0 0;
  height: 0;
  padding: 0;
}

.c-copy {
  display: block;
  position: relative;
}

.c-copy:after {
  background: #fff;
  bottom: 0;
  content: "";
  display: block;
  height: 5px;
  left: 0;
  position: absolute;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
  -webkit-transition-property: width;
  transition-property: width;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  width: 0;
}

.c-copy.is-active:after {
  width: 100%;
}

.c-loading {
  -webkit-align-items: center;
  align-items: center;
  background: #fff;
  bottom: 0;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999999;
}

.c-loading.js-animation-hiding {
  -webkit-animation: c-loading-hiding 1s ease 1 forwards;
  animation: c-loading-hiding 1s ease 1 forwards;
  pointer-events: none;
}

.c-loading.js-animation-hidden {
  display: none;
}

@-webkit-keyframes c-loading-hiding {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes c-loading-hiding {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.c-loading__meter {
  background: #ebf4fa;
  bottom: 0;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-transition: width 0.1s ease;
  transition: width 0.1s ease;
  width: 0;
}

.c-loading__logo {
  -webkit-animation: c-loading__logo 0.4s ease-out 1 alternate;
  animation: c-loading__logo 0.4s ease-out 1 alternate;
  position: relative;
}

@-webkit-keyframes c-loading__logo {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10vh) scale(0.98);
    transform: translateY(10vh) scale(0.98);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
@keyframes c-loading__logo {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10vh) scale(0.98);
    transform: translateY(10vh) scale(0.98);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
.c-sidenav__entry {
  font-weight: 700;
}

.c-sidenav__menu-button {
  color: #fff;
  letter-spacing: 0.1em;
}

@-webkit-keyframes c-sidenav__sub {
  0% {
    opacity: 0;
    -webkit-transform: translate(-6.25rem);
    transform: translate(-6.25rem);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
@keyframes c-sidenav__sub {
  0% {
    opacity: 0;
    -webkit-transform: translate(-6.25rem);
    transform: translate(-6.25rem);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
@-webkit-keyframes c-sidenav__sub-2 {
  0% {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate(-6.25rem);
    transform: translate(-6.25rem);
  }
}
@keyframes c-sidenav__sub-2 {
  0% {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate(-6.25rem);
    transform: translate(-6.25rem);
  }
}
.c-menu {
  background: rgba(0, 117, 193, 0.95);
  bottom: 0;
  color: #fff;
  display: none;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.c-menu a {
  text-decoration: none;
}

.c-menu.js-animation-showing {
  -webkit-animation: c-menu-show ease 1;
  animation: c-menu-show ease 1;
}

.c-menu.js-animation-showing .c-menu__upper {
  -webkit-animation: c-menu__upper-show ease 1;
  animation: c-menu__upper-show ease 1;
}

.c-menu.js-animation-hiding {
  animation: c-menu-show ease 1 reverse;
}

.c-menu.js-animation-hiding .c-menu__upper {
  animation: c-menu__upper-show ease 1 reverse;
}

.c-menu.js-animation-hidden {
  display: none;
}

@-webkit-keyframes c-menu-show {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes c-menu-show {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes c-menu__upper-show {
  0% {
    -webkit-transform: translateY(30vh);
    transform: translateY(30vh);
  }
  to {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
@keyframes c-menu__upper-show {
  0% {
    -webkit-transform: translateY(30vh);
    transform: translateY(30vh);
  }
  to {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
.c-menu__bg {
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-align: start;
  -webkit-box-pack: start;
  color: #65aede;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  left: 0;
  letter-spacing: 0.1em;
  opacity: 0.15;
  pointer-events: none;
  position: absolute;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}

@-webkit-keyframes c-menu__bg {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
  to {
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
  }
}
@keyframes c-menu__bg {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
  to {
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
  }
}
.c-menu__inner {
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-box-align: stretch;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-box-pack: start;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.c-menu__top {
  display: inline-block;
  letter-spacing: 0.05em;
}

.c-menu__columns {
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-align: start;
  -webkit-box-pack: justify;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.c-menu__column, .c-menu__group {
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-align: start;
  -webkit-box-pack: start;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.c-menu__group {
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  flex-direction: column;
}

.c-menu__title {
  line-height: 1;
  opacity: 0.3;
}

.c-menu__link, .c-menu__title {
  letter-spacing: 0.05em;
}

.c-menu__list, .c-menu__lists {
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-align: start;
  -webkit-box-pack: start;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.c-menu__list {
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  flex-direction: column;
}

.c-menu__entry {
  background: url(/recruit/assets/images/common/external-2.svg) no-repeat 100%;
  letter-spacing: 0.05em;
}

.c-menu__corporate {
  background: url(/recruit/assets/images/common/external-1.svg) no-repeat 100%;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.c-menu__close {
  -webkit-align-items: center;
  align-items: center;
  background: #65aede;
  -webkit-box-align: center;
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -webkit-box-pack: center;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 0.1em;
  width: 100%;
}

.c-main {
  background: #fff;
  position: relative;
}

.c-breadcrumb {
  color: #fff;
}

.c-kv {
  background: no-repeat 50%;
  background-size: cover;
  position: relative;
}

.c-kv__title {
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-align: start;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-box-pack: start;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  position: absolute;
}

.c-kv__title b {
  letter-spacing: 0.1em;
}

.c-kv__title strong {
  letter-spacing: 0.1em;
  line-height: 1;
}

.c-kv__interview {
  background: no-repeat 100% 100%;
  background-size: auto 100%;
  color: #fff;
  position: absolute;
  right: 0;
}

.c-kv__interview b, .c-kv__interview span {
  display: inline-block;
}

.c-section__title {
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-box-pack: center;
  color: #0075c1;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  font-weight: 700;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 0.1em;
  line-height: 1.7;
  text-align: center;
}

.c-section__title span {
  border-bottom: 4px solid #0075c1;
}

.c-section__subtitle {
  color: #0075c1;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
}

.c-section__lead {
  letter-spacing: 0.05em;
  line-height: 2;
}

.c-section__subtitle + .c-section__lead {
  text-align: center;
}

.c-bottom-nav {
  margin: 4.16667rem 2.08333rem;
}

.c-bottom-nav__link {
  -webkit-align-items: center;
  align-items: center;
  background: no-repeat 50%;
  -webkit-box-align: center;
  color: #fff;
  position: relative;
  text-decoration: none;
}

.c-bottom-nav__link, .c-bottom-nav__name {
  -webkit-box-pack: start;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.c-bottom-nav__name {
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-align: start;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  flex-direction: column;
}

.c-bottom-nav__name b, .c-bottom-nav__name span {
  display: block;
}

.c-bottom-nav__name b {
  letter-spacing: 0.1em;
  line-height: 1;
}

.c-bottom-nav__name span {
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.c-bottom-nav__more {
  -webkit-align-items: center;
  align-items: center;
  border: 1px solid #fff;
  bottom: 0;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 0.1em;
  line-height: 1;
  margin: auto 0;
  position: absolute;
  top: 0;
}

.c-footer {
  background: #112431;
  color: #fff;
  position: relative;
}

.c-footer__concept {
  -webkit-align-items: center;
  align-items: center;
  background: no-repeat 50%;
  background-size: cover;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}

.c-footer__concept span {
  display: block;
}

.c-footer__concept span:nth-child(2):after {
  height: 3px;
}

.c-footer__upper {
  -webkit-align-items: center;
  align-items: center;
  border-bottom: 1px solid #31424e;
  -webkit-box-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}

.c-footer__nav a {
  text-decoration: none;
}

.c-footer__lower {
  color: #859199;
}

.c-footer__links, .c-footer__lower {
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}

.c-footer__links {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.c-footer__links a {
  letter-spacing: 0.05em;
  text-decoration: none;
}

.c-footer__copyright {
  letter-spacing: 0.1em;
}

.u-roboto {
  font-weight: 400;
}

.u-roboto, .u-roboto-b {
  font-family: Roboto, Noto Sans JP, sans-serif;
}

.u-roboto-b {
  font-weight: 700;
}

.u-roboto-i {
  font-weight: 400;
}

.u-roboto-bi, .u-roboto-i {
  font-family: Roboto, Noto Sans JP, sans-serif;
  font-style: italic;
}

.u-roboto-bi {
  font-weight: 700;
}

.js-effect {
  opacity: 0;
}

.js-effect.is-active {
  -webkit-animation: effect 0.5s ease forwards;
  animation: effect 0.5s ease forwards;
}

@-webkit-keyframes effect {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10vh);
    transform: translateY(10vh);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
@keyframes effect {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10vh);
    transform: translateY(10vh);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
@-webkit-keyframes effect-ie {
  0% {
    opacity: 0;
    -webkit-transform: translateY(5rem);
    transform: translateY(5rem);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
@keyframes effect-ie {
  0% {
    opacity: 0;
    -webkit-transform: translateY(5rem);
    transform: translateY(5rem);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
@media only screen and (min-width: 768px), print {
  html {
    font-family: Noto Sans JP, sans-serif;
    font-size: 16px;
    font-weight: 500;
  }
  button, input[type=button], input[type=reset], input[type=submit] {
    cursor: pointer;
  }
  hr {
    margin: 0 5rem;
  }
  .c-copy {
    padding: 0 1.25rem 1.875rem;
  }
  .c-loading__logo {
    width: 11.375rem;
  }
  .c-sidenav {
    height: 100%;
    left: 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: background;
    transition-property: background;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
    width: -webkit-calc(17.5rem + 1px);
    width: calc(17.5rem + 1px);
    z-index: 10;
  }
  .c-sidenav.is-active {
    width: 37.5rem;
  }
  .c-sidenav.is-active.is-wide {
    width: 68.75rem;
  }
  .c-sidenav.is-active.is-empty {
    width: -webkit-calc(17.5rem + 1px);
    width: calc(17.5rem + 1px);
  }
  .c-sidenav__cover {
    background: rgba(0, 0, 0, 0.5);
    bottom: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 0;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
    z-index: 9;
  }
  .c-sidenav__cover.is-active {
    opacity: 1;
    pointer-events: all;
  }
  .c-sidenav__inner {
    -webkit-box-pack: start;
    height: 100%;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    min-height: 770px;
  }
  .c-sidenav__inner, .c-sidenav__left {
    -webkit-align-items: stretch;
    align-items: stretch;
    -webkit-box-align: stretch;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
  }
  .c-sidenav__left {
    background-color: #0075c1;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-box-pack: justify;
    -webkit-flex-basis: 17.5rem;
    flex-basis: 17.5rem;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    position: relative;
    width: 17.5rem;
    z-index: 12;
  }
  .c-sidenav__brand {
    margin: 2.125rem 0 6.25rem 3.125rem;
    width: 11.25rem;
  }
  .c-sidenav__item {
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-align: center;
    -webkit-box-pack: start;
    color: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    font-size: 0.875rem;
    font-weight: 700;
    height: 2.8125rem;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    padding-left: 3.125rem;
    text-decoration: none;
    -webkit-transition-duration: 0.1s;
    transition-duration: 0.1s;
    -webkit-transition-property: color, box-shadow;
    transition-property: color, box-shadow;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
  }
  .corporate {
    font-size: 80%;
    display: flex;
    align-items: center;
    margin-top: 1.2rem;
  }
  .corporate::after {
    content: "";
    background: url(/recruit/assets/images/common/external-1.svg) no-repeat 100%;
    background-size: auto 0.625rem;
    height: 10px;
    width: 10px;
    display: block;
    margin-left: 0.5rem;
  }
  .internship {
    font-size: 80%;
    display: flex;
    align-items: center;
  }
  .internship::after {
    content: "";
    background: url(/recruit/assets/images/common/external-1.svg) no-repeat 100%;
    background-size: auto 0.625rem;
    height: 10px;
    width: 10px;
    display: block;
    margin-left: 0.5rem;
  }
  .is-active .c-sidenav__item {
    box-shadow: 7px 0 0 -7px #e60012;
    color: hsla(0, 0%, 100%, 0.3);
  }
  .is-active .corporate::after {
    opacity: 0.7;
  }
  .is-active .corporate.is-active::after {
    opacity: 1;
  }
  .is-active .internship::after {
    opacity: 0.7;
  }
  .is-active .internship.is-active::after {
    opacity: 1;
  }
  .is-active .c-sidenav__item.is-active {
    box-shadow: 13px 0 0 -7px #e60012;
    color: #fff;
  }
  .c-sidenav__entries {
    -webkit-align-items: stretch;
    align-items: stretch;
    -webkit-box-align: stretch;
    -webkit-box-pack: stretch;
    -webkit-justify-content: stretch;
    justify-content: stretch;
    margin: auto 0 0;
  }
  .c-sidenav__entries, .c-sidenav__entry {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
  }
  .c-sidenav__entry {
    -webkit-align-items: center;
    align-items: center;
    border: solid hsla(0, 0%, 100%, 0.5);
    border-width: 1px 0 0;
    -webkit-box-align: center;
    -webkit-box-pack: center;
    color: #fff;
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
    font-size: 0.875rem;
    font-weight: 700;
    height: 7.5625rem;
    -webkit-justify-content: center;
    justify-content: center;
    letter-spacing: 0.05em;
    line-height: 1.5714285714;
    max-width: 50%;
    text-align: center;
    text-decoration: none;
    -webkit-transition-duration: 0.1s;
    transition-duration: 0.1s;
    -webkit-transition-property: color, box-shadow;
    transition-property: color, box-shadow;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
    width: 50%;
  }
  .c-sidenav__entry:first-child {
    border-right-width: 1px;
  }
  .is-active .c-sidenav__entry {
    color: hsla(0, 0%, 100%, 0.3);
  }
  .is-active .c-sidenav__entry:hover {
    color: #fff;
  }
  .c-sidenav__menu-button {
    -webkit-align-items: center;
    align-items: center;
    border-top: 1px solid hsla(0, 0%, 100%, 0.5);
    -webkit-box-align: center;
    -webkit-box-pack: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-basis: 7.5rem;
    flex-basis: 7.5rem;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    font-size: 1.125rem;
    height: 7.5rem;
    -webkit-justify-content: center;
    justify-content: center;
    text-decoration: none;
    -webkit-transition-duration: 0.1s;
    transition-duration: 0.1s;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
    width: 100%;
  }
  .is-active .c-sidenav__menu-button {
    color: hsla(0, 0%, 100%, 0.3);
  }
  .is-active .c-sidenav__menu-button:hover {
    color: #fff;
  }
  .c-sidenav__right {
    -webkit-box-flex: 1;
    -webkit-flex-basis: -webkit-calc(100% - 17.5rem);
    flex-basis: calc(100% - 17.5rem);
    -webkit-flex-grow: 1;
    flex-grow: 1;
    position: relative;
    width: -webkit-calc(100% - 17.5rem);
    width: calc(100% - 17.5rem);
    z-index: 11;
  }
  .c-sidenav__sub {
    -webkit-align-items: flex-start;
    align-items: flex-start;
    background: hsla(0, 0%, 100%, 0.9);
    -webkit-box-align: start;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-box-pack: start;
    display: none;
    -webkit-flex-direction: column;
    flex-direction: column;
    height: 100%;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    max-width: 20rem;
    opacity: 0;
    padding: 7.5rem 3.75rem 0;
    pointer-events: none;
    -webkit-transform: translate(-6.25rem);
    transform: translate(-6.25rem);
    -webkit-transform-origin: left top;
    transform-origin: left top;
    -webkit-transition-duration: 0.1s;
    transition-duration: 0.1s;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
  }
  .c-sidenav__sub.is-wide {
    max-width: 51.25rem;
  }
  .c-sidenav__sub.is-active {
    -webkit-animation: c-sidenav__sub 0.2s ease 1 forwards;
    animation: c-sidenav__sub 0.2s ease 1 forwards;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    pointer-events: all;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .c-sidenav__sub.is-active#nav6 {
    display: none;
  }
  .c-sidenav__sub.is-active#nav7 {
    padding: 7.5rem 1.75rem 0;
  }
  .c-sidenav__sub.is-active#nav7 .txt {
    font-size: 80%;
    margin-bottom: 20px;
  }
  .c-sidenav__sub.is-active#nav7 span.sub {
    display: inline-block;
    margin-bottom: 5px;
  }
  .c-sidenav__sub.is-active#nav7 audio {
    width: 100%;
    margin-bottom: 20px;
    display: block;
  }
  .c-sidenav__sub.is-inactive {
    -webkit-animation: c-sidenav__sub-2 0.2s ease 1 forwards;
    animation: c-sidenav__sub-2 0.2s ease 1 forwards;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    pointer-events: none;
  }
  .c-sidenav__title {
    border-bottom: 2px solid #000;
    font-size: 1.125rem;
    line-height: 1;
    margin-bottom: 2.5rem;
    padding: 0 0.25rem 0.5rem;
  }
  .c-sidenav__sub-item {
    -webkit-box-direction: reverse;
    -webkit-box-orient: vertical;
    -webkit-box-pack: start;
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    font-size: 0.875rem;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    margin-bottom: 1.875rem;
    text-decoration: none;
  }
  .c-sidenav__columns, .c-sidenav__sub-item {
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-box-align: start;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
  }
  .c-sidenav__columns {
    -webkit-align-self: stretch;
    align-self: stretch;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .c-sidenav__button {
    -webkit-align-items: center;
    align-items: center;
    background: #0075c1;
    border-radius: 0.9375rem;
    -webkit-box-align: center;
    -webkit-box-pack: center;
    color: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    font-size: 0.875rem;
    height: 1.875rem;
    -webkit-justify-content: center;
    justify-content: center;
    position: absolute;
    right: 3.75rem;
    text-decoration: none;
    top: 7.5rem;
    width: 11.25rem;
  }
  .c-sidenav__image {
    background: no-repeat 50%;
    background-size: cover;
    height: 7.5rem;
    margin-bottom: 0.625rem;
    width: 12.5rem;
  }
  .c-sidenav__link {
    background: no-repeat 50%;
    background-size: 100% 100%;
    display: block;
    height: 3.75rem;
    margin: 0.625rem 0;
    overflow: hidden;
    text-indent: 150%;
    white-space: nowrap;
    width: 12.5rem;
  }
  .c-menu {
    overflow: hidden;
  }
  .c-menu.js-animation-hiding, .c-menu.js-animation-showing, .c-menu.js-animation-shown {
    display: block;
  }
  .c-menu__bg {
    -webkit-animation: c-menu__bg 60s linear infinite;
    animation: c-menu__bg 60s linear infinite;
    bottom: 7.5rem;
    font-size: 13.75rem;
    line-height: 1;
    line-height: 9.375rem;
  }
  .c-menu__upper {
    height: -webkit-calc(100% - 7.5rem);
    height: calc(100% - 7.5rem);
    overflow-x: hidden;
    overflow-y: auto;
    padding: 6.25rem calc((100% - 1220px) / 2);
  }
  .c-menu__inner {
    width: 100%;
  }
  .c-menu__top {
    font-size: 3.125rem;
    margin-bottom: 3.75rem;
  }
  .c-menu__columns {
    margin-bottom: 3.125rem;
  }
  .c-menu__column {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .c-menu__group + .c-menu__group {
    margin-top: 4.125rem;
  }
  .c-menu__group.is-other {
    margin-top: 0;
  }
  .c-menu__title {
    font-size: 2.5rem;
    margin-bottom: 1.5625rem;
  }
  .c-menu__link {
    font-size: 1rem;
  }
  .c-menu__link + .c-menu__link {
    margin-top: 1rem;
  }
  .c-menu__lists {
    margin: 1.5625rem 0 1.875rem 1.25rem;
  }
  .c-menu__list + .c-menu__list {
    margin-left: 1.875rem;
  }
  .c-menu__list-link {
    font-size: 0.8125rem;
    letter-spacing: 0.05em;
  }
  .c-menu__list-link + .c-menu__list-link {
    margin-top: 0.75rem;
  }
  .c-menu__entry {
    background-size: auto 1.375rem;
    font-size: 1.25rem;
    line-height: 1.375rem;
    margin-bottom: 1.875rem;
    padding-right: 2.5rem;
  }
  .c-menu__corporate {
    background-size: auto 0.625rem;
    font-size: 0.875rem;
    margin-top: 1.25rem;
    padding-right: 1.375rem;
  }
  .c-menu__close {
    -webkit-flex-basis: 7.5rem;
    flex-basis: 7.5rem;
    font-size: 1.125rem;
    height: 7.5rem;
  }
  .c-menu__close img {
    height: 2.75rem;
    margin-right: 1.875rem;
    width: 2.75rem;
  }
  .c-main {
    border-left: 17.5rem solid #434343;
  }
  .c-breadcrumb {
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-align: center;
    -webkit-box-pack: start;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    left: 2.25rem;
    position: absolute;
    top: 2.875rem;
  }
  .c-breadcrumb a, .c-breadcrumb b, .c-breadcrumb span {
    font-size: 0.75rem;
  }
  .c-breadcrumb a:after, .c-breadcrumb span:after {
    content: ">";
    margin: 0 1em;
  }
  .c-breadcrumb a {
    text-decoration: none;
  }
  .c-kv {
    height: 24rem;
    margin-bottom: 1.25rem;
  }
  .c-kv__title {
    bottom: 3.4375rem;
    left: 4.375rem;
  }
  .c-kv__title b {
    font-size: 7.5rem;
    line-height: 1.4;
  }
  .c-kv__title strong {
    font-size: 1.5rem;
  }
  .c-kv__interview {
    background-image: url(/recruit/assets/images/common/tri_1.svg);
    background-position: 100% 100%;
    bottom: 0;
    height: 7.3125rem;
    padding-right: 2.125rem;
    padding-top: 2.6875rem;
  }
  .c-kv__interview span {
    font-size: 1.25rem;
    letter-spacing: 0.1em;
  }
  .c-kv__interview b {
    font-size: 2rem;
    margin-left: 0.625rem;
  }
  .c-section {
    padding: 4.375rem 5rem;
  }
  .c-subsection {
    padding-top: 3.375rem;
  }
  .c-section__title {
    font-size: 1.75rem;
    margin-bottom: 3.75rem;
  }
  .c-section__title span {
    padding: 0 0.9375rem 0.625rem;
  }
  .c-section__subtitle {
    font-size: 1.25rem;
    margin-bottom: 1.625rem;
  }
  .c-section__lead {
    font-size: 0.875rem;
    margin: 0 auto;
    width: 42.5rem;
  }
  .c-section__title + .c-section__lead {
    margin-top: -1.5625rem;
  }
  .c-section__subtitle + .c-section__lead {
    margin-top: -0.625rem;
  }
  .c-bottom-nav {
    -webkit-align-items: stretch;
    align-items: stretch;
    -webkit-box-align: stretch;
    -webkit-box-pack: justify;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin: 5rem auto;
    width: 67.5rem;
  }
  .c-bottom-nav__link {
    background-size: 100% auto;
    -webkit-flex-basis: 33.5625rem;
    flex-basis: 33.5625rem;
    height: 18.75rem;
    max-width: 33.5625rem;
    padding-left: 3.625rem;
    -webkit-transition: background 0.4s ease;
    transition: background 0.4s ease;
    width: 33.5625rem;
  }
  .c-bottom-nav__link.is-wide {
    -webkit-flex-basis: 62.5rem;
    flex-basis: 62.5rem;
    margin: 0 auto;
    max-width: 62.5rem;
    width: 62.5rem;
  }
  .c-bottom-nav__link:hover {
    background-size: 110% auto;
  }
  .c-bottom-nav__name b {
    font-size: 2.25rem;
    margin-bottom: 0.625rem;
  }
  .c-bottom-nav__name span {
    font-size: 1rem;
  }
  .c-bottom-nav__more {
    border-radius: 3.75rem;
    font-size: 0.8125rem;
    height: 7.5rem;
    opacity: 0;
    right: 3.75rem;
    -webkit-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
    width: 7.5rem;
  }
  .c-bottom-nav__link:hover .c-bottom-nav__more {
    opacity: 1;
  }
  .c-footer {
    border-left: 17.5rem solid #434343;
  }
  .c-footer__concept {
    height: 15.625rem;
  }
  .c-footer__concept span:first-child {
    width: 8.5rem;
  }
  .c-footer__concept span:nth-child(2) {
    margin-left: 0.75rem;
    padding: 0 0.25rem 0.75rem 0.8125rem;
    width: 12.4375rem;
  }
  .c-footer__upper {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin: 0 2.5rem;
    padding: 3.75rem 0 3.375rem;
  }
  .c-footer__brand {
    width: 6.75rem;
  }
  .c-footer__nav {
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-align: center;
    -webkit-box-pack: end;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
  .c-footer__nav a {
    font-size: 0.75rem;
    margin-left: 2em;
  }
  .c-footer__lower {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin: 1.625rem 2.5rem 0;
    padding-bottom: 1.875rem;
  }
  .c-footer__links a {
    font-size: 0.75rem;
    margin-right: 2em;
  }
  .c-footer__copyright {
    font-size: 0.75rem;
  }
  .c-footer__copyright br {
    display: none;
  }
  .u-hover {
    -webkit-transition: opacity 0.15s ease;
    transition: opacity 0.15s ease;
  }
  .u-hover:hover {
    opacity: 0.6;
  }
  .u-hover-2 > :first-child {
    position: relative;
  }
  .u-hover-2 > :first-child:after {
    border-bottom: 2px solid;
    bottom: -0.2em;
    content: "";
    display: block;
    left: auto;
    position: absolute;
    right: 0;
    -webkit-transition: width 0.4s ease-in-out;
    transition: width 0.4s ease-in-out;
    width: 0;
  }
  .u-hover-2:hover > :first-child:after {
    left: 0;
    right: auto;
    width: 100%;
  }
  .u-sp-only {
    display: none !important;
  }
  .u-inner {
    margin-left: auto;
    margin-right: auto;
    max-width: 1160px;
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1439.9px) {
  html {
    font-size: 1.11111vw;
  }
  .c-menu__upper {
    padding: 0 6.875rem;
  }
}
@media only screen and (max-width: 767.9px) {
  html {
    font-family: Noto Sans JP, sans-serif;
    font-size: 3.125vw;
    font-weight: 500;
  }
  a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  hr {
    margin: 0 2.08333rem;
  }
  .c-copy {
    padding: 0 0 1.66667rem;
  }
  .c-loading__logo {
    width: 10.41667rem;
  }
  .c-sidenav__brand {
    -webkit-align-items: flex-start;
    align-items: flex-start;
    background: #0075c1;
    -webkit-box-align: start;
    -webkit-box-pack: start;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    height: 5rem;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    left: 0;
    padding: 0.79167rem 0 0 2.08333rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
  }
  .c-sidenav__brand img {
    width: 7.5rem;
  }
  .c-sidenav__entries, .c-sidenav__item {
    display: none;
  }
  .c-sidenav__menu-button {
    border: solid hsla(0, 0%, 100%, 0.5);
    border-width: 0 0 0 1px;
    font-size: 1.08333rem;
    height: 5rem;
    position: fixed;
    right: 0;
    top: 0;
    width: 8.33333rem;
    z-index: 10;
  }
  .c-sidenav__right {
    display: none;
  }
  .c-menu {
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-box-align: start;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .c-menu.js-animation-hiding, .c-menu.js-animation-showing, .c-menu.js-animation-shown {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
  }
  .c-menu__bg {
    -webkit-animation: c-menu__bg 30s linear infinite;
    animation: c-menu__bg 30s linear infinite;
    font-size: 9.16667rem;
    line-height: 8.75rem;
    top: 4.16667rem;
  }
  .c-menu__upper {
    padding: 9.16667rem 0 0;
    position: relative;
  }
  .c-menu__top {
    font-size: 2.16667rem;
    margin-bottom: 4.58333rem;
  }
  .c-menu__columns {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .c-menu__column + .c-menu__column {
    margin-top: 2.5rem;
  }
  .c-menu__group {
    position: relative;
  }
  .c-menu__group.is-message {
    margin-right: 4.04167rem;
  }
  .c-menu__group.is-workplace {
    margin-right: 2.25rem;
  }
  .c-menu__group.is-recruit-info {
    margin-right: -1.33333rem;
  }
  .c-menu__group.is-entries {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    flex-direction: column;
    left: 7.83333rem;
    margin-bottom: 1.875rem;
    position: absolute;
    top: 10rem;
  }
  .c-menu__title {
    font-size: 2.16667rem;
    margin-bottom: 0.83333rem;
  }
  .c-menu__link {
    font-size: 1.08333rem;
  }
  .c-menu__link + .c-menu__link {
    margin-top: 0.66667rem;
  }
  .is-interview .c-menu__link:first-of-type {
    margin-bottom: 6.45833rem;
  }
  .c-menu__lists {
    left: 10.41667rem;
    position: absolute;
    top: 3.125rem;
  }
  .c-menu__list + .c-menu__list {
    margin-left: 1.45833rem;
  }
  .c-menu__list-link {
    white-space: nowrap;
  }
  .c-menu__list-link + .c-menu__list-link {
    margin-top: 0.41667rem;
  }
  .c-menu__entry {
    background-size: auto 1.25rem;
    font-size: 1.25rem;
    line-height: 1.25rem;
    margin-bottom: 1.875rem;
    padding-right: 1.875rem;
  }
  .c-menu__corporate {
    background-size: auto 0.83333rem;
    font-size: 1rem;
    padding-right: 1.66667rem;
  }
  .c-menu__close {
    font-size: 1.08333rem;
    height: 5rem;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
  }
  .c-menu__close img {
    height: 1.83333rem;
    margin-right: 1.16667rem;
    width: 1.83333rem;
  }
  .c-main {
    margin-top: 5rem;
  }
  .c-breadcrumb {
    display: none;
  }
  .c-kv {
    height: 14.58333rem;
  }
  .c-kv__title {
    bottom: 2.29167rem;
    left: 1.75rem;
  }
  .c-kv__title b {
    font-size: 5rem;
    line-height: 1.3;
  }
  .c-kv__title strong {
    font-size: 1.16667rem;
  }
  .c-kv__interview {
    background-image: url(/recruit/assets/images/common/tri_2.svg);
    background-position: 100% 0;
    height: 6.20833rem;
    padding-right: 0.3125rem;
    padding-top: 0.9375rem;
    top: 0;
  }
  .c-kv__interview span {
    font-size: 1.33333rem;
    letter-spacing: 0.1em;
    margin-right: 0.5em;
  }
  .c-kv__interview b {
    font-size: 1.83333rem;
    letter-spacing: 0.1em;
  }
  .c-section {
    padding: 3.75rem 0;
  }
  .c-subsection {
    padding-top: 3rem;
  }
  .c-section__title {
    font-size: 1.5rem;
    margin-bottom: 3.33333rem;
  }
  .c-section__title span {
    padding: 0 0.79167rem 0.625rem;
  }
  .c-section__subtitle {
    font-size: 1.16667rem;
    margin-bottom: 1.41667rem;
  }
  .c-section__lead {
    font-size: 1rem;
    margin: 0 2.08333rem;
  }
  .c-section__title + .c-section__lead {
    margin-top: -2.08333rem;
  }
  .c-section__subtitle + .c-section__lead {
    margin-top: -0.41667rem;
  }
  .c-bottom-nav__link {
    background-size: cover;
    height: 15.125rem;
    margin-bottom: 0.33333rem;
    padding-left: 2.41667rem;
  }
  .c-bottom-nav__name b {
    font-size: 1.83333rem;
    margin-bottom: 0.41667rem;
  }
  .c-bottom-nav__name span {
    font-size: 1rem;
  }
  .c-bottom-nav__more {
    border-radius: 3.75rem;
    font-size: 0.91667rem;
    height: 7.5rem;
    right: 2.5rem;
    width: 7.5rem;
  }
  .c-footer__concept {
    height: 14.58333rem;
  }
  .c-footer__concept span:first-child {
    width: 9.33333rem;
  }
  .c-footer__concept span:nth-child(2) {
    margin-left: 0.83333rem;
    padding: 0 0 0.83333rem 0.54167rem;
    width: 12rem;
  }
  .c-footer__upper {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin: 0 2.08333rem;
    padding: 3.08333rem 0 2.5rem;
  }
  .c-footer__brand {
    width: 7.5rem;
  }
  .c-footer__nav {
    display: none;
  }
  .c-footer__lower {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin-top: 2.29167rem;
    padding-bottom: 1.66667rem;
  }
  .c-footer__links, .c-footer__lower {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .c-footer__links {
    margin-bottom: 1.25rem;
  }
  .c-footer__links a {
    font-size: 0.91667rem;
    margin-bottom: 1em;
  }
  .c-footer__copyright {
    font-size: 0.91667rem;
    line-height: 1.6363636364;
    text-align: center;
  }
  .u-pc-only {
    display: none !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
@media only screen and (min-width: 768px) and (max-height: 769.9px) {
  .c-sidenav__inner {
    min-height: 100vh;
  }
  .c-sidenav__upper {
    -webkit-align-items: stretch;
    align-items: stretch;
    -webkit-box-align: stretch;
    -webkit-box-direction: normal;
    -webkit-box-flex: 1;
    -webkit-box-orient: vertical;
    -webkit-box-pack: start;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .c-sidenav__brand {
    margin-bottom: 0;
  }
  .c-sidenav__items {
    -webkit-align-items: stretch;
    align-items: stretch;
    -webkit-box-align: stretch;
    -webkit-box-direction: normal;
    -webkit-box-flex: 1;
    -webkit-box-orient: vertical;
    -webkit-box-pack: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .c-sidenav__entry {
    height: 6.25rem;
  }
  .c-sidenav__menu-button {
    -webkit-flex-basis: 6.25rem;
    flex-basis: 6.25rem;
    height: 6.25rem;
  }
  .c-sidenav__sub {
    padding-top: 3.75rem;
  }
  .c-sidenav__title {
    margin-bottom: 1.25rem;
  }
  .c-sidenav__sub-item {
    margin-bottom: 0.9375rem;
  }
  .c-sidenav__image {
    margin-bottom: 0.3125rem;
  }
}
@media only screen, print {
  .js-effect.is-active, _:-ms-lang(x)::-ms-backdrop {
    animation-name: effect-ie;
  }
}
.c-menu__group.is-workplace a[target=_blank], .c-menu__group.is-about a[target=_blank] {
  background: url(/recruit/assets/images/common/external-1.svg) no-repeat 100%;
  background-size: auto 0.83333rem;
  letter-spacing: 0.05em;
  padding-right: 1.66667rem;
}

.c-sidenav__sub.is-active a[target=_blank] .c-sidenav__text {
  background: url(/recruit/assets/images/common/external-4.svg) no-repeat 100%;
  background-size: auto 0.83333rem;
  letter-spacing: 0.05em;
  padding-right: 1.66667rem;
}

.p-ZEB__section .p-ZEB__body .p-ZEB__text a {
  color: #0075c1;
  font-size: 1rem;
  background: url(/recruit/assets/images/common/external-3.svg) no-repeat 100%;
  background-size: 0.8em auto;
  display: block;
  letter-spacing: 0.05em;
  padding-right: 1.2em;
  text-decoration: none;
  margin: 1rem auto 0;
  width: fit-content;
}
@media only screen and (min-width: 768px), print {
  .p-ZEB__section .p-ZEB__body .p-ZEB__text a {
    margin: 1rem auto 0 0;
  }
}

.sp_only {
  display: block;
}
@media only screen and (min-width: 768px), print {
  .sp_only {
    display: none;
  }
}

.pc_only {
  display: none;
}
@media only screen and (min-width: 768px), print {
  .pc_only {
    display: block;
  }
}

.c-section__banner {
  margin: 2.91667rem 4.16667rem 4rem;
}
@media only screen and (min-width: 768px), print {
  .c-section__banner {
    margin: 0 0 4rem 0;
    width: 100%;
  }
}

.c-menu__group.is-radio {
  display: block;
}
@media only screen and (min-width: 768px), print {
  .c-menu__group.is-radio {
    display: none;
  }
}
.c-menu__group.is-radio .txt {
  font-size: 80%;
  margin-bottom: 10px;
}
.c-menu__group.is-radio .sub {
  display: inline-block;
  margin-bottom: 5px;
}
.c-menu__group.is-radio audio {
  width: 100%;
  margin-bottom: 5px;
  display: block;
}