/* 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.
*/

*, *: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)
*/



main#main-content {
    padding: 80px 0 0 0;
}

@media screen and (max-width: 767px) {
    main#main-content {
        padding: 60px 0 0 0;
    }
}

/* 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 1rem;
}

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

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

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

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

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

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

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

/* Paragraphs */

p {
  font-size: 1rem;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

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

/* Lists */

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

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 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */

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

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}

/* Fields */

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

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

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

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* 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: 0.875rem;
  padding: 0.7rem;
  width: 100%;
  background-color: #F5F8FA;
  border-color: #CBD6E2;
  width: 100% !important;
}

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: 0.7rem 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.35rem;
}

/* 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;
}[data-hsfc-id=Renderer] .hsfc-Step .hsfc-Step__Content {
    padding-left: 0!important;
    padding-right: 0!important
}

.hsfc-FieldLabel__RequiredIndicator {
    color: #FD2A1F!important;
    font-weight: 700
}

[data-hsfc-id=Renderer] .hsfc-ErrorAlert {
    color: #FD2A1F!important
}

.hsfc-FieldLabel__RequiredIndicator:after {
    content: "*"
}

[data-hsfc-id=Renderer] .hsfc-RadioInput:checked:after {
    background-color: #2850DC!important
}

[data-hsfc-id=Renderer] .hsfc-CheckboxInput:checked {
    background-color: #2850DC!important;
    border-color: #2850DC!important
}

[data-hsfc-id=Renderer] .hsfc-CheckboxInput:checked:after {
    background-color: #fff!important
}

[data-hsfc-id=Renderer] .hsfc-Button {
    max-width: 352px;
    padding: 20px!important;
    width: 100%!important
}

[data-hsfc-id=Renderer] .hsfc-Button:not([disabled]):hover {
    background-color: #2850DC!important;
    transform: translate(0)!important
}

/* Headings and text */

form .actions {
  text-align: center;
}

.body-container form h2 {
  margin: 0;
  font-size: 14px;
}

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

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: 1rem !important;
}

/* Validation */

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

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

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

/* 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;
  padding: 14px 20px;
  background-color: #2850DC;
  color: #fff;
  border: 1px solid #2850DC;
  font-size: 20px;
  font-weight: bold;
}

/* 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.35rem 0.7rem;
    text-decoration: none;
    transition: background-color 0.3s;
  }



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


/* 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%;
}

/* 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;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    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;
  }
}

/* =========================================
   Studio Header Recreation CSS (v12 Wrapping Fix)
   ========================================= */

/* --- 1. 基本設定 --- */
:root {
  --s-font-jp: 'Zen Kaku Gothic New', sans-serif;
  --s-font-en: 'Open Sans', sans-serif;
  --s-color-main: #2850dc;   /* 青 */
  --s-color-text: #00143c;   /* 濃紺 */
  --s-color-bg-hover: #f3f6fb;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--s-font-jp);
  color: var(--s-color-text);
  background-color: #fff;
  transition: background-color 0.3s;
}

/* メニュー展開時はスクロール固定 */
body.mobile-menu-open {
  overflow: hidden;
}

/* Studio共通クラスのリセット */
.sd {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 0;
  margin: 0;
  padding: 0;
  text-decoration: none;
  background: transparent;
  transition: .3s cubic-bezier(.4,.4,0,1);
}

a.sd, button.sd { cursor: pointer; }
ul.sd, li.sd { list-style: none; }
img.sd { vertical-align: bottom; }
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  display: inline-block;
  white-space: nowrap;
}


/* --- 2. ヘッダー全体 --- */
.sd[data-s-4c20ed2d-48a2-4dc9-b71f-a371ac960c98] {
  background: #FFFFFF;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 85px;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: background-color 0.3s;
}

/* ★メニュー展開時はヘッダー背景も濃紺に */
body.mobile-menu-open .sd[data-s-4c20ed2d-48a2-4dc9-b71f-a371ac960c98] {
  background-color: var(--s-color-text);
  box-shadow: none;
  border-bottom: none;
}

/* コンテンツ内部レイアウト */
.sd[data-s-38060a53-45da-4f1f-80c2-7a9bbebcaa8f] {
  flex-direction: row !important;
  justify-content: flex-start !important;
  align-items: center;
  width: 100%;
  padding: 0 40px;
  gap: 40px;
}


/* --- 3. ロゴ画像 --- */
.sd[data-s-bde2a4fb-9c26-4b21-9000-9d51a6d5952f] {
  display: block !important;
  width: 120px !important;
  height: auto !important;
  flex-shrink: 0 !important;
  opacity: 1;
  z-index: 1001;
}
.sd[data-s-89b6a188-a483-4d28-b565-ec1be3c7d1db] {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  max-width: none !important;
  transition: filter 0.3s;
}

/* ★メニュー展開時はロゴを白く反転 */
body.mobile-menu-open .sd[data-s-89b6a188-a483-4d28-b565-ec1be3c7d1db] {
  filter: brightness(0) invert(1);
}


/* --- 4. ナビゲーションメニュー (PCレイアウト) --- */
.sd[data-s-e94333a2-cf41-4447-9760-c44ca5d52816] {
  flex: 1 !important;
  width: 100% !important;
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  align-items: center !important;
}

/* 左側メニュー群 */
.sd[data-s-0d6975d2-1e02-43fb-a42e-a2d0c652ca26] {
  display: flex !important;
  flex-direction: row !important;
  gap: 24px;
}

/* PCメニュー項目 */
.sd[data-s-93fda8c6-ce97-4acc-b3cd-07aa58ae81ee],
.sd[data-s-a32df322-e55b-4164-aa8a-b95d5aec13cc],
.sd[data-s-780050c3-e4aa-4b9e-84a8-69dc11e68067],
.sd[data-s-d67b6f2f-3e8a-4bc1-93d9-267bdbc68a9e],
.sd[data-s-5ef34c41-ecd6-4507-a60b-f9d2c44bf503],
.sd[data-s-abb5b756-30d6-4f14-afaa-024a52eda944],
.sd[data-s-8fb5e700-e9ba-4064-8e9b-e8639011ae97],
.sd[data-s-2f77d27b-01fd-417a-9746-339d1315add3],
.sd[data-s-74d0fe2d-ffef-4acb-8241-171238e6f7eb] {
  height: 30px;
  justify-content: center;
  overflow: visible;
  cursor: pointer;
}

/* テキストとアイコン横並び */
.sd[data-s-ffb0520e-2a23-4303-b8e4-ce0612d3229c],
.sd[data-s-e68ad4b3-46c3-4564-b4c5-7be3fcbb0046],
.sd[data-s-b8e3ab5b-4cb9-4e66-bddf-22683331a840],
.sd[data-s-cfffc0dc-365f-46f1-af36-1727fa43890d] {
  flex-direction: row !important;
  align-items: center;
  gap: 4px;
}

/* テキストスタイル */
.sd p[class*="text"], .sd a[class*="text"] {
  color: var(--s-color-text);
  font-family: var(--s-font-jp);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
  margin: 0;
}
.sd .icon.material-icons {
  font-size: 16px;
  color: var(--s-color-text);
}


/* --- 5. 右側ボタンエリア (PC) --- */
.sd[data-s-b8386804-2419-4c30-91ef-f30968a98da3] {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 16px !important;
}

.sd[data-s-7ae0d871-1968-4d76-80f1-0d32656811ac] a {
  color: var(--s-color-text) !important;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

/* お問い合わせボタン */
.sd[data-s-2fca03ba-b273-437c-925a-a3aabf967145] {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  overflow: hidden !important;
  background-color: #FFFFFF !important;
  border: 1px solid #00143c !important;
  border-radius: 4px !important;
  width: 150px !important;
  height: 40px !important;
  text-decoration: none !important;
  box-sizing: border-box !important;
  isolation: isolate;
}
.sd[data-s-2fca03ba-b273-437c-925a-a3aabf967145] .sd[data-s-24ad4568-3782-4eda-b1f7-9e7093265521] {
  display: block !important;
  position: absolute !important;
  top: 0;
  left: 0;
  height: 100% !important;
  width: 0% !important;
  background-color: #00143c !important;
  z-index: 1 !important;
  opacity: 1 !important;
  transition: width 0.3s cubic-bezier(0.4, 0.4, 0, 1) !important;
}
.sd[data-s-2fca03ba-b273-437c-925a-a3aabf967145] p {
  position: relative !important;
  z-index: 2 !important;
  color: #00143c !important;
  transition: color 0.3s !important;
}
.sd[data-s-2fca03ba-b273-437c-925a-a3aabf967145]:hover .sd[data-s-24ad4568-3782-4eda-b1f7-9e7093265521] {
  width: 100% !important;
}
.sd[data-s-2fca03ba-b273-437c-925a-a3aabf967145]:hover p {
  color: #FFFFFF !important;
}

/* 資料ダウンロードボタン */
.sd[data-s-30f40359-a44c-4b0c-896c-bb17711980fd] {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  background-color: #2850dc !important;
  border: 1px solid #2850dc !important;
  border-radius: 4px !important;
  width: 150px !important;
  height: 40px !important;
  text-decoration: none !important;
  transition: 0.3s !important;
}
.sd[data-s-30f40359-a44c-4b0c-896c-bb17711980fd]:hover {
  background-color: #1e3fb4 !important;
  border-color: #1e3fb4 !important;
}
.sd[data-s-30f40359-a44c-4b0c-896c-bb17711980fd] p {
  color: #FFFFFF !important;
  font-weight: 700 !important;
}


/* --- 6. ドロップダウン (PC) --- */
.sd[data-s-0496ef56-d86a-4b16-afa7-b825deba1b8e],
.sd[data-s-059e8b3e-f4ab-4909-bcb5-1eb0de7809c1],
.sd[data-s-89eac32b-2c9e-4147-b3c4-9859f675a8ec],
.sd[data-s-517ca8f7-da49-4a2f-bc3e-d132979f3bf0] {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 15px;
  z-index: 100;
  opacity: 0;
  transform: scale(0, 0);
  transform-origin: top left;
  transition-duration: 200ms;
  pointer-events: none;
}

.sd[data-s-57528f18-59e3-4752-bcef-88a476eaf532],
.sd[data-s-e239637b-40e4-4fe2-a1d9-a3ae60f2e0e8],
.sd[data-s-3ec0bfed-b680-4a2e-bd59-238b1d2c7a46],
.sd[data-s-298bcb0c-3e06-4867-bb2b-a55befbcd420] {
  background: #FFFFFF;
  border: 1px solid #f1f1f1;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
  width: 220px;
  padding: 8px 0;
  display: flex;
  flex-direction: column;
}
.sd[data-s-3ec0bfed-b680-4a2e-bd59-238b1d2c7a46] { width: 420px; }

/* PCホバー時表示 */
@media screen and (min-width: 841px) {
  .sd[data-s-93fda8c6-ce97-4acc-b3cd-07aa58ae81ee]:hover .sd[data-s-0496ef56-d86a-4b16-afa7-b825deba1b8e],
  .sd[data-s-d67b6f2f-3e8a-4bc1-93d9-267bdbc68a9e]:hover .sd[data-s-059e8b3e-f4ab-4909-bcb5-1eb0de7809c1],
  .sd[data-s-5ef34c41-ecd6-4507-a60b-f9d2c44bf503]:hover .sd[data-s-89eac32b-2c9e-4147-b3c4-9859f675a8ec],
  .sd[data-s-2f77d27b-01fd-417a-9746-339d1315add3]:hover .sd[data-s-517ca8f7-da49-4a2f-bc3e-d132979f3bf0] {
    opacity: 1;
    transform: scale(1, 1);
    pointer-events: auto;
  }
}

/* サブメニュー内リンク */
.sd[data-s-57528f18-59e3-4752-bcef-88a476eaf532] a,
.sd[data-s-e239637b-40e4-4fe2-a1d9-a3ae60f2e0e8] a,
.sd[data-s-3ec0bfed-b680-4a2e-bd59-238b1d2c7a46] a,
.sd[data-s-298bcb0c-3e06-4867-bb2b-a55befbcd420] a {
  display: flex !important;
  padding: 8px 16px;
  font-size: 14px;
  color: #333 !important;
  text-decoration: none;
}
@media screen and (min-width: 841px) {
  .sd[data-s-57528f18-59e3-4752-bcef-88a476eaf532] a:hover,
  .sd[data-s-e239637b-40e4-4fe2-a1d9-a3ae60f2e0e8] a:hover,
  .sd[data-s-3ec0bfed-b680-4a2e-bd59-238b1d2c7a46] a:hover,
  .sd[data-s-298bcb0c-3e06-4867-bb2b-a55befbcd420] a:hover {
    background: var(--s-color-bg-hover);
    color: var(--s-color-main) !important;
  }
}


/* --- 7. スマホ用ハンバーガー (右寄せ) --- */
.sd[data-s-0d5225e7-6966-469b-82a8-e30e1ab0a381] {
  display: none;
  width: 28px;
  height: 20px;
  flex-direction: column;
  justify-content: space-between;
  border: none;
  background: transparent;
  z-index: 1002;
  margin-left: auto !important; /* 右端に寄せる */
}
.sd[data-s-d98e6e46-34e5-4758-baff-1c7f9412d3fa],
.sd[data-s-1ff0649f-2606-4bc2-b4c0-d972c1e659c9],
.sd[data-s-ba68a6fe-bd33-495c-a1e0-dc90ed26aa91] {
  width: 100%;
  height: 2px;
  background: #00153c;
  display: block;
  transition: 0.3s;
  transform-origin: center;
}

/* ハンバーガー開閉アニメーション */
body.mobile-menu-open .sd[data-s-d98e6e46-34e5-4758-baff-1c7f9412d3fa] {
  background: #FFFFFF;
  transform: translateY(9px) rotate(45deg);
}
body.mobile-menu-open .sd[data-s-1ff0649f-2606-4bc2-b4c0-d972c1e659c9] {
  opacity: 0;
}
body.mobile-menu-open .sd[data-s-ba68a6fe-bd33-495c-a1e0-dc90ed26aa91] {
  background: #FFFFFF;
  transform: translateY(-9px) rotate(-45deg);
}


/* --- 8. レスポンシブ (PC/Tablet調整) --- */
@media screen and (max-width: 1080px) {
  .sd[data-s-38060a53-45da-4f1f-80c2-7a9bbebcaa8f] { padding: 0 24px; }
  .sd[data-s-e94333a2-cf41-4447-9760-c44ca5d52816] { gap: 16px; }
  .sd[data-s-2fca03ba-b273-437c-925a-a3aabf967145],
  .sd[data-s-30f40359-a44c-4b0c-896c-bb17711980fd] {
     width: auto !important;
     padding: 0 10px !important;
     min-width: auto !important;
  }
}


/* --- 9. スマホメニュー (840px以下 ★修正版) --- */
@media screen and (max-width: 840px) {
  /* ハンバーガー表示 */
  .sd[data-s-0d5225e7-6966-469b-82a8-e30e1ab0a381] { display: flex !important; }

  /* 通常時のメニュー非表示 */
  .sd[data-s-e94333a2-cf41-4447-9760-c44ca5d52816] {
    display: none !important;
  }

  /* ★メニュー展開時 (.mobile-menu-open) */
  body.mobile-menu-open .sd[data-s-e94333a2-cf41-4447-9760-c44ca5d52816] {
    display: flex !important;
    flex-direction: column !important;
    position: fixed;
    top: 60px; /* ヘッダー高さ */
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background-color: var(--s-color-text); /* 濃紺 */
    padding: 30px 40px 100px;
    overflow-y: auto;
    justify-content: flex-start !important;
    gap: 0px !important;
    z-index: 999;
  }

  /* メニューリスト */
  body.mobile-menu-open .sd[data-s-0d6975d2-1e02-43fb-a42e-a2d0c652ca26] {
    flex-direction: column !important;
    width: 100%;
    gap: 0px;
  }

  /* メニュー項目 (大見出し) */
  body.mobile-menu-open .sd[data-s-93fda8c6-ce97-4acc-b3cd-07aa58ae81ee],
  body.mobile-menu-open .sd[data-s-a32df322-e55b-4164-aa8a-b95d5aec13cc],
  body.mobile-menu-open .sd[data-s-780050c3-e4aa-4b9e-84a8-69dc11e68067],
  body.mobile-menu-open .sd[data-s-d67b6f2f-3e8a-4bc1-93d9-267bdbc68a9e],
  body.mobile-menu-open .sd[data-s-5ef34c41-ecd6-4507-a60b-f9d2c44bf503],
  body.mobile-menu-open .sd[data-s-abb5b756-30d6-4f14-afaa-024a52eda944],
  body.mobile-menu-open .sd[data-s-8fb5e700-e9ba-4064-8e9b-e8639011ae97],
  body.mobile-menu-open .sd[data-s-2f77d27b-01fd-417a-9746-339d1315add3],
  body.mobile-menu-open .sd[data-s-74d0fe2d-ffef-4acb-8241-171238e6f7eb] {
    height: auto;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 16px 0;
    width: 100%;
    border-bottom: none;
  }

  /* テキスト色白 & 折り返し許可 */
  body.mobile-menu-open .sd p[class*="text"],
  body.mobile-menu-open .sd a[class*="text"] {
    color: #FFFFFF !important;
    font-size: 16px;
    margin: 0;
    white-space: normal !important; /* ★折り返し許可 */
    line-height: 1.5;
  }
  body.mobile-menu-open .icon.material-icons {
    display: none;
  }

  /* --- サブメニュー (インデント付き・白文字) --- */
  body.mobile-menu-open .sd[data-s-0496ef56-d86a-4b16-afa7-b825deba1b8e],
  body.mobile-menu-open .sd[data-s-059e8b3e-f4ab-4909-bcb5-1eb0de7809c1],
  body.mobile-menu-open .sd[data-s-89eac32b-2c9e-4147-b3c4-9859f675a8ec],
  body.mobile-menu-open .sd[data-s-517ca8f7-da49-4a2f-bc3e-d132979f3bf0] {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    padding: 0;
    width: 100%;
    background: transparent;
    border: none;
    box-shadow: none;
  }
  
  /* サブメニューの白枠を解除 */
  body.mobile-menu-open .sd[data-s-57528f18-59e3-4752-bcef-88a476eaf532],
  body.mobile-menu-open .sd[data-s-e239637b-40e4-4fe2-a1d9-a3ae60f2e0e8],
  body.mobile-menu-open .sd[data-s-3ec0bfed-b680-4a2e-bd59-238b1d2c7a46],
  body.mobile-menu-open .sd[data-s-298bcb0c-3e06-4867-bb2b-a55befbcd420] {
    background: transparent;
    border: none;
    box-shadow: none;
    width: 100%;
    padding: 0;
    gap: 0;
  }
  /* サブメニューリンク (インデントあり・折り返し許可) */
  body.mobile-menu-open .sd[data-s-57528f18-59e3-4752-bcef-88a476eaf532] a,
  body.mobile-menu-open .sd[data-s-e239637b-40e4-4fe2-a1d9-a3ae60f2e0e8] a,
  body.mobile-menu-open .sd[data-s-3ec0bfed-b680-4a2e-bd59-238b1d2c7a46] a,
  body.mobile-menu-open .sd[data-s-298bcb0c-3e06-4867-bb2b-a55befbcd420] a {
    color: #FFFFFF !important;
    font-size: 14px;
    padding: 8px 0 8px 24px !important; /* 左インデント */
    font-weight: normal;
    white-space: normal !important; /* ★折り返し許可 */
    line-height: 1.6;
  }
  /* ホバー時も透明 */
  body.mobile-menu-open .sd[data-s-57528f18-59e3-4752-bcef-88a476eaf532] a:hover,
  body.mobile-menu-open .sd[data-s-e239637b-40e4-4fe2-a1d9-a3ae60f2e0e8] a:hover,
  body.mobile-menu-open .sd[data-s-3ec0bfed-b680-4a2e-bd59-238b1d2c7a46] a:hover,
  body.mobile-menu-open .sd[data-s-298bcb0c-3e06-4867-bb2b-a55befbcd420] a:hover {
    background: transparent;
    opacity: 0.7;
  }


  /* --- ボタンエリア (下部に配置) --- */
  body.mobile-menu-open .sd[data-s-b8386804-2419-4c30-91ef-f30968a98da3] {
    flex-direction: column-reverse !important; /* 資料DLが上、お問い合わせが下 */
    align-items: center !important;
    width: 100%;
    margin-top: 40px;
    margin-left: 0 !important;
    gap: 16px !important;
  }

  /* ログインリンクを非表示 */
  body.mobile-menu-open .sd[data-s-7ae0d871-1968-4d76-80f1-0d32656811ac] {
    display: none !important;
  }
  
  /* ボタン幅を168pxに固定 */
  body.mobile-menu-open .sd[data-s-2fca03ba-b273-437c-925a-a3aabf967145], /* お問い合わせ */
  body.mobile-menu-open .sd[data-s-30f40359-a44c-4b0c-896c-bb17711980fd] /* 資料DL */
  {
    width: 168px !important; /* ★幅固定 */
    max-width: 100% !important;
    height: 48px !important;
    margin: 0 auto !important; /* 中央寄せ */
  }
  
  /* お問い合わせボタン (透明背景・白枠) */
  body.mobile-menu-open .sd[data-s-2fca03ba-b273-437c-925a-a3aabf967145] {
    background-color: transparent !important;
    border: 1px solid #FFFFFF !important;
  }
  body.mobile-menu-open .sd[data-s-2fca03ba-b273-437c-925a-a3aabf967145] p {
    color: #FFFFFF !important;
  }
  /* 資料DLボタン (青背景・白枠なし) */
  body.mobile-menu-open .sd[data-s-30f40359-a44c-4b0c-896c-bb17711980fd] {
    background-color: var(--s-color-main) !important;
    border: 1px solid var(--s-color-main) !important;
  }
  body.mobile-menu-open .sd[data-s-30f40359-a44c-4b0c-896c-bb17711980fd] p {
    color: #FFFFFF !important;
  }

}

@media screen and (max-width: 540px) {
  .sd[data-s-4c20ed2d-48a2-4dc9-b71f-a371ac960c98] { height: 60px; }
  .sd[data-s-38060a53-45da-4f1f-80c2-7a9bbebcaa8f] { padding: 0 16px; }
  
  /* スマホメニュー開始位置調整 */
  body.mobile-menu-open .sd[data-s-e94333a2-cf41-4447-9760-c44ca5d52816] {
    top: 60px;
    height: calc(100vh - 60px);
    padding: 20px 24px 80px;
  }
}
/* =========================================
Footer & Contacts Section CSS (Source Exact)
========================================= */

/* --- 共通変数 (ヘッダーと共通の場合は削除可) --- */
:root {
    --s-font-jp: 'Zen Kaku Gothic New', sans-serif;
    --s-font-en: 'Open Sans', sans-serif;
    --s-color-main: #2850dc;
    --s-color-text: #00143c;
}

/* --- コンタクトセクション (紺色エリア) --- */
.sd[data-s-174f8aea-caef-4e4e-b11a-3e8ecf3c4c96] {
    background-color: #00153c;
    padding: 60px 32px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    color: #FFFFFF;
}

/* コンテンツ幅 */
.sd[data-s-46c96eb3-309d-426f-b03e-a2a144ac62c1] {
    width: 880px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

/* 見出し */
.sd[data-s-6117d41b-0e23-4f5d-bd2d-b29c0a6f735b] {
    font-family: var(--s-font-jp);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    margin: 0;
}

/* 3カラムコンテナ */
.sd[data-s-e53ad7a7-49d2-4674-a48b-d514b054e83b] {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 60px;
    width: 100%;
}

/* 各カラム */
.sd[data-s-42a5d339-00c3-4f81-81fc-160411563f97],
.sd[data-s-cb3e1040-2a72-494b-ab11-7abdf63d92be],
.sd[data-s-0b07bdee-7775-4c57-9c71-bfb524995e1e] {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    flex: none;
    width: calc(33.33% - 40px); /* 60px gap / 3 */
}

/* アイコン+テキスト */
.sd[data-s-88d1ac4a-5393-4165-b974-44b8b497d553],
.sd[data-s-dcaf41c7-7c6c-4819-97fe-91fc40350f40],
.sd[data-s-c4878618-a058-4931-9f55-18919108a985] {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

/* 画像 */
.sd[data-s-8be32284-760c-4be8-8e2b-d1b7fd12528d],
.sd[data-s-80a4bd7d-4f56-4fb0-8cb0-6bd75046ead7],
.sd[data-s-5be98e17-5453-40c2-a0b6-659965816923] {
    width: 80px;
    height: auto;
}

/* テキストスタイル */
.sd[data-s-16b9118c-21fe-49eb-b307-a693b257a81a],
.sd[data-s-99b57c82-0320-4f0c-9c2d-7449e6952ca5],
.sd[data-s-93a2f066-dac9-478f-80e1-d9e21248b4e3] {
    font-family: var(--s-font-jp);
    font-size: 26px;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    margin: 0;
}
.sd[data-s-ec2bd4ad-a7e7-4f8c-9e26-438b8fba4dcf],
.sd[data-s-033b0266-59ef-45a3-afaf-cb373ec2d4ee],
.sd[data-s-5352d344-2fc4-4409-9977-cba0cd992df9] {
    font-family: var(--s-font-jp);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

/* --- コンタクトエリアのボタン設定 (アニメーション追加版) --- */

/* ボタン共通設定 */
.sd[data-s-fc19e54a-604a-4b60-8b90-0e7315038f8c], /* 資料DL */
.sd[data-s-0d996440-5892-47a8-abc1-3e5b2e3ee544], /* お問い合わせ */
.sd[data-s-8ca61a09-f666-46da-8d83-e5326ba83ac2]  /* 無料デモ */
{
    width: 100%;
    height: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    box-sizing: border-box;

    /* アニメーション用の基点 */
    position: relative;
    overflow: hidden; /* はみ出した背景を隠す */
    z-index: 1; /* テキストを上に表示 */
    isolation: isolate;
    transition: border-color 0.3s;
}

@media screen and (max-width: 540px) {
    .sd[data-s-fc19e54a-604a-4b60-8b90-0e7315038f8c], /* 資料DL */
    .sd[data-s-0d996440-5892-47a8-abc1-3e5b2e3ee544], /* お問い合わせ */
    .sd[data-s-8ca61a09-f666-46da-8d83-e5326ba83ac2]  /* 無料デモ */
    {
        width: 300px;
    }
}

/* --- 1. 資料ダウンロード (青背景・変化なし) --- */
.sd[data-s-fc19e54a-604a-4b60-8b90-0e7315038f8c] {
    background-color: #2850dc;
    border: 1px solid #2850dc;
    transition: 0.3s;
}
.sd[data-s-fc19e54a-604a-4b60-8b90-0e7315038f8c]:hover {
    background-color: #1e3fb4;
    border-color: #1e3fb4;
}


/* --- 2. お問い合わせ・無料デモ (白枠 + アニメーション) --- */
.sd[data-s-0d996440-5892-47a8-abc1-3e5b2e3ee544],
.sd[data-s-8ca61a09-f666-46da-8d83-e5326ba83ac2] {
    background-color: transparent;
    border: 1px solid #FFFFFF;
}

/* アニメーションする白い背景 (擬似要素で作成) */
.sd[data-s-0d996440-5892-47a8-abc1-3e5b2e3ee544]::before,
.sd[data-s-8ca61a09-f666-46da-8d83-e5326ba83ac2]::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 0%; /* 初期状態は幅0 */
    height: 100%;
    background-color: #FFFFFF;
    z-index: -1; /* テキストの後ろに配置 */
    transition: width 0.3s cubic-bezier(0.4, 0.4, 0, 1); /* スルッと伸びる動き */
}

/* ホバー時の挙動 */
/* 1. 背景を幅いっぱいに伸ばす */
.sd[data-s-0d996440-5892-47a8-abc1-3e5b2e3ee544]:hover::before,
.sd[data-s-8ca61a09-f666-46da-8d83-e5326ba83ac2]:hover::before {
    width: 100%;
}
/* 2. ボーダー色も白のまま維持 (透過を防ぐ) */
.sd[data-s-0d996440-5892-47a8-abc1-3e5b2e3ee544]:hover,
.sd[data-s-8ca61a09-f666-46da-8d83-e5326ba83ac2]:hover {
    border-color: #FFFFFF;
    opacity: 1 !important;
}


/* --- テキスト色の制御 --- */

/* 通常時のテキスト色 (白) */
.sd[data-s-b822fc27-1fc3-4463-8d1b-8ef35d088a56], /* 資料DLの文字 */
.sd[data-s-8b43f76e-00a7-4572-aedc-ad216d25f32a], /* お問い合わせの文字 */
.sd[data-s-84a1e5e3-0174-4b6a-a3e2-c9e6a4f353da]  /* 無料デモの文字 */
{
    font-family: var(--s-font-jp);
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    transition: color 0.3s; /* 色変化も滑らかに */
    position: relative;
    z-index: 2;
}

/* ホバー時のテキスト色反転 (白枠ボタンのみ紺色へ) */
.sd[data-s-0d996440-5892-47a8-abc1-3e5b2e3ee544]:hover p,
.sd[data-s-8ca61a09-f666-46da-8d83-e5326ba83ac2]:hover p {
    color: #00153c !important;
}

/* ボタン内テキスト */
.sd[data-s-b822fc27-1fc3-4463-8d1b-8ef35d088a56],
.sd[data-s-8b43f76e-00a7-4572-aedc-ad216d25f32a],
.sd[data-s-84a1e5e3-0174-4b6a-a3e2-c9e6a4f353da] {
    color: #FFFFFF !important;
    font-family: var(--s-font-jp);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}


/* --- フッター本体 --- */
.sd[data-s-92e55061-d80d-4b73-be36-b691ce86f5ae] {
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* 上部 (ロゴ・リンクエリア) */
.sd[data-s-0ce0d2e2-54ce-4c9d-8aea-6ba478ad8f4d] {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 60px 32px;
    gap: 50px;
    width: 100%;
    max-width: 100%; /* 元サイト仕様 */
}

/* 左側：ロゴ群 */
.sd[data-s-1302db8d-8232-43f2-a460-6125d16d0ad6] {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}
.sd[data-s-ba831317-30bf-4f46-b590-ee596cd33bf0] {
    width: 180px;
}
.sd[data-s-73d5d5f1-df6c-4682-b0e3-5b5bb6492b42] {
    width: 180px;
}
/* モバイル用ISMS */
.sd[data-s-aac1395b-be62-480e-be42-58a00e31ccab] {
    display: none;
}

/* 右側：リンク集コンテナ */
.sd[data-s-eb9e9bf2-6547-4cd6-9585-2bf07d61dbf2] {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 50px;
    flex: none;
    width: auto;
}

/* リンクカラム */
.sd[data-s-8a9f3a82-e0f3-40d2-a078-4f591c96e3e0],
.sd[data-s-dfb8255f-c9f3-48e1-a85d-f62c6e526bb1],
.sd[data-s-a2962cbf-a8f3-4bef-8d92-305b5323dd88],
.sd[data-s-00c03393-52ed-4944-8dd9-e6d23a638640],
.sd[data-s-482dbfd8-2563-4e6f-921c-5c2d0b46c418],
.sd[data-s-2b6ea8a7-360c-469d-80e6-e494f2d5312c] {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    width: auto;
}

/* リンクヘッダー */
.sd[data-s-52c80ae3-3463-4767-95d5-30a49e1df8fa],
.sd[data-s-93338edc-8060-402d-8950-aee5e37cb2ad],
.sd[data-s-19bfdb2b-0a21-499c-b96f-7cd74bd656d0],
.sd[data-s-083db302-2da2-44c5-8b4c-75ca3bc69eed],
.sd[data-s-797db493-dbc6-4f75-a37b-db79bec65dfa],
.sd[data-s-70770207-f74c-45a9-9a22-960f30ca7cd8] {
    color: #333;
    font-family: var(--s-font-jp);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    margin: 0;
    list-style: none;
}

/* リンク */
.sd[data-s-8a9f3a82-e0f3-40d2-a078-4f591c96e3e0] a,
.sd[data-s-dfb8255f-c9f3-48e1-a85d-f62c6e526bb1] a,
.sd[data-s-a2962cbf-a8f3-4bef-8d92-305b5323dd88] a,
.sd[data-s-00c03393-52ed-4944-8dd9-e6d23a638640] a,
.sd[data-s-482dbfd8-2563-4e6f-921c-5c2d0b46c418] a,
.sd[data-s-2b6ea8a7-360c-469d-80e6-e494f2d5312c] a {
    color: #333;
    font-family: var(--s-font-jp);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    text-decoration: none;
    transition: opacity 0.6s;
}
.sd a:hover { opacity: 0.6; }


/* 下部 (Copyright) */
.sd[data-s-cd6fa442-7547-477a-9b04-d77438f98f35] {
    background-color: #00153c;
    padding: 24px 32px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.sd[data-s-49c91e7f-c017-4b3e-9196-24ac31f1ef01] {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
}
.sd[data-s-49c91e7f-c017-4b3e-9196-24ac31f1ef01] a {
    color: #FFFFFF;
    font-family: var(--s-font-jp);
    font-size: 14px;
    text-decoration: none;
    font-weight: normal;
}

.sd[data-s-5a6870bf-e6ea-40ec-b968-571044d58c30] {
    color: #FFFFFF !important;
    font-family: var(--s-font-jp);
    font-size: 14px;
    font-weight: 400 !important;
    text-align: center;
}


/* =========================================
Responsive (840px / 540px)
========================================= */

@media screen and (max-width: 840px) {
    /* --- Contacts Section --- */
    .sd[data-s-6117d41b-0e23-4f5d-bd2d-b29c0a6f735b] { display: none; } /* 見出し非表示 */

    .sd[data-s-e53ad7a7-49d2-4674-a48b-d514b054e83b] {
        flex-direction: column;
        gap: 60px;
    }
    .sd[data-s-42a5d339-00c3-4f81-81fc-160411563f97],
    .sd[data-s-cb3e1040-2a72-494b-ab11-7abdf63d92be],
    .sd[data-s-0b07bdee-7775-4c57-9c71-bfb524995e1e] {
        width: 100%;
        max-width: 766px;
    }
    /* アイコン非表示等の調整が元ソースにある可能性 */


    /* --- Footer Section --- */
    .sd[data-s-0ce0d2e2-54ce-4c9d-8aea-6ba478ad8f4d] {
        flex-direction: column;
        gap: 50px;
        padding: 60px 32px;
    }
    .sd[data-s-eb9e9bf2-6547-4cd6-9585-2bf07d61dbf2] {
        gap: 32px;
    }

    .sd[data-s-ede8bab8-76f1-43d7-a793-813a1fccd7b0] { display: none; } /* PC ISMS */
    .sd[data-s-aac1395b-be62-480e-be42-58a00e31ccab] { display: flex; } /* Mobile ISMS */

    .sd[data-s-cd6fa442-7547-477a-9b04-d77438f98f35] {
        flex-direction: column-reverse; /* Copyrightが下 */
        gap: 40px;
        padding: 24px 32px;
    }
    .sd[data-s-49c91e7f-c017-4b3e-9196-24ac31f1ef01] {
        justify-content: center;
        gap: 40px;
    }
}

@media screen and (max-width: 540px) {
    /* --- Contacts --- */
    .sd[data-s-174f8aea-caef-4e4e-b11a-3e8ecf3c4c96] {
        padding: 60px 16px;
    }
    .sd[data-s-e53ad7a7-49d2-4674-a48b-d514b054e83b] {
        gap: 60px;
    }

    /* テキストサイズ調整 */
    .sd[data-s-16b9118c-21fe-49eb-b307-a693b257a81a],
    .sd[data-s-99b57c82-0320-4f0c-9c2d-7449e6952ca5],
    .sd[data-s-93a2f066-dac9-478f-80e1-d9e21248b4e3] {
        font-size: 18px;
    }

    /* --- Footer --- */
    .sd[data-s-0ce0d2e2-54ce-4c9d-8aea-6ba478ad8f4d] {
        padding: 60px 16px;
    }

    /* リンク集を2列表示にする計算式 (元ソースより) */
    .sd[data-s-8a9f3a82-e0f3-40d2-a078-4f591c96e3e0],
    .sd[data-s-dfb8255f-c9f3-48e1-a85d-f62c6e526bb1],
    .sd[data-s-a2962cbf-a8f3-4bef-8d92-305b5323dd88],
    .sd[data-s-00c03393-52ed-4944-8dd9-e6d23a638640],
    .sd[data-s-482dbfd8-2563-4e6f-921c-5c2d0b46c418],
    .sd[data-s-2b6ea8a7-360c-469d-80e6-e494f2d5312c] {
        /* 50% - gapの半分(5px) */
        width: calc(50% - 5px); 
        flex: none;
    }
    .sd[data-s-eb9e9bf2-6547-4cd6-9585-2bf07d61dbf2] {
        gap: 32px 10px; /* 行間32px, 列間10px */
    }

    .sd[data-s-cd6fa442-7547-477a-9b04-d77438f98f35] {
        padding: 24px 16px;
        gap: 20px;
    }
    .sd[data-s-49c91e7f-c017-4b3e-9196-24ac31f1ef01] {
        gap: 20px;
    }
}

/* 説明文 */
.sd[data-s-ec2bd4ad-a7e7-4f8c-9e26-438b8fba4dcf],
.sd[data-s-033b0266-59ef-45a3-afaf-cb373ec2d4ee],
.sd[data-s-5352d344-2fc4-4409-9977-cba0cd992df9] {
    color: #FFFFFF !important; /* 完全な白にする */
    font-family: var(--s-font-jp);
    font-weight: normal !important;
    font-size: 13px;
    line-height: 1.8;
    text-align: center;
    margin: 0;
    opacity: 1 !important; /* 透明度をなくす */

    /* 折り返し設定 */
    white-space: normal !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%; /* 親要素からはみ出さない */
}

@media screen and (max-width: 540px) {
    .sd[data-s-cd6fa442-7547-477a-9b04-d77438f98f35] {
        align-content: center;
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        padding: 24px 16px;
        --gap-h-cd6fa442-7547-477a-9b04-d77438f98f35: 20px;
        --gap-v-cd6fa442-7547-477a-9b04-d77438f98f35: 20px;
    }
}

.sd[data-s-49c91e7f-c017-4b3e-9196-24ac31f1ef01] {
    align-content: flex-start;
    align-items: flex-start;
    background: rgba(0, 0, 0, 0.0);
    flex: none;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
    height: auto;
    justify-content: flex-start;
    width: auto;
    --gap-h-49c91e7f-c017-4b3e-9196-24ac31f1ef01: 40px;
    --gap-v-49c91e7f-c017-4b3e-9196-24ac31f1ef01: 40px;
    --gap-uuid: 49c91e7f -c017-4b3e-9196-24ac31f1ef01;
    max-width: 100%;
}

.sd[data-s-ce4a71f2-6604-4aeb-b441-43dbe4676ae7] {
    color: #FFFFFF;
    font-family: var(--s-font-c0ad8a84);
    font-size: 14px;
    font-weight: 400;
    height: auto;
    line-height: 1.6;
    text-align: left;
    transition-duration: 600ms;
    width: auto;
    max-width: 100%;
    justify-content: flex-start;
}

.sd[data-s-951c9c6d-6c96-4681-b0f3-60d9d266f4d3] {
    display: none;
}