@charset "UTF-8";
/*
theme Name: Nemesys_SES
Author: Nemesys
Description: Original theme
Version: 1.0
*/
/****************************************

  Reset CSS

*****************************************/
*,
*::before,
*::after {
  margin: 0; /* マージンは0に */
  padding: 0; /* パディングも常に0に */
  box-sizing: border-box; /* もちろん、より直感的なbox-sizingに設定 */
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important; /* hiddenは非表示を意味します */
}

:where(html) {
  -webkit-text-size-adjust: none; /* iOSのランドスケープでテキストが調整されないようにする */
  /*color-scheme: dark light; /* ユーザーがダークテーマを好む場合、自動的にダークテーマになる */
}

@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}
@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth; /* 何かにフォーカスがある場合のみスムーズスクロール */
  }
}
:where(body) {
  block-size: 100%; /* サファリ以外のブラウザのフォールバック */
  block-size: 100dvb; /* 1dvbは動的ビューポートの長さの1%、100dvbで高さいっぱいに */
  line-height: 1.5; /* アクセシブルな行の高さ */
  font-family: system-ui, sans-serif; /* timeの代わりにシステムフォントを使用 */
  -webkit-font-smoothing: antialiased; /* テキストのレンダリングを改善 */
}

:where(input, button, textarea, select) {
  font: inherit; /* フォーム コントロールは親フォントを継承 */
  color: inherit; /* カラーも継承 */
}

:where(textarea) {
  resize: vertical; /* テキストエリアの水平リサイズを無効に */
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer; /* インタラクティブなものにカーソルを合わせる */
}

:where(:disabled) {
  cursor: not-allowed; /* フォームコントロール無効時のカーソルを許可しない */
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed; /* ラベルにもカーソルを許可しない */
}

:where(button) {
  border-style: solid; /* ボタンのボーダーのスタイルを設定しやすくする */
}

:where(a) {
  text-underline-offset: 0.2ex; /* 下線の上にスペースを追加する */
}

:where(ul, ol) {
  list-style: none; /* ビュレットを削除、必要に応じて手動で追加する */
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block; /* 置換された要素をより予測可能にする */
}

:where(img, picture, svg) {
  max-inline-size: 100%; /* images should never overflow past the available space */
  block-size: auto; /* アスペクト比を保持 */
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word; /* 長い単語は改行 */
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem); /* 見出しの行の高さを減らす */
}

:where(hr) {
  /* より一貫性のある、スタイリッシュなhr */
  border: none;
  -webkit-border-before: 1px solid;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(:focus-visible) {
  /* より一貫性のある、カスタマイズ可能なフォーカスのアウトライン */
  outline: 2px solid var(--focus-color, Highlight);
  outline-offset: 2px;
}

/* .visually-hiddenは後のカスケードレイヤーを上書きするために!importantを使用 */
:where(.visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)) {
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

main {
  margin-top: 72px;
}

@media screen and (min-width: 768px) {
  main {
    margin-top: 96px;
  }
}
a {
  text-decoration: none;
}

/****************************************

  Header Layout

*****************************************/
.ly_header {
  position: fixed;
  top: 0;
  left: 0;
  padding-left: 6%;
  padding-right: 6%;
  width: 100%;
  height: 72px;
  background-color: #ffffff;
  z-index: 9000;
}
@media screen and (min-width: 768px) {
  .ly_header {
    padding-left: 40px;
    padding-right: 40px;
    height: 96px;
  }
}

.ly_header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  height: 100%;
  max-width: 1600px;
}

/****************************************

  Header Block

*****************************************/
.bl_header_sitename {
  width: 50%;
  max-width: 200px;
}

.bl_header_contact {
  color: #000000;
}

.bl_header_burger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  width: 30px;
  height: 22px;
  cursor: pointer;
}
.bl_header_burger > span {
  width: 100%;
  height: 2px;
  transition: all 0.4s;
  background-color: #000000;
}
@media screen and (min-width: 1024px) {
  .bl_header_burger {
    display: none;
  }
}

.bl_header_overlay {
  display: none;
  position: absolute;
  top: 72px;
  right: -100%;
  width: 100%;
  height: calc(100vh - 72px);
  background-color: rgba(0, 0, 0, 0.6);
}
@media screen and (min-width: 768px) {
  .bl_header_overlay {
    top: 96px;
    height: calc(100vh - 96px);
  }
}

.bl_header_menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.bl_header_menu > a {
  color: #000000;
}
@media screen and (min-width: 1024px) {
  .bl_header_menu {
    flex-direction: row;
    justify-content: flex-end;
  }
}

/****************************************

  Header Helper

*****************************************/
.hp_header_checkbox {
  display: none;
}

/****************************************

  Header Other

*****************************************/
#header_check:checked ~ .bl_header_burger {
  height: 30px;
}
#header_check:checked ~ .bl_header_burger > span:nth-of-type(1) {
  transform: translateY(14px) rotate(225deg);
}
#header_check:checked ~ .bl_header_burger > span:nth-of-type(2) {
  width: 0;
}
#header_check:checked ~ .bl_header_burger > span:nth-of-type(3) {
  width: 100%;
  transform: translateY(-14px) rotate(135deg);
}
#header_check:checked ~ .bl_header_overlay {
  display: block;
  -webkit-animation: hd-animation 0.4s ease-in-out forwards;
          animation: hd-animation 0.4s ease-in-out forwards;
}
@media screen and (min-width: 1024px) {
  #header_check:checked ~ .bl_header_overlay {
    display: none;
  }
}
#header_check:checked ~ .ly_header_nav {
  display: block;
  -webkit-animation: hd-animation 0.4s ease-in-out 0.4s forwards;
          animation: hd-animation 0.4s ease-in-out 0.4s forwards;
}

@-webkit-keyframes hd-animation {
  0% {
    right: -100%;
  }
  100% {
    right: 0;
  }
}

@keyframes hd-animation {
  0% {
    right: -100%;
  }
  100% {
    right: 0;
  }
}
/****************************************

  Footer Layout

*****************************************/
.ly_footer {
  margin-top: auto;
  padding-left: 6%;
  padding-right: 6%;
  background-color: #0d2643;
}
@media screen and (min-width: 768px) {
  .ly_footer {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.ly_footer_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: 24px;
  padding-bottom: 24px;
  width: 100%;
  max-width: 1600px;
}

/****************************************

  Footer Block

*****************************************/
.bl_footer_link {
  color: #ffffff;
  font-size: 12px;
  font-size: 0.75rem;
}

.bl_copyright {
  color: #ffffff;
  font-size: 12px;
  font-size: 0.75rem;
}
/*# sourceMappingURL=style.css.map */