@charset "UTF-8";

:root {
  --easing_2: 0.2s cubic-bezier(0.79, 0.14, 0.15, 0.86);
  --easing_4: 0.4s cubic-bezier(0.79, 0.14, 0.15, 0.86);
  --common_font: 'Noto Sans JP', sans-serif;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-size: 1.6rem;
  letter-spacing: 1px;
  font-family: var(--common_font);
  font-weight: 400;
  font-feature-settings: "palt";
  min-height: auto;
}

.loading_first {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  height: 100%;
  /* transform: translateY(-120%); */
}

.loading_first::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100%;
  background: linear-gradient(to right, #49bc28 0%, #70eb70 100%);
}

.loading_second {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 8;
  width: 100%;
  height: 100%;
}

.loading_second::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100%;
  background: linear-gradient(to right, #00a6e9 0%, #96cedf 100%);
}

.select_wrap {
  display: flex;
  width: 100%;
  height: 100dvh;
}

.select_item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-basis: 50%;
  overflow: hidden;
}

.select_item_img_wrap {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
  transition: var(--easing_4);
}

.select_item_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.2);
  /* overflow: hidden; */
}

.select_item.active:hover .select_item_img_wrap {
  transform: scale(1.125);
}

.select_item_img_wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
}

.select_item.wood .select_item_img_wrap::after {
  background: linear-gradient(to right, #49bc28 0%, #70eb70 100%);
}

.select_item.express .select_item_img_wrap::after {
  background: linear-gradient(to left, #00a6e9 0%, #96cedf 100%);
}

.select_item_content {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3em;
  opacity: 0;
}

.select_item.wood .select_item_logo {
  width: min(30rem, 80vw);
}

.select_item.express .select_item_logo {
  width: min(25rem, 65vw);
}

.select_item_title {
  width: min(30rem, 90vw);
  font-size: clamp(1.4rem, 6vw, 1.25em);
  text-align: center;
  line-height: 1;
  padding-block: 0.75em;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  font-weight: normal;
  color: #fff;
}

/* @media (width < 900px) { */
@media screen and (max-width: 900px) {
  .select_wrap {
    flex-direction: column;
  }
}