@charset "UTF-8";
/*----------------------------------------------------
基本設定
----------------------------------------------------*/
/* 共通
---------------------------------------------------------- */
.btn {
  background: #E33D0B;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 20px 10px 30px;
  border-radius: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  font-weight: 700;
  font-size: 18px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /* -750 */
}
@media all and (max-width: 750px) {
  .btn {
    font-size: 9px;
  }
}
.btn span {
  background: #141414;
  width: 51px;
  height: 51px;
  border-radius: 50px;
  overflow: hidden;
  /* -750 */
}
@media all and (max-width: 750px) {
  .btn span {
    width: 29px;
    height: 29px;
  }
}
.btn span picture {
  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;
  height: 100%;
}
.btn span img {
  width: 10px;
}
@media (hover: hover) {
  .btn:hover {
    background: #fff;
    color: #E33D0B;
  }
}

.section_ttl {
  /* 1241- */
}
@media all and (min-width: 1081px) {
  .section_ttl {
    margin-bottom: 8px;
  }
}
.section_ttl span {
  display: block;
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .section_ttl span {
    text-align: center;
  }
}
.section_ttl .en {
  font-size: 20px;
  color: #E33D0B;
  font-family: "Oswald", sans-serif;
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .section_ttl .en {
    font-size: 10px;
  }
}
.section_ttl .jp {
  font-size: 54px;
  line-height: 1;
  margin-top: 10px;
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .section_ttl .jp {
    font-size: 20px;
  }
}

body.is_voice_modal_open {
  overflow: hidden;
}

/* ヘッダーメニュー
---------------------------------------------------------- */
.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1240px;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px;
  position: fixed;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  z-index: 2;
}
.header::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 100vw;
  height: 100%;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#141414), to(rgba(9, 16, 35, 0)));
  background-image: linear-gradient(to bottom, #141414 0%, rgba(9, 16, 35, 0));
}
.header > * {
  position: relative;
  z-index: 1;
}
.header {
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .header {
    padding: 10px 10px;
  }
}
.header .head_logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  z-index: 10;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .header .head_logo {
    gap: 7px;
  }
}
.header .head_logo img {
  width: 256px;
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .header .head_logo img {
    width: 116px;
  }
}
.header .head_logo span {
  font-size: 14px;
  line-height: 1.6;
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .header .head_logo span {
    font-size: 6px;
  }
}
.header .head_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 700;
  font-size: 14px;
  gap: 16px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media all and (max-width: 1200px) {
  .header .head_nav {
    display: block;
    opacity: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
    padding: 120px 40px;
    font-size: 20px;
  }
  .header .head_nav.open {
    opacity: 1;
    background: rgba(0, 0, 0, 0.8);
    pointer-events: all;
  }
  .header .head_nav li {
    margin-bottom: 30px;
  }
}
.header .head_nav a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header .head_nav a::before {
  content: "";
  width: 14px;
  height: 14px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: url("../images/icon_menu.png") center/contain no-repeat;
}
@media all and (max-width: 1200px) {
  .header .head_nav a {
    gap: 14px;
  }
  .header .head_nav a::before {
    display: none;
  }
}
.header .head_nav a span {
  position: relative;
  display: inline-block;
}
.header .head_nav a span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (hover: hover) {
  .header .head_nav a:hover span::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left center;
            transform-origin: left center;
  }
}
.header .head_nav a:focus-visible span::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
.header .head_humberger {
  position: relative;
  width: 30px;
  height: 30px;
  z-index: 1;
}
@media all and (min-width: 1201px) {
  .header .head_humberger {
    display: none;
  }
}
.header .head_humberger span {
  position: absolute;
  display: block;
  width: 30px;
  height: 1px;
  background: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header .head_humberger span:nth-child(1) {
  top: 8px;
}
.header .head_humberger span:nth-child(2) {
  top: 15px;
}
.header .head_humberger span:nth-child(3) {
  top: 22px;
}
.header .head_humberger.open span:nth-child(1) {
  top: 15px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header .head_humberger.open span:nth-child(2) {
  opacity: 0;
}
.header .head_humberger.open span:nth-child(3) {
  top: 15px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@media all and (max-width: 1200px) {
  body.is_header_nav_open {
    overflow: hidden;
  }
}
.main {
  overflow-x: hidden;
}

/* MV
---------------------------------------------------------- */
.mv {
  position: relative;
  overflow-x: clip;
  width: 100%;
  height: 87vh;
}
.mv::after {
  content: "";
  position: absolute;
  background-image: url(../images/kemuri_sp.png);
  background-image: -webkit-image-set(url(../images/kemuri_sp.webp) type("image/webp"), url(../images/kemuri_sp.png) type("image/png"));
  background-image: image-set(url(../images/kemuri_sp.webp) type("image/webp"), url(../images/kemuri_sp.png) type("image/png"));
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  z-index: -1;
  width: 100%;
  height: 100vh;
}
@media all and (min-width: 1000px) {
  .mv::after {
    background-image: url(../images/kemuri_pc.png);
    background-image: -webkit-image-set(url(../images/kemuri_pc.webp) type("image/webp"), url(../images/kemuri_pc.png) type("image/png"));
    background-image: image-set(url(../images/kemuri_pc.webp) type("image/webp"), url(../images/kemuri_pc.png) type("image/png"));
    background-size: 100% 80%;
    background-position: center top;
  }
}
.mv .mv_person_wrap,
.mv .mv_catch_wrap,
.mv .mv_shape_wrap,
.mv .mv_text_wrap {
  position: absolute;
  width: 100%;
}
.mv .mv_catch_wrap {
  top: -11%;
}
.mv .mv_shape_wrap {
  z-index: -1;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  /* 1241- */
}
@media all and (min-width: 1081px) {
  .mv .mv_shape_wrap {
    width: 1200px;
  }
}
.mv .mv_text_wrap {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  /* 1241- */
}
@media all and (min-width: 1081px) {
  .mv .mv_text_wrap {
    top: 27%;
    width: 1200px;
  }
}
.mv .mv_text_wrap {
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .mv .mv_text_wrap {
    bottom: -11%;
    text-align: center;
  }
}
.mv .mv_text_wrap {
  /* -750 */
}
@media all and (max-width: 750px) {
  .mv .mv_text_wrap {
    bottom: -15%;
  }
}

.mv_person {
  position: relative;
  height: 100vh;
  margin: 0 auto;
  /* 1241- */
}
@media all and (min-width: 1081px) {
  .mv_person {
    width: 1240px;
  }
}
@-webkit-keyframes personAppear {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes personAppear {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.mv_person .person_img01,
.mv_person .person_img02,
.mv_person .person_img03 {
  position: absolute;
  opacity: 0;
  -webkit-animation: personAppear 0.64s cubic-bezier(0.22, 1, 0.36, 1) forwards;
          animation: personAppear 0.64s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.mv_person .person_img01 {
  right: 4%;
  top: 8%;
  width: 60%;
  -webkit-animation-delay: 0.96s;
          animation-delay: 0.96s;
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .mv_person .person_img01 {
    right: -25%;
    top: 9%;
    width: 89%;
    z-index: 1;
  }
}
.mv_person .person_img02 {
  left: -21%;
  top: 8%;
  width: 88%;
  -webkit-animation-delay: 1.16s;
          animation-delay: 1.16s;
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .mv_person .person_img02 {
    left: -59%;
    top: 7%;
    width: 145%;
  }
}
.mv_person .person_img03 {
  left: 24%;
  top: 5%;
  width: 56%;
  -webkit-animation-delay: 1.36s;
          animation-delay: 1.36s;
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .mv_person .person_img03 {
    left: 10%;
    top: 17%;
    width: 84%;
    z-index: 1;
  }
}

.mv_catch {
  position: relative;
  height: 100vh;
  margin: 0 auto;
  /* 1241- */
}
@media all and (min-width: 1081px) {
  .mv_catch {
    width: 1100px;
  }
}
.mv_catch {
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .mv_catch {
    z-index: 1;
  }
}
@-webkit-keyframes catchAppear {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-260px);
            transform: translateX(-260px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes catchAppear {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-260px);
            transform: translateX(-260px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.mv_catch .catch_img01,
.mv_catch .catch_img02,
.mv_catch .catch_img03 {
  position: absolute;
  width: 42%;
  opacity: 0;
  -webkit-animation: catchAppear 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
          animation: catchAppear 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.mv_catch .catch_img01 {
  left: -4%;
  top: 39%;
  width: 48%;
  -webkit-animation-delay: 1.72s;
          animation-delay: 1.72s;
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .mv_catch .catch_img01 {
    width: 67%;
    left: 5%;
    top: 50%;
  }
}
.mv_catch .catch_img01 {
  /* -750 */
}
@media all and (max-width: 750px) {
  .mv_catch .catch_img01 {
    top: 56%;
  }
}
.mv_catch .catch_img02 {
  left: 11.5%;
  top: 49%;
  width: 59%;
  -webkit-animation-delay: 1.88s;
          animation-delay: 1.88s;
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .mv_catch .catch_img02 {
    width: 78%;
    top: 59%;
    left: 19%;
  }
}
.mv_catch .catch_img02 {
  /* -750 */
}
@media all and (max-width: 750px) {
  .mv_catch .catch_img02 {
    top: 66%;
  }
}
.mv_catch .catch_img03 {
  right: -1.5%;
  top: 58.5%;
  width: 47%;
  -webkit-animation-delay: 2.04s;
          animation-delay: 2.04s;
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .mv_catch .catch_img03 {
    right: 25.5%;
    top: 72.5%;
    width: 63%;
  }
}
.mv_catch .catch_img03 {
  /* -750 */
}
@media all and (max-width: 750px) {
  .mv_catch .catch_img03 {
    top: 80%;
  }
}

.mv_shape {
  position: relative;
  height: 100vh;
}
@-webkit-keyframes shapeAppear {
  0% {
    opacity: 0;
    -webkit-transform: translate(-120px, -120px);
            transform: translate(-120px, -120px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes shapeAppear {
  0% {
    opacity: 0;
    -webkit-transform: translate(-120px, -120px);
            transform: translate(-120px, -120px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
.mv_shape .shape_img01,
.mv_shape .shape_img02,
.mv_shape .shape_img03,
.mv_shape .shape_img04,
.mv_shape .shape_img05,
.mv_shape .shape_img06,
.mv_shape .shape_img07,
.mv_shape .shape_img08 {
  position: absolute;
  mix-blend-mode: lighten;
  opacity: 0;
  -webkit-animation: shapeAppear 0.64s cubic-bezier(0.22, 1, 0.36, 1) forwards;
          animation: shapeAppear 0.64s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.mv_shape .shape_img01 {
  left: -18%;
  top: 46.5%;
  width: 35%;
  -webkit-animation-delay: 0.12s;
          animation-delay: 0.12s;
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .mv_shape .shape_img01 {
    left: -29%;
    top: 56.5%;
    width: 53%;
  }
}
.mv_shape .shape_img02 {
  left: -73%;
  top: -21.5%;
  width: 132%;
  -webkit-animation-delay: 0.52s;
          animation-delay: 0.52s;
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .mv_shape .shape_img02 {
    left: -16%;
    top: 61.5%;
    width: 53%;
  }
}
.mv_shape .shape_img03 {
  right: -11%;
  top: 78.5%;
  width: 32%;
  -webkit-animation-delay: 0.32s;
          animation-delay: 0.32s;
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .mv_shape .shape_img03 {
    right: 7%;
    top: 25.5%;
    width: 120%;
  }
}
.mv_shape .shape_img04 {
  right: -6%;
  top: 0px;
  width: 97%;
  -webkit-animation-delay: 0.08s;
          animation-delay: 0.08s;
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .mv_shape .shape_img04 {
    right: 48%;
    top: -3%;
    width: 123%;
  }
}
.mv_shape .shape_img05 {
  right: -16%;
  top: 69.5%;
  width: 29%;
  -webkit-animation-delay: 0.64s;
          animation-delay: 0.64s;
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .mv_shape .shape_img05 {
    right: -29%;
    top: -58.5%;
    width: 219%;
  }
}
.mv_shape .shape_img06 {
  right: -10%;
  top: -1%;
  width: 71%;
  -webkit-animation-delay: 0.24s;
          animation-delay: 0.24s;
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .mv_shape .shape_img06 {
    right: -10%;
    top: -15%;
    width: 131%;
  }
}
.mv_shape .shape_img07 {
  right: 23%;
  top: -8%;
  width: 35%;
  -webkit-animation-delay: 0.44s;
          animation-delay: 0.44s;
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .mv_shape .shape_img07 {
    right: -46%;
    top: 0%;
    width: 85%;
  }
}
.mv_shape .shape_img08 {
  right: 23%;
  top: -10%;
  width: 35%;
  -webkit-animation-delay: 0.44s;
          animation-delay: 0.44s;
  /* 1241- */
}
@media all and (min-width: 1081px) {
  .mv_shape .shape_img08 {
    display: none;
  }
}
.mv_shape .shape_img08 {
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .mv_shape .shape_img08 {
    right: 8%;
    top: -14%;
    width: 55%;
  }
}

.mv_text {
  /* 1241- */
}
@media all and (min-width: 1081px) {
  .mv_text {
    position: relative;
  }
  .mv_text p {
    position: absolute;
    right: 0;
    line-height: 2.2;
  }
}
@-webkit-keyframes textAppear {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes textAppear {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.mv_text {
  right: 3%;
  top: 25%;
  font-size: 20px;
  font-weight: 700;
  opacity: 0;
  -webkit-animation: textAppear 0.52s cubic-bezier(0.22, 1, 0.36, 1) 2.44s forwards;
          animation: textAppear 0.52s cubic-bezier(0.22, 1, 0.36, 1) 2.44s forwards;
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .mv_text {
    font-size: 14px;
    right: unset;
    width: 100%;
  }
}

/* Youtube
---------------------------------------------------------- */
.sec_movie {
  padding: 0px 0 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .sec_movie {
    padding: 150px 0 0px;
  }
}
.sec_movie .mv_movie_wrap {
  /* 1241- */
}
@media all and (min-width: 1081px) {
  .sec_movie .mv_movie_wrap {
    padding: 0 95px;
  }
}
.sec_movie .movie_video iframe {
  aspect-ratio: 850/478;
}
.sec_movie .movie_ttl {
  font-family: "Oswald", sans-serif;
  text-align: center;
  font-size: 30px;
  margin-bottom: 20px;
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .sec_movie .movie_ttl {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.sec_movie .movie_ttl {
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_movie .movie_ttl {
    margin-bottom: 10px;
  }
}

/* ABOUT 図南鍛工って？
---------------------------------------------------------- */
.sec_about {
  padding: 100px 0;
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .sec_about {
    padding: 100px 0 0;
  }
}
.sec_about .about_ttl span {
  display: block;
  /* 1241- */
}
@media all and (min-width: 1081px) {
  .sec_about .about_ttl span {
    text-align: center;
  }
}
.sec_about .about_ttl .jp {
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .sec_about .about_ttl .jp {
    font-size: 24px;
  }
}
.sec_about .about_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 220px;
}
@-webkit-keyframes aboutCircleAppear {
  0% {
    opacity: 0;
    -webkit-transform: translateY(32px);
            transform: translateY(32px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes aboutCircleAppear {
  0% {
    opacity: 0;
    -webkit-transform: translateY(32px);
            transform: translateY(32px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.sec_about .about_list {
  /* 1241- */
}
@media all and (min-width: 1081px) {
  .sec_about .about_list {
    margin: 220px 0 100px;
  }
}
.sec_about .about_list {
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .sec_about .about_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 25px;
    margin: 50px 0 80px;
  }
}
.sec_about .about_list_cicle {
  border: 1px solid #fff;
  aspect-ratio: 1/1;
  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;
  opacity: 0;
  /* 1241- */
}
@media all and (min-width: 1081px) {
  .sec_about .about_list_cicle {
    width: 33.33%;
  }
  .sec_about .about_list_cicle:nth-child(2) {
    position: relative;
    top: -150px;
  }
}
.sec_about .about_list.scroll_active .about_list_cicle {
  -webkit-animation: aboutCircleAppear 0.56s cubic-bezier(0.22, 1, 0.36, 1) forwards;
          animation: aboutCircleAppear 0.56s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.sec_about .about_list.scroll_active .about_list_cicle:nth-child(2) {
  -webkit-animation-delay: 0.14s;
          animation-delay: 0.14s;
}
.sec_about .about_list.scroll_active .about_list_cicle:nth-child(3) {
  -webkit-animation-delay: 0.28s;
          animation-delay: 0.28s;
}
.sec_about .about_list_ttl {
  text-align: center;
  margin-bottom: 10px;
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .sec_about .about_list_ttl {
    margin-bottom: 10px;
  }
}
.sec_about .about_list_ttl span {
  display: block;
}
.sec_about .about_list_ttl .en {
  font-size: 14px;
  font-weight: 700;
  color: #E33D0B;
  font-family: "Oswald", sans-serif;
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .sec_about .about_list_ttl .en {
    font-size: 10px;
  }
}
.sec_about .about_list_ttl .jp {
  font-size: 28px;
  font-weight: 700;
  margin: 10px 0 30px;
  line-height: 1;
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .sec_about .about_list_ttl .jp {
    font-size: 20px;
    margin: 5px 0 15px;
  }
}
.sec_about .about_text {
  padding: 0px 35px;
  text-align: center;
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .sec_about .about_text {
    padding: 0px 33px;
  }
}

/* マスコットキャラクターとなんたん
---------------------------------------------------------- */
.sec_tonantan {
  padding: 130px 0 150px 0;
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .sec_tonantan {
    padding: 100px 0 80px 0;
  }
}
.sec_tonantan .tonantan_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6vw;
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .sec_tonantan .tonantan_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.sec_tonantan .tonantan_wrap {
  /* 1241- */
}
@media all and (min-width: 1081px) {
  .sec_tonantan .tonantan_wrap {
    padding: 0 50px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.sec_tonantan .tonantan_logo h2 {
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .sec_tonantan .tonantan_logo h2 {
    width: 206px;
    margin: 0 auto;
  }
}
.sec_tonantan .tonantan_logo img {
  margin-bottom: 40px;
}
.sec_tonantan .tonantan_chara {
  width: 400px;
  display: -ms-grid;
  display: grid;
  position: relative;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  cursor: pointer;
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .sec_tonantan .tonantan_chara {
    width: 210px;
    margin: 0 auto;
  }
}
.sec_tonantan .tonantan_chara::after {
  content: "";
  position: absolute;
  background-image: url(../images/tonantan/tonantan_serif.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 131px;
  height: auto;
  aspect-ratio: 129/73;
  right: -90px;
  top: 142px;
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .sec_tonantan .tonantan_chara::after {
    width: 80px;
    top: 102px;
    right: -50px;
  }
}
.sec_tonantan .tonantan_chara img {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: 1/1;
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.sec_tonantan .tonantan_chara > img:nth-child(2) {
  opacity: 0;
}
.sec_tonantan .tonantan_chara.is_evolved > img:nth-child(1) {
  opacity: 0;
}
.sec_tonantan .tonantan_chara.is_evolved > img:nth-child(2) {
  opacity: 1;
}
@media (hover: hover) {
  .sec_tonantan .tonantan_chara:hover > img:nth-child(1) {
    opacity: 0;
  }
  .sec_tonantan .tonantan_chara:hover > img:nth-child(2) {
    opacity: 1;
  }
}
.sec_tonantan .tonantan_btn {
  cursor: pointer;
  width: 51px;
  margin: 15px auto 0;
  -webkit-transform: translateX(16px);
          transform: translateX(16px);
  /* 1241- */
}
@media all and (min-width: 1081px) {
  .sec_tonantan .tonantan_btn {
    width: 94px;
  }
}
.sec_tonantan .tonantan_shape {
  pointer-events: none;
}
.sec_tonantan .shape_img09,
.sec_tonantan .shape_img10,
.sec_tonantan .shape_img11,
.sec_tonantan .shape_img12,
.sec_tonantan .shape_img13,
.sec_tonantan .shape_img14 {
  position: absolute;
  mix-blend-mode: lighten;
}
.sec_tonantan .shape_img09 {
  left: -17%;
  top: -51.5%;
  width: 32%;
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .sec_tonantan .shape_img09 {
    left: -43%;
    top: unset;
    bottom: -18%;
    width: 50%;
  }
}
.sec_tonantan .shape_img10 {
  left: -5%;
  top: -37.5%;
  width: 32%;
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .sec_tonantan .shape_img10 {
    top: unset;
    left: -10%;
    bottom: -24.5%;
    width: 54%;
  }
}
.sec_tonantan .shape_img11 {
  left: -48%;
  top: -145.5%;
  width: 76%;
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .sec_tonantan .shape_img11 {
    top: unset;
    left: -88%;
    bottom: -10.5%;
    width: 139%;
  }
}
.sec_tonantan .shape_img12 {
  left: 9%;
  top: -44.5%;
  width: 29%;
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .sec_tonantan .shape_img12 {
    top: unset;
    left: 5%;
    bottom: -13.5%;
    width: 50%;
  }
}
.sec_tonantan .shape_img13 {
  right: -21%;
  bottom: -73.5%;
  width: 29%;
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .sec_tonantan .shape_img13 {
    display: none;
  }
}
.sec_tonantan .shape_img14 {
  right: -17%;
  bottom: -53.5%;
  width: 30%;
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .sec_tonantan .shape_img14 {
    display: none;
  }
}

/* WORKS 図南のシゴト
---------------------------------------------------------- */
.sec_works {
  padding: 100px 0 180px;
  background-image: url(../images/work_bg_pc.jpg);
  background-size: 120%;
  width: 100%;
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_works {
    padding: 100px 0;
    background-image: url(../images/work_bg_sp.jpg);
  }
}
.sec_works .works_ttl_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 30px;
  margin-bottom: 60px;
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_works .works_ttl_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 40px;
  }
  .sec_works .works_ttl_wrap .section_ttl {
    margin: 0 auto;
  }
}
.sec_works .works_ttl_wrap p {
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_works .works_ttl_wrap p {
    text-align: center;
    margin: 0 auto;
  }
}
.sec_works .works_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_works .works_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.sec_works .works_list_item {
  background: rgba(255, 255, 255, 0.8);
  padding: 0px 20px;
  color: #141414;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 100%;
  /* 751- */
}
@media all and (min-width: 751px) {
  .sec_works .works_list_item {
    width: calc(33.3333333333% - 16.6666666667px);
  }
}
.sec_works .works_list_item:hover {
  background: rgb(255, 255, 255);
}
.sec_works .works_list_item .works_list_item_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100px;
  gap: 20px;
  position: relative;
  font-size: 20px;
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_works .works_list_item .works_list_item_inner {
    height: 90px;
  }
}
.sec_works .works_list_item .works_list_item_inner::after {
  content: "";
  position: absolute;
  background-image: url(../images/work_arr.svg);
  width: 18px;
  height: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  right: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.sec_works .works_list_item .works_list_item_inner h3 {
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_works .works_list_item .works_list_item_inner h3 {
    font-size: 16px;
  }
}
.sec_works .works_list_item:focus-visible {
  outline: 2px solid #E33D0B;
  outline-offset: 4px;
}
.sec_works .works_list_item.is_open {
  background: rgba(255, 255, 255, 0.95);
}
.sec_works .works_list_item.is_open .works_list_item_inner::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.sec_works .works_text {
  display: none;
  padding-bottom: 30px;
}

/* VOICE 先輩の1日
---------------------------------------------------------- */
.sec_voice {
  padding: 100px 0 80px;
  background: #DBDBDB;
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_voice {
    padding: 50px 0 80px;
  }
}
.sec_voice .voice_ttl_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 30px;
  color: #141414;
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_voice .voice_ttl_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .sec_voice .voice_ttl_wrap .section_ttl {
    margin: 0 auto;
  }
}
.sec_voice .voice_ttl_wrap p {
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_voice .voice_ttl_wrap p {
    text-align: center;
    margin: 0 auto;
  }
}
.sec_voice .voice_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  color: #141414;
  margin: 140px 0 120px;
  position: relative;
  z-index: 1;
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .sec_voice .voice_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 60px 0;
    padding: 0 10px;
  }
}
.sec_voice .voice_list_item {
  position: relative;
  background: #E0E0E0;
  -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.16);
          box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.16);
  -webkit-transform: skewX(-8deg);
          transform: skewX(-8deg);
  padding: 10px 45px 10px 15px;
  cursor: pointer;
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .sec_voice .voice_list_item {
    padding: 30px 30px 30px 20px;
    -webkit-transform: skewX(-20deg);
            transform: skewX(-20deg);
  }
}
.sec_voice .voice_list_item .voice_list_item_inner {
  -webkit-transform: skewX(8deg);
          transform: skewX(8deg);
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .sec_voice .voice_list_item .voice_list_item_inner {
    -webkit-transform: skewX(20deg);
            transform: skewX(20deg);
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 90px 20px 1fr;
    grid-template-columns: 90px 1fr;
    gap: 8px 20px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.sec_voice .voice_list_item .voice_list_item_inner .voice_list_item_number {
  font-size: 35px;
  border-bottom: 1px solid #141414;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
  margin-left: 30px;
  font-family: "Oswald", sans-serif;
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .sec_voice .voice_list_item .voice_list_item_inner .voice_list_item_number {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    grid-row: 1;
    font-size: 19px;
    line-height: 1.2;
    margin-left: 0px;
  }
}
.sec_voice .voice_list_item .voice_list_item_inner .voice_list_item_img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 20px 0 35px;
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .sec_voice .voice_list_item .voice_list_item_inner .voice_list_item_img {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    grid-row: 1/4;
    margin: 0;
    -ms-grid-row-align: center;
        align-self: center;
  }
}
.sec_voice .voice_list_item .voice_list_item_inner .voice_list_item_img img {
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .sec_voice .voice_list_item .voice_list_item_inner .voice_list_item_img img {
    width: 100%;
  }
}
.sec_voice .voice_list_item .voice_list_item_inner .voice_list_item_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #141414;
  background: #fff;
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .sec_voice .voice_list_item .voice_list_item_inner .voice_list_item_info {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 2;
    grid-row: 2;
    width: 100%;
  }
}
.sec_voice .voice_list_item .voice_list_item_inner .voice_list_item_info span {
  display: block;
  background: #141414;
  color: #fff;
  padding: 0px 20px;
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .sec_voice .voice_list_item .voice_list_item_inner .voice_list_item_info span {
    padding: 0px 5px;
    font-size: 7px;
    width: 50%;
    text-align: center;
  }
}
.sec_voice .voice_list_item .voice_list_item_inner .voice_list_item_info p {
  padding: 0px 40px;
  text-align: center;
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .sec_voice .voice_list_item .voice_list_item_inner .voice_list_item_info p {
    padding: 0px 5px;
    font-size: 7px;
    display: block;
    width: 50%;
  }
}
.sec_voice .voice_list_item .voice_list_item_inner .voice_list_item_name {
  margin-top: 20px;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 10px;
  /* 1241- */
}
@media all and (min-width: 1081px) {
  .sec_voice .voice_list_item .voice_list_item_inner .voice_list_item_name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.sec_voice .voice_list_item .voice_list_item_inner .voice_list_item_name {
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .sec_voice .voice_list_item .voice_list_item_inner .voice_list_item_name {
    line-height: 1;
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 3;
    grid-row: 3;
    margin-top: 0;
    text-align: left;
  }
}
.sec_voice .voice_list_item .voice_list_item_inner .voice_list_item_name span {
  font-size: 24px;
  font-weight: 700;
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .sec_voice .voice_list_item .voice_list_item_inner .voice_list_item_name span {
    display: block;
    font-size: 12px;
    margin-bottom: 5px;
  }
}
.sec_voice .voice_list_item .voice_list_item_inner .voice_list_item_name p {
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .sec_voice .voice_list_item .voice_list_item_inner .voice_list_item_name p {
    font-size: 7px;
  }
}
.sec_voice .voice_list_item .voice_plus {
  position: absolute;
  -webkit-transform: skewX(8deg);
          transform: skewX(8deg);
  right: -20px;
  bottom: -10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .sec_voice .voice_list_item .voice_plus {
    -webkit-transform: skewX(20deg);
            transform: skewX(20deg);
    width: 30px;
    right: -13px;
  }
}
.sec_voice .voice_list_item:hover .voice_plus {
  -webkit-transform: skewX(8deg) scale(1.1);
          transform: skewX(8deg) scale(1.1);
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .sec_voice .voice_list_item:hover .voice_plus {
    -webkit-transform: skewX(20deg);
            transform: skewX(20deg);
  }
}
.sec_voice .voice_modal {
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px;
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.sec_voice .voice_modal.is_open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.sec_voice .voice_modal.is_open .voice_modal_wrap {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.sec_voice .voice_modal_wrap {
  margin: 40px;
  position: relative;
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 0.35s ease, -webkit-transform 0.35s ease;
  transition: opacity 0.35s ease, -webkit-transform 0.35s ease;
  transition: opacity 0.35s ease, transform 0.35s ease;
  transition: opacity 0.35s ease, transform 0.35s ease, -webkit-transform 0.35s ease;
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_voice .voice_modal_wrap {
    margin: 0px;
  }
}
@media all and (min-width: 961px) {
  .sec_voice .voice_modal_inner {
    max-width: 960px;
    margin: 0 auto;
    position: relative;
  }
}
.sec_voice .voice_modal_inner .voice_modal_wrap_bg {
  color: #141414;
  overflow-y: auto;
  height: 88vh;
  margin: 0 auto;
  max-height: calc(100vh - 80px);
  padding: 140px 120px;
  width: min(960px, 100%);
  background: #fff;
  position: relative;
  background-image: url(../images/shapes/shape_modal.png);
  background-size: 25%;
  background-repeat: no-repeat;
  background-position: left bottom;
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_voice .voice_modal_inner .voice_modal_wrap_bg {
    padding: 40px 14%;
    background-size: 45%;
    height: 76vh;
  }
}
.sec_voice .voice_modal_inner .voice_close {
  position: absolute;
  top: -25px;
  right: -45px;
  width: 84px;
  height: 84px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: 1;
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_voice .voice_modal_inner .voice_close {
    top: -25px;
    right: 5px;
    width: 40px;
  }
}
.sec_voice .voice_modal_content .voice_modal_number {
  font-family: "Oswald", sans-serif;
  font-size: 50px;
  color: #E33D0B;
  font-weight: 500;
  border-bottom: 1px solid #E33D0B;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.2;
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_voice .voice_modal_content .voice_modal_number {
    font-size: 21px;
  }
}
.sec_voice .voice_modal_content .voice_modal_ttl {
  font-size: 28px;
  font-weight: 700;
  margin-top: 10px;
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_voice .voice_modal_content .voice_modal_ttl {
    font-size: 18px;
  }
}
.sec_voice .voice_modal_content .voice_modal_schedule {
  margin-top: 40px;
}
.sec_voice .voice_modal_content .voice_modal_schedule li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_voice .voice_modal_content .voice_modal_schedule li {
    gap: 20px;
  }
}
.sec_voice .voice_modal_content .voice_modal_schedule li .time {
  width: 120px;
  font-family: "Oswald", sans-serif;
  color: #E33D0B;
  font-size: 24px;
  font-weight: 500;
  padding-left: 25px;
  position: relative;
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_voice .voice_modal_content .voice_modal_schedule li .time {
    font-size: 12px;
    width: 70px;
  }
}
.sec_voice .voice_modal_content .voice_modal_schedule li .time::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #E33D0B;
  left: 0;
  top: 20px;
  border-radius: 20px;
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_voice .voice_modal_content .voice_modal_schedule li .time::before {
    top: 7px;
    width: 5px;
    height: 5px;
  }
}
.sec_voice .voice_modal_content .voice_modal_schedule li:not(:last-child) .time::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background: #E33D0B;
  left: 4px;
  top: 22px;
  border-radius: 20px;
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_voice .voice_modal_content .voice_modal_schedule li:not(:last-child) .time::after {
    top: 7px;
    width: 1px;
    left: 2px;
  }
}
.sec_voice .voice_modal_content .voice_modal_schedule li:not(:last-child) .event {
  padding-bottom: 40px;
}
.sec_voice .voice_modal_content .voice_modal_schedule li .event {
  width: calc(100% - 160px);
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_voice .voice_modal_content .voice_modal_schedule li .event {
    width: calc(100% - 70px);
  }
}
.sec_voice .voice_modal_content .voice_modal_schedule li .event span {
  font-size: 24px;
  font-weight: 500;
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_voice .voice_modal_content .voice_modal_schedule li .event span {
    font-size: 12px;
  }
}
.sec_voice .voice_modal_content .voice_modal_schedule li .event p {
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_voice .voice_modal_content .voice_modal_schedule li .event p {
    font-size: 9px;
  }
}
.sec_voice .voice_modal_content .voice_modal_schedule li .event img {
  margin-top: 20px;
}
.sec_voice .shape_img15,
.sec_voice .shape_img16,
.sec_voice .shape_img17 {
  position: absolute;
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_voice .shape_img15,
  .sec_voice .shape_img16,
  .sec_voice .shape_img17 {
    display: none;
  }
}
.sec_voice .shape_img15 {
  left: -4%;
  top: 138.5%;
  width: 19%;
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .sec_voice .shape_img15 {
    left: -43%;
    top: unset;
    bottom: -18%;
    width: 68%;
  }
}
.sec_voice .shape_img16 {
  left: -23%;
  top: 92.5%;
  width: 53%;
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .sec_voice .shape_img16 {
    top: unset;
    left: -10%;
    bottom: -31.5%;
    width: 69%;
  }
}
.sec_voice .shape_img17 {
  left: 7%;
  top: 135.5%;
  width: 20%;
  /* -1240 */
}
@media all and (max-width: 1080px) {
  .sec_voice .shape_img17 {
    top: unset;
    left: -88%;
    bottom: -10.5%;
    width: 139%;
  }
}

/* ENVIRONMENT 働く環境
---------------------------------------------------------- */
.sec_environment {
  position: relative;
}
.sec_environment::after {
  position: absolute;
  content: "";
  background: #DBDBDB;
  width: 100%;
  height: 100px;
  top: 0;
  z-index: -1;
}
.sec_environment .environment_wrap {
  background: #fff;
  max-width: 1120px;
  padding: 120px 90px 280px;
  margin: 0 auto 0;
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_environment .environment_wrap {
    padding: 40px 30px 80px;
    margin: 0 40px;
  }
}
.sec_environment .environment_ttl_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #141414;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 20px;
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_environment .environment_ttl_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .sec_environment .environment_ttl_wrap .section_ttl {
    margin: 0 auto;
  }
  .sec_environment .environment_ttl_wrap p {
    text-align: center;
  }
}
.sec_environment .environment_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px 40px;
  margin-top: 100px;
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_environment .environment_list {
    margin-top: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.sec_environment .environment_list_item {
  border: 1px solid #141414;
  padding: 20px 10px 20px 20px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .sec_environment .environment_list_item {
    width: calc(50% - 20px);
    padding: 26px;
  }
}
.sec_environment .environment_list_item_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_environment .environment_list_item_inner {
    gap: 16px;
  }
}
.sec_environment .environment_icon {
  width: 65px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .sec_environment .environment_icon {
    width: 135px;
  }
}
.sec_environment .environment_icon h3 {
  color: #E33D0B;
  font-size: 26px;
  text-align: center;
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_environment .environment_icon h3 {
    font-size: 13px;
  }
}
.sec_environment .environment_icon img {
  display: block;
  margin: 0px auto;
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_environment .environment_icon img {
    width: 70%;
    margin-top: 5px;
    height: 40px;
  }
}
.sec_environment .environment_text {
  color: #141414;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(100% - 81px);
  border-left: 1px solid #141414;
  padding-left: 15px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .sec_environment .environment_text {
    padding-left: 20px;
    width: calc(100% - 145px);
  }
}
.sec_environment .environment_text {
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_environment .environment_text {
    font-size: 12px;
  }
}
.sec_environment .environment_photo {
  position: absolute;
  left: 0;
  bottom: -90px;
  width: 100%;
  overflow-x: hidden;
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_environment .environment_photo {
    bottom: -120px;
  }
}
.sec_environment .environment_photo .splide__track {
  overflow: visible;
}
.sec_environment .environment_photo .splide__list {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sec_environment .environment_photo_item {
  overflow: hidden;
  width: clamp(240px, 33vw, 427px);
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_environment .environment_photo_item {
    width: clamp(160px, 55vw, 240px);
  }
}
.sec_environment .environment_photo_item picture {
  display: block;
}
.sec_environment .environment_photo_item img {
  display: block;
  width: 100%;
  height: auto;
}

/* For Guardians & Teachers 保護者・先生の皆さまへ
---------------------------------------------------------- */
.sec_parent {
  padding: 240px 0 180px;
  background: #DBDBDB;
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_parent {
    padding: 160px 0 80px;
  }
}
.sec_parent .parent_ttl_wrap {
  color: #141414;
}
.sec_parent .parent_ttl_wrap p {
  margin: 60px 0;
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_parent .parent_ttl_wrap p {
    margin: 30px 0 60px;
    text-align: center;
  }
}
.sec_parent .parent_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #141414;
  gap: 50px;
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_parent .parent_list {
    gap: 30px;
  }
}
@-webkit-keyframes parentItemAppear {
  0% {
    opacity: 0;
    -webkit-transform: translateY(32px);
            transform: translateY(32px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes parentItemAppear {
  0% {
    opacity: 0;
    -webkit-transform: translateY(32px);
            transform: translateY(32px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@media all and (max-width: 1240px) {
  .sec_parent .parent_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.sec_parent .parent_list_item {
  background: #fff;
  padding: 40px;
  opacity: 0;
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_parent .parent_list_item {
    padding: 25px 40px;
  }
}
.sec_parent .parent_list.scroll_active .parent_list_item {
  -webkit-animation: parentItemAppear 0.56s cubic-bezier(0.22, 1, 0.36, 1) forwards;
          animation: parentItemAppear 0.56s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.sec_parent .parent_list.scroll_active .parent_list_item:nth-child(2) {
  -webkit-animation-delay: 0.14s;
          animation-delay: 0.14s;
}
.sec_parent .parent_list.scroll_active .parent_list_item:nth-child(3) {
  -webkit-animation-delay: 0.28s;
          animation-delay: 0.28s;
}
.sec_parent .parent_icon h3 {
  text-align: center;
  color: #E33D0B;
  font-size: 20px;
}
.sec_parent .parent_icon img {
  display: block;
  margin: 30px auto;
}

.last_block {
  position: relative;
}
.last_block::after {
  content: "";
  position: absolute;
  background-image: url(../images/last_bg_pc.png);
  background-size: auto;
  background-repeat: no-repeat;
  background-position: bottom;
  z-index: -1;
  pointer-events: none;
  width: 100%;
  height: 100%;
  bottom: 0;
  /* -750 */
}
@media all and (max-width: 750px) {
  .last_block::after {
    background-image: url(../images/last_bg_sp.png);
  }
}

/* FAQ よくある質問
---------------------------------------------------------- */
.sec_faq {
  padding: 100px 0;
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_faq {
    padding: 60px 0;
  }
}
.sec_faq .faq_list {
  margin-top: 100px;
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_faq .faq_list {
    margin-top: 50px;
  }
}
.sec_faq .faq_list_item {
  padding: 0 0px 10px 0;
  position: relative;
  cursor: pointer;
}
.sec_faq .faq_list_item:not(:last-child) {
  border-bottom: 1px solid #707070;
  margin-bottom: 30px;
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_faq .faq_list_item:not(:last-child) {
    margin-bottom: 10px;
  }
}
.sec_faq .faq_list_item {
  font-size: 18px;
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_faq .faq_list_item {
    font-size: 12px;
  }
}
.sec_faq .faq_list_item:focus-visible {
  outline: 2px solid #E33D0B;
  outline-offset: 4px;
}
.sec_faq .faq_list_item::after {
  content: "";
  position: absolute;
  background-image: url(../images/arr_pc.png);
  right: 7px;
  top: 17px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  width: 16px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_faq .faq_list_item::after {
    width: 9px;
    height: 12px;
    top: 11px;
    background-image: url(../images/arr_sp.png);
  }
}
.sec_faq .faq_list_item.is_open::after {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.sec_faq .faq_list_item .faq_question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_faq .faq_list_item .faq_question {
    gap: 10px;
    margin-bottom: 0px;
  }
}
.sec_faq .faq_list_item .faq_question span {
  font-size: 24px;
  font-family: "Oswald", sans-serif;
  color: #E33D0B;
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_faq .faq_list_item .faq_question span {
    font-size: 18px;
  }
}
.sec_faq .faq_list_item .faq_question p {
  position: relative;
}
.sec_faq .faq_list_item .faq_question p::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  background: #fff;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.sec_faq .faq_list_item .faq_answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0 0 30px;
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_faq .faq_list_item .faq_answer {
    gap: 10px;
    padding: 0 0 10px;
  }
}
.sec_faq .faq_list_item .faq_answer span {
  font-weight: 700;
  font-size: 24px;
  font-family: "Oswald", sans-serif;
  color: #E33D0B;
  line-height: 1.4;
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_faq .faq_list_item .faq_answer span {
    font-size: 18px;
  }
}
@media (hover: hover) {
  .sec_faq .faq_list_item:hover .faq_question p::after {
    width: 100%;
  }
  .sec_faq .faq_list_item:hover::after {
    top: 22px;
  }
}

.sec_recruit {
  background: rgba(227, 61, 11, 0.66);
  padding: 100px 0;
  padding: 100px 0;
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_recruit {
    padding: 50px 0 70px;
  }
}
.sec_recruit .recruit_ttl_wrap p {
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_recruit .recruit_ttl_wrap p {
    text-align: center;
  }
}
.sec_recruit .section_ttl {
  margin-bottom: 60px;
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_recruit .section_ttl {
    margin-bottom: 30px;
  }
}
.sec_recruit .section_ttl .en {
  color: #fff;
}

/* Footer
---------------------------------------------------------- */
.foot_logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px 0;
  background: #141414;
  gap: 20px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  /* 751- */
}
@media all and (min-width: 751px) {
  .foot_logo {
    padding: 40px 0 60px;
  }
}
.foot_logo img {
  width: 267px;
  /* -750 */
}
@media all and (max-width: 750px) {
  .foot_logo img {
    width: 104px;
  }
}
.foot_logo span {
  line-height: 1.6;
  font-weight: 700;
  /* -750 */
}
@media all and (max-width: 750px) {
  .foot_logo span {
    font-size: 6px;
  }
}
/*# sourceMappingURL=top.css.map */