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



/* 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;
}
button,
.button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.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;
}
/* =============================================
HubSpot Form (HSFC) — catalog2026
============================================= */
/* ---- フォーム全体 ---- */
.hsfc-Form {
  width: 100%;
  margin: 80px auto 0 auto!important;
}

.hsfc-Step__Content {
  display: flex;
  flex-direction: column;
  padding: 0!important;
}
/* ---- 行レイアウト ---- */
.hsfc-Row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.hsfc-Row {
  margin-bottom: 40px!important;
}
.hsfc-Row:has(> h4), 
.hsfc-Row:has(> div[data-hsfc-id="CheckboxField"]) {
  margin-bottom: 0!important;
}

/* 2フィールドある行は自動で2列 */
.hsfc-Row:has(> div:nth-child(2)) {
  grid-template-columns: 1fr 1fr;
}
/* ---- 見出し ---- */
.hsfc-Row h4[data-hsfc-id="Heading"] {
  font-size: 24px;
  font-weight: 400;
  line-height: 2;
  margin: 40px 0 16px 0;
  color: #0B163E;
}
/* ---- ラベル ---- */
.hsfc-FieldLabel {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px!important;
  font-weight: 700;
  color: #0B163E!important;
  line-height: 1.5;
  margin-bottom: 12px!important;
  cursor: default;
}

/*必須マーク*/
.hsfc-FieldLabel__RequiredIndicator {
  font-size: 12px;
  font-weight: 400;
  color: #DB0000!important;
  line-height: 1.5;
  padding-left: 20px;
  vertical-align: middle;
}

/* ---- テキスト・メール・テル共通インプット ---- */
.hsfc-TextInput {
  display: block;
  width: 100%;
  height: 56px;
  padding: 0 16px;
  font-size: 16px;
  color: #0B163E!important;
  background-color: #FFFFFF!important;
  border: 1px solid #E5EAEE!important;
  border-radius: 0;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}

.hsfc-TextInput::placeholder {
  color: #A3A5AC!important;
  font-size: 16px!important;
}

.hsfc-TextInput:focus {
  border-color: #1E4DC6;
  outline: none;
}

/* ---- 電話番号フィールド ---- */
.hsfc-PhoneInput {
  display: flex;
  align-items: stretch;
  height: 56px;
  border: 1px solid #BEC9D1;
  background-color: #FFFFFF;
  transition: border-color 0.2s;
  position: relative;
}

.hsfc-PhoneInput:focus-within {
  border-color: #1E4DC6;
}

/* 国旗＋キャレット */
.hsfc-PhoneInput__FlagAndCaret {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 10px 0 12px;
  border-right: 1px solid #BEC9D1;
  cursor: pointer;
  flex-shrink: 0;
  user-select: none;
}

.hsfc-PhoneInput__FlagAndCaret__Flag {
  font-size: 18px;
  line-height: 1;
}

.hsfc-PhoneInput__FlagAndCaret__Caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #0B163E;
  flex-shrink: 0;
}

/* 電話インプット（外枠はPhoneInputが担う） */
.hsfc-PhoneInput .hsfc-TextInput {
  border: none;
  height: 100%;
  flex: 1;
  min-width: 0;
  padding-left: 12px;
}

.hsfc-PhoneInput .hsfc-TextInput:focus {
  border: none;
  outline: none;
}

/* 国別ドロップダウン */
.hsfc-DropdownOptions {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  z-index: 200;
  background: #FFFFFF;
  border: 1px solid #BEC9D1;
  max-height: 240px;
  overflow-y: auto;
  width: 280px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.hsfc-DropdownOptions__Search {
  padding: 8px;
  border-bottom: 1px solid #BEC9D1;
}

.hsfc-DropdownOptions__Search .hsfc-TextInput {
  height: 36px;
  font-size: 14px;
}

.hsfc-DropdownOptions__List {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hsfc-DropdownOptions__List__ListItem {
  padding: 10px 16px;
  font-size: 14px;
  cursor: pointer;
  color: #0B163E;
}

.hsfc-DropdownOptions__List__ListItem:hover,
.hsfc-DropdownOptions__List__ListItem--selected {
  background-color: #EEF2FF;
  color: #1E4DC6;
}

/* ---- 郵便番号行（インプット + yubinbangoボタン） ---- */
/* JS で input[name="2-230782011/zip_code"] の直後に .js-zip-search-btn を注入する */
.hsfc-TextField:has([name="2-230782011/zip_code"]) {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0 16px;
}

.hsfc-TextField:has([name="2-230782011/zip_code"]) .hsfc-FieldLabel {
  width: 100%;
  flex: none;
}

.hsfc-TextField:has([name="2-230782011/zip_code"]) .hsfc-TextInput {
  width: 50%;
  min-width: 0;
}

/* 住所を自動入力するボタン（JS注入） */
.js-zip-search-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 10px;
  margin-bottom: 10px;
  background-color: #1E4DC6;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
  border: none;
  border-radius: 0;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: opacity 0.2s;
  font-family: inherit;
}

.js-zip-search-btn:hover {
  opacity: 0.8;
}

/* ---- セクション見出し ---- */
.hsfc-Heading {
  font-size: 18px;
  font-weight: 700;
  color: #0B163E;
  margin: 0;
  padding: 0;
  border: none;
}

/* ---- リッチテキスト ---- */
.hsfc-RichText {
  font-size: 14px;
  color: #0B163E;
  line-height: 1.8;
}

.hsfc-RichText ul {
  padding-left: 1.5em;
  margin: 0;
}

.hsfc-RichText li {
  margin-bottom: 8px;
}

.hsfc-RichText p {
  margin: 0;
  line-height: 1.8;
}

/* ---- チェックボックス ---- */
.hsfc-CheckboxField {
  display: flex;
  justify-content: center;
}
.hsfc-CheckboxField .hsfc-FieldLabel {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  margin-bottom: 0;
  font-weight: 400;
}

.hsfc-CheckboxInput {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: #1E4DC6;
  margin: 0;
}

/* ---- バリデーション ---- */
.hsfc-TextInput[aria-invalid="true"] {
  border-color: #E8003D;
}

.hsfc-PhoneInput:has([aria-invalid="true"]) {
  border-color: #E8003D;
}

/* ---- 送信ボタン行 ---- */
.hsfc-NavigationRow {
  margin-top: 8px;
}

.hsfc-NavigationRow__Alerts {
  margin-bottom: 12px;
  font-size: 14px;
  color: #E8003D;
}

.hsfc-NavigationRow__Buttons {
  display: flex !important;
  justify-content: center !important;
}

.hsfc-Button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 480px !important;
  max-width: 100% !important;
  height: 56px !important;
  padding: 0 40px !important;
  background-color: #1E4DC6 !important;
  color: #FFFFFF !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  border: none !important;
  border-radius: 0 !important;
  cursor: pointer !important;
  text-align: center !important;
  transition: opacity 0.2s !important;
  font-family: inherit !important;
}

.hsfc-Button:hover {
  opacity: 0.8;
}

.hsfc-Button:disabled,
.hsfc-Button[aria-busy="true"] {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ---- SP ---- */
@media screen and (max-width: 600px) {
  .hsfc-Step__Content {
    gap: 40px;
  }
  .hsfc-Row {
    margin-bottom: 0px!important;
  }
  .hsfc-Row:has(> div:nth-child(2)) {
    grid-template-columns: 1fr;
  }
  .hsfc-TextField:has([name="2-230782011/zip_code"]) .hsfc-TextInput {
  width: 100%;
}
  .js-zip-search-btn {
    padding: 0 14px;
    margin: 10px 0 0 0;
    font-size: 13px;
  }
}

/* =============================================
HubSpot Form (旧 hs-form) — 互換スタイル
============================================= */

.hs-form-field {
  margin-bottom: 32px;
}

form label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: #0B163E;
  margin-bottom: 8px;
}

.hs-form-required {
  font-size: 12px;
  font-weight: 700;
  color: #E8003D;
}

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 select,
form textarea {
  display: block;
  width: 100%;
  /*   height: 56px; */
  padding: 20px!important;
  font-size: 16px;
  color: #0B163E;
  background-color: #FFFFFF;
  border: 1px solid #BEC9D1;
  border-radius: 0;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
}

form textarea {
  height: auto;
  min-height: 120px;
  padding: 14px 16px;
  resize: vertical;
}

form select {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%231E4DC6' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 48px;
  cursor: pointer;
}

form fieldset {
  max-width: 100% !important;
  padding: 0;
  border: none;
}

fieldset.form-columns-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

fieldset.form-columns-2 .hs-form-field {
  margin-bottom: 0;
  width: 100% !important;
}

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

form .inputs-list > li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0;
}

form input[type=checkbox],
form input[type=radio] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #1E4DC6;
  flex-shrink: 0;
}

form input[type=file] {
  background-color: transparent;
  border: none;
  padding: 0;
  height: auto;
}

.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;
}

form .hs-richtext,
form .hs-richtext p {
  font-size: 14px;
  margin: 0 0 16px;
  color: #0B163E;
}

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

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

.grecaptcha-badge {
  margin: 0 auto;
}

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

.hs-error-msgs {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
}

.hs-error-msg {
  font-size: 12px;
  color: #E8003D;
}

.hs-submit .actions {
  margin-top: 40px;
}

form input[type=submit].hs-button,
.hs-button.primary {
  display: block;
  width: 100%;
  height: 56px;
  padding: 0;
  background-color: #1E4DC6;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.2s;
}

form input[type=submit].hs-button:hover,
.hs-button.primary:hover {
  opacity: 0.8;
}

/* カタログ選択に戻る */
.link_wrapper {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.return_link {
  display: inline-flex;
  align-items: center;
  color: #1E4DC6;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.25s ease;
}
.return_link i {
  display: inline-block;
  width: 18px;
  height: 21px;
  background-image: url('https://50905214.fs1.hubspotusercontent-na2.net/hubfs/50905214/image/icon/icon_arrow-return.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0; /* 画面が狭くなったときにアイコンが潰れるのを防ぐ */
  margin-right: 10px;
}
@media screen and (max-width: 600px) {
  fieldset.form-columns-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  fieldset.form-columns-2 .hs-form-field {
    margin-bottom: 32px;
  }

  fieldset.form-columns-2 .hs-form-field:last-child {
    margin-bottom: 0;
  }
}


.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;
}

/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  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
*/

.global_header {
  background-color: #ffffff;
  width: 100%;
  font-family: 'Lato', sans-serif;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: transform 0.3s ease;
}

.body-container-wrapper {
  padding-top: 108px;
}

.global_header.is-hidden {
  transform: translateY(-100%);
}

.header_inner {
  max-width: 1586px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  height: 108px;
  position: relative;
  z-index: 999;
}

/* ====== ユーティリティナビ行（上段） ====== */
.header_utility_row {
  display: flex;
  justify-content: flex-end;
  padding-top: 14px;
}

.utility_nav_list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 20px;
}

.utility_nav_list a {
  text-decoration: none;
  color: #333;
  font-size: 12px;
  transition: color 0.2s;
}

.utility_nav_list a:hover {
  color: #061448;
}

/* ====== メイン行（下段：ロゴ＋ナビ＋アイコン） ====== */
.header_main_row {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 40px;
  padding-bottom: 14px;
}

/* ロゴ */
.header_logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.header_logo img {
  display: block;
}

/* メインナビ */
.header_main_nav {
  flex: 1;
}

.main_nav_list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}

.nav_item a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-weight: 400;
  padding-bottom: 6px;
  position: relative;
  display: block;
  white-space: nowrap;
}

.nav_item a:hover {
  opacity: 0.7;
}

.nav_item.active a {
  color: #333;
  font-weight: 400;
}

.nav_item.active a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333;
}

/* アクションアイコン */
.header_action_icons {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.action_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: #333;
  transition: opacity 0.2s;
}

.action_item:hover {
  opacity: 0.7;
}

.action_item img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}

.action_item span {
  font-size: 12px;
  font-weight: 400;
  color: #333;
  line-height: 1;
  white-space: nowrap;
}

/* ====== ハンバーガーボタン ====== */
.header_hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}

.header_hamburger__img-open,
.header_hamburger__img-close {
  display: block;
  width: auto;
  height: auto;
}

.header_hamburger__img-close {
  display: none;
}

/* メニューが開いているとき：左上に固定 */
.global_header.is-menu-open .header_hamburger {
  position: fixed;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  padding: 0;
  margin: 0;
  border-radius: 0;
  align-self: auto;
  z-index: 1001;
}

.global_header.is-menu-open .header_hamburger__img-open {
  display: none;
}

.global_header.is-menu-open .header_hamburger__img-close {
  display: block;
}

.global_header.is-menu-open .header_logo {
  margin-left: 80px;
}

/* ====== モバイルナビ（フルスクリーン） ====== */
.header_mobile_nav {
  display: none;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 998;
}

.header_mobile_nav[aria-hidden="false"] {
  visibility: visible;
}

.header_mobile_nav__inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  padding: 80px 40px 40px;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.header_mobile_nav[aria-hidden="false"] .header_mobile_nav__inner {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.header_mobile_nav__close {
  display: none;
}

.header_mobile_nav__main ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #E5EAF0;
}

.header_mobile_nav__main li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid #E5EAF0;
  font-size: 16px;
  font-weight: 400;
  color: #061448;
  text-decoration: none;
}

.header_mobile_nav__main li a::after {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cline x1='8' y1='1' x2='8' y2='15' stroke='%23061448' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='1' y1='8' x2='15' y2='8' stroke='%23061448' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.header_mobile_nav__main li.active a {
  font-weight: 700;
}

.header_mobile_nav__main li a:hover {
  opacity: 0.7;
}

.header_mobile_nav__utility {
  margin-top: 48px;
}

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

.header_mobile_nav__utility li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  font-size: 14px;
  color: #061448;
  text-decoration: none;
  border-bottom: 1px solid #E5EAF0;
}

.header_mobile_nav__utility li a::after {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cline x1='2' y1='8' x2='13' y2='8' stroke='%231e4dc6' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpolyline points='9,4 13,8 9,12' fill='none' stroke='%231e4dc6' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.header_mobile_nav__utility li a:hover {
  opacity: 0.7;
}

/* ====== レスポンシブ (≤tablet) ====== */
@media screen and (max-width: 1100px) {
  .body-container-wrapper {
    padding-top: 70px;
  }

  .header_hamburger {
    display: flex;
  }

  .header_mobile_nav {
    display: block;
    visibility: hidden;
  }
  .header_mobile_nav[aria-hidden="false"] {
    visibility: visible;
  }

  .header_utility_row,
  .header_main_nav {
    display: none;
  }

  .header_inner {
    height: 70px;
    padding: 0 12px;
    justify-content: center;
  }

  .header_main_row {
    padding-bottom: 0;
    gap: 12px;
  }

  .header_logo {
    margin-right: auto;
  }
  .header_mobile_nav__inner {
    padding: 108px 20px 0 20px;
  }
}



/* ====== toC ナビゲーション無し ====== */
header.no_navigation {
  border-bottom: solid 1px #D8E0E6;
}
header.no_navigation a.header_logo {
  padding: 32px 0 24px 38px;
}
div:has(header.no_navigation) + .body-container-wrapper,
div:has(header.header_tetra) + .body-container-wrapper{
  padding-top: 0;
}

/* ====== toB 通常header ====== */
.header_tetra {

}
.header_tetra_inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  max-width: 1428px;
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 1100px) {
  .header_tetra_inner {
    padding: 20px;
  }
}
.global_footer {
  background-color: #0B163E;
  color: #ffffff;
}
.footer_inner, .footer_top_inner {
  max-width: 1164px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer_top {
  background-color: hsla(0, 0%, 100%, .1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  height: 64px;
}

.footer_top_inner {
  height: 100%;
  padding-right: 0; /* TOPボタンを端に寄せる */
}

/* パンくず */
.breadcrumb_list {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.breadcrumb_item {
  color: #ffffff !important;
  text-decoration: none;
  position: relative;
}

.breadcrumb_item::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.breadcrumb_item:hover::after {
  transform: scaleX(1);
}

.breadcrumb_divider {
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
}

.breadcrumb_current {
  color: #a3a5ac;
}

/* TOPボタン (白背景) */
.to_top_button {
  background-color: #ffffff;
  color: #05071b;
  width: 80px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 400;
  font-size: 11px;
  transition: background-color 0.25s;
}

.to_top_button:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.to_top_button svg {
  margin-bottom: 4px;
}

/* --- フッターメインコンテンツ --- */
.footer_main {
  /* clampを使用した可変パディング（上, 左右, 下） */
  /*   padding-top: clamp(40px, 5.36vw, 85px);
  padding-bottom: clamp(40px, 5.49vw, 87px); */
  padding-top: 48px;
  padding-bottom: 32px;
}

.footer_main .hs_cos_wrapper_type_module {
  width: 100%;
}

.footer_content_row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

/* 左側：SNSセクション */
.sns_section {
  display: flex;
  align-items: center;
  gap: 28px;
}

.sns_label {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.sns_links {
  display: flex;
  gap: 32px;
}

.sns_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.25s;
  flex-shrink: 0;
}

.sns_icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}
.sns_icon img.icon_note {
  width: 64px;
}
.sns_icon:hover {
  opacity: 0.7;
}

/* 右側：リンク & 著作権 */
.footer_info_section {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
  font-size: 12px;
}

.policy_nav {
  display: flex;
  gap: 24px;
}

.policy_link {
  color: #ffffff !important;
  text-decoration: none;
  position: relative;
}

.policy_link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.policy_link:hover::after {
  transform: scaleX(1);
}

.copyright_text {
  margin: 0;
  font-size: 12px;
  color: #fff;
}


@media screen and (max-width: 1100px) {
  .footer_inner, .footer_top_inner {
    padding: 0 40px;
  }
  .footer_content_row {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer_info_section {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .policy_nav {
    flex-direction: column;
    gap: 16px;
  }
}

@media screen and (max-width: 767px) {
  .footer_main {
    padding: 48px 20px 32px 20px;
  }
  .footer_content_row {
    gap: 48px;
  }
  .footer_inner {
    padding: 0;
  }
  .footer_top_inner {
    padding: 0 20px;
  }
  .sns_section {
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
  }
  .footer_info_section {
    gap: 48px;
  }
  .footer_top_inner {
    padding-right: 0;
  }
  .to_top_button {
    width: 60px;
  }
  .policy_nav {
    gap: 32px;
  }
}

/* ナビ無し */
footer.no_navigation {
  padding-bottom: 50px;
}
footer.no_navigation p.copyright_text {
  font-size: 14px;
  line-height: 1.5;
  color: #8b91a0;
  text-align: center;
}

/* TETRA footer */
.global_footer.footer_tetra {
  background-color: #333;
}
.footer_tetra .footer_top {
  background-color: #0B163E;
}
/* 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;
  }
}

/* @import url('http://example.com/example_style.css'); */

/* ==========================================================================
共通
========================================================================== */
html {
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;/*Chrome,Safari*/
  -ms-text-size-adjust: 100%;/*EgdeMobile*/
  -moz-text-size-adjust: 100%;/*firefox*/
  scroll-behavior: smooth;
}

/* コンテンツ幅 */
.content_wrapper {
  padding: 0 40px 100px 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .content_wrapper {
    padding: 0 20px 60px 20px;
  }
}
.mx1244 {
  max-width: 1244px;
  margin-right: auto;
  margin-left: auto;
}
.mx962 {
  max-width: 962px;
  margin-right: auto;
  margin-left: auto;
}
.mx833 {
  max-width: 833px;
  margin-right: auto;
  margin-left: auto;
}
.mx760 {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}
/* 余白ユーティリティ */
.pt-0  { padding-top: 0!important; }
.pb-0  { padding-bottom: 0!important; }
.pl-0  { padding-left: 0!important; }
.pb-5  { padding-bottom: 5px!important; }
.pt-20 { padding-top: 20px!important; }
.pb-20 { padding-bottom: 20px!important; }

.m-0   { margin: 0!important; }
.mt-0  { margin-top: 0!important; }
.mt-24 { margin-top: 24px!important; }
.mt-32 { margin-top: 32px!important; }
.mt-40 { margin-top: 40px!important; }
.mt-60 { margin-top: 60px!important; }

.mb-0  { margin-bottom: 0!important; }
.mb-10 { margin-bottom: 10px!important; }
.mb-16 { margin-bottom: 16px!important; }
.mb-20 { margin-bottom: 20px!important; }
.mb-32 { margin-bottom: 32px!important; }

.mr-32 { margin-right: 32px!important; }
.ml-16 { margin-left: 16px!important; }
.ml-32 { margin-left: 32px!important; }

/* 表示ユーティリティ */
.overflow-hidden { overflow: hidden!important; }
.w-100           { width: 100%!important; }
.block           { display: block!important; }
.j-center        { justify-content: center!important; }
.a-center        { align-items: center!important; }
.margin0auto     { margin: 0 auto; }

/* PC / Tablet / SP 表示切り替え */
.pc.tb   { display: block!important; }
.tb,
.tb_flex { display: none!important; }
.sp      { display: none!important; }

@media screen and (max-width: 1100px) {
  .pc      { display: none!important; }
  .tb      { display: block!important; }
  .tb_flex { display: flex!important; }
}
@media screen and (max-width: 767px) {
  .pc.tb { display: none!important; }
  .sp    { display: block!important; }
}

.bg_f9 {
  background-color: #F9F9FC
}
.bg_fff {
  background-color: #fff;
}
/* ==========================================================================
DNDセクション
========================================================================== */
/* 旧サイト由来のセクション装飾クラス。必要に応じてアンコメントして使用。
.section_top_border {
border-top: solid 1px #D7D7D7;
background-color: #FCFCFC;
margin: 100px 0 0 0;
padding: 0 0 100px 0;
}
.section_bg_fc {
background-color: #FCFCFC;
}
.section_top_footer {
padding: 0 0 100px 0;
}
@media screen and (max-width: 1100px) {
.section_top_border {
margin: 60px 0 0 0;
padding: 0 0 60px 0;
}
.section_top_footer {
padding: 0 0 60px 0;
}
}
*/
/* .section_normal_dnd {
max-width: 1392px;
padding: 0 40px;
margin: 0 auto;
} */

/* ==========================================================================
下層テンプレート
========================================================================== */
/* カタログページでは不使用。必要に応じてアンコメント。
.column2 {
display: flex;
flex-direction: row;
}
.column1 {
max-width: 736px;
margin: 0 auto;
}
.dnd_area {
width: 100%;
}
@media screen and (max-width: 767px) {
.column2 {
flex-direction: column;
}
}
*/

/* ==========================================================================
hover
========================================================================== */
a img:hover {
  opacity: 0.75;
  transition: opacity 0.25s;
}

/* ==========================================================================
テキスト
========================================================================== */

.hs_cos_wrapper_type_rich_text h1,
.hs_cos_wrapper_type_module h1 {
  line-height: 166%;
  margin: 48px 0 80px 0;
}
@media screen and (max-width: 767px) {
  .hs_cos_wrapper_type_rich_text h1,
  .hs_cos_wrapper_type_module h1 {
    font-size: 30px;
    margin: 48px 0 30px 0;
  }
}

.hs_cos_wrapper_type_rich_text h2,
.hs_cos_wrapper_type_module h2 {
  margin: 80px 0 50px 0;
  padding: 12px 20px;
  line-height: 130%;
  font-size: 28px;
  font-weight: 700;
  color: #0B163E;
  border-left: solid 1px #0B163E;
}
@media screen and (max-width: 767px) {
  .hs_cos_wrapper_type_rich_text h2,
  .hs_cos_wrapper_type_module h2 {
    font-size: 24px;
    margin: 50px 0 24px 0;
  }
}

.hs_cos_wrapper_type_rich_text h3,
.hs_cos_wrapper_type_module h3 {
  margin: 80px 0 48px 0;
  padding: 0px;
  line-height: 140%;
  font-size: 28px;
  font-weight: 700;
}
@media screen and (max-width: 1100px) {
  .hs_cos_wrapper_type_rich_text h3,
  .hs_cos_wrapper_type_module h3 {
    margin: 60px 0 32px 0;
  }
}

.hs_cos_wrapper_type_rich_text h4,
.hs_cos_wrapper_type_module h4 {
  padding: 0 0 0px 0;
  /*   margin: 32px 0 32px 0; */
  line-height: 200%;
  font-size: 24px;
  color: #0B163E;
  font-weight: 400;
}
@media screen and (max-width: 1100px) {
  .hs_cos_wrapper_type_rich_text h4,
  .hs_cos_wrapper_type_module h4 {
    /*     font-size: 18px;
    margin: 40px 0 16px 0; */
  }
}
/*
.hs_cos_wrapper_type_rich_text h5,
.hs_cos_wrapper_type_module h5 {
margin: 32px 0 10px 0;
line-height: 130%;
padding: 0 0 10px 0;
font-size: 18px;
font-weight: 700;
border-bottom: solid 1px #D7D7D7;
}
@media screen and (max-width: 1100px) {
.hs_cos_wrapper_type_rich_text h5,
.hs_cos_wrapper_type_module h5 {
font-size: 16px;
}
}
*/

.hs_cos_wrapper_type_rich_text p,
.hs_cos_wrapper_type_module p {
  line-height: 180%;
  margin: 0;
  padding: 0;
  font-size: 16px;
  text-align: left;
}

/* scroll-margin-top（スティッキーナビの高さに合わせて調整） */
h1, h2, h3, h4, h5, h6, a[data-hs-anchor] {
  scroll-margin-top: 110px;
}
@media screen and (max-width: 1100px) {
  h1, h2, h3, h4, h5, h6, a[data-hs-anchor] {
    scroll-margin-top: 40px;
  }
}

/* ==========================================================================
引用テキスト
========================================================================== */
/*
.hs_cos_wrapper_type_rich_text blockquote,
.hs_cos_wrapper_type_module blockquote {
margin: 40px 0 0 0;
padding: 30px;
background-color: #F4F6FA;
border-radius: 10px;
border: solid 1px #ccc;
}
.hs_cos_wrapper_type_rich_text blockquote strong,
.hs_cos_wrapper_type_module blockquote strong {
font-size: 26px;
}
@media screen and (max-width: 1100px) {
.hs_cos_wrapper_type_rich_text blockquote,
.hs_cos_wrapper_type_module blockquote {
margin: 30px 0 0 0;
}
.hs_cos_wrapper_type_rich_text blockquote p,
.hs_cos_wrapper_type_module blockquote p {
font-size: 18px;
}
.hs_cos_wrapper_type_rich_text blockquote strong,
.hs_cos_wrapper_type_module blockquote strong {
font-size: 22px;
}
}
*/

/* ==========================================================================
箇条書き・番号付きリスト
========================================================================== */
/* 旧サイト由来のカラー（#5184C5 等）を使用。必要に応じてTOTOブランドカラーに変更してアンコメント。
.hs_cos_wrapper_type_rich_text ul {
line-height: 150%;
padding: 0;
margin: 24px 0 0 0;
}
.hs_cos_wrapper_type_rich_text li {
font-size: 16px;
list-style: none;
position: relative;
padding-left: 1em;
margin-top: 18px;
}
.hs_cos_wrapper_type_rich_text li:first-child {
margin-top: 0;
}
.hs_cos_wrapper_type_rich_text li:before {
border-radius: 50%;
width: 6px;
height: 6px;
display: block;
position: absolute;
left: 0;
top: 0.5em;
content: "";
background: #1E4DC6;
}
@media screen and (max-width: 1100px) {
.hs_cos_wrapper_type_rich_text li {
padding-left: 20px;
}
.hs_cos_wrapper_type_rich_text li:before {
left: 0;
}
}

.hs_cos_wrapper_type_rich_text ol {
counter-reset: ol_number;
line-height: 150%;
padding: 0;
margin: 24px 0 0 0;
}
.hs_cos_wrapper_type_rich_text ol li:nth-child(n+10) {
padding-left: 35px;
}
.hs_cos_wrapper_type_rich_text ol li:before {
position: absolute;
background: none;
left: 0;
top: 0;
width: 100%;
counter-increment: ol_number;
content: counter(ol_number)'.';
color: #0B163E;
}
*/

/* ==========================================================================
リンクテキスト
========================================================================== */
.hs_cos_wrapper_type_rich_text a {
  color: #1E4DC6;
  text-decoration: underline;
}
.hs_cos_wrapper_type_rich_text a:hover {
  text-decoration: none;
}

/* 別ウィンドウアイコン・PDFアイコン（アイコン画像URLを用意してアンコメント）
.hs_cos_wrapper_type_rich_text a[target="_blank"]:not(.btn) {
display: inline-block;
padding: 0 1em 0 0;
margin: 0 0.5em 0 0;
position: relative;
}
.hs_cos_wrapper_type_rich_text a[target="_blank"]:before {
content: url('アイコンURLをここに記載');
right: 0px;
position: absolute;
}
.hs_cos_wrapper_type_rich_text a.pdf:before {
content: url('アイコンURLをここに記載');
right: 0px;
position: absolute;
}
.hs_cos_wrapper_type_rich_text a.pdf.btn:before {
content: none !important;
display: none !important;
}
*/

/* リンクありの画像にはパディング・アイコンを付けない */
.hs_cos_wrapper_type_rich_text a[target="_blank"]:has(> img),
.hs_cos_wrapper_type_module a[target="_blank"]:has(> img) {
  padding: 0;
  margin: 0;
  position: unset;
}
.hs_cos_wrapper_type_rich_text a[target="_blank"]:has(> img):before,
.hs_cos_wrapper_type_module a[target="_blank"]:has(> img):before {
  content: none !important;
}

/* ==========================================================================
トップに戻るボタン（background-imageのURLを差し替えてアンコメント）
========================================================================== */
/*
a.pageTop-btn {
transition: all 0.5s ease 0s;
position: fixed;
right: 50px;
bottom: 50px;
z-index: -1;
opacity: 0;
height: 53px;
width: 53px;
padding: 10px;
background-image: url('アイコンURLをここに記載');
background-repeat: no-repeat;
}
a.pageTop-btn.show {
z-index: 1;
opacity: 1;
}
@media screen and (max-width: 767px) {
a.pageTop-btn {
right: 20px;
bottom: 20px;
padding: 10px;
}
}
*/

/* ==========================================================================
パンくずリスト
========================================================================== */
.p-pankuzu {
  margin: 0;
  padding: 0;
  font-size: 14px;
  list-style: none;
  display: flex;
  gap: 35px;
}
.p-pankuzu li {
  position: relative;
  text-wrap: nowrap;
}
.p-pankuzu li a {
  color: #1E4DC6;
  text-decoration: underline;
  transition: all .25s;
}
/* パンくず区切りアイコン（アイコン画像URLを用意してアンコメント）
.p-pankuzu li:before {
content: url('アイコンURLをここに記載');
position: absolute;
right: -18px;
top: 2px;
}
*/
.p-pankuzu li:last-child:before {
  content: '';
}
.p-pankuzu li:hover a {
  opacity: 0.75;
}
@media screen and (max-width: 1100px) {
  .p-pankuzu {
    overflow-x: scroll;
    overflow-y: hidden;
  }
}
/* ==========================================================================
ボタン
========================================================================== */
.btn_wrapper {
  margin-top: 80px;
  display: flex;
  justify-content: center;
}
.btn {
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: all 0.15s linear;
  white-space: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  border-radius: 2px;
  padding: 22px 0;
  max-width: 558px;
  width: 100%;
  outline: #1e4dc6;
}
.btn:hover {
  text-decoration: none;
}
.btn.btn_white {
  color: #1E4DC6;;
  background-color: #fff;
  border: solid 1px #1E4DC6;
}
.btn.btn_white:hover {
  /* border: solid 2px #1E4DC6; */
}
@media screen and (max-width: 767px) {
  .btn_wrapper {
    margin-top: 60px;
  }
  .btn {
    max-width: 100%;
    padding: 16px 0;
  }
}

/* ==========================================================================
印刷アイコン
========================================================================== */
.print_icon {
  position: absolute;
  top: 48px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.catalog-detail .print_icon {
  top: 0;
}
.print_icon img {
  width: 25px;
  height: 80px;
  display: block;
}
@media screen and (max-width: 1100px) {
  .print_icon {
    display: none;
  }
}