@charset "UTF-8";
/* -------------------------------- */
/* responsive set                   */
/* -------------------------------- */
/* -------------------------------- */
/* common                      */
/* -------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400&display=swap");
body, h1, h2, h3, h4, h5, p, ul, li, ol, figure {
  margin: 0;
  padding: 0;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.8;
}
.main-wrap {
  padding: 60px;
  box-sizing: border-box;
}
@media screen and (max-width: 834px) {
  .main-wrap {
    padding: 60px 5%;
  }
}
@media screen and (max-width: 430px) {
  .main-wrap {
    width: 100%;
    padding: 60px 0;
  }
}
main.main-wrap {
  margin-top: 24px;
}
@media screen and (max-width: 834px) {
  main.main-wrap {
    margin-top: 0px;
  }
}
main#top.main-wrap {
  margin-top: 0px;
}
@media screen and (max-width: 834px) {
  main#top.main-wrap {
    margin-top: 0px;
  }
}
.pc {
  display: block;
}
@media screen and (max-width: 430px) {
  .pc {
    display: none;
  }
}
.sp {
  display: none;
}
@media screen and (max-width: 430px) {
  .sp {
    display: block;
  }
}
/* -------------------------------- */
/* header                           */
/* -------------------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 60px 30px 60px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  z-index: 998;
}
@media screen and (max-width: 834px) {
  header {
    display: block;
    padding: 30px 5%;
  }
}
/*　上に上がる動き　*/
#header.UpMove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}
/*　下に下がる動き　*/
#header.DownMove {
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
header h1 img {
  width: 145px;
  height: auto;
  display: block;
}
header nav:nth-of-type(1) {
  display: flex;
  align-items: center;
  letter-spacing: 0;
}
header nav:nth-of-type(1) ul {
  list-style: none;
  display: flex;
  align-items: center;
}
header nav:nth-of-type(1) ul li {
  margin-right: 25px;
  color: #b2b2b2;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}
header nav:nth-of-type(2) {
  display: none;
}
header nav ul li a, header nav p a {
  color: #333;
  text-decoration: none;
}
header nav ul li a {
  display: block;
  position: relative;
}
#btn-all a {
  position: relative;
}
#btn-all a:after, header nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0%;
  width: 100%;
  height: 2px;
  background: #ffe300;
  transition: all 0.3s;
  transform: scale(0, 1);
  transform-origin: left top;
}
li:has(a[aria-current="page"]) a::after, #btn-all a:hover::after, header nav ul li.current a::after, header nav ul li a:hover::after {
  transform: scale(1, 1);
}
@media screen and (max-width: 834px) {
  li:has(a[aria-current="page"]) a::after, #btn-all a:hover::after, header nav ul li.current a::after, header nav ul li a:hover::after {
    transform: scale(0, 0);
  }
}
header nav p {
  display: flex;
  align-items: center;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  padding-top: 2px;
  box-sizing: border-box;
  color: #b2b2b2;
}
header nav p img {
  width: 15px;
  height: auto;
  display: block;
  margin-left: 10px;
}
header nav p strong {
  font-weight: 400;
  color: #333;
}
@media screen and (max-width: 1150px) {
  header nav:nth-of-type(1) {
    display: none;
  }
  header nav:nth-of-type(2) {
    display: block;
  }
  #panel-btn {
    display: inline-block;
    width: 30px;
    height: 25px;
    position: absolute;
    text-decoration: none;
    top: 30px;
    right: 60px;
    cursor: pointer;
    z-index: 999;
  }
  #panel-btn-icon {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 2px;
    margin: -1px 0 0 -15px;
    background: #333;
    transition: 0.2s;
  }
  #panel-btn-icon:before, #panel-btn-icon:after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 30px;
    height: 2px;
    background: #333;
    transition: 0.3s;
  }
  #panel-btn-icon:before {
    margin-top: -12px;
  }
  #panel-btn-icon:after {
    margin-top: 10px;
  }
  #panel-btn .close {
    background: transparent;
  }
  #panel-btn .close:before, #panel-btn .close:after {
    margin-top: 0;
  }
  #panel-btn .close:before {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  #panel-btn .close:after {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
  }
  #panel {
    display: none;
  }
  ul#panel {
    padding: 30px 0 0 0;
    background: #fff;
    list-style: none;
    box-sizing: border-box;
  }
  ul#panel li {
    border-bottom: 1px #e5e5e5 solid;
    padding: 10px 0px;
    color: #b2b2b2;
    font-weight: 400;
  }
  ul#panel li a {
    color: #333;
    text-decoration: none;
    margin: 0 0px;
    display: block;
  }
  #panel li:nth-last-of-type(1), #panel li:nth-last-of-type(2) {
    border: none;
  }
  #panel li:nth-last-of-type(1) {
    padding-top: 5px 0 0 0;
  }
  #panel li:nth-last-of-type(1) h2 {
    color: #333;
    font-weight: 400;
    font-size: 0.9rem;
    word-wrap: break-word;
    white-space: nowrap;
  }
  #panel header nav p {
    display: block;
    margin-top: 10px;
  }
  #panel header nav p img {
    width: 30px;
    height: auto;
    margin: 20px 0 0 0;
  }
  #panel li:nth-last-of-type(2) a, #panel li:nth-last-of-type(1) h2 a, header nav ul li:nth-last-of-type(2) a {
    display: inline;
  }
}
@media screen and (max-width: 1150px) and (max-width: 320px) {
  ul#panel {
    padding: 20px;
  }
}
@media screen and (max-width: 1150px) and (max-width: 834px) {
  #panel-btn {
    right: 5%;
  }
}
#wrap-panel.open::after {
  display: block;
}
/* -------------------------------- */
/* footer                           */
/* -------------------------------- */
footer.main-wrap {
  background: #fff;
}
@media screen and (max-width: 834px) {
  footer.main-wrap {
    padding: 60px 5% 20px 5%;
  }
}
footer a#btn-contact {
  color: #fff;
  background: #000;
  text-decoration: none;
  font-size: 2rem;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
  width: 100%;
  text-align: center;
  border-radius: 30px;
  transition: 0.3s ease;
}
@media screen and (max-width: 430px) {
  footer a#btn-contact {
    height: 200px;
  }
}
footer a#btn-contact strong {
  font-weight: 300;
}
footer a#btn-contact:hover {
  color: #ffe300;
}
footer ul {
  display: flex;
  list-style: none;
  display: flex;
  justify-content: space-between;
  margin: 40px 0;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 430px) {
  footer ul {
    display: block;
  }
}
footer ul li {
  color: #b2b2b2;
}
footer ul li a {
  text-decoration: none;
  color: #333;
}
footer ul li p {
  display: flex;
  align-items: center;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  padding-top: 4px;
  box-sizing: border-box;
}
footer ul li p img {
  width: 15px;
  height: auto;
  display: block;
  margin-left: 10px;
}
footer ul li p strong {
  font-weight: 400;
  color: #333;
}
footer h2 {
  letter-spacing: 0.05rem;
  font-size: 0.9rem;
  font-weight: 300;
}
footer h2 a {
  color: #333;
  text-decoration: none;
}
footer small {
  font-family: "Montserrat", sans-serif;
  display: block;
  border-top: solid #333 1px;
  padding-top: 15px;
  margin-top: 15px;
  font-size: 0.8rem;
}
.breadcrumbs {
  font-size: 0.8rem;
  margin: 40px 0 0 0;
  padding-bottom: 20px;
  border-bottom: solid #333 1px;
}
.breadcrumbs a {
  text-decoration: none;
  color: #333;
}
.breadcrumbs span span {
  margin: 0 1em;
}
.breadcrumbs span:nth-of-type(1) span {
  margin: 0 1em 0 0;
}
/* -------------------------------- */
/* top                              */
/* -------------------------------- */
#wrap-video {
  text-align: center;
  margin-top: 84px;
  overflow: hidden;
}
@media screen and (max-width: 430px) {
  #wrap-video {
    position: relative;
    height: 50vh;
  }
}
#wrap-video video {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 430px) {
  #wrap-video video {
    width: auto;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
}
#top section, #top ul {
  max-width: 1400px;
  margin: 0 auto 160px auto;
}
@media screen and (max-width: 430px) {
  #top section, #top ul {
    margin: 0 auto 100px auto;
  }
}
#top section h2 img, #top section h3 img, #top section li img, #top ul h2 img, #top ul h3 img, #top ul li img {
  width: 100%;
  height: auto;
}
#top section h2 img.pc, #top section h3 img.pc, #top section li img.pc, #top ul h2 img.pc, #top ul h3 img.pc, #top ul li img.pc {
  display: block;
}
@media screen and (max-width: 430px) {
  #top section h2 img.pc, #top section h3 img.pc, #top section li img.pc, #top ul h2 img.pc, #top ul h3 img.pc, #top ul li img.pc {
    display: none;
  }
}
#top section h2, #top section h3 {
  position: relative;
}
#top section h2 a, #top section h3 a {
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 430px) {
  #top section h2 a, #top section h3 a {
    color: #000;
  }
}
#top section h4 a, #top ul a {
  color: #333;
  text-decoration: none;
  display: block;
}
#top section h2 strong, #top section h2 span, #top section h3 strong, #top section h3 span, #top section h4 strong, #top section h4 span, #top section li strong, #top section li span, #top ul h2 strong, #top ul h2 span, #top ul h3 strong, #top ul h3 span, #top ul h4 strong, #top ul h4 span, #top ul li strong, #top ul li span {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 1;
}
#top section h2 strong, #top section h2 em, #top section h2 span, #top section h3 strong, #top section h3 em, #top section h3 span {
  position: absolute;
  left: 0;
}
@media screen and (max-width: 430px) {
  #top section h2 strong, #top section h2 em, #top section h2 span, #top section h3 strong, #top section h3 em, #top section h3 span {
    position: static;
  }
}
#top section h2 strong, #top section h3 strong {
  top: 40px;
  border-top: #fff 1px solid;
  font-size: 3rem;
  display: block;
  width: calc(100% - 200px);
  padding-top: 25px;
  margin: 0 100px;
}
@media screen and (max-width: 834px) {
  #top section h2 strong, #top section h3 strong {
    width: calc(100% - 10%);
    margin: 0 5%;
  }
}
@media screen and (max-width: 430px) {
  #top section h2 strong, #top section h3 strong {
    font-size: 2rem;
    border-top: #000 1px solid;
    margin: 40px 5% 0 5%;
    width: calc(100% - 10%);
  }
}
#top section h2 em, #top section h3 em {
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  top: 120px;
  font-size: 1rem;
  display: block;
  width: calc(100% - 200px);
  margin: 0 100px;
}
@media screen and (max-width: 834px) {
  #top section h2 em, #top section h3 em {
    width: calc(100% - 10%);
    margin: 0 5%;
  }
}
@media screen and (max-width: 430px) {
  #top section h2 em, #top section h3 em {
    margin: 0.2em 5% 0 5%;
    width: calc(100% - 10%);
  }
}
#top section h2 span, #top section h3 span {
  top: 160px;
  display: block;
  margin: 0 100px;
  border-color: #fff;
}
@media screen and (max-width: 834px) {
  #top section h2 span, #top section h3 span {
    margin: 0 5%;
  }
}
@media screen and (max-width: 430px) {
  #top section h2 span, #top section h3 span {
    margin: 1em 5% 0 5%;
    display: table;
  }
}
#top ul li strong {
  font-size: 1.5rem;
  display: block;
  margin: 20px 0 0 0;
}
@media screen and (max-width: 834px) {
  #top ul li strong {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 430px) {
  #top ul li strong {
    font-size: 1.5rem;
  }
}
#top ul li em {
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  display: block;
  margin: 5px 0 10px 0;
}
#top section h4 a {
  display: flex;
}
@media screen and (max-width: 430px) {
  #top section h4 a {
    display: block;
  }
}
#top section h4 a img {
  display: block;
  width: 50%;
  height: auto;
}
@media screen and (max-width: 430px) {
  #top section h4 a img {
    width: 100%;
  }
}
#top section h4 a div {
  width: 50%;
  padding-left: 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 430px) {
  #top section h4 a div {
    width: 100%;
    padding-left: 0px;
  }
}
#top section h4 a div strong {
  font-size: 3rem;
  display: block;
  border-top: #333 1px solid;
  padding-top: 25px;
}
@media screen and (max-width: 430px) {
  #top section h4 a div strong {
    font-size: 2rem;
    margin: 40px 5% 0 5%;
    width: calc(100% - 10%);
  }
}
#top section h4 a div span {
  margin-top: 15px;
}
@media screen and (max-width: 430px) {
  #top section h4 a div span {
    margin: 1em 5% 0 5%;
  }
}
#top section h4 a div em {
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  display: block;
  width: calc(100% - 200px);
  margin-top: 5px;
}
@media screen and (max-width: 834px) {
  #top section h4 a div em {
    margin: 0 5%;
  }
}
@media screen and (max-width: 430px) {
  #top section h4 a div em {
    margin: 0.2em 5% 0 5%;
  }
}
#top section h2 span, #top section h3 span, #top section h4 span, #top section li span, #top ul h2 span, #top ul h3 span, #top ul h4 span, #top ul li span {
  border: 1px solid;
  font-size: 12px;
  border-radius: 2rem;
  padding: 0.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.3);
  transition: 0.3s ease;
}
#top section li span, #top section h4 span, #top ul li span, #top ul h4 span {
  display: table;
  border-color: #333;
}
#top section h2.color-b a, #top section h3.color-b a {
  color: #333;
}
#top section h2.color-b strong, #top section h3.color-b strong {
  border-top: #333 1px solid;
}
#top section h2.color-b span, #top section h3.color-b span {
  border: #333 1px solid;
}
#top section h3, #top ul {
  padding: 0 75px;
  width: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 834px) {
  #top section h3, #top ul {
    padding: 0;
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
  }
}
@media screen and (max-width: 430px) {
  #top ul {
    padding: 0 5%;
  }
}
@media screen and (max-width: 430px) {
  #top section h3 {
    padding: 0;
  }
}
#top ul {
  list-style: none;
  display: flex;
}
@media screen and (max-width: 430px) {
  #top ul {
    flex-wrap: wrap;
  }
}
#top ul li {
  margin-right: 45px;
}
@media screen and (max-width: 834px) {
  #top ul li {
    margin-right: 3%;
  }
}
@media screen and (max-width: 430px) {
  #top ul li {
    width: calc(95% / 2);
    margin-right: 0;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 430px) {
  #top ul li:nth-of-type(odd) {
    margin-right: 5%;
  }
}
#top ul li:last-of-type {
  margin-right: 0;
}
#top section h2 a:hover span, #top section h3 a:hover span, #top section li a:hover span, #top section h4 a:hover span, #top ul h2 a:hover span, #top ul h3 a:hover span, #top ul li a:hover span, #top ul h4 a:hover span {
  color: #fff;
  border-color: #333;
  background-color: black;
}
#btn-all {
  text-align: center;
}
@media screen and (max-width: 430px) {
  #btn-all {
    margin-bottom: 40px;
  }
}
#btn-all a {
  color: #333;
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
}
#btn-all span {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 10px;
  height: 2px;
  background: currentColor;
  position: relative;
  margin: -1px 5px 0 0;
}
#btn-all span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
}
/* -------------------------------- */
/* recruit                        */
/* -------------------------------- */
#recruit #wrap01, #recruit #wrap02, #recruit #wrap03, #recruit #wrap04, #recruit #wrap05 {
  width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 834px) {
  #recruit #wrap01, #recruit #wrap02, #recruit #wrap03, #recruit #wrap04, #recruit #wrap05 {
    width: 90%;
    height: auto;
    margin: 0 5%;
    box-sizing: border-box;
  }
}
#recruit #wrap01 dl, #recruit #wrap02 dl, #recruit #wrap03 dl, #recruit #wrap04 dl, #recruit #wrap05 dl {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 430px) {
  #recruit #wrap01 dl, #recruit #wrap02 dl, #recruit #wrap03 dl, #recruit #wrap04 dl, #recruit #wrap05 dl {
    display: block;
  }
}
#recruit #wrap01 dl dt, #recruit #wrap02 dl dt, #recruit #wrap03 dl dt, #recruit #wrap04 dl dt, #recruit #wrap05 dl dt {
  width: 13em;
  margin-bottom: 50px;
}
@media screen and (max-width: 430px) {
  #recruit #wrap01 dl dt, #recruit #wrap02 dl dt, #recruit #wrap03 dl dt, #recruit #wrap04 dl dt, #recruit #wrap05 dl dt {
    width: 100%;
    margin-bottom: 1em;
  }
}
#recruit #wrap01 dl dt h3, #recruit #wrap02 dl dt h3, #recruit #wrap03 dl dt h3, #recruit #wrap04 dl dt h3, #recruit #wrap05 dl dt h3 {
  text-align: center;
  font-weight: 500;
  font-size: 1rem;
  background: #f7f7f7;
  border-radius: 2em;
  padding: 0.5em 1em;
}
@media screen and (max-width: 430px) {
  #recruit #wrap01 dl dt h3, #recruit #wrap02 dl dt h3, #recruit #wrap03 dl dt h3, #recruit #wrap04 dl dt h3, #recruit #wrap05 dl dt h3 {
    text-align: left;
  }
}
#recruit #wrap01 dl dd, #recruit #wrap02 dl dd, #recruit #wrap03 dl dd, #recruit #wrap04 dl dd, #recruit #wrap05 dl dd {
  width: calc(100% - 13em);
  margin: 0;
  padding-left: 3em;
  box-sizing: border-box;
  margin-bottom: 50px;
}
@media screen and (max-width: 430px) {
  #recruit #wrap01 dl dd, #recruit #wrap02 dl dd, #recruit #wrap03 dl dd, #recruit #wrap04 dl dd, #recruit #wrap05 dl dd {
    width: 100%;
    padding-left: 0;
  }
}
#recruit #wrap01 dl dd ul, #recruit #wrap02 dl dd ul, #recruit #wrap03 dl dd ul, #recruit #wrap04 dl dd ul, #recruit #wrap05 dl dd ul {
  margin-left: 1.5em;
}
#recruit #wrap02, #recruit #wrap03, #recruit #wrap04 {
  border-top: 1px solid #000;
  padding-top: 50px;
  margin-top: 50px;
}
#recruit #wrap01 p {
  margin-bottom: 50px;
}
#recruit #wrap01 ul {
  margin-left: 1.5em;
}
#recruit #wrap01 ul li {
  margin-bottom: 1em;
}
#recruit #wrap04 h2 {
  font-weight: 500;
  font-size: 1.2em;
  margin-bottom: 1em;
}
#recruit #wrap04 dl {
  margin-top: 50px;
}
#recruit #wrap05 {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 430px) {
  #recruit #wrap05 {
    display: block;
  }
}
#recruit #wrap05 div {
  border: #f7f7f7 solid 7px;
  border-radius: 50px;
  padding: 2em 2.5em;
  box-sizing: border-box;
  width: 48%;
}
@media screen and (max-width: 430px) {
  #recruit #wrap05 div {
    border: #f7f7f7 solid 5px;
    border-radius: 30px;
    padding: 1em 2em;
    width: 100%;
  }
}
#recruit #wrap05 div h3 {
  border-bottom: #f7f7f7 solid 3px;
  font-size: 1em;
  font-weight: 500;
  margin-bottom: 2em;
  padding-bottom: 1em;
  display: flex;
  align-items: center;
}
#recruit #wrap05 div h3 span {
  padding-right: 0.3em;
  padding-top: 2px;
}
#recruit #wrap05 div h4 {
  font-size: 1em;
  font-weight: 500;
  margin-bottom: 2em;
}
#recruit #wrap05 div p {
  font-size: 0.9rem;
}
#recruit #wrap05 div a {
  background: #000;
  text-decoration: none;
  color: #fff;
  font-weight: 400;
  font-size: 0.9rem;
  border-radius: 2em;
  display: table;
  padding: 1em 2em;
  margin-top: 1.5em;
  line-height: 1;
  box-sizing: border-box;
}
#recruit #wrap05 div:nth-of-type(1) {
  margin-bottom: 1em;
}
.dli-chevron-round-right {
  margin-left: 1em;
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  position: relative;
  width: 0.7em;
  height: 0.7em;
  transform: translateX(-25%) rotate(45deg);
}
.dli-chevron-round-right::before, .dli-chevron-round-right::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 2px;
}
.dli-chevron-round-right::before {
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}
.dli-chevron-round-right::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: 2px;
}
/* -------------------------------- */
/* nize                           */
/* -------------------------------- */
#nize {
  margin: 84px 0 100px 0;
}
#nize #wrap01 {
  position: relative;
  width: 1100px;
  margin: 0 auto;
  height: 500px;
}
@media screen and (max-width: 834px) {
  #nize #wrap01 {
    width: 90%;
    height: 330px;
    margin: 0 5%;
  }
}
@media screen and (max-width: 430px) {
  #nize #wrap01 {
    width: 100%;
    height: 300px;
    margin: 0 auto;
  }
}
#nize #wrap01 > div {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media screen and (max-width: 430px) {
  #nize #wrap01 > div {
    left: 0;
    width: 100%;
  }
}
#nize #wrap01 .sp div:nth-of-type(2) {
  position: absolute;
  top: 140%;
  width: 100%;
}
#nize #wrap01 figure {
  position: absolute;
  width: 900px;
  top: 0;
  left: 200px;
  height: 500px;
}
@media screen and (max-width: 834px) {
  #nize #wrap01 figure {
    width: calc(100% - 150px);
    height: 330px;
    left: 150px;
    overflow: hidden;
  }
}
@media screen and (max-width: 430px) {
  #nize #wrap01 figure {
    width: 100%;
    height: 300px;
    left: 0px;
    overflow: hidden;
  }
}
#nize #wrap01 figure img {
  display: block;
  height: auto;
  width: 100%;
}
@media screen and (max-width: 430px) {
  #nize #wrap01 figure img {
    width: 140%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
}
#nize #wrap01 p {
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  line-height: 1;
  margin-bottom: 5px;
}
@media screen and (max-width: 430px) {
  #nize #wrap01 p {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    -webkit-text-combine: horizontal;
    -ms-text-combine-horizontal: all;
    text-combine-upright: all;
    color: #fff;
    font-size: 0.8rem;
    margin-left: 5px;
  }
}
#nize #wrap01 span {
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  line-height: 1;
}
@media screen and (max-width: 430px) {
  #nize #wrap01 span {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    color: #fff;
    font-size: 0.8rem;
    margin-left: 5px;
  }
}
#nize #wrap01 h2 {
  font-weight: 400;
  font-size: 1.3rem;
  margin-top: 15px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #fff;
  background: #333;
  padding: 0.2em 0.5em;
  display: table;
}
@media screen and (max-width: 834px) {
  #nize #wrap01 h2 {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 430px) {
  #nize #wrap01 h2 {
    margin-top: 5px;
    margin-left: 5%;
  }
}
#nize #wrap01 h2:nth-of-type(2) {
  margin: 5px 0 0 1.5em;
}
@media screen and (max-width: 430px) {
  #nize #wrap01 h2:nth-of-type(2) {
    margin: 5px 0 0 5%;
  }
}
#nize #wrap02 {
  padding-left: 200px;
  box-sizing: border-box;
  width: 1100px;
  margin: 50px auto;
  display: flex;
}
@media screen and (max-width: 834px) {
  #nize #wrap02 {
    width: 90%;
    padding-left: 150px;
    display: block;
    margin: 2em 5% 50px 5%;
  }
}
@media screen and (max-width: 430px) {
  #nize #wrap02 {
    width: 90%;
    padding-left: 0;
    display: block;
    margin: 150px 5% 50px 5%;
  }
}
#nize #wrap02 div {
  width: 30%;
}
@media screen and (max-width: 834px) {
  #nize #wrap02 div {
    width: 100%;
  }
}
#nize #wrap02 div strong {
  color: #b2b2b2;
  font-family: "Montserrat", sans-serif;
  display: block;
  font-weight: 300;
  font-size: 0.8rem;
}
@media screen and (max-width: 430px) {
  #nize #wrap02 div strong {
    margin-bottom: 1em;
  }
}
#nize #wrap02 div h2 {
  font-weight: 400;
  font-size: 0.8rem;
}
@media screen and (max-width: 430px) {
  #nize #wrap02 div h2 {
    font-size: 1rem;
    margin-bottom: 1em;
  }
}
#nize #wrap02 div h3 {
  font-weight: 300;
  font-size: 1.5rem;
}
#nize #wrap02 div h4 {
  font-weight: 300;
  font-size: 0.6rem;
  font-family: "Montserrat", sans-serif;
  margin-top: 5px;
}
#nize #wrap02 p {
  width: 70%;
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.8;
}
@media screen and (max-width: 834px) {
  #nize #wrap02 p {
    width: 100%;
    margin-top: 2em;
  }
}
#nize #wrap02 p a {
  color: #333;
  position: relative;
  text-decoration: none;
  margin-top: 2em;
  display: table;
}
#nize #wrap02 p a::after {
  content: "";
  position: absolute;
  height: 1px;
  left: 0;
  background: #333;
  bottom: 0px;
  width: 100%;
  transition: 0.4s;
}
#nize #wrap02 p a:hover::after {
  background: #ffe300;
}
#nize .wrap-post {
  padding: 100px 0;
}
#nize .wrap-post > div {
  width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 834px) {
  #nize .wrap-post > div {
    width: 100%;
    padding: 0 5%;
    box-sizing: border-box;
  }
}
#nize .wrap-post > div div {
  width: auto;
}
#nize .wrap-post div.swiper {
  width: auto;
}
#nize .wrap-post h2 {
  font-weight: 500;
  font-size: 1.1rem;
}
#nize .wrap-post p {
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.8;
}
#nize .wrap-post:nth-of-type(odd) {
  background: #f7f7f7;
}
@media screen and (max-width: 430px) {
  #nize .wrap-post:nth-of-type(odd) {
    padding-top: 0;
  }
}
#nize .type01 figure {
  width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 834px) {
  #nize .type01 figure {
    width: 100%;
  }
}
#nize .type01 figure img {
  width: 100%;
  height: auto;
  display: block;
}
#nize .type02 figure, #nize .type03 figure {
  width: 50%;
  margin: 0 auto;
}
@media screen and (max-width: 834px) {
  #nize .type02 figure, #nize .type03 figure {
    width: 40%;
  }
}
@media screen and (max-width: 430px) {
  #nize .type02 figure, #nize .type03 figure {
    width: 100%;
  }
}
#nize .type02 figure img, #nize .type03 figure img {
  width: 100%;
  height: auto;
  display: block;
}
#nize .type01 h2, #nize .type01 p {
  width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 834px) {
  #nize .type01 h2, #nize .type01 p {
    width: 100%;
  }
}
#nize .type01 h2 {
  margin: 50px auto 30px auto;
}
@media screen and (max-width: 430px) {
  #nize .type01 h2 {
    margin: 2em 0 1.5em 0;
  }
}
@media screen and (max-width: 430px) {
  #nize .type01 h2 br {
    display: none;
  }
}
#nize .type02 div {
  display: flex;
}
@media screen and (max-width: 430px) {
  #nize .type02 div {
    flex-wrap: wrap;
  }
}
#nize .type02 div div {
  display: block;
  width: 50%;
  padding-left: 50px;
  box-sizing: border-box;
}
@media screen and (max-width: 834px) {
  #nize .type02 div div {
    width: 60%;
  }
}
@media screen and (max-width: 430px) {
  #nize .type02 div div {
    width: 100%;
    padding-left: 0px;
  }
}
#nize .type02 div h2, #nize .type02 div p {
  margin: 0 auto;
}
#nize .type02 div h2 {
  margin-bottom: 30px;
}
@media screen and (max-width: 430px) {
  #nize .type02 div h2 {
    margin: 2em 0 1.5em 0;
  }
}
@media screen and (max-width: 430px) {
  #nize .type02 div h2 br {
    display: none;
  }
}
#nize .type03 div {
  display: flex;
  flex-direction: row-reverse;
}
@media screen and (max-width: 430px) {
  #nize .type03 div {
    flex-direction: column;
    flex-wrap: wrap;
  }
}
#nize .type03 div div {
  display: block;
  width: 50%;
  padding-right: 50px;
  box-sizing: border-box;
}
@media screen and (max-width: 834px) {
  #nize .type03 div div {
    width: 60%;
  }
}
@media screen and (max-width: 430px) {
  #nize .type03 div div {
    width: 100%;
    padding-right: 0px;
  }
}
#nize .type03 div h2, #nize .type03 div p {
  margin: 0 auto;
}
#nize .type03 div h2 {
  margin-bottom: 30px;
}
@media screen and (max-width: 430px) {
  #nize .type03 div h2 {
    margin: 2em 0 1.5em 0;
  }
}
@media screen and (max-width: 430px) {
  #nize .type03 div h2 br {
    display: none;
  }
}
#nize .type_ph div {
  display: flex;
  flex-wrap: wrap;
  width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 834px) {
  #nize .type_ph div {
    width: 100%;
  }
}
@media screen and (max-width: 430px) {
  #nize .type_ph div {
    display: block;
  }
}
#nize .type_ph div figure {
  width: calc((100% - 50px) / 2);
  margin-bottom: 50px;
}
@media screen and (max-width: 430px) {
  #nize .type_ph div figure {
    width: 100%;
    margin-bottom: 20px;
    display: block;
  }
}
#nize .type_ph div figure img {
  width: 100%;
  height: auto;
  display: block;
}
#nize .type_ph div figure:nth-of-type(odd) {
  margin-right: 50px;
}
#nize .wrap-post.type_other {
  padding-top: 100px;
}
#nize .wrap-post.type_other > div {
  width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 834px) {
  #nize .wrap-post.type_other > div {
    width: 100%;
    padding: 0;
  }
}
#nize .wrap-post.type_other > div h2 {
  text-align: center;
  font-weight: 400;
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 1em;
}
.swiper-wrapper {
  list-style: none;
}
.swiper-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media screen and (max-width: 430px) {
  .swiper-slide-next, .swiper-slide-prev {
    opacity: 0.3;
  }
}
.swiper-button-next:after, .swiper-button-prev:after {
  color: #000;
  font-size: 1.5rem !important;
}
.swiper-slide {
  height: 180px !important;
  width: auto;
  overflow: hidden;
}
#works-post .swiper-slide {
  overflow: auto;
  height: auto !important;
}
#works-post .swiper-slide a {
  color: #333;
}
#works-post .swiper-slide a figure {
  height: auto !important;
  width: auto;
  overflow: hidden;
}
#works-post .swiper-slide a p {
  font-size: 0.9rem;
  font-weight: 400;
  margin-top: 5px;
}
.swiper-wrapper img {
  height: 100% !important;
  width: auto !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
#works-post .swiper-wrapper img {
  position: static;
  height: auto !important;
  width: 100% !important;
  transform: translate(0%, 0%);
  -webkit-transform: translate(0%, 0%);
  -ms-transform: translate(0%, 0%);
}
/* -------------------------------- */
/* message                          */
/* -------------------------------- */
#message #wrap02, #message #wrap03, #message #wrap04, #message #wrap05 {
  width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 150px 0;
  box-sizing: border-box;
}
@media screen and (max-width: 834px) {
  #message #wrap02, #message #wrap03, #message #wrap04, #message #wrap05 {
    width: 100%;
    padding: 100px 5%;
  }
}
#message section:nth-of-type(odd) {
  background: #f7f7f7;
}
#message #wrap-ttl {
  background: #fff;
}
#message #wrap02 {
  list-style: none;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 430px) {
  #message #wrap02 {
    display: block;
  }
}
#message #wrap02 li {
  position: relative;
  margin-right: 50px;
  padding-bottom: 6em;
}
@media screen and (max-width: 430px) {
  #message #wrap02 li {
    margin: 0 0 50px 0;
    padding: 5.5em 0 0 0;
  }
}
#message #wrap02 li strong {
  position: absolute;
  bottom: 0;
  left: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 3.5rem;
}
@media screen and (max-width: 430px) {
  #message #wrap02 li strong {
    bottom: inherit;
    top: 0;
  }
}
#message #wrap02 li:nth-last-of-type(1) {
  margin-right: 0;
}
#message section h2 {
  display: flex;
}
@media screen and (max-width: 430px) {
  #message section h2 {
    display: block;
  }
}
#message section h2 strong {
  font-weight: 300;
  font-size: 2rem;
  margin: 0.2rem 0 0 0;
}
@media screen and (max-width: 430px) {
  #message section h2 strong {
    font-size: 2rem;
    margin: 0.2em 0 0 0;
  }
}
#message #wrap03 h2, #message #wrap06 h2 {
  border-top: #000 1px solid;
  padding-top: 2em;
}
#message #wrap03 figure img {
  width: 60%;
  height: auto;
  margin: 100px auto 0 auto;
  display: block;
}
@media screen and (max-width: 834px) {
  #message #wrap03 figure img {
    width: 80%;
  }
}
@media screen and (max-width: 430px) {
  #message #wrap03 figure img {
    width: 100%;
    margin: 50px auto 0 auto;
  }
}
#message #wrap04 {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 430px) {
  #message #wrap04 {
    display: block;
  }
}
#message #wrap04 h3 {
  font-weight: 300;
  font-size: 1rem;
  width: 40%;
}
@media screen and (max-width: 430px) {
  #message #wrap04 h3 {
    width: 100%;
    margin: 50px 0 0 0;
  }
}
#message ul#wrap05 {
  padding-top: 0;
  list-style: none;
}
#message ul#wrap05 li {
  margin-bottom: 10em;
}
@media screen and (max-width: 430px) {
  #message ul#wrap05 li {
    margin-bottom: 5em;
  }
}
#message ul#wrap05 li:nth-last-of-type(1) {
  margin-bottom: 0;
}
#message ul#wrap05 div {
  border-top: #000 1px solid;
  margin-top: 1em;
  padding-top: 1em;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 430px) {
  #message ul#wrap05 div {
    display: block;
    padding-top: 2.5em;
  }
}
#message ul#wrap05 h3 {
  display: flex;
  justify-content: space-between;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 3.5rem;
  line-height: 1;
}
@media screen and (max-width: 430px) {
  #message ul#wrap05 h3 {
    justify-content: left;
    flex-direction: column-reverse;
    flex-wrap: wrap;
    position: relative;
  }
}
#message ul#wrap05 h3 strong {
  font-weight: 300;
}
@media screen and (max-width: 430px) {
  #message ul#wrap05 h3 strong {
    font-size: 0.9rem;
    position: absolute;
    bottom: -3.5em;
    left: 0;
  }
}
#message ul#wrap05 h4 {
  font-size: 1rem;
  font-weight: 300;
}
@media screen and (max-width: 430px) {
  #message ul#wrap05 h4 {
    font-size: 1.5rem;
    font-weight: 400;
  }
}
#message ul#wrap05 p {
  width: 40%;
}
@media screen and (max-width: 430px) {
  #message ul#wrap05 p {
    width: 100%;
    margin-top: 1em;
  }
}
/* --------------------------------- */
/* company                           */
/* --------------------------------- */
#company figure img {
  width: calc(100% -  120px);
  height: auto;
  display: block;
  margin: 0 60px;
}
@media screen and (max-width: 834px) {
  #company figure img {
    margin: 0 5%;
    width: 90%;
  }
}
#company section:nth-last-of-type(1), #company section:nth-last-of-type(2), #company section:nth-last-of-type(3) {
  width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 150px 0;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
}
@media screen and (max-width: 834px) {
  #company section:nth-last-of-type(1), #company section:nth-last-of-type(2), #company section:nth-last-of-type(3) {
    width: 90%;
    padding: 50px 0;
    margin-left: 5%;
    margin-right: 5%;
  }
}
@media screen and (max-width: 430px) {
  #company section:nth-last-of-type(1), #company section:nth-last-of-type(2), #company section:nth-last-of-type(3) {
    display: block;
  }
}
#company section:nth-last-of-type(1) h2, #company section:nth-last-of-type(2) h2, #company section:nth-last-of-type(3) h2 {
  font-weight: 300;
  font-size: 2rem;
  line-height: 1;
}
@media screen and (max-width: 430px) {
  #company section:nth-last-of-type(1) h2, #company section:nth-last-of-type(2) h2, #company section:nth-last-of-type(3) h2 {
    width: 100%;
    border-bottom: 1px solid #000;
    padding-bottom: 0.5em;
    font-size: 1.5rem;
  }
}
#company section:nth-last-of-type(2), #company section:nth-last-of-type(1) {
  border-top: 1px solid #000;
}
@media screen and (max-width: 430px) {
  #company section:nth-last-of-type(2), #company section:nth-last-of-type(1) {
    border: none;
  }
}
#company table {
  width: 70%;
  border-collapse: collapse;
  border-spacing: 0;
}
@media screen and (max-width: 430px) {
  #company table {
    width: 100%;
  }
}
@media screen and (max-width: 430px) {
  #company table tr, #company table tbody {
    width: 100%;
    display: block;
  }
}
#company table tr th, #company table tbody th {
  padding: 2em 0;
  border: solid #000;
  border-width: 0 0 1px 0;
  font-weight: 400;
  text-align: left;
  box-sizing: border-box;
}
@media screen and (max-width: 430px) {
  #company table tr th, #company table tbody th {
    padding: 2em 0 0 0;
    font-weight: 500;
    border-width: 0;
    width: 100%;
    display: block;
  }
}
#company table tr td, #company table tbody td {
  padding: 2em 0 2em 7em;
  border: solid #b2b2b2;
  border-width: 0 0 1px 0;
  box-sizing: border-box;
}
#company table tr td a, #company table tbody td a {
  color: #333;
  text-decoration: none;
}
@media screen and (max-width: 430px) {
  #company table tr td, #company table tbody td {
    padding: 0 0 2em 0;
    width: 100%;
    display: block;
    padding-top: 0;
  }
}
@media screen and (max-width: 430px) {
  #company table tr tr:nth-last-of-type(1) td, #company table tbody tr:nth-last-of-type(1) td {
    border-width: 0;
  }
}
#company table tr tr:nth-of-type(1) td, #company table tbody tr:nth-of-type(1) td {
  padding-top: 0;
}
#company table tr tr:nth-of-type(1) th, #company table tbody tr:nth-of-type(1) th {
  padding-top: 0;
}
@media screen and (max-width: 430px) {
  #company table tr tr:nth-of-type(1) th, #company table tbody tr:nth-of-type(1) th {
    padding-top: 2em;
  }
}
#company p {
  width: 70%;
}
@media screen and (max-width: 430px) {
  #company p {
    width: 100%;
    padding-top: 2em;
  }
}
/* --------------------------------- */
/* news-post                     */
/* --------------------------------- */
#news-post #area-2 {
  width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 834px) {
  #news-post #area-2 {
    width: 100%;
    padding: 0px 5%;
  }
}
#news-post #area-2 time {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1rem;
}
#news-post #area-2 h3 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1em;
}
@media screen and (max-width: 430px) {
  #news-post #area-2 h3 {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}
#news-post #area-2 figure {
  text-align: center;
  display: block;
  margin-bottom: 50px;
}
#news-post #area-2 figure img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}
#news-post #area-2 p {
  margin-bottom: 50px;
}
#news-post #area-2 a {
  color: #333;
  position: relative;
  text-decoration: none;
}
#news-post #area-2 a::after {
  content: "";
  position: absolute;
  height: 1px;
  left: 0;
  background: #333;
  bottom: -3px;
  width: 100%;
  transition: 0.4s;
}
#news-post #area-2 a:hover::after {
  background: #ffe300;
}
/* --------------------------------- */
/* contact                        */
/* --------------------------------- */
#contact #wrap01, #contact #wrap02 {
  width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 834px) {
  #contact #wrap01, #contact #wrap02 {
    width: 100%;
    padding: 0px 5%;
  }
}
#contact #wrap02 p {
  font-size: 0.7rem;
  text-align: center;
  margin-top: 5em;
}
#contact #wrap02 p a {
  color: #333;
}
@media screen and (max-width: 430px) {
  #contact #wrap02 p {
    text-align: left;
  }
}
.grecaptcha-badge {
  visibility: hidden;
}
.smf-item__label__text {
  display: flex;
  align-items: center;
  font-weight: 400;
}
.smf-item__label__text strong {
  color: #b2b2b2;
  font-size: 0.7rem;
  line-height: 1;
  font-weight: 400;
  border: 1px solid #b2b2b2;
  border-radius: 2em;
  padding: 0.3em 0.5em;
  margin-top: 3px;
}
input[type="text"], input[type="email"], input[type="tel"], input[type="number"], textarea, input[type="password"] {
  background: #f7f7f7 !important;
  border: none !important;
  box-shadow: none !important;
  width: 100%;
}
.smf-error-messages {
  margin-top: 5px !important;
  font-size: 0.9rem;
  font-weight: 500;
}
.smf-action .smf-button-control__control {
  background: #000;
  color: #fff;
  border: none;
  border-radius: 2em;
  font-size: 1rem;
}
.input, .confirm {
  margin: 3em 0;
}
@media screen and (max-width: 430px) {
  .input, .confirm {
    margin: 0 0 2em 0;
  }
}
.input a, .confirm a {
  color: #333;
  text-decoration: none;
}
.smf-item label {
  margin-bottom: 5px;
  display: table;
}
[data-screen="confirm"] .input {
  display: none;
}
[data-screen="input"] .confirm, [data-screen="invalid"] .confirm {
  display: none;
}
.smf-item__controls span.point {
  display: block;
  margin-top: 5px;
  color: #b2b2b2;
  font-size: 0.9rem;
}
.smf-form--simple-table .smf-item {
  padding: 1.5rem 0;
}
.smf-complete-content {
  padding: 3em 0;
}
.smf-progress-tracker__item__text, .smf-progress-tracker__item__number {
  font-weight: 500 !important;
}
/* --------------------------------- */
/* works                          */
/* --------------------------------- */
/* --------------------------------- */
/* work-post                     */
/* --------------------------------- */
#works-post, #wrap-lilke, .yarpp-related {
  background: #fff;
}
.yarpp-related {
  margin: 0 !important;
}
.yarpp-related a {
  font-weight: 400 !important;
}
#works-post #main-img {
  margin: 84px 0 0 0;
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  height: 700px;
  overflow: hidden;
}
@media screen and (max-width: 834px) {
  #works-post #main-img {
    margin: 85px 0 0px 0;
    padding: 0 5%;
    position: static;
    height: auto;
  }
}
@media screen and (max-width: 430px) {
  #works-post #main-img {
    height: 230px;
    position: relative;
    z-index: 90;
  }
}
#works-post #main-img img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 430px) {
  #works-post #main-img img {
    height: 230px;
    width: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
}
#works-post section#area-2 {
  margin-top: 700px;
}
@media screen and (max-width: 834px) {
  #works-post section#area-2 {
    margin-top: 20px;
  }
}
#works-post .wrap02, #works-post #wrap03 {
  width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 834px) {
  #works-post .wrap02, #works-post #wrap03 {
    width: 100%;
    padding: 50px 5%;
  }
}
#wrap-lilke {
  width: 1100px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
@media screen and (max-width: 834px) {
  #wrap-lilke {
    width: 100%;
    padding: 50px 5%;
  }
}
#works-post .wrap02 {
  padding: 100px 0;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 834px) {
  #works-post .wrap02 {
    padding: 0 5%;
  }
}
@media screen and (max-width: 430px) {
  #works-post .wrap02 {
    display: block;
  }
}
#works-post .wrap02 h2 {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 400;
  width: 45%;
  padding-right: 3em;
  box-sizing: border-box;
}
@media screen and (max-width: 834px) {
  #works-post .wrap02 h2 {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 430px) {
  #works-post .wrap02 h2 {
    width: 100%;
    padding-right: 0;
    padding-bottom: 1rem;
  }
}
#works-post .wrap02 div {
  width: 55%;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 430px) {
  #works-post .wrap02 div {
    width: 100%;
  }
}
#works-post .wrap02 div h3 {
  font-size: 0.8rem;
  font-weight: 500;
  width: 7em;
  margin-top: 0.2em;
}
#works-post .wrap02 div ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0.7em;
  width: calc(100% - 8em);
}
#works-post .wrap02 div ul li {
  font-size: 0.8rem;
  margin-right: 0.5em;
  margin-bottom: 0.5em;
}
#works-post .wrap02 div ul li a {
  display: block;
  color: #333;
  text-decoration: none;
  background: #f7f7f7;
  border-radius: 2em;
  padding: 0.4em 1em;
  transition: 0.4s;
}
#works-post .wrap02 div ul li a:hover {
  background: #ffe300;
}
#works-post .wrap02 div cite {
  font-size: 0.9rem;
  width: 100%;
  display: block;
  margin-top: 15px;
  font-style: normal;
}
#works-post .wrap02 div cite a {
  color: #333;
  position: relative;
  text-decoration: none;
}
#works-post .wrap02 div cite a::after {
  content: "";
  position: absolute;
  height: 1px;
  left: 0;
  background: #333;
  bottom: -3px;
  width: 100%;
  transition: 0.4s;
}
#works-post .wrap02 div cite a:hover::after {
  background: #ffe300;
}
#works-post .wrap02 div p {
  font-size: 0.9rem;
  line-height: 1.8;
  width: 100%;
  margin-top: 40px;
}
#works-post #wrap03 img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 100px;
}
@media screen and (max-width: 430px) {
  #works-post #wrap03 img {
    margin-bottom: 50px;
  }
}
#works-post #wrap03 iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 1.7777777778;
  margin-bottom: 100px;
}
@media screen and (max-width: 430px) {
  #works-post #wrap03 iframe {
    margin-bottom: 50px;
  }
}
#btn-work {
  border-top: 1px #b2b2b2 solid;
  padding: 100px 0;
  text-align: center;
  width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 834px) {
  #btn-work {
    width: 90%;
    margin: 0 5%;
    padding: 50px 0px;
  }
}
#btn-work a {
  padding: 0.5rem 1rem;
  font-size: 12px;
  color: #333;
  text-decoration: none;
  border: 1px solid #333;
  border-radius: 2rem;
  background-color: rgba(255, 255, 255, 0.3);
  transition: 0.3s ease;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 1;
  display: inline-table;
}
#btn-work a:hover {
  background-color: black;
  color: #fff;
}
#nize #btn-work {
  border-top: none;
}
#wrap-lilke h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 1em;
}
/* --------------------------------- */
/* list                              */
/* --------------------------------- */
#list {
  border-top: 1px solid #b2b2b2;
  width: calc(100% - 120px);
  margin-left: 60px;
  margin-right: 60px;
  padding-top: 50px;
  box-sizing: border-box;
}
@media screen and (max-width: 834px) {
  #list {
    width: 90%;
    padding: 30px 0 0 0;
    margin-left: 5%;
    margin-right: 5%;
  }
}
#list div {
  width: 1100px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  margin-top: 1em;
}
@media screen and (max-width: 834px) {
  #list div {
    width: 100%;
    padding: 0;
  }
}
#list h3 {
  width: 7em;
  font-weight: 500;
  margin-top: 0.2em;
  font-size: 0.9rem;
}
@media screen and (max-width: 430px) {
  #list h3 {
    width: auto;
  }
}
#list ol {
  width: calc(100% - 7em);
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.9rem;
}
@media screen and (max-width: 430px) {
  #list ol {
    width: 100%;
  }
}
#list ol li {
  margin-right: 0.5em;
  margin-bottom: 0.5em;
}
#list ol li a {
  display: block;
  color: #333;
  text-decoration: none;
  font-size: 0.8rem;
  background: #f7f7f7;
  border-radius: 2em;
  padding: 0.4em 1em;
  transition: 0.4s;
}
#list ol li a:hover {
  background: #ffe300;
}
#message #list {
  border-top: none;
  padding-bottom: 50px;
}
#message #list div {
  display: block;
}
#message #list div h3 {
  margin-bottom: 1rem;
}
#message #list div ol {
  width: 100%;
}
#message #list div ol li a {
  background: #fff;
}
#message #list div ol li a:hover {
  background: #ffe300;
}
#message #list div:nth-of-type(2) {
  margin-top: 50px;
}
.list-item ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  width: 1100px;
  margin: 100px auto;
}
@media screen and (max-width: 834px) {
  .list-item ul {
    width: 90%;
    margin: 50px 5% 0 5%;
  }
}
.list-item ul li {
  width: calc((100% - 60px) / 4);
  margin: 0 20px 40px 0;
}
@media screen and (max-width: 430px) {
  .list-item ul li {
    width: 100%;
    margin: 0 0 40px 0;
  }
}
.list-item ul li a {
  color: #333;
  text-decoration: none;
}
.list-item ul li figure {
  overflow: hidden;
}
.list-item ul li figure img {
  display: block;
  width: 100%;
  height: auto;
  transition: all 0.3s;
}
.list-item ul li h2 {
  font-weight: 400;
  font-size: 0.8rem;
  margin-top: 0.5em;
}
.list-item ul li:nth-of-type(4n) {
  margin-right: 0;
}
#interview .list-item ul li {
  width: 100%;
  margin-right: 0;
}
@media screen and (max-width: 430px) {
  #interview .list-item ul li {
    height: 170px;
  }
}
@media screen and (max-width: 430px) {
  #interview .list-item ul li figure {
    position: relative;
    height: 100%;
  }
}
@media screen and (max-width: 430px) {
  #interview .list-item ul li figure img {
    height: 100%;
    width: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
}
#news .list-item ul li time, #news .list-item ul li strong {
  display: inline-block;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  padding-top: 1em;
  line-height: 1;
  color: #b2b2b2;
}
#news .list-item ul li h2 {
  font-weight: 400;
  font-size: 0.8rem;
  margin-top: 0.3em;
}
#news .list-item ul li time {
  padding-right: 1em;
}
#news .list-item ul li strong::after {
  content: "・";
}
#news .list-item ul li strong:nth-last-of-type(1)::after {
  content: "";
}
.list-item ul li a:hover figure img {
  transform: scale(1.1, 1.1);
}
/* 開閉 */
#list.sp {
  display: none;
}
@media screen and (max-width: 430px) {
  #list.sp {
    display: block;
  }
}
@media screen and (max-width: 430px) {
  #list.sp div {
    flex-wrap: wrap;
  }
}
#list.sp div h3 {
  display: flex;
  align-items: center;
}
#list.sp div ol {
  width: 100%;
  margin: 1em 0;
}
.nav-open span {
  display: inline-block;
  height: 1.2em;
  width: 1.2em;
  border-radius: 1em;
  color: #333;
  font-size: 0.85rem;
  background: #fff;
  position: relative;
  border: 1px solid #333;
}
.nav-open.active span {
  background: #333;
  color: #fff;
}
.nav-open span::before {
  /* 閉じている時 */
  content: "＋";
  position: absolute;
  top: 0;
  left: 0;
  line-height: 1;
}
.nav-open.active span::before {
  /* 開いている時 */
  content: "－";
}
/* --------------------------------- */
/* ttl common                   */
/* --------------------------------- */
#wrap-ttl {
  margin: 84px 0 0 0;
}
@media screen and (max-width: 430px) {
  #wrap-ttl {
    padding: 0 5%;
    margin: 84px 0 50px 0;
  }
}
#wrap-ttl div {
  display: flex;
  margin-top: 2em;
  align-items: center;
}
@media screen and (max-width: 430px) {
  #wrap-ttl div {
    display: block;
  }
}
#wrap-ttl div h3 {
  font-weight: 300;
  font-size: 1.5rem;
}
#wrap-ttl div h3 strong {
  font-weight: 300;
  font-size: 1.5rem;
}
@media screen and (max-width: 430px) {
  #wrap-ttl div h3 strong {
    font-size: 1.3rem;
  }
}
#wrap-ttl div h3 strong:after {
  content: "・";
}
#wrap-ttl div h3 strong:nth-last-of-type(1):after {
  content: "";
}
#wrap-ttl div h4 {
  font-weight: 300;
  padding-left: 1.5rem;
  font-size: 1rem;
}
@media screen and (max-width: 430px) {
  #wrap-ttl div h4 {
    padding-left: 0;
  }
}
.dli-arrow-down {
  align-items: center;
  padding-left: 0.5rem;
  display: flex;
  flex-wrap: wrap;
}
.dli-arrow-down em {
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  display: inline-block;
  padding-left: 1em;
  font-style: normal;
  width: calc(100% - 1rem);
}
.dli-arrow-down strong {
  font-weight: 300;
  font-size: 2rem;
  line-height: 1;
  margin: 0.2rem 0 0 -0.5rem;
}
@media screen and (max-width: 430px) {
  .dli-arrow-down strong {
    line-height: 1.3;
  }
}
.dli-arrow-down strong br {
  display: none;
}
@media screen and (max-width: 430px) {
  .dli-arrow-down strong br {
    display: block;
  }
}
.dli-arrow-down span {
  font-size: 1rem;
  display: inline-block;
  vertical-align: baseline;
  color: #333;
  line-height: 1;
  position: relative;
  width: 1px;
  height: 0.8em;
  background: currentColor;
}
.dli-arrow-down span::before {
  content: "";
  width: 0.55em;
  height: 0.55em;
  border: 1px solid currentColor;
  border-top: 0;
  border-right: 0;
  transform: rotate(-45deg);
  transform-origin: bottom left;
  position: absolute;
  bottom: -0.05em;
  left: 1px;
  box-sizing: border-box;
}
/* --------------------------------- */
/* page navi                      */
/* --------------------------------- */
.wp-pagenavi {
  display: flex;
  justify-content: center;
  font-size: 0.9rem;
  margin: 50px 0;
}
.wp-pagenavi a, .wp-pagenavi span {
  padding: 0 1px;
  margin: 0 8px;
  text-decoration: none;
  line-height: 1;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  color: #333;
}
.wp-pagenavi span.current {
  position: relative;
}
.wp-pagenavi span.current::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  background: #333;
  height: 2px;
  content: "";
  width: 100%;
}
.wp-pagenavi a.previouspostslink, .wp-pagenavi a.nextpostslink {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  width: 0.6rem;
  height: 0.6rem;
  border: 2px solid currentColor;
  box-sizing: border-box;
  border-left: 0;
  border-bottom: 0;
  margin: 3px 3rem 0 3rem;
}
.previouspostslink {
  transform: translateX(25%) rotate(-135deg);
}
.nextpostslink {
  transform: translateX(-25%) rotate(45deg);
}
/* --------------------------------- */
/* fade in                         */
/* --------------------------------- */
.fadein {
  opacity: 0;
}
.fadein.scrollin {
  animation-name: PageAnimeAppear;
  animation-duration: 0.8s;
  animation-delay: 0;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in;
  transform: translate(0, 0);
}
.fadein ul li:nth-of-type(2) {
  -moz-transition-delay: 200ms;
  -webkit-transition-delay: 200ms;
  -o-transition-delay: 200ms;
  -ms-transition-delay: 200ms;
}
/* 3つ目の要素に400msのdelayをかける */
.fadein ul li:nth-of-type(3) {
  -moz-transition-delay: 400ms;
  -webkit-transition-delay: 400ms;
  -o-transition-delay: 400ms;
  -ms-transition-delay: 400ms;
}
/* --------------------------------- */
/* disp slide                        */
/* --------------------------------- */
/*画面遷移 初期設定*/
.splashbg {
  display: none;
}
body.appear .splashbg {
  display: block;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  transform: scaleX(0);
  background-color: #ffe300;
  animation-name: PageAnime;
  animation-duration: 1s;
  animation-delay: 0.5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
/*画面遷移 コンテンツ設定*/
#container {
  opacity: 0;
}
body.topappear #container {
  animation-duration: 1s;
  animation-delay: 0s;
  animation-fill-mode: forwards;
  opacity: 0;
}
body.appear #container {
  animation-name: PageAnimeAppear;
  animation-duration: 0.5s;
  animation-delay: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
/*背要素 初期設定*/
.list-item li.item-appear::before, #top ul li.item-appear::before, #top section.item-appear::before {
  display: block;
  content: "";
  position: absolute;
  z-index: 997;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: scaleX(0);
  background-color: #ffe300;
  animation-name: PageAnime;
  animation-timing-function: ease-in-out;
  animation-duration: 900ms;
  animation-fill-mode: forwards;
}
/*要素 コンテンツ設定*/
#top ul li, #top section, .list-item li {
  opacity: 1;
  /*はじめは透過0に*/
}
.list-item li.item-appear, #top ul li.item-appear, #top section.item-appear {
  position: relative;
  overflow: hidden;
  opacity: 1;
}
.list-item li.item-appear a, #top ul li.item-appear a, #top section.item-appear h2 {
  animation-name: PageAnimeAppear;
  animation-duration: 1s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes PageAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
