@charset "UTF-8";
/* ////////////////////////////// */
/* 全般
////////////////////////////// */
:root {
  --backC: #f3f3f3;
  --contentC1: #22b573;
  --contentC2: #136641;
  --contentC3: #fcee21;
  --fontC: #333333;
  --white: #fefefe;
}
html {
  scroll-padding-top: 82px;
  scroll-behavior: smooth;
  background-color: var(--backC);
}
body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-weight: 500;
  font-style: normal;
  color: var(--fontC);
}
img {
  width: 100%;
  max-width: 100%;
}
@media screen and (max-width: 1000px) {
  body {
    font-size: 16px;
  }
}
/* ////////////////////////////// */
/* header
////////////////////////////// */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  z-index: 99;
}
.headerWrap {
  padding: 16px 32px;
  margin: 0 auto;
  width: 100%;
  max-width: 1920px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.siteTitle {
  display: flex;
  align-items: center;
  column-gap: 0.5em;
  color: var(--white);
  transition: 0.4s ease-in-out all;
  z-index: 999;
}
.page .siteTitle {
  color: var(--contentC1);
}
.page .navOpen .siteTitle {
  color: var(--white);
}
.header_logo {
  width: 50px;
  height: 50px;
  background: url(../img/header_logo.png) center center no-repeat;
  background-size: contain;
  transition: 0.4s ease-in-out all;
}
.page .header_logo {
  background: url(../img/main_logo.png) center center no-repeat;
  background-size: contain;
}
.page .navOpen .header_logo {
  background: url(../img/header_logo.png) center center no-repeat;
  background-size: contain;
}
#navBtn {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: 0.4s all ease-in-out;
  cursor: pointer;
  z-index: 999;
}
.scrolled #navBtn {
  background-color: var(--contentC1);
}
.page .scrolled #navBtn {
  background-color: var(--backC);
}
#navBtn span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.4s ease-out;
  width: 25px;
  height: 2px;
  background-color: var(--white);
}
.page #navBtn span {
  background-color: var(--contentC1);
}
#navBtn span:nth-of-type(1) {
  top: 30%;
}
#navBtn span:nth-of-type(3) {
  top: 70%;
}
.scrolled.navOpen #navBtn {
  background-color: rgba(0, 0, 0, 0);
}
.navOpen #navBtn span {
  background-color: var(--white);
}
.navOpen #navBtn span:nth-of-type(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-135deg);
}
.navOpen #navBtn span:nth-of-type(2) {
  opacity: 0;
}
.navOpen #navBtn span:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(135deg);
}
.navWrap {
  margin: 0 auto;
  padding: 114px 64px 64px 64px;
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  background-color: var(--contentC2);
  animation: navOpen 0.4s ease-in;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 32px;
  z-index: 99;
  display: none;
}
.navOpen .navWrap {
  display: flex;
  color: var(--white);
}
.navWrap ul {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}
@media screen and (max-width: 1000px) {
  .headerWrap {
    padding: 16px 5%;
  }
  .navWrap {
    margin: 0;
    width: 100%;
    height: 100%;
  }
}
@keyframes navOpen {
  0% {
    opacity: 0;
    transform: translateX(50%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/* ////////////////////////////// */
/* main全般
////////////////////////////// */
.secWrap {
  margin-top: 128px;
}
.contentWrap {
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
}
.basicWrap {
  padding: 0 64px;
}
.textWrap {
  line-height: 1.8;
}
.item_center {
  display: flex;
  justify-content: center;
}
.item_right {
  display: flex;
  justify-content: flex-end;
}
.item_left {
  display: flex;
  justify-content: flex-start;
}
.basicBtn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 8px;
  background-color: var(--contentC1);
  color: var(--white);
  font-weight: 700;
  transition: 0.2s all ease-in;
  line-height: 1;
}
.basicBtn:hover {
  background-color: var(--contentC2);
}
.basicBtn span {
  display: inline-block;
}
.head01 {
  /* 色付き文字（メインカラー） */
  font-weight: 700;
  color: var(--contentC1);
  letter-spacing: 0.1em;
}
.head02 {
  /* 文字+背景色（メインカラー） */
  display: inline-block;
  background-color: var(--contentC1);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
}
.head03 {
  /* 色付き文字（白） */
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
}
.head04 {
  /* 色付き文字（白） */
  font-weight: 700;
  letter-spacing: 0.1em;
}
.break {
  display: inline-block;
}
@media screen and (max-width: 1000px) {
  .basicWrap {
    padding: 0 5%;
  }
}
/* ////////////////////////////// */
/* Swiper全般
////////////////////////////// */
.swiper {
  width: 100%;
  height: auto;
}
/* ////////////////////////////// */
/* #mv
////////////////////////////// */
#mv {
  margin: 0 auto;
  position: relative;
  width: 100%;
  max-width: 1920px;
  height: 56.3%;
}
#mv::before {
  position: absolute;
  bottom: -1px;
  left: 0;
  content: "";
  width: 100%;
  height: 50px;
  clip-path: polygon(50% 0, 0 100%, 100% 100%);
  background-color: var(--backC);
  z-index: 9;
}
@media screen and (max-width: 1000px) {
  #mv {
    width: 100%;
    height: 100vh;
  }
  #mv img {
    height: 100vh;
    object-fit: cover;
  }
}
/* ////////////////////////////// */
/* .container01：上下に装飾
////////////////////////////// */
.container01 {
  margin-top: 64px;
}
.c01_top,
.c01_bottom {
  width: 100vw;
  max-width: 100%;
  height: 15.6vw;
  background: url(../img/asset01.png) center bottom no-repeat;
  background-size: cover;
}
.c01_top {
  margin-bottom: -1px;
}
.c01_bottom {
  margin-top: -1px;
  transform: scale(1, -1);
}
.c01_content {
  padding: 128px 0;
  display: flex;
  flex-direction: column;
  row-gap: 128px;
  background-color: var(--white);
}
@media screen and (max-width: 1000px) {
  .c01_content {
    padding: 64px 0;
  }
}
/* ////////////////////////////// */
/* .container02：背景色がメインカラー
////////////////////////////// */
.container02 {
  margin-top: -15.6vw;
  padding-top: 15.6vw;
  border-top: 1px solid var(--white);
  background-color: var(--contentC1);
  color: var(--white);
}
.c02_content {
  padding: 128px 0 64px 0;
  display: flex;
  flex-direction: column;
  row-gap: 128px;
}
@media screen and (min-width: 1920px) {
  .container02 {
    margin-top: -299px;
    padding-top: 300px;
  }
}
@media screen and (max-width: 1000px) {
  .c02_content {
    padding: 64px 0 64px 0;
  }
}
/* ////////////////////////////// */
/* .layout01：企業情報（概要）
////////////////////////////// */
.layout01 {
  display: grid;
  grid-template-columns: repeat(2, auto);
  column-gap: 64px;
}
.coNameWrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 16px;
  color: var(--contentC1);
}
.layout01 .head01 {
  font-size: 32px;
}
.mainLogo {
  width: 100px;
  height: 100px;
  background: url(../img/main_logo.png) center center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1000px) {
  .layout01 {
    grid-template-columns: auto;
    grid-template-rows: repeat(2, auto);
    column-gap: 0;
    row-gap: 32px;
  }
  .layout01 .head01 {
    font-size: 24px;
  }
  .layout01 .item_right {
    justify-content: center;
  }
}
/* ////////////////////////////// */
/* .layout02：事業内容
////////////////////////////// */
.layout02 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  grid-template-areas: "textContainer imageContainer";
  column-gap: 64px;
}
.l02_imageContainer {
  margin-left: 112px;
  /* 内訳:タイトル80px+余白48px */
  grid-area: imageContainer;
  position: relative;
  display: flex;
  flex-direction: column;
}
.l02_titleWrap {
  position: absolute;
  top: 0;
  left: -32px;
}
.l02_title {
  position: relative;
  transform: rotate(90deg);
  transform-origin: top left;
}
.l02_title .head02 {
  font-size: 32px;
  writing-mode: vertical-rl;
  text-orientation: upright;
  transform: translate(-100%, 0) rotate(-90deg);
  transform-origin: top right;
}
.l02_subTitle {
  font-size: 24px;
  color: var(--contentC1);
  white-space: nowrap;
}
.l02_image {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}
.l02_image picture:nth-child(even) {
  margin-left: -48px;
}
.l02_textContainer {
  grid-area: textContainer;
  display: flex;
  flex-direction: column;
  row-gap: 64px;
}
.l02_textContainer .head01 {
  font-size: 24px;
}
@media screen and (max-width: 1000px) {
  .layout02 {
    display: flex;
    flex-direction: column;
    column-gap: 0;
    row-gap: 32px;
  }
  .l02_imageContainer {
    margin-left: 0;
    flex-direction: column-reverse;
    row-gap: 16px;
  }
  .l02_image {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .l02_image picture:nth-child(even) {
    margin: 16px 0 0 0;
  }
  .l02_titleWrap {
    position: inherit;
    top: inherit;
    left: inherit;
  }
  .l02_title {
    position: relative;
    transform: rotate(0deg);
    transform-origin: inherit;
  }
  .l02_title .head02 {
    font-size: 24px;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    transform: translate(0, 0) rotate(0deg);
    transform-origin: inherit;
  }
  .l02_subTitle {
    font-size: 20px;
    white-space: inherit;
  }
  .l02_textContainer {
    row-gap: 32px;
  }
  .l02_textContainer .head01 {
    font-size: 20px;
  }
}
/* ////////////////////////////// */
/* .layout03：企業風土
////////////////////////////// */
.layout03 {
  margin: 0 auto;
  position: relative;
  width: 100%;
  max-width: 1920px;
  height: calc(100vh - 82px);
  max-height: 998px;
  background: url(../img/l03_image01.jpg) center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  color: var(--white);
}
.layout03::before,
.layout03::after {
  position: absolute;
  left: 50%;
  content: "";
  width: 100%;
  max-width: 1920px;
  height: 15.6vw;
  max-height: 300px;
  background: url(../img/asset01.png) center bottom no-repeat;
  background-size: cover;
  z-index: 9;
}
.layout03::before {
  position: absolute;
  top: -1px;
  transform: translateX(-50%) scale(1, -1);
}
.layout03::after {
  bottom: -1px;
  transform: translateX(-50%);
}
.l03_title {
  position: absolute;
  top: 50%;
  left: calc(40% - 108px);
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: upright;
  z-index: 9;
}
.l03_title .head03 {
  font-size: 32px;
}
.layout03 .swiper {
  height: calc(100vh - 82px);
  max-height: 998px;
}
.layout03 .swiper-slide {
  padding: 15.6vw 64px;
}
.layout03 .swiper-button-prev,
.layout03 .swiper-button-next {
  position: absolute;
  left: 40%;
  transform: rotate(90deg);
  color: var(--white);
}
.layout03 .swiper-button-prev {
  top: calc(15.6vw + 12px);
}
.layout03 .swiper-button-next {
  top: calc(100% - (15.6vw + 12px));
}
.layout03 .swiper-pagination-vertical {
  left: calc(40% + 8px);
}
.layout03 .swiper-pagination-bullet {
  background-color: var(--white);
  opacity: 0.8;
}
.layout03 .swiper-pagination-bullet-active {
  background-color: var(--contentC1);
  opacity: 1;
}
.l03_textWrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  text-shadow: 4px 4px 8px var(--fontC);
}
.l03_text {
  padding-left: 64px;
  width: 60%;
  font-size: 24px;
}
.l03_text .head03 {
  margin-bottom: 32px;
  font-size: 32px;
}
@media screen and (min-width: 1920px) {
  .layout03 .swiper-slide {
    padding: 300px 64px;
  }
  .layout03 .swiper-button-prev {
    top: 311px;
  }
  .layout03 .swiper-button-next {
    top: calc(100% - 311px);
  }
}
@media screen and (max-width: 1000px) {
  .l03_title {
    top: calc(calc(15.6vw + 6px) + 32px);
    left: 50%;
    transform: translateX(-50%);
    writing-mode: horizontal-tb;
    text-orientation: mixed;
  }
  .layout03 .swiper-slide {
    padding: 15.6vw 5%;
  }
  .layout03 .swiper-button-prev,
  .layout03 .swiper-button-next {
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }
  .layout03 .swiper-button-prev {
    top: calc(15.6vw + 6px);
  }
  .layout03 .swiper-button-next {
    top: calc(100% - calc(15.6vw + 6px));
  }
  .layout03 .swiper-button-next:after,
  .layout03 .swiper-button-prev:after {
    font-size: 22px;
  }
  .layout03 .swiper-pagination-vertical {
    left: calc(5% - 4px);
  }
  .l03_text {
    padding-left: calc(5% + 4px);
    width: 100%;
    font-size: 20px;
  }
  .l03_title .head03,
  .l03_text .head03 {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .l03_text {
    font-size: 18px;
  }
  .l03_title .head03,
  .l03_text .head03 {
    font-size: 20px;
  }
  .l03_text .head03 {
    margin-bottom: 16px;
  }
}
/* ////////////////////////////// */
/* .layout04：採用情報（概要）
////////////////////////////// */
.layout04 {
  display: grid;
  grid-template-columns: 300px auto;
  justify-content: center;
  align-items: center;
  column-gap: 64px;
}
.l04_imageContainer img {
  width: 300px;
  border-radius: 50%;
}
.l04_titleWrap {
  position: relative;
  font-size: 128px;
  font-weight: 700;
  color: var(--contentC3);
  letter-spacing: 0.05em;
  text-align: center;
}
.l04_titleWrap span {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  color: var(--fontC);
}
.l04_textContainer {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}
.l04_text {
  text-align: center;
}
.l04_text .basicBtn {
  margin-top: 32px;
}
@media screen and (max-width: 1000px) {
  .layout04 {
    grid-template-columns: auto;
    grid-template-rows: 300px auto;
    column-gap: 0;
  }
  .l04_imageContainer {
    text-align: center;
  }
  .l04_titleWrap {
    font-size: 64px;
  }
  .l04_titleWrap span {
    font-size: 24px;
  }
}
/* ////////////////////////////// */
/* .layout05：オフィス紹介
////////////////////////////// */
.layout05 .head03 {
  margin-bottom: 64px;
  font-size: 32px;
}
.layout05 .swiper-container {
  overflow: visible;
}
.layout05 .swiper-slide {
  width: calc((100% / 4) - 32px);
}
.layout05 .swiper-button-prev,
.layout05 .swiper-button-next {
  color: var(--white);
}
@media screen and (max-width: 1000px) {
  .layout05 .swiper-slide {
    width: 100%;
  }
}
/* ////////////////////////////// */
/* .layout_form：お問い合わせフォーム
////////////////////////////// */
.layout_form {
  padding-top: 114px;
  padding-bottom: 128px;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 64px;
}
.form_title {
  font-size: 32px;
}
.layout_form form {
  width: 100%;
}
.layout_form input:not([type="radio"]),
.layout_form textarea {
  padding: 0.25em;
  width: 100%;
  border: 1px solid var(--contentC1);
  background-color: var(--white);
}
.layout_form textarea {
  resize: none;
}
.layout_form input[type="radio"] {
  margin-right: 0.5em;
  width: 0.8em;
  height: 0.8em;
  border: 1px solid var(--contentC1);
  border-radius: 50%;
  background-color: var(--white);
}
.layout_form input[type="radio"]:checked {
  background-color: var(--contentC1);
}
.input_required::before {
  content: "※";
}
.formTextWrap {
  text-align: center;
  color: var(--contentC1);
}
.formWrap {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.subjectWrap {
  display: flex;
  column-gap: 32px;
}
.subjectList {
  display: flex;
  flex-direction: column;
}
.submitBtnWrap {
  margin-top: 16px;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .layout_form {
    row-gap: 32px;
  }
  .form_title {
    font-size: 24px;
  }
}
/* ////////////////////////////// */
/* footer
////////////////////////////// */
#footer {
  background-color: var(--contentC1);
}
.page #footer {
  background-color: var(--backC);
}
.footerWrap {
  margin: 0 auto;
  max-width: 1000px;
  padding: 64px 0 32px 0;
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-template-areas:
    "coName coInfo"
    "copyLight copyLight";
  justify-content: center;
  align-items: center;
  column-gap: 64px;
  row-gap: 64px;
  background-color: var(--contentC1);
  color: var(--white);
}
.page .footerWrap {
  box-shadow: 0px 0px 32px -16px var(--contentC2);
}
.footerWrap .head03 {
  font-size: 24px;
}
.footerLogo {
  width: 100px;
  height: 100px;
  background: url(../img/header_logo.png) center center no-repeat;
  background-size: contain;
}
.footerWrap .coNameWrap {
  grid-area: coName;
}
.coInfoWrap {
  grid-area: coInfo;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.copyLightWrap {
  grid-area: copyLight;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 16px;
}
.footerWrap .basicBtn {
  color: var(--contentC1);
  background-color: var(--white);
}
.footerWrap .basicBtn:hover {
  opacity: 0.7;
}
.copyLightWrap a {
  /* 後で削除 */
  color: var(--contentC3);
}
@media screen and (max-width: 1000px) {
  .footerWrap {
    grid-template-columns: auto;
    grid-template-areas:
      "coName"
      "coInfo"
      "copyLight";
    column-gap: 0;
    row-gap: 32px;
  }
  .footerWrap .head03 {
    font-size: 20px;
  }
  .coInfoWrap {
    align-items: center;
  }
}
/* ////////////////////////////// */
/* 下層ページ共通
////////////////////////////// */
.page {
  background-color: var(--backC);
}
.page .contentWrap {
  background-color: var(--white);
  box-shadow: 0px 0px 32px -16px var(--contentC2);
}
#page_mv {
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
  height: 100vh;
  max-height: 1080vh;
  display: flex;
  column-gap: 32px;
}
.page_title {
  margin-left: 64px;
  padding-right: 28px;
}
#page_mv .page_title {
  margin: 114px 0 0 64px;
}
.page_title .head02 {
  position: relative;
  font-size: 32px;
  writing-mode: vertical-rl;
  text-orientation: upright;
}
.page_subTitle {
  position: absolute;
  font-size: 24px;
  color: var(--contentC1);
  white-space: nowrap;
  transform: translate(0, 150%) rotate(90deg);
}
.mv_menu {
  position: relative;
  width: 100%;
  height: 100%;
  background: url(../img/mv03.jpg) left center no-repeat;
  background-size: cover;
}
.mv_menu::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  content: "";
  width: 100%;
  height: 156px;
  background: url(../img/asset01.png) center bottom no-repeat;
  background-size: contain;
}
.mv_menu ul {
  padding: 114px 64px 64px 0;
  border-radius: 0 0 32px 0;
  display: inline-block;
  background-color: var(--white);
  list-style: disc;
  list-style-position: inside;
  color: var(--contentC1);
}
.mv_menu a {
  transition: 0.4s all ease-in-out;
}
.mv_menu a:hover {
  color: var(--contentC2);
}
.page .secWrap {
  padding-bottom: 128px;
  display: flex;
  flex-direction: column;
  row-gap: 128px;
}
.page_secWrap {
  margin: 0 auto;
  width: 100%;
  display: flex;
  column-gap: 32px;
}
.page_secContent {
  padding: 0 64px 0 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 128px;
}
.page_secContent .textWrap .item_left {
  margin-top: 32px;
}
/* レイアウト（画像あり） */
.page_imageContainer {
  display: grid;
  grid-template-columns: 300px auto;
  column-gap: 32px;
}
.page_secImage {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 16px;
}
.page_secImage img {
  border-radius: 50%;
}
/* レイアウト（一覧/見出し5文字以内） */
.page_secList01 {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}
.page_secList01 li {
  display: grid;
  grid-template-columns: calc(5em + (0.1em * 5)) auto;
  column-gap: 32px;
}
/* レイアウト（一覧/見出し6文字以内） */
.page_secList02 {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}
.page_secList02 li {
  display: grid;
  grid-template-columns: calc(6em + (0.1em * 6)) auto;
  column-gap: 32px;
}
/* レイアウト（マップあり） */
.page_mapContainer {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}
.page_secMap {
  height: 500px;
}
/* レイアウト（インタビュー） */
.page_secInterview {
  display: flex;
  flex-direction: column;
  row-gap: 64px;
}
.secInterview_info {
  display: flex;
  align-items: center;
  column-gap: 64px;
}
.secInterview_info img {
  width: 300px;
  border-radius: 50%;
}
.secInterview_title {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}
.secInterview_title {
  font-size: 24px;
}
.secInterview_title .head02 {
  margin-top: 8px;
}
.secInterview_title .head02 span:nth-of-type(1) {
  margin-top: 0;
}
.secInterview_title .textWrap {
  font-size: 18px;
}
/* レイアウト（アコーディオンパネル） */
.secAcContainer {
  border-top: 1px solid var(--contentC1);
}
.secAcContainer li {
  width: 100%;
  border-bottom: 1px solid var(--contentC1);
}
.secAcBtn {
  position: relative;
  width: 50px;
  height: 50px;
}
.secAcHead {
  padding: 8px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.secAcBtn span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  width: 25px;
  height: 2px;
  background-color: var(--contentC1);
  transition: 0.2s ease-in-out all;
}
.secAcBtn span:nth-of-type(2) {
  transform: translate(-50%, -50%) rotate(90deg);
  content: "";
  width: 25px;
  height: 2px;
  background-color: var(--contentC1);
}
.acOpen .secAcBtn span:nth-of-type(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.acOpen .secAcBtn span:nth-of-type(2) {
  transform: translate(-50%, -50%) rotate(135deg);
}
.secAcContent {
  padding: 24px 16px 32px 16px;
  display: none;
  animation: acOpen 0.2s ease-in-out;
}
.acOpen .secAcContent {
  display: block;
}
.secAcContent .page_secList02 li {
  border: none;
}
.secAcBtn_close {
  margin-top: 32px;
  color: var(--contentC1);
  font-weight: 700;
  cursor: pointer;
}
.secAcBtn_close::before {
  margin-right: 8px;
  content: "×";
}
@keyframes acOpen {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media screen and (max-width: 1000px) {
  #page_mv {
    column-gap: 5%;
  }
  .page_title {
    margin-left: 5%;
    padding-right: 23px;
  }
  #page_mv .page_title {
    margin: 114px 0 0 5%;
  }
  .page_title .head02 {
    font-size: 24px;
  }
  .page_subTitle {
    font-size: 20px;
  }
  .mv_menu ul {
    padding: 114px 32px 32px 0;
  }
  .page_secWrap {
    column-gap: 5%;
  }
  .page_secContent {
    padding: 0 5% 0 0;
    row-gap: 64px;
  }
  /* レイアウト（画像あり） */
  .page_imageContainer {
    display: grid;
    grid-template-columns: auto;
    column-gap: 0;
    row-gap: 32px;
  }
  /* レイアウト（マップあり） */
  .page_secMap {
    height: 300px;
  }
  /* レイアウト（インタビュー） */
  .page_secInterview {
    row-gap: 32px;
  }
  .secInterview_info {
    flex-direction: column;
    column-gap: 0;
    row-gap: 32px;
  }
  .secInterview_title {
    font-size: 20px;
    row-gap: 16px;
  }
  .secInterview_title .textWrap {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  /* レイアウト（一覧/見出し5文字以内） */
  /* レイアウト（一覧/見出し6文字以内） */
  .page_secList01 li,
  .page_secList02 li {
    grid-template-columns: auto;
    grid-template-rows: repeat(auto-fit, minmax(1em, auto));
  }
  /* レイアウト（アコーディオンパネル） */
  .secAcContent {
    padding: 16px 0 24px 0;
  }
}
/* ////////////////////////////// */
/* #page_about（下層ページ）
////////////////////////////// */
#about_sec03 .page_subTitle {
  transform: translate(20%, 90%) rotate(90deg);
}
#about_sec04 .page_subTitle {
  transform: translate(10%, 100%) rotate(90deg);
}
#about_sec05 .page_subTitle {
  transform: translate(20%, 100%) rotate(90deg);
}
/* ////////////////////////////// */
/* #page_recruit（下層ページ）
////////////////////////////// */
#page_recruit .mv_menu {
  background: url(../img/mv02.jpg) left 40% center no-repeat;
  background-size: cover;
}
#page_recruit #page_mv .page_subTitle {
  transform: translate(20%, 100%) rotate(90deg);
}
#recruit_sec01 .page_subTitle {
  transform: translate(8%, 120%) rotate(90deg);
}
#recruit_sec04 .page_subTitle {
  transform: translate(40%, 50%) rotate(90deg);
}
