@charset "UTF-8";
html {
  font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #030025;
  font-weight: 500;
  letter-spacing: 0.01rem;
  line-height: 1.76;
}

@media (max-width: 1240px) {
  html {
    font-size: 1.2903225806vw;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 4.2666666667vw;
  }
}

.u_sp {
  display: none;
}

@media (max-width: 768px) {
  .u_sp {
    display: block !important;
  }
  .u_pc {
    display: none !important;
  }
}
/* コンテンツ幅 */
.inner {
  max-width: 1250px;
  width: calc(100% - 64px);
  margin: 0 auto;
}

@media (min-width: 769px) {
  .p-flex {
    display: flex;
  }
}
.f-mon {
  font-family: "Montserrat", sans-serif;
}

a {
  transition: all 0.3s;
}

a:hover {
  opacity: 0.5;
}

/* ヘッダー
***************************************************************/
header {
  position: fixed;
  top: 0;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
  padding: 33px 0;
  z-index: 9999;
}
header .header_inner {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin: 0 70px 0 35px;
}
header .header_inner .logo_content .logo {
  width: 19rem;
}
@media (max-width: 768px) {
  header .header_inner .logo_content .logo {
    width: 213px;
  }
}

/* ハンバーガーメニュー非表示 */
.toggle-menu {
  display: none;
}

/* ヘッダーリンク */
@media (min-width: 769px) {
  .header_nav .global_nav {
    margin-top: 37px;
  }
}
.header_nav .global_nav .brand_logo {
  width: 11.375rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .header_nav .global_nav .brand_logo {
    filter: brightness(0) invert(1);
  }
}
.header_nav .global_nav ul {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.header_nav .global_nav ul li {
  line-height: 1.2;
  color: #17327C;
  position: relative;
  padding-left: 10px;
}
.header_nav .global_nav ul li.is-active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 2px;
  background-color: #17327C;
}
.header_nav .global_nav ul li a {
  padding-left: 8px;
  font-size: 15px;
  letter-spacing: 0.05em;
  font-weight: 400;
}

@media (max-width: 768px) {
  header {
    padding: 20px 0;
  }
  header .header_inner {
    display: block;
    margin: 0 23px 0 17px;
  }
  header .header_inner .logo_content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  /* ハンバーガーメニュー */
  .toggle-menu {
    display: inline-block;
    width: 17px;
    height: 12px;
    position: relative;
    z-index: 100;
    top: 4px;
  }
  .toggle-menu .toggle-line {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    text-indent: -9999px;
    width: 17px;
    height: 1.5px;
    background-color: #030025;
    border-radius: 12px;
  }
  .toggle-menu .toggle-line::before,
  .toggle-menu .toggle-line::after {
    content: "";
    position: absolute;
    left: 0;
    width: 17px;
    height: 1.5px;
    background-color: #030025;
    transition: 0.3s;
    border-radius: 12px;
  }
  .toggle-menu .toggle-line::before {
    top: -7px;
  }
  .toggle-menu .toggle-line::after {
    top: 7px;
  }
  .header_nav {
    position: fixed;
    top: 0;
    left: 0;
    padding: 0 15px 0;
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    background-color: rgba(23, 50, 124, 0.9);
    z-index: 90;
    transform: translateX(100%);
    transition: 0.3s ease-out;
  }
  .header_nav .global_nav {
    margin-top: 120px;
    padding: 0 20px;
  }
  .header_nav .global_nav ul {
    flex-flow: column;
    gap: 32px;
  }
  .header_nav .global_nav ul li {
    line-height: 1;
    padding-left: unset;
  }
  .header_nav .global_nav ul li.is-active::before {
    display: none;
  }
  .header_nav .global_nav ul li a {
    color: #fff;
    font-size: 15px;
    padding-left: unset;
  }
  .header_nav .global_nav ul li a .icon-instagram {
    margin-top: 18px;
    width: 24px;
    height: auto;
    filter: brightness(0) invert(1);
  }
  .header_nav .global_nav ul li .corporate_link {
    border: 1px solid #818BB8;
    border-radius: 30px;
    padding: 10px 0;
    width: 275px;
    color: #818BB8;
    text-align: left;
    font-size: 15px;
    padding-left: 22px;
    position: relative;
    margin: 69px 0 100px;
  }
  .header_nav .global_nav ul li .corporate_link::before {
    content: "";
    display: inline-block;
    background-image: url(../img/h-link-arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
    width: 14px;
    height: 14px;
    position: absolute;
    right: 23px;
    top: 50%;
    transform: translateY(-50%);
  }
  .open .toggle-menu {
    transition: all 0.5s linear 1s;
  }
  .open .toggle-menu .toggle-line {
    height: 0;
    background-color: #000;
  }
  .open .toggle-menu .toggle-line::before {
    background-color: #fff;
    transform: rotate(-45deg);
    top: 0;
  }
  .open .toggle-menu .toggle-line::after {
    background-color: #fff;
    transform: rotate(45deg);
    top: 0;
  }
  .open .header_nav {
    transform: translateX(0);
    overflow: auto;
  }
}
header.white-text .global_nav a,
header.white-text .brand_logo,
header.white-text .toggle-menu .toggle-line {
  color: white;
  filter: brightness(0) invert(1); /* ロゴ画像も白っぽくしたい場合 */
}

header.white-text .toggle-menu .toggle-line,
header.white-text .global_nav ul li.is-active::before {
  background-color: #fff;
}

/* フッター
***************************************************************/
footer {
  position: relative;
  z-index: 10;
  background: #fff;
  width: 100%;
  padding: 118px 0 130px;
  text-align: center;
}
@media (max-width: 768px) {
  footer {
    padding: 3.5625rem 0 2.3125rem;
  }
}
footer .inner {
  max-width: 861px;
}
footer .footer_logo {
  width: 33.125rem;
}
@media (max-width: 768px) {
  footer .footer_logo {
    width: 100%;
  }
}
footer .recruit_link {
  margin: 7.125rem 0 4.375rem;
}
@media (max-width: 768px) {
  footer .recruit_link {
    margin: 3.125rem 0 2.8125rem;
  }
}
footer .recruit_banner {
  display: block;
}
footer .footer_content_wrap {
  justify-content: space-between;
}
footer .footer_content_wrap a {
  display: block;
}
footer .footer_content_wrap .icon-instagram {
  width: 37px;
  height: auto;
}
footer .footer_content_wrap .corporate_link {
  border: 1px solid #17327C;
  border-radius: 30px;
  padding: 7px 0;
  width: 252px;
  color: #17327C;
  text-align: left;
  font-size: 15px;
  padding-left: 22px;
  position: relative;
}
@media (max-width: 768px) {
  footer .footer_content_wrap .corporate_link {
    margin: 22px auto 0;
  }
}
footer .footer_content_wrap .corporate_link::before {
  content: "";
  display: inline-block;
  background-image: url(../img/link-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  width: 14px;
  height: 14px;
  position: absolute;
  right: 23px;
  top: 50%;
  transform: translateY(-50%);
}
footer .copy {
  margin-top: 5.5rem;
  color: #17327C;
  font-size: 12px;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  footer .copy {
    margin-top: 3rem;
    font-size: 10px;
  }
}

body {
  overscroll-behavior: contain;
  height: 100vh;
}

section {
  position: relative;
  z-index: 10;
}

section.fv {
  z-index: 1;
}

.fv {
  background-image: url("/assets/img/TAE-KV01-sp.webp");
  background-size: cover;
  background-position: center;
}

@media (min-width: 768px) {
  .fv {
    background-image: url("/assets/img/TAE-KV01-pc.webp");
  }
}
.fv {
  position: relative;
  padding-top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
.fv img {
  height: 100%;
  width: 100%;
}
.fv .kv-logo {
  width: 21.6875rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: auto;
}
@media (max-width: 768px) {
  .fv .kv-logo {
    width: 13.3125rem;
  }
}
.fv .inner {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: auto;
}
@media (max-width: 768px) {
  .fv .inner {
    top: 17.5rem;
  }
}
@media (min-width: 769px) {
  .fv .inner h1 {
    margin-left: 5rem;
  }
}
@media (max-width: 768px) {
  .fv .inner h1 {
    text-align: center;
  }
}
.fv .fv_scrolldown {
  width: 18px;
  position: absolute;
  bottom: -10px;
  right: 69px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 768px) {
  .fv .fv_scrolldown {
    width: 13px;
    right: 1.3125rem;
  }
}
.fv .fv_scrolldown .fv_scrolldown-text {
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transform: rotate(-90deg);
  margin-bottom: 36px;
}
@media (max-width: 768px) {
  .fv .fv_scrolldown .fv_scrolldown-text {
    font-size: 0.625rem;
    margin-bottom: 1.4375rem;
  }
}
.fv .fv_scrolldown .fv_scrolldown-bar {
  position: relative;
}
.fv .fv_scrolldown .fv_scrolldown-bar span {
  display: inline-block;
}
.fv .fv_scrolldown .fv_scrolldown-bar .bar {
  width: 1px;
  height: 141px;
  background: #17327C;
}
@media (max-width: 768px) {
  .fv .fv_scrolldown .fv_scrolldown-bar .bar {
    height: 108px;
  }
}
.fv .fv_scrolldown .fv_scrolldown-bar .scrolldown_circle {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50%;
  width: 10px;
  height: auto;
  aspect-ratio: 1;
  background: #17327C;
  border-radius: 50%;
  animation: scrollDown 2s ease-in-out infinite backwards, cirlemovehide 2s ease-in-out infinite backwards;
}
@media (max-width: 768px) {
  .fv .fv_scrolldown .fv_scrolldown-bar .scrolldown_circle {
    width: 6px;
  }
}
@keyframes scrollDown {
  0% {
    top: 0;
  }
  100% {
    top: 131px;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
.fv .logo {
  position: absolute;
  top: 33px;
  left: 35px;
  width: 19rem;
}
@media (max-width: 768px) {
  .fv .logo {
    width: 213px;
    top: 20px;
    left: 17px;
  }
}

.statement {
  padding: 13rem 0 6.625rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .statement {
    padding: 0 0 5.5rem;
  }
}
.statement .inner {
  max-width: 1177px;
}
.statement .statement_content_wrap {
  display: flex;
  position: relative;
}
.statement p,
.statement .statement_text01,
.statement .statement_text02,
.statement .statement_text03,
.statement .statement_text04 {
  color: #fff;
  text-align: left;
  line-height: 2.6;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  z-index: 10;
}
@media (max-width: 768px) {
  .statement p,
  .statement .statement_text01,
  .statement .statement_text02,
  .statement .statement_text03,
  .statement .statement_text04 {
    font-size: 0.875rem;
  }
}
.statement p span,
.statement .statement_text01 span,
.statement .statement_text02 span,
.statement .statement_text03 span,
.statement .statement_text04 span {
  white-space: nowrap;
}
.statement p span img.statement_text,
.statement .statement_text01 span img.statement_text,
.statement .statement_text02 span img.statement_text,
.statement .statement_text03 span img.statement_text,
.statement .statement_text04 span img.statement_text {
  height: 1.125rem;
  width: auto;
}
@media (max-width: 768px) {
  .statement p span img.statement_text,
  .statement .statement_text01 span img.statement_text,
  .statement .statement_text02 span img.statement_text,
  .statement .statement_text03 span img.statement_text,
  .statement .statement_text04 span img.statement_text {
    height: 0.75rem;
  }
}
@media (min-width: 769px) {
  .statement p span .u_sp,
  .statement .statement_text01 span .u_sp,
  .statement .statement_text02 span .u_sp,
  .statement .statement_text03 span .u_sp,
  .statement .statement_text04 span .u_sp {
    display: none;
  }
}
.statement .statement_text01 {
  margin-top: -13.5625rem;
}
.statement .statement_text01 span {
  white-space: nowrap;
}
@media (max-width: 768px) {
  .statement .statement_text01 {
    margin-top: -5.4375rem;
  }
}
@media (max-width: 768px) {
  .statement .statement_text02 {
    margin-top: -5rem;
  }
}
.statement .statement_text03 {
  margin-top: -6.25rem;
}
.statement .statement_text04 {
  margin-top: -6.5rem;
}
@media (max-width: 768px) {
  .statement .statement_text04 {
    margin-top: -6.25rem;
  }
}
.statement img {
  display: block;
}
.statement .img_statement01 {
  width: 23.3125rem;
}
@media (max-width: 768px) {
  .statement .img_statement01 {
    width: 10.625rem;
  }
}
.statement .img_statement02 {
  width: 22.5rem;
  margin-right: auto;
}
@media (max-width: 768px) {
  .statement .img_statement02 {
    width: 10.3125rem;
  }
}
.statement .img_statement03 {
  width: 20.25rem;
  margin-left: auto;
}
@media (max-width: 768px) {
  .statement .img_statement03 {
    width: 9.25rem;
  }
}
.statement .img_statement04 {
  width: 22.5rem;
  margin-right: auto;
}
@media (max-width: 768px) {
  .statement .img_statement04 {
    width: 10.25rem;
    margin-top: -9.375rem;
  }
}
.statement .img_statement05 {
  width: 25rem;
  margin-left: auto;
  margin-top: 12.5rem;
}
@media (max-width: 768px) {
  .statement .img_statement05 {
    width: 11.5rem;
  }
}
.statement .img_statement06 {
  width: 19.5rem;
  margin-right: auto;
}
@media (max-width: 768px) {
  .statement .img_statement06 {
    width: 8.9375rem;
    margin-top: 15.625rem;
  }
}
.statement .circle,
.statement .square {
  z-index: 10;
}

.img_statement_wrap {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.img_statement_wrap::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
}

.img_statement_wrap01 {
  margin-left: auto;
}
@media (max-width: 768px) {
  .img_statement_wrap01 {
    margin-right: 1rem;
  }
}

.img_statement_wrap02 {
  margin-top: 3.5rem;
  margin-right: auto;
  margin-left: 4rem;
}
@media (max-width: 768px) {
  .img_statement_wrap02 {
    margin-top: 10.375rem;
    margin-left: 0.625rem;
  }
}
.img_statement_wrap02::before {
  border-radius: 50%;
}

.img_statement_wrap03 {
  margin-top: -6.25rem;
  margin-left: auto;
  margin-right: 46px;
}
@media (max-width: 768px) {
  .img_statement_wrap03 {
    margin-top: 6.5625rem;
    margin-right: 1.25rem;
  }
}

.img_statement_wrap04 {
  margin-right: auto;
  margin-left: 1.5625rem;
}
@media (max-width: 768px) {
  .img_statement_wrap04 {
    margin-top: 15.75rem;
    margin-left: -0.25rem;
  }
}
.img_statement_wrap04::before {
  border-radius: 50%;
}

.img_statement_wrap05 {
  margin-left: auto;
  margin-right: 3.5625rem;
  margin-top: -19.4375rem;
}
@media (max-width: 768px) {
  .img_statement_wrap05 {
    margin-top: -6.25rem;
    margin-right: 0.75rem;
  }
}

.img_statement_wrap06 {
  margin-top: -12.625rem;
  margin-right: auto;
}
@media (max-width: 768px) {
  .img_statement_wrap06 {
    margin-top: -10.3125rem;
  }
}
.img_statement_wrap06::before {
  border-radius: 50%;
}

.sec_title_en {
  font-size: 1.75rem;
  font-weight: 500;
  color: #17327C;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .sec_title_en {
    font-size: 1.1875rem;
  }
}

.sec_title_jp {
  font-size: 0.875rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .sec_title_jp {
    font-size: 0.8125rem;
    line-height: 1;
  }
}

.movie {
  background-color: #fff;
  padding: 6.375rem 0 18.5rem;
}
@media (max-width: 768px) {
  .movie {
    padding: 2.5625rem 0 9.5rem;
  }
}
.movie .movie_content {
  width: 53.8125rem;
  margin: 8.25rem auto 0;
  display: block;
}
@media (max-width: 768px) {
  .movie .movie_content {
    width: 100%;
    margin: 6.75rem auto 0;
  }
}

.message {
  background-color: #fff;
  padding: 13.4375rem 0 24.25rem;
  border-top: 1px solid #D8DEEC;
}
@media (max-width: 768px) {
  .message {
    padding: 3.0625rem 0 7.125rem;
  }
}
.message .message_content {
  max-width: 53.8125rem;
  margin: 10.625rem auto 0;
}
@media (max-width: 768px) {
  .message .message_content {
    margin: 3.75rem auto 0;
  }
}
.message .message_content .message_content_top_wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .message .message_content .message_content_top_wrap {
    flex-direction: column-reverse;
  }
}
.message .message_content .message_content_top_wrap .message_content_item_right {
  width: 15.0625rem;
}
@media (max-width: 768px) {
  .message .message_content .message_content_top_wrap .message_content_item_right {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .message .message_content .message_content_top_wrap .message_content_item_right img {
    width: 12.25rem;
    height: 241px;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
    margin: 0 auto;
  }
}
.message .message_content .message_content_top_wrap .message_content_item_left h3 {
  font-size: 2.125rem;
  line-height: 1.9411764706;
  font-weight: bold;
}
@media (max-width: 768px) {
  .message .message_content .message_content_top_wrap .message_content_item_left h3 {
    font-size: 1.3125rem;
    margin-top: 3.375rem;
  }
}
@media (max-width: 768px) {
  .message .message_content .ceo_name_wrap {
    text-align: right;
  }
}
.message .message_content .ceo_name_wrap .company-name {
  font-size: 0.9375rem;
  margin: 3.4375rem 0 0.875rem;
}
@media (max-width: 768px) {
  .message .message_content .ceo_name_wrap .company-name {
    font-size: 0.8125rem;
    margin: 0;
  }
}
.message .message_content .ceo_name_wrap .ceo-name .job {
  font-size: 1.1875rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  .message .message_content .ceo_name_wrap .ceo-name .job {
    font-size: 0.9375rem;
  }
}
.message .message_content .ceo_name_wrap .ceo-name .name {
  font-weight: bold;
  font-size: 1.625rem;
  margin: 0 1.3125rem;
}
@media (max-width: 768px) {
  .message .message_content .ceo_name_wrap .ceo-name .name {
    font-size: 1.3125rem;
    margin: 0;
    margin-left: 0.9375rem;
  }
}
.message .message_content .ceo_name_wrap .ceo-name .name-en {
  font-size: 0.875rem;
  color: #818BB8;
}
@media (max-width: 768px) {
  .message .message_content .ceo_name_wrap .ceo-name .name-en {
    font-size: 0.8125rem;
  }
}
.message .message_text {
  margin-top: 5.75rem;
}
@media (max-width: 768px) {
  .message .message_text {
    margin-top: 2.3125rem;
    margin-bottom: 3.75rem;
    font-size: 0.875rem;
  }
}

.philosophy {
  padding: 6.75rem 0 12.5rem;
  background-color: #d8deec;
}
@media (max-width: 768px) {
  .philosophy {
    padding: 1.875rem 0 7.5rem;
  }
}
.philosophy .philosophy_content {
  max-width: 1240px;
  gap: 1.5rem;
  margin-top: 11rem;
}
@media (max-width: 768px) {
  .philosophy .philosophy_content {
    margin-top: 7.375rem;
  }
}
.philosophy .philosophy_content_left {
  width: 19.4375rem;
  margin: 0 auto;
}
.philosophy .philosophy_content_right {
  margin-top: 4.75rem;
}
@media (max-width: 768px) {
  .philosophy .philosophy_content_right .philosophy_content_title img {
    height: 0.75rem;
    width: auto;
    margin-bottom: 0.625rem;
  }
}
.philosophy .philosophy_content_right .philosophy_content_text {
  background-color: #fff;
  width: 39.25rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-weight: bold;
}
@media (max-width: 768px) {
  .philosophy .philosophy_content_right .philosophy_content_text {
    width: 100%;
  }
}
.philosophy .philosophy_content_right .mission_wrap {
  margin-bottom: 0.875rem;
}
.philosophy .philosophy_content_right .mission_wrap .philosophy_content_text {
  font-size: 1.375rem;
  padding: 3.1875rem 0;
}
@media (max-width: 768px) {
  .philosophy .philosophy_content_right .mission_wrap .philosophy_content_text {
    font-size: 0.9375rem;
    margin-bottom: 2.6875rem;
    padding: 2.0625rem 0;
  }
}
.philosophy .philosophy_content_right .vision_wrap {
  margin-bottom: 1.3125rem;
}
.philosophy .philosophy_content_right .vision_wrap .philosophy_content_text {
  font-size: 1.1875rem;
  padding: 1.25rem 0;
  line-height: 1.8421052632;
}
@media (max-width: 768px) {
  .philosophy .philosophy_content_right .vision_wrap .philosophy_content_text {
    font-size: 0.875rem;
    margin-bottom: 2.4375rem;
    padding: 2rem 0;
  }
}
.philosophy .philosophy_content_right .value_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
}
@media (max-width: 768px) {
  .philosophy .philosophy_content_right .value_wrap {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
  }
}
.philosophy .philosophy_content_right .value_wrap .philosophy_content_text {
  width: 100%;
  padding: 1.125rem 0;
  font-size: 0.875rem;
  margin-bottom: 0;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .philosophy .philosophy_content_right .value_wrap .philosophy_content_text {
    font-size: 0.875rem;
    padding: 1.25rem 0;
  }
}

.philosophy_content.u_pc .philosophy_content_title img {
  height: 0.6875rem;
  width: auto;
  margin-bottom: 0.625rem;
}
.philosophy_content.u_pc .philosophy_content_text {
  background-color: #fff;
  width: 39.25rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
@media (max-width: 768px) {
  .philosophy_content.u_pc .philosophy_content_text {
    width: 100%;
  }
}
.philosophy_content.u_pc .philosophy_mission_wrap {
  justify-content: flex-end;
  gap: 1.5rem;
}
.philosophy_content.u_pc .philosophy_mission_wrap .mission_wrap {
  margin-top: -30px;
}
.philosophy_content.u_pc .philosophy_mission_wrap .mission_wrap .philosophy_content_text {
  font-size: 1.375rem;
  padding: 3.1875rem 0;
}
@media (max-width: 1260px) and (min-width: 769px) {
  .philosophy_content.u_pc .philosophy_mission_wrap .mission_wrap .philosophy_content_text {
    font-size: 1.125rem;
  }
}
.philosophy_content.u_pc .philosophy_mission_wrap .philosophy_mission_imgwrap {
  align-items: center;
  max-height: 191px;
  height: 11.9375rem;
}
.philosophy_content.u_pc .philosophy_mission_wrap .philosophy_mission_imgwrap .mission-bg_wrap {
  position: relative;
}
.philosophy_content.u_pc .philosophy_mission_wrap .philosophy_mission_imgwrap .mission-bg_wrap .mission-bg {
  max-width: 247px;
  width: 15.4375rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.philosophy_content.u_pc .philosophy_mission_wrap .philosophy_mission_imgwrap .mission-bg_wrap .img_text {
  position: absolute;
  top: 5.375rem;
  left: 50%;
  transform: translateX(-50%);
}
.philosophy_content.u_pc .philosophy_mission_wrap .philosophy_mission_imgwrap .mission-bg_wrap .img_text p {
  color: #fff;
  text-align: center;
  font-size: 0.875rem;
  margin-top: 0.375rem;
}
.philosophy_content.u_pc .philosophy_mission_wrap .philosophy_mission_imgwrap .mission-bg_wrap .img_text img {
  height: 1.3125rem;
  width: auto;
}
.philosophy_content.u_pc .philosophy_mission_wrap .philosophy_mission_imgwrap .mission-line {
  max-width: 204px;
  width: 12.75rem;
  -o-object-fit: contain;
     object-fit: contain;
  margin-left: -9px;
}
@media screen and (max-width: 1280px) {
  .philosophy_content.u_pc .philosophy_mission_wrap .philosophy_mission_imgwrap .mission-line {
    width: 11.5rem;
  }
}
.philosophy_content.u_pc .philosophy_vision_wrap {
  justify-content: flex-end;
  gap: 1.5rem;
}
.philosophy_content.u_pc .philosophy_vision_wrap .vision_wrap {
  margin-top: -3.1875rem;
}
.philosophy_content.u_pc .philosophy_vision_wrap .vision_wrap .philosophy_content_text {
  font-size: 1.1875rem;
  padding: 1.25rem 0;
  line-height: 1.8421052632;
}
@media (max-width: 1260px) and (min-width: 769px) {
  .philosophy_content.u_pc .philosophy_vision_wrap .vision_wrap .philosophy_content_text {
    font-size: 0.9375rem;
  }
}
.philosophy_content.u_pc .philosophy_vision_wrap .philosophy_vision_imgwrap {
  align-items: center;
  max-height: 152px;
  height: 9.5rem;
  margin-top: 0.5625rem;
}
.philosophy_content.u_pc .philosophy_vision_wrap .philosophy_vision_imgwrap .vision-bg_wrap {
  position: relative;
}
.philosophy_content.u_pc .philosophy_vision_wrap .philosophy_vision_imgwrap .vision-bg_wrap .vision-bg {
  max-width: 387px;
  width: 24.1875rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.philosophy_content.u_pc .philosophy_vision_wrap .philosophy_vision_imgwrap .vision-bg_wrap .img_text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.philosophy_content.u_pc .philosophy_vision_wrap .philosophy_vision_imgwrap .vision-bg_wrap .img_text p {
  color: #fff;
  text-align: center;
  font-size: 0.875rem;
  margin-top: 0.375rem;
}
.philosophy_content.u_pc .philosophy_vision_wrap .philosophy_vision_imgwrap .vision-bg_wrap .img_text img {
  height: 1.3125rem;
  width: auto;
}
.philosophy_content.u_pc .philosophy_vision_wrap .philosophy_vision_imgwrap .vision-line {
  max-width: 130px;
  width: 8.125rem;
  -o-object-fit: contain;
     object-fit: contain;
  margin-left: -5px;
}
@media screen and (max-width: 1280px) {
  .philosophy_content.u_pc .philosophy_vision_wrap .philosophy_vision_imgwrap .vision-line {
    width: 6.875rem;
  }
}
.philosophy_content.u_pc .philosophy_value_wrap {
  justify-content: flex-end;
  gap: 1.5rem;
}
.philosophy_content.u_pc .philosophy_value_wrap .philosophy_value_imgwrap {
  align-items: center;
  max-height: 166px;
  height: 10.375rem;
  margin-top: 0.5625rem;
}
.philosophy_content.u_pc .philosophy_value_wrap .philosophy_value_imgwrap .vision-bg_wrap {
  position: relative;
}
.philosophy_content.u_pc .philosophy_value_wrap .philosophy_value_imgwrap .vision-bg_wrap .value-bg {
  max-width: 539px;
  width: 33.6875rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.philosophy_content.u_pc .philosophy_value_wrap .philosophy_value_imgwrap .value-line {
  max-width: 56px;
  width: 3.5rem;
  -o-object-fit: contain;
     object-fit: contain;
  margin-left: -5px;
}
@media screen and (max-width: 1280px) {
  .philosophy_content.u_pc .philosophy_value_wrap .philosophy_value_imgwrap .value-line {
    width: 2.125rem;
  }
}
.philosophy_content.u_pc .philosophy_value_wrap .philosophy_value_imgwrap .img_text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.philosophy_content.u_pc .philosophy_value_wrap .philosophy_value_imgwrap .img_text p {
  color: #fff;
  text-align: center;
  font-size: 0.875rem;
  margin-top: 0.375rem;
}
.philosophy_content.u_pc .philosophy_value_wrap .philosophy_value_imgwrap .img_text img {
  height: 1.3125rem;
  width: auto;
}
.philosophy_content.u_pc .philosophy_value_wrap .value_content_wrap {
  margin-top: -1.125rem;
}
.philosophy_content.u_pc .philosophy_value_wrap .value_content_wrap .value_wrap {
  width: 39.25rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
}
.philosophy_content.u_pc .philosophy_value_wrap .value_content_wrap .value_wrap .philosophy_content_text {
  width: 100%;
  padding: 1.125rem 0;
  font-size: 0.875rem;
  margin-bottom: 0;
  line-height: 1.5;
}
@media (max-width: 1260px) and (min-width: 769px) {
  .philosophy_content.u_pc .philosophy_value_wrap .value_content_wrap .value_wrap .philosophy_content_text {
    font-size: 0.75rem;
  }
}

/* 共通のフェードイン */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* フェードインして1秒後に消える */
@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* 初期状態すべて非表示 */
.kv-logo,
.kv-catch,
.fv_img02,
.fv .square,
.fv .circle,
.fv .fv_scrolldown,
.fv .logo,
header {
  opacity: 0;
}

/* 表示され続けるベース画像 */
.fv_img01 {
  opacity: 1;
}

/* .kv-logo フェードイン → フェードアウト */
.kv-logo {
  animation: fadeInOut 1.5s ease forwards;
  animation-delay: 1s;
  width: 100%;
}

/* TAE_KV_yoko.jpg フェードイン */
.fv_img02 {
  animation: fadeIn 1s ease forwards;
  animation-delay: 2.5s;
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
}

/* kv-catch フェードイン */
.fv img.kv-catch {
  animation: fadeIn 1.5s ease forwards;
  animation-delay: 5.5s;
  height: auto;
  width: 26.375rem;
}
@media (max-width: 768px) {
  .fv img.kv-catch {
    width: 17.6875rem;
    margin: 0 auto;
  }
}

/* .fv_scrolldown + header フェードイン */
.fv_scrolldown {
  animation: fadeIn 1.5s ease forwards;
  animation-delay: 6.5s;
}

header {
  animation: fadeIn 1.5s ease forwards;
  animation-delay: 6.5s;
}

.fv .logo {
  animation: fadeIn 1.5s ease forwards;
  animation-delay: 6.5s;
}

/* .square style */
.square {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  position: absolute;
}

.fv_square01 {
  width: 10.313vw;
  height: 10.313vw;
  background-color: #5e66ba;
  top: 13.177vw;
  left: 0.26vw;
  transform: rotate(23.66deg);
  animation: fadeIn 1s ease forwards 4.8s, fv_square01 60s linear infinite;
}
@media (max-width: 768px) {
  .fv_square01 {
    width: 4.6875rem;
    height: 4.6875rem;
    top: 6.4375rem;
    left: -0.625rem;
  }
}

@keyframes fv_square01 {
  from {
    transform: rotate(23.66deg);
  }
  to {
    transform: rotate(-336.34deg); /* 反時計回り：23.66 - 360 */
  }
}
.fv_square02 {
  width: 4.167vw;
  height: 4.167vw;
  background-color: #3743a2;
  top: 6.302vw;
  left: 24.479vw;
  transform: rotate(337.32deg);
  animation: fadeIn 1s ease forwards 4.6s, fv_square02 60s linear infinite;
}
@media (max-width: 768px) {
  .fv_square02 {
    display: none;
  }
}

@keyframes fv_square02 {
  from {
    transform: rotate(337.32deg);
  }
  to {
    transform: rotate(-22.68deg); /* 337.32 - 360 */
  }
}
.fv_square03 {
  width: 9.01vw;
  height: 9.01vw;
  background-color: #3743a2;
  top: 4.375vw;
  left: 47.813vw;
  animation: fadeIn 1s ease forwards 4.4s, fv_square03 60s linear infinite;
}
@media (max-width: 768px) {
  .fv_square03 {
    width: 3.4375rem;
    height: 3.4375rem;
    top: 8.75rem;
    left: 10.1875rem;
  }
}

@keyframes fv_square03 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
.fv_square04 {
  width: 2.292vw;
  height: 2.292vw;
  background-color: #3743a2;
  top: 16.094vw;
  right: 38.906vw;
  transform: rotate(20.69deg);
  animation: fadeIn 1s ease forwards 4.3s, fv_square04 60s linear infinite;
}
@media (max-width: 768px) {
  .fv_square04 {
    width: 1.4375rem;
    height: 1.4375rem;
    top: 10.9375rem;
    left: unset;
    right: 5.9375rem;
  }
}

@keyframes fv_square04 {
  from {
    transform: rotate(20.69deg);
  }
  to {
    transform: rotate(-339.31deg); /* 20.69 - 360 */
  }
}
.fv_square05 {
  width: 8.646vw;
  height: 8.646vw;
  background-color: #999ec8;
  mix-blend-mode: multiply;
  top: 11.146vw;
  right: 16.719vw;
  animation: fadeIn 1s ease forwards 4.1s, fv_square05 60s linear infinite;
  z-index: 1;
}
@media (max-width: 768px) {
  .fv_square05 {
    width: 3.625rem;
    height: 3.625rem;
    top: 9.0625rem;
    right: -1.0625rem;
  }
}

@keyframes fv_square05 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
.fv_square06 {
  width: 4.635vw;
  height: 4.635vw;
  background-color: #3743a2;
  top: 26.042vw;
  right: 30.26vw;
  transform: rotate(332.33deg);
  animation: fadeIn 1s ease forwards 3.8s, fv_square06 60s linear infinite;
}
@media (max-width: 768px) {
  .fv_square06 {
    width: 2.1875rem;
    height: 2.1875rem;
    top: 20.25rem;
    right: 1.5rem;
  }
}

@keyframes fv_square06 {
  from {
    transform: rotate(332.33deg);
  }
  to {
    transform: rotate(-27.67deg); /* 332.33 - 360 */
  }
}
.fv_square07 {
  width: 2.292vw;
  height: 2.292vw;
  background-color: #999ec8;
  mix-blend-mode: multiply;
  top: 22.656vw;
  right: 13.177vw;
  animation: fadeIn 1s ease forwards 3.9s, fv_square07 60s linear infinite;
}
@media (max-width: 768px) {
  .fv_square07 {
    width: 1.3125rem;
    height: 1.3125rem;
    top: 23rem;
    right: -0.3125rem;
  }
}

@keyframes fv_square07 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
.fv_square08 {
  width: 9.115vw;
  height: 9.115vw;
  background-color: #5e66ba;
  top: 31.094vw;
  right: 16.771vw;
  transform: rotate(15.76deg);
  animation: fadeIn 1s ease forwards 3.7s, fv_square08 60s linear infinite;
}
@media (max-width: 768px) {
  .fv_square08 {
    width: 3.9375rem;
    height: 3.9375rem;
    top: 25.375rem;
    right: 1.1875rem;
  }
}

@keyframes fv_square08 {
  from {
    transform: rotate(15.76deg);
  }
  to {
    transform: rotate(-344.24deg); /* 15.76 - 360 */
  }
}
.fv_square09 {
  width: 2.813vw;
  height: 2.813vw;
  background-color: #3743a2;
  bottom: 8.333vw;
  right: 29.531vw;
  animation: fadeIn 1s ease forwards 3.5s, fv_square09 60s linear infinite;
}
@media (max-width: 768px) {
  .fv_square09 {
    width: 1.3125rem;
    height: 1.3125rem;
    bottom: unset;
    top: 34.9375rem;
    right: 6.25rem;
  }
}

@keyframes fv_square09 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
/* .circle style */
.circle {
  border-radius: 50%;
  position: absolute;
}

@keyframes circle_scale01 {
  0% {
    transform: scale(0.7); /* 元サイズ */
  }
  25% {
    transform: scale(1.3); /* 拡大 */
  }
  50% {
    transform: scale(0.7); /* 縮小（元より小さく） */
  }
  75% {
    transform: scale(1.3); /* またちょっと拡大 */
  }
  100% {
    transform: scale(0.7); /* 元に戻る */
  }
}
@keyframes circle_scale02 {
  0% {
    transform: scale(1.3);
  }
  25% {
    transform: scale(0.7);
  }
  50% {
    transform: scale(1.3);
  }
  75% {
    transform: scale(0.7);
  }
  100% {
    transform: scale(1.3);
  }
}
.fv_circle01 {
  width: 4.219vw;
  height: 4.219vw;
  background-color: rgba(255, 255, 255, 0.7);
  top: 22.135vw;
  left: 2.344vw;
  animation: fadeIn 1s ease forwards 4.9s, circle_scale01 15s ease-in-out infinite;
}
@media (max-width: 768px) {
  .fv_circle01 {
    width: 2.75rem;
    height: 2.75rem;
    top: 9.0625rem;
    left: 2.8125rem;
  }
}

.fv_circle02 {
  width: 2.396vw;
  height: 2.396vw;
  background-color: #ea79bc;
  top: 7.656vw;
  left: 17.708vw;
  animation: fadeIn 1s ease forwards 4.7s, circle_scale02 15s ease-in-out infinite;
}
@media (max-width: 768px) {
  .fv_circle02 {
    width: 1.0625rem;
    height: 1.0625rem;
    top: 7.6875rem;
    left: 6.875rem;
  }
}

.fv_circle03 {
  width: 6.563vw;
  height: 6.563vw;
  background-color: rgba(255, 255, 255, 0.7);
  top: -1.302vw;
  left: 37.448vw;
  animation: fadeIn 1s ease forwards 4.5s, circle_scale01 15s ease-in-out infinite;
}
@media (max-width: 768px) {
  .fv_circle03 {
    width: 2.625rem;
    height: 2.625rem;
    top: 5.5625rem;
    left: unset;
    right: 6.3125rem;
  }
}

.fv_circle04 {
  width: 4.115vw;
  height: 4.115vw;
  background-color: #ea79bc;
  top: 5.885vw;
  right: 28.333vw;
  animation: fadeIn 1s ease forwards 4.2s, circle_scale02 15s ease-in-out infinite;
}
@media (max-width: 768px) {
  .fv_circle04 {
    width: 2.5rem;
    height: 2.5rem;
    top: 11.5625rem;
    right: 1.125rem;
  }
}

.fv_circle05 {
  width: 7.5vw;
  height: 7.5vw;
  background-color: #ea79bc;
  top: 17.24vw;
  right: 20.677vw;
  animation: fadeIn 1s ease forwards 4s, circle_scale01 15s ease-in-out infinite;
}
@media (max-width: 768px) {
  .fv_circle05 {
    width: 1.625rem;
    height: 1.625rem;
    bottom: unset;
    top: 32.3125rem;
    right: 3.625rem;
  }
}

.fv_circle06 {
  width: 6.563vw;
  height: 6.563vw;
  background-color: rgba(255, 255, 255, 0.7);
  bottom: 12.5vw;
  right: 23.438vw;
  animation: fadeIn 1s ease forwards 3.6s, circle_scale02 15s ease-in-out infinite;
}
@media (max-width: 768px) {
  .fv_circle06 {
    width: 2.375rem;
    height: 2.375rem;
    top: 30.8125rem;
    right: 4.25rem;
  }
}

/* スクロール制御 */
html.lock-scroll,
body.lock-scroll {
  overflow: hidden;
  overflow-y: scroll;
  position: fixed;
  width: 100%;
  height: 100%;
}

html.lock-scroll {
  overflow: unset;
}

body.unlock-scroll {
  overflow: auto;
  position: static;
}

/* 動画の初期状態 */
.bg_movie {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

#introVideo {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100vw;
  height: 100vh;
}

/* オーバーレイ */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(3, 0, 37, 0.8);
  z-index: 1;
}

#introVideo.visible + .video-overlay {
  opacity: 1;
}

#statement {
  opacity: 0;
  transition: opacity 1s ease;
}

#statement.visible {
  opacity: 1;
}

/* 最初は透明で少し下にずらしておく */
.fade-in-target {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 2s ease, transform 2s ease;
}

/* フェードインすると透明度1で位置が元に戻る */
.fade-in-target.visible {
  opacity: 1;
  transform: translateY(0);
}

/* .statement装飾 */
.fade-in-target.statement_square01-1 {
  position: absolute;
  top: -3.125rem;
  right: -3.125rem;
  width: 6.3125rem;
  height: 6.3125rem;
  background-color: rgba(55, 67, 162, 0.7);
}
@media (max-width: 768px) {
  .fade-in-target.statement_square01-1 {
    width: 2.875rem;
    height: 2.875rem;
    top: -1.4375rem;
    right: -1.4375rem;
  }
}
.fade-in-target.statement_square01-1.visible {
  animation: statement_square01-1 60s linear infinite;
}

@keyframes statement_square01-1 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
.fade-in-target.statement_square01-2 {
  position: absolute;
  bottom: -1.9375rem;
  left: -1.25rem;
  width: 3.25rem;
  height: 3.25rem;
  background-color: rgba(94, 102, 186, 0.7);
  transform: rotate(332.33deg) translateY(20px);
}
@media (max-width: 768px) {
  .fade-in-target.statement_square01-2 {
    width: 1.5rem;
    height: 1.5rem;
    bottom: -0.625rem;
    left: -0.875rem;
  }
}
.fade-in-target.statement_square01-2.visible {
  transform: rotate(332.33deg) translateY(0);
  animation: statement_square01-2 60s linear infinite;
}

@keyframes statement_square01-2 {
  from {
    transform: rotate(332.33deg);
  }
  to {
    transform: rotate(-27.67deg);
  }
}
.statement_circle02-1 {
  position: absolute;
  top: -3.125rem;
  left: -1.25rem;
  width: 3.125rem;
  height: 3.125rem;
  background-color: rgba(234, 121, 188, 0.5);
  animation: fadeIn 0.5s ease forwards 8.7s, circle_scale01 15s ease-in-out infinite;
}
@media (max-width: 768px) {
  .statement_circle02-1 {
    top: -1.375rem;
    left: -0.625rem;
    width: 1.375rem;
    height: 1.375rem;
  }
}

.statement_circle02-2 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -3.125rem;
  width: 5rem;
  height: 5rem;
  background-color: rgba(255, 255, 255, 0.15);
  animation: fadeIn 0.5s ease forwards 8.7s, circle_scale02 15s ease-in-out infinite;
}
@media (max-width: 768px) {
  .statement_circle02-2 {
    left: -1.125rem;
    width: 2.25rem;
    height: 2.25rem;
  }
}

.statement_circle02-3 {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 5.625rem;
  height: 5.625rem;
  background-color: rgba(234, 121, 188, 0.5);
  animation: fadeIn 0.5s ease forwards 8.7s, circle_scale01 15s ease-in-out infinite;
}
@media (max-width: 768px) {
  .statement_circle02-3 {
    width: 2.5625rem;
    height: 2.5625rem;
  }
}

.fade-in-target.statement_square03-1 {
  position: absolute;
  top: -3.9375rem;
  left: -4.5625rem;
  width: 8.75rem;
  height: 8.75rem;
  background-color: rgba(94, 102, 186, 0.7);
  transform: rotate(23.66deg) translateY(20px);
  z-index: -1;
}
.fade-in-target.statement_square03-1.visible {
  transform: rotate(23.66deg) translateY(0);
  animation: statement_square03-1 60s linear infinite;
}
@media (max-width: 768px) {
  .fade-in-target.statement_square03-1.visible {
    top: -2rem;
    left: -2rem;
    width: 4rem;
    height: 4rem;
  }
}

@keyframes statement_square03-1 {
  from {
    transform: rotate(23.66deg) translateY(0);
  }
  to {
    transform: rotate(-336.34deg) translateY(0);
  }
}
.fade-in-target.statement_square03-2 {
  position: absolute;
  top: 50%;
  right: -6.25rem;
  width: 2.5625rem;
  height: 2.5625rem;
  background-color: rgba(94, 102, 186, 0.7);
  transform: rotate(337.32deg) translateY(20px);
}
.fade-in-target.statement_square03-2.visible {
  transform: rotate(337.32deg) translateY(0);
  animation: statement_square03-2 60s linear infinite;
}
@media (max-width: 768px) {
  .fade-in-target.statement_square03-2.visible {
    top: unset;
    bottom: -1rem;
    right: unset;
    left: -1.375rem;
    width: 1.125rem;
    height: 1.125rem;
  }
}

@keyframes statement_square03-2 {
  from {
    transform: rotate(337.32deg) translateY(0);
  }
  to {
    transform: rotate(-22.68deg) translateY(0);
  }
}
.fade-in-target.statement_square03-3 {
  position: absolute;
  bottom: -3.5rem;
  right: -3.5rem;
  width: 5.3125rem;
  height: 5.3125rem;
  background-color: rgba(94, 102, 186, 0.7);
}
@media (max-width: 768px) {
  .fade-in-target.statement_square03-3 {
    bottom: -1.625rem;
    right: -1.625rem;
    width: 2.375rem;
    height: 2.375rem;
  }
}
.fade-in-target.statement_square03-3.visible {
  animation: statement_square03-3 60s linear infinite;
}

@keyframes statement_square03-3 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
.statement_circle04-1 {
  position: absolute;
  top: -4.9375rem;
  right: -1.875rem;
  width: 4.375rem;
  height: 4.375rem;
  background-color: rgba(255, 255, 255, 0.15);
  animation: fadeIn 0.5s ease forwards 8.7s, circle_scale01 15s ease-in-out infinite;
}
@media (max-width: 768px) {
  .statement_circle04-1 {
    top: -2.25rem;
    right: -0.9375rem;
    width: 2rem;
    height: 2rem;
  }
}

.statement_circle04-2 {
  position: absolute;
  top: 1.875rem;
  left: -1.5625rem;
  width: 1.875rem;
  height: 1.875rem;
  background-color: rgba(234, 121, 188, 0.5);
  animation: fadeIn 0.5s ease forwards 8.7s, circle_scale02 15s ease-in-out infinite;
}
@media (max-width: 768px) {
  .statement_circle04-2 {
    top: -0.1875rem;
    left: -0.9375rem;
    width: 0.8125rem;
    height: 0.8125rem;
  }
}

.statement_circle04-3 {
  position: absolute;
  bottom: 0px;
  right: -1.6875rem;
  width: 7.75rem;
  height: 7.75rem;
  background-color: rgba(234, 121, 188, 0.5);
  animation: fadeIn 0.5s ease forwards 8.7s, circle_scale02 15s ease-in-out infinite;
}
@media (max-width: 768px) {
  .statement_circle04-3 {
    right: -0.75rem;
    width: 3.5rem;
    height: 3.5rem;
  }
}

.fade-in-target.statement_square05-1 {
  position: absolute;
  top: 4.375rem;
  left: -3.3125rem;
  width: 1.6875rem;
  height: 1.6875rem;
  background-color: rgba(94, 102, 186, 0.7);
  transform: rotate(20.69deg) translateY(20px);
}
@media (max-width: 768px) {
  .fade-in-target.statement_square05-1 {
    top: 2rem;
    left: -1.4375rem;
    width: 0.75rem;
    height: 0.75rem;
  }
}
.fade-in-target.statement_square05-1.visible {
  transform: rotate(20.69deg) translateY(0);
  animation: statement_square05-1 60s linear infinite;
}

@keyframes statement_square05-1 {
  from {
    transform: rotate(20.69deg) translateY(0);
  }
  to {
    transform: rotate(-339.31deg) translateY(0);
  }
}
.fade-in-target.statement_square05-2 {
  position: absolute;
  bottom: -3.125rem;
  right: -3.5625rem;
  width: 6.875rem;
  height: 6.875rem;
  background-color: rgba(94, 102, 186, 0.7);
  transform: rotate(15.76deg) translateY(20px);
}
@media (max-width: 768px) {
  .fade-in-target.statement_square05-2 {
    bottom: -1.5625rem;
    right: -1.5625rem;
    width: 3.125rem;
    height: 3.125rem;
  }
}
.fade-in-target.statement_square05-2.visible {
  transform: rotate(15.76deg) translateY(0);
  animation: statement_square05-2 60s linear infinite;
}

@keyframes statement_square05-2 {
  from {
    transform: rotate(15.76deg) translateY(0);
  }
  to {
    transform: rotate(-344.24deg) translateY(0);
  }
}
.statement_circle06-1 {
  position: absolute;
  top: -3.625rem;
  left: 0;
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(255, 255, 255, 0.15);
  animation: fadeIn 0.5s ease forwards 8.7s, circle_scale01 15s ease-in-out infinite;
}
@media (max-width: 768px) {
  .statement_circle06-1 {
    top: -1.5625rem;
    width: 1.125rem;
    height: 1.125rem;
  }
}

.statement_circle06-2 {
  position: absolute;
  bottom: 0px;
  right: -1.8125rem;
  width: 6.5rem;
  height: 6.5rem;
  background-color: rgba(234, 121, 188, 0.5);
  animation: fadeIn 0.5s ease forwards 8.7s, circle_scale02 15s ease-in-out infinite;
}
@media (max-width: 768px) {
  .statement_circle06-2 {
    right: -0.75rem;
    width: 2.9375rem;
    height: 2.9375rem;
  }
}

/* 最初は透明で少し下にずらしておく */
.fade-in-target {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 2s ease, transform 2s ease;
}

/* フェードインすると透明度1で位置が元に戻る */
.fade-in-target.visible {
  opacity: 1;
  transform: translateY(0);
}

.img_statement_wrap {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 2s ease-out, transform 2s ease-out;
}

.img_statement_wrap.visible {
  opacity: 1;
  transform: translateY(0);
}

.img_statement_wrap::before {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.8s ease-out, transform 1.8s ease-out;
}

.img_statement_wrap.visible::before {
  opacity: 1;
  transform: translateY(0);
  z-index: 2;
}

.statement_text_wrap {
  margin-left: 15.625vw;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .statement_text_wrap {
    margin-left: 1.875rem;
  }
}

.statement_text01 span,
.statement_text02 span,
.statement_text03 span,
.statement_text04 span {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

/* アニメーション用クラス */
.statement_text01 span.visible,
.statement_text02 span.visible,
.statement_text03 span.visible,
.statement_text04 span.visible {
  opacity: 1;
  transform: translateY(0);
}

.philosophy_mission_wrap.fade-in-target {
  transition-delay: 0.5s;
}

.philosophy_vision_wrap.fade-in-target {
  transition-delay: 1s;
}

.philosophy_value_wrap.fade-in-target {
  transition-delay: 1.5s;
}/*# sourceMappingURL=style.css.map */