@charset "UTF-8";
/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

    カラー関数設定

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
:root {
  --theme-main:#FFFFFF;
  --theme-main-rgb: 255,255,255;
  --theme-sub:#dadada;
  --theme-content:#101010;
  --theme-content-rgb:16,16,16;
  --theme-white:#FFFFFF;
  --theme-black:#1a1a1a;
  --theme-blue: #8fd3f5;
  --theme-sky-blue:#ceebfb;
  --theme-green: #9fcb56;
  --theme-yellow:#f9e260;
  --theme-gray1:#808080;
  --theme-gray2:#E0E0E0;
}

@media (prefers-color-scheme: dark) {
  :root {
    --theme-main:#1a1212;
    --theme-main-rgb: 26,18,18;
    --theme-sub:#211010;
    --theme-content:#cccccc;
    --theme-content-rgb:204,204,204;
    --theme-white:#FFFFFF;
    --theme-black:#1a1a1a;
    --theme-blue: #8fd3f5;
    --theme-sky-blue:#ceebfb;
    --theme-green: #9fcb56;
    --theme-yellow:#f9e260;
    --theme-gray1:#808080;
    --theme-gray2:#E0E0E0;
  }
}
/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

  ユーザーエージェント系の関数

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/*------------------------------------------
　メディアクエリの設定
-------------------------------------------*/
/*------------------------------------------
　フォントの指定
-------------------------------------------*/
body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

/*------------------------------------------
　フォントサイズの指定
-------------------------------------------*/
/* 各要素の指定用に1remを10px(62.5%)に設定 */
html {
  font-size: 62.5%;
}

body {
  line-height: 100%;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt" 1;
}

/*-----------------------------------------------
  font-sizeのレスポンシブ対応レイアウト関連
  デフォルト　：　最大値[rem]
  タブレット~スマホ：以下フォントサイズ計算式
  font-size: clamp(
    スマホ(550px以下),
    32px + 32px  (100vw - 550px) / 730px
    最大(1280px以上)
  );
  font-size: calc(A[rem] + B[px] * (100vw - C)/D);
    A・・・最小文字サイズ[rem]
    B・・・最大文字サイズ (remをpx変換)– 最小文字サイズ (remをpx変換)[px]
    C・・・最小画面幅 [px]
    D・・・最大画面幅 – 最小画面幅[px]
  スマホ：最小値[rem]
------------------------------------------------*/
/*
  テキストスタイル
*/
/*********************************************

  テーマ基本設定

*********************************************/
html {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
html::-webkit-scrollbar {
  display: none;
}

body {
  width: 100%;
  overflow-x: hidden;
  font-size: 1.6rem;
  line-height: 3rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}

main {
  background-color: var(--theme-main);
}

section {
  width: min(1200px, 90%);
  padding: 120px 0;
  margin: 0 auto;
}
section .section-headline {
  padding-bottom: 40px;
}
section .section-headline h2 {
  font-size: 4rem;
  line-height: 4.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--theme-content);
}
section .section-headline p {
  color: var(--theme-content);
}

.first-view {
  width: 100%;
  height: 60vmin;
  background-image: conic-gradient(from 20deg, rgb(223, 168, 168) 18deg, rgb(193, 199, 197) 68deg, rgb(108, 199, 221) 151deg, rgb(177, 151, 223) 263deg, rgb(122, 197, 216) 295deg, rgb(223, 168, 168) 360deg);
  display: grid;
  place-items: center;
}
@media (prefers-color-scheme: dark) {
  .first-view {
    background-image: conic-gradient(from 20deg, rgb(183, 30, 30) 35deg, rgb(44, 132, 103) 103deg, rgb(13, 79, 95) 175deg, rgb(47, 15, 103) 242deg, rgb(14, 96, 117) 274deg, rgb(183, 30, 30) 360deg);
  }
}
.first-view h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.first-view h1 span {
  color: var(--theme-white);
  filter: drop-shadow(1px 1px 0px var(--theme-gray1)) drop-shadow(-1px 1px 0px var(--theme-gray1));
}
.first-view h1 span.main {
  font-size: 4rem;
  line-height: 4.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}
.first-view h1 span.sub {
  font-size: 1.8rem;
  line-height: 180%;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.line-up {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
}
.line-up a.line-up_panel {
  border-radius: 4px;
  box-shadow: 2px 2px 8px rgba(var(--theme-content-rgb), 0.5);
  padding: 12px;
  transition: 0.4s;
  background-color: var(--theme-sub);
}
@media (hover: hover) and (pointer: fine) {
  .line-up a.line-up_panel:hover {
    transform: translate(2px, 2px);
    box-shadow: 1px 1px 4px rgba(var(--theme-content-rgb), 0.5);
  }
}
.line-up a.line-up_panel h3 {
  font-size: 1.8rem;
  line-height: 180%;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--theme-content);
}
.line-up a.line-up_panel p {
  color: var(--theme-content);
}

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

  ヘッダー

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
header {
  position: fixed;
  width: 100%;
  height: 80px;
  left: 0;
  top: 0;
  z-index: 999;
}
header .header-inner {
  width: 95%;
  margin: 0 auto;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header-inner .header-inner_logo svg {
  vertical-align: top;
  width: clamp(140px, 16vw, 160px);
  fill: var(--theme-white);
  filter: drop-shadow(1px 1px 0px var(--theme-gray1)) drop-shadow(-1px 1px 0px var(--theme-gray1));
}
header .header-inner .global-nav_icon {
  position: relative;
  width: 74px;
  height: 74px;
  cursor: pointer;
}
@keyframes rotateRight {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes rotateleft {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}
header .header-inner .global-nav_icon .global-nav_icon-inner-large, header .header-inner .global-nav_icon .global-nav_icon-inner-small, header .header-inner .global-nav_icon .global-nav_icon-label {
  position: absolute;
  display: inline-block;
  transform-origin: center;
  top: 50%;
  left: 50%;
  border-radius: 4px;
}
header .header-inner .global-nav_icon .global-nav_icon-inner-large {
  animation: rotateRight 10s linear infinite;
  background-color: var(--theme-gray1);
  width: 52px;
  height: 52px;
}
header .header-inner .global-nav_icon .global-nav_icon-inner-small {
  animation: rotateleft 10s infinite;
  background-color: var(--theme-white);
  width: 24px;
  height: 24px;
}
header .header-inner .global-nav_icon .global-nav_icon-label {
  transform: translate(-50%, -50%);
  font-weight: 700;
  mix-blend-mode: difference;
  color: var(--theme-white);
  letter-spacing: 0;
}
@media (max-width: 840px) {
  header.active .global-nav {
    height: 392px;
    visibility: visible;
  }
}
header .global-nav_list {
  position: absolute;
  display: none;
}

.hamburger-menu {
  mix-blend-mode: difference;
  display: inline-block;
  position: fixed;
  width: 36px;
  aspect-ratio: 1/1;
  top: 20px;
  right: 20px;
  z-index: 999;
  cursor: pointer;
}
.hamburger-menu span {
  display: inline-block;
  position: absolute;
  height: 1.4px;
  background-color: var(--color-content-sub);
  transition: 0.4s;
}
.hamburger-menu span:nth-child(1) {
  transition-delay: 0.4s;
  width: 100%;
  top: 12px;
  right: 0;
}
.hamburger-menu span:nth-child(2) {
  transition-delay: 0.6s;
  width: 80%;
  top: 27px;
  right: 0;
}
.hamburger-menu span:nth-child(3) {
  transition-delay: 0s;
  width: 0;
  top: 0;
  left: 0;
  transform-origin: left top;
  transform: rotate(45deg);
}
.hamburger-menu span:nth-child(4) {
  transition-delay: 0.2s;
  width: 0;
  bottom: 0;
  left: 0;
  transform-origin: left bottom;
  transform: rotate(-45deg);
}
.hamburger-menu.active > span:nth-child(1) {
  transition-delay: 0s;
  width: 0%;
}
.hamburger-menu.active > span:nth-child(2) {
  transition-delay: 0.2s;
  width: 0%;
}
.hamburger-menu.active > span:nth-child(3) {
  transition-delay: 0.6s;
  width: 141%;
}
.hamburger-menu.active > span:nth-child(4) {
  transition-delay: 0.8s;
  width: 141%;
}

footer {
  background-color: var(--theme-sub);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
          backdrop-filter: saturate(180%) blur(12px);
  color: var(--theme-content);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 5%;
  text-align: center;
}
footer nav.footer-nav {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 40px 0 24px;
}
@media (max-width: 840px) {
  footer nav.footer-nav {
    flex-direction: row;
    justify-content: center;
  }
}
@media (max-width: 550px) {
  footer nav.footer-nav {
    gap: 24px;
  }
}
footer nav.footer-nav div.logo-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
footer nav.footer-nav div.logo-box a.footer-nav_logo {
  display: inline-block;
  width: clamp(200px, 50%, 280px);
  height: auto;
}
footer nav.footer-nav div.logo-box a.footer-nav_logo svg {
  fill: var(--theme-content);
  vertical-align: top;
}
footer nav.footer-nav div.logo-box p.charles-dederich {
  font-size: 1.2rem;
  font-style: italic;
}
footer p.copyright {
  padding-bottom: 12px;
}/*# sourceMappingURL=style.css.map */