@charset "UTF-8";
/*--------------------------
Tag Default
---------------------------*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-appearance: none;
}

*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.page-header {
  display: none !important;
}

#siteHeader {
  height: 85px;
}
@media only screen and (max-width: 768px) {
  #siteHeader {
    height: 13.672vw;
    background: transparent;
  }
}
#siteHeader::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}
#siteHeader::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(/images/recruit/bg-recruit_base.jpg) no-repeat center top/100% auto;
  z-index: -2;
}
#siteHeader .wrap .logo {
  margin: 10px 0 0 30px;
  -webkit-filter: invert(100%) grayscale(100%) contrast(100);
          filter: invert(100%) grayscale(100%) contrast(100);
}
@media only screen and (max-width: 768px) {
  #siteHeader .wrap .logo {
    margin: 0;
  }
}
#siteHeader .wrap .inner nav ul li a {
  color: #fff;
}
#siteHeader .wrap .inner nav ul li a::before {
  background: #fff;
}
#siteHeader .wrap .inner nav .pull-down li a {
  color: #000;
}

main {
  position: relative;
  font-size: 16px;
  font-family: "Noto Sans Japanese";
  font-weight: 400;
  color: #fff;
  line-height: 1;
  padding: 0 !important;
  margin: 85px 0 0 !important;
  background: #000;
  -webkit-text-size-adjust: 100%;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  main {
    font-size: 14px;
    padding: 0 !important;
    margin: 0 !important;
  }
}
main section {
  width: 100% !important;
  margin: 0 auto !important;
  background: transparent;
}
main section p {
  font-size: 16px !important;
  color: #fff;
  line-height: 1.85;
}
@media only screen and (max-width: 768px) {
  main section p {
    font-size: 14px !important;
    line-height: 1.75;
  }
}
main section p.dotted {
  position: relative;
  padding: 0 0 0 16px;
}
@media only screen and (max-width: 768px) {
  main section p.dotted {
    padding: 0 0 0 14px;
  }
}
main section p.dotted::before {
  position: absolute;
  content: "・";
  left: 0;
}
main .content_wrap {
  background-image: url("../images/bg_item.webp");
  background-repeat: repeat-y;
  background-position: top center;
  background-size: cover;
}
@media only screen and (max-width: 768px) {
  main .content_wrap {
    background-size: cover;
  }
}

img {
  max-width: 100%;
  height: auto;
}

.sp_none {
  display: block;
}
@media only screen and (max-width: 768px) {
  .sp_none {
    display: none !important;
  }
}

.pc_none {
  display: none;
}
@media only screen and (max-width: 768px) {
  .pc_none {
    display: block !important;
  }
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
@media only screen and (max-width: 1280px) {
  .container {
    min-width: 1024px;
  }
}
@media only screen and (max-width: 768px) {
  .container {
    min-width: 100%;
    padding: 0 20px;
  }
}

.bg_wrap {
  position: relative;
  width: 100%;
  max-width: 1280px;
  padding: 100px 60px 90px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.75);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 70px), calc(100% - 70px) 100%, 0 100%);
}
@media only screen and (max-width: 1280px) {
  .bg_wrap {
    min-width: 1024px;
  }
}
@media only screen and (max-width: 768px) {
  .bg_wrap {
    min-width: 100%;
    padding: 40px 20px;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0 100%);
  }
}

.animation {
  opacity: 0;
}

.animated {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@-webkit-keyframes fade {
  0% {
    opacity: 1;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade {
  0% {
    opacity: 1;
  }
  to {
    opacity: 1;
  }
}
.fade {
  -webkit-animation-name: fade;
  animation-name: fade;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(1) !important;
            transform: scale(1) !important;
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1) !important;
            transform: scale(1) !important;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(1) !important;
            transform: scale(1) !important;
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1) !important;
            transform: scale(1) !important;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-transform: scale(1) !important;
          transform: scale(1) !important;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -5%, 0);
    transform: translate3d(0, -5%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -5%, 0);
    transform: translate3d(0, -5%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2.5%, 0, 0);
    transform: translate3d(-2.5%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2.5%, 0, 0);
    transform: translate3d(-2.5%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2.5%, 0, 0);
    transform: translate3d(2.5%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2.5%, 0, 0);
    transform: translate3d(2.5%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 5%, 0);
    transform: translate3d(0, 5%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 5%, 0);
    transform: translate3d(0, 5%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes bounceInUp {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes bounceInUp {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceInDown {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInDown {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

/*--------------------------
main_visual
---------------------------*/
#main_visual {
  width: 100%;
  height: calc(100vh - 85px);
  overflow: hidden;
}
@media only screen and (min-width: 1921px) {
  #main_visual {
    height: auto;
  }
}
@media only screen and (max-width: 768px) {
  #main_visual {
    height: 93.164svh;
  }
}
#main_visual .logo_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 240px;
  padding: 0 25px;
}
@media only screen and (max-width: 768px) {
  #main_visual .logo_box {
    height: 120px;
    padding: 0 1.953vw;
  }
  #main_visual .logo_box .logo_25th {
    width: 50%;
  }
}
#main_visual .character_list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: calc(100vh - 325px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-repeat: repeat-x;
  background-size: auto 100%;
  overflow: hidden;
}
@media only screen and (min-width: 1921px) {
  #main_visual .character_list {
    height: auto;
  }
}
@media only screen and (max-width: 768px) {
  #main_visual .character_list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
    -ms-grid-rows: (auto)[2];
    grid-template-rows: repeat(2, auto);
    height: calc(86.328svh - 60px);
    background-repeat: repeat;
  }
  #main_visual .character_list > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  #main_visual .character_list > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  #main_visual .character_list > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  #main_visual .character_list > *:nth-child(4) {
    -ms-grid-row: 1;
    -ms-grid-column: 4;
  }
  #main_visual .character_list > *:nth-child(5) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  #main_visual .character_list > *:nth-child(6) {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
  #main_visual .character_list > *:nth-child(7) {
    -ms-grid-row: 2;
    -ms-grid-column: 3;
  }
  #main_visual .character_list > *:nth-child(8) {
    -ms-grid-row: 2;
    -ms-grid-column: 4;
  }
}
@media only screen and (max-width: 380px) {
  #main_visual .character_list {
    height: calc(86.328svh - 80px);
  }
}
#main_visual .character_list::before {
  content: "";
  position: absolute;
  display: block;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgb(255, 255, 255)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255));
  width: 50px;
  height: 200px;
  top: -60px;
  left: -60px;
  -webkit-animation-name: shine-run;
          animation-name: shine-run;
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
@-webkit-keyframes shine-run {
  0% {
    -webkit-transform: scale(0) rotate(30deg);
            transform: scale(0) rotate(30deg);
    opacity: 0;
  }
  5% {
    -webkit-transform: scale(1) rotate(30deg);
            transform: scale(1) rotate(30deg);
    opacity: 1;
  }
  10% {
    -webkit-transform: scale(250) rotate(30deg);
            transform: scale(250) rotate(30deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(250) rotate(30deg);
            transform: scale(250) rotate(30deg);
    opacity: 0;
  }
}
@keyframes shine-run {
  0% {
    -webkit-transform: scale(0) rotate(30deg);
            transform: scale(0) rotate(30deg);
    opacity: 0;
  }
  5% {
    -webkit-transform: scale(1) rotate(30deg);
            transform: scale(1) rotate(30deg);
    opacity: 1;
  }
  10% {
    -webkit-transform: scale(250) rotate(30deg);
            transform: scale(250) rotate(30deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(250) rotate(30deg);
            transform: scale(250) rotate(30deg);
    opacity: 0;
  }
}
#main_visual .character_list li {
  width: 215px;
  min-width: 215px;
  height: auto;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
}
@media only screen and (min-width: 1921px) {
  #main_visual .character_list li {
    width: 272px;
    min-width: 272px;
    height: 788px;
  }
}
@media only screen and (max-width: 768px) {
  #main_visual .character_list li {
    width: 25%;
    min-width: 100%;
    height: 100%;
    border-bottom: 10px solid #000;
  }
  #main_visual .character_list li:nth-child(n+9) {
    display: none !important;
  }
}
#main_visual .character_list li figure {
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#main_visual .character_list li figure.character01 {
  background-image: url("../images/dvrdra8c6_7z.webp");
}
#main_visual .character_list li figure.character02 {
  background-image: url("../images/g3dy84r-hra5.webp");
}
#main_visual .character_list li figure.character03 {
  background-image: url("../images/rczt6za4_ne6.webp");
}
#main_visual .character_list li figure.character04 {
  background-image: url("../images/x-m94men3s7d.webp");
}
#main_visual .character_list li figure.character05 {
  background-image: url("../images/yqz852tcqnej.webp");
}
#main_visual .character_list li figure.character06 {
  background-image: url("../images/a9yf5bty8r5g.webp");
}
#main_visual .character_list li figure.character07 {
  background-image: url("../images/cpxwsvic5qvd.webp");
}
#main_visual .character_list li figure.character08 {
  background-image: url("../images/wntyjqjnps48.webp");
}
#main_visual .character_list li figure.character09 {
  background-image: url("../images/jgxad_7ffkzh.webp");
}
#main_visual .character_list li figure.character10 {
  background-image: url("../images/e4_z2vx79n47.webp");
}
#main_visual .character_list li figure.character11 {
  background-image: url("../images/nawhbr8a8_mx.webp");
}
#main_visual .character_list li figure.character12 {
  background-image: url("../images/s37mqrezt85a.webp");
}
#main_visual .character_list li figure.character13 {
  background-image: url("../images/djd3_-_ytbi_.webp");
}
#main_visual .character_list li figure.character14 {
  background-image: url("../images/u2fk_e7v_2b_.webp");
}
#main_visual .character_list li figure.character15 {
  background-image: url("../images/4t_4hn_e8z4m.webp");
}
#main_visual .character_list li figure.character16 {
  background-image: url("../images/c88yezdpe_4f.webp");
}
#main_visual .character_list li figure.character17 {
  background-image: url("../images/nmttbg25rxuk.webp");
}
#main_visual .character_list li figure.character18 {
  background-image: url("../images/icbk_nm44_px.webp");
}
#main_visual .character_list li figure.character19 {
  background-image: url("../images/-krypy2c3as_.webp");
}
#main_visual .character_list li figure.character20 {
  background-image: url("../images/5jmaubjfqu4m.webp");
}
#main_visual .character_list li figure.character21 {
  background-image: url("../images/dbcfep_i3nng.webp");
}
#main_visual .character_list li figure.character22 {
  background-image: url("../images/fmkxrc7dn3ib.webp");
}
#main_visual .character_list li figure.character23 {
  background-image: url("../images/uzuk4xsxvjth.webp");
}
#main_visual .character_list li figure.character24 {
  background-image: url("../images/wjagp5i-ri_9.webp");
}
#main_visual .character_list li figure.character25 {
  background-image: url("../images/3yejgk2d5rij.webp");
}
#main_visual .character_list li figure.character26 {
  background-image: url("../images/u3wynngznawp.webp");
}
#main_visual .character_list li figure.character27 {
  background-image: url("../images/wtc5jaxvq5q3.webp");
}
#main_visual .character_list li figure.character28 {
  background-image: url("../images/chz8-brftx2p.webp");
}
#main_visual .character_list li figure.character29 {
  background-image: url("../images/pqwhd63si8y-.webp");
}
#main_visual .character_list li figure.character30 {
  background-image: url("../images/mji9hm2h_ut5.webp");
}
#main_visual .character_list li figure.character31 {
  background-image: url("../images/uhnfws2m8c9h.webp");
}
#main_visual .character_list li figure.character32 {
  background-image: url("../images/cfhwkuf4yt-r.webp");
}
#main_visual .character_list li figure.character33 {
  background-image: url("../images/wmz93-9ghxar.webp");
}
#main_visual .character_list li figure.character34 {
  background-image: url("../images/cm_sw7uinthm.webp");
}

/*--------------------------
section01
---------------------------*/
#section01 {
  padding: 90px 0;
}
@media only screen and (max-width: 768px) {
  #section01 {
    padding: 40px 0;
  }
}
#section01 .container strong {
  display: block;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  margin: 0 0 60px;
}
@media only screen and (max-width: 768px) {
  #section01 .container strong {
    font-size: 18px;
    margin: 0 0 40px;
  }
}
#section01 .container h2 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 87px;
  font-family: "din-2014-narrow", sans-serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 5px;
}
@media only screen and (max-width: 768px) {
  #section01 .container h2 {
    font-size: 40px;
    letter-spacing: 2px;
  }
}
#section01 .container h2 span {
  position: relative;
  display: block;
  width: 100%;
  margin: 12px 0 0 12px;
  border-top: 43px solid #fff;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 75px), calc(100% - 100px) 100%, 0 100%);
}
@media only screen and (max-width: 768px) {
  #section01 .container h2 span {
    margin: 4px 0 0 10px;
    border-top: 20px solid #fff;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 36px), calc(100% - 42px) 100%, 0 100%);
  }
}
#section01 .container h2 span::after {
  position: absolute;
  content: "";
  width: 100%;
  bottom: 14px;
  border-bottom: 8px solid #fff;
}
@media only screen and (max-width: 768px) {
  #section01 .container h2 span::after {
    bottom: 6px;
    border-bottom: 4px solid #fff;
  }
}
@media only screen and (max-width: 768px) {
  #section01 .container h2 {
    margin: 0 0 40px;
  }
}
#section01 .container .box_wrap {
  position: relative;
  padding: 105px 0 0;
}
@media only screen and (max-width: 768px) {
  #section01 .container .box_wrap {
    padding: 0;
  }
}
#section01 .container .box_wrap .title_box {
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 768px) {
  #section01 .container .box_wrap .title_box {
    position: relative;
    margin: 0 0 20px;
  }
}
#section01 .container .box_wrap .title_box h1 {
  font-size: 150px;
  line-height: 1.25;
  margin: 0 0 20px;
}
@media only screen and (max-width: 768px) {
  #section01 .container .box_wrap .title_box h1 {
    font-size: 15vw;
    margin: 0 0 5vw;
  }
}
#section01 .container .box_wrap .title_box span {
  display: block;
  font-size: 30px;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  #section01 .container .box_wrap .title_box span {
    font-size: 5vw;
  }
}
#section01 .container .box_wrap .box {
  position: relative;
  width: 790px;
  padding: 60px;
  margin: 0 0 0 auto;
  background: rgba(255, 255, 255, 0.75);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 70px), calc(100% - 70px) 100%, 0 100%);
}
@media only screen and (max-width: 768px) {
  #section01 .container .box_wrap .box {
    width: 100%;
    padding: 40px 20px;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0 100%);
  }
}
#section01 .container .box_wrap .box h3 {
  font-size: 20px;
  color: #000;
  text-align: right;
  margin: 0 0 20px;
}
@media only screen and (max-width: 768px) {
  #section01 .container .box_wrap .box h3 {
    font-size: 16px;
    margin: 0 0 16px;
  }
}
#section01 .container .box_wrap .box .message_box::after {
  content: "";
  display: block;
  clear: both;
}
#section01 .container .box_wrap .box .message_box p {
  font-weight: 500;
  color: #000;
  letter-spacing: 0.06rem;
}
@media only screen and (max-width: 768px) {
  #section01 .container .box_wrap .box .message_box p {
    letter-spacing: -0.01rem;
  }
}
#section01 .container .box_wrap .box .message_box .pic {
  float: right;
  margin: 0 0 20px 20px;
}
@media only screen and (max-width: 768px) {
  #section01 .container .box_wrap .box .message_box .pic {
    width: 50%;
    margin: 0 0 10px 10px;
  }
}

/*--------------------------
section02
---------------------------*/
#section02 {
  margin: 0 0 100px !important;
}
@media only screen and (max-width: 768px) {
  #section02 {
    margin: 0 0 50px !important;
  }
}
#section02 h2 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 72px;
  font-family: "din-2014-narrow", sans-serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 5px;
  margin: 0 0 40px;
}
@media only screen and (max-width: 768px) {
  #section02 h2 {
    font-size: 28px;
    letter-spacing: 2px;
  }
}
#section02 h2 span {
  position: relative;
  display: block;
  width: 100%;
  margin: 12px 0 0 12px;
  border-top: 36px solid #fff;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 75px), calc(100% - 100px) 100%, 0 100%);
}
@media only screen and (max-width: 768px) {
  #section02 h2 span {
    margin: 3px 0 0 10px;
    border-top: 14px solid #fff;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 25px), calc(100% - 30px) 100%, 0 100%);
  }
}
#section02 h2 span::after {
  position: absolute;
  content: "";
  width: 100%;
  bottom: 10px;
  border-bottom: 7px solid #fff;
}
@media only screen and (max-width: 768px) {
  #section02 h2 span::after {
    bottom: 5px;
    border-bottom: 3px solid #fff;
  }
}
@media only screen and (max-width: 768px) {
  #section02 h2 {
    margin: 0 0 20px;
  }
}
#section02 .txt_box {
  text-align: center;
  margin: 0 0 40px;
}
@media only screen and (max-width: 768px) {
  #section02 .txt_box {
    margin: 0 0 20px;
  }
}
#section02 .txt_box p {
  font-size: 24px !important;
  font-weight: 500;
  color: #000;
}
@media only screen and (max-width: 768px) {
  #section02 .txt_box p {
    font-size: 14px !important;
  }
}
#section02 .movie_box_wrap {
  width: 100%;
  max-width: 730px;
  margin: 0 auto;
}
#section02 .movie_box_wrap .movie_box {
  position: relative;
  padding: 0 0 56.25%;
}
#section02 .movie_box_wrap .movie_box iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/*--------------------------
section03
---------------------------*/
#section03 h2 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 72px;
  font-family: "din-2014-narrow", sans-serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 5px;
  margin: 0 0 40px;
}
@media only screen and (max-width: 768px) {
  #section03 h2 {
    font-size: 28px;
    letter-spacing: 2px;
  }
}
#section03 h2 span {
  position: relative;
  display: block;
  width: 100%;
  margin: 12px 0 0 12px;
  border-top: 36px solid #fff;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 75px), calc(100% - 100px) 100%, 0 100%);
}
@media only screen and (max-width: 768px) {
  #section03 h2 span {
    margin: 3px 0 0 10px;
    border-top: 14px solid #fff;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 25px), calc(100% - 30px) 100%, 0 100%);
  }
}
#section03 h2 span::after {
  position: absolute;
  content: "";
  width: 100%;
  bottom: 10px;
  border-bottom: 7px solid #fff;
}
@media only screen and (max-width: 768px) {
  #section03 h2 span::after {
    bottom: 5px;
    border-bottom: 3px solid #fff;
  }
}
@media only screen and (max-width: 768px) {
  #section03 h2 {
    margin: 0 0 20px;
  }
}
#section03 .txt_box {
  text-align: center;
  margin: 0 0 40px;
}
@media only screen and (max-width: 768px) {
  #section03 .txt_box {
    margin: 0 0 20px;
  }
}
#section03 .txt_box p {
  font-size: 24px !important;
  font-weight: 500;
  color: #000;
}
@media only screen and (max-width: 768px) {
  #section03 .txt_box p {
    font-size: 14px !important;
  }
}
#section03 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#section03 ul li {
  width: calc(20% - 20px);
  margin: 0 0 60px;
}
@media only screen and (max-width: 768px) {
  #section03 ul li {
    width: calc(33.3333333333% - 5px);
    margin: 0 0 10px;
  }
}
#section03 ul li figure {
  overflow: hidden;
}
#section03 ul li figure a {
  display: block;
}
#section03 ul li figure a img {
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
#section03 ul li figure a:hover img {
  display: block;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
#section03 .caption_box {
  text-align: center;
}
#section03 .caption_box p {
  position: relative;
  display: inline-block;
  color: #000;
  padding: 0 0 0 16px;
}
#section03 .caption_box p::before {
  position: absolute;
  content: "※";
  left: 0;
}

/*--------------------------
section04
---------------------------*/
#section04 {
  padding: 90px 0;
}
@media only screen and (max-width: 768px) {
  #section04 {
    padding: 40px 0;
  }
}
#section04 .container .copy_box {
  text-align: center;
}
@media only screen and (max-width: 768px) {
  #section04 .container .copy_box p {
    font-size: 10px !important;
  }
}