/* 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;
}
html {
  font-size: 18px;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #222222;
  width: 100%;
  background: #ffffff;
/*   overflow-x: hidden;
  overflow-y: scroll; */
  position: relative;
  min-height: -webkit-fill-available;
}

main {
  position: relative;
  width: 100%;
/*   overflow-x: hidden; */
}

ul {
  list-style: none;
  padding: unset;
  margin: unset;
}

a {
  display: inline-block;
  text-decoration: none;
  color: #000000;
  opacity: 1;
  transition: .3s all ease-in-out
  &:hover {
    opacity: 0.75;
  }
}

button {
  outline: none;
}

@media (min-width: 560px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

figure {
  margin: unset;
}

img {
  max-width: 100%;
}

p {
  line-height: 1.6;
  @media(min-width: 768px) {
    line-height: 1.8;
  }
}

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

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

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

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

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

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

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

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

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

/* Paragraphs */

p {
  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; */
  margin: 0;
}

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

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

/* No button */

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

.hs-form-field {
  margin-bottom: 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%;
}

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

/* Headings and text */

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

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

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

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

/* _header.scss 読み込み
------------------------------------- */
.header {
  padding-inline: 0.75rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3rem;
  z-index: 200;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #1658a0;
  @media (min-width: 1300px) {
    height: 7rem;
    padding-inline: 1.33rem 0.83rem;
    filter: drop-shadow(0 0 0.4rem rgba(34, 34, 34, 0.4));
    border-bottom: unset;
  }
}

.header_overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(59, 80, 100, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s opacity ease-in-out;
  z-index: 3;
}

.header_outer {
  display: grid;
  grid-template-columns: max-content 1fr;
  width: 100%;
  background-color: $color_white;
  @media (min-width: 1300px) {
    column-gap: 2rem;
    transition: 0.6s;
  }
}

.header_container {
  display: flex;
  width: 100%;
  @media (min-width: 1600px) {
    align-items: center;
    justify-content: space-between;
  }
}

h1 img:hover {
  opacity: 0.8;
}

#logo {
  display: grid;
  place-content: center;
}

.logo_wrap {
  display: flex;
  flex-direction: column;
  row-gap: 0.4rem;
  @media (min-width: 1300px) {
    row-gap: 0.72rem;
  }
}

.logo_description {
  color: $color_black;
  font-size: 0.4rem;
  @media (min-width: 1300px) {
    font-size: 0.67rem;
  }
}

.logo {
  margin: unset;
  @media (min-width: 1300px) {
    padding: 0;
    display: flex;
    top: 0;
    left: 0;
  }
  img {
    height: auto;
    max-width: 184px;
    width: 11.5rem;
    transition: 0.3s ease-out;
    @media (min-width: 1300px) {
      height: auto;
      max-width: 223px;
      width: 12.39rem;
    }
  }
}

.nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  row-gap: 0.8rem;
  width: fit-content;
  justify-self: flex-end;
}

.nav_container {
  display: none;
  @media (min-width: 1300px) {
    display: grid;
    width: fit-content;
  }
  &.nav_container--sub-menu {
    grid-template-columns: max-content max-content;
    align-items: center;
    column-gap: 1.61rem;
    margin-left: auto;
  }
  &.nav_container--main-menu {
    grid-template-columns: max-content max-content;
    align-items: center;
    column-gap: 1.11rem;
    margin-left: auto;
  }
}

.nav_list {
  margin: unset;
  display: grid;
  &.nav_list--sub-menu {
    grid-template-columns: max-content max-content max-content max-content max-content max-content;
    align-items: center;
    column-gap: 2.78rem;
  }
  &.nav_list--main-menu {
    grid-template-columns: max-content max-content max-content max-content max-content;
    align-items: center;
    column-gap: 2.78rem;
  }
}

.nav_item_child_item {
  .nav_item_child_item--sub-menu {
    padding: 0.5rem 1.5rem;
  }
}

.nav_item_child_item_link {
  font-size: 0.94rem;
  font-weight: 500;
  &.nav_item_child_item_link--sub-menu {
    font-size: 0.78rem;
  }
}

.nav_list_etc {
  margin: unset;
  display: grid;
  &.nav_list_etc--sub-menu {
    align-items: center;
    column-gap: 0;
    grid-template-columns: max-content max-content;
  }
}

.nav_list_etc_search {
  display: grid;
  grid-template-columns: max-content max-content;
  column-gap: 0.22rem;
  align-items: center;
  input {
    padding: 0.22rem;
    border: 1px solid #6b6b6b;
    border-radius: 2px;
    color: #6b6b6b;
    font-weight: 500;
    font-size: 0.72rem;
    &::-moz-placeholder {
      color: #6b6b6b;
      font-weight: 500;
      font-size: 0.72rem;
    }
  }
}

.nav_item_child_item_etc {
  padding: 0.5rem 1.5rem;
  border-left: 1px solid #eceeef;
  &:last-of-type {
    border-right: 1px solid #eceeef;
  }
}

.nav_item_child_item_link {
  color: #222222;
  opacity: 1;
  transition: 0.3s all ease-in-out;
  span {
    display: block;
    &.span--pc {
      position: relative;
      &::after {
        position: absolute;
        top: 101%;
        left: 0;
        display: block;
        content: "";
        width: 100%;
        height: 3px;
        background-color: transparent;
        transition: 0.3s all ease-in-out;
      }
    }
  }
  &:hover {
    opacity: 0.75;
    span {
      &.span--pc {
        &::after {
          background-color: #1658a0;
        }
      }
    }
  }
}

.nav_container_etc {
  position: absolute;
  top: 3rem;
  right: 0;
  width: 100%;
  @media (min-width: 1300px) {
    top: 5rem;
    right: 5rem;
    width: fit-content;
    height: 100%;
  }
  @media (min-width: 1600px) {
    position: relative;
    right: unset;
  }
}

.nav_etc_menu_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  @media (min-width: 1300px) {
    height: 100%;
  }
}

.nav_etc_menu_item {
  @media (min-width: 1300px) {
    height: 100%;
  }
}

.nav_etc_menu_item_link {
  display: grid;
  place-content: center;
}

.nav_btn {
  z-index: 300;
  display: grid;
  place-content: center;
  align-items: center;
  transition: 0.3s ease-out;
  pointer-events: all;
  position: fixed;
  top: 0;
  right: 0;
  width: 3rem;
  aspect-ratio: 1 / 1;
  background-color: transparent;
  border: unset;
  @media (min-width: 1300px) {
    display: none;
  }
/*   .nav_btn_container {
    width: 1.39rem;
    aspect-ratio: 25 / 19;
    background: url("https://46923556.fs1.hubspotusercontent-na1.net/hubfs/46923556/nav_open.svg") no-repeat center / contain;
    transition: 0.3s all ease-in-out;
    @include mq(min_tab) {
      width: 1.39rem;
      aspect-ratio: 25 / 19;
    }
  }
  &.show {
    .nav_btn_container {
      background: url("https://46923556.fs1.hubspotusercontent-na1.net/hubfs/46923556/nav_close.svg") no-repeat center / contain;
    }
  } */
  
  .nav_btn_container {
    width: 1.39rem;
    aspect-ratio: 25 / 19;
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: contain;
    background-color: #005BAC;
    mask-image: url("https://46923556.fs1.hubspotusercontent-na1.net/hubfs/46923556/nav_open.svg");
    transition: 0.3s all ease-in-out;
    
    
    width: 2.78rem;
    scale: 0.5;
    
    
    @include mq(min_tab) {
      width: 1.39rem;
      aspect-ratio: 25 / 19;
    }
  }
  &.show {
    .nav_btn_container {
      mask-image: url("https://46923556.fs1.hubspotusercontent-na1.net/hubfs/46923556/nav_close.svg");
    }
  }
  
  
  &:focus {
    outline: 0;
  }
}

.nav_btn.change {
  .nav_btn_container {
    background: url("https://46923556.fs1.hubspotusercontent-na1.net/hubfs/46923556/nav_close.svg") no-repeat center / contain;
  }
}

.nav_btn_menu_close_txt {
  color: #509b95;
  font-size: 0.94rem;
}

.nav_outer {
  box-sizing: border-box;
  position: relative;
}

.nav_list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: 1rem;
  @media (max-width: 1299px) {
    overflow: auto;
  }
  @media (min-width: 1300px) {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2.81rem;
    row-gap: 1.69rem;
  }
  @media (min-width: 1600px) {
    width: 100%;
    // margin-top: 1.72rem;
    // padding: 0.94rem 0;
    // height: 3.5rem;
    display: flex;
    flex-direction: unset;
    justify-content: center;
    align-items: center;
    column-gap: 1.67rem;
    row-gap: unset;
  }
}

.nav_item {
  display: grid;
  padding-bottom: 1rem;
  border-bottom: 1px solid #d034ed;
  font-size: 1rem;
  font-weight: 700;
  width: 100%;
  @media (min-width: 1300px) {
    padding-bottom: 1.69rem;
  }
  @media (min-width: 1600px) {
    place-content: center;
    padding-bottom: unset;
    border-bottom: unset;
  }
}

.nav_item_sp {
  display: grid;
  font-size: 0.94rem;
  @media (min-width: 1600px) {
    display: none;
  }
}

.nav_item_pc {
  display: none;
  @media (min-width: 1600px) {
    display: grid;
  }
}

.nav_item_link {
  position: relative;
  display: block;
  font-size: 0.89rem;
  transition: 0.3s;
  z-index: 0;
  span {
    font-size: 0.89rem;
    color: $color_black;
    transition: 0.3s color ease-in-out;
    letter-spacing: 0.05em;
    line-height: calc(29 / 16);
    white-space: nowrap;
  }
  @media (max-width: 1299px) {
    display: grid;
    grid-template-columns: max-content 1fr;
    column-gap: 1rem;
    align-items: center;
    padding: 1.11rem 2rem;
    font-size: 0.89rem;
    border-radius: 0.56rem;
    &::before {
      content: "";
      width: 0.75rem;
      aspect-ratio: 1 / 1;
      background: $color_main;
      background: url("../img/common/nav_right_arrow.svg") no-repeat center / contain;
    }
    &:hover {
      background-color: #d3e6e4;
    }
  }
  @media (min-width: 1300px) {
    padding: 0.94rem 0;
    display: flex;
    align-items: center;
    color: $color_black;
    font-size: 1rem;
    &::before {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      display: block;
      content: "";
      width: 2.5rem;
      height: 0.22rem;
      background-color: transparent;
      transition: 0.3s all ease-in-out;
    }
  }
  &.nav_item_link_arrow {
    position: relative;
    display: none;
    @media (min-width: 1600px) {
      display: block;
    }
    span {
      display: grid;
      grid-template-columns: max-content max-content;
      column-gap: 0.5rem;
      align-items: center;
      position: relative;
      &::after {
        display: block;
        content: "";
        width: 0.5rem;
        aspect-ratio: 6 / 11;
        background: url("../img/common/nav_under_arrow.svg") no-repeat center / contain;
        transition: 0.3s all ease-in-out;
        @media (min-width: 1600px) {
          width: 0.61rem;
        }
      }
    }
    &.show {
      &::after {
        position: absolute;
        top: calc(2.33rem - 0.83rem + 100%);
        left: 50%;
        transform: translateX(-50%);
        display: block;
        content: "";
        background: url("../img/common/nav_up_arrow.svg") no-repeat center / contain;
        height: 0.83rem;
        aspect-ratio: 24 / 15;
        z-index: 1;
      }
    }
  }
}

.nav_item:last-of-type .nav_item_link {
  @media (max-width: 1299px) {
    margin-bottom: 0;
  }
}

.nav_item_child {
  display: none;
  width: 100%;
  z-index: 100;
  transition: 0.3s ease-out;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.nav_item_child_list_wrap {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  @media (min-width: 1600px) {
    padding-top: 2.33rem;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 4rem);
    display: none;
    align-items: center;
    justify-content: center;
  }
  &.show {
    display: flex;
  }
}

.nav_item_child_list_wrap_content {
  width: 100%;
  padding: 0;
  display: grid;
  row-gap: 1rem;
  background-color: #ffffff;
  @media (min-width: 768px) {
    row-gap: 1.13rem;
  }
  @media (min-width: 1600px) {
    padding: 4rem;
    grid-template-columns: max-content 1fr;
    column-gap: 3.67rem;
    row-gap: unset;
    align-items: flex-start;
    justify-content: center;
    border-radius: 0.28rem;
  }
  &.two {
    @media (min-width: 1600px) {
      grid-template-columns: max-content;
    }
    .nav_item_child_list {
      @media (min-width: 1600px) {
        grid-template-columns: max-content max-content;
        column-gap: 7rem;
      }
    }
  }
  &.three {
    @media (min-width: 1600px) {
      grid-template-columns: max-content;
    }
    .nav_item_child_list {
      @media (min-width: 1600px) {
        grid-template-columns: max-content max-content max-content;
        column-gap: 7rem;
      }
    }
  }
}

.nav_item_child_list_wrap_ttl {
  span {
    display: grid;
    grid-template-columns: max-content 1fr;
    align-items: center;
    column-gap: 0.5rem;
    color: #005bac;
    letter-spacing: 0.05em;
    font-size: 1rem;
    line-height: calc(36 / 20);
    font-weight: 500;
    transition: 0.3s all ease-in-out;
    @media (min-width: 1300px) {
      font-size: 1.11rem;
      letter-spacing: 0.05em;
      line-height: calc(36 / 20);
    }
    &::before {
      display: block;
      content: "";
      background: url("../img/common/nav_item_ttl_deco01.svg") no-repeat center / contain;
      width: 1.5rem;
      aspect-ratio: 1 / 1;
      filter: drop-shadow(0 0 0.4rem rgba(#728393, 0.3));
    }
    &:hover {
      color: #134e88;
    }
  }
}

.nav_item_child_list {
  display: grid;
  padding: 1.5rem;
  position: relative;
  width: 100%;
  background-color: #c5d1e4;
  border-radius: 0.13rem;
  row-gap: 1rem;
  @media (min-width: 1300px) {
    padding: 2.81rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.13rem 2.81rem;
  }
  @media (min-width: 1600px) {
    padding: unset;
    grid-template-columns: repeat(3, 1fr);
    align-items: flex-start;
    gap: 2.5rem 1.56rem;
    flex-wrap: wrap;
    background-color: transparent;
    border-radius: unset;
  }
}

.nav_item_link_hover_color {
  &:hover,
  &.current {
    span {
      color: #005bac;
      @media (min-width: 1300px) {
        color: #005bac;
      }
      &::after {
        background: url("../img/common/nav_under_arrow_blue.svg") no-repeat center / contain;
      }
    }
  }
}

.nav_container--sp {
  position: fixed;
  top: 3rem;
  left: 0;
  width: 100%;
  display: none;
  background-color: #ffffff;
  height: calc(100vh - 3rem);
  overflow-y: scroll;
  @media (min-width: 768px) {
    width: 50%;
    left: unset;
    right: 0;
  }
  @media (min-width: 1300px) {
    display: none;
  }
  &.show {
    display: block;
    @media (min-width: 1300px) {
      display: none;
    }
  }
}
.nav_list--sp {
  margin-block: unset;
  padding: unset;
  display: flex;
  flex-direction: column;
  width: calc(100% - 2rem);
  margin-inline: auto;
}
.nav_item_child_item--sp {
  border-bottom: 1px solid #1658a0;
}
.nav_item_child_item_link--sp {
  position: relative;
  padding: 0.88rem;
  text-decoration: unset;
  opacity: 1;
  transition: 0.3s all ease-in-out;
  width: 100%;
  &:hover {
    opacity: 0.75;
  }
  span {
    font-size: 1rem;
    color: #1658a0;
    font-weight: 700;
  }
  &.prevent {
    &:hover {
      opacity: 1;
    }
    &::after {
      position: absolute;
      top: 50%;
      right: 1rem;
      transform: translateY(-50%);
      display: block;
      width: 1rem;
      height: 1rem;
      content: "";
      background: url("https://46923556.fs1.hubspotusercontent-na1.net/hubfs/46923556/side_menu_arrow_plus.svg") no-repeat center / contain;
      transition: 0.3s all ease-in-out;
    }
    &.open {
      &::after {
        width: 1rem;
        height: 1rem;
        background: url("https://46923556.fs1.hubspotusercontent-na1.net/hubfs/46923556/side_menu_arrow_minus.svg") no-repeat center / contain;
      }
    }
  }
}
.nav_item_child_item_content_wrap--sp {
  display: flex;
  flex-direction: column;
}
.nav_item_child_item_content_ttl--sp {
  margin-top: 0.88rem;
  padding-inline: 0.88rem;
  text-decoration: unset;
  span {
    font-size: 1rem;
    color: #222222;
    font-weight: 500;
  }
}
.nav_item_child_item_content--sp {
  display: none;
}
.nav_item_child_item_content_list--sp {
  padding-inline: 0.88rem;
}
.nav_item_child_item_content_list_item--sp {
  &:not(:last-of-type) {
    border-bottom: 1px solid #1658a0;
  }
}
.nav_item_child_item_content_list_item_link--sp {
  padding: 0.88rem;
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: flex-start;
  column-gap: 0.28rem;
  color: #1658a0;
  font-size: 1rem;
  font-weight: 400;
  opacity: 1;
  transition: 0.3s all ease-in-out;
  &:hover {
    opacity: 0.75;
  }
  &::before {
    position: relative;
    top: 0.5rem;
    left: 0;
    background: url("../img/common/arrow_blue.svg") no-repeat center / contain;
    width: 0.33rem;
    height: 0.44rem;
    display: block;
    content: "";
  }
}
.nav_list_etc--sp {
  width: fit-content;
  padding: 0.88rem;
  margin-block: unset;
  margin-inline: auto;
  display: grid;
  align-items: center;
  column-gap: 0;
  grid-template-columns: max-content max-content;
}
.nav_list_etc--column-sp {
  padding: unset;
  margin-block: unset;
  margin-inline: auto;
  width: fit-content;
  display: flex;
  align-items: center;
  column-gap: 0;
  justify-content: center;
  border-left: 1px solid #eceeef;
  border-right: 1px solid #eceeef;
}
.nav_item_child_item_etc--sp {
  padding: 0.5rem 1.5rem;
  border-left: 1px solid #eceeef;
  text-align: center;
  &:first-of-type {
    border-left: unset;
  }
  &:last-of-type {
    border-right: unset;
  }
}
.nav_item_child_item_link--sp {
  color: #222222;
  opacity: 1;
  transition: 0.3s all ease-in-out;
  &:hover {
    opacity: 0.75;
  }
}
.nav_list_etc_search--sp {
  display: grid;
  grid-template-columns: max-content max-content;
  column-gap: 0.22rem;
  align-items: center;
  input {
    padding: 0.22rem;
    border: 1px solid #6b6b6b;
    border-radius: 2px;
    color: #6b6b6b;
    font-weight: 500;
    font-size: 0.72rem;
    &::placeholder {
      color: #6b6b6b;
      font-weight: 500;
      font-size: 0.72rem;
    }
  }
}

.header_megamenu {
  display: none;
  @media (min-width: 1300px) {
    position: fixed;
    top: 7rem;
    left: 0;
    justify-content: flex-start;
    width: 100%;
    display: block;
  }
}
.header_megamenu_wrap {
  height: fit-content;
  background-color: #0c4199;
  display: none;
  padding: 1.17rem 10%;
  &.show {
    display: block;
  }
}
.header_megamenu_wrap--library {
}
.header_megamenu_wrap--case {
}
.header_megamenu_wrap--info {
}
.header_megamenu_wrap--recruit {
}
.header_megamenu_wrap--ir {
}
.header_megamenu_wrap--product {
  height: calc(100vh - 7rem);
  overflow-y: auto;
  padding: 1.17rem 10%;
}
.header_megamenu_list--type01 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: space-between;
  column-gap: 4.56rem;
}
.header_megamenu_list--type02 {
  display: grid;
  grid-template-columns: calc((100% - (4.56rem * 3)) / 4) calc((100% - (4.56rem * 3)) / 4 * 3 + (4.56rem * 2));
  justify-content: space-between;
  column-gap: 4.56rem;
}
.header_megamenu_list--type03 {
  margin: unset;
  padding: unset;
  display: flex;
  flex-direction: column;
  row-gap: 1.94rem;
}
.header_megamenu_item--type01 {
  .header_megamenu_item_link {
    text-decoration: unset;
    display: block;
    opacity: 1;
    transition: 0.3s all ease-in-out;
    &:hover {
      opacity: 0.75;
    }
    .header_megamenu_item_link_img {
      margin: unset;
      position: relative;
      aspect-ratio: 160 / 90;
      width: 100%;
      overflow: hidden;
      img {
        position: absolute;
        margin: auto;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
      }
    }
    .header_megamenu_item_link_lead {
      margin-top: 0.5rem;
      margin-bottom: unset;
      display: grid;
      grid-template-columns: max-content 1fr;
      align-items: flex-start;
      column-gap: 0.28rem;
      color: #ffffff;
      font-size: 0.89rem;
      font-weight: 400;
      &::before {
        position: relative;
        top: 0.3rem;
        left: 0;
        background: url("https://46923556.fs1.hubspotusercontent-na1.net/hubfs/46923556/arrow_white.svg") no-repeat center / contain;
        width: 0.33rem;
        height: 0.44rem;
        display: block;
        content: "";
      }
    }
  }
}
.header_megamenu_content_simple_list {
  padding: unset;
  margin: unset;
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(5, auto);
  grid-template-columns: repeat(3, 1fr);
  column-gap: 4.56rem;
  row-gap: 0.67rem;
}
.header_megamenu_content_simple_item_link {
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: flex-start;
  column-gap: 0.28rem;
  color: #ffffff;
  font-size: 0.89rem;
  font-weight: 400;
  opacity: 1;
  transition: 0.3s all ease-in-out;
  &:hover {
    opacity: 0.75;
  }
  &::before {
    position: relative;
    top: 0.5rem;
    left: 0;
    background: url("https://46923556.fs1.hubspotusercontent-na1.net/hubfs/46923556/arrow_white.svg") no-repeat center / contain;
    width: 0.33rem;
    height: 0.44rem;
    display: block;
    content: "";
  }
}
.header_megamenu_item--type03 {
  width: calc((100% - (4.56rem * 3)) / 4);
  .header_megamenu_item_link--type03 {
    text-decoration: unset;
    display: block;
    opacity: 1;
    transition: 0.3s all ease-in-out;
    &:hover {
      opacity: 0.75;
    }
    .header_megamenu_item_link_img {
      margin: unset;
      position: relative;
      aspect-ratio: 160 / 90;
      width: 100%;
      overflow: hidden;
      img {
        position: absolute;
        margin: auto;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
      }
    }
    .header_megamenu_item_link_lead {
      margin-top: 0.5rem;
      margin-bottom: unset;
      display: grid;
      grid-template-columns: max-content 1fr;
      align-items: flex-start;
      column-gap: 0.28rem;
      color: #ffffff;
      font-size: 0.89rem;
      font-weight: 400;
      &::before {
        position: relative;
        top: 0.3rem;
        left: 0;
        background: url("https://46923556.fs1.hubspotusercontent-na1.net/hubfs/46923556/arrow_white.svg") no-repeat center / contain;
        width: 0.33rem;
        height: 0.44rem;
        display: block;
        content: "";
      }
    }
  }
}
.header_megamenu_item--type04 {
  .header_megamenu_item_ttl--type04 {
    margin-bottom: 0.72rem;
    display: grid;
    grid-template-columns: max-content max-content max-content;
    align-items: center;
    .txt {
      font-weight: 700;
      font-size: 0.89rem;
      color: #ffffff;
    }
    &::before,
    &::after {
      display: block;
      content: "";
      height: 1px;
      width: 0.83rem;
      background-color: #ffffff;
    }
  }
}
.header_megamenu_content_img_list {
  padding: unset;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 3.33rem;
}
.header_megamenu_content_img_item_link {
  display: block;
  opacity: 1;
  transition: 0.3s all ease-in-out;
  &:hover {
    opacity: 0.75;
  }
  .header_megamenu_content_img_item_link_img {
    margin: unset;
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    img {
      position: absolute;
      margin: auto;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }
  .header_megamenu_content_img_item_link_lead {
    margin-top: 0.5rem;
    margin-bottom: unset;
    display: grid;
    grid-template-columns: max-content 1fr;
    align-items: flex-start;
    column-gap: 0.28rem;
    color: #ffffff;
    font-size: 0.89rem;
    font-weight: 400;
    &::before {
      position: relative;
      top: 0.5rem;
      left: 0;
      background: url("https://46923556.fs1.hubspotusercontent-na1.net/hubfs/46923556/arrow_white.svg") no-repeat center / contain;
      width: 0.33rem;
      height: 0.44rem;
      display: block;
      content: "";
    }
  }
}
.header__language-switcher--label-current {
  display: none !important;
}
.hs-language-switcher__button {
  background: transparent;
  padding: 0;
  border: none;
}

#hs_cos_wrapper_suzumo-language-switcher .hs-language-switcher__icon,
#hs_cos_wrapper_language-switcher .hs-language-switcher__icon,
.hs-language-switcher__icon svg {
  display: none !important;
}
html,body {
  touch-action: manipulation;
}

/* 標準出力上書き
------------------------------------- */
.menu__wrapper {
  margin: unset;
}

/* 共通
------------------------------------- */
main.child {
  margin-top: 1.7rem;
  @media (min-width: 1024px) {
    margin-top: 2.33rem;
  }
}


figure > img {
  width: 100%;
}

.hover_opa {
  opacity: 1;
  transition: .3s all ease-in-oute;
  &:hover {
    opacity: 0.75;
  }
}

.mt0 {
  margin-top: 0rem !important;
}
@media (max-width: 559px) {
  .mt0-s {
    margin-top: 0rem !important;
  }
}
@media (min-width: 560px) {
  .mt0-m {
    margin-top: 0rem !important;
  }
}
@media (min-width: 1024px) {
  .mt0-l {
    margin-top: 0rem !important;
  }
}
@media (min-width: 1600px) {
  .mt0-xl {
    margin-top: 0rem !important;
  }
}

.mb0 {
  margin-bottom: 0rem !important;
}
@media (max-width: 559px) {
  .mb0-s {
    margin-bottom: 0rem !important;
  }
}
@media (min-width: 560px) {
  .mb0-m {
    margin-bottom: 0rem !important;
  }
}
@media (min-width: 1024px) {
  .mb0-l {
    margin-bottom: 0rem !important;
  }
}
@media (min-width: 1600px) {
  .mb0-xl {
    margin-bottom: 0rem !important;
  }
}

.pt0 {
  padding-top: 0rem !important;
}
@media (max-width: 559px) {
  .pt0-s {
    padding-top: 0rem !important;
  }
}
@media (min-width: 560px) {
  .pt0-m {
    padding-top: 0rem !important;
  }
}
@media (min-width: 1024px) {
  .pt0-l {
    padding-top: 0rem !important;
  }
}
@media (min-width: 1600px) {
  .pt0-xl {
    padding-top: 0rem !important;
  }
}

.pb0 {
  padding-bottom: 0rem !important;
}
@media (max-width: 559px) {
  .pb0-s {
    padding-bottom: 0rem !important;
  }
}
@media (min-width: 560px) {
  .pb0-m {
    padding-bottom: 0rem !important;
  }
}
@media (min-width: 1024px) {
  .pb0-l {
    padding-bottom: 0rem !important;
  }
}
@media (min-width: 1600px) {
  .pb0-xl {
    padding-bottom: 0rem !important;
  }
}

.mt25 {
  margin-top: 0.25rem !important;
}
@media (max-width: 559px) {
  .mt25-s {
    margin-top: 0.25rem !important;
  }
}
@media (min-width: 560px) {
  .mt25-m {
    margin-top: 0.25rem !important;
  }
}
@media (min-width: 1024px) {
  .mt25-l {
    margin-top: 0.25rem !important;
  }
}
@media (min-width: 1600px) {
  .mt25-xl {
    margin-top: 0.25rem !important;
  }
}

.mb25 {
  margin-bottom: 0.25rem !important;
}
@media (max-width: 559px) {
  .mb25-s {
    margin-bottom: 0.25rem !important;
  }
}
@media (min-width: 560px) {
  .mb25-m {
    margin-bottom: 0.25rem !important;
  }
}
@media (min-width: 1024px) {
  .mb25-l {
    margin-bottom: 0.25rem !important;
  }
}
@media (min-width: 1600px) {
  .mb25-xl {
    margin-bottom: 0.25rem !important;
  }
}

.pt25 {
  padding-top: 0.25rem !important;
}
@media (max-width: 559px) {
  .pt25-s {
    padding-top: 0.25rem !important;
  }
}
@media (min-width: 560px) {
  .pt25-m {
    padding-top: 0.25rem !important;
  }
}
@media (min-width: 1024px) {
  .pt25-l {
    padding-top: 0.25rem !important;
  }
}
@media (min-width: 1600px) {
  .pt25-xl {
    padding-top: 0.25rem !important;
  }
}

.pb25 {
  padding-bottom: 0.25rem !important;
}
@media (max-width: 559px) {
  .pb25-s {
    padding-bottom: 0.25rem !important;
  }
}
@media (min-width: 560px) {
  .pb25-m {
    padding-bottom: 0.25rem !important;
  }
}
@media (min-width: 1024px) {
  .pb25-l {
    padding-bottom: 0.25rem !important;
  }
}
@media (min-width: 1600px) {
  .pb25-xl {
    padding-bottom: 0.25rem !important;
  }
}

.mt50 {
  margin-top: 0.5rem !important;
}
@media (max-width: 559px) {
  .mt50-s {
    margin-top: 0.5rem !important;
  }
}
@media (min-width: 560px) {
  .mt50-m {
    margin-top: 0.5rem !important;
  }
}
@media (min-width: 1024px) {
  .mt50-l {
    margin-top: 0.5rem !important;
  }
}
@media (min-width: 1600px) {
  .mt50-xl {
    margin-top: 0.5rem !important;
  }
}

.mb50 {
  margin-bottom: 0.5rem !important;
}
@media (max-width: 559px) {
  .mb50-s {
    margin-bottom: 0.5rem !important;
  }
}
@media (min-width: 560px) {
  .mb50-m {
    margin-bottom: 0.5rem !important;
  }
}
@media (min-width: 1024px) {
  .mb50-l {
    margin-bottom: 0.5rem !important;
  }
}
@media (min-width: 1600px) {
  .mb50-xl {
    margin-bottom: 0.5rem !important;
  }
}

.pt50 {
  padding-top: 0.5rem !important;
}
@media (max-width: 559px) {
  .pt50-s {
    padding-top: 0.5rem !important;
  }
}
@media (min-width: 560px) {
  .pt50-m {
    padding-top: 0.5rem !important;
  }
}
@media (min-width: 1024px) {
  .pt50-l {
    padding-top: 0.5rem !important;
  }
}
@media (min-width: 1600px) {
  .pt50-xl {
    padding-top: 0.5rem !important;
  }
}

.pb50 {
  padding-bottom: 0.5rem !important;
}
@media (max-width: 559px) {
  .pb50-s {
    padding-bottom: 0.5rem !important;
  }
}
@media (min-width: 560px) {
  .pb50-m {
    padding-bottom: 0.5rem !important;
  }
}
@media (min-width: 1024px) {
  .pb50-l {
    padding-bottom: 0.5rem !important;
  }
}
@media (min-width: 1600px) {
  .pb50-xl {
    padding-bottom: 0.5rem !important;
  }
}

.mt75 {
  margin-top: 0.75rem !important;
}
@media (max-width: 559px) {
  .mt75-s {
    margin-top: 0.75rem !important;
  }
}
@media (min-width: 560px) {
  .mt75-m {
    margin-top: 0.75rem !important;
  }
}
@media (min-width: 1024px) {
  .mt75-l {
    margin-top: 0.75rem !important;
  }
}
@media (min-width: 1600px) {
  .mt75-xl {
    margin-top: 0.75rem !important;
  }
}

.mb75 {
  margin-bottom: 0.75rem !important;
}
@media (max-width: 559px) {
  .mb75-s {
    margin-bottom: 0.75rem !important;
  }
}
@media (min-width: 560px) {
  .mb75-m {
    margin-bottom: 0.75rem !important;
  }
}
@media (min-width: 1024px) {
  .mb75-l {
    margin-bottom: 0.75rem !important;
  }
}
@media (min-width: 1600px) {
  .mb75-xl {
    margin-bottom: 0.75rem !important;
  }
}

.pt75 {
  padding-top: 0.75rem !important;
}
@media (max-width: 559px) {
  .pt75-s {
    padding-top: 0.75rem !important;
  }
}
@media (min-width: 560px) {
  .pt75-m {
    padding-top: 0.75rem !important;
  }
}
@media (min-width: 1024px) {
  .pt75-l {
    padding-top: 0.75rem !important;
  }
}
@media (min-width: 1600px) {
  .pt75-xl {
    padding-top: 0.75rem !important;
  }
}

.pb75 {
  padding-bottom: 0.75rem !important;
}
@media (max-width: 559px) {
  .pb75-s {
    padding-bottom: 0.75rem !important;
  }
}
@media (min-width: 560px) {
  .pb75-m {
    padding-bottom: 0.75rem !important;
  }
}
@media (min-width: 1024px) {
  .pb75-l {
    padding-bottom: 0.75rem !important;
  }
}
@media (min-width: 1600px) {
  .pb75-xl {
    padding-bottom: 0.75rem !important;
  }
}

.mt100 {
  margin-top: 1rem !important;
}
@media (max-width: 559px) {
  .mt100-s {
    margin-top: 1rem !important;
  }
}
@media (min-width: 560px) {
  .mt100-m {
    margin-top: 1rem !important;
  }
}
@media (min-width: 1024px) {
  .mt100-l {
    margin-top: 1rem !important;
  }
}
@media (min-width: 1600px) {
  .mt100-xl {
    margin-top: 1rem !important;
  }
}

.mb100 {
  margin-bottom: 1rem !important;
}
@media (max-width: 559px) {
  .mb100-s {
    margin-bottom: 1rem !important;
  }
}
@media (min-width: 560px) {
  .mb100-m {
    margin-bottom: 1rem !important;
  }
}
@media (min-width: 1024px) {
  .mb100-l {
    margin-bottom: 1rem !important;
  }
}
@media (min-width: 1600px) {
  .mb100-xl {
    margin-bottom: 1rem !important;
  }
}

.pt100 {
  padding-top: 1rem !important;
}
@media (max-width: 559px) {
  .pt100-s {
    padding-top: 1rem !important;
  }
}
@media (min-width: 560px) {
  .pt100-m {
    padding-top: 1rem !important;
  }
}
@media (min-width: 1024px) {
  .pt100-l {
    padding-top: 1rem !important;
  }
}
@media (min-width: 1600px) {
  .pt100-xl {
    padding-top: 1rem !important;
  }
}

.pb100 {
  padding-bottom: 1rem !important;
}
@media (max-width: 559px) {
  .pb100-s {
    padding-bottom: 1rem !important;
  }
}
@media (min-width: 560px) {
  .pb100-m {
    padding-bottom: 1rem !important;
  }
}
@media (min-width: 1024px) {
  .pb100-l {
    padding-bottom: 1rem !important;
  }
}
@media (min-width: 1600px) {
  .pb100-xl {
    padding-bottom: 1rem !important;
  }
}

.mt125 {
  margin-top: 1.25rem !important;
}
@media (max-width: 559px) {
  .mt125-s {
    margin-top: 1.25rem !important;
  }
}
@media (min-width: 560px) {
  .mt125-m {
    margin-top: 1.25rem !important;
  }
}
@media (min-width: 1024px) {
  .mt125-l {
    margin-top: 1.25rem !important;
  }
}
@media (min-width: 1600px) {
  .mt125-xl {
    margin-top: 1.25rem !important;
  }
}

.mb125 {
  margin-bottom: 1.25rem !important;
}
@media (max-width: 559px) {
  .mb125-s {
    margin-bottom: 1.25rem !important;
  }
}
@media (min-width: 560px) {
  .mb125-m {
    margin-bottom: 1.25rem !important;
  }
}
@media (min-width: 1024px) {
  .mb125-l {
    margin-bottom: 1.25rem !important;
  }
}
@media (min-width: 1600px) {
  .mb125-xl {
    margin-bottom: 1.25rem !important;
  }
}

.pt125 {
  padding-top: 1.25rem !important;
}
@media (max-width: 559px) {
  .pt125-s {
    padding-top: 1.25rem !important;
  }
}
@media (min-width: 560px) {
  .pt125-m {
    padding-top: 1.25rem !important;
  }
}
@media (min-width: 1024px) {
  .pt125-l {
    padding-top: 1.25rem !important;
  }
}
@media (min-width: 1600px) {
  .pt125-xl {
    padding-top: 1.25rem !important;
  }
}

.pb125 {
  padding-bottom: 1.25rem !important;
}
@media (max-width: 559px) {
  .pb125-s {
    padding-bottom: 1.25rem !important;
  }
}
@media (min-width: 560px) {
  .pb125-m {
    padding-bottom: 1.25rem !important;
  }
}
@media (min-width: 1024px) {
  .pb125-l {
    padding-bottom: 1.25rem !important;
  }
}
@media (min-width: 1600px) {
  .pb125-xl {
    padding-bottom: 1.25rem !important;
  }
}

.mt150 {
  margin-top: 1.5rem !important;
}
@media (max-width: 559px) {
  .mt150-s {
    margin-top: 1.5rem !important;
  }
}
@media (min-width: 560px) {
  .mt150-m {
    margin-top: 1.5rem !important;
  }
}
@media (min-width: 1024px) {
  .mt150-l {
    margin-top: 1.5rem !important;
  }
}
@media (min-width: 1600px) {
  .mt150-xl {
    margin-top: 1.5rem !important;
  }
}

.mb150 {
  margin-bottom: 1.5rem !important;
}
@media (max-width: 559px) {
  .mb150-s {
    margin-bottom: 1.5rem !important;
  }
}
@media (min-width: 560px) {
  .mb150-m {
    margin-bottom: 1.5rem !important;
  }
}
@media (min-width: 1024px) {
  .mb150-l {
    margin-bottom: 1.5rem !important;
  }
}
@media (min-width: 1600px) {
  .mb150-xl {
    margin-bottom: 1.5rem !important;
  }
}

.pt150 {
  padding-top: 1.5rem !important;
}
@media (max-width: 559px) {
  .pt150-s {
    padding-top: 1.5rem !important;
  }
}
@media (min-width: 560px) {
  .pt150-m {
    padding-top: 1.5rem !important;
  }
}
@media (min-width: 1024px) {
  .pt150-l {
    padding-top: 1.5rem !important;
  }
}
@media (min-width: 1600px) {
  .pt150-xl {
    padding-top: 1.5rem !important;
  }
}

.pb150 {
  padding-bottom: 1.5rem !important;
}
@media (max-width: 559px) {
  .pb150-s {
    padding-bottom: 1.5rem !important;
  }
}
@media (min-width: 560px) {
  .pb150-m {
    padding-bottom: 1.5rem !important;
  }
}
@media (min-width: 1024px) {
  .pb150-l {
    padding-bottom: 1.5rem !important;
  }
}
@media (min-width: 1600px) {
  .pb150-xl {
    padding-bottom: 1.5rem !important;
  }
}

.mt175 {
  margin-top: 1.75rem !important;
}
@media (max-width: 559px) {
  .mt175-s {
    margin-top: 1.75rem !important;
  }
}
@media (min-width: 560px) {
  .mt175-m {
    margin-top: 1.75rem !important;
  }
}
@media (min-width: 1024px) {
  .mt175-l {
    margin-top: 1.75rem !important;
  }
}
@media (min-width: 1600px) {
  .mt175-xl {
    margin-top: 1.75rem !important;
  }
}

.mb175 {
  margin-bottom: 1.75rem !important;
}
@media (max-width: 559px) {
  .mb175-s {
    margin-bottom: 1.75rem !important;
  }
}
@media (min-width: 560px) {
  .mb175-m {
    margin-bottom: 1.75rem !important;
  }
}
@media (min-width: 1024px) {
  .mb175-l {
    margin-bottom: 1.75rem !important;
  }
}
@media (min-width: 1600px) {
  .mb175-xl {
    margin-bottom: 1.75rem !important;
  }
}

.pt175 {
  padding-top: 1.75rem !important;
}
@media (max-width: 559px) {
  .pt175-s {
    padding-top: 1.75rem !important;
  }
}
@media (min-width: 560px) {
  .pt175-m {
    padding-top: 1.75rem !important;
  }
}
@media (min-width: 1024px) {
  .pt175-l {
    padding-top: 1.75rem !important;
  }
}
@media (min-width: 1600px) {
  .pt175-xl {
    padding-top: 1.75rem !important;
  }
}

.pb175 {
  padding-bottom: 1.75rem !important;
}
@media (max-width: 559px) {
  .pb175-s {
    padding-bottom: 1.75rem !important;
  }
}
@media (min-width: 560px) {
  .pb175-m {
    padding-bottom: 1.75rem !important;
  }
}
@media (min-width: 1024px) {
  .pb175-l {
    padding-bottom: 1.75rem !important;
  }
}
@media (min-width: 1600px) {
  .pb175-xl {
    padding-bottom: 1.75rem !important;
  }
}

.mt200 {
  margin-top: 2rem !important;
}
@media (max-width: 559px) {
  .mt200-s {
    margin-top: 2rem !important;
  }
}
@media (min-width: 560px) {
  .mt200-m {
    margin-top: 2rem !important;
  }
}
@media (min-width: 1024px) {
  .mt200-l {
    margin-top: 2rem !important;
  }
}
@media (min-width: 1600px) {
  .mt200-xl {
    margin-top: 2rem !important;
  }
}

.mb200 {
  margin-bottom: 2rem !important;
}
@media (max-width: 559px) {
  .mb200-s {
    margin-bottom: 2rem !important;
  }
}
@media (min-width: 560px) {
  .mb200-m {
    margin-bottom: 2rem !important;
  }
}
@media (min-width: 1024px) {
  .mb200-l {
    margin-bottom: 2rem !important;
  }
}
@media (min-width: 1600px) {
  .mb200-xl {
    margin-bottom: 2rem !important;
  }
}

.pt200 {
  padding-top: 2rem !important;
}
@media (max-width: 559px) {
  .pt200-s {
    padding-top: 2rem !important;
  }
}
@media (min-width: 560px) {
  .pt200-m {
    padding-top: 2rem !important;
  }
}
@media (min-width: 1024px) {
  .pt200-l {
    padding-top: 2rem !important;
  }
}
@media (min-width: 1600px) {
  .pt200-xl {
    padding-top: 2rem !important;
  }
}

.pb200 {
  padding-bottom: 2rem !important;
}
@media (max-width: 559px) {
  .pb200-s {
    padding-bottom: 2rem !important;
  }
}
@media (min-width: 560px) {
  .pb200-m {
    padding-bottom: 2rem !important;
  }
}
@media (min-width: 1024px) {
  .pb200-l {
    padding-bottom: 2rem !important;
  }
}
@media (min-width: 1600px) {
  .pb200-xl {
    padding-bottom: 2rem !important;
  }
}

.mt225 {
  margin-top: 2.25rem !important;
}
@media (max-width: 559px) {
  .mt225-s {
    margin-top: 2.25rem !important;
  }
}
@media (min-width: 560px) {
  .mt225-m {
    margin-top: 2.25rem !important;
  }
}
@media (min-width: 1024px) {
  .mt225-l {
    margin-top: 2.25rem !important;
  }
}
@media (min-width: 1600px) {
  .mt225-xl {
    margin-top: 2.25rem !important;
  }
}

.mb225 {
  margin-bottom: 2.25rem !important;
}
@media (max-width: 559px) {
  .mb225-s {
    margin-bottom: 2.25rem !important;
  }
}
@media (min-width: 560px) {
  .mb225-m {
    margin-bottom: 2.25rem !important;
  }
}
@media (min-width: 1024px) {
  .mb225-l {
    margin-bottom: 2.25rem !important;
  }
}
@media (min-width: 1600px) {
  .mb225-xl {
    margin-bottom: 2.25rem !important;
  }
}

.pt225 {
  padding-top: 2.25rem !important;
}
@media (max-width: 559px) {
  .pt225-s {
    padding-top: 2.25rem !important;
  }
}
@media (min-width: 560px) {
  .pt225-m {
    padding-top: 2.25rem !important;
  }
}
@media (min-width: 1024px) {
  .pt225-l {
    padding-top: 2.25rem !important;
  }
}
@media (min-width: 1600px) {
  .pt225-xl {
    padding-top: 2.25rem !important;
  }
}

.pb225 {
  padding-bottom: 2.25rem !important;
}
@media (max-width: 559px) {
  .pb225-s {
    padding-bottom: 2.25rem !important;
  }
}
@media (min-width: 560px) {
  .pb225-m {
    padding-bottom: 2.25rem !important;
  }
}
@media (min-width: 1024px) {
  .pb225-l {
    padding-bottom: 2.25rem !important;
  }
}
@media (min-width: 1600px) {
  .pb225-xl {
    padding-bottom: 2.25rem !important;
  }
}

.mt250 {
  margin-top: 2.5rem !important;
}
@media (max-width: 559px) {
  .mt250-s {
    margin-top: 2.5rem !important;
  }
}
@media (min-width: 560px) {
  .mt250-m {
    margin-top: 2.5rem !important;
  }
}
@media (min-width: 1024px) {
  .mt250-l {
    margin-top: 2.5rem !important;
  }
}
@media (min-width: 1600px) {
  .mt250-xl {
    margin-top: 2.5rem !important;
  }
}

.mb250 {
  margin-bottom: 2.5rem !important;
}
@media (max-width: 559px) {
  .mb250-s {
    margin-bottom: 2.5rem !important;
  }
}
@media (min-width: 560px) {
  .mb250-m {
    margin-bottom: 2.5rem !important;
  }
}
@media (min-width: 1024px) {
  .mb250-l {
    margin-bottom: 2.5rem !important;
  }
}
@media (min-width: 1600px) {
  .mb250-xl {
    margin-bottom: 2.5rem !important;
  }
}

.pt250 {
  padding-top: 2.5rem !important;
}
@media (max-width: 559px) {
  .pt250-s {
    padding-top: 2.5rem !important;
  }
}
@media (min-width: 560px) {
  .pt250-m {
    padding-top: 2.5rem !important;
  }
}
@media (min-width: 1024px) {
  .pt250-l {
    padding-top: 2.5rem !important;
  }
}
@media (min-width: 1600px) {
  .pt250-xl {
    padding-top: 2.5rem !important;
  }
}

.pb250 {
  padding-bottom: 2.5rem !important;
}
@media (max-width: 559px) {
  .pb250-s {
    padding-bottom: 2.5rem !important;
  }
}
@media (min-width: 560px) {
  .pb250-m {
    padding-bottom: 2.5rem !important;
  }
}
@media (min-width: 1024px) {
  .pb250-l {
    padding-bottom: 2.5rem !important;
  }
}
@media (min-width: 1600px) {
  .pb250-xl {
    padding-bottom: 2.5rem !important;
  }
}

.mt275 {
  margin-top: 2.75rem !important;
}
@media (max-width: 559px) {
  .mt275-s {
    margin-top: 2.75rem !important;
  }
}
@media (min-width: 560px) {
  .mt275-m {
    margin-top: 2.75rem !important;
  }
}
@media (min-width: 1024px) {
  .mt275-l {
    margin-top: 2.75rem !important;
  }
}
@media (min-width: 1600px) {
  .mt275-xl {
    margin-top: 2.75rem !important;
  }
}

.mb275 {
  margin-bottom: 2.75rem !important;
}
@media (max-width: 559px) {
  .mb275-s {
    margin-bottom: 2.75rem !important;
  }
}
@media (min-width: 560px) {
  .mb275-m {
    margin-bottom: 2.75rem !important;
  }
}
@media (min-width: 1024px) {
  .mb275-l {
    margin-bottom: 2.75rem !important;
  }
}
@media (min-width: 1600px) {
  .mb275-xl {
    margin-bottom: 2.75rem !important;
  }
}

.pt275 {
  padding-top: 2.75rem !important;
}
@media (max-width: 559px) {
  .pt275-s {
    padding-top: 2.75rem !important;
  }
}
@media (min-width: 560px) {
  .pt275-m {
    padding-top: 2.75rem !important;
  }
}
@media (min-width: 1024px) {
  .pt275-l {
    padding-top: 2.75rem !important;
  }
}
@media (min-width: 1600px) {
  .pt275-xl {
    padding-top: 2.75rem !important;
  }
}

.pb275 {
  padding-bottom: 2.75rem !important;
}
@media (max-width: 559px) {
  .pb275-s {
    padding-bottom: 2.75rem !important;
  }
}
@media (min-width: 560px) {
  .pb275-m {
    padding-bottom: 2.75rem !important;
  }
}
@media (min-width: 1024px) {
  .pb275-l {
    padding-bottom: 2.75rem !important;
  }
}
@media (min-width: 1600px) {
  .pb275-xl {
    padding-bottom: 2.75rem !important;
  }
}

.mt300 {
  margin-top: 3rem !important;
}
@media (max-width: 559px) {
  .mt300-s {
    margin-top: 3rem !important;
  }
}
@media (min-width: 560px) {
  .mt300-m {
    margin-top: 3rem !important;
  }
}
@media (min-width: 1024px) {
  .mt300-l {
    margin-top: 3rem !important;
  }
}
@media (min-width: 1600px) {
  .mt300-xl {
    margin-top: 3rem !important;
  }
}

.mb300 {
  margin-bottom: 3rem !important;
}
@media (max-width: 559px) {
  .mb300-s {
    margin-bottom: 3rem !important;
  }
}
@media (min-width: 560px) {
  .mb300-m {
    margin-bottom: 3rem !important;
  }
}
@media (min-width: 1024px) {
  .mb300-l {
    margin-bottom: 3rem !important;
  }
}
@media (min-width: 1600px) {
  .mb300-xl {
    margin-bottom: 3rem !important;
  }
}

.pt300 {
  padding-top: 3rem !important;
}
@media (max-width: 559px) {
  .pt300-s {
    padding-top: 3rem !important;
  }
}
@media (min-width: 560px) {
  .pt300-m {
    padding-top: 3rem !important;
  }
}
@media (min-width: 1024px) {
  .pt300-l {
    padding-top: 3rem !important;
  }
}
@media (min-width: 1600px) {
  .pt300-xl {
    padding-top: 3rem !important;
  }
}

.pb300 {
  padding-bottom: 3rem !important;
}
@media (max-width: 559px) {
  .pb300-s {
    padding-bottom: 3rem !important;
  }
}
@media (min-width: 560px) {
  .pb300-m {
    padding-bottom: 3rem !important;
  }
}
@media (min-width: 1024px) {
  .pb300-l {
    padding-bottom: 3rem !important;
  }
}
@media (min-width: 1600px) {
  .pb300-xl {
    padding-bottom: 3rem !important;
  }
}

.mt325 {
  margin-top: 3.25rem !important;
}
@media (max-width: 559px) {
  .mt325-s {
    margin-top: 3.25rem !important;
  }
}
@media (min-width: 560px) {
  .mt325-m {
    margin-top: 3.25rem !important;
  }
}
@media (min-width: 1024px) {
  .mt325-l {
    margin-top: 3.25rem !important;
  }
}
@media (min-width: 1600px) {
  .mt325-xl {
    margin-top: 3.25rem !important;
  }
}

.mb325 {
  margin-bottom: 3.25rem !important;
}
@media (max-width: 559px) {
  .mb325-s {
    margin-bottom: 3.25rem !important;
  }
}
@media (min-width: 560px) {
  .mb325-m {
    margin-bottom: 3.25rem !important;
  }
}
@media (min-width: 1024px) {
  .mb325-l {
    margin-bottom: 3.25rem !important;
  }
}
@media (min-width: 1600px) {
  .mb325-xl {
    margin-bottom: 3.25rem !important;
  }
}

.pt325 {
  padding-top: 3.25rem !important;
}
@media (max-width: 559px) {
  .pt325-s {
    padding-top: 3.25rem !important;
  }
}
@media (min-width: 560px) {
  .pt325-m {
    padding-top: 3.25rem !important;
  }
}
@media (min-width: 1024px) {
  .pt325-l {
    padding-top: 3.25rem !important;
  }
}
@media (min-width: 1600px) {
  .pt325-xl {
    padding-top: 3.25rem !important;
  }
}

.pb325 {
  padding-bottom: 3.25rem !important;
}
@media (max-width: 559px) {
  .pb325-s {
    padding-bottom: 3.25rem !important;
  }
}
@media (min-width: 560px) {
  .pb325-m {
    padding-bottom: 3.25rem !important;
  }
}
@media (min-width: 1024px) {
  .pb325-l {
    padding-bottom: 3.25rem !important;
  }
}
@media (min-width: 1600px) {
  .pb325-xl {
    padding-bottom: 3.25rem !important;
  }
}

.mt350 {
  margin-top: 3.5rem !important;
}
@media (max-width: 559px) {
  .mt350-s {
    margin-top: 3.5rem !important;
  }
}
@media (min-width: 560px) {
  .mt350-m {
    margin-top: 3.5rem !important;
  }
}
@media (min-width: 1024px) {
  .mt350-l {
    margin-top: 3.5rem !important;
  }
}
@media (min-width: 1600px) {
  .mt350-xl {
    margin-top: 3.5rem !important;
  }
}

.mb350 {
  margin-bottom: 3.5rem !important;
}
@media (max-width: 559px) {
  .mb350-s {
    margin-bottom: 3.5rem !important;
  }
}
@media (min-width: 560px) {
  .mb350-m {
    margin-bottom: 3.5rem !important;
  }
}
@media (min-width: 1024px) {
  .mb350-l {
    margin-bottom: 3.5rem !important;
  }
}
@media (min-width: 1600px) {
  .mb350-xl {
    margin-bottom: 3.5rem !important;
  }
}

.pt350 {
  padding-top: 3.5rem !important;
}
@media (max-width: 559px) {
  .pt350-s {
    padding-top: 3.5rem !important;
  }
}
@media (min-width: 560px) {
  .pt350-m {
    padding-top: 3.5rem !important;
  }
}
@media (min-width: 1024px) {
  .pt350-l {
    padding-top: 3.5rem !important;
  }
}
@media (min-width: 1600px) {
  .pt350-xl {
    padding-top: 3.5rem !important;
  }
}

.pb350 {
  padding-bottom: 3.5rem !important;
}
@media (max-width: 559px) {
  .pb350-s {
    padding-bottom: 3.5rem !important;
  }
}
@media (min-width: 560px) {
  .pb350-m {
    padding-bottom: 3.5rem !important;
  }
}
@media (min-width: 1024px) {
  .pb350-l {
    padding-bottom: 3.5rem !important;
  }
}
@media (min-width: 1600px) {
  .pb350-xl {
    padding-bottom: 3.5rem !important;
  }
}

.mt375 {
  margin-top: 3.75rem !important;
}
@media (max-width: 559px) {
  .mt375-s {
    margin-top: 3.75rem !important;
  }
}
@media (min-width: 560px) {
  .mt375-m {
    margin-top: 3.75rem !important;
  }
}
@media (min-width: 1024px) {
  .mt375-l {
    margin-top: 3.75rem !important;
  }
}
@media (min-width: 1600px) {
  .mt375-xl {
    margin-top: 3.75rem !important;
  }
}

.mb375 {
  margin-bottom: 3.75rem !important;
}
@media (max-width: 559px) {
  .mb375-s {
    margin-bottom: 3.75rem !important;
  }
}
@media (min-width: 560px) {
  .mb375-m {
    margin-bottom: 3.75rem !important;
  }
}
@media (min-width: 1024px) {
  .mb375-l {
    margin-bottom: 3.75rem !important;
  }
}
@media (min-width: 1600px) {
  .mb375-xl {
    margin-bottom: 3.75rem !important;
  }
}

.pt375 {
  padding-top: 3.75rem !important;
}
@media (max-width: 559px) {
  .pt375-s {
    padding-top: 3.75rem !important;
  }
}
@media (min-width: 560px) {
  .pt375-m {
    padding-top: 3.75rem !important;
  }
}
@media (min-width: 1024px) {
  .pt375-l {
    padding-top: 3.75rem !important;
  }
}
@media (min-width: 1600px) {
  .pt375-xl {
    padding-top: 3.75rem !important;
  }
}

.pb375 {
  padding-bottom: 3.75rem !important;
}
@media (max-width: 559px) {
  .pb375-s {
    padding-bottom: 3.75rem !important;
  }
}
@media (min-width: 560px) {
  .pb375-m {
    padding-bottom: 3.75rem !important;
  }
}
@media (min-width: 1024px) {
  .pb375-l {
    padding-bottom: 3.75rem !important;
  }
}
@media (min-width: 1600px) {
  .pb375-xl {
    padding-bottom: 3.75rem !important;
  }
}

.mt400 {
  margin-top: 4rem !important;
}
@media (max-width: 559px) {
  .mt400-s {
    margin-top: 4rem !important;
  }
}
@media (min-width: 560px) {
  .mt400-m {
    margin-top: 4rem !important;
  }
}
@media (min-width: 1024px) {
  .mt400-l {
    margin-top: 4rem !important;
  }
}
@media (min-width: 1600px) {
  .mt400-xl {
    margin-top: 4rem !important;
  }
}

.mb400 {
  margin-bottom: 4rem !important;
}
@media (max-width: 559px) {
  .mb400-s {
    margin-bottom: 4rem !important;
  }
}
@media (min-width: 560px) {
  .mb400-m {
    margin-bottom: 4rem !important;
  }
}
@media (min-width: 1024px) {
  .mb400-l {
    margin-bottom: 4rem !important;
  }
}
@media (min-width: 1600px) {
  .mb400-xl {
    margin-bottom: 4rem !important;
  }
}

.pt400 {
  padding-top: 4rem !important;
}
@media (max-width: 559px) {
  .pt400-s {
    padding-top: 4rem !important;
  }
}
@media (min-width: 560px) {
  .pt400-m {
    padding-top: 4rem !important;
  }
}
@media (min-width: 1024px) {
  .pt400-l {
    padding-top: 4rem !important;
  }
}
@media (min-width: 1600px) {
  .pt400-xl {
    padding-top: 4rem !important;
  }
}

.pb400 {
  padding-bottom: 4rem !important;
}
@media (max-width: 559px) {
  .pb400-s {
    padding-bottom: 4rem !important;
  }
}
@media (min-width: 560px) {
  .pb400-m {
    padding-bottom: 4rem !important;
  }
}
@media (min-width: 1024px) {
  .pb400-l {
    padding-bottom: 4rem !important;
  }
}
@media (min-width: 1600px) {
  .pb400-xl {
    padding-bottom: 4rem !important;
  }
}

.mt425 {
  margin-top: 4.25rem !important;
}
@media (max-width: 559px) {
  .mt425-s {
    margin-top: 4.25rem !important;
  }
}
@media (min-width: 560px) {
  .mt425-m {
    margin-top: 4.25rem !important;
  }
}
@media (min-width: 1024px) {
  .mt425-l {
    margin-top: 4.25rem !important;
  }
}
@media (min-width: 1600px) {
  .mt425-xl {
    margin-top: 4.25rem !important;
  }
}

.mb425 {
  margin-bottom: 4.25rem !important;
}
@media (max-width: 559px) {
  .mb425-s {
    margin-bottom: 4.25rem !important;
  }
}
@media (min-width: 560px) {
  .mb425-m {
    margin-bottom: 4.25rem !important;
  }
}
@media (min-width: 1024px) {
  .mb425-l {
    margin-bottom: 4.25rem !important;
  }
}
@media (min-width: 1600px) {
  .mb425-xl {
    margin-bottom: 4.25rem !important;
  }
}

.pt425 {
  padding-top: 4.25rem !important;
}
@media (max-width: 559px) {
  .pt425-s {
    padding-top: 4.25rem !important;
  }
}
@media (min-width: 560px) {
  .pt425-m {
    padding-top: 4.25rem !important;
  }
}
@media (min-width: 1024px) {
  .pt425-l {
    padding-top: 4.25rem !important;
  }
}
@media (min-width: 1600px) {
  .pt425-xl {
    padding-top: 4.25rem !important;
  }
}

.pb425 {
  padding-bottom: 4.25rem !important;
}
@media (max-width: 559px) {
  .pb425-s {
    padding-bottom: 4.25rem !important;
  }
}
@media (min-width: 560px) {
  .pb425-m {
    padding-bottom: 4.25rem !important;
  }
}
@media (min-width: 1024px) {
  .pb425-l {
    padding-bottom: 4.25rem !important;
  }
}
@media (min-width: 1600px) {
  .pb425-xl {
    padding-bottom: 4.25rem !important;
  }
}

.mt450 {
  margin-top: 4.5rem !important;
}
@media (max-width: 559px) {
  .mt450-s {
    margin-top: 4.5rem !important;
  }
}
@media (min-width: 560px) {
  .mt450-m {
    margin-top: 4.5rem !important;
  }
}
@media (min-width: 1024px) {
  .mt450-l {
    margin-top: 4.5rem !important;
  }
}
@media (min-width: 1600px) {
  .mt450-xl {
    margin-top: 4.5rem !important;
  }
}

.mb450 {
  margin-bottom: 4.5rem !important;
}
@media (max-width: 559px) {
  .mb450-s {
    margin-bottom: 4.5rem !important;
  }
}
@media (min-width: 560px) {
  .mb450-m {
    margin-bottom: 4.5rem !important;
  }
}
@media (min-width: 1024px) {
  .mb450-l {
    margin-bottom: 4.5rem !important;
  }
}
@media (min-width: 1600px) {
  .mb450-xl {
    margin-bottom: 4.5rem !important;
  }
}

.pt450 {
  padding-top: 4.5rem !important;
}
@media (max-width: 559px) {
  .pt450-s {
    padding-top: 4.5rem !important;
  }
}
@media (min-width: 560px) {
  .pt450-m {
    padding-top: 4.5rem !important;
  }
}
@media (min-width: 1024px) {
  .pt450-l {
    padding-top: 4.5rem !important;
  }
}
@media (min-width: 1600px) {
  .pt450-xl {
    padding-top: 4.5rem !important;
  }
}

.pb450 {
  padding-bottom: 4.5rem !important;
}
@media (max-width: 559px) {
  .pb450-s {
    padding-bottom: 4.5rem !important;
  }
}
@media (min-width: 560px) {
  .pb450-m {
    padding-bottom: 4.5rem !important;
  }
}
@media (min-width: 1024px) {
  .pb450-l {
    padding-bottom: 4.5rem !important;
  }
}
@media (min-width: 1600px) {
  .pb450-xl {
    padding-bottom: 4.5rem !important;
  }
}

.mt475 {
  margin-top: 4.75rem !important;
}
@media (max-width: 559px) {
  .mt475-s {
    margin-top: 4.75rem !important;
  }
}
@media (min-width: 560px) {
  .mt475-m {
    margin-top: 4.75rem !important;
  }
}
@media (min-width: 1024px) {
  .mt475-l {
    margin-top: 4.75rem !important;
  }
}
@media (min-width: 1600px) {
  .mt475-xl {
    margin-top: 4.75rem !important;
  }
}

.mb475 {
  margin-bottom: 4.75rem !important;
}
@media (max-width: 559px) {
  .mb475-s {
    margin-bottom: 4.75rem !important;
  }
}
@media (min-width: 560px) {
  .mb475-m {
    margin-bottom: 4.75rem !important;
  }
}
@media (min-width: 1024px) {
  .mb475-l {
    margin-bottom: 4.75rem !important;
  }
}
@media (min-width: 1600px) {
  .mb475-xl {
    margin-bottom: 4.75rem !important;
  }
}

.pt475 {
  padding-top: 4.75rem !important;
}
@media (max-width: 559px) {
  .pt475-s {
    padding-top: 4.75rem !important;
  }
}
@media (min-width: 560px) {
  .pt475-m {
    padding-top: 4.75rem !important;
  }
}
@media (min-width: 1024px) {
  .pt475-l {
    padding-top: 4.75rem !important;
  }
}
@media (min-width: 1600px) {
  .pt475-xl {
    padding-top: 4.75rem !important;
  }
}

.pb475 {
  padding-bottom: 4.75rem !important;
}
@media (max-width: 559px) {
  .pb475-s {
    padding-bottom: 4.75rem !important;
  }
}
@media (min-width: 560px) {
  .pb475-m {
    padding-bottom: 4.75rem !important;
  }
}
@media (min-width: 1024px) {
  .pb475-l {
    padding-bottom: 4.75rem !important;
  }
}
@media (min-width: 1600px) {
  .pb475-xl {
    padding-bottom: 4.75rem !important;
  }
}

.mt500 {
  margin-top: 5rem !important;
}
@media (max-width: 559px) {
  .mt500-s {
    margin-top: 5rem !important;
  }
}
@media (min-width: 560px) {
  .mt500-m {
    margin-top: 5rem !important;
  }
}
@media (min-width: 1024px) {
  .mt500-l {
    margin-top: 5rem !important;
  }
}
@media (min-width: 1600px) {
  .mt500-xl {
    margin-top: 5rem !important;
  }
}

.mb500 {
  margin-bottom: 5rem !important;
}
@media (max-width: 559px) {
  .mb500-s {
    margin-bottom: 5rem !important;
  }
}
@media (min-width: 560px) {
  .mb500-m {
    margin-bottom: 5rem !important;
  }
}
@media (min-width: 1024px) {
  .mb500-l {
    margin-bottom: 5rem !important;
  }
}
@media (min-width: 1600px) {
  .mb500-xl {
    margin-bottom: 5rem !important;
  }
}

.pt500 {
  padding-top: 5rem !important;
}
@media (max-width: 559px) {
  .pt500-s {
    padding-top: 5rem !important;
  }
}
@media (min-width: 560px) {
  .pt500-m {
    padding-top: 5rem !important;
  }
}
@media (min-width: 1024px) {
  .pt500-l {
    padding-top: 5rem !important;
  }
}
@media (min-width: 1600px) {
  .pt500-xl {
    padding-top: 5rem !important;
  }
}

.pb500 {
  padding-bottom: 5rem !important;
}
@media (max-width: 559px) {
  .pb500-s {
    padding-bottom: 5rem !important;
  }
}
@media (min-width: 560px) {
  .pb500-m {
    padding-bottom: 5rem !important;
  }
}
@media (min-width: 1024px) {
  .pb500-l {
    padding-bottom: 5rem !important;
  }
}
@media (min-width: 1600px) {
  .pb500-xl {
    padding-bottom: 5rem !important;
  }
}

.mt525 {
  margin-top: 5.25rem !important;
}
@media (max-width: 559px) {
  .mt525-s {
    margin-top: 5.25rem !important;
  }
}
@media (min-width: 560px) {
  .mt525-m {
    margin-top: 5.25rem !important;
  }
}
@media (min-width: 1024px) {
  .mt525-l {
    margin-top: 5.25rem !important;
  }
}
@media (min-width: 1600px) {
  .mt525-xl {
    margin-top: 5.25rem !important;
  }
}

.mb525 {
  margin-bottom: 5.25rem !important;
}
@media (max-width: 559px) {
  .mb525-s {
    margin-bottom: 5.25rem !important;
  }
}
@media (min-width: 560px) {
  .mb525-m {
    margin-bottom: 5.25rem !important;
  }
}
@media (min-width: 1024px) {
  .mb525-l {
    margin-bottom: 5.25rem !important;
  }
}
@media (min-width: 1600px) {
  .mb525-xl {
    margin-bottom: 5.25rem !important;
  }
}

.pt525 {
  padding-top: 5.25rem !important;
}
@media (max-width: 559px) {
  .pt525-s {
    padding-top: 5.25rem !important;
  }
}
@media (min-width: 560px) {
  .pt525-m {
    padding-top: 5.25rem !important;
  }
}
@media (min-width: 1024px) {
  .pt525-l {
    padding-top: 5.25rem !important;
  }
}
@media (min-width: 1600px) {
  .pt525-xl {
    padding-top: 5.25rem !important;
  }
}

.pb525 {
  padding-bottom: 5.25rem !important;
}
@media (max-width: 559px) {
  .pb525-s {
    padding-bottom: 5.25rem !important;
  }
}
@media (min-width: 560px) {
  .pb525-m {
    padding-bottom: 5.25rem !important;
  }
}
@media (min-width: 1024px) {
  .pb525-l {
    padding-bottom: 5.25rem !important;
  }
}
@media (min-width: 1600px) {
  .pb525-xl {
    padding-bottom: 5.25rem !important;
  }
}

.mt550 {
  margin-top: 5.5rem !important;
}
@media (max-width: 559px) {
  .mt550-s {
    margin-top: 5.5rem !important;
  }
}
@media (min-width: 560px) {
  .mt550-m {
    margin-top: 5.5rem !important;
  }
}
@media (min-width: 1024px) {
  .mt550-l {
    margin-top: 5.5rem !important;
  }
}
@media (min-width: 1600px) {
  .mt550-xl {
    margin-top: 5.5rem !important;
  }
}

.mb550 {
  margin-bottom: 5.5rem !important;
}
@media (max-width: 559px) {
  .mb550-s {
    margin-bottom: 5.5rem !important;
  }
}
@media (min-width: 560px) {
  .mb550-m {
    margin-bottom: 5.5rem !important;
  }
}
@media (min-width: 1024px) {
  .mb550-l {
    margin-bottom: 5.5rem !important;
  }
}
@media (min-width: 1600px) {
  .mb550-xl {
    margin-bottom: 5.5rem !important;
  }
}

.pt550 {
  padding-top: 5.5rem !important;
}
@media (max-width: 559px) {
  .pt550-s {
    padding-top: 5.5rem !important;
  }
}
@media (min-width: 560px) {
  .pt550-m {
    padding-top: 5.5rem !important;
  }
}
@media (min-width: 1024px) {
  .pt550-l {
    padding-top: 5.5rem !important;
  }
}
@media (min-width: 1600px) {
  .pt550-xl {
    padding-top: 5.5rem !important;
  }
}

.pb550 {
  padding-bottom: 5.5rem !important;
}
@media (max-width: 559px) {
  .pb550-s {
    padding-bottom: 5.5rem !important;
  }
}
@media (min-width: 560px) {
  .pb550-m {
    padding-bottom: 5.5rem !important;
  }
}
@media (min-width: 1024px) {
  .pb550-l {
    padding-bottom: 5.5rem !important;
  }
}
@media (min-width: 1600px) {
  .pb550-xl {
    padding-bottom: 5.5rem !important;
  }
}

.mt575 {
  margin-top: 5.75rem !important;
}
@media (max-width: 559px) {
  .mt575-s {
    margin-top: 5.75rem !important;
  }
}
@media (min-width: 560px) {
  .mt575-m {
    margin-top: 5.75rem !important;
  }
}
@media (min-width: 1024px) {
  .mt575-l {
    margin-top: 5.75rem !important;
  }
}
@media (min-width: 1600px) {
  .mt575-xl {
    margin-top: 5.75rem !important;
  }
}

.mb575 {
  margin-bottom: 5.75rem !important;
}
@media (max-width: 559px) {
  .mb575-s {
    margin-bottom: 5.75rem !important;
  }
}
@media (min-width: 560px) {
  .mb575-m {
    margin-bottom: 5.75rem !important;
  }
}
@media (min-width: 1024px) {
  .mb575-l {
    margin-bottom: 5.75rem !important;
  }
}
@media (min-width: 1600px) {
  .mb575-xl {
    margin-bottom: 5.75rem !important;
  }
}

.pt575 {
  padding-top: 5.75rem !important;
}
@media (max-width: 559px) {
  .pt575-s {
    padding-top: 5.75rem !important;
  }
}
@media (min-width: 560px) {
  .pt575-m {
    padding-top: 5.75rem !important;
  }
}
@media (min-width: 1024px) {
  .pt575-l {
    padding-top: 5.75rem !important;
  }
}
@media (min-width: 1600px) {
  .pt575-xl {
    padding-top: 5.75rem !important;
  }
}

.pb575 {
  padding-bottom: 5.75rem !important;
}
@media (max-width: 559px) {
  .pb575-s {
    padding-bottom: 5.75rem !important;
  }
}
@media (min-width: 560px) {
  .pb575-m {
    padding-bottom: 5.75rem !important;
  }
}
@media (min-width: 1024px) {
  .pb575-l {
    padding-bottom: 5.75rem !important;
  }
}
@media (min-width: 1600px) {
  .pb575-xl {
    padding-bottom: 5.75rem !important;
  }
}

.mt600 {
  margin-top: 6rem !important;
}
@media (max-width: 559px) {
  .mt600-s {
    margin-top: 6rem !important;
  }
}
@media (min-width: 560px) {
  .mt600-m {
    margin-top: 6rem !important;
  }
}
@media (min-width: 1024px) {
  .mt600-l {
    margin-top: 6rem !important;
  }
}
@media (min-width: 1600px) {
  .mt600-xl {
    margin-top: 6rem !important;
  }
}

.mb600 {
  margin-bottom: 6rem !important;
}
@media (max-width: 559px) {
  .mb600-s {
    margin-bottom: 6rem !important;
  }
}
@media (min-width: 560px) {
  .mb600-m {
    margin-bottom: 6rem !important;
  }
}
@media (min-width: 1024px) {
  .mb600-l {
    margin-bottom: 6rem !important;
  }
}
@media (min-width: 1600px) {
  .mb600-xl {
    margin-bottom: 6rem !important;
  }
}

.pt600 {
  padding-top: 6rem !important;
}
@media (max-width: 559px) {
  .pt600-s {
    padding-top: 6rem !important;
  }
}
@media (min-width: 560px) {
  .pt600-m {
    padding-top: 6rem !important;
  }
}
@media (min-width: 1024px) {
  .pt600-l {
    padding-top: 6rem !important;
  }
}
@media (min-width: 1600px) {
  .pt600-xl {
    padding-top: 6rem !important;
  }
}

.pb600 {
  padding-bottom: 6rem !important;
}
@media (max-width: 559px) {
  .pb600-s {
    padding-bottom: 6rem !important;
  }
}
@media (min-width: 560px) {
  .pb600-m {
    padding-bottom: 6rem !important;
  }
}
@media (min-width: 1024px) {
  .pb600-l {
    padding-bottom: 6rem !important;
  }
}
@media (min-width: 1600px) {
  .pb600-xl {
    padding-bottom: 6rem !important;
  }
}

.intro_margin {
  margin-top: 3rem;
  @media(min-width: 1300px) {
    margin-top: 7rem;    
  }
}

.sec_padding {
  padding-top: 4rem;
  @media (min-width: 1024px) {
    padding-top: 5rem;
  }
}

.more_small_margin {
  margin-top: 3rem;
}

.small_margin {
  margin-top: 3.5rem;
}

.middle_margin {
  margin-top: 5rem;
}

.middle_end_margin {
  margin-bottom: 5rem;
}

.large_margin {
  margin-top: 7rem;
}

.content_end_padding {
  padding-bottom: 3.5625rem;
  @media (min-width: 1024px) {
    padding-bottom: 160px;
  }
  @media (min-width: 1600px) {
    padding-bottom: 10rem;
  }
}


/* 表示の制御
------------------------------------- */
.display__sp {
  display: none;
}
@media (max-width: 374px) {
  .display__sp {
    display: block;
  }
}

@media (max-width: 559px) {
  .display__tab {
    display: none !important;
  }
}
@media (min-width: 560px) {
  .display__tab {
    display: block;
  }
}

@media (max-width: 1023px) {
  .display__pc {
    display: none !important;
  }
}
@media (min-width: 1024px) {
  .display__pc {
    display: block;
  }
}

@media (max-width: 1023px) {
  .display__nav {
    display: none !important;
  }
}

.hidden__sp {
  display: block;
}
@media (max-width: 374px) {
  .hidden__sp {
    display: none !important;
  }
}

.hidden__tab {
  display: block;
}
@media (min-width: 560px) {
  .hidden__tab {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .hidden__nav {
    display: none !important;
  }
}

.hidden__pc {
  display: block;
}
@media (min-width: 1024px) {
  .hidden__pc {
    display: none !important;
  }
}

.display_space__pc {
  display: inline-block;
}
@media (min-width: 1024px) {
  .display_space__pc {
    display: none !important;
  }
}

.hidden_space__pc {
  display: none;
}
@media (min-width: 1024px) {
  .hidden_space__pc {
    display: inline !important;
  }
}

.d-ib {
  display: inline-block;
}

/* コンテナ
------------------------------------- */
.container_small, .container, .container_big {
  position: relative;
  width: calc(100% - 2rem);
  margin-left: auto;
  margin-right: auto;
  &.zindex--5 {
    z-index: 5;
  }
  &.zindex--10 {
    z-index: 10;
  }
}

.container_big {
  max-width: 1728px;
}

.container {
  max-width: 1248px;
}
.container {
  &.container--col-two {
    display: grid;
    row-gap: 3rem;
    @media(min-width: 768px) {
      grid-template-columns: 4fr 1fr;
      column-gap: 1.72rem;
      row-gap: unset;
    }
    &.container--col-two-wide {
      grid-template-columns: 5fr 2fr;
      @media (max-width: 768px) {
        grid-template-columns: 1fr;
      }
    }
  }
}

.container_small {
  max-width: 1040px;
}

/* 画像ホバー
------------------------------------- */
.post_img {
  margin-bottom: 0;
  width: 100%;
  aspect-ratio: 1.77/1;
  overflow: hidden;
  position: relative;
}
.post_img img {
  transition: 0.3s ease-out;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* フォント
------------------------------------- */
.text-align-center {
  text-align: center;
}

.text-align-left {
  text-align: left;
}

.text-align-right {
  text-align: right;
}

@media (min-width: 1024px) {
  .text-align-center-pc {
    text-align: center;
  }
}

.lead {
  font-size: 1rem;
  line-height: 1.8125;
  letter-spacing: 0.05em;
  @media (min-width: 1024px) {
    line-height: 1.8333333333;
  }
}

p.lead + p.lead {
  margin-top: 1.2rem;
}

.text-align-left--center {
  text-align: left;
  @media (min-width: 1024px) {
    text-align: center;
  }
}

/* パーツ
------------------------------------- */
.ttl_type01 {
  margin-inline: auto;
  margin-bottom: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.ttl_type01:after {
  margin-top: 1rem;
  content: "";
  margin-inline: auto;
  height: 4px;
  background-color: #005bac;
  border-radius: 4px;
  width: 4.44rem;
}
.ttl_type01 .txt {
  color: #222222;
  font-size: 1.56rem;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}

.ttl_type02 {
  margin-bottom: 2rem;
}
.ttl_type02 .border {
  display: block;
  margin-bottom: 1rem;
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: center;
}
.ttl_type02 .border::before {
  background-color: #005bac;
  border-radius: 4px;
  content: "";
  height: 4px;
  width: 15rem;
}
.ttl_type02 .border::after {
  background-color: #cacaca;
  content: "";
  height: 1px;
  width: 100%;
}
.ttl_type02 .txt {
  color: #222222;
  font-size: 1.56rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

.btn_margin {
  margin-top: 2.25rem;
  margin-bottom: 4rem;
}
@media (min-width: 1024px) {
  .btn_margin {
    margin-top: 2.5rem;
    margin-bottom: 7rem;
  }
}

.btn_column {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .btn_column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 1.44rem;
         column-gap: 1.44rem;
  }
}

.btn_type02, .btn_type01 {
  margin-left: auto;
  margin-right: auto;
  display: grid;
  align-items: center;
  justify-content: center;
  place-content: center;
  letter-spacing: 0.05em;
  position: relative;
  max-width: 339px;
  opacity: 1;
  transition: 0.3s ease-in-out;
}
.btn_type02 span, .btn_type01 span {
  font-size: 0.89rem;
  font-weight: 700;
  transition: 0.3s ease-in-out;
}
.btn_type02::after, .btn_type01::after {
  position: absolute;
  top: 50%;
  right: 0.89rem;
  transform: translateY(-50%);
  display: block;
  content: "";
  width: 0.44rem;
  height: 0.83rem;
  aspect-ratio: 1/1;
  background: url("https://46923556.fs1.hubspotusercontent-na1.net/hubfs/46923556/arrow_white.svg") transparent no-repeat center/contain;
  transition: 0.3s right ease-in-out;
}
.btn_type02:hover, .btn_type01:hover {
  opacity: 0.75;
}
.btn_type02:hover::after, .btn_type01:hover::after {
  right: 0.91rem;
}

.btn_type01 {
  padding: 0.72rem;
  width: 100%;
  color: #ffffff;
  background: #005bac;
  text-align: center;
}

.btn_type02 {
  padding: 0.94rem 2.63rem;
  width: -moz-fit-content;
  width: fit-content;
  max-width: unset;
  color: #ffffff;
  background-color: #ffe389;
  text-align: center;
  box-shadow: 0.2rem 0.2rem 0.6rem rgba(0, 0, 0, 0.2);
}
@media (min-width: 1024px) {
  .btn_type02 {
    padding: 0.94rem 1.78rem;
  }
}
.btn_type02 span {
  position: relative;
  font-size: 0.94rem;
  color: #8c8c8c;
}
.btn_type02 span::after {
  position: absolute;
  top: 50%;
  left: calc(100% + 0.4rem);
  transform: translateY(-50%);
  display: block;
  content: "";
  width: 1.06rem;
  aspect-ratio: 1/1;
  background: url("../img/common/btn_arrow_yellow.svg") no-repeat center/contain;
  transition: 0.3s all ease-in-out;
}
@media (min-width: 1024px) {
  .btn_type02 span::after {
    width: 2rem;
    position: relative;
    top: unset;
    left: unset;
    transform: unset;
  }
}
@media (min-width: 1024px) {
  .btn_type02 span {
    display: grid;
    grid-template-columns: max-content max-content;
    align-items: center;
    -moz-column-gap: 0.39rem;
         column-gap: 0.39rem;
    font-size: 1.56rem;
  }
}
.btn_type02:hover span {
  position: relative;
}
.btn_type02:hover span::after {
  background: url("../img/common/btn_arrow_hover_yellow.svg") no-repeat center/contain;
}
.btn_type02.blue {
  background-color: #005bac;
}
.btn_type02.blue span {
  color: #ffffff;
}

.btn_type03 {
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 0.31rem;
  width: 100%;
  border: 1px solid #509b95;
  text-align: center;
  max-width: 139px;
  border-radius: 0.25rem;
  background-color: transparent;
  transition: 0.3s all ease-in-out;
}
@media (min-width: 1024px) {
  .btn_type03 {
    padding: 1.28rem;
    max-width: 200px;
    border-radius: 0.22rem;
  }
}
.btn_type03 span {
  color: #509b95;
  font-size: 0.63rem;
  transition: 0.3s color ease-in-out;
}
@media (min-width: 1024px) {
  .btn_type03 span {
    font-size: 1.11rem;
  }
}
.btn_type03:hover {
  background-color: #509b95;
}
.btn_type03:hover span {
  color: #ffffff;
}
.btn_type03.small {
  padding: 0.5rem;
  border: 1px solid #509b95;
  background-color: transparent;
  transition: 0.3s all ease-in-out;
  max-width: 112px;
}
.btn_type03.small span {
  color: #509b95;
  font-size: 0.83rem;
}
.btn_type03.small:hover {
  background-color: #509b95;
}
.btn_type03.small:hover span {
  color: #ffffff;
}
.btn_type03.blue {
  border: 1px solid #005bac;
}
.btn_type03.blue span {
  color: #005bac;
}
.btn_type03.blue:hover {
  background-color: #005bac;
}
.btn_type03.emeraldgreen {
  border: 1px solid #509b95;
}
.btn_type03.emeraldgreen span {
  color: #509b95;
}
.btn_type03.emeraldgreen:hover {
  background-color: #509b95;
}

.trimming__16-10 {
  position: relative;
  overflow: hidden;
  padding-top: 62.5%;
}
.trimming__16-10 img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.trimming__16-9 {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
}
.trimming__16-9 img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.trimming__4-3 {
  position: relative;
  overflow: hidden;
  padding-top: 75%;
}
.trimming__4-3 img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.trimming__2-1 {
  position: relative;
  overflow: hidden;
  padding-top: 50%;
}
.trimming__2-1 img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.trimming__1-1 {
  position: relative;
  overflow: hidden;
  padding-top: 100%;
}
.trimming__1-1 img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.link_img {
  transition: 0.3s all ease-out;
}
.link_img figure {
  width: 100%;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1.5/1;
}
.link_img img {
  position: absolute;
  transform: scale(1);
  transition: 0.3s ease-out;
}
.link_img:hover img {
  transform: scale(1.05);
}

.youtube {
  width: 100%;
  aspect-ratio: 1.769/1;
  position: relative;
}
.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 1023px) {
  .youtube {
    margin-top: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .youtube {
    aspect-ratio: 1.41/1;
  }
}

.body-container-wrapper {
  max-width: 100vw;
  /* overflow: hidden; */
}
/* 背景
------------------------------------- */
.back {
  position: relative;
  background: #005bac;
  &.back--w100 {
    padding-block: 2rem;
    background: transparent;
    @media(min-width: 768px) {
      padding-block: 3.06rem;
    }
    &::after {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 100vw;
      content: '';
      background-color: rgba(0, 91, 173, 0.1);
      height: 100%;
      z-index: -1;
      @media(min-width: 480px) {
      width: calc(100lvw - 17px);
      }
    }

  }
}

.back_lightblue {
  background: #f0f3f5;
}
.back_lightblue .breadclumb_container {
  border-bottom: unset;
}

/* ボックスパターン
------------------------------------- */
.box {
  border-radius: 10px;
  border: 1px solid #509b95;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  position: relative;
}
.box::before {
  content: "";
  width: 100%;
  height: 1.5rem;
  background: #c9e0de;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px 10px 0 0;
  z-index: -1;
}
@media (min-width: 1024px) {
  .box {
    border-radius: 18px;
  }
  .box::before {
    height: 2rem;
    border-radius: 18px 18px 0 0;
  }
}

.anchor {
  position: relative;
  margin-top: -4rem;
  padding-top: 4rem;
  z-index: -1;
  @media (min-width: 1024px) {
    margin-top: -10rem;
    padding-top: 10rem;
  }
}

/* Two Column 左側のレイアウト調整
------------------------------------- */
.conainer_left {
  .widget-span {
    padding-inline: unset;
  }
}

/* 製品情報下層サイドメニューバナーのレイアウト調整
------------------------------------- */
.side_inner_main {
  padding: unset;
  border-bottom: 1px solid #c5d1e4;
  border-top: 1px solid #c5d1e4;
/*   margin-bottom: .5rem; */
  padding: unset;
  .widget-span {
    padding: unset;
    row-gap: 0;
  }
/*   .dnd-section {
    &:last-of-type {
      ul {
        border-bottom: unset;
      }
    }
  } */
  .dnd-row {
    &:last-of-type {
      ul {
        border-bottom: unset;
      }
    }
  }
}
.side_inner {
/*   margin-top: 1rem; */
  .widget-span {
    padding: unset;
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
  }
  &.side_inner--top {
/*     margin-bottom: 0.5rem; */
  }
}

/* 見出しタグのレイアウト調整
------------------------------------- */
.hs_cos_wrapper_type_header {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 0;
  }
}
/* _footer.scss 読み込み
------------------------------------- */
.pagetop {
  position: fixed;
  display: grid;
  width: 3rem;
  aspect-ratio: 1/1;
  z-index: 101;
  place-content: center;
  font-weight: bold;
  background: url("https://46923556.fs1.hubspotusercontent-na1.net/hubfs/46923556/pagetop_white.svg") no-repeat center/contain;
  bottom: 5.5rem;
  right: 1rem;
  transition: 0.3s all ease-in-out;
  opacity: 0;
  &:hover {
      background: url("https://46923556.fs1.hubspotusercontent-na1.net/hubfs/46923556/pagetop_blue.svg") no-repeat center/contain;
  }
  @media (min-width: 768px) {
    bottom: 1rem;
  }
  @media (min-width: 1024px) {
    width: 4rem;
    bottom: 2rem;
    right: 2rem;
  }
  &.show {
    opacity: 1;
  }
}



.back_btn {
  position: relative;
  border: 1px solid #005bac;
  padding: 0.44rem 1rem 0.44rem 2.33rem;
  width: 8.33rem;
  max-width: 150px;
  .txt {
    display: grid;
    place-content: center;
    color: #005bac;
    font-weight: 500;
    font-size: 0.89rem;
  }
  &::before {
    position: absolute;
    top: 50%;
    left: 0.39rem;
    transform: translateY(-50%);
    display: block;
    content: "";
    background: url("../img/common/arrow_blue_03.svg") no-repeat center / contain;
    width: 1.33rem;
    height: 0.83rem;
  }
}

.footer_pagetop_wrap {
  margin-inline: auto;
  display: block;
  width: 3rem;
  aspect-ratio: 1 / 1;
  .footer_pagetop {
    display: block;
    img {
      width: 100%;
      height: auto;
    }
  }
  @media(min-width: 1300px) {
    display: none;
  }
}

.footer {
  margin-top: 2rem;
  padding-block: 1rem 6rem;
  background: #fafafa;
  @media (min-width: 768px) {
    margin-top: 4rem;
  }
  @media (min-width: 1300px) {
    margin-top: 6.5rem;
    padding-block: 3.28rem;
  }
  &.footer--mt-none {
    margin-top: unset;
  }
}

.footer_container {
  display: flex;
  flex-direction: column;
  row-gap: 0.38rem;
  @media (min-width: 768px) {
    max-width: 600px !important;
  }
  @media (min-width: 1300px) {
    row-gap: 1.28rem;
    max-width: 1248px !important;
  }
  &.footer_container--row {
    margin-top: 0.5rem;
    align-items: center;
    @media (min-width: 1300px) {
      margin-top: 1.78rem;
      padding-top: 1.78rem;
      border-top: 1px solid #cacaca;
      row-gap: 1.78rem;
    }
  }
}

.footer_banner_list {
  margin: unset;
  padding: unset;
  display: grid;
  gap: 0.5rem;
  align-items: center;
  @media (min-width: 1300px) {
    justify-content: center;
    grid-template-columns: max-content max-content;
    column-gap: 1.5rem;
  }
}

.footer_banner_link {
  width: 100%;
  padding: 0.4rem 0.2rem;
  border: 1px solid #222222;
  display: grid;
  grid-template-columns: max-content max-content;
  column-gap: 0.33rem;
  justify-content: center;
  align-items: center;
  transition: .3s all ease-in-out;
  @media (min-width: 1300px) {
    max-width: 288px;
    width: 16rem;
    padding: 1.11rem;
  }
  .ico {
    display: grid;
    place-content: center;
    width: 1rem;
    aspect-ratio: 1 / 1;
    transition: .3s all ease-in-out;
    filter: unset;
    @media (min-width: 1300px) {
      width: 1.22rem;
    }
    img {
      width: 100%;
      height: auto;
    }
    &.ico--white {
      display: none;
    }
  }
  .txt {
    color: #222222;
    font-weight: 500;
    font-size: 0.5rem;
    transition: .3s all ease-in-out;
    @media (min-width: 1300px) {
      font-size: 0.78rem;
    }
  }
  &:hover {
    background-color: #222222;
    .ico {
      display: none;
      &.ico--white {
        display: grid;
      }
    }
    .txt {
      color: #ffffff;
    }
  }
}

.footer_banner_list_etc {
  margin: unset;
  padding: unset;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 0.38rem;
  justify-content: center;
  align-items: center;
  @media (min-width: 1300px) {
    grid-template-columns: max-content max-content;
    column-gap: 1.5rem;
  }
}

.footer_banner_link_etc {
  display: flex;
  width: 100%;
  padding: 0.2rem;
  border: 1px solid #222222;
  height: 3.6rem;
  justify-content: center;
  align-items: center;
  @media (min-width: 1300px) {
    max-width: 288px;
    width: 16rem;
    padding: 1rem;
    height: 4.6rem;
  }
  .footer_banner_link_img {
    justify-content: center;
    align-items: center;
    img {
      height: 100% !important;
    }
  }
}

.footer_banner_link_img {
  margin: unset;
  display: flex;
  img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

#footer_logo {
  margin-inline: auto;
  display: none;
  width: 18.38rem;
  max-width: 294px;
  @media (min-width: 1300px) {
    display: block;
    margin-right: auto;
    margin-left: unset;
    width: 12.39rem;
    max-width: 233px;
  }
  img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

.dc_gmap {
  margin-top: 1.3125rem;
  position: relative;
  width: 100%;
  aspect-ratio: 1.625/1;
  iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  @media(min-width: 1300px) {
    margin-top: 3.22rem;
    aspect-ratio: 1.816/1;
  }
}

.footer_menu {
  display: none;
  @media (min-width: 1300px) {
    display: block;
    margin-top: unset;
    position: relative;
    nav {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      column-gap: 2.44rem;
    }
  }
}

.footer_menu_row {
  padding: unset;
  margin: unset;
  display: flex;
  flex-direction: column;
  row-gap: 1.11rem;
}

/* .footer_menu_item {
  display: flex;
  flex-direction: column;
  row-gap: 0.12rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: dotted 2px #d0e4ed;
  &:first-of-type {
    border-top: dotted 2px #d0e4ed;
  }
} */

.footer_menu_item_list {
  display: flex;
  flex-direction: column;
  @include mq(min_pc) {
    row-gap: 1.5rem;
  }
}

.footer_menu_item_list_item {
  @media(max-width: 1299px) {
    &:not(:first-of-type) {
      padding-top: 1.5rem;
    }
    &:not(:last-of-type) {
      padding-bottom: 1.5rem;
      border-bottom: dotted 2px $color_skyblue;
    }
  }
}

.footer_menu_child_item_child_list {
  padding: unset;
  display: flex;
  flex-direction: column;
  row-gap: 1.11rem;
}

.footer_menu_link,
.footer_menu_item_link,
.footer_menu_child_item_link {
  color: #222222;
  font-weight: bold;
  position: relative;
  display: flex;
  align-items: center;
  @media(min-width: 1300px) {
    font-size: 0.83rem;
  }
}

.footer_menu_link {
  font-size: 0.78rem;
  line-height: 1.8571428571;
  font-weight: 500;
  color: #222222;
  text-decoration: none;
  &:hover {
    text-decoration: underline;
  }
}

.footer_menu_child_item_child_item {
  @media(max-width: 1299px) {
    &:not(:first-of-type) {
      padding-top: 1rem;
    }
    &:not(:last-of-type) {
      padding-bottom: 1rem;
      border-bottom: 2px dotted $color_skyblue;
    }
  }
}

.footer_menu_child_item_child_item_link {
  font-size: 0.78rem;
  line-height: 1.8571428571;
  color: #8c8c8c;
  font-weight: 500;
  position: relative;
  &:hover {
    text-decoration: underline;
  }
}

.footer_menu_child {
  padding: 1rem;
  display: none;
  margin-top: 1.5rem;
  background-color: #f7f9fa;
  border-radius: 0.31rem;
  @media(min-width: 1300px) {
    display: grid;
    padding: unset;
    margin-top: 1rem;
    row-gap: 0.12rem;
    background-color: transparent;
    border-radius: unset;
  }
}

.footer_menu_etc {
/*   display: none; */
  @media (min-width: 1300px) {
    display: block;
  }
}

.footer_menu_etc_list {
  width: fit-content;
  display: grid;
  grid-template-columns: max-content max-content;
  margin-left: auto;
  column-gap: 1.6rem;
  justify-content: center;
  @media (min-width: 1300px) {
    display: flex;
    grid-template-columns: unset;
    flex-wrap: wrap;
    column-gap: 2.78rem;
  }
}

.footer_menu_etc_item_link {
  display: block;
  color: #222222;
  font-size: 0.67rem;
  font-weight: 500;
  line-height: 1.8571428571;
  &:hover {
    text-decoration: underline;
  }
  @media(max-width: 1299px) {
    text-align: center;
  }
}

.copyright_content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  @media (min-width: 1300px) {
    justify-content: space-between;
  }
}

.copyright {
  display: block;
  color: #222222;
  font-size: 0.78rem;
  text-align: center;
  @media (min-width: 1300px) {
    text-align: right;
  }
}
/* 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;
  }
}