@charset "utf-8";

/* 動画メニュー非表示 */
#menu-item-3861,
#menu-item-3869 {
  display: none;
}

/* HEADER
-------------------------------------------------------------- */
header {
  position: fixed;
  top: 20px;
  left: 5%;
  width: 95%;
  background: var(--color-white);
  z-index: 100;
}

header .logo a {
  margin-left: 30px;
  align-items: center;
}

header a {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
}

.hamburger {
  display: none;
}

header .headWrap {
  position: relative;
  align-items: center;
}

header .global-nav {
  width: calc(100% - 213px);
}

header .global-nav ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

header .global-nav li {
  padding-left: 30px;
  font-size: 1.5rem;
}

header .global-nav li.contact {
  padding: 0;
}

header .global-nav li.entry a {
  padding: 30px;
  width: 160px;
  box-sizing: border-box;
  background: var(--color-blue);
  color: var(--color-white);
  text-align: center;
}

header .global-nav li.contact a {
  padding: 30px;
  width: 160px;
  box-sizing: border-box;
  background: var(--color-lightgreen);
  color: var(--color-white);
  text-align: center;
}

@media (max-width: 1300px) {
  header a {
    font-size: 1.4rem;
  }

  header .logo a {
    margin-left: 20px;
  }

  header .logo a img {
    width: 100px;
  }

  header .global-nav {
    width: calc(100% - 120px);
  }

  header .global-nav li {
    padding-left: 20px;
  }

  header .global-nav li.entry a,
  header .global-nav li.contact a {
    padding: 30px 20px;
    width: 120px;
  }
}

@media (max-width: 1000px) {
  header a {
    font-size: 1.2rem;
  }

  header .logo a img {
    width: 80px;
  }

  header .global-nav {
    width: calc(100% - 100px);
  }

  header .global-nav li {
    padding-left: 10px;
  }

  header .global-nav li.entry a,
  header .global-nav li.contact a {
    padding: 30px 10px;
    width: 100px;
  }
}

@media (max-width: 767px) {
  header {
    top: 0;
    left: 0;
    width: 100%;
  }

  header .headWrap {
    padding: 15px;
    width: calc(100% - 60px);
  }

  header .logo a {
    margin: 0;
  }

  header .logo a img {
    width: 180px;
  }

  header .global-nav {
    position: fixed;
    right: 0;
    top: 60px;
    padding: 50px 5% 100px;
    width: 100%;
    height: 100vh;
    background-color: var(--color-lightgreen);
    z-index: 200;
    overflow-y: auto;
    display: none;
  }

  .hamburger {
    display: block;
    position: fixed;
    right: 0;
    top: 0;
    width: 60px;
    height: 60px;
    text-align: center;
    font-size: 3rem;
    line-height: 1;
    cursor: pointer;
    z-index: 300;
    transition: all 0.5s ease-in-out;
  }

  .hamburger::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 7px;
    margin: auto;
    color: var(--color-lightgreen);
    font-size: 1rem;
    content: "MENU";
  }

  header .global-nav ul {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  header .global-nav li {
    padding: 18px 10px;
    width: 100%;
    border-bottom: 1px solid #fff;
  }

  header .global-nav li a {
    position: relative;
    font-size: 1.8rem;
    color: var(--color-white);
  }

  header .global-nav li a::after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 42px;
    height: 42px;
    background: url(img/common/arrow_white.png) no-repeat center / contain;
    content: ""
  }

  header .global-nav li.entry,
  header .global-nav li.contact {
    padding: 30px 0;
    border-bottom: 0;
    width: 48%;
  }

  header .global-nav li.entry a,
  header .global-nav li.contact a {
    padding: 12px 30px;
    width: 100%;
    background: var(--color-white);
    color: var(--color-green);
    font-size: 1.6rem;
    text-align: center;
  }

  header .global-nav li.contact a::after {
    content: none;
  }

  .hamburger__line {
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    width: 34px;
    height: 3px;
    background-color: var(--color-lightgreen);
    border-radius: 10px;
    transition: all .6s;
  }

  .hamburger__line--1 {
    top: 13px;
  }

  .hamburger__line--2 {
    top: 23px;
  }

  .hamburger__line--3 {
    top: 33px;
  }

  /* 表示された時用のCSS */
  .nav-open .global-nav {
    display: block;
  }

  .nav-open .hamburger::after {
    content: "CLOSE";
  }

  .nav-open .black-bg {
    opacity: .8;
    visibility: visible;
  }

  .nav-open .hamburger__line--1 {
    transform: rotate(45deg);
    top: 25px;
  }

  .nav-open .hamburger__line--2 {
    width: 0;
    left: 50%;
  }

  .nav-open .hamburger__line--3 {
    transform: rotate(-45deg);
    top: 25px;
  }
}

/* common style
-------------------------------------------------------------- */
.fixedLink {
  position: fixed;
  top: 140px;
  right: 0;
  width: 50px;
  z-index: 100;
}

.fixedLink li {
  margin-bottom: 10px;
}

.fixedLink li a {
  display: block;
  padding: 20px 5px 20px 20px;
  border-radius: 15px 0 0 15px;
  color: #e2ebf1;
  word-break: break-all;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.fixedLink .entry a {
  background: var(--color-orange);
}

.fixedLink .hp a {
  background: var(--color-green);
}

.bgBlue {
  position: relative;
  background: var(--color-lightblue);
}

.bgBlue::before {
  position: absolute;
  top: 0;
  left: 0;
  border-top: 10vw solid var(--color-white);
  border-right: 100vw solid transparent;
  content: '';
  z-index: revert-layer;
}

.bgBlue::after {
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 10vw solid var(--color-white);
  border-right: 100vw solid transparent;
  content: '';
}

.bgYellow {
  position: relative;
  background: var(--color-lightyellow);
}

.bgYellow::before {
  position: absolute;
  top: 0;
  right: 0;
  border-top: 10vw solid var(--color-white);
  border-left: 100vw solid transparent;
  content: '';
  z-index: revert-layer;
}

.bgYellow::after {
  position: absolute;
  bottom: 0;
  right: 0;
  border-bottom: 10vw solid var(--color-white);
  border-left: 100vw solid transparent;
  content: '';
}

#sv {
  position: relative;
  padding: 25vh 0 20vh;
  margin-bottom: 100px;
}

#sv h1 {
  margin: auto;
  width: 90%;
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 5px;
  text-align: center;
}

#sv.blue {
  background: var(--color-lightblue);
  color: var(--color-yellow);
}

#sv.blue::after {
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 10vw solid var(--color-white);
  border-right: 100vw solid transparent;
  content: '';
}

#sv.yellow {
  background: var(--color-lightyellow);
  color: var(--color-blue);
}

#sv.yellow::after {
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 10vw solid var(--color-white);
  border-right: 100vw solid transparent;
  content: '';
}

@media (max-width: 767px) {
  .fixedLink {
    display: flex;
    gap: 10px;
    top: auto;
    bottom: 0;
    width: 100%;
  }

  .fixedLink li {
    margin-bottom: 0;
    width: calc(33.33% - 5px);
  }

  .fixedLink li a {
    padding: 15px 10px;
    border-radius: 15px 15px 0 0;
    text-align: center;
    font-size: 1.5rem;
  }

  #sv {
    padding: 15vh 0 10vh;
    margin-bottom: 50px;
  }

  #sv h1 {
    font-size: 3.6rem;
    letter-spacing: 2px;
  }
}

/* archive
-------------------------------------------------------------- */
#interviewList ul {
  gap: 150px 20px;
}

#interviewList .card {
  width: calc(33.33% - 20px);
}

#interviewList .card .eyecatch {
  width: 100%;
  border-radius: 10px 10px 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  aspect-ratio: 1 / 1;
}

#interviewList .card .info {
  padding: 10px 20px;
}

#interviewList .card .name {
  font-size: 1.8rem;
  font-weight: 700;
}

#interviewList .card .year {
  padding: 15px 0;
  color: #808080;
  font-size: 1.5rem;
  text-align: right;
}

#interviewList .card .title {
  color: var(--color-blue);
  font-size: 2rem;
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

@media (max-width: 767px) {
  #interviewList ul {
    gap: 30px 10px;
  }

  #interviewList .card {
    width: calc(50% - 10px);
  }

  #interviewList .card .info {
    padding: 10px;
  }

  #interviewList .card .name {
    font-size: 1.6rem;
  }

  #interviewList .card .year {
    padding: 10px 0;
    font-size: 1.3rem;
  }

  #interviewList .card .title {
    font-size: 1.6rem;
    -webkit-line-clamp: 2;
  }

}

/* single
-------------------------------------------------------------- */
#interviewSingle article {
  margin: 200px 0;
  font-size: 1.5rem;
}

#interviewSingle img {
  width: 100%;
}

#interviewSingle .main {
  margin-right: calc((100% - 1100px) / 2 );
  border-radius: 0 20px 20px 0;
  background-size: cover;
  background-position: center;
  aspect-ratio: 1233 / 450;
}

#interviewSingle .ttlArea {
  align-items: flex-start;
  padding: 70px 0;
  margin-left: calc((100% - 1100px) / 2 );
}

#interviewSingle .ttlArea h2 {
  width: 25%;
  border-bottom: 4px solid var(--color-yellow);
  font-size: 4rem;
  font-weight: 700;
}

#interviewSingle .ttlArea .grayBox {
  padding: 15px 30px;
  background: #f6f6f6;
  width: 50%;
  border-radius: 10px 0 0 10px;
}

#interviewSingle .profileArea {
  margin-bottom: 70px;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid var(--color-blue);
}

#interviewSingle .profileArea dt {
  color: var(--color-blue);
  font-weight: 700;
}
#interviewSingle .profileArea .line {
  padding-top: 10px;
  margin-top: 20px;
  border-top: 1px solid var(--color-blue);
}

#interviewSingle .interviewArea dl {
  margin-bottom: 50px;
}

#interviewSingle .interviewArea dt {
  padding-bottom: 10px;
  color: var(--color-blue);
  font-size: 3.2rem;
  font-weight: 700;
}

#interviewSingle .interviewArea dd {
  line-height: 2;
}

#interviewSingle .rightImg {
  padding-bottom: 50px;
  margin-left: calc((100% - 1100px) / 2 );
}

#interviewSingle .rightImg dl {
  width: 42%;
}

#interviewSingle .rightImg .photo {
  width: 50%;
  border-radius: 20px 0 0 20px;
  background-size: cover;
  background-position: center;
  aspect-ratio: 684 / 320;
}

#interviewSingle .leftImg {
  padding-bottom: 80px;
  margin-right: calc((100% - 1100px) / 2 );
}

#interviewSingle .leftImg dl {
  width: 55%;
}

#interviewSingle .leftImg .photo {
  width: 40%;
  border-radius: 0 20px 20px 0;
  background-size: cover;
  background-position: center;
  aspect-ratio: 684 / 320;
}

#interviewSingle .messageArea dl {
  margin-bottom: 50px;
}

#interviewSingle .messageArea dt {
  margin-bottom: 20px;
  padding: 10px 20px;
  border-radius: 10px;
  background: var(--color-blue);
  color: var(--color-yellow);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
}

#interviewSingle .messageArea dd {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2;
}
@media (max-width: 767px) {
  #interviewSingle article {
    margin: 100px 0;
    font-size: 1.4rem;
  }
  
  #interviewSingle .main {
    margin-right: 5%;
  }
  
  #interviewSingle .main img {
    border-radius: 0 10px 10px 0;
  }
  
  #interviewSingle .ttlArea {
    padding: 40px 0;
    margin-left: 5%;
  }
  
  #interviewSingle .ttlArea h2 {
    width: 40%;
    font-size: 2rem;
  }
  
  #interviewSingle .ttlArea .grayBox {
    padding: 10px 20px;
  }
  
  #interviewSingle .profileArea {
    margin-bottom: 40px;
  }
  
  #interviewSingle .interviewArea dl {
    margin-bottom: 30px;
  }
  
  #interviewSingle .interviewArea dt {
    font-size: 2.4rem;
  }
  
  #interviewSingle .rightImg {
    padding-bottom: 30px;
    margin-left: 5%;
  }
  
  #interviewSingle .rightImg dl {
    margin-top: 20px;
    width: 95%;
    order: 1;
  }
  
  #interviewSingle .rightImg figure {
    width: 100%;
  }
  
  #interviewSingle .rightImg figure img {
    border-radius: 10px 0 0 10px;
  }
  
  #interviewSingle .leftImg {
    padding-bottom: 40px;
    margin-right: 5%;;
  }
  
  #interviewSingle .leftImg dl {
    margin: 20px 0 0 5%;
    width: 90%;
  }
  
  #interviewSingle .leftImg figure {
    width: 100%;
  }
  
  #interviewSingle .leftImg figure img {
    border-radius: 0 10px 10px 0;
  }
  
  #interviewSingle .messageArea dl {
    margin-bottom: 30px;
  }
  
  #interviewSingle .messageArea dt {
    font-size: 1.6rem;
  }
  
  #interviewSingle .messageArea dd {
    font-size: 1.5rem;
  }
}

/* ページネーション
-------------------------------------------------------------- */
.paging {
  position: relative;
  padding-top: 80px;
  border-top: 1px solid var(--color-gray);
}

.paging .next a,
.paging .prev a {
  position: relative;
  display: block;
  margin: auto;
  box-sizing: border-box;
  border-radius: 10px;
  border: 1px solid var(--color-blue);
  background: var(--color-white);
  width: 150px;
  color: var(--color-blue);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}

.paging .prev {
  float: left;
}

.paging .prev a {
  padding: 15px 20px 15px 50px;
  text-align: right;
}

.paging .next {
  float: right;
}

.paging .next a {
  padding: 15px 50px 15px 20px;
}

.paging .next a:after,
.paging .prev a::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 17px;
  height: 17px;
  background: url(../img/recruit/arrow_blue.png) no-repeat top center / 100% auto;
  content: "";
  transition: all 0.5s ease-in-out;
}

.paging .prev a::after {
  left: 20px;
  transform: rotate(180deg);
}

.paging .next a::after {
  right: 20px;
}

.paging .next a:hover,
.paging .prev a:hover {
  background: var(--color-lightblue);
  opacity: 1;
}

.paging .prev a:hover::after {
  left: 10px;
}

.paging .next a:hover::after {
  right: 10px;
}

.pagination {
  position: relative;
  margin-top: 200px;
  padding-top: 80px;
  border-top: 1px solid var(--color-gray);
  font-size: 1.5rem;
  width: 100%;
}

.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

a.page-numbers,
.dots {
  padding: 0 40px;
  line-height: 1;
}

a.page-numbers:hover {
  color: var(--color-blue);
}

.dots+.page-numbers {
  border-right: 0;
}

.pagination .current {
  padding: 2px 10px;
  border-radius: 5px;
  background: var(--color-blue);
  color: var(--color-white);
  font-weight: 700;
}

a.next,
a.prev {
  position: relative;
  display: block;
  box-sizing: border-box;
  border-radius: 10px;
  border: 1px solid var(--color-blue);
  background: var(--color-white);
  width: 150px;
  color: var(--color-blue);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}
a.prev {
  padding: 15px 20px 15px 50px;
  text-align: right;
}
a.next {
  padding: 15px 50px 15px 20px;
}
a.next:after,
a.prev::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 17px;
  height: 17px;
  background: url(../img/recruit/arrow_blue.png) no-repeat top center / 100% auto;
  content: "";
  transition: all 0.5s ease-in-out;
}

a.prev::after {
  left: 20px;
  transform: rotate(180deg);
}

a.next::after {
  right: 20px;
}

a.next:hover,
a.prev:hover {
  background: var(--color-lightblue);
  opacity: 1;
}

a.prev:hover::after {
  left: 10px;
}

a.next:hover::after {
  right: 10px;
}

@media (max-width: 767px) {
  .paging {
    padding-top: 30px;
  }
  .pagination {
    margin-top: 50px;
    padding-top: 30px;
    font-size: 1.2rem;
  }

  .pagination .nav-links {
    gap: 10px 0;
  }

  a.page-numbers,
  .dots {
    padding: 5px 15px;
  }

  .pagination .current {
    padding: 2px 8px;
  }
  
  a.next,
  a.prev {
    position: absolute;
    width: 40px;
    font-size: 0;
    border: none;
  }

  a.next {
    right: 0;
    padding: 5px 10px 5px 20px;
  }

  a.prev {
    left: 0;
    padding: 5px 20px 5px 10px;
  }
  a.next:after,
  a.prev::after {
    width: 25px;
    height: 25px;
  }
}

/* cvArea
-------------------------------------------------------------- */
.cvArea ul {
  margin: 200px 0 100px;
  gap: 20px;
  color: var(--color-white);
  text-align: center;
}

.cvArea li {
  width: calc(50% - 20px);
}

.cvArea span {
  position: relative;
  display: block;
  width: 100%;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 5px;
  z-index: 1;
}

.cvArea strong {
  position: relative;
  margin-top: 20px;
  display: block;
  width: 100%;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 5px;
  z-index: 1;
}

.cvArea a {
  position: relative;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px 0;
  aspect-ratio: 17 / 5;
}

.cvArea .contact a {
  border-radius: 0 10px 10px 0;
  background: url(../img/recruit/contact_bnr.png) no-repeat center / cover;
}

.cvArea .entry a {
  border-radius: 10px 0 0 10px;
  background: url(../img/recruit/recruit_bnr.png) no-repeat center / cover;
}

.cvArea a::after {
  position: absolute;
  inset: 0;
  opacity: 0;
  content: "";
  transition: all 0.5s ease-in-out;
}

.cvArea .contact a::after {
  border-radius: 0 10px 10px 0;
  background: var(--color-lightgreen);
}

.cvArea .entry a::after {
  border-radius: 10px 0 0 10px;
  background: var(--color-blue);
}

.cvArea a:hover {
  opacity: 1;
}

.cvArea a:hover::after {
  opacity: .8;
}

@media (max-width: 767px) {
  .cvArea ul {
    margin: 80px auto 50px;
    width: 90%;
    gap: 20px;
  }

  .cvArea li {
    width: 100%;
  }

  .cvArea .contact a,
  .cvArea .entry a,
  .cvArea .contact a::after,
  .cvArea .entry a::after {
    border-radius: 10px;
  }

  .cvArea span {
    font-size: 1.4rem;
    letter-spacing: 3px;
  }

  .cvArea strong {
    margin-top: 10px;
    font-size: 2.4rem;
    letter-spacing: 3px;
  }
}

/* footer
-------------------------------------------------------------- */
footer {
  position: relative;
  padding: 100px 0 20px;
  border-top: 1px solid var(--color-gray);
  font-size: 1.2rem;
  z-index: 1;
}

footer .flogo {
  width: 15%;
}

footer .txtArea {
  width: 24%;
}

footer .txtArea address {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--color-gray);
  font-style: normal;
  line-height: 1.7;
}

footer .txtArea p {
  font-weight: 700;
}

footer .txtArea span {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-lightgreen);
  letter-spacing: 2px;
}

footer .fnav {
  width: 50%;
}

footer .fnav nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

footer .fnav nav li {
  position: relative;
  padding-left: 20px;
  width: calc(33.33% - 20px);
  color: var(--color-black);
}

footer .fnav nav li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color-yellow);
  content: "--";
}

footer .fnav .subLink {
  margin-top: 30px;
  gap: 20px;
}

footer .fnav .subLink li {
  width: calc(50% - 20px);
}

footer .fnav .subLink li a {
  position: relative;
  display: block;
  padding: 12px 20px;
  box-sizing: border-box;
  border-radius: 10px;
  border: 1px solid var(--color-lightgreen);
  color: var(--color-lightgreen);
  font-weight: 700;
  line-height: 1;
}

footer .fnav .subLink li a::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
  width: 17px;
  height: 17px;
  background: url(../img/recruit/arrow_green.png) no-repeat top center / 100% auto;
  content: "";
  transition: all 0.5s ease-in-out;
}

footer .fnav .subLink li a:hover {
  background: #defacc;
}

footer .fnav .subLink li a:hover::after {
  right: 5px;
  opacity: 1;
}

footer .copy {
  padding-top: 50px;
  width: 100%;
  color: var(--color-realblack);
  text-align: center;
  font-size: 1.2rem;
}

/*page-top*/
#Pagetop {
  position: fixed;
  bottom: 50px;
  right: 3%;
  width: 42px;
  cursor: pointer;
  z-index: 999;
}

@media (max-width: 767px) {
  footer {
    padding: 50px 0 60px;
  }

  footer .flogo {
    width: 100%;
    text-align: center;
  }

  footer .txtArea {
    padding-top: 20px;
    width: 100%;
    text-align: center;
  }

  footer .txtArea p {
    font-weight: 700;
  }

  footer .fnav {
    padding-top: 20px;
    width: 100%;
  }

  footer .fnav nav ul {
    gap: 20px;
  }

  footer .fnav nav li {
    width: calc(50% - 10px);
  }

  footer .fnav .subLink {
    gap: 10px;
  }

  footer .fnav .subLink li {
    width: calc(50% - 10px);
  }

  footer .fnav .subLink li a {
    padding: 12px 15px;
  }

  footer .fnav .subLink li a::after {
    width: 15px;
    height: 15px;
  }

  footer .copy {
    padding-top: 30px;
    font-size: 1rem;
  }

}