@charset "UTF-8";
/*====================================================================

layout

====================================================================*/
/*
contents
---------------------------------------------------------*/
.l-section01 {
  background: url(/recruit/img/common/bg01.jpg) top left/cover;
  position: relative;
}
.l-section01::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 255px;
  height: 255px;
  background: no-repeat url(/recruit/img/common/bg01_ornament.png) center/cover;
}
@media screen and (max-width: 960px) {
  .l-section01 {
    background: url(/recruit/img/common/bg01_sp.jpg) top left/cover;
  }
  .l-section01::before {
    width: 160px;
    height: 160px;
  }
}

/*
container
---------------------------------------------------------*/
.l-container {
  max-width: 1750px;
  margin: 0 auto;
  padding: 0 50px;
}
@media screen and (max-width: 1240px) {
  .l-container {
    padding: 0 20px;
  }
}

/*
flex
---------------------------------------------------------*/
.l-row {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}
.l-row--reverse {
  flex-direction: row-reverse;
}
.l-row--nowarap {
  flex-wrap: nowrap;
}
.l-row--justfycenter {
  justify-content: center;
}
.l-row--aligncenter {
  align-items: center;
}
.l-row--between {
  justify-content: space-between;
}

.l-col2 {
  width: calc((100% - 60px) / 12 * 2);
}

.l-col3 {
  width: calc((100% - 120px) / 12 * 3);
}

.l-col4 {
  width: calc((100% - 120px) / 12 * 4);
}

.l-col5 {
  width: calc((100% - 60px) / 12 * 5);
}

.l-col6 {
  width: calc((100% - 60px) / 2);
}

.l-col7 {
  width: calc((100% - 60px) / 12 * 7);
}

.l-col8 {
  width: calc((100% - 60px) / 12 * 8);
}

.l-col9 {
  width: calc((100% - 60px) / 12 * 9);
}

.l-col10 {
  width: calc((100% - 60px) / 12 * 10);
}

.l-flex {
  flex: 1;
}

@media screen and (max-width: 960px) {
  .l-row {
    gap: 30px;
  }
  .l-col2, .l-col3, .l-col4, .l-col5, .l-col6, .l-col7, .l-col8, .l-col9, .l-col10 {
    width: 100%;
  }
  .l-flex {
    flex: auto;
  }
}
/*
header
---------------------------------------------------------*/
#header {
  position: fixed;
  width: 100%;
  height: 100px;
  transition: height 0.3s;
  z-index: 999;
}
@media screen and (max-width: 960px) {
  #header {
    position: relative;
    height: 60px;
  }
}

/* header */
.l-header {
  display: flex;
  height: 100px;
  transition: height 0.3s;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  background-color: #fff;
}
.l-header__logo {
  line-height: 1;
  display: flex;
  flex-direction: column;
  gap: 10px 20px;
}
.l-header__logo a {
  display: block;
  line-height: 1;
  text-decoration: none;
}
.l-header__logo img {
  width: 210px;
}
.l-header__logo .c-en {
  margin: 0;
  font-size: 1rem;
}
@media screen and (max-width: 1750px) {
  .l-header__logo img {
    width: 190px;
  }
  .l-header__logo .c-en {
    font-size: 1rem;
  }
}
@media screen and (max-width: 1240px) {
  .l-header__logo img {
    width: 150px;
  }
}
@media screen and (max-width: 960px) {
  .l-header {
    width: 100%;
    height: 60px;
    box-shadow: none;
    padding: 0 0 0 20px;
  }
  .l-header__logo {
    gap: 5px 10px;
    flex-direction: row;
    align-items: center;
  }
  .l-header__logo img {
    width: 135px;
  }
  .l-header__logo .c-en {
    font-size: 0.75rem;
  }
  .l-header__navarea {
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 9;
    height: 100vh;
    width: 100%;
    visibility: hidden;
    padding-top: 60px;
    transition: 0.4s;
    background-color: #206aad;
  }
  .l-header__navarea.-active {
    right: 0;
    visibility: visible;
    overflow-y: auto;
  }
}

/* hamburger */
.l-hamburger {
  display: none;
}
@media screen and (max-width: 960px) {
  .l-hamburger {
    display: block;
    height: 60px;
    width: 60px;
    margin-left: auto;
    position: fixed;
    z-index: 10;
    border: none;
    background-color: #206aad;
    top: 0;
    right: 0;
    cursor: pointer;
  }
  .l-hamburger.-active .l-hamburger__line {
    background-color: transparent;
  }
  .l-hamburger.-active .l-hamburger__line::before {
    top: 0;
    transform: rotate(45deg);
  }
  .l-hamburger.-active .l-hamburger__line::after {
    top: 0;
    transform: rotate(-45deg);
  }
  .l-hamburger.-active .l-hamburger__text::before {
    content: "閉じる";
  }
  .l-hamburger__line {
    display: block;
    height: 2px;
    position: absolute;
    top: 23px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    background-color: #fff;
    transition: 0.4s;
  }
  .l-hamburger__line::before, .l-hamburger__line::after {
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;
    background-color: #fff;
    transition: inherit;
  }
  .l-hamburger__line::before {
    top: -6px;
  }
  .l-hamburger__line::after {
    top: 6px;
  }
  .l-hamburger__text {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
  }
  .l-hamburger__text::before {
    content: "メニュー";
    text-align: center;
    color: #fff;
    font-size: 10px;
    font-weight: 900;
  }
}

/* gnav */
.l-gnav {
  display: flex;
  gap: 10px 40px;
  align-items: center;
}
.l-gnav ul li {
  padding: 0;
  line-height: 1.3;
}
.l-gnav ul li::before {
  display: none;
}
.l-gnav__list {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 0 30px;
  margin: 0;
}
.l-gnav__list__item {
  margin: 0;
}
.l-gnav__list__item .link {
  font-weight: 500;
  text-decoration: none;
  color: #4a4a4a;
  padding: 10px 0;
  transition: color 0.3s;
}
.l-gnav__list__item .link:hover, .l-gnav__list__item .link:focus {
  color: #206aad;
}
.is-top .l-header.is-dark-bg .l-gnav__list__item .link {
  color: #b4b4b4;
}
.is-top .l-header.is-dark-bg .l-gnav__list__item .link:hover, .is-top .l-header.is-dark-bg .l-gnav__list__item .link:focus {
  color: #206aad;
}
.l-gnav__list__item .icon {
  display: none;
}
.l-gnav__sublist {
  display: flex;
  gap: 10px;
  margin: 0;
}
.l-gnav__sublist li a {
  display: block;
  border-radius: calc(infinity * 1px);
  text-align: center;
  padding: 8px 15px;
  border: 1px solid #206aad;
  font-weight: 500;
  text-decoration: none;
  background-color: #fff;
  font-size: 0.875rem;
}
.l-gnav__sublist li.item01 a {
  background-color: #206aad;
  color: #fff;
}
.l-gnav__sublist li.item01 a:hover {
  background-color: #fff;
  color: #206aad;
}
.l-gnav__sublist li.item02 a:hover {
  background-color: #206aad;
  color: #fff;
}
@media screen and (max-width: 1750px) {
  .l-gnav {
    gap: 10px 20px;
  }
  .l-gnav__list__item .link {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 1240px) {
  .l-gnav {
    gap: 10px 20px;
  }
  .l-gnav__list {
    gap: 10px;
  }
  .l-gnav__list__item .link {
    font-size: 1rem;
  }
}
@media screen and (max-width: 960px) {
  .l-gnav {
    padding: 0 20px 120px 20px;
    flex-direction: column;
    overflow-y: auto;
  }
  .l-gnav__list {
    display: block;
    width: 100%;
  }
  .l-gnav__list__item {
    position: relative;
    border-bottom: 1px solid #fff;
    width: 100%;
  }
  .l-gnav__list__item .link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    padding: 20px 0;
    transition: color 0.4s;
    font-size: 1.125rem;
  }
  .l-gnav__list__item .link:hover {
    color: #fff;
  }
  .is-top .l-header.is-dark-bg .l-gnav__list__item .link {
    color: #fff;
  }
  .is-top .l-header.is-dark-bg .l-gnav__list__item .link:hover, .is-top .l-header.is-dark-bg .l-gnav__list__item .link:focus {
    color: #fff;
  }
  .l-gnav__list__item .icon {
    position: absolute;
    right: 0;
    top: 15px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s;
  }
  .l-gnav__list__item .icon.-active {
    transform: rotate(45deg);
    border: none;
  }
  .l-gnav__list__item:has(.l-accordion) .link::after {
    display: none;
  }
  .l-gnav__sublist {
    flex-direction: column;
    width: 100%;
    margin-top: 20px;
    gap: 10px;
  }
  .l-gnav__sublist li a {
    width: 100%;
    padding: 15px;
  }
  .l-gnav__sublist li.item01 a {
    background-color: #fff;
    color: #206aad;
  }
  .l-gnav__sublist li.item02 a:hover {
    background-color: #fff;
    color: #206aad;
  }
}

/* accordion */
.l-accordion {
  position: relative;
}
.l-accordion__list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  width: 300px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  top: 10px;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  z-index: 1;
  border-radius: 10px 10px 30px 10px;
  padding: 30px;
}
.l-accordion__list__item {
  margin: 0;
}
.l-accordion__list__item + .l-accordion__list__item {
  border-top: 1px solid #206aad;
}
.l-accordion__list__item a {
  display: block;
  padding: 10px 15px;
  color: #206aad;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  position: relative;
}
.l-accordion__list__item a::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: no-repeat url(/recruit/img/common/ico_right02.svg) center center/cover;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  transition: 0.3s;
}
@media screen and (max-width: 960px) {
  .l-accordion {
    height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: 0.4s;
    opacity: 0;
  }
  .l-accordion.-active {
    height: auto;
    visibility: visible;
    opacity: 1;
  }
  .l-accordion__list {
    position: relative;
    width: 100%;
    top: 0;
    opacity: 1;
    box-shadow: none;
    padding: 20px;
    box-shadow: none;
    top: 0;
    left: 0;
    opacity: 1;
    visibility: visible;
    transition: none;
    margin-bottom: 20px;
  }
  .l-accordion__list__item {
    margin: 0;
  }
  .l-accordion__list__item a {
    display: block;
    padding: 10px 15px;
    color: #206aad;
  }
}

/* ホバー＆フォーカスで子メニュー表示 */
/* Display sub menu by hover & focus */
nav .menu-item-has-children:hover ul,
nav .menu-item-has-children .l-accordion.focused ul {
  opacity: 1;
  visibility: visible;
}

nav li.menu-item-has-children li a:hover,
nav li.menu-item-has-children li a:focus {
  background-color: #d0e9ff;
}
nav li.menu-item-has-children li a:hover::after,
nav li.menu-item-has-children li a:focus::after {
  right: 5px;
}

#js-focus-trap {
  display: none;
}
@media screen and (max-width: 960px) {
  #js-focus-trap {
    display: block;
  }
}

/* js-scroll */
#header.js-scroll {
  height: 80px;
}
#header.js-scroll .l-header {
  height: 80px;
  background-color: #fff;
}
#header.js-scroll .l-gnav__list__item .link,
#header.js-scroll .l-header.is-dark-bg .l-gnav__list__item .link {
  color: #4a4a4a;
}
#header.js-scroll .l-gnav__list__item .link:hover,
#header.js-scroll .l-header.is-dark-bg .l-gnav__list__item .link:hover {
  color: #206aad;
}
@media screen and (max-width: 960px) {
  #header.js-scroll {
    height: 60px;
  }
  #header.js-scroll .l-header {
    height: 60px;
  }
}

/*
footer
---------------------------------------------------------*/
.l-footer {
  padding: 80px 30px;
}
.l-footer__message {
  font-size: 3.125rem;
  color: #206aad;
  font-weight: 500;
  margin: 0 0 50px;
}
.l-footer__link {
  display: flex;
  flex-direction: row-reverse;
}
.l-footer__link__list {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  flex: 1;
  justify-content: flex-end;
}
.l-footer__link__list a {
  color: #4a4a4a;
  text-decoration: none;
}
.l-footer__link__list a:hover {
  color: #206aad;
}
.l-footer__link__list .mainlink {
  margin: 0;
  font-weight: 500;
}
.l-footer__link__list .mainlink a::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: no-repeat url(/recruit/img/common/ico_right02.svg) center center/cover;
  position: relative;
  margin-left: 10px;
  top: 3px;
  transition: 0.3s;
}
.l-footer__link__list .mainlink a:hover::after {
  transform: translateX(5px);
}
.l-footer__link__list .sublink {
  margin: 5px 0 0;
}
.l-footer__link__list .sublink li {
  padding: 0;
  font-size: 1rem;
}
.l-footer__link__list .sublink li::before {
  display: none;
}
.l-footer__link__company {
  padding-right: 50px;
}
.l-footer__link__company a {
  text-decoration: none;
  color: #4a4a4a;
}
.l-footer__link__company .logo {
  display: flex;
  align-items: center;
  gap: 20px;
}
.l-footer__link__company .logo p {
  margin: 0;
}
.l-footer__link__company .logo img {
  width: 200px;
}
.l-footer__link__company .link {
  margin-top: 10px;
  font-size: 1.125rem;
}
.l-footer__link__company .link a:hover {
  color: #206aad;
}
.l-footer__bottom {
  margin-top: 70px;
  padding-top: 70px;
  border-top: 1px solid #ccc;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.l-footer__bottom .sublink {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.l-footer__bottom .sublink li {
  padding: 0;
  font-size: 1rem;
}
.l-footer__bottom .sublink li::before {
  display: none;
}
.l-footer__bottom .sublink li a {
  text-decoration: none;
  color: #4a4a4a;
}
.l-footer__bottom .sublink li a:hover {
  color: #206aad;
}
.l-footer__bottom .copyright small {
  font-size: 1rem;
}
@media screen and (max-width: 960px) {
  .l-footer {
    padding: 50px 20px;
  }
  .l-footer__message {
    font-size: 1.875rem;
    line-height: 1.5;
    border-bottom: 1px solid #ccc;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  .l-footer__link {
    flex-direction: column;
    gap: 30px;
  }
  .l-footer__link__list {
    gap: 30px;
    flex-direction: column;
  }
  .l-footer__link__list .item {
    border-bottom: 1px solid #ccc;
    padding-bottom: 30px;
  }
  .l-footer__link__list .item .mainlink {
    font-size: 1.125rem;
  }
  .l-footer__link__list .item .sublink li {
    font-size: 0.875rem;
  }
  .l-footer__link__company .logo {
    gap: 10px;
  }
  .l-footer__link__company .logo img {
    width: 150px;
  }
  .l-footer__link__company .logo .c-en {
    font-size: 0.875rem;
  }
  .l-footer__link__company .link {
    font-size: 0.875rem;
    margin: 5px 0 0;
  }
  .l-footer__link__company .link a::after {
    width: 12px !important;
    height: 12px !important;
  }
  .l-footer__bottom {
    margin-top: 15px;
    padding: 0;
    border: none;
    flex-direction: column;
    gap: 20px;
  }
  .l-footer__bottom .sublink {
    flex-direction: column;
    gap: 10px;
  }
  .l-footer__bottom .sublink li {
    font-size: 0.875rem;
  }
  .l-footer__bottom .sublink li a::after {
    width: 12px !important;
    height: 12px !important;
  }
  .l-footer__bottom .copyright small {
    font-size: 0.75rem;
  }
}

/* pagetop */
.l-pagetop {
  transition: 0.3s;
  opacity: 1;
}
.l-pagetop a {
  background: no-repeat url("/recruit/img/common/ico_pagetop.svg") center center/cover;
  width: 50px;
  height: 50px;
  display: block;
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 100;
  transition: 0.3s;
  border-radius: 50%;
  background-color: #206aad;
}
.l-pagetop a:hover {
  transform: translateY(-5px);
}
.l-pagetop.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s;
}
@media screen and (max-width: 960px) {
  .l-pagetop a {
    width: 30px;
    height: 30px;
  }
}

/*====================================================================

component

====================================================================*/
/*
btn
---------------------------------------------------------*/
/* btn01 */
.c-btn01 {
  position: relative;
  overflow: hidden;
  display: inline-block;
  border: 1px solid #206aad;
  color: #206aad;
  padding: 20px 50px 20px 30px;
  border-radius: calc(infinity * 1px);
  min-width: min(380px, 100%);
  text-decoration: none;
  background-color: #fff;
  font-weight: 500;
  text-align: left;
}
.c-btn01::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: no-repeat url("/recruit/img/common/ico_right02.svg") center center/cover;
  position: absolute !important;
  right: 20px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  transition: 0.3s;
}
.c-btn01:hover {
  background-color: #d0e9ff;
}
.c-btn01:hover::after {
  right: 15px !important;
}
.c-btn01--blank::after {
  background: no-repeat url("/recruit/img/common/ico_blank.svg") center center/cover;
}

/*
table
---------------------------------------------------------*/
table th {
  font-weight: 500;
}
table th > *:first-child, table td > *:first-child {
  margin-top: 0;
}
table th > *:last-child, table td > *:last-child {
  margin-bottom: 0;
}

/* table01 */
.c-table01 {
  width: 100%;
}
.c-table01 th, .c-table01 td {
  border-bottom: 1px solid #ccc;
  padding: 1em 0;
}
.c-table01 td {
  padding: 1em;
}
.c-table01__title {
  display: block;
  border-radius: 3px;
  background-color: #206aad;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .c-table01--spblock > tbody > tr > th, .c-table01--spblock > tbody > tr > td {
    display: block;
    width: 100%;
  }
  .c-table01--spblock > tbody > tr > th {
    border-bottom: none;
    padding-bottom: 0;
  }
  .c-table01--spblock > tbody > tr > td {
    padding: 1em 0;
  }
}

/* table02 */
.c-table02 {
  width: 100%;
}
.c-table02 th, .c-table02 td {
  border: 1px solid #ccc;
  padding: 0.75em;
  background-color: #fff;
}
.c-table02 th {
  color: #206aad;
}
.c-table02 thead th {
  background-color: #d0e9ff;
}

/* table03 */
.c-table03 {
  width: 100%;
}
.c-table03 th, .c-table03 td {
  border: 1px solid #ccc;
  padding: 0.5em;
  background-color: #fff;
}
.c-table03 th {
  color: #206aad;
  background-color: #e4f2ff;
}
@media screen and (max-width: 960px) {
  .c-table03 th, .c-table03 td {
    display: block;
    width: 100% !important;
  }
  .c-table03 td {
    margin: -1px 0 10px;
  }
}

/* scrolltbl */
@media screen and (max-width: 960px) {
  .c-scrolltbl {
    overflow-x: auto;
    word-wrap: normal;
    margin: 15px 0;
  }
  .c-scrolltbl::-webkit-scrollbar {
    height: 5px;
  }
  .c-scrolltbl::-webkit-scrollbar-track {
    background: #d5d5d5;
  }
  .c-scrolltbl::-webkit-scrollbar-thumb {
    background: #8a8a8a;
  }
  .c-scrolltbl.scrolling {
    position: relative;
    padding-top: 2em;
  }
  .c-scrolltbl.scrolling::before {
    content: "↔左右にスクロールできます";
    background-color: #8a8a8a;
    color: #fff;
    font-size: 0.875rem;
    font-weight: bold;
    padding: 2px 10px;
    position: absolute;
    left: 0;
    top: 0;
  }
  .c-scrolltbl table {
    table-layout: auto !important;
    margin: 0 0 5px;
  }
  .c-scrolltbl table th, .c-scrolltbl table td {
    min-width: 7em;
    display: table-cell;
  }
}
/*
title
---------------------------------------------------------*/
/* title01 */
.c-title01 {
  position: relative;
  margin-bottom: 50px;
}
.c-title01::before {
  content: "";
  width: 24px;
  height: 24px;
  background: no-repeat url(/recruit/img/common/icon01.svg) center center/cover;
  position: absolute;
  left: -20px;
  top: -12px;
}
.c-title01__ja {
  font-size: 2.5rem;
}
.c-title01__en {
  font-size: 1.25rem;
  color: #206aad;
  margin: 0;
}
@media screen and (max-width: 960px) {
  .c-title01 {
    margin-bottom: 30px;
  }
  .c-title01::before {
    width: 16px;
    height: 16px;
    left: -10px;
    top: -5px;
  }
  .c-title01__ja {
    font-size: 1.875rem;
  }
  .c-title01__en {
    font-size: 1rem;
  }
}

/* title02 */
.c-title02 {
  position: relative;
  margin-bottom: 50px;
  font-size: 3.125rem;
}
.c-title02::before {
  content: "";
  width: 24px;
  height: 24px;
  background: no-repeat url(/recruit/img/common/icon01.svg) center center/cover;
  position: absolute;
  left: -20px;
  top: -12px;
}
@media screen and (max-width: 960px) {
  .c-title02 {
    margin-bottom: 30px;
    font-size: 1.875rem;
  }
  .c-title02::before {
    width: 16px;
    height: 16px;
    left: -10px;
    top: -5px;
  }
}

/* title03 */
.c-title03 {
  color: #206aad;
  font-size: 1.75rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 960px) {
  .c-title03 {
    font-size: 1.25rem;
  }
}

/* title04 */
.c-title04 {
  font-size: 1.5rem;
  border-left: 3px solid #206aad;
  padding-left: 10px;
}
@media screen and (max-width: 960px) {
  .c-title04 {
    font-size: 1.125rem;
  }
}

/* title05 */
.c-title05 {
  position: relative;
  margin-bottom: 50px;
  font-size: 2.5rem;
}
.c-title05::before {
  content: "";
  width: 24px;
  height: 24px;
  background: no-repeat url(/recruit/img/common/icon01.svg) center center/cover;
  position: absolute;
  left: -20px;
  top: -12px;
}
@media screen and (max-width: 960px) {
  .c-title05 {
    margin-bottom: 30px;
    font-size: 1.875rem;
  }
  .c-title05::before {
    width: 16px;
    height: 16px;
    left: -10px;
    top: -5px;
  }
}

/* title06 */
.c-title06 {
  color: #206aad;
  font-size: 1.375rem;
  margin: 50px 0 15px;
}
@media screen and (max-width: 960px) {
  .c-title06 {
    font-size: 1.125rem;
    margin: 30px 0 15px;
  }
}

/*
box
---------------------------------------------------------*/
/* box01 */
.c-box01 {
  border: 1px solid #98bfe3;
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
}

/* box02 */
.c-box02 {
  border: 1px solid #98bfe3;
  background-color: #fff;
  border-radius: 10px;
  width: fit-content;
  margin: 50px auto;
}
@media screen and (max-width: 960px) {
  .c-box02 {
    margin: 30px auto;
  }
}

/* pointbox */
.c-pointbox {
  border: 1px solid #98bfe3;
  border-radius: 10px;
  background-color: #d0e9ff;
  padding: 20px 30px;
  display: flex;
  gap: 20px;
  align-items: center;
  margin: 20px 0;
}
.c-pointbox__title {
  border-radius: 5px;
  color: #fff;
  text-align: center;
  width: 130px;
  background-color: #206aad;
}
.c-pointbox__detail {
  flex: 1;
  font-weight: 500;
  margin: 0;
}
@media screen and (max-width: 960px) {
  .c-pointbox {
    flex-direction: column;
    gap: 10px;
  }
  .c-pointbox__title {
    width: 100%;
  }
}

/*
list
---------------------------------------------------------*/
/* ul */
ul:not([class]) {
  list-style: none;
  margin: 15px 0;
}
ul:not([class]) > li {
  position: relative;
  padding-left: 1em;
}
ul:not([class]) > li::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  position: absolute;
  left: 0.25em;
  top: 0.8em;
  background-color: #4a4a4a;
}

.c-linklist {
  list-style: none;
  padding: 0;
}
.c-linklist > li {
  padding-left: 25px;
  background: no-repeat url("/recruit/img/common/ico_right02.svg") left top 0.45em;
  background-size: 20px 20px;
}

.c-notelist {
  padding-left: 1em;
}
.c-notelist > li {
  text-indent: -1em;
}
.c-notelist > li::before {
  content: "※" !important;
}

.c-disclist {
  list-style: none;
  padding: 0;
}
.c-disclist > li {
  padding-left: 1em;
  text-indent: 0;
  position: relative;
}
.c-disclist > li::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  position: absolute;
  left: 0.25em;
  top: 0.8em;
  background-color: #4a4a4a;
}

.c-indent1em {
  list-style: none;
}
.c-indent1em > li {
  text-indent: -1em;
  margin-bottom: 0.25em;
}

.c-indent2em {
  list-style: none;
  padding-left: 2em;
}
.c-indent2em > li {
  text-indent: -2em;
  margin-bottom: 0.25em;
}

.c-pointlist {
  list-style: none;
  padding: 0;
}
.c-pointlist > li {
  position: relative;
  padding-left: 1em;
}
.c-pointlist > li::before {
  content: "";
  position: absolute;
  top: 0.35em;
  left: 2px;
  transform: rotate(50deg);
  width: 5px;
  height: 10px;
  border-right: 3px solid #1d4e80;
  border-bottom: 3px solid #1d4e80;
}

/* ol */
ol {
  list-style: decimal;
  padding-left: 1.5em;
  margin: 15px 0;
}
ol li {
  margin-bottom: 0.25em;
}

.c-notenumberlist {
  list-style: none;
  counter-reset: notenumberlist;
  padding-left: 2em;
}
.c-notenumberlist > li {
  text-indent: -2em;
  padding: 0;
}
.c-notenumberlist > li::before {
  counter-increment: notenumberlist;
  content: "※" counter(notenumberlist);
  margin-right: 0.5em;
}

/* dl */
.c-dllist dt {
  font-size: 0.777rem;
  color: #727272;
  margin-top: 10px;
}

/* checklist */
.c-checklist {
  padding: 0;
}
.c-checklist li {
  position: relative;
  padding-left: 40px;
  list-style: none;
  margin-bottom: 0.5em;
}
.c-checklist li::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background: no-repeat url(../img/common/ico_check.svg) center center/cover;
  position: absolute;
  left: 0;
  top: 0;
}

/*
ornament
---------------------------------------------------------*/
/* 下からふわっと表示 */
.js-blur {
  animation-name: blurAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: translateY(0);
    opacity: 1;
  }
}
.js-fadeUp {
  opacity: 0;
}

/* en */
.c-en {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
}

.c-en02 {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
}

/* clearfix */
.c-clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/* float */
.c-imgleft {
  float: left;
  margin: 0 20px 20px 0;
}

.c-imgright {
  float: right;
  margin: 0 0 20px 20px;
}

/* fitcontent */
.c-wfit {
  width: fit-content;
  margin: 0 auto;
}

/* indent */
.c-indent1em {
  text-indent: -1em;
  padding-left: 1em;
}

/* hr */
.c-hr {
  border-top: 1px solid #ccc;
  margin-top: 70px;
  padding-top: 70px;
}
@media screen and (max-width: 960px) {
  .c-hr {
    margin-top: 30px;
    padding-top: 30px;
  }
}

/* map */
.c-map iframe {
  width: 100%;
}
@media screen and (max-width: 960px) {
  .c-map iframe {
    height: 100%;
    aspect-ratio: 560/400;
  }
}

/* link */
.c-link::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: no-repeat url("../img/common/ico_right.svg") center center/cover;
  margin-right: 0.25em;
  position: relative;
  top: -2px;
}
@media screen and (max-width: 560px) {
  .c-link::before {
    top: 0;
  }
}

/* imagerow */
.c-imagerow {
  display: flex;
  gap: 20px;
}
.c-imagerow .imgae {
  flex-shrink: 0;
}

/* image */
.c-image {
  border-radius: 10px;
}

/* js-tick */
.js-tick {
  overflow: hidden;
  display: flex;
}

.js-tick .js-tick-item {
  flex-shrink: 0;
  white-space: nowrap;
  line-height: 1.2;
  margin: 0;
  min-width: max-content;
}

.js-tick .js-tick-item:nth-child(odd) {
  animation: MoveLeft var(--tick-duration, 24s) var(--tick-delay, -12s) infinite linear;
}

.js-tick .js-tick-item:nth-child(even) {
  animation: MoveLeft2 var(--tick-duration, 24s) infinite linear;
}

@keyframes MoveLeft {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes MoveLeft2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
/* bg */
.c-bg01 {
  background: #d0e9ff url(/recruit/img/common/dot.svg);
  padding: 150px 0;
}
@media screen and (max-width: 960px) {
  .c-bg01 {
    padding: 70px 0;
  }
}

.c-bg02 {
  background: no-repeat url(/recruit/img/common/bg02.jpg) top right/100%;
  padding: 150px 0;
}
@media screen and (max-width: 960px) {
  .c-bg02 {
    background: no-repeat url(/recruit/img/common/bg02_sp.jpg) top right/100%;
    padding: 70px 0;
  }
}

.c-bg03 {
  background: #fff;
  padding: 150px 0;
}
@media screen and (max-width: 960px) {
  .c-bg03 {
    padding: 70px 0;
  }
}

.c-bg04 {
  background: no-repeat url(/recruit/img/common/bg04.jpg) top center/cover;
  padding: 150px 0;
}
@media screen and (max-width: 960px) {
  .c-bg04 {
    background: no-repeat url(/recruit/img/common/bg04_sp.jpg) top center/cover;
    padding: 70px 0;
  }
}

/*====================================================================

project

====================================================================*/
/*
detail
---------------------------------------------------------*/
.p-detail01 {
  position: relative;
  margin-top: -8vw;
}

.p-detail02 {
  position: relative;
  margin-top: -14.5vw;
}
@media screen and (max-width: 960px) {
  .p-detail02 {
    margin-top: -17vw;
  }
}

/*
ornament
---------------------------------------------------------*/
.p-ornament {
  padding-top: 100px;
  position: relative;
  z-index: 1;
}
.p-ornament img {
  width: 100%;
}
@media screen and (max-width: 960px) {
  .p-ornament {
    padding-top: 0;
  }
}

/*
entry
---------------------------------------------------------*/
.p-entry {
  background: no-repeat url(/recruit/img/common/bg_entry.jpg) center/cover;
  text-align: center;
  color: #fff;
  position: relative;
}
.p-entry__inner {
  padding: 250px 20px;
}
.p-entry__inner .c-title01 {
  width: fit-content;
  margin: 0 auto 50px;
}
.p-entry__inner .c-title01::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  background: no-repeat url(/recruit/img/common/icon02.svg) center center/cover;
  bottom: -10px;
  right: -24px;
}
.p-entry__inner .c-title01__en {
  color: #fff;
}
.p-entry__inner__button {
  margin: 0 auto;
  text-align: center;
  margin-top: 50px;
}
.p-entry__inner__button .c-btn01 {
  padding: 20px 50px;
  text-align: center;
}
.p-entry__inner__button .link {
  text-align: center;
}
.p-entry__inner__button .link a {
  color: #fff;
}
.p-entry__slider01 {
  left: 30px;
}
.p-entry__slider02 {
  right: 30px;
}
@media screen and (max-width: 960px) {
  .p-entry__inner {
    padding: 80px 20px;
  }
  .p-entry__inner__button {
    width: 100%;
  }
  .p-entry__slider01 {
    left: 0;
  }
  .p-entry__slider02 {
    right: 0;
  }
}

/* entryslider */
.p-entryslider {
  height: 100%;
  position: absolute;
  top: 0;
  width: 350px;
  z-index: 1;
}
.p-entryslider .splide__slide {
  padding: 0;
  height: 380px !important;
}
.p-entryslider .splide__slide::before {
  display: none;
}
.p-entryslider .splide__slide img {
  border-radius: 10px;
}
@media screen and (max-width: 1750px) {
  .p-entryslider {
    width: 250px;
  }
  .p-entryslider .splide__slide {
    height: 270px !important;
  }
}
@media screen and (max-width: 960px) {
  .p-entryslider {
    width: 100%;
    position: relative;
  }
  .p-entryslider .splide__slide img {
    border-radius: 0;
  }
}
@media screen and (max-width: 560px) {
  .p-entryslider .splide__slide {
    height: 180px !important;
  }
}

/*
pagetitle
---------------------------------------------------------*/
.p-pagetitle {
  padding-top: 100px;
  position: relative;
  z-index: 2;
  margin-bottom: 80px;
}
.p-pagetitle__title {
  font-size: 3.75rem;
  line-height: 1.3;
}
.p-pagetitle__en {
  color: #206aad;
  margin: 0;
}
@media screen and (max-width: 1750px) {
  .p-pagetitle__title {
    font-size: 3.25rem;
  }
}
@media screen and (max-width: 960px) {
  .p-pagetitle {
    padding-top: 50px;
    margin-bottom: 40px;
  }
  .p-pagetitle__title {
    font-size: 2.25rem;
  }
}

/*
breadcrumbs
---------------------------------------------------------*/
.l-breadcrumbs {
  margin: 0;
  font-size: 0.875rem;
  display: flex;
  flex-wrap: wrap;
}
.l-breadcrumbs li {
  padding: 0;
}
.l-breadcrumbs li::before {
  display: none;
}
.l-breadcrumbs li:not(:last-child)::after {
  content: "／";
  color: #727272;
  margin: 0 1em;
}
.l-breadcrumbs li a {
  color: #727272;
  text-decoration: none;
}
@media screen and (max-width: 960px) {
  .l-breadcrumbs {
    font-size: 0.675rem;
  }
}

/*
indexmenu
---------------------------------------------------------*/
.p-indexmenu {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 80px 45px;
}
.p-indexmenu__item {
  padding: 0;
  width: calc((100% - 90px) / 3);
}
.p-indexmenu__item.col6 {
  width: calc((100% - 45px) / 2);
}
.p-indexmenu__item::before {
  display: none;
}
.p-indexmenu__item a {
  display: block;
  text-decoration: none;
  color: #4a4a4a;
}
.p-indexmenu__item a .image {
  position: relative;
  overflow: hidden;
  border-radius: 50px 0;
  transition: 0.3s;
  display: block;
  line-height: 1;
}
.p-indexmenu__item a .image img {
  display: block;
  line-height: 1;
}
.p-indexmenu__item a .title {
  font-size: 1.875rem;
  margin-top: 10px;
  position: relative;
  padding-right: 55px;
}
.p-indexmenu__item a .title::after {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #206aad;
  background: no-repeat url(/recruit/img/common/ico_right02.svg) center center/25px 25px;
  transition: 0.3s;
  position: absolute;
  top: 50%;
  right: 0;
  background-color: #fff;
  transform: translateY(-50%);
}
.p-indexmenu__item a:hover .image img {
  opacity: 1;
  transform: scale(1.05);
}
.p-indexmenu__item a:hover .title::after {
  background-color: #d0e9ff !important;
}
.p-indexmenu__item a::after {
  display: none;
}
.p-indexmenu__item a[target=_blank] .title::after {
  background: #fff no-repeat url("/recruit/img/common/ico_blank.svg") center center/25px 25px;
}
.p-indexmenu--link {
  margin-top: 50px;
  justify-content: center;
}
@media screen and (max-width: 1240px) {
  .p-indexmenu {
    gap: 60px 30px;
  }
  .p-indexmenu__item {
    width: calc((100% - 30px) / 2);
  }
  .p-indexmenu__item.col6 {
    width: calc((100% - 30px) / 2);
  }
}
@media screen and (max-width: 960px) {
  .p-indexmenu {
    gap: 40px 20px;
  }
  .p-indexmenu__item {
    width: 100%;
  }
  .p-indexmenu__item.col6 {
    width: 100%;
  }
  .p-indexmenu__item a .title {
    font-size: 1.5rem;
  }
  .p-indexmenu__item a .title::after {
    width: 40px;
    height: 40px;
    background-size: 20px 20px !important;
  }
  .p-indexmenu--link {
    margin-top: 30px;
  }
}

/*
anchor
---------------------------------------------------------*/
.p-anchor {
  border: 1px solid #98bfe3;
  background-color: #fff;
  border-radius: 10px;
  padding: 50px;
  margin-bottom: 80px;
}
.p-anchor__list {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.p-anchor__list__item {
  padding: 0;
}
.p-anchor__list__item::before {
  display: none;
}
.p-anchor__list__item a {
  color: #4a4a4a;
  font-weight: 500;
  text-decoration: none;
}
.p-anchor__list__item a:hover {
  color: #206aad;
}
.p-anchor__list__item a::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: no-repeat url(/recruit/img/common/ico_down.svg) center center/cover;
  position: relative;
  top: 3px;
  margin-right: 0.25em;
}
@media screen and (max-width: 960px) {
  .p-anchor {
    padding: 30px;
  }
  .p-anchor__list {
    gap: 10px 20px;
  }
  .p-anchor__list__item a::before {
    width: 15px;
    height: 15px;
  }
}

/*
pagelink
---------------------------------------------------------*/
.p-pagelink {
  border-top: 1px solid #ccc;
  padding: 100px 0 200px;
  position: relative;
}
.p-pagelink::before {
  content: "";
  display: block;
  width: 100%;
  height: 50%;
  background: #d0e9ff url(/recruit/img/common/dot.svg);
  position: absolute;
  bottom: 100px;
}
@media screen and (max-width: 960px) {
  .p-pagelink {
    padding: 50px 0 100px;
  }
  .p-pagelink::before {
    height: 80%;
    bottom: 50px;
  }
}

/*
development 
---------------------------------------------------------*/
/* about */
.p-about {
  display: flex;
  gap: 80px;
  position: relative;
}
.p-about__left {
  width: 50%;
  padding-top: 13.02vw;
}
.p-about__right {
  width: 50%;
  display: flex;
  flex-direction: column-reverse;
}
.p-about__right__text {
  margin-top: 32vw;
}
.p-about__right__image {
  display: flex;
  justify-content: space-between;
  position: absolute;
  width: 54.69vw;
  right: -4vw;
  top: 0;
}
.p-about__right__image img {
  border-radius: 10px;
}
.p-about__right__image .image01 {
  position: relative;
  width: 36.19%;
}
.p-about__right__image .image02 {
  position: relative;
  width: 57.14%;
  margin-top: 5.47vw;
}
@media screen and (max-width: 1850px) {
  .p-about__right__image {
    right: 0;
  }
}
@media screen and (max-width: 960px) {
  .p-about {
    flex-direction: column;
    gap: 50px;
  }
  .p-about__left {
    width: 100%;
    padding-top: 0;
  }
  .p-about__right {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .p-about__right__text {
    margin-top: 0;
  }
  .p-about__right__image {
    display: flex;
    justify-content: space-between;
    position: relative;
    width: 100%;
    right: 0;
    margin-top: 20px;
  }
  .p-about__right__image .image01 {
    width: 36.19%;
  }
  .p-about__right__image .image02 {
    width: 57.14%;
    margin-top: 30px;
  }
}

/* rowimage */
.p-rowimage {
  display: flex;
}
.p-rowimage__item {
  width: 100%;
  display: block;
  line-height: 1;
}
.p-rowimage__item img {
  display: block;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .p-rowimage {
    flex-wrap: wrap;
  }
  .p-rowimage__item {
    width: 50%;
  }
}

/* linklist01 */
.p-linklist01 {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 80px;
}
.p-linklist01__item {
  padding: 0;
  display: flex;
  background-color: #fff;
  border-radius: 100px 0;
  text-decoration: none;
  overflow: hidden;
  transition: 0.3s;
  color: #4a4a4a;
}
.p-linklist01__item .image {
  width: 50%;
  display: block;
  line-height: 1;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}
.p-linklist01__item .image img {
  display: block;
  line-height: 1;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
.p-linklist01__item .text {
  width: 50%;
  padding: 50px;
}
.p-linklist01__item .text .button {
  transition: 0.3s;
  margin-top: 30px;
}
.p-linklist01__item--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 960px) {
  .p-linklist01 {
    gap: 30px;
  }
  .p-linklist01__item {
    flex-direction: column;
    border-radius: 50px 0;
  }
  .p-linklist01__item .image {
    width: 100%;
  }
  .p-linklist01__item .text {
    width: 100%;
    padding: 30px;
  }
}

/* introductiontitle */
.p-introductiontitle {
  position: relative;
  margin: -150px 0 100px;
  display: flex;
  align-items: center;
}
.p-introductiontitle__text {
  padding: 150px 0 0 7.03vw;
  width: 30vw;
}
.p-introductiontitle__image {
  text-align: right;
  width: 65vw;
  margin-left: auto;
}
.p-introductiontitle__image img {
  border-radius: 0 0 0 100px;
}
@media screen and (max-width: 1750px) {
  .p-introductiontitle__text {
    padding: 150px 0 0 50px;
  }
}
@media screen and (max-width: 1240px) {
  .p-introductiontitle__text {
    padding: 150px 0 0 20px;
  }
}
@media screen and (max-width: 960px) {
  .p-introductiontitle {
    margin-top: 0;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
  }
  .p-introductiontitle__text {
    padding: 0 20px;
    width: 100%;
  }
  .p-introductiontitle__image {
    width: 100%;
    padding: 0 20px;
  }
  .p-introductiontitle__image img {
    border-radius: 10px;
  }
}

/* introductionbox */
.p-introductionbox {
  display: flex;
  gap: 60px;
}
.p-introductionbox__left {
  width: 32%;
}
.p-introductionbox__left .link {
  margin-top: 30px;
}
.p-introductionbox__left .link .image {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 100px 0;
  transition: 0.3s;
}
.p-introductionbox__left .link .image img {
  display: block;
  line-height: 1;
}
.p-introductionbox__left .link .title {
  font-size: 1.5rem;
  color: #4a4a4a;
  transition: 0.3s;
}
.p-introductionbox__left .link .name {
  margin: 10px 0 0;
  font-size: 1rem;
}
.p-introductionbox__left .link a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  gap: 20px;
}
.p-introductionbox__left .link a:hover {
  opacity: 1;
}
.p-introductionbox__left .link a:hover .image {
  border-radius: 100px 0 100px 0;
}
.p-introductionbox__left .link a:hover .image img {
  opacity: 1;
  transform: scale(1.05);
}
.p-introductionbox__left .link a:hover .title {
  color: #206aad;
}
.p-introductionbox__right {
  width: 68%;
}
.p-introductionbox__right .link {
  margin-top: 30px;
}
.p-introductionbox__right .link .image {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 50px 0;
  transition: 0.3s;
  width: 50%;
}
.p-introductionbox__right .link .image img {
  display: block;
  line-height: 1;
}
.p-introductionbox__right .link .text {
  width: 50%;
  padding-top: 30px;
}
.p-introductionbox__right .link .title {
  font-size: 1.5rem;
  color: #4a4a4a;
  transition: 0.3s;
}
.p-introductionbox__right .link .detail {
  margin: 10px 0 0;
  color: #206aad;
  font-size: 1rem;
}
.p-introductionbox__right .link .tag {
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  padding-left: 20px;
  margin: 0 0 10px;
}
.p-introductionbox__right .link .tag::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #206aad;
  position: absolute;
  left: 0;
  top: 0.5em;
}
.p-introductionbox__right .link .tag.tag_green {
  color: #57963c;
}
.p-introductionbox__right .link .tag.tag_green::before {
  background-color: #57963c;
}
.p-introductionbox__right .link .tag.tag_orange {
  color: #d75f3b;
}
.p-introductionbox__right .link .tag.tag_orange::before {
  background-color: #d75f3b;
}
.p-introductionbox__right .link a {
  display: flex;
  text-decoration: none;
  gap: 20px;
}
.p-introductionbox__right .link a:hover {
  opacity: 1;
}
.p-introductionbox__right .link a:hover .image {
  border-radius: 50px 0 50px 0;
}
.p-introductionbox__right .link a:hover .image img {
  opacity: 1;
  transform: scale(1.05);
}
.p-introductionbox__right .link a:hover .title {
  color: #206aad;
}
.p-introductionbox__right .link + .link {
  margin-top: 30px;
  border-top: 1px solid #ccc;
  padding-top: 30px;
}
@media screen and (max-width: 960px) {
  .p-introductionbox {
    flex-direction: column;
    gap: 30px;
  }
  .p-introductionbox__left, .p-introductionbox__right {
    width: 100%;
  }
  .p-introductionbox__left .link, .p-introductionbox__right .link {
    margin-top: 20px;
  }
  .p-introductionbox__left .link .image, .p-introductionbox__right .link .image {
    width: 100%;
  }
  .p-introductionbox__left .link .text, .p-introductionbox__right .link .text {
    width: 100%;
  }
  .p-introductionbox__left .link .image {
    border-radius: 0 0 50px 0;
  }
  .p-introductionbox__left .link .title {
    font-size: 1.25rem;
  }
  .p-introductionbox__left .link .name {
    font-size: 0.875rem;
  }
  .p-introductionbox__left .link a:hover .image {
    border-radius: 50px 0 50px 0;
  }
  .p-introductionbox__right .link .title {
    font-size: 1.25rem;
  }
  .p-introductionbox__right .link .detail {
    font-size: 0.875rem;
  }
  .p-introductionbox__right .link a {
    flex-direction: column;
  }
  .p-introductionbox__right .link a .text {
    padding-top: 0;
  }
  .p-introductionbox__right .link a:hover .image {
    border-radius: 50px 0 50px 0;
  }
  .p-introductionbox__right .link a:hover .image img {
    opacity: 1;
    transform: scale(1.05);
  }
  .p-introductionbox__right .link + .link {
    margin-top: 20px;
    padding-top: 20px;
  }
}

/* ------------------------------------
Crosstalk
------------------------------------ */
/* crosstalk */
.p-crosstalk {
  padding: 150px 0;
  background: no-repeat url(/recruit/img/common/bg02.jpg) right top/cover;
}
.p-crosstalk__list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.p-crosstalk__list__item {
  padding: 0;
}
.p-crosstalk__list__item::before {
  display: none;
}
.p-crosstalk__list__item a {
  display: flex;
  background-color: #fff;
  border-radius: 100px 0;
  text-decoration: none;
  overflow: hidden;
  transition: 0.3s;
}
.p-crosstalk__list__item a .image {
  flex: 1;
  display: block;
  line-height: 1;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}
.p-crosstalk__list__item a .image img {
  display: block;
  line-height: 1;
  width: 100%;
}
.p-crosstalk__list__item a .text {
  width: 650px;
  padding: 50px;
}
.p-crosstalk__list__item a .text .tag {
  font-size: 1.125rem;
  font-weight: 500;
  position: relative;
  padding-left: 20px;
  margin: 0 0 15px;
}
.p-crosstalk__list__item a .text .tag::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #206aad;
  position: absolute;
  left: 0;
  top: 0.5em;
}
.p-crosstalk__list__item a .text .tag.tag_green {
  color: #57963c;
}
.p-crosstalk__list__item a .text .tag.tag_green::before {
  background-color: #57963c;
}
.p-crosstalk__list__item a .text .tag.tag_orange {
  color: #d75f3b;
}
.p-crosstalk__list__item a .text .tag.tag_orange::before {
  background-color: #d75f3b;
}
.p-crosstalk__list__item a .text .title {
  color: #4a4a4a;
  font-size: 1.875rem;
  position: relative;
  padding-bottom: 70px;
  position: relative;
  transition: 0.3s;
}
.p-crosstalk__list__item a .text .title::after {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #206aad;
  background: no-repeat url(/recruit/img/common/ico_right02.svg) center center/25px 25px;
  transition: 0.3s;
  position: absolute;
  bottom: 0;
  left: 0;
}
.p-crosstalk__list__item a:hover .image img {
  transform: scale(1.05);
}
.p-crosstalk__list__item a:hover .text .title {
  color: #206aad;
}
.p-crosstalk__list__item a:hover .text .title::after {
  background-color: #d0e9ff;
}
.p-crosstalk__list__item--reverse a {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1750px) {
  .p-crosstalk__list__item a .text {
    width: 520px;
  }
}
@media screen and (max-width: 960px) {
  .p-crosstalk {
    padding: 50px 0;
    background: no-repeat url(/recruit/img/common/bg02_sp.jpg) right top/cover;
  }
  .p-crosstalk__list {
    gap: 30px;
  }
  .p-crosstalk__list__item a {
    flex-direction: column;
    border-radius: 50px 0;
  }
  .p-crosstalk__list__item a .text {
    width: 100%;
    padding: 30px;
  }
  .p-crosstalk__list__item a .text .tag {
    font-size: 0.875rem;
  }
  .p-crosstalk__list__item a .text .tag::before {
    width: 12px;
    height: 12px;
  }
  .p-crosstalk__list__item a .text .title {
    font-size: 1.25rem;
    padding-bottom: 60px;
  }
  .p-crosstalk__list__item a .text .title::after {
    width: 40px;
    height: 40px;
    background-size: 20px 20px;
  }
}

/* crosstalktitle */
.p-crosstalktitle {
  position: relative;
  margin-bottom: 80px;
}
.p-crosstalktitle__text {
  width: 67.71%;
  background: #fff;
  border-radius: 100px 0 0 0;
  padding: 80px 80px 60px 80px;
  position: relative;
  margin-top: -14.06vw;
  margin-left: auto;
}
.p-crosstalktitle__text .tag {
  margin: 0;
  color: #206aad;
  font-weight: 500;
  padding-left: 20px;
  position: relative;
}
.p-crosstalktitle__text .tag::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #206aad;
  position: absolute;
  left: 0;
  top: 0.5em;
}
.p-crosstalktitle__text .tag.tag_green {
  color: #57963c;
}
.p-crosstalktitle__text .tag.tag_green::before {
  background-color: #57963c;
}
.p-crosstalktitle__text .tag.tag_orange {
  color: #d75f3b;
}
.p-crosstalktitle__text .tag.tag_orange::before {
  background-color: #d75f3b;
}
.p-crosstalktitle__text .title {
  font-size: 3.125rem;
}
@media screen and (max-width: 960px) {
  .p-crosstalktitle {
    margin-bottom: 40px;
  }
  .p-crosstalktitle__text {
    width: 95%;
    border-radius: 50px 0 0 0;
    padding: 40px 40px 30px 40px;
    margin-top: -7vw;
  }
  .p-crosstalktitle__text .title {
    font-size: 1.875rem;
  }
}

/* profile */
.p-profile {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 20px;
}
.p-profile__item {
  width: calc((100% - 30px) / 2);
}
.p-profile__item img {
  display: block;
  line-height: 1;
  border-radius: 10px;
}
.p-profile__item.col3 {
  width: calc((100% - 90px) / 4);
}
.p-profile__item.col4 {
  width: calc((100% - 60px) / 3);
}
@media screen and (max-width: 1240px) {
  .p-profile__item {
    width: calc((100% - 30px) / 2);
    max-width: 50%;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 960px) {
  .p-profile {
    gap: 10px;
  }
  .p-profile__item {
    width: calc((100% - 10px) / 2);
    font-size: 0.75rem;
  }
  .p-profile__item.col3 {
    width: calc((100% - 10px) / 2);
  }
  .p-profile__item.col4 {
    width: calc((100% - 20px) / 2);
  }
  .p-profile__item p {
    margin-top: 5px;
    padding: 0 10px;
  }
  .p-profile__item p b {
    font-size: 0.875rem;
  }
}

/* conversation */
.p-conversation {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.p-conversation__name {
  width: 80px;
  text-align: center;
  line-height: 1.5;
  font-weight: 500;
  font-size: 1rem;
}
.p-conversation__text {
  flex: 1;
  background-color: #e4f2ff;
  border-radius: 10px;
  padding: 20px;
}
.p-conversation + .p-conversation {
  margin-top: 20px;
}
@media screen and (max-width: 960px) {
  .p-conversation__name {
    width: 60px;
    font-size: 0.875rem;
  }
}

.c-bg01 .p-conversation__text {
  background-color: #fff;
}

/* ------------------------------------
interview
------------------------------------ */
/* interviewheader */
.p-interviewheader {
  display: flex;
  position: relative;
}
.p-interviewheader__image {
  width: 50%;
}
.p-interviewheader__image__mainimage img {
  border-radius: 0 0 100px 0;
}
.p-interviewheader__image__subimage {
  margin-top: 80px;
  display: flex;
  gap: 30px;
  padding: 0 0 0 30px;
}
.p-interviewheader__image__subimage .item.item01 {
  width: 60%;
  margin-top: 100px;
}
.p-interviewheader__image__subimage .item.item02 {
  width: 40%;
  position: relative;
}
.p-interviewheader__image__subimage .item img {
  width: 100%;
  border-radius: 10px;
}
.p-interviewheader__text {
  width: 50%;
  padding: 50px 7.03vw 0 60px;
}
.p-interviewheader__text .titlebox {
  margin-bottom: 50px;
}
.p-interviewheader__text .titlebox .tag {
  font-weight: 500;
  position: relative;
  padding-left: 20px;
  color: #206aad;
}
.p-interviewheader__text .titlebox .tag::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #206aad;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.p-interviewheader__text .titlebox .title {
  font-size: 3rem;
}
.p-interviewheader__text .titlebox .name {
  color: #206aad;
  font-weight: 500;
}
.p-interviewheader__text__box {
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
}
.p-interviewheader__text__box + .p-interviewheader__text__box {
  margin-top: 30px;
}
.p-interviewheader--reverse {
  flex-direction: row-reverse;
}
.p-interviewheader--reverse .p-interviewheader__image__mainimage img {
  border-radius: 0 0 0 100px;
}
.p-interviewheader--reverse .p-interviewheader__image__subimage {
  padding: 0 30px 0 0;
}
.p-interviewheader--reverse .p-interviewheader__image__subimage .item.item01 {
  width: 40%;
  margin: 0;
}
.p-interviewheader--reverse .p-interviewheader__image__subimage .item.item02 {
  width: 60%;
  margin-top: 100px;
}
.p-interviewheader--reverse .p-interviewheader__text__box {
  background-color: #e4f2ff;
}
@media screen and (max-width: 960px) {
  .p-interviewheader {
    flex-direction: column;
  }
  .p-interviewheader__image {
    width: 100%;
  }
  .p-interviewheader__image__mainimage img {
    border-radius: 0 0 50px 0;
  }
  .p-interviewheader__image__subimage {
    margin-top: 20px;
    gap: 10px;
    padding: 0 20px;
  }
  .p-interviewheader__image__subimage .item.item01 {
    width: 60%;
    margin-top: 50px;
  }
  .p-interviewheader__image__subimage .item img {
    border-radius: 5px;
  }
  .p-interviewheader__text {
    width: 100%;
    padding: 30px 20px 0;
  }
  .p-interviewheader__text .titlebox {
    margin-bottom: 30px;
  }
  .p-interviewheader__text .titlebox .tag {
    padding-left: 18px;
    margin-bottom: 10px;
  }
  .p-interviewheader__text .titlebox .tag::before {
    width: 14px;
    height: 14px;
  }
  .p-interviewheader__text .titlebox .title {
    font-size: 1.5rem;
  }
  .p-interviewheader__text__box {
    padding: 30px 20px;
  }
  .p-interviewheader__text__box + .p-interviewheader__text__box {
    margin-top: 20px;
  }
  .p-interviewheader--reverse .p-interviewheader__image__mainimage img {
    border-radius: 0 0 0 50px;
  }
  .p-interviewheader--reverse .p-interviewheader__image__subimage {
    padding: 0 20px;
  }
  .p-interviewheader--reverse .p-interviewheader__image__subimage .item.item02 {
    margin-top: 50px;
  }
  .p-interviewheader--reverse .p-interviewheader__text__box {
    background-color: #e4f2ff;
  }
}

/*
benefits 
---------------------------------------------------------*/
/* benefitsbox */
.p-benefitsbox {
  position: relative;
  margin-top: 50px;
}
.p-benefitsbox::before {
  content: "";
  display: block;
  width: 40%;
  height: 120%;
  background: no-repeat url(/recruit/img/top/bg_environment.jpg) center center/cover;
  position: absolute;
  right: 0;
  bottom: -200px;
}
.p-benefitsbox__list {
  width: 70%;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  position: relative;
  z-index: 1;
}
.p-benefitsbox__list__item {
  width: calc((100% - 30px) / 2);
  padding: 30px 50px;
  background-color: #fff;
  border-radius: 10px;
}
.p-benefitsbox__list__item .title {
  text-align: center;
  font-size: 1.625rem;
  margin-bottom: 20px;
  color: #4a4a4a;
}
.p-benefitsbox__list__item .subtitle {
  font-weight: 500;
  line-height: 1;
}
.p-benefitsbox__list__item p {
  margin: 0;
}
.p-benefitsbox__list__item .subtitle {
  font-weight: bold;
  line-height: 1;
  color: #206aad;
  font-size: 1rem;
}
.p-benefitsbox__list__item .number {
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 1;
  color: #206aad;
}
.p-benefitsbox__list__item .number .text_l {
  font-size: 6rem;
  display: inline-block;
  line-height: 1;
  letter-spacing: -0.03em;
}
.p-benefitsbox__list__item .number .text_s {
  font-size: 1.25rem;
}
.p-benefitsbox__list__item .item01_image {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 0 20px;
}
.p-benefitsbox__list__item .item01_image li {
  text-align: center;
  padding: 0;
}
.p-benefitsbox__list__item .item01_image li::before {
  display: none;
}
.p-benefitsbox__list__item .item02_image {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.p-benefitsbox__list__item .item02_image .image {
  width: 185px;
  line-height: 1;
  padding-top: 20px;
}
.p-benefitsbox__list__item .item02_image .textbox {
  display: flex;
  flex: 1;
  gap: 20px;
  align-items: flex-end;
}
.p-benefitsbox__list__item .item02_image .textbox .textbox_title {
  line-height: 1.5;
  text-align: left;
  font-size: 1.75rem;
  font-weight: bold;
  color: #206aad;
}
.p-benefitsbox__list__item .item06_image {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.p-benefitsbox__list__item .item06_image .item06_image_02 {
  font-size: 3rem;
  font-weight: bold;
  margin-right: 0.25em;
  color: #206aad;
}
.p-benefitsbox__list__item .detail {
  margin-top: 20px;
}
.p-benefitsbox--reverse::before {
  left: 0;
  right: auto;
  bottom: -150px;
  background: no-repeat url(/recruit/img/environment/bg_benefits02.jpg) center center/cover;
}
.p-benefitsbox--reverse .p-benefitsbox__list {
  margin-left: auto;
}
@media screen and (max-width: 1750px) {
  .p-benefitsbox__list__item .number {
    font-size: 1.5rem;
  }
  .p-benefitsbox__list__item .number .text_l {
    font-size: 3.5rem;
  }
  .p-benefitsbox__list__item .item02_image .textbox .textbox_title {
    font-size: 1.25rem;
  }
  .p-benefitsbox__list__item .item06_image .item06_image_02 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 1240px) {
  .p-benefitsbox::before {
    width: 70%;
    height: 100%;
  }
  .p-benefitsbox__list {
    width: 100%;
  }
}
@media screen and (max-width: 960px) {
  .p-benefitsbox {
    margin-top: 30px;
    padding-bottom: 50vw;
  }
  .p-benefitsbox::before {
    bottom: -100px;
    height: 80vw;
    width: 80%;
  }
  .p-benefitsbox__list {
    flex-direction: column;
    gap: 20px;
  }
  .p-benefitsbox__list__item {
    width: 100%;
    padding: 20px;
  }
  .p-benefitsbox__list__item .title {
    font-size: 1.5rem;
  }
  .p-benefitsbox__list__item .number {
    font-size: 1.5rem;
  }
  .p-benefitsbox__list__item .number .text_l {
    font-size: 4.5rem;
  }
  .p-benefitsbox__list__item .item01_image {
    padding: 0;
    gap: 20px;
  }
  .p-benefitsbox__list__item .item02_image .image {
    padding-top: 0;
    width: 150px;
  }
  .p-benefitsbox__list__item .item03_image img,
  .p-benefitsbox__list__item .item04_image img {
    max-width: 70%;
  }
  .p-benefitsbox--reverse::before {
    bottom: -70px;
  }
}

/* ------------------------------------
news
------------------------------------ */
/*
newslist
---------------------------------------------------------*/
.p-newslist {
  border-top: 1px solid #ccc;
  margin: 0;
}
.p-newslist__item {
  border-bottom: 1px solid #ccc;
  padding: 0;
}
.p-newslist__item::before {
  display: none;
}
.p-newslist__item a {
  display: flex;
  padding: 30px 35px 30px 0;
  gap: 20px;
  text-decoration: none;
  color: #4a4a4a;
  position: relative;
}
.p-newslist__item a p {
  margin: 0;
}
.p-newslist__item a .date {
  color: #206aad;
  width: 4.5em;
}
.p-newslist__item a .tag {
  color: #206aad;
  border: 1px solid #206aad;
  border-radius: calc(infinity * 1px);
  font-size: 1rem;
  text-align: center;
  width: 10em;
  font-weight: 500;
  align-self: baseline;
  padding: 3px 10px;
}
.p-newslist__item a .title {
  flex: 1;
}
.p-newslist__item a::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  position: absolute !important;
  top: 50% !important;
  right: 0 !important;
  transform: translateY(-50%) !important;
  background: no-repeat url(/recruit/img/common/ico_right02.svg) center/cover;
  transition: 0.3s;
  margin: 0 !important;
}
.p-newslist__item a:hover {
  color: #206aad;
}
.p-newslist__item a:hover::after {
  right: -5px !important;
}
@media screen and (max-width: 960px) {
  .p-newslist__item a {
    flex-wrap: wrap;
    gap: 0 10px;
    padding: 20px 35px 20px 0;
  }
  .p-newslist__item a .tag {
    font-size: 0.75rem;
    padding: 0 10px;
    align-self: center;
  }
  .p-newslist__item a .title {
    width: 100%;
    flex: none;
    margin-top: 3px;
  }
  .p-newslist__item a::after {
    width: 20px;
    height: 20px;
  }
}

/*
pager
---------------------------------------------------------*/
.p-pager {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 100px 0 200px;
  gap: 5px;
}
.p-pager__item a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: calc(infinity * 1px);
  font-weight: bold;
  text-decoration: none;
  color: #206aad;
  font-weight: 500;
  background-color: #fff;
  border: 1px solid #206aad;
}
.p-pager__item a:hover {
  background-color: #206aad;
  color: #fff;
  opacity: 1;
}
.p-pager__item.prev a, .p-pager__item.next a {
  width: auto;
  padding: 0 20px;
}
.p-pager__item.active a {
  background-color: #206aad;
  color: #fff;
}
.p-pager__item.active a:hover {
  color: #fff;
}
.p-pager__item.ellipsis {
  position: relative;
  transform: translateY(-0.4em);
}
@media screen and (max-width: 560px) {
  .p-pager {
    margin: 50px 0;
    font-size: 0.75rem;
  }
  .p-pager__item a {
    width: 34px;
    height: 34px;
    font-size: 0.875rem;
  }
  .p-pager__item.prev a, .p-pager__item.next a {
    padding: 0 10px;
  }
}

/*
newsdetail
---------------------------------------------------------*/
.p-newsdetail {
  margin-bottom: 100px;
}
.p-newsdetail__header {
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
  margin-bottom: 50px;
}
.p-newsdetail__header .title {
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 10px;
}
.p-newsdetail__header__date {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.p-newsdetail__header__date .date {
  color: #206aad;
}
.p-newsdetail__header__date .tag {
  color: #206aad;
  border: 1px solid #206aad;
  border-radius: calc(infinity * 1px);
  font-size: 1rem;
  text-align: center;
  width: 10em;
  font-weight: 500;
  align-self: baseline;
  padding: 3px 10px;
}
.p-newsdetail__main h1 {
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
}
.p-newsdetail__main h2 {
  color: #206aad;
  font-size: 2rem;
  margin: 80px 0 15px;
}
.p-newsdetail__main h3 {
  font-size: 1.5rem;
  margin: 50px 0 15px;
  border-left: 3px solid #206aad;
  padding-left: 10px;
}
.p-newsdetail__main h4 {
  font-size: 1.25rem;
  margin: 30px 0 15px;
  color: #206aad;
}
.p-newsdetail__main h5 {
  margin: 30px 0 15px;
}
.p-newsdetail__main embed {
  width: 100%;
  aspect-ratio: 4/3;
}
.p-newsdetail__main table:not(.c-table01, .c-table02) th, .p-newsdetail__main table:not(.c-table01, .c-table02) td {
  border: 1px solid #ccc;
  padding: 0.5em;
  background-color: #fff;
}
.p-newsdetail__main table:not(.c-table01, .c-table02) th {
  color: #206aad;
  background-color: #e4f2ff;
}
.p-newsdetail__footer {
  margin-top: 80px;
  padding-top: 50px;
  border-top: 1px solid #ccc;
  text-align: center;
}
@media screen and (max-width: 560px) {
  .p-newsdetail__header {
    margin-bottom: 50px;
  }
  .p-newsdetail__header .title {
    font-size: 1.5rem;
  }
  .p-newsdetail__main h1 {
    font-size: 1.5rem;
  }
  .p-newsdetail__main h2 {
    font-size: 1.5rem;
  }
  .p-newsdetail__main h3 {
    font-size: 1.25rem;
  }
  .p-newsdetail__main h3::before {
    font-size: 1rem;
  }
  .p-newsdetail__main h4 {
    font-size: 1rem;
  }
  .p-newsdetail__main table th, .p-newsdetail__main table td {
    font-size: 0.875rem;
  }
}

/* ------------------------------------
entry
------------------------------------ */
/*
p-flow
---------------------------------------------------------*/
.p-flow {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 30px;
  margin-top: 50px;
}
.p-flow__item {
  width: 100%;
  border: 1px solid #206aad;
  border-radius: 3px;
  text-align: center;
  padding: 10px 10px 30px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #e4f2ff;
  position: relative;
}
.p-flow__item .number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #206aad;
  color: #fff;
  font-weight: 500;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
}
.p-flow__item .title {
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0;
}
.p-flow__item .detail {
  font-size: 1rem;
  line-height: 1.3;
  margin: 5px 0 0;
}
.p-flow__item:last-child {
  border-color: #d75f3b;
  background-color: #fff0eb;
}
.p-flow__item:last-child .number {
  background-color: #d75f3b;
}
.p-flow__item:not(:last-child)::after {
  content: "";
  display: block;
  width: 20px;
  height: 30px;
  background: no-repeat url(/recruit/img/common/ico_flow.svg) center center/cover;
  position: absolute;
  top: 50%;
  right: -26px;
  transform: translateY(-50%);
}
@media screen and (max-width: 960px) {
  .p-flow {
    flex-direction: column;
    margin-top: 30px;
  }
  .p-flow__item {
    padding: 10px;
  }
  .p-flow__item .number {
    font-size: 1.125rem;
    margin-bottom: 5px;
    width: 32px;
    height: 32px;
  }
  .p-flow__item .title {
    writing-mode: horizontal-tb;
    font-size: 1.25rem;
  }
  .p-flow__item:not(:last-child)::after {
    top: auto;
    bottom: -32px;
    right: 50%;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }
}

/*
p-faq
---------------------------------------------------------*/
.p-faq {
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #206aad;
}
.p-faq__title {
  padding: 20px 30px 20px 70px;
  color: #206aad;
  font-weight: 500;
  font-size: 1.5rem;
  cursor: pointer;
  position: relative;
}
.p-faq__title::before {
  content: "Q";
  width: 40px;
  height: 40px;
  color: #fff;
  border-radius: 50%;
  background-color: #206aad;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Raleway", sans-serif;
  font-weight: 500;
}
.p-faq__title::after {
  content: "";
  width: 20px;
  height: 20px;
  background: no-repeat url(/recruit/img/common/ico_open_blue.svg) center center/cover;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
.p-faq__details {
  padding: 0 20px 20px 70px;
  position: relative;
}
.p-faq__details::before {
  content: "A";
  width: 40px;
  height: 40px;
  color: #fff;
  border-radius: 50%;
  background-color: #d75f3b;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 20px;
  top: 0;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
}
.p-faq.is-opened .p-faq__title::after {
  transform: translateY(-50%) rotate(45deg);
}
.p-faq + .p-faq {
  margin-top: 20px;
}
@media screen and (max-width: 960px) {
  .p-faq__title {
    padding: 15px 30px 15px 43px;
    font-size: 1rem;
  }
  .p-faq__title::before {
    width: 26px;
    height: 26px;
    left: 10px;
  }
  .p-faq__title::after {
    width: 17px;
    height: 17px;
    right: 10px;
  }
  .p-faq__details {
    padding: 0 15px 15px 43px;
  }
  .p-faq__details::before {
    width: 26px;
    height: 26px;
    left: 10px;
    top: 2px;
  }
  .p-faq + .p-faq {
    margin-top: 10px;
  }
}

/*====================================================================

Utility

====================================================================*/
.u-center {
  text-align: center;
}

.u-left {
  text-align: left;
}

.u-right {
  text-align: right;
}

.u-justify {
  text-align: justify;
}

@media screen and (max-width: 960px) {
  .u-center--tab {
    text-align: center;
  }
}
@media screen and (max-width: 560px) {
  .u-left--sp {
    text-align: left;
  }
}
/*
font
---------------------------------------------------------*/
.u-fnt--ss {
  font-size: 80%;
}

.u-fnt--s {
  font-size: 90%;
}

.u-fnt--m {
  font-size: 100%;
}

.u-fnt--l {
  font-size: 120%;
}

.u-fnt--ll {
  font-size: 150%;
}

.u-fnt12 {
  font-size: 0.75rem;
}

@media screen and (max-width: 560px) {
  .u-fnt--m--sp {
    font-size: 100%;
  }
}
/*
color
---------------------------------------------------------*/
.u-color--red {
  color: #e62f22;
}

.u-color--blue {
  color: #206aad;
}

.u-color--gray {
  color: #727272;
}

/*
hidden
---------------------------------------------------------*/
.u-hidden {
  display: none;
}
@media screen and (max-width: 960px) {
  .u-hidden--tab {
    display: none;
  }
}
@media screen and (max-width: 560px) {
  .u-hidden--sp {
    display: none;
  }
}

.u-inline {
  display: inline;
}
@media screen and (max-width: 960px) {
  .u-inline--tab {
    display: inline;
  }
}
@media screen and (max-width: 560px) {
  .u-inline--sp {
    display: inline;
  }
}

.u-inlineblk {
  display: inline-block;
}
@media screen and (max-width: 960px) {
  .u-inlineblk--tab {
    display: inline-block;
  }
}
@media screen and (max-width: 560px) {
  .u-inlineblk--sp {
    display: inline-block;
  }
}

.u-block {
  display: block;
}
@media screen and (max-width: 960px) {
  .u-block--tab {
    display: block;
  }
}
@media screen and (max-width: 560px) {
  .u-block--sp {
    display: block;
  }
}

/*
margin
---------------------------------------------------------*/
.u-m0 {
  margin: 0 !important;
}

.u-mtauto {
  margin-top: auto !important;
}

.u-mt-20 {
  margin-top: -20px !important;
}

.u-mt0 {
  margin-top: 0 !important;
}

.u-mt5 {
  margin-top: 5px !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

.u-mt100 {
  margin-top: 100px !important;
}

.u-mt200 {
  margin-top: 200px !important;
}

.u-mb0 {
  margin-bottom: 0 !important;
}

.u-mb5 {
  margin-bottom: 5px !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-mb50 {
  margin-bottom: 50px !important;
}

.u-mb100 {
  margin-bottom: 100px !important;
}

.u-mb200 {
  margin-bottom: 200px !important;
}

.u-mauto {
  margin: 0 auto !important;
}

.u-mr0 {
  margin-right: 0 !important;
}

@media screen and (max-width: 960px) {
  .u-mt-70--tab {
    margin-top: -70px !important;
  }
  .u-mt0--tab {
    margin-top: 0 !important;
  }
  .u-mt30--tab {
    margin-top: 30px !important;
  }
  .u-mt50--tab {
    margin-top: 50px !important;
  }
  .u-mt100--tab {
    margin-top: 100px !important;
  }
  .u-mb50--tab {
    margin-bottom: 50px !important;
  }
  .u-mb100--tab {
    margin-bottom: 100px !important;
  }
}
@media screen and (max-width: 560px) {
  .u-mt0--sp {
    margin-top: 0 !important;
  }
  .u-mt20--sp {
    margin-top: 20px !important;
  }
  .u-mt50--sp {
    margin-top: 50px !important;
  }
  .u-mb0--sp {
    margin-bottom: 50px !important;
  }
  .u-mb30--sp {
    margin-bottom: 30px !important;
  }
  .u-mb50--sp {
    margin-bottom: 50px !important;
  }
}
/*
padding
---------------------------------------------------------*/
.u-pt0 {
  padding-top: 0;
}

.u-pb0 {
  padding-bottom: 0;
}

.u-pb200 {
  padding-bottom: 200px;
}

.u-pb300 {
  padding-bottom: 300px;
}

@media screen and (max-width: 960px) {
  .u-pt0--tab {
    padding-top: 0;
  }
  .u-pb150--tab {
    padding-bottom: 150px;
  }
  .u-pb100--tab {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 560px) {
  .u-pt0--sp {
    padding-top: 0;
  }
}
/*
width
---------------------------------------------------------*/
.u-w30p {
  width: 30%;
}

.u-w100p {
  width: 100%;
}

.u-w5em {
  width: 5em;
}

.u-w7em {
  width: 7em;
}

.u-w10em {
  width: 10em;
}

.u-w16em {
  width: 16em;
}

.u-w20em {
  width: 20em;
}

.u-w120 {
  width: 120px;
}

.u-w210 {
  width: 210px;
}

.u-w270 {
  width: 270px;
}

.u-w300 {
  width: 300px;
}

@media screen and (max-width: 960px) {
  .u-w100p--tab {
    width: 100% !important;
  }
}
@media screen and (max-width: 560px) {
  .u-w100p--sp {
    width: 100% !important;
  }
}
/*====================================================================

print 印刷用css

====================================================================*/
/*
print
---------------------------------------------------------*/
@media print {
  body {
    -webkit-print-color-adjust: exact;
    width: 1300px;
  }
  #header {
    position: absolute !important;
    width: 100%;
  }
  .js-fadeUp {
    opacity: 1;
  }
  .p-toparea__effect {
    display: none;
  }
}