@charset "UTF-8";
/*
Theme Name: taichi2512
*/
.font1 {
  font-family: "Bebas Neue";
}

.font2 {
  font-family: "Roboto";
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  color: #231815;
  font-size: 3.33vw;
}
@media screen and (min-width: 768px) {
  * {
    font-size: 14px;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-weight: 600;
}

a:hover {
  opacity: 0.7;
}

img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

header {
  position: fixed;
  width: 100%;
  z-index: 100;
  top: 0;
}
header .hm {
  position: fixed;
  top: 32px;
  width: 53px;
  height: 32px;
  right: 32px;
  z-index: 20;
}
@media screen and (min-width: 768px) {
  header .hm {
    display: none;
  }
}
header .hm__inner {
  width: 100%;
  height: 6px;
  background-color: #231815;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
header .hm__inner::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 6px;
  background-color: #231815;
  top: 16px;
  right: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .hm__inner::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 6px;
  background-color: #231815;
  top: 32px;
  right: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .menu {
  position: absolute;
  top: 110vh;
  width: 100%;
  height: 100vh;
  background: #faf7eb;
  z-index: 10;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
header .menu img {
  width: 50%;
  margin: 2em auto;
}
header .menu div > ul {
  width: 100%;
}
header .menu div > ul > li {
  border-top: solid 1px #231815;
  padding: 0.75rem 0;
}
header .menu div > ul > li:last-of-type span {
  margin-bottom: 4px;
}
header .menu div > ul > li > span {
  display: block;
  width: 12rem;
  margin: 0 auto;
  font-size: 24px;
}
header .menu div > ul > li > span::before {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  background-color: #b5b5b6;
  border-radius: 50%;
  margin-right: 0.5em;
}
header .menu div > ul > li a {
  display: inline-block;
  color: #231815;
  text-decoration: none;
  font-weight: bold;
  font-size: 24px;
}
header .menu div > ul > li ul li {
  position: relative;
  display: block;
  width: 12rem;
  margin: 0 auto;
  padding: 0.25em 0 0.25em 1.5rem;
}
header .menu div > ul > li ul li::before {
  content: "";
  display: block;
  width: 1em;
  height: 1px;
  position: absolute;
  background: #231815;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
header .menu div > ul > li ul li a {
  font-size: 16px;
}
header .menu.show {
  top: 0;
  opacity: 1;
}

.open .hm__inner {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
.open .hm__inner::before {
  background: #fff;
  opacity: 0;
}
.open .hm__inner::after {
  width: 100%;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  top: 0;
  left: 0;
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  header .menu {
    width: 50% !important;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1279px) {
  header .menu {
    width: 33.34% !important;
  }
}
@media screen and (min-width: 768px) {
  header .menu {
    top: 0;
    opacity: 1;
    position: fixed;
    width: 25%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-right: solid 1px #231815;
  }
}

@media screen and (min-width: 768px) {
  main {
    padding-top: 36px;
    border-right: solid 1px #231815;
  }
}
@media screen and (min-width: 1280px) {
  main {
    border-left: solid 1px #231815;
  }
}

main,
footer {
  margin: 0;
  width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  main,
  footer {
    margin-left: 50%;
    width: 50%;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1279px) {
  main,
  footer {
    margin-left: 33.33%;
    width: 33.34%;
  }
}
@media screen and (min-width: 1280px) {
  main,
  footer {
    margin-left: 50%;
    width: 25%;
  }
}

.mainTitle {
  margin: 0;
  width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .mainTitle {
    margin-left: calc(50% + 1px);
    width: calc(50% - 2px);
  }
}
@media screen and (min-width: 1025px) and (max-width: 1279px) {
  .mainTitle {
    margin-left: calc(33.33% + 1px);
    width: calc(33.34% - 2px);
  }
}
@media screen and (min-width: 1280px) {
  .mainTitle {
    margin-left: calc(50% + 1px);
    width: calc(25% - 2px);
  }
}

aside.left {
  display: none;
}
@media screen and (min-width: 1280px) {
  aside.left {
    display: block;
    position: fixed;
    top: 0;
    height: 100vh;
    background: #faf7eb;
    left: 25%;
    width: 25%;
  }
  aside.left .leftImg {
    width: 100%;
    height: 100% !important;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: bottom;
       object-position: bottom;
  }
  aside.left .leftTitle {
    height: 36px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-top: solid 1px #231815;
    border-bottom: solid 1px #231815;
    position: absolute;
    background: #faf7eb;
    width: 100%;
  }
  aside.left .leftTitle img {
    width: 52%;
  }
}

aside.right {
  display: none;
  position: fixed;
  top: 0;
  height: 100vh;
  background: #faf7eb;
  right: 0;
}
@media screen and (min-width: 1025px) and (max-width: 1279px) {
  aside.right {
    display: block;
    width: 33.33%;
  }
}
@media screen and (min-width: 1280px) {
  aside.right {
    display: block;
    width: 25%;
  }
}
aside.right .rightTitle a {
  height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-top: solid 1px #231815;
  border-bottom: solid 1px #231815;
  position: absolute;
  background: #faf7eb;
  width: 100%;
}
aside.right .rightTitle a img {
  width: 52%;
}
aside.right .rightImg {
  width: 100%;
  height: calc(100% - 32px) !important;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  margin-top: 32px;
}

.btn1 {
  display: inline-block;
  padding-right: 3em;
  padding-bottom: 0.25em;
  position: relative;
  text-decoration: none;
  margin: 1.75em;
}
.btn1 span {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  background: #231815;
  bottom: 0;
  left: 0;
  -webkit-animation: btn1 1s ease-in-out infinite;
          animation: btn1 1s ease-in-out infinite;
}
@-webkit-keyframes btn1 {
  from {
    width: 80%;
  }
  to {
    width: 100%;
  }
}
@keyframes btn1 {
  from {
    width: 80%;
  }
  to {
    width: 100%;
  }
}
.btn1 span::after {
  content: "";
  display: block;
  position: absolute;
  width: 0.5em;
  height: 1px;
  background: #231815;
  bottom: 0;
  right: 0;
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}

.btn2 {
  width: 66.7%;
  margin: 0.75em auto;
  padding: 0.375em 0;
  display: block;
  text-align: center;
  text-decoration: none;
  color: white;
  font-size: 1.25em;
  border: solid 1px white;
  border-radius: 1.75em;
  position: relative;
}
.btn2 span {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: 0.5em;
  position: relative;
  bottom: -0.25em;
  left: 0;
}
.btn2 span::before {
  content: "";
  display: block;
  width: 1em;
  height: 2px;
  background: white;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: top right;
          transform-origin: top right;
}
.btn2 span::after {
  content: "";
  display: block;
  position: absolute;
  width: 50%;
  height: 50%;
  border-top: solid 1px white;
  border-right: solid 1px white;
  top: 0;
  right: -1px;
}

@media screen and (max-height: 900px) {
  .footerInfo2 {
    display: none;
  }
}

@media screen and (max-height: 800px) {
  .footerInfo1 {
    display: none !important;
  }
}

.btn3 {
  width: 75%;
  margin: 1.5em auto;
  padding: 0.375em 0;
  display: block;
  text-align: center;
  text-decoration: none;
  color: white;
  font-size: 1.125em;
  border: solid 1px white;
}
.btn3 span {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: 0.5em;
  position: relative;
  rotate: 45deg;
}
.btn3 span::before {
  content: "";
  display: block;
  width: 1.414em;
  height: 1px;
  background: white;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: top right;
          transform-origin: top right;
}
.btn3 span::after {
  content: "";
  display: block;
  position: absolute;
  width: 50%;
  height: 50%;
  border-top: solid 1px white;
  border-right: solid 1px white;
  top: 0;
  right: -1px;
}
.btn3 img {
  display: inline-block;
  width: 1em !important;
  height: 1em;
  margin: 0 0 0 0.75em !important;
}

.mainTitle {
  display: none;
}
@media screen and (min-width: 768px) {
  .mainTitle {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background: #faf7eb;
    border-top: solid 1px #231815;
    border-bottom: solid 1px #231815;
    height: 36px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.mainTitle h1 {
  width: 85%;
}

main h2 {
  font-size: 2.25em;
  text-align: center;
  letter-spacing: 0.0875em;
  margin-bottom: 0.5em;
}
main h2 span {
  font-size: 0.5em;
  display: block;
  letter-spacing: 0em;
  padding-top: 0.5em;
  font-family: "Roboto";
}
main .scroll {
  position: absolute;
  bottom: 0px;
  right: 10%;
  padding-bottom: 0.25em;
  width: 10em;
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
  -webkit-transform: rotate(90deg) translateX(50%);
          transform: rotate(90deg) translateX(50%);
}
main .scroll span {
  display: block;
  width: 100%;
  height: 1px;
  background: black;
  position: relative;
  -webkit-animation: scroll 1s ease-in-out infinite;
          animation: scroll 1s ease-in-out infinite;
}
@-webkit-keyframes scroll {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes scroll {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
main .scroll span::after {
  content: "";
  display: block;
  width: 8px;
  height: 1px;
  position: absolute;
  right: 0;
  bottom: 0;
  background: black;
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}

main.home {
  position: relative;
}
main.home .mv {
  position: relative;
}
main.home .mv .logo {
  width: 54%;
  margin: 32px auto 30px;
}
main.home .mv .official {
  width: 62.5%;
  margin: 0px auto 2em;
}
main.home .news {
  padding: 2em 0;
}
main.home .news .newsWrap {
  background: #eeeae5;
  padding: 1.75em;
}
main.home .news .newsWrap ul.newsGroup {
  background: white;
  padding: 1.75em;
}
main.home .news .newsWrap ul.newsGroup li:not(:first-child) {
  padding-top: 1.75em;
  margin-top: 1.75em;
  border-top: 1px solid #101250;
}
main.home .news .newsWrap ul.newsGroup li a {
  text-decoration: none;
}
main.home .news .newsWrap ul.newsGroup li h3 {
  font-size: 1.25em;
  margin: 0.25em 0;
}
main.home .news .newsWrap ul.newsGroup li p {
  font-size: 0.875em;
}
main.home .nagaokashoyu .logoNagaokashouga {
  width: 83.3%;
  margin: 0px auto;
}
main.home .nagaokashoyu h2 {
  margin: 0.75em 0;
}
main.home .nagaokashoyu p {
  text-align: center;
  font-size: 1.25em;
  line-height: 1.75em;
  margin-bottom: 1.75em;
}
main.home .foodMenu {
  background: #ffe33f;
  padding: 4em 0 2em;
}
main.home .foodMenu h2 {
  font-weight: 800;
}
main.home .foodMenu h2 span {
  font-weight: 600;
}
main.home .foodMenu table {
  width: 100%;
  border-collapse: collapse;
}
main.home .foodMenu table th {
  background: #231815;
  color: white;
  padding: 0.25em 0;
  font-weight: 800;
  border: solid 1px #231815;
}
main.home .foodMenu table td {
  border: 1px solid #231815;
  padding: 0.5rem 0;
  text-align: center;
  font-weight: 800;
}
main.home .foodMenu table td span {
  display: block;
  font-size: 2.5em;
  margin-bottom: 0.5em;
  font-family: "Roboto";
  font-weight: 600;
}
main.home .foodMenu ul li {
  padding: 1.5em 0 3em;
  border-bottom: solid 1px #231815;
}
main.home .foodMenu ul li h3 {
  font-size: 1.375em;
  text-align: center;
}
main.home .foodMenu ul li img {
  width: 66.67%;
  margin: 0 auto;
}
main.home .foodMenu ul li p {
  font-weight: 800;
  text-align: center;
}
main.home .foodMenu .gyoza th,
main.home .foodMenu .gyoza td {
  font-size: 1.375em;
}
main.home .foodMenu .childplan h3 {
  font-size: 1.25em;
  text-align: center;
  background: #231815;
  color: white;
  padding: 0.125em 0;
}
main.home .foodMenu .childplan h4 {
  font-size: 1.75em;
  text-align: center;
  margin: 0.5em 0;
}
main.home .foodMenu .childplan img {
  width: 66.67%;
  margin: 0 auto;
}
main.home .foodMenu .childplan p {
  text-align: center;
  font-weight: 800;
}
main.home .kodawari {
  padding: 1.5em 0 0;
}
main.home .kodawari .headline {
  width: 80%;
  margin: 0 auto 2em;
}
main.home .kodawari ul li {
  background: #eeeae5;
  border-top: solid 1px #231815;
}
main.home .kodawari ul li .kodawariImg {
  position: relative;
  width: 62.5%;
  margin: 0 auto;
}
main.home .kodawari ul li .kodawariImg img:last-child {
  position: absolute;
  width: 44%;
  bottom: 2.5%;
  right: 0;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}
main.home .kodawari ul li:nth-child(even) .kodawariImg img:last-child {
  right: auto;
  left: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  bottom: auto;
  top: 50%;
}
main.home .kodawari ul li:nth-child(4) .kodawariImg img:last-child {
  bottom: auto;
  top: 35%;
}
main.home .kodawari ul li:nth-child(5) .kodawariImg {
  width: 100%;
}
main.home .kodawari ul li:nth-child(5) .kodawariImg img.donImg2 {
  height: 100% !important;
  aspect-ratio: 3/2;
  width: auto !important;
  position: absolute;
  top: 0;
  z-index: 9999;
}
main.home .kodawari ul li:nth-child(5) .kodawariImg img:last-child {
  width: 30%;
  right: 20%;
  bottom: -5%;
}
main.home .kodawari ul li .donImg {
  position: relative;
  display: block;
}
main.home .kodawari ul li p {
  font-size: 0.875em;
  text-align: center;
  line-height: 1.675em;
  padding: 2.5em 0 5.25em;
}

.footer .footerInfo {
  background: #231815;
  padding: 1em 0 0;
}
.footer .footerInfo h2,
.footer .footerInfo p {
  color: white;
  text-align: center;
}
.footer .footerInfo h2 {
  font-size: 1.5em;
  margin: 1.25em 0 0.25em;
}
.footer .footerInfo p {
  font-size: 1.25em;
  line-height: 1.5em;
}
.footer .footerInfo p span {
  font-size: 0.875em;
  color: white;
}
.footer .footerInfo img {
  width: 56%;
  margin: 2em auto 0;
}
.footer .footerInfo .credit {
  margin-top: 2em;
  font-size: 0.875em;
  border-top: solid 1px white;
  padding: 0.5em 0;
}
.footer .footerInfo a {
  color: white !important;
  text-decoration: none !important;
}

header .footer {
  display: none;
}
@media screen and (min-width: 768px) {
  header .footer {
    display: block;
  }
}
header .footer .footerInfo {
  margin: 0 !important;
  padding: 1.5em 0 0;
}
header .footer .footerInfo h2 {
  font-size: 18px !important;
}
header .footer .footerInfo p {
  font-size: 0.875em !important;
}
header .footer .footerInfo .btn2 {
  font-size: 0.75em !important;
}
header .footer .footerInfo .btn3 {
  font-size: 0.75em !important;
}

main.recruit .cv {
  display: block;
  z-index: 90;
  width: 90%;
  margin: 0 auto;
}
main.recruit h2 {
  font-weight: 800;
}
main.recruit .mv .mvMain {
  position: relative;
  margin-bottom: 28%;
}
main.recruit .mv .mvMain .scroll {
  display: inline-block;
  color: white;
  z-index: 10;
  bottom: auto;
  top: 50%;
}
main.recruit .mv .mvMain .scroll span {
  background: white;
}
main.recruit .mv .mvMain .scroll span::after {
  background: white;
}
main.recruit .mv .mvMain .cv {
  position: absolute;
  bottom: 25%;
  left: 5%;
}
main.recruit .mv .mvMain .mvRamen {
  position: absolute;
  bottom: 0;
  z-index: 10;
  -webkit-transform: translateY(60%);
          transform: translateY(60%);
}
main.recruit .mv .mvMain .yuge {
  position: absolute;
  width: 100%;
  bottom: 0;
  right: 0;
  z-index: 20;
  -webkit-animation: yuge 8s ease-in-out infinite;
          animation: yuge 8s ease-in-out infinite;
}
@-webkit-keyframes yuge {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 0;
  }
  25% {
    -webkit-transform: scale(0.85);
            transform: scale(0.85);
    opacity: 1;
  }
  75% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
}
@keyframes yuge {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 0;
  }
  25% {
    -webkit-transform: scale(0.85);
            transform: scale(0.85);
    opacity: 1;
  }
  75% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
}
main.recruit .mv .mvMessage {
  position: relative;
}
main.recruit .mv .mvMessage .text {
  position: absolute;
  top: 30%;
  right: 4%;
}
main.recruit .mv .mvMessage .text h2 {
  color: #ffe33f;
  font-size: 1.5em;
  text-align: left;
  margin-bottom: 1em;
}
main.recruit .mv .mvMessage .text p {
  color: white;
  font-weight: 800;
}
main.recruit .mv .mvMessage .cv {
  position: absolute;
  bottom: 5%;
  left: 5%;
}
main.recruit .job {
  position: relative;
}
main.recruit .job .cv {
  position: absolute;
  bottom: 2%;
  left: 5%;
}
main.recruit .shop {
  padding: 15% 0 35%;
  position: relative;
}
main.recruit .shop .cv {
  position: absolute;
  bottom: 2%;
  left: 5%;
}
main.recruit .career {
  position: relative;
}
main.recruit .career .cv {
  position: absolute;
  bottom: 0%;
  left: 5%;
}
main.recruit .merit {
  position: relative;
}
main.recruit .merit .cv {
  position: absolute;
  bottom: 5%;
  left: 5%;
}
main.recruit .leadCopy {
  text-align: center;
}
main.recruit .voice {
  padding: 10% 0;
}
main.recruit .voice .voiceHeadline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
main.recruit .voice .voiceHeadline:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
main.recruit .voice .voiceHeadline > div {
  -ms-flex-preferred-size: 74%;
      flex-basis: 74%;
}
main.recruit .voice .voiceHeadline h3 {
  -ms-flex-preferred-size: 26%;
      flex-basis: 26%;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 2.25em;
  padding: 0 0.5em;
  font-weight: 800;
}
main.recruit .voice p {
  padding: 8%;
  font-size: 1.25em;
}
main.recruit .flow {
  background: #eff0ec;
  padding: 8% 0;
}
main.recruit .flow .logo2 {
  width: 50%;
  margin: 0 auto 6%;
}
main.recruit .faq {
  padding: 8% 5%;
}
main.recruit .faq dl {
  border-bottom: solid 1px #231815;
}
main.recruit .faq dl dt {
  position: relative;
  font-weight: 800;
  font-size: 1.25em;
  border-top: solid 1px #231815;
  padding: 0.5em 1.5em 0.5em 3%;
}
@media screen and (min-width: 768px) {
  main.recruit .faq dl dt:hover {
    cursor: pointer;
  }
}
main.recruit .faq dl dt::before {
  content: "Q. ";
  font-family: "Roboto";
}
main.recruit .faq dl dt::after {
  content: "";
  display: block;
  width: 0.675em;
  height: 0.675em;
  border-right: 5px solid #231815;
  border-bottom: 5px solid #231815;
  position: absolute;
  right: 0.5em;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
main.recruit .faq dl dt.open::after {
  -webkit-transform: translateY(-50%) rotate(225deg);
          transform: translateY(-50%) rotate(225deg);
}
main.recruit .faq dl dd {
  background: #eff0ec;
  font-size: 1.125em;
  padding: 0.5em;
  display: none;
}
main.recruit .details {
  padding: 8% 0;
}
main.recruit .details table {
  width: 90%;
  margin: 0 auto;
  border-collapse: collapse;
  margin-bottom: 8%;
}
main.recruit .details table th,
main.recruit .details table td {
  padding: 0.5em 0.25em;
}
main.recruit .details table th {
  width: 5em;
}
main.recruit .details table tr:nth-of-type(odd) {
  background: #eff0ec;
}
main.recruit .message {
  padding: 8% 0;
}
main.recruit .message .cv {
  display: block;
  margin: 3em auto;
}

ul.timeline {
  margin-left: 8%;
  position: relative;
}
ul.timeline::before {
  content: "";
  display: block;
  position: absolute;
  width: 2px;
  height: 90%;
  background: #231815;
  left: -1px;
  top: 2%;
}
ul.timeline li {
  padding-left: 5%;
  margin-bottom: 10%;
  position: relative;
}
ul.timeline li::before {
  content: "";
  display: block;
  width: 1.125em;
  height: 1.125em;
  background: #ffe33f;
  border: solid 2px #231815;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 5%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
ul.timeline li .time {
  font-size: 1.25em;
  font-weight: 800;
}
ul.timeline li h3 {
  font-size: 1.675em;
  font-weight: 800;
  margin: 0.125em 0 0.75em;
}
ul.timeline li p.description {
  font-size: 1.125em;
  font-weight: 500;
}

main.staff .mv .mvMain {
  margin-bottom: 10%;
}
main.staff .mv .cv {
  position: static !important;
  width: 66%;
}
main.staff .mv .scroll {
  color: #231815 !important;
  top: auto !important;
  bottom: 5% !important;
}
main.staff .mv .scroll span {
  background: #231815 !important;
}
main.staff .mv .scroll span::after {
  background: #231815 !important;
}
main.staff .mv .mvMessage {
  position: relative;
}
main.staff .mv .mvMessage .text {
  right: auto !important;
  left: 4% !important;
  top: 10% !important;
  -webkit-transform: none !important;
          transform: none !important;
}
main.staff .mv .mvMessage .mvRamen {
  position: absolute;
  bottom: 0;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  z-index: 10;
}
main.staff .mv .mvMessage .yuge {
  position: absolute;
  width: 100%;
  bottom: 0;
  right: 0;
  z-index: 20;
  -webkit-animation: yuge 8s ease-in-out infinite;
          animation: yuge 8s ease-in-out infinite;
}
main.staff .job {
  padding-top: 5%;
}
main.staff .job .cv {
  bottom: auto;
  top: 5.2% !important;
  width: 80% !important;
  left: 10% !important;
}
main.staff .shop {
  padding: 10% 0;
}
main.staff .shop .cv {
  position: static !important;
}
main.staff .career,
main.staff .flow,
main.staff .details {
  background: #ffe33f;
  padding: 3em 0;
}
main.staff .career .jobTitle,
main.staff .flow .jobTitle,
main.staff .details .jobTitle {
  font-size: 1.25em;
  font-weight: 800;
  color: white;
  background: #231815;
  width: 12em;
  text-align: center;
  padding: 0.5em 0;
  margin: 0.75em auto;
  border-radius: 2em;
}
main.staff .career .timeline,
main.staff .flow .timeline,
main.staff .details .timeline {
  background: white;
  padding: 1em;
  margin: 0 auto;
  width: 90%;
}
main.staff .career .timeline::before,
main.staff .flow .timeline::before,
main.staff .details .timeline::before {
  left: calc(1em - 1px);
  top: 2em;
  height: calc(100% - 4em);
}
main.staff .career .timeline li:last-of-type,
main.staff .flow .timeline li:last-of-type,
main.staff .details .timeline li:last-of-type {
  margin-bottom: 1em;
}
main.staff .career .swiper,
main.staff .flow .swiper,
main.staff .details .swiper {
  position: relative;
}
main.staff .career .swiper .swiper-pagination,
main.staff .flow .swiper .swiper-pagination,
main.staff .details .swiper .swiper-pagination {
  top: 0 !important;
}
main.staff .career .swiper .swiper-pagination-bullet,
main.staff .flow .swiper .swiper-pagination-bullet,
main.staff .details .swiper .swiper-pagination-bullet {
  width: 0.75em !important;
  height: 0.75em !important;
  background: #c9caca;
  opacity: 1 !important;
}
main.staff .career .swiper .swiper-pagination-bullet-active,
main.staff .flow .swiper .swiper-pagination-bullet-active,
main.staff .details .swiper .swiper-pagination-bullet-active {
  background: #231815 !important;
}
main.staff .career .swiper .swiper-prev,
main.staff .career .swiper .swiper-next,
main.staff .flow .swiper .swiper-prev,
main.staff .flow .swiper .swiper-next,
main.staff .details .swiper .swiper-prev,
main.staff .details .swiper .swiper-next {
  position: absolute;
  z-index: 20;
  width: 2em;
  height: 2em;
  background: white;
  top: 1.5em;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
main.staff .career .swiper .swiper-prev::after,
main.staff .career .swiper .swiper-next::after,
main.staff .flow .swiper .swiper-prev::after,
main.staff .flow .swiper .swiper-next::after,
main.staff .details .swiper .swiper-prev::after,
main.staff .details .swiper .swiper-next::after {
  content: "";
  display: block;
  width: 0.75em;
  height: 0.75em;
}
main.staff .career .swiper .swiper-prev,
main.staff .flow .swiper .swiper-prev,
main.staff .details .swiper .swiper-prev {
  left: 5%;
}
main.staff .career .swiper .swiper-prev::after,
main.staff .flow .swiper .swiper-prev::after,
main.staff .details .swiper .swiper-prev::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: -webkit-gradient(linear, left bottom, right top, color-stop(50%, black), color-stop(50%, transparent));
  background: linear-gradient(to top right, black 50%, transparent 50%);
}
main.staff .career .swiper .swiper-next,
main.staff .flow .swiper .swiper-next,
main.staff .details .swiper .swiper-next {
  right: 5%;
}
main.staff .career .swiper .swiper-next::after,
main.staff .flow .swiper .swiper-next::after,
main.staff .details .swiper .swiper-next::after {
  background: -webkit-gradient(linear, right top, left bottom, color-stop(50%, black), color-stop(50%, transparent));
  background: linear-gradient(to bottom left, black 50%, transparent 50%);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
main.staff .career .cv,
main.staff .flow .cv,
main.staff .details .cv {
  position: static !important;
  margin-top: 3em;
}
main.staff .details table {
  background: white;
  border-radius: 0.5em;
}
main.staff .details table tr:first-of-type th {
  border-radius: 0.5em 0 0 0;
}
main.staff .details table tr:first-of-type td {
  border-radius: 0 0.5em 0 0;
}

.cmsContent {
  padding: 3em 0;
  width: 90%;
  margin: 0 auto;
}

.contact h3 {
  margin: 1em 0 0.25em;
}
.contact h3:first-of-type {
  margin-top: 0;
}
.contact h3.require::after {
  content: "必須";
  color: red;
  font-size: 0.875em;
  font-weight: 800;
  margin-left: 0.25em;
}
.contact .inputText,
.contact select,
.contact textarea {
  background: #eeeae5;
  padding: 0.5em;
  width: 100%;
  border-radius: 0.25em;
}
.contact .contactSubmit {
  display: block;
  width: 90%;
  padding: 1em 0;
  background: #ffe33f;
  margin: 2em auto 0;
}