@charset "utf-8";
/*--------------------------------------------------------------------------------
 
  hero

--------------------------------------------------------------------------------*/
.hero {
  position: relative;
  background-color: var(--color-primary);
}
@media (min-width: 641px) { :root { --hero-side-space: var(--space-l); } }
@media (max-width: 640px) { :root { --hero-side-space: var(--side-space); } }

/*--------------------------------------------------------------------------------
  .hero-top
--------------------------------------------------------------------------------*/
.hero-top {
  padding-top: var(--space-3l);
  padding-bottom: var(--space-2l);
  padding-left: var(--hero-side-space);
  padding-right: var(--hero-side-space);
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  grid-column-gap: var(--space-m);
  grid-row-gap: var(--space-s);
}
.hero-catch-main { grid-area: hero-catch-main; }
.hero-catch-sub { grid-area: hero-catch-sub; }
.hero-btn { grid-area: hero-btn; align-self: end; }
@media (min-width: 641px) {
  .hero-top {
    grid-template-areas: 
      "hero-catch-main hero-btn"
      "hero-catch-sub hero-btn";
    }
}
@media (max-width: 640px) {
  .hero-top {
    grid-template-areas: 
      "hero-catch-main hero-catch-main"
      "hero-catch-sub hero-btn";
    }
}

/* .hero-catch
----------------------------------------*/
@media (min-width: 1000px) { :root { --hero-catch-fs-plus: 2em; } }
@media (max-width: 999px) { :root { --hero-catch-fs-plus: 1.5em; } }
@media (max-width: 640px) { :root { --hero-catch-fs-plus: 1em; } }
@media (max-width: 400px) { :root { --hero-catch-fs-plus: 0.5em; } }
.hero-catch-main {
  color: #FFF;
  font-family: var(--ff-min);
  font-size: calc(var(--fs-5l) + var(--hero-catch-fs-plus));
  font-weight: 400;
  line-height: 1.4;
}
.hero-catch-sub {
  color: #FFF;
  line-height: 2.2;
  font-size: clamp(var(--fs-s), 3vw, var(--fs-m));
  width: min(100%, 480px);
}
@media (max-width: 1280px) {
  .hero-catch-main { width: 5.5em; }
}

/* animation
----------------------------------------*/
.hero-catch-main {
  opacity: 0;
  overflow: hidden;
  display: inline-flex;
  flex-wrap: wrap;
  transform: translateY(1.5em);
  transition: transform 1s var(--cubic-bezier);
}
.hero-catch-main.is-active {
  animation: hero-catch-main 1s var(--cubic-bezier);
  animation-fill-mode: forwards;
  animation-duration: 1s;
}
.hero-catch-main .text-animate_item {
  opacity: 0;
  transform: translateY(50%);
}
.hero-catch-main.is-active .text-animate_item {
  animation: hero-catch-main-animate 1.2s var(--cubic-bezier);
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
}
@keyframes hero-catch-main {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes hero-catch-main-animate {
  from { opacity: 0; transform: translateY(50%); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-catch-sub {
  opacity: 0;
  transition: opacity 3s var(--cubic-bezier);
  transition-delay: 0.25s;
}
.hero-catch-sub.is-active { opacity: 1; }

/* .hero-btn
----------------------------------------*/
.hero-btn {
  min-width: var(--hero-btn-size);
  color: #FFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: var(--space-2s);
}
.hero-btn_txt {
  font-family: var(--ff-en);
  font-size: var(--fs-3s);
  writing-mode: vertical-rl;
}

@media (min-width: 641px) { :root { --hero-btn-size: clamp(80px, calc(120 / 1200 * 100vw), 120px); } }
@media (max-width: 640px) { :root { --hero-btn-size: clamp(60px, calc(80 / 480 * 100vw), 80px); } }
.hero-btn_arrow {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  width: var(--hero-btn-size);
  height: var(--hero-btn-size);
  border-radius: 50%;
  outline-offset: -1.5px;
  transition: outline 0.4s var(--cubic-bezier);
}
.hero-btn_arrow,
.hero-btn_arrow:focus { outline: 1px solid rgba(255,255,255,1); }
.hero-btn_arrow:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  background: #FFF;
  color: currentColor;
  mask-image: var(--icon-arrow-thin);
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: 35%;
  animation-fill-mode: forwards;
  transform: rotate(90deg);
  transition: var(--hover-trans);
}
.hero-btn_arrow:after {
  animation: hero-arrow 3.5s var(--cubic-bezier) infinite;
}
@keyframes hero-arrow {
  0% { transform: rotate(90deg) translateX(-15%); opacity: 0; }
  25% { transform: rotate(90deg) translateX(0); opacity: 1; }
  75% { transform: rotate(90deg) translateX(0); opacity: 1; }
  100% { transform: rotate(90deg) translateX(15%); opacity: 0; }
}
.hero-btn_arrow svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg) scale(1, -1);
  z-index: 2;
}
.hero-btn_arrow circle {
	fill: transparent;
	stroke: #FFF;
	stroke-width: 0;
}
@media (hover: hover) {
  .hero-btn_arrow:hover {
    outline-color: rgba(255,255,255,0.2);
  }
  .hero-btn_arrow:hover circle {
    stroke-width: 1px;
    animation: hero-arrow_circle 3.5s var(--cubic-bezier);
  }
}
@keyframes hero-arrow_circle {
  from { stroke-dasharray: 0 502; }
  to { stroke-dasharray: 502 502; }
}

/*--------------------------------------------------------------------------------
  .hero-img
--------------------------------------------------------------------------------*/
.hero-img {
  clip-path: inset(0px var(--hero-side-space));
  position: sticky;
  left: 0;
  top: 0;
  margin: 0 auto;
}
.hero-img:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  transition: all 2s var(--cubic-bezier);
}
.hero.is-active .hero-img:before {
  background-color: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* .mv-slider
----------------------------------------*/
.mv-slider {
  width: 100%;
  height: 100lvh;
}
.mv-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*--------------------------------------------------------------------------------
  .hero-message
--------------------------------------------------------------------------------*/
.hero-message {
  position: relative;
  z-index: 10;
  margin-top: 100lvh;
}
.hero-message:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}

/*--------------------------------------------------------------------------------
 
  message

--------------------------------------------------------------------------------*/
.message-sec {
  padding-top: var(--space-3l);
  padding-bottom: var(--space-4l);
}
.message { display: grid; }
.message_hd { grid-area: message_hd; padding-bottom: var(--space-l); }
.message_img { grid-area: message_img; }
.message_content { grid-area: message_content; }
@media (min-width: 1000px) {
  .message {
    grid-template-columns: minmax(min(calc(440 / 1400 * 100vw), 440px), 320px) 1fr;
    grid-template-rows: auto 1fr;
    grid-column-gap: var(--space-l);
    grid-template-areas: 
      "message_hd message_hd"
      "message_img message_content";
  }
  .message_content { align-self: center; }
}
@media (max-width: 999px) {
  .message {
    grid-template-areas: 
      "message_hd"
      "message_img"
      "message_content";
  }
  .message_img { text-align: center; }
  .message_img img { width: clamp(200px, calc(400 / 640 * 100vw), 400px);}
  .message_content { padding-top: var(--space-m); }
}
.message_content .txt:not(:first-of-type) { padding-top: 1.5rem; }
.message_content .message_name {
  margin-left: auto;
  padding-top: var(--space-m);
  width: fit-content;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: flex-end;
  column-gap: 1.5rem;
}
.message_name .position {
  padding-bottom: 0.35rem;
}
.message_name .name {
  font-family: var(--ff-min);
  font-size: var(--fs-2l);
  font-weight: 500;
}

/*--------------------------------------------------------------------------------
 
  news

--------------------------------------------------------------------------------*/
.news-sec {
  background-color: #FFF;
  padding-top: var(--space-3l);
  padding-bottom: var(--space-4l);
}
.news { display: grid; }
.news_hd { grid-area: news_hd; padding-bottom: var(--space-m); }
.news_content { grid-area: news_content; }
.news_btn { grid-area: news_btn; }
@media (min-width: 1000px) {
  .news {
    grid-template-columns: minmax(max-content, 1fr) minmax(min-content, 1000px);
    grid-template-rows: auto 1fr;
    grid-column-gap: var(--space-l);
    grid-template-areas: 
      "news_hd news_content"
      "news_btn news_content";
  }
  .news_content { padding-top: 1.5rem; }
}
@media (max-width: 999px) {
  .news {
    grid-template-areas: 
      "news_hd"
      "news_content"
      "news_btn";
  }
  .news_btn { padding-top: var(--space-l); justify-self: end; }
}

/*--------------------------------------------------------------------------------
 
  about

--------------------------------------------------------------------------------*/
.about-sec {
  padding-top: var(--space-3l);
  padding-bottom: var(--space-4l);
}
.about {
  display: grid;
  align-content: start;
}
.about_hd { grid-area: about_hd; z-index: 2; }
.about_img { grid-area: about_img; }
.about_txt { grid-area: about_txt; z-index: 2; }
.about_link { grid-area: about_link; }
@media (min-width: 1000px) {
  .about {
    grid-template-columns: minmax(var(--side-space), 1fr) repeat(5, minmax(0, calc((var(--base-width) / 5) * 1px))) minmax(var(--side-space), 1fr);
    grid-template-rows: auto auto 1fr;
    grid-template-areas: 
      "about_hd about_img"
      "about-txt about_img";
      "about_link about_img";
  }
  .about_hd { grid-area: 1 / 2 / 2 / 5; padding-bottom: var(--space-s); }
  .about_img { grid-area: 1 / 5 / 4 / 8; }
  .about_txt { grid-area: 2 / 2 / 3 / 5; padding-right: var(--space-l); padding-top: var(--space-s); padding-bottom: var(--space-s); }
  .about_link { grid-area: 3 / 2 / 4 / 5; padding-right: var(--space-l); padding-top: var(--space-s); }
}
@media (max-width: 999px) {
  .about {
    grid-template-columns: minmax(var(--side-space), 1fr) repeat(5, minmax(0, calc((var(--base-width) / 5) * 1px))) minmax(var(--side-space), 1fr);
    grid-template-rows: auto 1fr 1fr;
    grid-template-areas: 
      "about_hd about_img"
      "about_txt about_img"
      "about_link about_link";
  }
  .about_hd { grid-area: 1 / 2 / 2 / 5; padding-bottom: var(--space-s); }
  .about_img { grid-area: 1 / 4 / 3 / 8; }
  .about_txt { grid-area: 2 / 2 / 3 / 5; padding-top: var(--space-s); }
  .about_link { grid-area: 3 / 2 / 4 / 7; padding-top: var(--space-m); }
}
@media (min-width: 641px) and (max-width: 999px) {
  .about_img { padding-left: var(--space-s); }
  .about_hd,
  .about_txt { padding-right: var(--space-l); }
  .about_hd-main { width: min-content; }
}
@media (max-width: 640px) {
  .about {
    grid-template-columns: minmax(var(--side-space), 1fr) minmax(0, calc(var(--base-width) * 1px)) minmax(var(--side-space), 1fr);
    grid-template-rows: repeat(4, auto);
    grid-template-areas: 
      "about_hd"
      "about_img"
      "about_txt"
      "about_link";
  }
  .about_hd { grid-area: 1 / 2 / 2 / 3; padding-bottom: var(--space-l); }
  .about_img { grid-area: 2 / 2 / 3 / 3; }
  .about_txt { grid-area: 3 / 2 / 4 / 3; padding-top: var(--space-s); }
  .about_link { grid-area: 4 / 2 / 5 / 3; padding-top: var(--space-m); }
}
.about_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% top;
}

/*--------------------------------------------------------------------------------
  .about-link-list
--------------------------------------------------------------------------------*/
.about-link-list a,
.about-link-list a:hover { color: inherit; text-decoration: none; }
.about-link-list {
  line-height: 1.6;
  font-family: var(--ff-go);
  font-weight: 400;
  font-size: var(--fs-l);
}
.about-link-list_item {
  padding: 2rem 0;
  display: flex;
  align-items: center;
  column-gap: 1.5em;
  position: relative;
}
.about-link-list_icon {
  flex-shrink: 0;
  margin-left: auto;
}
.about-link-list_item:before,
.about-link-list_item:after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  transform-origin: right top;
}
.about-link-list_item:before {
  border-bottom: 1px solid var(--border-color);
  transform: scale(1,1);
}
.about-link-list_item:after {
  border-bottom: 1px solid var(--color-secondary);
  transform: scale(0,1);
  transition: transform 0.8s var(--cubic-bezier);
}
@media (hover: hover) {
  .about-link-list_item:hover:after {
    transform-origin: left top;
    transform: scale(1,1);
  }
}

/*--------------------------------------------------------------------------------
 
  links

--------------------------------------------------------------------------------*/
.links {
  color: #FFF;
  display: grid;
}
@media (min-width: 1000px) {
  .links { grid-template-columns: repeat(3, 1fr); }
}
.links_item {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}
.links_item.-item01 { background-image: url("../../image/links_img01.jpg"); }
.links_item.-item02 { background-image: url("../../image/links_img02.jpg"); }
.links_item.-item03 { background-image: url("../../image/links_img03.jpg"); }
.links_item:before,
.links_item:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.links_item:after {
  transform: scale(1,0);
  transition: transform 0.8s var(--cubic-bezier);
  transform-origin: left bottom;
}
.links_item:before { background-color: rgba(var(--color-tertiary-dark-rgb), 0.7); z-index: 1; }
.links_item:after { background-color: rgba(var(--color-primary-rgb), 0.8); z-index: 2; }
@media (hover: hover) {
  .links_item:hover:after { transform: scale(1,1); }
}
.links_item a,
.links_item a:hover { color: inherit; text-decoration: none; }
.links_item a {
  height: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
  position: relative;
  z-index: 10;
}
.links_item .ttl {
  line-height: 1.6;
  font-weight: bold;
  font-size: var(--fs-2l);
  padding-top: var(--space-s);
}
.links_item .btn {
  text-align: right;
  margin-top: auto;
}
@media (min-width: 1000px) {
  .links_item a { padding: var(--box-space-m); }
  .links_item .txt { max-width: min(calc(440/ 1000 * 100vw), 440px); }
  .links_item .btn { padding-top: var(--space-l); }
}
@media (max-width: 999px) {
  .links_item a { padding: var(--box-space-l); }
  .links_item .btn { padding-top: var(--space-s); }
}

/*--------------------------------------------------------------------------------
 
  column

--------------------------------------------------------------------------------*/
.column-sec {
  background-color: #FFF;
  padding-top: var(--space-3l);
  padding-bottom: var(--space-4l);
}
.column { display: grid; }
.column_hd { grid-area: column_hd; padding-bottom: var(--space-l); }
.column_btn { grid-area: column_btn; justify-self: end; }
.column_content { grid-area: column_content; }
@media (min-width: 1000px) {
  .column {
    grid-template-columns: auto 1fr;
    grid-template-areas: 
      "column_hd column_btn"
      "column_content column_content";
  }
}
@media (max-width: 999px) {
  .column {
    grid-template-areas: 
      "column_hd"
      "column_content"
      "column_btn";
  }
  .column_btn { padding-top: var(--space-l); }
}

/*--------------------------------------------------------------------------------
 
  outline

--------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------
  .outline-parallax
--------------------------------------------------------------------------------*/
.outline-parallax {
  position: relative;
  overflow-x: clip;
  width: 100%;
}
.outline-parallax:before {
  content: "";
  width: 100%;
  height: var(--space-4l);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FFF;
}

/* .outline-img
----------------------------------------*/
.outline-img {
  width: 100%;
  height: 100%;
  position: sticky;
  left: 0;
  top: 0;
  clip-path: inset(0px calc(var(--side-space) * 2));
}
.outline-img img {
  width: 100%;
  height: 100%;
  max-height: 640px;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

/* .outline-loop
----------------------------------------*/
.outline-loop {
  color: rgba(255,255,255,1);
  mix-blend-mode: overlay;
  width: 100%;
  height: 100%;
  max-height: 640px;
  aspect-ratio: 1.25 / 1;
  position: sticky;
  left: 0;
  top: 0;
  z-index: 2;
  line-height: 1;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.outline-loop:before,
.outline-loop:after {
  content: "JAHMC AOMORI";
  font-family: var(--ff-en);
  font-size: clamp(60px, 20vw, 200px);
  font-weight: 300;
  flex-shrink: 0;
  padding: 0 0.25em;
  animation: outline-loop 30s infinite linear;
}
@keyframes outline-loop {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

/*--------------------------------------------------------------------------------
  .outline
--------------------------------------------------------------------------------*/
.outline-sec {
  padding-top: var(--space-2l);
  padding-bottom: var(--space-4l);
}
.outline {
  position: relative;
  z-index: 1;
  display: grid;
  grid-gap: var(--space-m);
}
@media (min-width: 1000px) {
  .outline { grid-template-columns: minmax(max-content, 1fr) minmax(min-content, 820px); }
}
.outline_catch {
  font-family: var(--ff-min);
  font-size: var(--fs-5l);
  font-weight: 500;
}
