@charset "UTF-8";
/* ==========================================================================//
//
// トップページ
//
// ========================================================================== */
/* header
---------------------------------------------------------- */
.header:not(.scrolled, .nav_hovered) {
  --color: #fff;
}
.header:not(.scrolled, .nav_hovered) .logo img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  -webkit-transition: -webkit-filter 0.4s;
  transition: -webkit-filter 0.4s;
  transition: filter 0.4s;
  transition: filter 0.4s, -webkit-filter 0.4s;
}

/* ローディング
---------------------------------------------------------- */
.loading_wrap {
  position: fixed;
  inset: 0;
  background-color: #fef1e7;
  display: -ms-grid;
  display: grid;
  place-items: center;
  z-index: 500;
}
.loading_wrap .loading_content {
  text-align: center;
}
.loading_wrap .loading_content img {
  width: 90px;
}
@media all and (min-width: 751px) {
  .loading_wrap .loading_content img {
    width: 120px;
  }
}
.loading_wrap .loading_content .dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-top: 29px;
}
@media all and (min-width: 751px) {
  .loading_wrap .loading_content .dots {
    gap: 16px;
    margin-top: 38px;
  }
}
.loading_wrap .loading_content .dots span {
  aspect-ratio: 1;
  width: 11px;
  border-radius: 50%;
  background-color: #163259;
  opacity: 0.3;
  -webkit-animation: bounce 1s infinite ease-in-out;
          animation: bounce 1s infinite ease-in-out;
}
@media all and (min-width: 751px) {
  .loading_wrap .loading_content .dots span {
    width: 14px;
  }
}
.loading_wrap .loading_content .dots span:nth-child(1) {
  -webkit-animation-delay: -0.36s;
          animation-delay: -0.36s;
}
.loading_wrap .loading_content .dots span:nth-child(2) {
  -webkit-animation-delay: -0.24s;
          animation-delay: -0.24s;
}
@-webkit-keyframes bounce {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}
@keyframes bounce {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

/* 共通
---------------------------------------------------------- */
.sec_ttl {
  margin-bottom: 12px;
}
@media all and (min-width: 751px) {
  .sec_ttl {
    margin-bottom: 36px;
  }
}
.sec_ttl .jp {
  position: relative;
  font-weight: bold;
  font-size: 12px;
  padding-left: 0.8em;
}
@media all and (min-width: 751px) {
  .sec_ttl .jp {
    font-size: 13px;
  }
}
.sec_ttl .jp::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #d63032;
  aspect-ratio: 1;
  border-radius: 50%;
  width: 4px;
}
@media all and (min-width: 751px) {
  .sec_ttl .jp::before {
    width: 6px;
  }
}
.sec_ttl .en {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  color: #d63032;
  font-weight: bold;
  font-size: 46px;
  letter-spacing: 0.02em;
}
@media all and (min-width: 751px) {
  .sec_ttl .en {
    font-size: 74px;
  }
}

/* メインビジュアル
---------------------------------------------------------- */
.mv {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  height: 100svh;
}
.mv::before {
  position: absolute;
  content: "";
  inset: 0;
  background-color: rgba(0, 0, 0, 0.15);
  z-index: 1;
}
.mv .copy_wrap {
  position: absolute;
  z-index: 3;
  left: 10px;
  bottom: 23px;
  width: min(318px, 84.8%);
}
@media all and (min-width: 751px) {
  .mv .copy_wrap {
    left: 23px;
    bottom: 50px;
    width: min(885px, 64.78%);
  }
}
.mv .copy_wrap .copy {
  position: relative;
  opacity: 0;
  -webkit-transform: translate(10%, 10%);
          transform: translate(10%, 10%);
  -webkit-animation: impactIn 0.4s 1.4s forwards;
          animation: impactIn 0.4s 1.4s forwards;
}
.mv .copy_wrap .copy::before {
  position: absolute;
  content: "";
  inset: 0;
  background-color: transparent;
  backdrop-filter: grayscale(100%);
  -webkit-transform: scale(1.2) skew(-40deg);
          transform: scale(1.2) skew(-40deg);
  clip-path: inset(0);
  -webkit-animation: filterHide 2s 1.8s forwards;
          animation: filterHide 2s 1.8s forwards;
}
@-webkit-keyframes filterHide {
  0% {
    clip-path: inset(0);
  }
  100% {
    clip-path: inset(0 0 0 100%);
  }
}
@keyframes filterHide {
  0% {
    clip-path: inset(0);
  }
  100% {
    clip-path: inset(0 0 0 100%);
  }
}
@-webkit-keyframes impactIn {
  0% {
    opacity: 0;
    -webkit-transform: translate(10%, 10%);
            transform: translate(10%, 10%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes impactIn {
  0% {
    opacity: 0;
    -webkit-transform: translate(10%, 10%);
            transform: translate(10%, 10%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
.mv .movie {
  position: relative;
  width: 100%;
  height: 100%;
}
.mv .movie::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: calc(var(--header_height) * 2);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(0, 0, 0, 0.5)), to(transparent));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0, transparent 100%);
  z-index: 2;
}
.mv .movie video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* page_body
---------------------------------------------------------- */
.page_body {
  overflow: hidden;
  background-image: url(../images/top/bg_wave01_sp.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center 6%;
  padding-top: 32px;
  padding-bottom: 60px;
}
@media all and (min-width: 751px) {
  .page_body {
    background-image: url(../images/top/bg_wave01_pc.svg);
    background-position: center 10%;
    padding-top: 62px;
    padding-bottom: 150px;
  }
}

/* バナー
---------------------------------------------------------- */
.banner_area {
  margin-bottom: 88px;
}
@media all and (min-width: 751px) {
  .banner_area {
    margin-bottom: 200px;
  }
}
.banner_area .banner {
  margin-inline: auto;
}
@media all and (min-width: 751px) {
  .banner_area .banner {
    width: min(1000px, 100%);
  }
}
.banner_area .banner a {
  display: block;
}
@media (hover: hover) {
  .banner_area .banner a {
    -webkit-transition: -webkit-transform 0.4s;
    transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
  }
  .banner_area .banner a:hover {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

/* message
---------------------------------------------------------- */
.sec_message {
  margin-bottom: 57px;
}
@media all and (min-width: 751px) {
  .sec_message {
    margin-bottom: 150px;
  }
}
.sec_message .content {
  display: -ms-grid;
  display: grid;
  gap: 20px 18px;
}
@media all and (min-width: 751px) {
  .sec_message .content {
    -ms-grid-columns: 20% 8% 1fr 8% 23.8%;
    grid-template-columns: 20% 1fr 23.8%;
    -ms-grid-rows: auto 26px auto 26px 1fr;
    grid-template-rows: auto auto 1fr;
    gap: 26px 8%;
  }
  .sec_message .content > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .sec_message .content > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .sec_message .content > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }
  .sec_message .content > *:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .sec_message .content > *:nth-child(5) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .sec_message .content > *:nth-child(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 5;
  }
  .sec_message .content > *:nth-child(7) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .sec_message .content > *:nth-child(8) {
    -ms-grid-row: 5;
    -ms-grid-column: 3;
  }
  .sec_message .content > *:nth-child(9) {
    -ms-grid-row: 5;
    -ms-grid-column: 5;
  }
}
@media screen and (min-width: 751px) and (max-width: 1000px) {
  .sec_message .content {
    gap: 20px 5%;
  }
}
.sec_message .copy {
  -ms-grid-column-span: 2;
  grid-column: span 2;
  -ms-grid-row: 1;
  grid-row: 1;
  font-size: 20px;
  letter-spacing: 0.02em;
  line-height: 1.7;
}
@media all and (min-width: 751px) {
  .sec_message .copy {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    grid-row: 1;
    font-size: 34px;
  }
}
@media screen and (min-width: 751px) and (max-width: 1000px) {
  .sec_message .copy {
    font-size: 24px;
  }
}
.sec_message .image01 {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 2;
  grid-row: 2;
}
@media all and (min-width: 751px) {
  .sec_message .image01 {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row-span: 3;
    grid-row: span 3;
  }
}
.sec_message .image02 {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 2;
  grid-row: 2;
}
@media all and (min-width: 751px) {
  .sec_message .image02 {
    -ms-grid-column: 3;
    grid-column: 3;
    -ms-grid-row-span: 3;
    grid-row: span 3;
  }
}
.sec_message .text {
  -ms-grid-column-span: 2;
  grid-column: span 2;
  -ms-grid-row: 3;
  grid-row: 3;
}
@media all and (min-width: 751px) {
  .sec_message .text {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 2;
    grid-row: 2;
    font-size: 17px;
  }
}
@media screen and (min-width: 751px) and (max-width: 1000px) {
  .sec_message .text {
    font-size: 14px;
  }
}
.sec_message .text p {
  line-height: 2;
  letter-spacing: 0.03em;
}
.sec_message .text p:not(:last-child) {
  margin-bottom: 1em;
}
.sec_message .more_btn {
  -ms-grid-column-span: 2;
  grid-column: span 2;
  -ms-grid-row: 4;
  grid-row: 4;
}
@media all and (max-width: 750px) {
  .sec_message .more_btn {
    margin-inline: auto;
  }
}
@media all and (min-width: 751px) {
  .sec_message .more_btn {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 3;
    grid-row: 3;
    margin-top: 20px;
  }
}

/* service
---------------------------------------------------------- */
.sec_service {
  overflow: hidden;
  margin-bottom: 55px;
}
@media all and (min-width: 751px) {
  .sec_service {
    margin-bottom: 140px;
  }
}
.sec_service .container {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #fff;
  background-color: #2e2725;
  border-radius: 6px 0 0 6px;
  overflow: hidden;
  padding: 48px 27px;
}
@media all and (max-width: 750px) {
  .sec_service .container {
    margin-right: calc(50% - 50vw);
  }
}
@media all and (min-width: 751px) {
  .sec_service .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 10px;
    padding: 0;
  }
}
.sec_service .texts {
  display: contents;
}
@media all and (min-width: 751px) {
  .sec_service .texts {
    display: block;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 6%;
  }
}
@media all and (max-width: 750px) {
  .sec_service .image {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media all and (min-width: 751px) {
  .sec_service .image {
    width: 50%;
    -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
  }
  .sec_service .image img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.sec_service .sec_ttl .jp {
  color: #fff;
}
@media all and (min-width: 751px) {
  .sec_service .sec_ttl .en {
    font-size: 62px;
  }
}
@media all and (min-width: 751px) and (max-width: 1280px) {
  .sec_service .sec_ttl .en {
    font-size: 4.2vw;
  }
}
.sec_service .copy {
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 23px;
}
@media all and (min-width: 751px) {
  .sec_service .copy {
    font-size: 28px;
    margin-bottom: 32px;
  }
}
@media all and (min-width: 751px) and (max-width: 1280px) {
  .sec_service .copy {
    font-size: 2.1vw;
  }
}
.sec_service .text {
  color: #c9c9c9;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.03em;
  margin-top: 17px;
}
@media all and (max-width: 750px) {
  .sec_service .text {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media all and (min-width: 751px) {
  .sec_service .text {
    margin-top: 32px;
  }
}
.sec_service .text p:not(:last-child) {
  margin-bottom: 1em;
}
.sec_service .more_btn {
  margin-top: 35px;
}
@media all and (max-width: 750px) {
  .sec_service .more_btn {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-inline: auto;
  }
}

/* interview
---------------------------------------------------------- */
.sec_interview {
  position: relative;
  z-index: 2;
  margin-bottom: 93px;
}
@media all and (min-width: 751px) {
  .sec_interview {
    margin-bottom: 156px;
  }
}
.sec_interview::before {
  position: absolute;
  content: "";
  top: -130px;
  left: 0;
  width: 100%;
  aspect-ratio: 375/419;
  background-image: url(../images/top/bg_wave02_sp.svg);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}
@media all and (min-width: 751px) {
  .sec_interview::before {
    top: 34%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    aspect-ratio: 1366/750;
    background-image: url(../images/top/bg_wave02_pc.svg);
  }
}
.sec_interview .copy {
  font-size: 20px;
  letter-spacing: 0.02em;
}
@media all and (min-width: 751px) {
  .sec_interview .copy {
    font-size: 26px;
  }
}
.sec_interview .slide_wrap {
  position: relative;
  margin-top: 26px;
}
@media all and (max-width: 750px) {
  .sec_interview .slide_wrap .splide__track {
    overflow: visible;
  }
}
@media all and (min-width: 751px) {
  .sec_interview .slide_wrap .splide__track {
    margin-right: calc(50% - 50vw);
    padding-right: calc(50% - 50vw);
  }
}
.sec_interview .slide_wrap .splide__slide a {
  display: block;
}
@media (hover: hover) {
  .sec_interview .slide_wrap .splide__slide a .image {
    overflow: hidden;
  }
  .sec_interview .slide_wrap .splide__slide a img {
    -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;
  }
  .sec_interview .slide_wrap .splide__slide a:hover img {
    -webkit-transform: scale(1.07);
            transform: scale(1.07);
  }
}
.sec_interview .slide_wrap .splide__slide .image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.sec_interview .slide_wrap .splide__slide .image::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.7)));
  background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}
.sec_interview .slide_wrap .splide__slide .image .copy {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 17px;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.03em;
  z-index: 2;
}
.sec_interview .slide_wrap .splide__slide .texts {
  margin-top: 9px;
}
.sec_interview .slide_wrap .splide__slide .texts .position {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.03em;
  margin-bottom: 3px;
}
.sec_interview .slide_wrap .splide__slide .texts .name {
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.03em;
}
.sec_interview .slide_wrap .splide__arrows {
  position: absolute;
  z-index: 1;
  width: min(440px, 80%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  pointer-events: none;
}
@media all and (max-width: 750px) {
  .sec_interview .slide_wrap .splide__arrows {
    top: 42%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
@media all and (min-width: 751px) {
  .sec_interview .slide_wrap .splide__arrows {
    top: -20px;
    right: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    gap: 10px;
  }
}
.sec_interview .slide_wrap .splide__arrows .splide__arrow {
  position: relative;
  display: block;
  aspect-ratio: 1;
  width: 44px;
  background-color: #2e2725;
  border: 1px solid #2e2725;
  border-radius: 50%;
  pointer-events: auto;
}
@media all and (min-width: 751px) {
  .sec_interview .slide_wrap .splide__arrows .splide__arrow {
    width: 57px;
  }
}
.sec_interview .slide_wrap .splide__arrows .splide__arrow > svg {
  display: none;
}
.sec_interview .slide_wrap .splide__arrows .splide__arrow::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: url(../images/common/arrow02.svg);
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 15/7;
  width: 26.3%;
  -webkit-transition: -webkit-filter 0.4s;
  transition: -webkit-filter 0.4s;
  transition: filter 0.4s;
  transition: filter 0.4s, -webkit-filter 0.4s;
}
@media all and (max-width: 750px) {
  .sec_interview .slide_wrap .splide__arrows .splide__arrow--prev {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.sec_interview .slide_wrap .splide__arrows .splide__arrow--prev::after {
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
          transform: translate(-50%, -50%) rotate(180deg);
}
@media all and (max-width: 750px) {
  .sec_interview .slide_wrap .splide__arrows .splide__arrow--next {
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}
@media (hover: hover) {
  .sec_interview .slide_wrap .splide__arrows .splide__arrow {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .sec_interview .slide_wrap .splide__arrows .splide__arrow:hover {
    background-color: #fff;
  }
  .sec_interview .slide_wrap .splide__arrows .splide__arrow:hover::after {
    -webkit-filter: invert(1);
            filter: invert(1);
  }
}
.sec_interview .more_btn {
  margin-inline: auto;
  margin-top: 25px;
}
@media all and (min-width: 751px) {
  .sec_interview .more_btn {
    margin-top: 75px;
    margin-bottom: 10px;
  }
}

/* culture
---------------------------------------------------------- */
.sec_culture {
  position: relative;
  z-index: 1;
}
.sec_culture::before {
  position: absolute;
  content: "";
  top: -220px;
  left: 0;
  width: 100%;
  aspect-ratio: 375/333;
  background-image: url(../images/top/bg_wave03_sp.svg);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}
@media all and (min-width: 751px) {
  .sec_culture::before {
    top: 32%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    aspect-ratio: 1366/848;
    background-image: url(../images/top/bg_wave03_pc.svg);
  }
}
.sec_culture .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media all and (min-width: 751px) {
  .sec_culture .content {
    position: relative;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 10%;
  }
}
.sec_culture .copy {
  font-size: 20px;
  letter-spacing: 0.02em;
  line-height: 1.7;
}
@media all and (min-width: 751px) {
  .sec_culture .copy {
    font-size: 34px;
  }
}
@media screen and (min-width: 751px) and (max-width: 1000px) {
  .sec_culture .copy {
    font-size: 24px;
  }
}
.sec_culture .text {
  margin-top: 18px;
}
@media all and (min-width: 751px) {
  .sec_culture .text {
    margin-top: 22px;
  }
}
.sec_culture .text p {
  line-height: 2;
  letter-spacing: 0.03em;
}
@media all and (min-width: 751px) {
  .sec_culture .text p {
    font-size: 17px;
  }
}
@media screen and (min-width: 751px) and (max-width: 1000px) {
  .sec_culture .text p {
    font-size: 14px;
  }
}
.sec_culture .text p:not(:last-child) {
  margin-bottom: 1em;
}
.sec_culture .more_btn {
  margin-top: 28px;
}
@media all and (min-width: 751px) {
  .sec_culture .more_btn {
    margin-top: 50px;
  }
}
@media all and (min-width: 751px) {
  .sec_culture .texts {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-right: 7%;
  }
}
@media all and (min-width: 751px) and (max-width: 1200px) {
  .sec_culture .texts {
    padding-right: 0;
  }
}
@media all and (min-width: 751px) {
  .sec_culture .image01 {
    width: 39.7%;
  }
}
.sec_culture .image02 {
  display: none;
}
@media all and (min-width: 751px) {
  .sec_culture .image02 {
    position: absolute;
    display: block;
    width: 18.4%;
    top: 74%;
    right: 0;
  }
}
@media all and (min-width: 751px) and (max-width: 1200px) {
  .sec_culture .image02 {
    top: 84%;
  }
}