@media screen and (max-width: 767px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 62.5%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  html {
    font-size: 0.6666666667vw;
  }
}
html * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: 0;
  color: #4d4d4d;
  font-family: "ShinMGoPro", "Yu Gothic", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.6;
  word-break: break-word;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 2.8rem;
    line-height: 2.7rem;
  }
}

@media screen and (max-width: 767px) {
  .hide__sp {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .hide__pc {
    display: none !important;
  }
}
img {
  height: auto;
  width: auto;
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
a:hover img {
  opacity: 0.7;
}

.figure-0 {
  margin: 0;
}

.font__italic {
  font-style: italic;
}
.font__thin {
  font-weight: 100;
}
.font__light {
  font-weight: 300;
}
.font__regular {
  font-weight: 400;
}
.font__medium {
  font-weight: 500;
}
.font__bold {
  font-weight: 700;
}
.font__black {
  font-weight: 900;
}
.font__shinmgopro {
  font-family: "ShinMGoPro";
}
.font__helvetica {
  font-family: "Helvetica";
}
.font__helveticaneue {
  font-family: "HelveticaNeue";
}

.container {
  width: 100%;
  padding-left: 5rem;
  padding-right: 5rem;
}
@media screen and (min-width: 768px) {
  .container {
    max-width: 120rem;
    margin-left: auto;
    margin-right: auto;
  }
  .container__lager {
    max-width: 118rem;
  }
  .container__mini {
    max-width: 91rem;
  }
}

.header-wrap {
  height: 9rem;
  padding: 0 3rem;
  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;
}
@media screen and (min-width: 768px) {
  .header-wrap {
    padding: 0 4rem;
  }
}

#logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#logo img {
  width: 24rem;
  margin-right: 2rem;
}
@media screen and (min-width: 768px) {
  #logo img {
    margin-right: 4rem;
  }
}
#logo strong {
  font-size: 1.4rem;
  line-height: 2.4rem;
  font-weight: bold;
  margin-top: 1rem;
  font-family: "PhosphorusSelenide";
}
@media screen and (min-width: 768px) {
  #logo strong {
    letter-spacing: 0.14em;
  }
}

.header-right {
  padding-right: 8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .header-right .btn {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .header-right .btn {
    display: block;
    width: 19rem;
    height: 4rem;
    font-size: 1.4rem;
    line-height: 4rem;
    text-align: center;
    color: #ffffff;
    background-color: #1b1464;
  }
}
@media screen and (min-width: 768px) {
  .header-right .btn + .btn {
    background-color: #3B7D23;
  }
}

#toggle-menu {
  position: absolute;
  top: 0;
  right: 0;
  height: 9rem;
  width: 12rem;
  margin: 0;
  padding: 0;
  background-color: #fff;
  border: none;
  text-indent: -100rem;
  display: block;
  overflow: hidden;
  cursor: pointer;
}
#toggle-menu::before, #toggle-menu::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6rem;
  height: 0.4rem;
  background-color: #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  #toggle-menu::before, #toggle-menu::after {
    height: 0.2rem;
  }
}
#toggle-menu::before {
  -webkit-transform: translate(-50%, -0.8rem);
          transform: translate(-50%, -0.8rem);
}
#toggle-menu::after {
  -webkit-transform: translate(-50%, 0.8rem);
          transform: translate(-50%, 0.8rem);
}
#toggle-menu:hover::before {
  -webkit-transform: translate(-50%, -0.9rem);
          transform: translate(-50%, -0.9rem);
}
#toggle-menu:hover::after {
  -webkit-transform: translate(-50%, 0.9rem);
          transform: translate(-50%, 0.9rem);
}

#menu {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(10rem);
          transform: translateY(10rem);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: fixed;
  bottom: 0;
  top: 9rem;
  left: 0;
  right: 0;
  background-color: #b2ced8;
  color: #fff;
  padding: 4.5rem 5.5rem;
}
@media screen and (min-width: 768px) {
  #menu .menu-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100rem;
    height: 100%;
    margin: 0 auto;
  }
  #menu .menu-wrap > div {
    width: 50%;
  }
}
#menu .menu-title {
  font-family: "Helvetica";
  font-weight: bold;
  font-size: 2.6rem;
  line-height: 4.5rem;
  letter-spacing: 0.455em;
}
@media screen and (max-width: 767px) {
  #menu .menu-title {
    margin-bottom: 11rem;
  }
}
#menu .menu-list {
  font-family: "ShinMGoPro";
  font-weight: 400;
  font-size: 3.507rem;
  line-height: 4.209rem;
  letter-spacing: 0.405em;
  margin-bottom: 6rem;
}
@media screen and (min-width: 768px) {
  #menu .menu-list {
    font-size: 2.6rem;
    line-height: 3.12rem;
  }
}
#menu .menu-list .sub-title {
  margin-bottom: 4rem;
}
#menu .menu-list .txt_sm {
  font-size: 2.158rem;
  line-height: 2.59rem;
  letter-spacing: 0.305em;
}
@media screen and (min-width: 768px) {
  #menu .menu-list .txt_sm {
    font-size: 1.6rem;
    line-height: 1.92rem;
  }
}
#menu .menu-list a {
  display: block;
  margin-bottom: 2rem;
}
#menu .menu-list a span {
  display: block;
  margin-top: 2rem;
}
#menu .menu-list a svg {
  height: 3.4rem;
  fill: #fff;
}
@media screen and (min-width: 768px) {
  #menu .menu-list a svg {
    height: 2.6rem;
  }
}

#fixed-button {
  height: 11rem;
}
#fixed-button .fixed-button-wrap {
  background-color: #fff;
  padding: 1rem;
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 9999;
}
@media screen and (min-width: 768px) {
  #fixed-button .fixed-button-wrap {
    display: none;
  }
}
#fixed-button .fixed-button-wrap a {
  display: block;
  font-size: 2.8rem;
  line-height: 9rem;
  letter-spacing: 0.14em;
  text-align: center;
  color: #ffffff;
  background-color: #1b1464;
}
#fixed-button .fixed-button-wrap a + a {
  background-color: #3B7D23;
  margin-top: 10px;
}

.open-menu {
  overflow: hidden;
}
.open-menu .header-wrap {
  z-index: 999;
  position: fixed;
  width: 100%;
  background-color: #fff;
}
.open-menu #toggle-menu::before {
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
}
.open-menu #toggle-menu::after {
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}
.open-menu #menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

#header-btn {
  display: block;
}
@media screen and (max-width: 767px) {
  #header-btn {
    height: 9rem;
    width: 12rem;
    overflow: hidden;
    position: absolute;
    right: 0;
    text-indent: -20rem;
  }
  #header-btn::before, #header-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6rem;
    height: 0.4rem;
    background-color: #000;
  }
  #header-btn::before {
    -webkit-transform: translate(-50%, -0.8rem);
            transform: translate(-50%, -0.8rem);
  }
  #header-btn::after {
    -webkit-transform: translate(-50%, 0.8rem);
            transform: translate(-50%, 0.8rem);
  }
}
@media screen and (min-width: 768px) {
  #header-btn {
    width: 19rem;
    height: 4rem;
    font-size: 1.4rem;
    line-height: 4rem;
    text-align: center;
    color: #ffffff;
    background-color: #1b1464;
  }
}

.top-main {
  position: relative;
}
.top-main > img {
  width: 100%;
}
.top-main .top-main-content {
  background-color: #f7f7f7;
  position: absolute;
  width: 50rem;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  padding: 2.5rem 0;
  color: #231815;
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .top-main .top-main-content {
    width: 46rem;
    font-size: 1.4rem;
    padding: 2.7rem 0;
    -webkit-transform: translate(-50%, -100%);
            transform: translate(-50%, -100%);
  }
}
.top-main .top-main-content h1 {
  margin: 0;
  line-height: 1;
}
.top-main .top-main-content strong {
  display: block;
  color: #474747;
  font-size: 4rem;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .top-main .top-main-content strong {
    font-size: 3.35rem;
    line-height: 4rem;
    margin-top: 1.5rem;
  }
}
.top-main .top-main-content .txt__en {
  font-family: "Helvetica";
  font-weight: 400;
  font-size: 2rem;
  letter-spacing: 0.3em;
  line-height: 2.4rem;
}
@media screen and (min-width: 768px) {
  .top-main .top-main-content .txt__en {
    font-size: 1.4rem;
    letter-spacing: 0.455em;
    line-height: 1.68rem;
  }
}
.top-main .top-main-content .txt__jp {
  font-weight: 500;
  font-size: 4rem;
  line-height: 4.8rem;
  letter-spacing: 0.005em;
}
@media screen and (min-width: 768px) {
  .top-main .top-main-content .txt__jp {
    font-size: 3.349rem;
    line-height: 4.018rem;
  }
}
.top-main .top-recruitment {
  width: 100%;
  position: absolute;
  bottom: 0;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
@media screen and (min-width: 768px) {
  .top-main .top-recruitment {
    bottom: -7.5rem;
    -webkit-transform: none;
            transform: none;
  }
}
.top-main .top-recruitment .recruitment {
  background-color: #f2f2f2;
  padding: 5rem;
}
@media screen and (min-width: 768px) {
  .top-main .top-recruitment .recruitment {
    padding-bottom: 10rem;
  }
}
.top-main .top-recruitment .recruitment .heading {
  margin-bottom: 4.5rem;
}
.top-main .top-recruitment .recruitment .heading .title {
  margin: 0;
  font-size: 3.2rem;
  letter-spacing: 0.115em;
  line-height: 3.84rem;
  color: #333333;
  margin-bottom: 2rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .top-main .top-recruitment .recruitment .heading .title {
    font-size: 2.81rem;
    line-height: 2.491rem;
    letter-spacing: 0.405rem;
  }
}
.top-main .top-recruitment .recruitment .heading .desc {
  font-size: 2.4rem;
  line-height: 2.88rem;
  letter-spacing: 0.115em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .top-main .top-recruitment .recruitment .heading .desc {
    font-size: 1.4rem;
    letter-spacing: 0.155rem;
    line-height: 1.68rem;
  }
}
.top-main .top-recruitment .recruitment .grid {
  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;
  margin-left: -3rem;
  margin-right: -3rem;
}
.top-main .top-recruitment .recruitment .grid .item {
  width: 24rem;
  height: 22.8rem;
  margin-left: 3rem;
  margin-right: 3rem;
}
@media screen and (min-width: 768px) {
  .top-main .top-recruitment .recruitment .grid .item {
    width: 40rem;
    height: 10rem;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }
}
.top-main .top-recruitment .recruitment .grid .item a {
  background-color: #ffffff;
  font-size: 3.2rem;
  letter-spacing: 0.405em;
  line-height: 3.84rem;
  color: inherit;
  text-decoration: none;
  width: 100%;
  height: 100%;
  text-align: center;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.top-main .top-recruitment .recruitment .grid .item a svg {
  height: 2.742rem;
  fill: #45d3ff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .top-main .top-recruitment .recruitment .grid .item a svg {
    margin: 0 auto;
    margin-bottom: 4.5rem;
    margin-top: auto;
  }
}
@media screen and (min-width: 768px) {
  .top-main .top-recruitment .recruitment .grid .item a svg {
    position: absolute;
    top: 50%;
    right: 1rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.top-main .top-recruitment .recruitment .grid .item a span {
  display: block;
}
@media screen and (max-width: 767px) {
  .top-main .top-recruitment .recruitment .grid .item a span {
    margin-top: 7rem;
  }
}
.top-main .top-recruitment .recruitment .grid .item a:hover {
  background-color: #45d3ff;
  color: #fff;
}
.top-main .top-recruitment .recruitment .grid .item a:hover svg {
  fill: #fff;
}

.meeting-section {
  padding-top: 30rem;
  margin-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .meeting-section {
    padding-top: 14.5rem;
  }
}

@media screen and (min-width: 768px) {
  #meeting {
    margin-bottom: 7rem;
  }
}
#meeting .meeting-box {
  display: block;
  background-color: #b2ced8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 0.5rem;
}
@media screen and (min-width: 768px) {
  #meeting .meeting-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#meeting .meeting-box:hover {
  background-color: #78bed8;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  #meeting .meeting-box img {
    width: 50.5rem;
  }
}
#meeting .meeting-box .meeting-txt {
  font-family: "ShinMGoPro";
  font-weight: 500;
  font-size: 3.2rem;
  letter-spacing: 0.405em;
  line-height: 3.84rem;
  display: block;
  text-align: center;
  padding: 2.5rem;
  color: #ffffff;
  position: relative;
}
@media screen and (min-width: 768px) {
  #meeting .meeting-box .meeting-txt {
    width: calc(100% - 50.5rem);
    padding: 0;
    padding-left: 8.5rem;
    text-align: left;
    font-size: 2.5rem;
    line-height: 3rem;
  }
}
#meeting .meeting-box .meeting-txt svg {
  fill: #fff;
  position: absolute;
  right: 4rem;
  height: 1em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.section-what {
  margin-bottom: 10rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .section-what {
    margin-bottom: 7rem;
  }
}

#what {
  border: 0.5rem solid #f2f2f2;
  position: relative;
  display: block;
}
@media screen and (max-width: 767px) {
  #what {
    padding-bottom: 3.5rem;
    padding-top: 5.5rem;
  }
}
@media screen and (min-width: 768px) {
  #what {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 768px) {
  #what .logo-img {
    width: 50.5rem;
    padding-top: 5.3rem;
    padding-bottom: 4.1rem;
  }
}
#what .logo-img img {
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #what .logo-img img {
    width: 22.134rem;
    margin-bottom: 5rem;
  }
}
@media screen and (min-width: 768px) {
  #what .logo-img img {
    width: 29.2rem;
  }
}
#what .detail {
  position: relative;
}
@media screen and (max-width: 767px) {
  #what .detail {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  #what .detail {
    width: calc(100% - 50.5rem);
    padding-left: 8.5rem;
  }
}
#what .detail .title {
  margin: 0;
  margin-bottom: 0.8rem;
  font-family: "HelveticaNeue";
  font-weight: 100;
  font-size: 3.2rem;
  letter-spacing: 0.405em;
  line-height: 3.84rem;
}
#what .detail .desc {
  margin: 0;
  font-family: "ShinMGoPro";
  font-weight: 500;
  font-size: 2.4rem;
  letter-spacing: 0.305em;
  line-height: 2.88rem;
}
#what svg {
  height: 2.742rem;
  position: absolute;
  right: 4rem;
  bottom: -0.5rem;
  fill: #45d3ff;
}
@media screen and (min-width: 768px) {
  #what svg {
    bottom: 50%;
    right: 5rem;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
  }
}

.voice-heading .voice-title {
  font-family: "HelveticaNeue";
  font-weight: 100;
  font-size: 3.6rem;
  letter-spacing: 0.455em;
  line-height: 4.32rem;
  margin: 0;
  margin-bottom: 2rem;
}
.voice-heading .voice-desc {
  margin: 0;
  font-size: 2.4rem;
  letter-spacing: 0.255em;
  line-height: 2.88rem;
}

.section-voice {
  margin-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .section-voice {
    background-color: #f2f2f2;
  }
}
@media screen and (min-width: 768px) {
  .section-voice {
    margin-bottom: 7rem;
  }
}
.section-voice-page {
  background-color: #f2f2f2;
}
.section-voice .voice-wrap {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .section-voice .voice-wrap {
    background-color: #f2f2f2;
    padding: 3.5rem 3.8rem;
  }
}
.section-voice .voice-heading {
  margin-bottom: 5.5rem;
}
.section-voice .voice-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -1rem;
  margin-right: -1rem;
}
@media screen and (min-width: 768px) {
  .section-voice .voice-grid {
    margin-left: 6rem;
    margin-right: 6rem;
  }
}
.section-voice .voice-grid .item {
  width: 50%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .section-voice .voice-grid .item {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
    margin-bottom: 3.88rem;
  }
}
.section-voice .voice-grid .item .item-box {
  background-color: #fff;
  height: 100%;
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .section-voice .voice-grid .item .item-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.section-voice .voice-grid .item .item-box .thumbnail img {
  width: 100%;
}
.section-voice .voice-grid .item .item-box .detail {
  padding: 2.5rem 3rem;
  padding-right: 2rem;
  font-family: "ShinMGoPro";
  font-weight: 500;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .section-voice .voice-grid .item .item-box .detail {
    position: relative;
    height: inherit;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.section-voice .voice-grid .item .item-box .detail .desc {
  font-size: 2rem;
  letter-spacing: 0.24em;
  line-height: 3.15rem;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .section-voice .voice-grid .item .item-box .detail .desc {
    font-size: 1.2rem;
    line-height: 2.25rem;
    letter-spacing: 0.255em;
  }
}
@media screen and (max-width: 767px) {
  .section-voice .voice-grid .item .item-box .detail .desc .more {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .section-voice .voice-grid .item .item-box .detail .desc .more {
    display: block;
  }
}
.section-voice .voice-grid .item .item-box .detail .title {
  margin: 0;
  font-weight: 500;
  font-size: 2.8rem;
  letter-spacing: 0.255em;
  line-height: 3.36rem;
}
@media screen and (max-width: 767px) {
  .section-voice .voice-grid .item .item-box .detail .title {
    position: relative;
    margin-top: auto;
  }
}
@media screen and (min-width: 768px) {
  .section-voice .voice-grid .item .item-box .detail .title {
    font-size: 1.8rem;
    letter-spacing: 0.255em;
    line-height: 2.16rem;
    margin-bottom: 3rem;
    margin-top: auto;
  }
}
.section-voice .voice-grid .item .item-box .detail .title::after {
  content: "";
  background-image: url(../img/common/icon-arrow-right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right center;
  width: 8.2rem;
  height: 1.6rem;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .section-voice .voice-grid .item .item-box .detail .title::after {
    top: auto;
    -webkit-transform: none;
            transform: none;
    bottom: 2.3rem;
    right: 2.75rem;
  }
}
.section-voice .voice-grid .item .item-box .detail .career {
  font-size: 2.4rem;
  letter-spacing: 0.025em;
  line-height: 2.88rem;
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .section-voice .voice-grid .item .item-box .detail .career {
    font-size: 2.081rem;
    letter-spacing: 0.305em;
    line-height: 2.497rem;
  }
}
.section-voice .voice-grid .item .item-box .detail .career img {
  width: 2.4rem;
  height: 2.058rem;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .section-voice .voice-grid .item .item-box .detail .career img {
    position: absolute;
    bottom: 2.59rem;
    right: 2.75rem;
  }
}
.section-voice .voice-grid .item .item-box .detail .things {
  font-size: 2rem;
  letter-spacing: 0.14em;
  line-height: 3.15rem;
}
@media screen and (min-width: 768px) {
  .section-voice .voice-grid .item .item-box .detail .things {
    font-size: 1.4rem;
    letter-spacing: 0.255em;
    line-height: 2.25rem;
  }
}

.page-heading {
  background-color: #f2f2f2;
}
.page-heading .voice-heading {
  padding: 4rem 7.85rem 3.66rem;
}
@media screen and (min-width: 768px) {
  .page-heading .voice-heading {
    padding: 5rem 13rem 2.5rem;
  }
}

.voice-container {
  max-width: 101rem;
  margin: 0 auto;
  padding-left: 5rem;
  padding-right: 5rem;
}

.voice-main {
  position: relative;
}
.voice-main img {
  width: 100%;
}
.voice-main .voice-container {
  position: relative;
}
.voice-main .main-group {
  margin-top: -8rem;
}
@media screen and (min-width: 768px) {
  .voice-main .main-group {
    position: absolute;
    bottom: -2rem;
    width: 42rem;
    height: 19rem;
    left: -8rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 5rem;
    padding-left: 3.16rem;
    background-color: #b2ced8;
  }
}
.voice-main .main-group .main-title {
  margin: 0;
  font-family: "ShinMGoPro";
  font-size: 3.2rem;
  letter-spacing: 0.405em;
  line-height: 3.84rem;
  padding: 2.45rem 6.05rem 1.25rem 5rem;
  display: inline-block;
  background-color: #b2ced8;
  height: 8rem;
}
@media screen and (min-width: 768px) {
  .voice-main .main-group .main-title {
    height: auto;
    font-size: 2.081rem;
    line-height: 2.497rem;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding: 0;
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .voice-main .main-group .main-title {
    margin-left: -5rem;
  }
}
.voice-main .main-group .main-desc {
  background-color: #b2ced8;
  font-family: "ShinMGoPro";
  font-size: 2.4rem;
  letter-spacing: 0.255em;
  line-height: 4rem;
}
@media screen and (max-width: 767px) {
  .voice-main .main-group .main-desc {
    margin-left: -5rem;
    margin-right: -5rem;
    padding: 5rem 5rem;
  }
}
@media screen and (min-width: 768px) {
  .voice-main .main-group .main-desc {
    padding: 0;
    font-size: 1.2rem;
    line-height: 2.25rem;
    margin-bottom: 2rem;
  }
}

.section-voice-content {
  font-size: 2rem;
  padding: 4.5rem 5rem;
  letter-spacing: 0.175em;
  line-height: 4rem;
  font-family: "HiraMaruProN-W4";
}
@media screen and (min-width: 768px) {
  .section-voice-content {
    background-color: #b2ced8;
    padding-top: 12rem;
    padding-bottom: 5rem;
    font-size: 1.4rem;
    letter-spacing: 0.2em;
    line-height: 3rem;
  }
}
.section-voice-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .section-voice-content ul {
    width: 78rem;
    margin: 0 auto;
  }
}

.section-content {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
}
@media screen and (min-width: 768px) {
  .section-content {
    padding-top: 14rem;
    padding-bottom: 18rem;
  }
}
.section-content .img-others {
  margin-top: 10rem;
}

#voice-content .item:first-child {
  margin-top: 0;
}
#voice-content .item + .item {
  margin-top: 10rem;
}
#voice-content h2 {
  height: 20rem;
  width: 100%;
  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;
  border: 0.5rem solid #deeff2;
  margin-top: 0;
  margin-bottom: 6.5rem;
  font-size: 2.8rem;
  letter-spacing: 0.345em;
  line-height: 2.91rem;
}
@media screen and (min-width: 768px) {
  #voice-content h2 {
    height: 11rem;
    font-size: 2.18rem;
    letter-spacing: 0.205em;
  }
}
#voice-content h3 {
  font-size: 3.2rem;
  letter-spacing: 0.2em;
  line-height: 5.2rem;
  margin-top: 0;
  margin-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  #voice-content h3 {
    font-size: 2.2rem;
    letter-spacing: 0.305em;
    line-height: 2.64rem;
  }
}
#voice-content p {
  font-size: 2.8rem;
  letter-spacing: 0.2em;
  line-height: 4.7rem;
  margin-top: 0;
  margin-bottom: 5rem;
  font-family: "HiraMaruProN-W4";
}
#voice-content p:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  #voice-content p {
    font-size: 1.4rem;
    letter-spacing: 0.2em;
    line-height: 3rem;
  }
}

.section-announcement .title {
  margin: 0;
  font-size: 3.2rem;
  letter-spacing: 0.115em;
  line-height: 3.84rem;
  color: #333333;
  margin-bottom: 2rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .section-announcement .title {
    font-size: 2.81rem;
    line-height: 2.491rem;
    letter-spacing: 0.405rem;
    margin-bottom: 4.5rem;
  }
}
.section-announcement .announcement-wrap {
  background-color: #f2f2f2;
  padding: 5rem;
}
.section-announcement .announcement-table-area .announcement-table {
  border-collapse: collapse;
  font-size: 3.2rem;
  text-align: center;
  width: 100%;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .section-announcement .announcement-table-area .announcement-table {
    font-size: 1.8rem;
    letter-spacing: 0.255em;
  }
}
@media screen and (max-width: 767px) {
  .section-announcement .announcement-table-area .announcement-table tr {
    display: block;
    float: left;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .section-announcement .announcement-table-area .announcement-table thead {
    display: block;
    float: left;
    width: 40%;
  }
}
@media screen and (max-width: 767px) {
  .section-announcement .announcement-table-area .announcement-table tbody {
    display: block;
    float: left;
    width: 60%;
  }
}
.section-announcement .announcement-table-area .announcement-table th {
  background: #1b1464;
  border: solid 1px #f2f2f2;
  color: #fff;
  font-weight: 400;
  padding: 1.5rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .section-announcement .announcement-table-area .announcement-table th {
    padding: 2.5rem 3rem;
  }
}
@media screen and (max-width: 767px) {
  .section-announcement .announcement-table-area .announcement-table th {
    display: block;
    height: 10.5rem;
  }
}
@media screen and (max-width: 767px) {
  .section-announcement .announcement-table-area .announcement-table th.lines2 {
    height: 15.5rem;
  }
}
.section-announcement .announcement-table-area .announcement-table td {
  background: #fff;
  border: solid 1px #f2f2f2;
  padding: 2.5rem 3rem;
}
@media screen and (max-width: 767px) {
  .section-announcement .announcement-table-area .announcement-table td {
    display: block;
    height: 10.5rem;
  }
}
@media screen and (max-width: 767px) {
  .section-announcement .announcement-table-area .announcement-table td.lines2 {
    height: 15.5rem;
  }
}
.section-announcement .announcement-table-area .note {
  font-size: 2.4rem;
  text-align: right;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .section-announcement .announcement-table-area .note {
    font-size: 1.2rem;
  }
}

.section-banner {
  padding-top: 10rem;
  padding-bottom: 10rem;
}
@media screen and (min-width: 768px) {
  .section-banner {
    padding-top: 9rem;
    padding-bottom: 11rem;
  }
}
.section-banner .banner-footer {
  position: relative;
  width: 65rem;
  height: 24rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .section-banner .banner-footer {
    width: 87rem;
    height: 27rem;
  }
}
.section-banner .banner-footer img {
  margin: 0 auto;
}
.section-banner .banner-footer .coming {
  margin: 0;
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  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;
  color: #fff;
  font-size: 1em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .section-banner .banner-footer .coming {
    font-size: 4rem;
  }
}

.section-registration {
  background-color: #b2ced8;
  padding-top: 10rem;
  padding-bottom: 10rem;
}
@media screen and (min-width: 768px) {
  .section-registration {
    padding-top: 11.5rem;
    padding-bottom: 11.5rem;
  }
}
.section-registration .career-registration a {
  display: block;
  position: relative;
  background-color: #1b1464;
  color: #fff;
  font-family: "ShinMGoPro";
  font-weight: 500;
  font-size: 3.6rem;
  letter-spacing: 0.305em;
  line-height: 4.32rem;
  text-align: center;
  padding-top: 6rem;
  padding-bottom: 4.5rem;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.section-registration .career-registration a:hover {
  -webkit-box-shadow: 1px 1px 10px #1b1464;
          box-shadow: 1px 1px 10px #1b1464;
}
@media screen and (min-width: 768px) {
  .section-registration .career-registration a {
    font-size: 2.043rem;
    line-height: 2.451rem;
    width: 53rem;
    height: 16rem;
    margin: 0 auto;
    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;
    position: relative;
    padding-top: 4rem;
  }
}
.section-registration .career-registration a svg {
  content: "";
  height: 1em;
  fill: #fff;
  display: block;
  margin: 0 auto;
  margin-top: 3.5rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .section-registration .career-registration a svg {
    position: absolute;
    right: 3rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    margin: 0;
  }
}
.section-registration .career-registration a:hover {
  text-decoration: none;
}
.section-registration .career-registration a:hover::after {
  -webkit-transform: translateX(1rem);
          transform: translateX(1rem);
}
@media screen and (min-width: 768px) {
  .section-registration .career-registration a:hover::after {
    -webkit-transform: translateX(1rem) translateY(-50%);
            transform: translateX(1rem) translateY(-50%);
  }
}
.section-registration .career-registration + .career-registration a {
  background-color: #3B7D23;
}
@media screen and (max-width: 767px) {
  .section-registration .career-registration + .career-registration a {
    margin-top: 20px;
  }
}
.section-registration .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .section-registration .container {
    display: block;
  }
}

footer {
  padding-top: 10rem;
}
@media screen and (min-width: 768px) {
  footer {
    padding-top: 2.5rem;
  }
}

#menu-footer {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 768px) {
  #menu-footer {
    text-align: right;
    padding: 0 6rem;
  }
}
#menu-footer li {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  #menu-footer li {
    display: inline-block;
    margin-right: 3rem;
  }
}
#menu-footer li a {
  display: block;
  text-align: center;
  position: relative;
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  #menu-footer li a {
    font-size: 1.4rem;
  }
}
#menu-footer li a svg {
  height: 2rem;
}
@media screen and (min-width: 768px) {
  #menu-footer li a svg {
    height: 1.4rem;
  }
}
#menu-footer li a::before {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-bottom: 1px solid;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#menu-footer li a:hover {
  text-decoration: none;
}
#menu-footer li a:hover::before {
  width: 100%;
}

#logo-footer {
  display: block;
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 1rem;
}
#logo-footer img {
  width: 21rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  #logo-footer img {
    width: 27.6rem;
  }
}

#copyright {
  font-size: 2.4rem;
  text-align: center;
  font-family: "HelveticaNeue";
  font-weight: 100;
  letter-spacing: 0.255em;
  padding: 1.5rem;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  #copyright {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 767px) {
  #copyright span {
    font-size: 1.8rem;
    display: block;
  }
}

.justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}