@charset "UTF-8";
@font-face {
  font-family: "CabinetGrotesk";
  src: url("../font/CabinetGrotesk-Regular.woff2") format("woff2"), url("../font/CabinetGrotesk-Regular.woff") format("woff"), url("../font/CabinetGrotesk-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
/*========== トップページ ==========*/
#loading {
  background-color: var(--colorMain);
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999;
  top: 0;
  left: 0;
}
#loading .area_circle {
  width: 29rem;
  aspect-ratio: 1/1;
  position: relative;
}
#loading .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  width: 100%;
  stroke: #fff;
  stroke-dasharray: 1456;
  stroke-dashoffset: 1456;
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
#loading .circle.first {
  opacity: 0.35;
}
#loading .circle.second {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}
#loading .logo,
#loading .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#loading .logo {
  transition: opacity 0.5s;
  opacity: 0;
  width: 53.87931%;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}
#loading .text {
  opacity: 0;
  will-change: opacity;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  width: 71.55172%;
  transform: scale(1.5) translate(-50%, -50%);
  transform-origin: center left;
  transition: transform 2s ease-in-out;
}
#loading.trigger .logo {
  opacity: 1;
}
#loading.trigger .first {
  -webkit-animation-name: loadingCircle;
          animation-name: loadingCircle;
}
#loading.trigger .second {
  -webkit-animation-name: loadingCircleHalf;
          animation-name: loadingCircleHalf;
}
#loading.finish .logo {
  opacity: 0;
}
#loading.finish .text {
  -webkit-animation-name: fx_fadeIn;
          animation-name: fx_fadeIn;
  transform: scale(1) translate(-50%, -50%);
}
#loading.finish .second {
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-delay: 0.25;
          animation-delay: 0.25;
  stroke-dashoffset: 50;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-name: loadingCircleFinish;
          animation-name: loadingCircleFinish;
}
@-webkit-keyframes loadingCircle {
  from {
    stroke-dashoffset: 1456;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes loadingCircle {
  from {
    stroke-dashoffset: 1456;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes loadingCircleHalf {
  0% {
    stroke-dashoffset: 1456;
  }
  60% {
    stroke-dashoffset: 100;
  }
  100% {
    stroke-dashoffset: 50;
  }
}
@keyframes loadingCircleHalf {
  0% {
    stroke-dashoffset: 1456;
  }
  60% {
    stroke-dashoffset: 100;
  }
  100% {
    stroke-dashoffset: 50;
  }
}
@-webkit-keyframes loadingCircleFinish {
  from {
    stroke-dashoffset: 50;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes loadingCircleFinish {
  from {
    stroke-dashoffset: 50;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@media screen and (max-width: 768px) {
  #loading .area_circle {
    max-width: 100%;
    width: 20rem;
  }
}

/*==========
メインビジュアル
==========*/
#mv {
  padding-top: var(--headerHeight);
  width: 100%;
  height: 100vh;
  height: 100lvh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -10;
}
#mv + * {
  margin-top: 100vh;
  margin-top: 100lvh;
}
#mv .bg_video {
  width: calc(100% + 2px);
  height: 100%;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -10;
}
#mv .bg_video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#mv .text_img {
  max-width: 40.875rem;
}
#mv .area_text {
  padding: 4rem 5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}
#mv .area_text .text_en {
  margin-top: 4rem;
  color: #fff;
  font-size: 0.9375rem;
  font-family: "CabinetGrotesk";
}
@media screen and (max-width: 768px) {
  #mv .area_text {
    padding: var(--paddingLR) var(--paddingLR) 7.5rem;
  }
  #mv .area_text .text_en {
    margin-top: 1.5rem;
    font-size: 0.6875rem;
  }
}

/*==========
index_pickup
==========*/
#index_pickup {
  background-color: #fff;
  padding-top: var(--paddingSection);
  padding-bottom: 9.375rem;
}
#index_pickup .layout_pickup {
  margin-top: 4rem;
}
#index_pickup .layout_pickup:not(:has(.swiper)) {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(42.1875rem, 1fr));
  gap: 3.125rem;
}
#index_pickup .layout_pickup a {
  color: inherit;
  text-decoration: none;
  height: 100%;
}
@media screen and (min-width: 769px) {
  #index_pickup .layout_pickup a {
    transition: box-shadow 0.5s;
  }
  #index_pickup .layout_pickup a .row_thumb {
    overflow: hidden;
  }
  #index_pickup .layout_pickup a .row_thumb img {
    transition: transform 0.5s;
  }
  #index_pickup .layout_pickup a:hover {
    opacity: 1;
    box-shadow: 0px 0px 0.625rem rgba(89, 105, 190, 0.35);
  }
  #index_pickup .layout_pickup a:hover .row_thumb img {
    transform: scale(1.05);
  }
  #index_pickup .layout_pickup a:hover .row_text::after {
    -webkit-animation-duration: 0.5s;
            animation-duration: 0.5s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    -webkit-animation-name: btn_01_gray;
            animation-name: btn_01_gray;
  }
}
#index_pickup .layout_pickup .item:not(:has(a)),
#index_pickup .layout_pickup .item a {
  border-radius: 0.625rem;
  background: #fff;
  box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
}
#index_pickup .layout_pickup .row_thumb {
  width: 14.25rem;
  flex-shrink: 0;
}
#index_pickup .layout_pickup .title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
#index_pickup .layout_pickup .text {
  font-size: 0.875rem;
  line-height: 1.5;
}
#index_pickup .layout_pickup .row_text {
  flex: 1;
  padding-right: 2.5rem;
  position: relative;
}
#index_pickup .layout_pickup .row_text::after {
  content: "";
  width: 1.875rem;
  aspect-ratio: 1/1;
  background: center/contain url("../img/common/icon_arrow_circle-gray.svg") no-repeat;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  #index_pickup {
    padding-bottom: var(--paddingSection);
  }
  #index_pickup .layout_pickup {
    margin-top: 2rem;
  }
  #index_pickup .layout_pickup:not(:has(.swiper)) {
    grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
    gap: 1.5rem;
  }
  #index_pickup .layout_pickup .item:not(:has(a)),
#index_pickup .layout_pickup .item a {
    flex-direction: column;
    padding: 1.5rem;
  }
  #index_pickup .layout_pickup .row_thumb {
    width: 100%;
    max-width: 20rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.5rem;
  }
  #index_pickup .layout_pickup .title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    margin-left: 0;
  }
  #index_pickup .layout_pickup .row_text {
    padding-right: 0;
    padding-bottom: 1.75rem;
    margin-left: 0;
  }
  #index_pickup .layout_pickup .row_text::after {
    width: 1.5rem;
  }
}

/*==========
index_news
==========*/
#index_news {
  background-color: #fff;
  position: relative;
  z-index: 1;
  padding-bottom: var(--paddingSection);
}
#index_news .flex {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
#index_news .area_head {
  width: 13.214286%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
#index_news .area_head .category {
  font-size: 0.9375rem;
  font-weight: 500;
  margin-top: auto;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(112, 112, 112, 0.2);
  transition: opacity 0.5s;
}
#index_news .area_head .category a {
  color: inherit;
  text-decoration: none;
  position: relative;
  opacity: 0.5;
}
#index_news .area_head .category a::before {
  content: "";
  width: 5px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #CB333B;
  position: absolute;
  top: 0.625em;
  left: 0.25em;
  opacity: 0;
}
@media screen and (min-width: 769px) {
  #index_news .area_head .category a {
    transition: opacity 0.5s, padding-left 0.5s;
  }
  #index_news .area_head .category a::before {
    transition: opacity 0.125s;
  }
  #index_news .area_head .category a:hover {
    padding-left: 1em;
    opacity: 1;
  }
  #index_news .area_head .category a:hover::before {
    opacity: 1;
    transition: opacity 0.25s 0.25s;
  }
}
#index_news .area_head .category > *:not(:last-child) {
  margin-bottom: 1.25em;
}
#index_news .area_head .category.is-disabled {
  pointer-events: none;
  opacity: 0.2;
}
#index_news .title_01 {
  margin-bottom: 2rem;
}
#index_news .area_body {
  max-width: 65.5rem;
  flex: 1;
}
#index_news .list_category {
  display: flex;
  gap: 1.5rem;
  color: rgba(14, 22, 70, 0.45);
  font-weight: 600;
}
#index_news .list_category > * {
  cursor: pointer;
  flex: 1;
  height: 3.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 0.3125rem;
  box-shadow: 0 0 0.3125rem rgba(0, 0, 0, 0.16);
  transition: font-size 0.5s, background-color 0.5s, color 0.5s;
}
#index_news .list_category > *.is-active {
  background-color: var(--colorMain);
  color: #fff;
}
@media screen and (max-width: 768px) {
  #index_news .flex {
    flex-direction: column;
  }
  #index_news .area_head {
    display: contents;
  }
  #index_news .area_head .category {
    order: -2;
    font-size: 0.6875rem;
    margin-top: 0.5rem;
    padding-bottom: 0;
    border-bottom: none;
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
  }
  #index_news .area_head .category a {
    opacity: 1;
  }
  #index_news .area_head .category > *:not(:last-child) {
    margin-bottom: 0em;
  }
  #index_news .area_body {
    display: contents;
  }
  #index_news .title_01 {
    order: -4;
    margin-bottom: 0;
  }
  #index_news .btn_01 {
    margin-left: auto;
    margin-right: auto;
  }
  #index_news .list_category {
    margin-top: 1rem;
    order: -3;
    gap: 1rem;
    font-size: 0.75rem;
  }
  #index_news .list_category > * {
    height: 2.5rem;
  }
  #index_news .layout_news {
    order: -1;
  }
}

/*==========
index_business
==========*/
#index_business {
  background-color: rgba(21, 26, 56, 0.96);
}
#index_business .flex {
  display: flex;
}
#index_business .flex > * {
  flex: 1;
}
#index_business .area_text {
  padding-top: 4.5rem;
}
#index_business .area_text .text {
  max-width: 33.125rem;
}
#index_business .area_text .btn_01 {
  margin-top: 4.5rem;
}
#index_business .title_sub {
  font-size: 2rem;
  margin-top: 4.5rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  #index_business .flex {
    flex-direction: column;
  }
  #index_business .flex > * {
    flex: 0 1 auto;
    width: 100%;
  }
  #index_business .area_text {
    display: contents;
  }
  #index_business .area_text .btn_01 {
    margin-top: 2.5rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
  }
  #index_business .title_01 {
    order: -2;
  }
  #index_business .title_sub {
    font-size: 1.375rem;
    margin-top: 0;
    margin-bottom: 2.5rem;
  }
  #index_business .area_img {
    width: 100%;
    display: flex;
    justify-content: center;
    order: -1;
  }
}

/*==========
index_products
==========*/
#index_products {
  background-color: #fff;
}
#index_products .area_head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
#index_products .area_body {
  margin-top: 3.5rem;
}
@media screen and (max-width: 768px) {
  #index_products .flex_sp {
    display: flex;
    flex-direction: column;
  }
  #index_products .area_head {
    display: contents;
  }
  #index_products .area_body {
    margin-top: 2.5rem;
  }
  #index_products .btn_01 {
    order: 10;
    margin-left: auto;
    margin-right: auto;
  }
}

/*==========
index_vision
==========*/
#index_vision {
  background-color: #fff;
  padding-bottom: 5rem;
}
#index_vision.is-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}
#index_vision .area_head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}
#index_vision .area_head .title_01 {
  flex-shrink: 0;
}
#index_vision .area_head .text {
  margin-top: 0.875rem;
  max-width: 56rem;
  color: var(--colorMain);
}
#index_vision .area_banner {
  margin-top: 4rem;
  position: relative;
}
#index_vision .area_banner a {
  width: 100%;
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
#index_vision .area_banner a::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #000;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s;
}
@media screen and (min-width: 769px) {
  #index_vision .area_banner a .text_img {
    transition: opacity 0.5s;
  }
  #index_vision .area_banner a:hover {
    opacity: 1;
  }
  #index_vision .area_banner a:hover::after {
    opacity: 0.25;
  }
  #index_vision .area_banner a:hover .text_img {
    opacity: 1;
  }
  #index_vision .area_banner a:hover .btn_01::after {
    -webkit-animation-duration: 0.5s;
            animation-duration: 0.5s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    -webkit-animation-name: btn_01_white;
            animation-name: btn_01_white;
  }
}
#index_vision .area_banner .swiper {
  width: 100%;
  max-height: 43.75rem;
  aspect-ratio: 1920/700;
}
#index_vision .area_banner .swiper .swiper-slide {
  width: auto;
}
#index_vision .area_banner .swiper img {
  width: auto;
  height: 100%;
}
#index_vision .area_banner .text_img {
  opacity: 0.5;
  width: 125rem;
  max-width: 105%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
#index_vision .area_banner .btn_01 {
  pointer-events: none;
  position: absolute;
  bottom: 16%;
  color: #fff;
  z-index: 3;
}
#index_vision .area_banner .btn_01::after {
  background-image: url("../img/common/icon_arrow_circle-white.svg");
}
@media screen and (max-width: 768px) {
  #index_vision {
    padding-bottom: var(--paddingSection);
  }
  #index_vision .area_head {
    flex-direction: column;
    align-items: flex-start;
  }
  #index_vision .area_banner {
    margin-top: 1.5rem;
  }
  #index_vision .area_banner a::after {
    opacity: 0.25;
  }
  #index_vision .area_banner a .text_img {
    opacity: 1;
  }
  #index_vision .area_banner a .btn_01::after {
    -webkit-animation-duration: 0.5s;
            animation-duration: 0.5s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    -webkit-animation-name: btn_01_white;
            animation-name: btn_01_white;
  }
  #index_vision .area_banner .swiper {
    aspect-ratio: 375/325;
  }
  #index_vision .area_banner .btn_01 {
    margin-top: 50%;
  }
}

.vision-placeholder {
  pointer-events: none;
  background-color: #fff;
  position: relative;
  z-index: -9;
}

/*==========
index_sustainability
==========*/
#index_sustainability {
  background-color: #fff;
}
#index_sustainability .bg {
  width: 100%;
  max-width: 107.5rem;
  margin-left: auto;
  margin-right: auto;
  padding: 6rem var(--paddingLR);
  border-radius: 1.25rem;
  background-color: #fff;
  box-shadow: 0 3px 1.5625rem rgba(0, 0, 0, 0.08);
}
#index_sustainability .flex {
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
}
#index_sustainability .area_text {
  width: 50%;
  flex-shrink: 0;
}
#index_sustainability .area_text .btn_01 {
  margin-top: 3rem;
  margin-left: auto;
  margin-right: auto;
}
#index_sustainability .list {
  margin-top: 4rem;
  font-size: 1.0625rem;
}
#index_sustainability .list > *:not(:has(a)),
#index_sustainability .list a {
  opacity: 0.5;
  display: block;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(112, 112, 112, 0.22);
  position: relative;
}
#index_sustainability .list > *:not(:has(a))::before,
#index_sustainability .list a::before {
  content: "";
  width: 5px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #CB333B;
  position: absolute;
  top: 2.625em;
  left: 0.325em;
  opacity: 0;
}
#index_sustainability .list a {
  color: inherit;
  text-decoration: none;
}
@media screen and (min-width: 769px) {
  #index_sustainability .list a {
    transition: opacity 0.5s, padding-left 0.5s;
  }
  #index_sustainability .list a::before {
    transition: opacity 0.125s;
  }
  #index_sustainability .list a:hover {
    padding-left: 1em;
    opacity: 1;
  }
  #index_sustainability .list a:hover::before {
    opacity: 1;
    transition: opacity 0.25s 0.25s;
  }
}
#index_sustainability .text {
  margin-top: 0.875rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
#index_sustainability .area_img {
  width: 100%;
  max-width: 36.5625rem;
}
#index_sustainability .hover_img {
  margin-top: 5rem;
  position: relative;
}
#index_sustainability .hover_img a {
  display: contents;
  pointer-events: none;
}
#index_sustainability .img {
  aspect-ratio: 585/426;
  border-radius: 0.3125rem;
  overflow: hidden;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
#index_sustainability .img:first-child {
  position: relative;
  z-index: 2;
}
#index_sustainability .img .caption {
  color: #fff;
  position: absolute;
  left: 1.5em;
  bottom: 1em;
  z-index: 2;
}
#index_sustainability .img::after {
  content: "";
  width: 100%;
  height: 45%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0) 0%, #000 100%);
  opacity: 0.6;
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  #index_sustainability .bg {
    border-radius: 1.25rem;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  #index_sustainability .flex {
    flex-direction: column;
    gap: 1.5rem;
  }
  #index_sustainability .area_text {
    display: contents;
  }
  #index_sustainability .area_text .title_01 {
    order: -2;
  }
  #index_sustainability .area_text .btn_01 {
    margin-top: 1.5rem;
  }
  #index_sustainability .list {
    display: none;
    margin-top: 1rem;
    font-size: 0.875rem;
  }
  #index_sustainability .list > *:not(:has(a)),
#index_sustainability .list a {
    opacity: 1;
    padding: 1rem 0;
  }
  #index_sustainability .area_img {
    order: -1;
    margin-left: auto;
    margin-right: auto;
  }
  #index_sustainability .hover_img {
    margin-top: 1.5rem;
  }
  #index_sustainability .hover_img a {
    pointer-events: auto;
    display: block;
    width: 100%;
    height: 100%;
  }
  #index_sustainability .img {
    position: relative;
    display: block !important;
    aspect-ratio: 345/120;
  }
  #index_sustainability .img + .img {
    margin-top: 1.25rem;
  }
  #index_sustainability .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #index_sustainability .img .caption {
    font-size: 0.75rem;
  }
}

/*==========
index_menu
==========*/
#index_menu {
  padding-top: 0;
  background-color: #fff;
}
#index_menu .row_full {
  display: flex;
}
#index_menu .row_full > * {
  flex: 1;
}
#index_menu .row_full a {
  aspect-ratio: 960/350;
  display: flex;
  align-items: center;
  justify-content: center;
}
#index_menu .row_full a::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #272727;
  opacity: 0.4;
  z-index: -1;
}
@media screen and (min-width: 769px) {
  #index_menu .row_full a::after {
    transition: opacity 0.5s;
  }
  #index_menu .row_full a img {
    transition: transform 0.5s;
  }
  #index_menu .row_full a:hover {
    opacity: 1;
  }
  #index_menu .row_full a:hover::after {
    background-color: var(--colorMain);
    opacity: 0.6;
  }
  #index_menu .row_full a:hover img {
    transform: translate(-50%, -50%) scale(1.05);
  }
  #index_menu .row_full a:hover .area_text::after {
    -webkit-animation-duration: 0.5s;
            animation-duration: 0.5s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    -webkit-animation-name: btn_01_white;
            animation-name: btn_01_white;
  }
}
#index_menu .row_full img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
}
#index_menu .row_full .area_text {
  width: 80%;
  display: flex;
  align-items: center;
  gap: 4rem;
  color: #fff;
}
#index_menu .row_full .area_text .title_01 {
  color: inherit;
  padding-top: 0;
}
#index_menu .row_full .area_text .title_01::before {
  display: none;
}
#index_menu .row_full .area_text::after {
  content: "";
  width: 1.875rem;
  aspect-ratio: 1/1;
  display: block;
  background: center/contain url("../img/common/icon_arrow_circle-white.svg") no-repeat;
  margin-top: 1em;
  flex-shrink: 0;
  position: absolute;
  right: 2.5rem;
  bottom: 2rem;
}
#index_menu .list {
  margin-top: 5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 4rem 3.125rem;
}
#index_menu .list > * {
  width: calc((100% - 6.25rem) / 3);
}
#index_menu .list .area_img {
  position: relative;
  aspect-ratio: 433/216;
  border-radius: 0.3125rem;
  overflow: hidden;
  z-index: 1;
}
#index_menu .list img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
}
#index_menu .list .area_text {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(112, 112, 112, 0.21);
}
#index_menu .list .area_text::after {
  content: "";
  width: 1.875rem;
  aspect-ratio: 1/1;
  display: block;
  background: center/contain url("../img/common/icon_arrow_circle-gray.svg") no-repeat;
  margin-top: 1em;
  flex-shrink: 0;
}
#index_menu .list .title_01 {
  padding-top: 0;
  font-size: 0.875rem;
}
#index_menu .list .title_01::before {
  display: none;
}
#index_menu .list .title_01::after {
  font-size: 2.3334em;
}
@media screen and (min-width: 769px) {
  #index_menu .list a .area_img::after {
    transition: opacity 0.5s;
  }
  #index_menu .list a img {
    transition: transform 0.5s;
  }
  #index_menu .list a:hover {
    opacity: 1;
  }
  #index_menu .list a:hover .area_img::after {
    opacity: 0;
  }
  #index_menu .list a:hover img {
    transform: translate(-50%, -50%) scale(1.05);
  }
  #index_menu .list a:hover .area_text::after {
    -webkit-animation-duration: 0.5s;
            animation-duration: 0.5s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    -webkit-animation-name: btn_01_gray;
            animation-name: btn_01_gray;
  }
}
#index_menu a {
  color: inherit;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #index_menu .row_full {
    flex-direction: column;
  }
  #index_menu .row_full a {
    aspect-ratio: 375/200;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 2rem var(--paddingLR);
  }
  #index_menu .row_full .area_text {
    width: 100%;
    height: 100%;
    align-items: flex-start;
    gap: 1rem;
  }
  #index_menu .row_full .area_text::after {
    width: 1.5rem;
    right: var(--paddingLR);
    bottom: var(--paddingLR);
  }
  #index_menu .list {
    margin-top: var(--paddingSection);
    flex-direction: column;
    gap: 1rem;
  }
  #index_menu .list > * {
    width: 100%;
  }
  #index_menu .list .area_img {
    aspect-ratio: 100/70;
    border-radius: 2px;
    width: 29%;
    flex-shrink: 0;
  }
  #index_menu .list > *:not(:has(a)), #index_menu .list a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(112, 112, 112, 0.1);
  }
  #index_menu .list .area_text {
    margin-top: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
  #index_menu .list .area_text::after {
    display: none;
  }
  #index_menu .list .title_01 {
    font-size: 0.8125rem;
  }
  #index_menu .list .title_01::after {
    font-size: 1.6923em;
  }
}

/*==========
index_banner
==========*/
#index_banner {
  background-color: #fff;
  padding-bottom: var(--paddingSection);
}
#index_banner .bg {
  background-color: #fff;
  box-shadow: 0 3px 1.5625rem rgba(0, 0, 0, 0.08);
}

.layout_index_banner {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(26.875rem, 1fr));
  gap: 4rem 3.125rem;
}
.layout_index_banner .thumb {
  position: relative;
  aspect-ratio: 433/230;
  overflow: hidden;
  z-index: 1;
}
.layout_index_banner .thumb img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
}
.layout_index_banner .title {
  font-size: 0.9375rem;
  margin-top: 0.875rem;
}
.layout_index_banner a {
  color: inherit;
  text-decoration: none;
}
@media screen and (min-width: 769px) {
  .layout_index_banner a img {
    transition: transform 0.5s;
  }
  .layout_index_banner a:hover {
    opacity: 1;
  }
  .layout_index_banner a:hover img {
    transform: translate(-50%, -50%) scale(1.05);
  }
}
@media screen and (max-width: 768px) {
  .layout_index_banner {
    margin-top: 2.5rem;
    grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
    gap: 2rem 1rem;
  }
  .layout_index_banner .title {
    font-size: 0.6875rem;
    margin-top: 0.5rem;
  }
}