/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

/* ========================================
   Design Tokens
   サイト全体で共有する CSS カスタムプロパティ
   ======================================== */

:root {
  /* アクセントカラー */
  --color-accent: #ff4b54;

  /* ボーダー・区切り線の基本色 */
  --color-border: #e2e8f0;

  /* 日本語フォントスタック */
  --font-family-ja: "Hiragino Sans", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN",
    "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
}

/* ======================================== */

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/



/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1.6rem;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0 1.6rem;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

/* Elements
Base HTML elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/

/* The overflow-wrap is meant to prevent long/large words from breaking the mobile responsiveness of a page (e.g. horizontal scrolling). It is preferred to reduce font sizes on mobile to address this, with this CSS specifically helping with extreme scenarios where a reduction in font size is not possible. */

body {
  line-height: 1.4;
  overflow-wrap: break-word;
}

/* Handles word breaking for a few specific languages which handle breaks in words differently. If your content is not translated into these languages, you can safely remove this.  */

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}

/* Paragraphs */

p {
  margin: 0 0 2.2rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 2.2rem;
}

/* Lists */

ul,
ol {
  margin: 0 0 2.2rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 2.2rem;
  padding-left: 1.1rem;
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */

img {
  font-size: 0.9rem;
  word-break: normal;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s, border-radius 0.3s;
  white-space: normal;
}

button:disabled,
.button:disabled,
.hs-button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}
/* Fields */

.hs-form-field {
  margin-bottom: 2.2rem;
}

/* theme-overrides.css のテーマ設定値による背景色上書きを無効化 */
form,
.submitted-message {
  background-color: transparent !important;
}

/* Labels */

form label {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* Help text */

form legend {
  font-size: 1.5rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 1.5rem;
  padding: 1.1rem;
  width: 100%;
}

form textarea {
  resize: vertical;
}

form fieldset {
  max-width: 100% !important;
}

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 1.1rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.6rem;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 1.5rem;
  margin: 0 0 2.2rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1.6rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.6rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


  /* Search button input field and suggestions */
  .body-container-wrapper .hs-search-field__button {
    padding: 15px;
  }

  .body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
    margin-left: 6px;
    margin-bottom: 0;
  }

  .body-container-wrapper .hs-search-field__button svg {
    height: 15px;
    fill: #fff;
  }

  .body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
    padding: 10px;
  }

  .body-container-wrapper .hs-search-field__suggestions li a {
    color: #494A52;
    padding: 0.6rem 1.1rem;
    text-decoration: none;
    transition: background-color 0.3s;
  }

/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 2.2rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

/* ========================================
   Header
   固定配置・透明→スクロール後に白背景
   ======================================== */

:root {
  --header-height: 100px;
}

/* ページコンテンツを固定ヘッダーの下に押し出す */

body {
  padding-top: var(--header-height);
}

/* ヘッダー基本（透明） */

.header {
  background-color: transparent !important;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: background-color 0.3s, box-shadow 0.3s;
  z-index: 100;
}

/* スクロール後（白背景） */

.header--scrolled {
  background-color: #fff !important;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

/* スキップリンク（アクセシビリティ） */

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  top: -1000px;
  width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}

/* コンテナ */

.header__container {
  align-items: center;
  display: flex;
  height: var(--header-height);
  justify-content: space-between;
}

/* ロゴ */

.header__logo {
  flex-shrink: 0;
}

.header__logo-link {
  align-items: center;
  display: flex;
  gap: 1.2rem;
  position: relative;
  text-decoration: none;
}

.header__logo-link:hover,
.header__logo-link:focus {
  text-decoration: none;
}

.header__logo-img {
  height: 24px;
  transition: opacity 0.3s;
  width: auto;
}

.header__logo-img--default {
  margin-right: 2rem;
}

.header__logo-img--scrolled {
  left: 0;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.header--scrolled .header__logo-img--default {
  opacity: 0;
}

.header--scrolled .header__logo-img--scrolled {
  opacity: 1;
}

.header__tagline {
  color: #fff;
  font-size: 1.5rem;
  transition: color 0.3s;
  white-space: nowrap;
}

.header--scrolled .header__tagline {
  color: #000;
}

/* ナビゲーション（デスクトップ） */

.header__navigation {
  align-items: center;
  display: flex;
}

/* li の padding を a に移してクリック範囲を拡大 */

.header__navigation .menu__item--depth-1 {
  padding: 0;
}

.header__navigation .menu__item--depth-1 > .menu__link {
  display: inline-block;
  padding: 1.1rem 1.4rem;
}

/* 通常・ホバー・フォーカス・アクティブ・アクティブ項目すべて同一フォントで固定
   font-family / font-weight に !important を付与して HubSpot のカスケードに確実に勝つ */

.header__navigation .menu__link,
.header__navigation .menu__link:hover,
.header__navigation .menu__link:focus,
.header__navigation .menu__link:active,
.header__navigation .menu__link--active-link,
.header__navigation .menu__link--active-branch {
  font-family: var(--font-family-ja) !important;
  font-size: 1.5rem !important;
  font-weight: normal !important;
}

.header__navigation .menu__link {
  color: #fff;
  transition: color 0.3s;
}

.header__navigation .menu__link:hover,
.header__navigation .menu__link:focus {
  color: rgba(255, 255, 255, 0.6) !important;
}

.header__navigation .menu__link--active-link,
.header__navigation .menu__link--active-branch {
  color: #fff;
}

/* アクティブリンクの ::after 下線を非表示 */

.header__navigation .menu__item--depth-1 > .menu__link--active-link::after {
  content: none;
}

/* スクロール後 */

.header--scrolled .header__navigation .menu__link,
.header--scrolled .header__navigation .menu__link:hover,
.header--scrolled .header__navigation .menu__link:focus,
.header--scrolled .header__navigation .menu__link:active,
.header--scrolled .header__navigation .menu__link--active-link,
.header--scrolled .header__navigation .menu__link--active-branch {
  font-family: var(--font-family-ja) !important;
  font-size: 1.5rem !important;
  font-weight: normal !important;
}

.header--scrolled .header__navigation .menu__link {
  color: #000;
}

.header--scrolled .header__navigation .menu__link:hover,
.header--scrolled .header__navigation .menu__link:focus {
  color: rgba(0, 0, 0, 0.6) !important;
}

.header--scrolled .header__navigation .menu__link--active-link,
.header--scrolled .header__navigation .menu__link--active-branch {
  color: #000;
}

/* ハンバーガー・閉じるボタン（デスクトップでは非表示） */

.header__navigation--toggle,
.header__close--toggle {
  display: none;
}

/* ================================================================
   モバイル（≤1050px）
   ================================================================ */

@media (max-width: 1050px) {

  /* モバイルではヘッダーを常に白背景 */

  .header,
  .header--scrolled {
    background-color: #fff !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  }

  .header__logo-img--default {
    opacity: 0;
  }

  .header__logo-img--scrolled {
    opacity: 1;
  }

  .header__tagline {
    color: #494A52;
  }

  /* ナビゲーション：通常時は非表示 */

  .header__navigation {
    display: none;
    width: 100%;
  }

  /* ナビゲーション：開いた状態（ドロワー） */

  .header__navigation.open {
    background-color: #222;
    display: block;
    left: 0;
    min-height: calc(100vh - var(--header-height));
    padding: 0.8rem 0;
    position: absolute;
    right: 0;
    top: var(--header-height);
    z-index: 2;
  }

  .header__navigation.open .menu__link {
    color: #fff;
    display: block;
    font-size: 1.6rem;
    padding: 1.4rem 2.4rem;
  }

  .header__navigation.open .menu__link:hover,
  .header__navigation.open .menu__link:focus {
    color: var(--color-accent);
    text-decoration: none;
  }

  /* ハンバーガーボタン */

  .header__navigation--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5oYW1idXJnZXI8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGcgaWQ9ImhhbWJ1cmdlciIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgICAgICA8ZyBpZD0iR3JvdXAiIHN0cm9rZT0iIzQ5NEE1MiIgc3Ryb2tlLXdpZHRoPSIzIj4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlIiB4PSIxLjUiIHk9IjEuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNCIgeD0iMS41IiB5PSI5LjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZS1Db3B5LTUiIHg9IjEuNSIgeT0iMTcuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==);
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
    display: block;
    height: 24px;
    width: 24px;
  }

  .header__navigation--toggle.hide {
    display: none;
  }

  /* 閉じるボタン（×アイコン）：ナビ展開時に表示 */

  .header__close--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjE5cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5jbG9zZTwvdGl0bGU+ICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiAgICA8ZyBpZD0iY2xvc2UiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgaWQ9Ikdyb3VwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyLjAwMDAwMCwgLTEuMDAwMDAwKSIgc3Ryb2tlPSIjNDk0QTUyIiBzdHJva2Utd2lkdGg9IjMiPiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjAwMDAwMCwgMTAuNTAwMDAwKSByb3RhdGUoLTQ1LjAwMDAwMCkgdHJhbnNsYXRlKC0xMC4wMDAwMDAsIC0xMC41MDAwMDApICIgeD0iLTAuNSIgeT0iMTAuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCAxMC41MDAwMDApIHJvdGF0ZSg0NS4wMDAwMDApIHRyYW5zbGF0ZSgtMTAuMDAwMDAwLCAtMTAuNTAwMDAwKSAiIHg9Ii0wLjUiIHk9IjEwLjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICA8L2c+ICAgIDwvZz48L3N2Zz4=);
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
    height: 24px;
    width: 24px;
  }

  .header__close--toggle.show {
    display: block;
  }

}

/* ================================================================
   ヒーロー bleed-under
   body の padding-top を打ち消してヘッダーの下に潜り込ませる
   ================================================================ */

.body-container--home,
.body-container--about,
.body-container--recruit,
.body-container--blog_list,
.body-container--member,
.body-container--contact,
.body-container--service,
.body-container--service-detail {
  margin-top: calc(-1 * var(--header-height));
}

.body-container--home .dnd-section:first-child {
  padding: 0;
}

.body-container--home .dnd-section:first-child .dnd-column {
  padding: 0;
}

.body-container--home .dnd-section:first-child .row-fluid {
  margin: 0;
  max-width: none;
}


/* page-hero-banner フィルターオーバーレイ（::before で背景画像の上に重ねる） */

.page-hero-banner {
  position: relative;
}

.page-hero-banner::before {
  background-color: transparent; /* インライン CSS で上書きされる */
  bottom: 0;
  content: '';
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}

/* フィルターより前面にコンテンツを表示 */

.page-hero-banner .dnd-column {
  position: relative;
  z-index: 1;
}

/* ヒーローバナー内のテキストを常に白に */
.home-hero-banner,
.home-hero-banner h1,
.home-hero-banner h2,
.home-hero-banner h3,
.home-hero-banner h4,
.home-hero-banner h5,
.home-hero-banner h6,
.home-hero-banner p,
.home-hero-banner a,
.home-hero-banner li,
.home-hero-banner span,
.home-hero-banner > *,
.page-hero-banner,
.page-hero-banner h1,
.page-hero-banner h2,
.page-hero-banner h3,
.page-hero-banner h4,
.page-hero-banner h5,
.page-hero-banner h6,
.page-hero-banner p,
.page-hero-banner a,
.page-hero-banner li,
.page-hero-banner span,
.page-hero-banner > * {
  color: #fff !important;
}
/* ========================================
   Footer
   ======================================== */

/* ロゴ・住所・コンタクトリンク */

.footer__info {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 20px 80px 20px;
  text-align: center;
}

.footer__logo {
  height: auto;
  width: 120px;
}

.footer__logo-link {
  display: inline-block;
  transition: opacity 0.2s;
}

.footer__logo-link:hover,
.footer__logo-link:focus {
  opacity: 0.65;
}

.footer__address {
  color: #555;
  font-size: 1.5rem;
  font-style: normal;
  line-height: 1.7;
}

.footer__contact-links {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.footer__contact-link {
  color: #555;
  display: inline-flex;
  text-decoration: none;
  transition: color 0.2s;
}

.footer__contact-link svg {
  height: 16px;
  width: 16px;
}

.footer__contact-link:hover,
.footer__contact-link:focus {
  color: #000;
  text-decoration: none;
}

.footer .footer__menu {
  align-items: baseline;
  display: flex;
  justify-content: center;
  width: 100%;
}

/* li の padding を a に移してクリック範囲を拡大 */

.footer .footer__menu .menu__item--depth-1 {
  padding: 0;
}

.footer .footer__menu .menu__item--depth-1 > .menu__link {
  display: inline-block;
  padding: 1.1rem 1.4rem;
}

/* 通常・ホバー・フォーカス・アクティブ・アクティブ項目すべて同一フォントで固定 */

.footer .footer__menu .menu__link,
.footer .footer__menu .menu__link:hover,
.footer .footer__menu .menu__link:focus,
.footer .footer__menu .menu__link:active,
.footer .footer__menu .menu__link--active-link,
.footer .footer__menu .menu__link--active-branch {
  font-family: var(--font-family-ja) !important;
  font-size: 1.5rem !important;
  font-weight: normal !important;
}

/* 文字色：通常=黒、マウスオーバー=黒の透明度0.6 */

.footer .footer__menu .menu__link {
  color: #000 !important;
  transition: color 0.3s;
}

.footer .footer__menu .menu__link:hover,
.footer .footer__menu .menu__link:focus {
  color: rgba(0, 0, 0, 0.6) !important;
}

@media (max-width: 1050px) {
  .footer .footer__menu .menu__item--depth-1 {
    border-top: none !important;
    text-align: center;
  }
}

.footer .footer__copyright {
  align-items: center;
  display: flex;
  font-size: 1.2rem;
  gap: 1rem;
  justify-content: center;
  padding: 2rem 2rem;
  width: 100%;
}

/* ========================================
   PAGE TOP フローティングボタン
   ======================================== */

.footer__page-top {
  align-items: center;
  background-color: #000;
  bottom: 0;
  color: #fff;
  display: flex;
  /* 高さ・幅は JS でコピーライトエリアの実測値に合わせる。
     JS が未実行の場合のフォールバック値。 */
  height: 48px;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 0;
  text-decoration: none;
  transition: opacity 0.3s, background-color 0.3s;
  width: 48px;
  z-index: 200;
}

.footer__page-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.footer__page-top:hover,
.footer__page-top:focus {
  background-color: #333;
  color: #fff;
  text-decoration: none;
}

/* height / width はJSで動的に設定するためメディアクエリによる固定値は不要 */

.footer .footer__copyright .copyright-year {
  flex-shrink: 0;
  white-space: nowrap;
}

/* dnd_area のデフォルトマージン・パディングを打ち消す */
.footer .footer__copyright .copyright-text .dnd-section,
.footer .footer__copyright .copyright-text .dnd-section > .row-fluid,
.footer .footer__copyright .copyright-text .dnd-column {
  margin: 0;
  padding: 0;
}

.footer .footer__copyright .copyright-text p {
  margin: 0;
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}
/* ========================================
   Data Table
   汎用データテーブル（会社概要・募集要項など）
   ======================================== */

.data-table {
  border: none;
  border-collapse: collapse;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
  width: 100%;
}

.data-table__th,
.data-table__td {
  border: 1px solid var(--color-border);
}

.data-table__tr {
  border: none !important;
}

.data-table__th {
  background: #f8fafc;
  font-weight: normal;
  padding: 20px 16px;
  text-align: center;
  vertical-align: top;
  white-space: nowrap;
  width: 200px;
}

.data-table__td {
  padding: 20px 16px;
  vertical-align: top;
}

/* 横幅を最大 100% に拡張するモディファイア */
.data-table--full {
  max-width: 100%;
}

/* スマホ：th・td を縦積みにしてラベルを上、値を下に表示 */

@media (max-width: 767px) {
  /* table / tbody / tr もブロック化してテーブルレイアウトを完全に無効化
     これにより border-collapse / border-spacing が関与しなくなり
     左右の余分な線・行間の隙間が解消される */
  .data-table,
  .data-table tbody,
  .data-table tr {
    display: block;
    width: 100%;
  }

  .data-table__th,
  .data-table__td {
    box-sizing: border-box;
    display: block;
    margin-top: -1px; /* 上の行の下線と重ねる */
    padding: 1rem 1.5rem;
    width: 100%;
  }

  .data-table__td {
    padding: 2rem 1.5rem;
  }

  .data-table__th {
    text-align: left;
  }
}
/* ========================================
   Access
   アクセスセクション
   ======================================== */

/* 住所テキスト：PCは中央、スマホは左寄せ */
.access__address {
  text-align: center;
}

@media (max-width: 767px) {
  .access__address {
    text-align: left;
  }
}
/* ========================================
   Member Achievement
   実績セクション（リスト形式）
   ======================================== */

/* セクション見出し */

.member-achievement__heading {
  margin-bottom: 48px;
  text-align: center;
}

/* 年度グループ */

.achievement-year {
  margin-bottom: 40px;
}

/* 年度見出し */

.achievement-year__title {
  border-left: 4px solid var(--color-accent);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0;
  padding: 4px 0 4px 12px;
}

/* リスト */

.achievement-year__list {
  border-top: 1px solid var(--color-border);
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1.6rem !important;
}

/* リストアイテム */

.achievement-year__item {
  align-items: baseline;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  gap: 24px;
  padding: 16px 8px;
}

/* 日付 */

.achievement-year__date {
  color: #888;
  flex-shrink: 0;
  font-size: 1.4rem;
  white-space: nowrap;
  width: 130px;
}

/* テキスト（機関名：テーマ） */

.achievement-year__text {
  font-size: 1.5rem;
  line-height: 1.7;
}

/* 説明テキスト：ブロック表示してリンクを次の行に落とす */

.achievement-year__description {
  display: block;
}

/* 外部リンク */

.achievement-year__link {
  color: var(--color-accent);
  display: inline-block;
  font-size: 1.3rem;
  margin-top: 6px;
  text-underline-offset: 2px;
  word-break: break-all;
}

.achievement-year__link:hover,
.achievement-year__link:focus {
  opacity: 0.75;
}

/* 外部リンクアイコン（box-arrow-up-right）
   CSS マスクで currentColor を継承しリンク色に自動追従 */

.achievement-year__link::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8.636 3.5a.5.5 0 0 0-.5-.5H1.5A1.5 1.5 0 0 0 0 4.5v10A1.5 1.5 0 0 0 1.5 16h10a1.5 1.5 0 0 0 1.5-1.5V7.864a.5.5 0 0 0-1 0V14.5a.5.5 0 0 1-.5.5h-10a.5.5 0 0 1-.5-.5v-10a.5.5 0 0 1 .5-.5h6.636a.5.5 0 0 0 .5-.5z'/%3E%3Cpath d='M16 .5a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0 0 1h3.793L6.146 9.146a.5.5 0 1 0 .708.708L15 1.707V5.5a.5.5 0 0 0 1 0v-5z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  background-color: currentColor;
  content: '';
  display: inline-block;
  height: 0.85em;
  margin-left: 4px;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8.636 3.5a.5.5 0 0 0-.5-.5H1.5A1.5 1.5 0 0 0 0 4.5v10A1.5 1.5 0 0 0 1.5 16h10a1.5 1.5 0 0 0 1.5-1.5V7.864a.5.5 0 0 0-1 0V14.5a.5.5 0 0 1-.5.5h-10a.5.5 0 0 1-.5-.5v-10a.5.5 0 0 1 .5-.5h6.636a.5.5 0 0 0 .5-.5z'/%3E%3Cpath d='M16 .5a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0 0 1h3.793L6.146 9.146a.5.5 0 1 0 .708.708L15 1.707V5.5a.5.5 0 0 0 1 0v-5z'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-size: contain;
  vertical-align: middle;
  width: 0.85em;
}

/* ================================================================
   実績リスト モバイル（≤767px）
   ================================================================ */

@media (max-width: 767px) {
  .achievement-year__item {
    flex-direction: column;
    gap: 4px;
  }

  .achievement-year__date {
    width: auto;
  }
}


/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}