@charset "UTF-8";
/* ============================================ */
/* information
/* ============================================ */
body {
  background-color: #F1F1F1;
}

.sub-mainview .title-area .page-title p {
  font-size: 52px;
  margin: 0;
}
.sub-mainview .visual-area {
  background-image: url(../img/information/mv.jpg);
}
.sub-mainview .visual-area::before {
  background: #F1F1F1;
}

@media screen and (max-width: 768px) {
  .sub-mainview .title-area .page-title p {
    font-size: 42px;
  }
}
@media screen and (max-width: 600px) {
  .sub-mainview .title-area .page-title p {
    font-size: 32px;
  }
}
/* ===== 共通 ===== */
/* 見出し */
.g-title {
  margin: 0 0 50px;
}
.g-title .jp {
  position: relative;
  display: inline-block;
  color: #008cd6;
  font-size: 30px;
  font-weight: 500;
  padding: 0 0 10px;
  border-bottom: solid 1px #008cd6;
}

/* 注釈 */
.kome {
  position: relative;
}
.kome:before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (min-width: 1290px) {
  .g-title .jp::after {
    width: calc(100% + (100vw - 1030px) / 2);
  }
}
@media screen and (max-width: 768px) {
  .g-title .jp {
    font-size: 22px;
    padding-right: 15px;
  }
  .g-title .jp::after {
    bottom: -10px;
  }
}
@media screen and (max-width: 600px) {
  .g-title {
    margin: 0 0 30px;
  }
  .g-title .jp {
    font-size: 18px;
  }
}
/* ===== recruitment ===== */
#recruitment {
  position: relative;
  margin: 150px 0;
}
#recruitment .section {
  width: calc(100% - 250px);
  transition: transform 0.4s ease;
}
#recruitment .section .section-title {
  color: #fff;
  width: 110px;
  padding: 35px;
  cursor: pointer;
}
#recruitment .section .section-title .type {
  display: flex;
  justify-content: center;
  margin-bottom: 75px;
}
#recruitment .section .section-title .type p {
  font-size: 24px;
  font-weight: 600;
  writing-mode: vertical-rl;
}
#recruitment #newgrads {
  position: absolute;
  top: 0;
  right: 0;
}
#recruitment #newgrads .section-title {
  background-color: #008cd6;
  border-radius: 25px 0 0 25px;
  position: absolute;
  top: 0;
  left: -110px;
}
#recruitment #career {
  position: absolute;
  top: 0;
  left: 0;
}
#recruitment #career .section-title {
  background-color: #ef7c00;
  border-radius: 0 25px 25px 0;
  position: absolute;
  top: 0;
  right: -110px;
}

@media screen and (max-width: 1024px) {
  #recruitment .section {
    width: calc(100% - 130px);
  }
  #recruitment .section .section-title {
    width: 52px;
    padding: 25px 10px;
  }
  #recruitment .section .section-title .type {
    margin-bottom: 30px;
  }
  #recruitment .section .section-title .type p {
    font-size: 18px;
  }
  #recruitment #newgrads .section-title {
    left: -52px;
  }
  #recruitment #career .section-title {
    right: -52px;
  }
}
@media screen and (max-width: 768px) {
  #recruitment {
    margin: 120px 0;
  }
}
@media screen and (max-width: 600px) {
  #recruitment {
    margin: 80px 0;
  }
  #recruitment .section {
    width: calc(100% - 85px);
  }
  #recruitment .section .section-title {
    width: 38px;
    padding: 25px 6px;
  }
  #recruitment .section .section-title .type p {
    font-size: 14px;
  }
  #recruitment #newgrads .section-title {
    left: -38px;
    border-radius: 12px 0 0 12px;
  }
  #recruitment #career .section-title {
    right: -38px;
    border-radius: 0 12px 12px 0;
  }
}
/* コンテンツ切替 */
.move-right {
  transform: translateX(100%);
}
.move-right.is-show {
  transform: translateX(0);
}

.move-left {
  transform: translateX(-100%);
}
.move-left.is-show {
  transform: translateX(0);
}

/* ボタン表示切替 */
.switch {
  display: block;
  text-align: center;
}
.switch:before {
  display: block;
  width: 35px;
  transition: transform 0.3s;
  margin: 0 auto 5px;
}
.switch:after {
  content: "Open";
  display: block;
  font-size: 14px;
  font-weight: 800;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  word-break: break-all;
  line-height: 1;
  letter-spacing: 0.5px;
  transition: transform 0.3s;
}

#newgrads .switch:before {
  content: url("../img/information/icon-arrow02.svg");
}

#career .switch:before {
  content: url("../img/information/icon-arrow01.svg");
}

.section.is-show .switch:before {
  transform: scale(-1, 1);
}
.section.is-show .switch:after {
  content: "Close";
}

@media screen and (max-width: 1024px) {
  .switch:before {
    width: 25px;
  }
  .switch:after {
    font-size: 9px;
  }
}
@media screen and (max-width: 600px) {
  .switch:after {
    font-size: 8px;
  }
}
/* テーブル */
.table-wrap {
  background-color: #fff;
  padding: 80px;
}
.table-wrap .g-table {
  width: 100%;
  max-width: 850px;
  margin: auto;
}
.table-wrap .g-table tr + tr {
  border-top: dashed 1px #8e8e8e;
}
.table-wrap .g-table th,
.table-wrap .g-table td {
  padding: 15px;
  font-size: 16px;
  line-height: 1.8;
}
.table-wrap .g-table th {
  width: 160px;
  font-weight: 600;
}
.table-wrap .g-table a {
  text-decoration: underline;
  display: inline;
}
.table-wrap .g-table .tb-item {
  display: inline-block;
}
.table-wrap .g-table .kome {
  padding-left: 20px;
  display: inline-block;
}

#recruitment #newgrads .table-wrap {
  border-radius: 0 0 0 25px;
}

#recruitment #career .table-wrap {
  border-radius: 0 0 25px 0;
}

@media (hover: hover) {
  .table-wrap .g-table a:hover {
    text-decoration: none;
  }
}
@media screen and (max-width: 768px) {
  .table-wrap {
    padding: 50px;
  }
  .table-wrap .g-table tr {
    display: block;
  }
  .table-wrap .g-table tr:first-of-type th {
    padding-top: 0;
  }
  .table-wrap .g-table th,
  .table-wrap .g-table td {
    display: block;
    width: 100%;
    font-size: 14px;
  }
  .table-wrap .g-table th {
    padding: 20px 10px 0;
  }
  .table-wrap .g-table td {
    padding: 10px 10px 20px;
  }
  .table-wrap .g-table .kome {
    padding-left: 15px;
  }
}
@media screen and (max-width: 600px) {
  .table-wrap {
    padding: 20px 5% 30px;
  }
  .table-wrap .g-table tr:first-of-type th {
    padding: 0;
  }
  .table-wrap .g-table th {
    padding: 15px 0 0;
  }
  .table-wrap .g-table td {
    padding: 10px 0 15px;
    font-size: 13px;
  }
  #recruitment #newgrads .table-wrap {
    border-radius: 0 0 0 12px;
  }
  #recruitment #career .table-wrap {
    border-radius: 0 0 12px 0;
  }
}
/* ===== Flow ===== */
.flow {
  margin-top: 150px;
}
.flow .img-box {
  max-width: 1000px;
  width: 100%;
  padding-bottom: 20px;
}
.flow .box {
  background-color: #fff;
  padding: 70px;
  border-radius: 25px;
  font-size: 16px;
  line-height: 1.8;
  margin-top: 30px;
}
.flow .box .title {
  color: #008cd6;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 25px;
}
.flow .in-box {
  background-color: #f1f1f1;
  padding: 50px;
  border-radius: 25px;
  margin: 65px 0 30px;
}
.flow .in-box .title {
  color: #008cd6;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 25px;
}
.flow .in-box .title-small {
  color: #008cd6;
  font-size: 18px;
  font-weight: 500;
  margin: 30px 0 15px;
}
.flow .btn-wrap {
  margin-top: 40px;
  justify-content: flex-start;
}
.flow .btn-wrap .round-btn + .round-btn {
  margin: 0 0 0 30px;
}
.flow .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 5px 0;
  margin-bottom: 25px;
}
.flow .list li {
  width: 45%;
}
.flow .kome {
  font-size: 14px;
  padding-left: 20px;
}

#career .flow .btn-wrap .round-btn:first-of-type {
  max-width: 450px;
}
#career .flow .btn-wrap .round-btn:first-of-type a {
  padding: 15px 20px;
}
#career .flow .btn-wrap .round-btn:first-of-type a .tb {
  display: inline-block;
  line-height: 1.5;
  padding: 0 40px 0 0;
}
#career .flow .btn-wrap .round-btn:first-of-type a .tb::after {
  width: 30px;
  height: 30px;
  background-image: url(../img/information/icon-tel.svg);
}
#career .flow .btn-wrap .round-btn:first-of-type a .tb br:first-of-type {
  display: none;
}
#career .flow .btn-wrap .round-btn:last-of-type a {
  padding: 26px 20px;
}

@media (hover: hover) {
  #career .flow .btn-wrap .round-btn:first-of-type a:hover .tb::after {
    background-image: url(../img/information/icon-tel-hover.svg);
  }
}
@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
@media screen and (max-width: 1024px) {
  .flow .box {
    padding: 70px 50px;
  }
  #career .flow .btn-wrap .round-btn:first-of-type {
    max-width: 400px;
  }
  #career .flow .btn-wrap .round-btn:last-of-type {
    max-width: 220px;
  }
}
@media screen and (max-width: 768px) {
  .flow {
    margin-top: 80px;
  }
  .flow .inner {
    margin: 0 auto 0 0;
  }
  .flow .img-box {
    width: 160%;
  }
  .flow .box {
    padding: 30px;
    font-size: 14px;
  }
  .flow .box .title {
    font-size: 22px;
  }
  .flow .in-box {
    padding: 30px;
    margin: 25px 0;
  }
  .flow .in-box .title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .flow .in-box .title-small {
    font-size: 12px;
    margin: 20px 0 5px;
  }
  .flow .btn-wrap {
    margin-top: 25px;
  }
  .flow .btn-wrap .round-btn + .round-btn {
    margin: 15px 0 0;
  }
  .flow .list {
    margin-bottom: 15px;
  }
  .flow .list li {
    width: 100%;
  }
  .flow .kome {
    font-size: 12px;
    padding-left: 15px;
  }
  #career .flow .inner {
    margin: 0 0 0 auto;
  }
  #career .flow .btn-wrap .round-btn:last-of-type a {
    padding: 10px 20px;
  }
}
@media screen and (max-width: 600px) {
  .flow {
    margin-top: 50px;
  }
  .flow .inner {
    width: 95%;
  }
  .flow .img-box {
    width: 235%;
  }
  .flow .box {
    padding: 20px 5% 30px;
    border-radius: 12px;
    font-size: 13px;
  }
  .flow .box .title {
    font-size: 16px;
    line-height: 1.5;
  }
  .flow .box .title br {
    display: none;
  }
  .flow .in-box {
    padding: 20px;
    margin: 30px 0;
    border-radius: 12px;
  }
  .flow .in-box .title {
    font-size: 15px;
  }
  .flow .btn-wrap .round-btn {
    max-width: 100% !important;
  }
  .flow .btn-wrap .round-btn + .round-btn {
    margin: 15px 0 0;
  }
  #career .flow .btn-wrap .round-btn:first-of-type a {
    padding: 10px 20px;
    border-radius: 35px;
  }
  #career .flow .btn-wrap .round-btn:first-of-type a .tb {
    padding: 0 20px 0 0;
  }
  #career .flow .btn-wrap .round-btn:first-of-type a .tb::after {
    width: 25px;
    height: 25px;
  }
  #career .flow .btn-wrap .round-btn:first-of-type a .tb br:first-of-type {
    display: block;
  }
}
/* ===== FAQ ===== */
#faq {
  margin: 120px 0 200px;
}
#faq .ac-item {
  position: relative;
  background-color: #fff;
  padding: 25px 50px 25px 75px;
  border-radius: 25px;
  cursor: pointer;
}
#faq .ac-item + .ac-item {
  margin-top: 10px;
}
#faq .ac-item:after {
  content: "Open";
  position: absolute;
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
  color: #008cd6;
  font-size: 14px;
  font-weight: 800;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  word-break: break-all;
  line-height: 1;
  letter-spacing: 1px;
  text-align: right;
  width: 80px;
}
#faq .ac-item .ac-title,
#faq .ac-item .ac-detail {
  position: relative;
  font-size: 16px;
  line-height: 1.8;
}
#faq .ac-item .ac-title {
  padding: 0 80px 0 50px;
  font-weight: 400;
}
#faq .ac-item .ac-title:before {
  content: "Q.";
  position: absolute;
  top: 0;
  left: 0;
  color: #008cd6;
  font-size: 28px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
  word-break: break-all;
  line-height: 1;
}
#faq .ac-item .ac-detail {
  padding: 25px 80px 0 50px;
  display: none;
}
#faq .ac-item .ac-detail:before {
  content: "A.";
  position: absolute;
  top: 25px;
  left: 0;
  color: #EF7C00;
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
}
#faq .ac-item.open:after {
  content: "Close";
}

@media screen and (max-width: 768px) {
  #faq {
    margin: 80px 0 150px;
  }
  #faq .ac-item {
    padding: 25px 30px;
  }
  #faq .ac-item:after {
    right: 30px;
    font-size: 12px;
    width: 55px;
  }
  #faq .ac-item .ac-title,
  #faq .ac-item .ac-detail {
    font-size: 14px;
  }
  #faq .ac-item .ac-title {
    padding: 0 55px 0 40px;
  }
  #faq .ac-item .ac-title:before {
    font-size: 24px;
  }
  #faq .ac-item .ac-detail {
    padding: 25px 55px 0 40px;
  }
  #faq .ac-item .ac-detail:before {
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  #main {
    overflow-x: visible;
  }
  #faq {
    margin: 80px 0 120px;
  }
  #faq .ac-item {
    padding: 15px 5%;
    border-radius: 12px;
  }
  #faq .ac-item:after {
    right: 5%;
  }
  #faq .ac-item .ac-title {
    padding: 0 50px 0 30px;
  }
  #faq .ac-item .ac-title:before {
    font-size: 20px;
  }
  #faq .ac-item .ac-detail {
    padding: 25px 50px 0 30px;
    font-size: 13px;
  }
  #faq .ac-item .ac-detail:before {
    font-size: 20px;
  }
}

/*# sourceMappingURL=information.css.map */