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

@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
    background: #fff url('./ajax-loader.gif') center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('./fonts/slick.eot');
    src: url('./fonts/slick.eot?#iefix') format('embedded-opentype'), url('./fonts/slick.woff') format('woff'), url('./fonts/slick.ttf') format('truetype'), url('./fonts/slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

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

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

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

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

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

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

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

body {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

b,
strong {
  font-weight: bolder;
}

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

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

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

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

details {
  display: block;
}

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

summary {
  display: list-item;
}

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



/* CSS variables */

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

/* Mobile layout */

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


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

/* Desktop layout */

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

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

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

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

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

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

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

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

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

/* Paragraphs */

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

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

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

/* Lists */

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

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

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */

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

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
button,
.button,
.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;
}
.hs-form ul {
  list-style: none;
  padding: 0;
}

.hs-form-field:nth-child(n+2) {
  margin-top: 40px;
}
.form-wrap form fieldset:nth-child(n+2){
  margin-top: 20px;
}
.form-wrap .hs-form-field:nth-child(n+2) {
  margin-top: 0px;
}
.hs-form label {
  font-size: 16px;
  font-weight: bold;
}

form legend{
  color: #444444;font-size: 14px;font-family: 'Noto Sans', sans-serif;;
  color: #333;
  font-weight: 500;
}

.hs-form input[type=text],
.hs-form input[type=email],
.hs-form input[type=tel],
.hs-form select {
  width: 100%;
  height: 56px;
  padding: 0 16px;
}

.hs-form input[type=text],
.hs-form input[type=email],
.hs-form input[type=tel],
.hs-form select,
.hs-form textarea {
  margin-top: 12px;
}

.hs-form textarea {
  height: 238px;
  width: 100%;
  padding: 16px;
}

.hs-form input[type=checkbox] {
  position: relative;
}

.hs-form .hs-form-booleancheckbox label {
  display: flex;
}

.hs-form .hs-form-booleancheckbox label > span {
  margin-left: 22px;
  font-weight: 500;
}

.hs-form input[type=checkbox]::before {
  position: absolute;
  top: -2px;
  content: '';
  width: 24px;
  height: 24px;
  background: #fff;
  border: 1px solid #444444;
  border-radius: 6px;
}

.hs-form input[type=checkbox]::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  border-bottom: 3px solid #FFFFFF;
  border-left: 3px solid #FFFFFF;
  transform: rotate(-45deg);
  width: 15px;
  height: 8px;
  opacity: 0;
}
.legal-consent-container .hs-richtext p{
  line-height: 25.2px;
}
@media(max-width: 600px) {
  .hs-form .legal-consent-container input[type=checkbox]::before {
    top: 6px;
  }
  .hs-form .legal-consent-container input[type=checkbox]::after {
    top: 13px;
  }
}

.hs-form input[type="checkbox"]:checked::before {
  background: #00C4CC;
  border: none;
}

.hs-form input[type="checkbox"]:checked::after {
  opacity: 1;
}

.hs-form .hs-richtext {
  margin-top: 15px;
}

.hs_error_rollup {
  margin-top: 20px;
}

.hs-error-msgs label,
.hs-form-required {
  color: #FF3D00;
  font-size: 14px;
}

.actions {
  display: inline-block;
  position: relative;
}

.actions::before {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #FFFFFF;
}

.actions::after {
  position: absolute;
  top: 50%;
  right: 19px;
  content: '';
/*   width: 8px;
  height: 8px; */
  width: 6px;
  height: 6px;
  border-right: 2px solid #00C4CC;
  border-bottom: 2px solid #00C4CC;
/*   transform: rotate(-45deg) translateX(50%); */
  transform: rotate(-45deg);
  transition: .3s;
  transform-origin: left top;
}

.hs_submit {
  text-align: center;
  margin-top: 50px;
}

.hs-form .inputs-list {
  margin-top: 12px;
}

.hs-form .hs-form-checkbox label {
  display: flex;
}

.hs-form .hs-form-checkbox:nth-child(n+2) {
  margin-top: 20px;
}

.hs-form-checkbox-display span {
  margin-left: 22px;
  font-weight: 500;
}
select[name="contact_syubetu"]{
  appearance: none;
}
.input:has(select[name="contact_syubetu"]){
  position: relative;
}
.input:has(select[name="contact_syubetu"])::after{
  content: '';
  background-image: url(data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="11" height="11" viewBox="0 0 13 11" fill="%23333333"%3E%3Cpath d="M7.36603 10.5C6.98112 11.1667 6.01887 11.1667 5.63397 10.5L0.870835 2.25C0.485935 1.58333 0.967061 0.749999 1.73686 0.749999L11.2631 0.75C12.0329 0.75 12.5141 1.58333 12.1292 2.25L7.36603 10.5Z" fill="%23333333"/%3E%3C/svg%3E);
  display: block;
  position: absolute;
  width: 15px;
  height: 15px;
  background-repeat: no-repeat;
  top: 50%;
  right: 15px;
}
.hs-cm______tvcm________ .input li label{
  display: flex;
  align-items: center;
}
.hs-cm______tvcm________ .input li label input{
  width: 24px;
  height: 24px;
}
.hs-cm______tvcm________ .input li label span{
  color: #444444;font-size: 16px;font-weight: 700; font-family: 'Noto Sans', sans-serif;
  font-weight: 500;
  line-height: 28.8px;
  margin-left: 12px;
}
@media(max-width: 767px) {
  .hs-form label {
    font-size: 14px;
  }
  
  .hs-form input[type=email],
  .hs-form input[type=tel],
  .hs-form input[type=text],
  .hs-form select,
  .hs-form textarea {
    height: 48px;
  }
  
  .hs-form textarea {
    height: 224px;
  }
  
  .hs-form-field:nth-child(n+2) {
    margin-top: 32px;
  }
  
  .hs_submit {
    margin-top: 24px;
  }
}
/* 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 DND sections */

header {
  border-bottom: 2px solid #444444;
  position: fixed;
  z-index: 101;
  background: #FFFFFF;
  height: 90px;
  width: 100%;
}

header ul {
  list-style: none;
  padding: 0;
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  max-width: 1400px;
  height:90px;
  margin: auto;
  padding-left: 40px;
  padding-right: 20px;
}

.header-left {
  display: flex;
  align-items: center;
}

.header-logo {
  margin-right: 48px;
}

.menu-area {
  display: flex;
  align-items: center;
}

.header-menu {
  height: 100%;
  display: flex;
  align-items: center;
/*   border-right: 1px solid #222; */
  padding-right: 32px;
  font-size:12px;
}

.header-right,
.header-btn {
  display: flex;
  align-items: center;
  gap: 8px;
}

.active-menu {
  background: #FFFFFF;
  border-radius: 4px;
}
.search-menu label {
  color: #444444;font-size: 16px;font-weight: 700; font-family: 'Noto Sans', sans-serif;;
}
.search-menu input {
  background: #F4F6F6;
}
.search-menu button {
  background: #00C4CC;
  color: #FFFFFF;
}
.search-menu button:hover {
  background: #00B4BB;
}

.search-menu span {
  color: #444444;font-size: 14px;font-family: 'Noto Sans', sans-serif;;
  color: #FFFFFF;
  font-weight: bold;
  position:relative;
  display:inline-block;
}

.header-tag-title p {
  font-weight: bold;  
}
.pc-header{
  display: block;
}
.sp-header{
  display: none;
}
@media(hover: hover){
  .search:hover .search-icon svg{
    fill: #00C4CC;
  }
}

.search-open .search-icon svg{
  fill: #00C4CC;
}

.search {
  padding: 37.5px 26.4px;
  cursor: pointer;
}

.search-icon svg {
  width: 17px;
  transition: .3s;
}

.active-menu-wrapper {
  transform: scaleY(0);
  transform-origin: center top;
  position: absolute;
  top: 97.4px;
  left: 0%;
  width: 100%;
  padding: 10px 10px 0 10px;
  margin: auto;
  min-width: 1070px;
  transition: .3s;
  cursor: auto;
  z-index: 101;
}

.search-open .active-menu-wrapper {
  transform: scaleY(1);
}

.search-menu-area {
  padding: 64px 0 56px;
  max-width: 1040px;
  margin: auto;
}

.search-menu form {
  background: transparent;
  border: unset;
}

.search-menu label {
  display: block;
  margin-bottom: 16px;
}

.search-menu input {
  width: 83.1%;
  height: 56px;
  padding: 0 24px;
  border-radius: 4px;
  font-size: 14px;
}

.search-menu button {
  margin-left: 1.1%;
  width: 15.4%;
  height: 56px;
  border-radius: 4px;
  border: none;
}

.header-tag-area {
  margin-top: 40px;
}
@media(min-width: 1150px){
/*   .header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; 必要に応じてz-indexを設定
  }  */

  /* vertical separator */
  .search-icon span::before {
    content: '';
    position: absolute;
    left: -20px; /* アイコンとのマージン */
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    width: 1px;
    background-color: #222;
  }
}

@media(max-width: 1200px) {
  header .menu-list a {
    font-size: 14px !important;
  }
  
  header .btn a {
    font-size: 11px !important;
    width: 150px;
  }
  
  .search {
    padding: 37.5px 18px;
  }
}

@media(max-width: 1150px) {
  .pc-header{
    display: none;
  }
  .sp-header{
    display: block;
  }
  header {
    border-bottom: 1px solid #444444;
    height: 60px;
  }
  .header-wrapper {
    padding-left: 2.6%;
    padding-right: 0;
    height: auto;
  }
  
  .header-left {
    flex-basis: 100%;
    justify-content: space-between;
  }
  
  .header-logo {
    margin-right: 0;
    width: 117px;
  }
  
  .header-menu {
    order: 2;
    padding-right: 0;
    border-right: unset;
    border-left: 1px solid #D0D7D8;
  }
  
  .search-menu {
    order: 1;
  }
  
  .search-menu-area {
    padding: 36px 0 40px;
  }
  .header-right {
    flex-basis: 0;
  }
  
  .search {
    padding: 0;
  }
  
  .search-icon {
    padding: 17.3px 20px 15.3px;
  }
  
  .search-icon svg {
    width: 20px;
  }
  
  .active-menu-wrapper {
    min-width: unset;
    top: 60px;
  }
  
  .search-menu-area {
    max-width: unset;
    width: 88.5%;
    margin: auto;
  }
  
  .search-menu form {
    text-align: center;
  }
  
  .search-menu label {
    text-align: left;
    line-height: 1.3;
  }
  
  .search-menu input {
    width: 100%;
  }
  
  .search-menu button {
    margin-left: 0;
    margin-top: 12px;
    width: 160px;
    height: 48px;
  }
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.footer-top,
.copyright {
  max-width: 1040px;
  margin: auto;
}

.footer-wrapper .footer-top {
  padding: 80px 0 69px;
}

.footer-contents {
  margin-top: 20px;
}

.footer-row:nth-child(n+2) {
  margin-top: 56px;
}

.footer-flex {
  display: flex;
  align-items: center;
  gap: 54px;
}

.footer-bottom {
  background: #444444;
  padding: 25px 0;
}

@media(max-width: 767px) {
  .footer-wrapper .footer-top {
    width: 89.5%;
    margin: auto;
    padding: 56px 0;
  }
  
  .footer-contents {
    margin-top: 17px;
  }
  
  .footer-row:nth-child(n+2) {
    margin-top: 48px;
  }
  
  .footer-flex {
    display: block;
    margin-top: 16px;
  }
  
  .footer-flex .sns-row{
    margin-bottom: 0;
  }
  
  .sns-row {
    margin-top: 48px;
    margin-bottom: 56px;
  }
  
  .footer-bottom {
    text-align: center;
    padding: 16px 0;
  }
}
body {
  min-width: 1100px;
}
html { scroll-behavior: smooth;}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0
}

.pc {
  display: block;
}

.sp {
  display: none;
}

ul {
  padding: 0 0 0 1rem;
  margin: 0;
}

ol {
  padding-left: 1rem;
}

ol > li::marker {
  font-weight: bold;
  color: #00C4CC;
}

.en {
  font-family: Avenir !important;
}

.subpage-container {
  position: relative;
  width: 1024px;
  margin: auto;
  height: 1000px;
  background: #FFFFFF;
}

.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(44,55,55,0.6);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}

.close-menu {
  padding: 18px 0;
  text-align: center;
  border-radius: 0 0 4px 4px;
  background: #F4F6F6;
}

.close-btn {
  display: inline-flex;
  gap: 6px;
  cursor: pointer;
}

.close-icon {
  position: relative;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #444444;
}

.close-icon::before,
.close-icon::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 1px;
  top: 50%;
  left: 50%;
  background: #FFFFFF;
}

.close-icon::before {
  transform: translate(-50%,-50%) rotate(45deg);
}

.close-icon::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}

.close-btn p {
  font-size: 13px;
  font-weight: bold;
}

.active.overlay {
  opacity: 1;
  visibility: visible;
}

.tag-lists {
  position: relative;
  z-index: 2;
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;
}

.tag-lists li {
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px solid #D0D7D8;
  background-color: #fff;
  transition: .3s;
}

.tag-lists li:hover {
  border: 1px solid #222222;
}

.tag-lists a {
  display: flex;
  align-items: center;
  gap: 7px;
}

.tag-lists span {
  color: #444444;font-size: 12px;font-family: 'Noto Sans', sans-serif;;
  line-height: 12px;
}

.tag-lists svg {
  width: 14px;
  transform: rotate(90deg);
  fill: #D0D7D8;
  transition: .3s;
}

.tag-lists li:hover svg {
  fill: #222222;
}

.article-list {
  display: flex;
  gap: 72px 40px;
  flex-wrap: wrap;
}

.article-list article:hover .article-title {
  color: #0F86DD;
}

.article-list article:hover .article-thumbnail{
  opacity: 0.5;
  background: #FFF;
  transition: .3s; 
}

article {
  position: relative;
  flex-basis: 320px;
}

.link-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.article-thumbnail {
  position: relative;
  padding-top: 61.2%;
  transition: .3s;
}

.article-thumbnail img {
  width: 100%;
  position: absolute;
  height: 100%;
  top: 0;
  object-fit: cover;
}

.article-row {
  display: flex;
  gap: 17px;
  align-items: center;
  margin-top: 12px;
}

.article-categories {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.blog-recent-list .article-category{
  margin-top: 0;
}
.article-category {
  border-radius: 4px;
  padding: 6px 12px;
  color: #444444;font-size: 12px;font-family: 'Noto Sans', sans-serif;;
  background: #FFFFFF;
  color: #00C4CC;
  border: 1px solid #D0D7D8;
  border-radius: 4px;
  position: relative;
  z-index: 2;
  transition: .3s;
}

.article-category:hover {
  color: #FFFFFF;
  background: #00C4CC;
}

.article-title {
  margin-top: 4px;
  transition: .3s;
}

.article-title p {
  line-height: 28.8px;
  font-weight: bold;
}

.article-list .tag-lists {
  gap: 4px;
}
.article-date span {
  color: #444444;font-size: 12px;font-family: 'Noto Sans', sans-serif;;
  font-weight: bold;
  color: rgba(48, 60, 61,0.8);
  font-family: Avenir;
  word-break: keep-all;
}

.cat-btn {
  display: flex;
  gap: 17px 2.6%;
  flex-wrap: wrap;
}

.cat-btn li {
  flex-basis: 206px;
}

.cat-btn a {
  position: relative;
  color: #444444;font-size: 14px;font-family: 'Noto Sans', sans-serif;;
  border-radius: 4px;
  padding: 13.2px 15px 13.2px 23px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: .3s;
  border: 1px solid #D0D7D8;
  font-weight: bold;
  color: #444444;
}

.cat-btn a:hover {
  border: 1px solid #00C4CC;
}

.cat-btn .arrow-right {
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  border-top: 2px solid #00C4CC;
  border-right: 2px solid #00C4CC;
}

.row-s {
  margin-top: 24px;
}

.row-l {
  margin-top: 64px;
}

.article-paging ul {
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.paginationjs-ellipsis {
  pointer-events: none;
}

.article-paging a {
  width: 44px;
  height: 44px;
  border: 1px solid #D0D7D8;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #00C4CC;
  font-family: Avenir;
  transition: .3s;
}

.article-paging a:hover {
  background: #00C4CC;
  color: #FFFFFF;
  border: none;
}

.article-paging .active a,
.article-paging .blog-pagination__link--active {
  background: #444444;
  color: #FFFFFF;
  pointer-events: none;
}

.global-recommend {
  background: #F4F6F6;
  padding: 80px 0 100px
}

.global-max-width {
  max-width: 1040px;
  margin: auto;
}

.global-recommend-content {
  margin-top: 24px;
}

.global-cta {
  margin: 80px 0 90px;
}

.thanks .btn a {
  width: 100%;
  justify-content: center;
}

.thanks .btn-arrow-right {
  position: absolute;
  right: 15px;
}

.copyright .text p{
  letter-spacing: unset !important;
}
@media(max-width: 767px) {
  body {
    min-width: unset;
  }
  
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
  
  .sub-contents .row-fluid-wrapper {
    width: 94.5%;
    margin: auto;
  }
  
    .sp-article-two-columns .article-list {
    gap: 48px 6.7%;
  }

  .sp-article-two-columns .article-list article {
    flex-basis: 46.6%;
  }
  
  .row-s {
    margin-top: 32px;
  }
  
  .row-l {
    margin-top: 64px;
  }
  .close-btn,
  .nav-content-title{
    line-height: 1.3;
  }
  .nav-content-description p{
    line-height: 28.8px;
  }
  .global-recommend {
    padding: 80px 0;
  }
  
  .global-cta {
    margin: 50px 5.3% 60px;
  }
  
  .blog-recent-list{
    gap: 64px;
  }
  
  .pager-recent{
    margin-top: 54px;
  }
  .blog-recent-list article{
    flex-basis: auto;
  }
  .blog-recent-list .article-thumbnail{
    margin-bottom: 20px;
  }
  .cat-btn{
    gap: 7px;
  }
  .cat-btn li {
    flex-basis: 48%;
  }
  /*nav overflow*/
 #hs_cos_wrapper_nav-menu .nav-content-container{
        height: 70vh;
        overflow: auto;
    }
}

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

/* section about page */
.t-about-wrap{
  position: relative;
  border-bottom: 1px solid #444444;;
}
.t-about-wrap .text p{
  line-height: 51.2px; 
  letter-spacing: 4.16px;
}
.t-about-wrap .richtext p{
  line-height: 36px;
}
.t-about-wrap::before,
.t-about-wrap::after{
  position: absolute;
  font-family: Avenir !important;
  color: #F4F6F6;
}
.t-about-wrap::before{
  content: 'AICHI,MIE,GIFU';
  font-size: 50px;
  font-style: normal;
  font-weight: 900;
  line-height: 90px;
  letter-spacing: -2px;
  bottom: 120px;
}
.t-about-wrap::after{
  content: 'TOKAI REGION';
  font-size: 155px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: -6.4px;
  bottom: 0;
  text-wrap: nowrap;
  line-height: 100px;
  z-index: -1;
}
.t-about-wrap .sp-br{
  display: none;
}
.sp-br {
  display: none;
}
.pc-br {
  display: block;
}
@media (max-width: 768px){
  .sp-br {
    display: block;
  }
  .t-about-wrap .sp-br{
    display: block;
  }
  .pc-br {
    display: none;
  }
  .t-about-wrap .text p{
    line-height: 48px; letter-spacing: 3.38px;
  }
  .t-about-wrap::before{
    left: 0;
    font-size: 28px;
    line-height: normal;
    letter-spacing: -1.12px;
    bottom: 50px;
  }
  .t-about-wrap::after{
    left: 0;
    font-size: 51px;
    line-height: 70px;
    bottom: -20px;
    letter-spacing: -2.04px;
  }
  .t-about-wrap .btn{
    display: flex;
    justify-content: center;
  }
  .t-about-wrap .text p{
    letter-spacing: 3.38px !important;
  }
}
/* end section top about */
.t-promotion-wrap{
  max-width: 1040px;
  margin: 0 auto;
}
.t-promotion-wrap .row-fluid {
  justify-content: start;
  gap: 12px;
}
@media (max-width: 768px){
  .t-promotion-wrap{
    margin: 0 5.6%;
  }
  .t-register-wrap .row-fluid{
    gap: 32px;
  }
}
.t-register-wrap .sns-share .content-sns img{
  width: 20px;
  height: 20px;
}
.t-register-wrap .sns-share .content-sns{
  background: #fff;
}
.t-mailmagazine-btn a{
  width: fit-content;
  border-radius: 4px;
  padding: 6px 24px;
  background-color: #fff;
}

/* grobal reccomend  */
@media (max-width: 768px){
  .global-recommend-content{
    padding: 0 5.3%;
  }
}

/* 利用規約,問い合わせ,資料ダウンロードの背景白部分の角丸 */
.terms-contents-column-3-background-color,
.contact_contents-column-3-background-color{
  border-radius: 4px;
}

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