/* Theme base styles */

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

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

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

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

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

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

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

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

body {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

b,
strong {
  font-weight: bolder;
}

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

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

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

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

details {
  display: block;
}

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

summary {
  display: list-item;
}

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



/* CSS variables */

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

/* Mobile layout */

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


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

/* Desktop layout */

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

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

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

.dnd-section .dnd-column {
  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.)
*/

body {
    line-height: 1.5;
    overflow-wrap: break-word;
    background-color: #F6F6F6;
    background-image: linear-gradient(to right, #EBEBEB 1px, transparent 1px), linear-gradient(to bottom, #EBEBEB 1px, transparent 1px);
    background-size: 80px 80px;
}

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: 1.125rem;
    margin: 0 0 60px;
}

@media screen and (max-width: 767px) {
    P {
        font-size: 0.875rem;
        margin: 0 0 40px;
    }
}

/* Anchors */

a {
    cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.5;
}
h1 {
    margin-bottom: 40px;
}
h2 {
    margin-bottom: 40px;
}

h3 {
    margin-bottom: 35px;
}

h4 {
    margin-bottom: 35px;
}

h5 {
    margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
    h1 {
        font-size: 22px !important;
        margin-bottom: 20px;
    }

    h2 {
        font-size: 22px !important;
        margin-bottom: 20px;
        padding-left: 15px;
        border-left: 6px solid #EF6B22;
    }

    h3 {
        font-size: 20px !important;
        margin-bottom: 20px;
    }

    h4 {
        font-size: 16px !important;
        margin-bottom: 20px;
    }

}


/* Lists */

ul,
ol {
    line-height: 1.6;
    margin: 0 0 60px;
    padding-left: 20px;
}

ol {
    padding-left: 25px;
}

@media screen and (max-width: 767px) {

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

    ul li,
    ol li {
        font-size: 14px;
    }
}

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

/* addcustom */
.w110 {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}
.w98 {
    position: relative;
    max-width: 980px;
    width: 100%;
    margin: 0 auto;
}

:root {
    /* ここで一括管理 */
    /* 呼び出しはこちら
  var(--black)
  */
    --black: #1a1a1a;
    --yellow: #D0FF00;
    --blue: #0015FF;
}

/* <!-- LINKETを利用するメリット ------------------------------------------------------- --> */
.starts_whiteround_sec::before {
    content: "";
    background: #fff;
    width: 100%;
    height: 200px;
    background: #f6f6f6;
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0px;
}
.starts_whiteround_sec::after {
    content: "";
    content: "";
    background: #fff;
    width: 100%;
    height: 200px;
    z-index: -1;
    position: absolute;
    border-radius: 70px 70px 0px 0;
    top: 0px;
    left: 0px;
}

/* <!-- case_sec ------------------------------------------------------- --> */
.case_sec {
    position: relative;
    padding-bottom: 156px;
    padding-left: 20px;
    padding-right: 20px;
}
.case_sec .case_title_flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}
.case_sec .case_title_flex .title {
    position: relative;
}
.case_sec .case_title_flex .title h2 {
    font-size: 44px;
    font-weight: bold;
    margin: 0;
}
.case_sec .case_title_flex .title p {
    font-size: 14px;
    font-weight: 900;
    color: #1FB640;
    margin: 0;
}
.case_sec .case_title_flex .case_btn {
    position: relative;
}
.case_sec .case_title_flex .case_btn a {
    background: var(--black);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    width: 207px;
    height: 39px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    transition: .3s;
}
.case_sec .case_title_flex .case_btn a:hover {
    opacity: .7;
}
.case_sec .case_row {
    position: relative;
}
.case_sec .case_row ul {
    padding: 0;
    margin: 0;
}
.case_sec .case_row ul li {
    list-style: none;
}
.case_sec .case_row ul li a {
    display: flex;
    gap: 20px;
    color: var(--black);
    font-weight: 500;
    font-size: 16px;
    border-top: 1px solid #E5E5E5;
    padding: 20px 20px 20px 0px;
    transition: .3s;
    position: relative;
}
.case_sec .case_row ul li a:hover {
    opacity: .7;
}
.case_sec .case_row ul li:last-of-type a {
    border-bottom: 1px solid #E5E5E5;
}
.case_sec .case_row ul li a .imgsarrow {
    display: flex;
    width: 18px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0px, -50%);
}
.case_sec .case_row ul li a .imgsarrow img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* <!-- column_sec ------------------------------------------------------- --> */
.column_sec {
    background: #3db156;
    border-radius: 50px 50px 0 0;
    padding-bottom: 135px;
    padding-top: 90px;
    position: relative;
    margin-bottom: -50px;
    padding-left: 20px;
    padding-right: 20px;
}
.column_sec .in_title {
    position: relative;
    margin-bottom: 60px;
}
.column_sec .in_title h2 {
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    margin: 0;
}
.column_sec .in_title p {
    margin: 0;
    color: #fff;
    font-weight: 900;
    font-size: 14px;
    text-align: center;
}
.column_sec .column_row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}
.column_sec .column_row .column_col {
    position: relative;
}
.column_sec .column_row .column_col a {
    background: #fff;
    position: relative;
    display: block;
    border-radius: 20px;
    overflow: hidden;
    padding: 10px 10px 30px;
    transition: .3s;
}
.column_sec .column_row .column_col a .img_box {
    border-radius: 10px;
    display: flex;
    overflow: hidden;
    aspect-ratio: 240 / 150;
}
.column_sec .column_row .column_col a .img_box img {
    width: 100%;
    object-fit: cover;
}
.column_sec .column_row .column_col a .time {
    color: #909090;
    font-size: 12px;
    font-weight: 500;
    margin: 0 6px;
    margin-top: 20px;
}
.column_sec .column_row .column_col a .text {
    margin: 0 6px;
}
.column_sec .column_row .column_col a .text p {
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    margin: 0;
    line-height: 1.2;
}
.column_sec .column_row .column_col a:hover {
    opacity: .7;
}
.column_sec .more_btn {
    position: relative;
}
.column_sec .more_btn a {
    width: 170px;
    height: 52px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 500;
    color: var(--black);
    margin: 0 auto;
    margin-top: 55px;
    transition: .3s;
}
.column_sec .more_btn a:hover {
    opacity: .7;
}


/* <!-- header ------------------------------------------------------- --> */
header {
    position: relative;
    top: 0;
    z-index: 4;
    width: 100%;
    transition: .3s;
    height: 105px;
}
header .header_content {
    display: flex;
    max-width: 1380px;
    width: 100%;
    margin: 0 auto;
    justify-content: space-between;
    padding: 0 20px;
    height: 100%;
    align-items: center;
    transition: .3s;
}
header .header_content .menu_con {
    margin-left: auto;
    margin-right: 20px;
}
header .header_content .menu_con .cta_box.sp_tb {
    display: none;
}
header .header_content .cta_box.pc {
    width: auto;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 20px;
}
header .header_content .cta_box .mail_box01 a {
    border-radius: 100px;
    width: 182px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--black);
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    transition: .3s;
    position: relative;
}
header .header_content .cta_box .mail_box01 a:hover {
    opacity: .7;
}
header .header_content .cta_box {
    display: flex;
}
header .header_content .cta_box .login_box {
    position: relative;
}
header .header_content .cta_box .login_box a {
    position: relative;
    background: var(--yellow);
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    justify-content: center;
    transition: .3s;
}
header .header_content .cta_box .login_box a .texts {
    font-size: 10px;
    color: var(--black);
    letter-spacing: -2px;
    line-height: 0.2;
}
header .header_content .cta_box .login_box a:hover {
    opacity: .7;
}
.body-container-wrapper {
    padding-top: 0px !important;
}
header .header_content .menu_con nav.menu.menu--desktop .menu__item--depth-1 {
    padding: 0;
}
header .header_content .menu_con nav.menu.menu--desktop a.menu__link {
    font-size: 14px;
    padding: 0px 20px;
    display: block;
}
header .header_content .menu_con nav.menu.menu--desktop a.menu__link span.small {
    font-size: 12px;
    font-weight: 400;
    color: var(--blue);
    font-style: italic;
    line-height: 1;
    display: block;
    margin-top: 0px;
    text-transform: lowercase;
}
header .header_content .logo a#hs-link-site_logo_hs_logo_widget {
    transition: .3s;
}
header .header_content .logo a#hs-link-site_logo_hs_logo_widget:hover {
    opacity: .7;
}
header .header_content .logo_flexs {
    display: flex;
    gap: 20px;
}
header .header_content .logo_flexs .logo_texts {
    font-size: 18px;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -0.08em;
    line-height: 1.3;
}


/* pc */
@media only screen and (min-width: 1025px) {
    .header__hamburger {
        display: none;
    }

    header .header_content .menu_con nav.menu.menu--desktop a.menu__link:hover {
        color: var(--blue);
    }

    header .header_content .menu_con nav.menu.menu--desktop a.menu__link span {
        transition: .3s;
        position: relative;
    }
}

/*ドロップダウンメニュend sp*/
@media only screen and (max-width: 1024px) {
    header .header_content .cta_box.pc {
        display: none;
    }

    .hamburger {
        background-color: transparent;
        border-color: transparent;
        z-index: 9999;
        height: 100%;
        display: block;
        min-width: 40px;
        background: #fff;
        height: 40px;
        padding: 0;
        padding: 10px 10px 10px;
        border: 1px solid #3db156;
    }

    .hamburger span {
        width: 100%;
        height: 1px;
        background-color: #3db156;
        position: relative;
        transition: ease .3s;
        display: block;
    }

    .hamburger span:nth-child(1) {
        top: 0;
    }

    .hamburger span:nth-child(2) {
        margin: 6px 0;
    }

    .hamburger span:nth-child(3) {
        top: 0;
    }

    header .header_content .menu_con {
        position: fixed;
        right: 0px;
        top: -1px;
        width: 100%;
        background-color: rgb(0 163 175 / 95%);
        transition: ease .3s;
        overflow-y: scroll;
        opacity: 0;
        visibility: hidden;
        max-width: 300px;
        left: initial;
        transform: translate(100%, 0%);
        background: #3db156;
        height: 100%;
        padding: 70px 30px 40px;
        border-top: 1px solid #efefef;
        height: fit-content;
        border-radius: 30px 0px 30px 30px;
        margin: 0;
        border: 1px solid #fff;
    }

    .hamburger.active span:nth-child(1) {
        top: 8px;
        transform: rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        top: -6px;
        transform: rotate(-45deg);
    }

    header .header_content .menu_con.active {
        opacity: 1;
        visibility: visible;
        transform: translate(0%, 0%);
        position: absolute;
    }

    header {
        height: 80px;
    }

    header .header_content .logo {
        max-width: 120px;
    }

    header .header_content .menu_con nav.menu.menu--mobile a.menu__link {
        color: #fff;
        text-align: center;
        font-size: 14px;
        font-weight: bold;
        padding: 15px;
    }

    header .header_content .logo_flexs .logo_texts {
        display: none;
    }

    header .header_content .cta_box .mail_box01 a {
        display: none;
    }

}


/*=====================================
*
*フロントページ
*
=======================================*/
.backyellowparts01 {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.backyellowparts01::after {
    content: "";
    position: absolute;
    background: var(--yellow);
    border-radius: 100px;
    transform: skewX(-17.2deg) scaleY(0.95);
    transform-origin: top left;
    top: -10%;
    left: -10%;
    /* width: 42.5%; */
    height: 440px;
    width: 610px;
}
.GrowthEaseVisualization_sec {
    position: relative;
    background: var(--black);
    color: #fff;
    padding-left: 20px;
    padding-right: 20px;
}
.GrowthEaseVisualization_sec .titles {
    position: relative;
    max-width: 710px;
    margin: 0 auto;
    margin-bottom: 40px;
}
.GrowthEaseVisualization_sec .titles h2 {
    position: relative;
    font-size: 40px;
    color: #fff;
    margin: 0;
    font-style: italic;
    font-weight: 900;
}
.GrowthEaseVisualization_sec .titles h2 span.big {
    color: var(--yellow);
    font-size: 62px;
    margin-left: auto;
    display: flex;
    justify-content: flex-end;
    line-height: 1;
}
.GrowthEaseVisualization_sec .mainlist_row {
    position: relative;
    max-width: 754px;
    margin: 0 auto;
    gap: 110px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-bottom: 115px;
}
.GrowthEaseVisualization_sec .mainlist_row .mainlist_col {
    position: relative;
}
.GrowthEaseVisualization_sec .mainlist_row .mainlist_col>p {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.4;
    text-align: center;
    margin: 0;
}
.GrowthEaseVisualization_sec .mainlist_row .mainlist_col .sircle {
    position: relative;
    border-radius: 50%;
    padding-bottom: 98.9%;
    border: 1px solid;
    margin-bottom: 13px;
}
.GrowthEaseVisualization_sec .mainlist_row .mainlist_col:not(:last-of-type) .sircle::after {
    content: "";
    background-image: url("https://22565638.fs1.hubspotusercontent-na1.net/hubfs/22565638/raw_assets/public/idep_2026/images/idepparts_01.svg");
    background-repeat: no-repeat;
    background-size: contain;
    aspect-ratio: 115 / 33;
    width: 115px;
    display: flex;
    position: absolute;
    right: 1px;
    top: 50%;
    transform: translate(100%, -50%);
    z-index: 2;
}
.GrowthEaseVisualization_sec .mainlist_row .mainlist_col .sircle .sircle_in {
    width: calc(100% - 14px);
    height: calc(100% - 14px);
    border: 1px solid rgb(255 255 255 / 30%);
    position: absolute;
    border-radius: 50%;
    top: 7px;
    left: 7px;
}
.GrowthEaseVisualization_sec .mainlist_row .mainlist_col .sircle .sircle_in .sircle_text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 36px;
    font-weight: 900;
    font-style: italic;
    color: var(--yellow);
    line-height: 1;
    white-space: nowrap;
}
.GrowthEaseVisualization_sec .mainlist_row .mainlist_col:nth-of-type(1) .sircle .sircle_in::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 25px;
    background: var(--black);
    right: -22px;
    top: 50%;
    transform: translate(0px, -50%);
}
.GrowthEaseVisualization_sec .mainlist_row .mainlist_col:nth-of-type(1) .sircle .sircle_in::after {
    content: "";
    position: absolute;
    background: var(--yellow);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    right: -15px;
    top: 38%;
}
.GrowthEaseVisualization_sec .mainlist_row .mainlist_col:nth-of-type(3) .sircle .sircle_in::after {
    content: "";
    position: absolute;
    background: var(--yellow);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    left: -15px;
    top: 54%;
}
.GrowthEaseVisualization_sec .mainlist_row .mainlist_col:nth-of-type(3) .sircle .sircle_in::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 25px;
    background: var(--black);
    left: -22px;
    top: 50%;
    transform: translate(0px, -50%);
}
@keyframes infinity-scroll-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}
.GrowthEaseVisualization_sec .logoSlideList_row .logoSlideList_inner {
    display: flex;
    overflow: hidden;
    padding: 22px 0 35px;
}
.GrowthEaseVisualization_sec .logoSlideList_row .logoSlideList_list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}
.GrowthEaseVisualization_sec .logoSlideList_row .logoSlideList_list.left {
    animation: infinity-scroll-left 10s infinite linear 1s both;
}
.GrowthEaseVisualization_sec .logoSlideList_row .logoSlideList_item {
    width: calc(100vw / 12);
}
.GrowthEaseVisualization_sec .logoSlideList_row .logoSlideList_item>img {
    width: 100%;
}
.whyIdep_sec {
    position: relative;
    padding-top: 100px;
    padding-left: 20px;
    padding-right: 20px;
    overflow: hidden;
    padding-bottom: 80px;
}
.whyIdep_sec::before {
    content: "";
    background-image: url("https://22565638.fs1.hubspotusercontent-na1.net/hubfs/22565638/raw_assets/public/idep_2026/images/idepparts_04_03.svg");
    background-repeat: no-repeat;
    background-size: contain;
    aspect-ratio: 745 / 617;
    position: absolute;
    display: flex;
    right: 1px;
    top: 50%;
    z-index: 0;
    top: -100px;
    left: -220px;
    max-width: 745px;
    width: 52%;
}
.whyIdep_sec::after {
    content: "";
    background-image: url("https://22565638.fs1.hubspotusercontent-na1.net/hubfs/22565638/raw_assets/public/idep_2026/images/idepparts_04_02.svg");
    background-repeat: no-repeat;
    background-size: contain;
    aspect-ratio: 1246 / 763;
    width: 87%;
    position: absolute;
    display: flex;
    right: 1px;
    top: 50%;
    z-index: -1;
    top: 730px;
    right: -180px;
    max-width: 1246px;
}
.whyIdep_sec .lefttopBigtitles {
    position: relative;
    margin-bottom: 55px;
}
.whyIdep_sec .lefttopBigtitles h2 {
    position: relative;
    font-size: 72px;
    font-style: italic;
    font-weight: 900;
    margin: 0;
    line-height: 1.4;
}

.whyIdep_sec .lefttopBigtitles h2 span.blue_box {
    background: var(--blue);
    color: #fff;
    gap: 5px;
    align-items: center;
    line-height: 1;
    width: fit-content;
    border-radius: 6px;
    display: inline-flex;
    transform: skewX(-10deg);
    font-style: normal;
    padding: 0px 16px 5px;
    margin-right: 10px;
    margin-left: -10px;
}
.whyIdep_sec .lefttopBigtitles h2 span.blue_box span.rightsmalls {
    font-size: 21px;
}
.whyIdep_sec .lefttopBigtitles h2 span.blue_box span.lefatbigs {
    font-family: "Barlow", sans-serif;
    font-weight: 900;
}
.whyIdep_sec .centersircleImg_row {
    position: relative;
    margin-bottom: -270px;
}
.whyIdep_sec .centersircleImg_row .centersircleImg_box {
    max-width: 780px;
    margin: 0 auto;
    position: relative;
}
.whyIdep_sec .centersircleImg_row p.righttop_text {
    font-size: 14px;
    font-weight: 500;
    color: var(--blue);
    position: absolute;
    top: 0;
    right: 0;
    max-width: 300px;
    margin: 0;
}
.whyIdep_sec .centersircleImg_row p.leftbottom_text {
    margin: 0;
    position: absolute;
    top: 49.3%;
    font-size: 10px;
    color: var(--blue);
    transform: skewX(-10deg);
    font-family: "Barlow", sans-serif;
    padding: 10px 15px;
    border-bottom: 1px solid;
}
.whyIdep_sec .centersircleImg_row .center_en {
    background: var(--blue);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    position: absolute;
    top: 32%;
    left: 51%;
}
.whyIdep_sec .centersircleImg_row .borderslash {
    height: 430px;
    width: 1px;
    position: absolute;
    top: 19%;
    left: 34.2%;
    background: pink;
    background: var(--blue);
    transform: rotate(61deg);
}
.whyIdep_sec .oneTool_row {
    background: #fff;
    padding: 20px 40px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgb(26 26 26 / 5%);
    position: relative;
}
.whyIdep_sec .oneTool_row h2.titles {
    margin: 0;
    text-align: center;
    font-size: 80px;
    font-weight: 900;
    font-style: italic;
    color: var(--blue);
    font-family: "Barlow", sans-serif;
}
.whyIdep_sec .oneTool_row p.subtext {
    margin: 0;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    font-style: italic;
}
.whyIdep_sec .oneTool_row .flexsBlue {
    display: grid;
    gap: 23px;
    grid-template-columns: 1fr 1fr;
    margin-top: 36px;
    margin-bottom: 40px;
}
.whyIdep_sec .oneTool_row .flexsBlue .flexsBlue_box {
    background: #fff;
    border-radius: 10px;
    border: 1px solid var(--blue);
}
.whyIdep_sec .oneTool_row .flexsBlue .flexsBlue_box h3 {
    background: var(--blue);
    color: #fff;
    margin: 0;
    border-radius: 8px 8px 0px 0px;
    font-size: 22px;
    text-align: center;
    padding: 18px 20px;
    font-weight: 900;
}
.whyIdep_sec .oneTool_row .flexsBlue .flexsBlue_box .list_flexs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 20px 40px 20px;
}
.whyIdep_sec .oneTool_row .flexsBlue .flexsBlue_box .list_flexs .lists_in {
    padding: 20px 20px;
    position: relative;
}
.whyIdep_sec .oneTool_row .flexsBlue .flexsBlue_box .list_flexs .lists_in h4 {
    margin: 0;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
}
.whyIdep_sec .oneTool_row .flexsBlue .flexsBlue_box .list_flexs .lists_in ul {
    margin: 0;
    padding-left: 1.5em;
}
.whyIdep_sec .oneTool_row .flexsBlue .flexsBlue_box .list_flexs .lists_in ul li {
    font-size: 14px;
    color: var(--black);
}
.whyIdep_sec .oneTool_row .flexsBlue .flexsBlue_box .list_flexs .lists_in:nth-of-type(1),
.whyIdep_sec .oneTool_row .flexsBlue .flexsBlue_box .list_flexs .lists_in:nth-of-type(2) {
    border-bottom: 1px solid #E3E3E3;
}
.whyIdep_sec .oneTool_row .flexsBlue .flexsBlue_box .list_flexs .lists_in:nth-of-type(1)::after,
.whyIdep_sec .oneTool_row .flexsBlue .flexsBlue_box .list_flexs .lists_in:nth-of-type(3)::after {
    height: calc(100% - 40px);
    width: 1px;
    background: #E3E3E3;
    position: absolute;
    right: 0;
    top: 20px;
    content: "";
}
.whyIdep_sec .oneTool_row .btnParts_flex {
    display: flex;
    gap: 20px;
    justify-content: center;
}
.btn_parts01 {
    position: relative;
}
.btn_parts01 a {
    background: var(--black);
    color: #fff !important;
    width: 350px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 900 !important;
    border-radius: 100px;
    transition: .3s;
    margin: 0 auto;
}
.btn_parts01 a:hover {
    opacity: .7 !important;
}
.whyIdep_sec .oneTool_row .flexsBlue .flexsBlue_box:nth-of-type(1) {
    position: relative;
}
.whyIdep_sec .oneTool_row .flexsBlue .flexsBlue_box:nth-of-type(1)::before {
    content: "";
}
.whyIdep_sec .oneTool_row .flexsBlue .flexsBlue_box:nth-of-type(1)::before {
    content: "";
    height: 80px;
    width: 2px;
    background: var(--blue);
    position: absolute;
    right: -13px;
    top: 38%;
    transform: rotate(45deg) translate(0px, 0px);
}
.whyIdep_sec .oneTool_row .flexsBlue .flexsBlue_box:nth-of-type(1)::after {
    content: "";
    height: 80px;
    width: 2px;
    background: var(--blue);
    position: absolute;
    right: -13px;
    top: 38%;
    transform: rotate(-45deg) translate(0px, 0px);
}
.title_row01 {
    position: relative;
    margin-bottom: 40px;
}
.title_row01 h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 900;
    font-style: italic;
    margin: 0;
}
.title_row01 p.subtexts {
    font-size: 12px;
    text-align: center;
    font-family: "Barlow", sans-serif;
    color: var(--blue);
    font-style: italic;
    margin: 0;
}
.newEra_sec {
    padding-left: 20px;
    padding-right: 20px;
    overflow: hidden;
    padding-top: 20px;
    background-image: url("https://22565638.fs1.hubspotusercontent-na1.net/hubfs/22565638/raw_assets/public/idep_2026/images/idepparts_05.svg");
    z-index: 0;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 30px;
    background-position: center;
    margin-top: 50px;
    margin-bottom: 30px;
}
.newEra_sec .newEra_row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 45px;
}
.newEra_sec .newEra_row .newEra_col {
    position: relative;
}
.newEra_sec .newEra_row .newEra_col .textstt {
    font-size: 23px;
    text-align: center;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
.newEra_sec .newEra_row .newEra_col::before {
    content: "";
    background: var(--yellow);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    transform: skewX(-20deg);
    border-radius: 40px;
}
.w134 {
    max-width: 1340px;
    margin: 0 auto;
}
.functionss_sec {
    background: var(--yellow);
    padding-top: 100px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 130px;
    position: relative;
    overflow: hidden;
}
.functionss_sec::before {
    content: "";
    background-image: url("https://22565638.fs1.hubspotusercontent-na1.net/hubfs/22565638/raw_assets/public/idep_2026/images/idepparts_07.svg");
    background-repeat: no-repeat;
    background-size: contain;
    aspect-ratio: 1190 / 692;
    position: absolute;
    right: -430px;
    bottom: -160px;
    width: 82.7%;
    max-width: 1190px;
}
.functionss_sec .centerImg_row {
    position: relative;
}
.functionss_sec .centerImg_row .centersircleImg_box {
    max-width: 790px;
    margin: 0 auto;
    margin-top: -52px;
    transform: translate(-40px, 0px);
}
.functionss_sec .centerImg_row p.lefttop_titles {
    position: absolute;
    margin: 0;
    top: 110px;
    font-size: 30px;
    font-weight: 900;
    line-height: 1.2;
    left: 40px;
}
.functionss_sec .centerImg_row p.righttop_text {
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    position: absolute;
    top: 240px;
    right: 0;
    margin: 0;
    max-width: 280px;
    letter-spacing: 0;
}
.functionss_sec .centerImg_row .center_en {
    background: var(--blue);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    position: absolute;
    top: 210px;
    left: 47%;
}
.functionss_sec .centerImg_row .borderslash {
    height: 56%;
    width: 1px;
    position: absolute;
    top: 24.7%;
    left: 35.4%;
    background: var(--blue);
    transform: rotate(65deg);
}
.functionss_sec .centerImg_row p.leftbottom_text {
    margin: 0;
    position: absolute;
    top: 49.3%;
    font-size: 14px;
    color: var(--blue);
    transform: skewX(-10deg);
    font-family: "Barlow", sans-serif;
    padding: 9px 16px;
    border-bottom: 1px solid;
    left: 7%;
}
.functionss_sec .functionList_row {
    position: relative;
    margin-bottom: 50px;
}

.functionss_sec .functionList_row .flexs {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.functionss_sec .functionList_row .flexs .ttles {
    font-size: 21px;
    font-weight: 900;
    font-style: italic;
    position: relative;
    display: flex;
    align-items: center;
}

.functionss_sec .functionList_row .flexs .ttles::before {
    content: "";
    width: 15px;
    height: 2px;
    background: var(--black);
}

.functionss_sec .functionList_row .flexs ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.functionss_sec .functionList_row .flexs ul li {
    list-style: none;
}
.functionss_sec .functionList_row .flexs ul li {
    color: var(--blue);
    font-size: 15px;
    font-weight: bold;
    padding: 16px 25px;
    transform: skewX(0deg);
    position: relative;
    z-index: 0;
}
.functionss_sec .functionList_row .flexs ul li::before {
    position: absolute;
    content: "";
    background: #fff;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    transform: skewX(-20deg);
    border-radius: 5px;
    left: 0;
    top: 0;
}
.interviews_sec {
    background: var(--black);
    position: relative;
    padding-top: 120px;
    padding-bottom: 75px;
}
.title_row02 {
    position: relative;
    margin-bottom: 40px;
}
.title_row02 .title_box02 {
    position: relative;
}
.title_row02 .title_box02 h2 {
    font-family: "Barlow", sans-serif;
    font-weight: 900;
    color: #fff;
    text-align: center;
    font-size: 80px;
    font-style: italic;
    line-height: 1.4;
    margin: 0;
}
.title_row02 .title_box02 p.textsubs {
    color: var(--yellow);
    font-size: 14px;
    text-align: center;
    margin: 0;
    font-style: italic;
}
.interviews_sec .tagselectlist_row {
    position: relative;
    margin-bottom: 100px;
}
.interviews_sec .tagselectlist_row ul {
    display: flex;
    width: fit-content;
    margin: 0 auto;
    gap: 4px;
    border-radius: 2px;
    padding: 0;
}
.interviews_sec .tagselectlist_row ul li {
    position: relative;
    list-style: none;
}
.interviews_sec .tagselectlist_row ul li a.filter-btn {
    background: #2B2B2B;
    border: 1px solid #828282;
    border-radius: 2px;
    display: flex;
    align-items: center;
    min-width: 140px;
    min-height: 30px;
    padding: 0px 20px;
    color: #979797;
    font-size: 12px;
    font-weight: bold;
    transition: .3s;
    position: relative;
    padding-left: 40px;
    line-height: 1;
}
.interviews_sec .tagselectlist_row ul li a.filter-btn.active {
    color: #fff;
    pointer-events: none;
}
.interviews_sec .tagselectlist_row ul li a.filter-btn:hover {
    opacity: .7;
}
.interviews_sec .tagselectlist_row ul li a.filter-btn::before {
    content: "";
    width: 15px;
    height: 15px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    left: 20px;
}
.interviews_sec .tagselectlist_row ul li a.filter-btn::after {
    content: "";
    width: 9px;
    height: 9px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    left: 23px;
}
.interviews_sec .tagselectlist_row ul li a.filter-btn.active::after {
    background: var(--blue);
}
.interviews_sec .interviews_row {
    position: relative;
    border-top: 1px solid #868686;
    padding: 80px 20px;
}
.interviews_sec .interviews_row .contentss.filter-item.main-feature {
    position: relative;
    display: flex;
    max-width: 1360px;
    margin: 0 auto;
    gap: 50px;
}
.interviews_sec .interviews_row .contentss.filter-item.main-feature .text_col {
    position: relative;
    width: 57.6%;
}
.interviews_sec .interviews_row .contentss.filter-item.main-feature .text_col h3 {
    color: #fff;
    font-size: 34px;
    font-weight: 900;
    margin: 0;
    border-bottom: 1px solid #535353;
    padding-bottom: 20px;
    margin-bottom: 30px;
}
.interviews_sec .interviews_row .contentss.filter-item.main-feature .img_col {
    position: relative;
    width: 38.7%;
    display: flex;
    height: fit-content;
}
.interviews_sec .interviews_row .contentss.filter-item.main-feature .img_col img {
    display: flex;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.interviews_sec .interviews_row .contentss.filter-item.main-feature .text_col .bunruflex {
    color: #828282;
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
}
.interviews_sec .interviews_row .contentss.filter-item.main-feature .text_col .bunruflex .bunrubox {
    display: flex;
    gap: 10px;
}
.interviews_sec .interviews_row .contentss.filter-item.main-feature .text_col .bunruflex .bunrubox .intt {
    font-size: 13px;
    font-weight: 500;
}
.interviews_sec .interviews_row .contentss.filter-item.main-feature .text_col .bunruflex .bunrubox .inte {
    font-size: 13px;
    font-weight: 500;
    border: 1px solid #535353;
    border-radius: 2px;
    padding: 0px 4px;
}
.interviews_sec .interviews_row .contentss.filter-item.main-feature .readMore {
    position: relative;
}
.interviews_sec .interviews_row .contentss.filter-item.main-feature .readMore a {
    color: var(--yellow);
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    border: 1px solid #535353;
    padding: 8px 20px 10px 20px;
    display: flex;
    width: fit-content;
    border-radius: 100px;
    margin-left: auto;
    font-style: italic;
    transition: .3s;
}
.interviews_sec .interviews_row .contentss.filter-item.main-feature .readMore a:hover {
    opacity: .7;
}
.interviews_sec .interviews02_row {
    position: relative;
}
.interviews_sec .interviews02_row ul {
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #868686;
}
.interviews_sec .interviews02_row ul li.filter-item.sub-list {
    border-top: 1px solid #868686;
    list-style: none;
}
.interviews_sec .interviews02_row ul li.filter-item.sub-list a {
    color: #868686;
    font-size: 14px;
    font-weight: 900;
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 14px 20px;
    transition: .3s;
}
.interviews_sec .interviews02_row ul li.filter-item.sub-list a:hover {
    opacity: .7;
}
.IntroductionVideo_sec {
    background: var(--black);
    position: relative;
    padding-top: 75px;
    padding-bottom: 60px;
}
.title_row04 {
    position: relative;
    padding-top: 45px;
    margin-bottom: 40px;
}
.title_row04 .backtexts {
    position: absolute;
    margin: 0;
    left: 50%;
    text-shadow: 1px 1px 0 #6E6E6E, -1px -1px 0 #6E6E6E, -1px 1px 0 #6E6E6E, 1px -1px 0 #6E6E6E, 0px 1px 0 #6E6E6E, 0-1px 0 #6E6E6E, -1px 0 0 #6E6E6E, 1px 0 0 #6E6E6E;
    font-size: 90px;
    line-height: 1;
    font-family: "Barlow", sans-serif;
    font-style: italic;
    font-weight: 900;
    letter-spacing: 0;
    white-space: nowrap;
    transform: translate(-50%, 0px);
    bottom: 10px;
}
.title_row04 h2 {
    position: relative;
    margin: 0;
    color: var(--yellow);
    font-size: 30px;
    font-weight: 500;
    text-align: center;
    font-style: italic;
}
.IntroductionVideo_sec .IntroductionVideo_row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}
.IntroductionVideo_sec .IntroductionVideo_row .IntroductionVideo_col {
    position: relative;
}
.IntroductionVideo_sec .IntroductionVideo_row .IntroductionVideo_col iframe {
    width: 100%;
    aspect-ratio: 346 / 190;
}
.IntroductionVideo_sec .IntroductionVideo_row .IntroductionVideo_col .textst {
    font-size: 16px;
    color: #fff;
    text-align: center;
    font-weight: 500;
    margin-top: 2px;
}
.news_sec {
    background: var(--black);
    position: relative;
    padding-top: 60px;
    padding-bottom: 120px;
}
.news_sec .news_row {
    position: relative;
    display: flex;
    gap: 20px;
    justify-content: space-between;
}
.news_sec .news_row .newsTitle_col .title {
    position: relative;
    margin-bottom: 30px;
}
.news_sec .news_row .newsTitle_col .title h2 {
    font-size: 32px;
    color: #fff;
    font-weight: bold;
    margin: 0;
}
.news_sec .news_row .newsTitle_col .title p {
    margin: 0;
    color: #b1b1b1;
    font-style: italic;
    font-family: "Barlow", sans-serif;
    font-size: 12px;
}
.news_sec .news_row .newsTitle_col .case_btn a {
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    background: #fff;
    display: flex;
    width: fit-content;
    border-radius: 100px;
    padding: 4px 18px;
    transition: .3s;
}
.news_sec .news_row .newsTitle_col .case_btn a:hover {
    opacity: .7;
}
.news_sec .news_row .newsList_col {
    width: 70.7%;
}
.news_sec .news_row .newsList_col ul {
    padding: 0;
    margin: 0;
}
.news_sec .news_row .newsList_col ul li {
    list-style: none;
    border-top: 1px solid #868686;
}
.news_sec .news_row .newsList_col ul li a {
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    padding: 40px 0;
    transition: .3s;
}
.news_sec .news_row .newsList_col ul li a .left_box .daytime {
    color: #868686;
    font-family: "Barlow", sans-serif;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 4px;
}
.news_sec .news_row .newsList_col ul li a .left_box .title {
    font-size: 16px;
    font-weight: bold;
}
.news_sec .news_row .newsList_col ul li a .imgsarrow {
    background: #868686;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.news_sec .news_row .newsList_col ul li:last-of-type {
    border-bottom: 1px solid #868686;
}
.news_sec .news_row .newsList_col ul li a:hover {
    opacity: .7;
}


footer.footer_sec {
    padding-top: 90px;
    overflow: hidden;
    position: relative;
    padding-bottom: 90px;
    padding-right: 20px;
    padding-left: 20px;
}
footer.footer_sec::before {
    content: "";
    background-image: url("https://22565638.fs1.hubspotusercontent-na1.net/hubfs/22565638/raw_assets/public/idep_2026/images/idepparts_15.svg");
    background-repeat: no-repeat;
    aspect-ratio: 2135 / 611;
    position: absolute;
    background-position: center;
    top: 0;
    z-index: -1;
    background-size: contain;
    width: 2135px;
    left: 50%;
    transform: translate(-50%, 0px);
}
footer.footer_sec .footertitles {
    margin-bottom: 40px;
}
footer.footer_sec .footertitles .footerintte {
    font-size: 50px;
    font-weight: 900;
    line-height: 1.2;
    font-style: italic;
}
footer.footer_sec .flex_contents {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 20px;
}
footer.footer_sec .flex_contents .footer_menu {
    max-width: 620px;
}
footer.footer_sec .flex_contents .footer_menu nav.menu ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 110px;
    row-gap: 30px;
}
footer.footer_sec .flex_contents .footer_menu nav.menu ul li {
    padding: 0;
}
footer.footer_sec .flex_contents .footer_menu nav.menu ul li a.menu__link {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0;
    transition: .3s;
}
footer.footer_sec .flex_contents .footer_menu nav.menu ul li a.menu__link:hover {
    color: var(--blue);
}
footer.footer_sec .flex_contents .footer_menu nav.menu ul li a.menu__link span.small {
    font-size: 12px;
    font-weight: 400;
    color: var(--blue);
    font-style: italic;
    line-height: 1;
    display: block;
    margin-top: 4px;
    text-transform: lowercase;
}
footer.footer_sec .flex_contents .download_logo {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: end;
}
footer.footer_sec .logos {
    text-align: end;
    margin-bottom: 5px;
}
footer.footer_sec .flextree_content {
    display: flex;
    position: relative;
    align-items: end;
    justify-content: space-between;
}
footer.footer_sec .flextree_content .left_cols ul {
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}
footer.footer_sec .flextree_content .left_cols ul li {
    list-style: none;
}
footer.footer_sec .flextree_content .left_cols ul li a {
    font-size: 12px;
    color: #868686;
    font-weight: 500;
    transition: .3s;
}
footer.footer_sec .flextree_content .left_cols ul li a:hover {
    opacity: .7;
}
footer.footer_sec .flextree_content .tight_cols {
    display: flex;
    gap: 50px;
}
footer.footer_sec .flextree_content .tight_cols .lastfocus_text {
    font-size: 12px;
    text-align: end;
    color: #868686;
}
footer.footer_sec .flextree_content .tight_cols .lastfocus_text div#hs_cos_wrapper_copyright {
    text-align: right;
}
footer.footer_sec .flextree_content .tight_cols .lastfocus_text .adress_text {
    margin-bottom: 10px;
}
footer.footer_sec .flex_contents .download_logo .app a,
footer.footer_sec .flex_contents .download_logo .googleplay_logo a {
    transition: .3s;
}
footer.footer_sec .flex_contents .download_logo .app a:hover,
footer.footer_sec .flex_contents .download_logo .googleplay_logo a:hover {
    opacity: .7;
}
footer.footer_sec .logos a {
    transition: .3s;
}
footer.footer_sec .logos a:hover {
    opacity: .7;
}
.mv_sec {
    position: relative;
    padding: 20px 20px;
    height: 700px;
    overflow: hidden;
    margin-top: -105px;
}
.mv_sec .backgroundsyellows {
    position: absolute;
    top: 70px;
    right: 140px;
    background: var(--yellow);
    border-radius: 100px;
    transform: matrix(1, 0, -0.31, 0.95, 0, 0);
    position: absolute;
    width: 570px;
    height: 976px;
    z-index: -1;
}
.mv_sec .mv_conte {
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    position: relative;
}
.mv_sec .mv_conte .mv_row {
    height: 100%;
}
.mv_sec .mv_conte .mv_row .text_col {
    position: absolute;
    z-index: 1;
    top: 26%;
}
.mv_sec .mv_conte .mv_row .humanimgSlide_col {
    position: absolute;
    right: 0px;
    top: 65px;
    width: 50%;
}
.mv_sec .mv_conte .mv_row .text_col h1 {
    /* text-align: end; */
    /* text-indent: 1em; */
    margin: 0;
}
.mv_sec .mv_conte .mv_row .text_col h1 span.bigttl {
    text-indent: -2.3em;
    display: inline-block;
    padding-left: 2.3em;
    font-size: 140px;
    line-height: 1;
    font-style: italic;
    letter-spacing: -0.1em;
    font-weight: 900;
}
.mv_sec .mv_conte .mv_row .text_col h1 span.subttl {
    font-size: 38px;
    font-weight: bold;
    font-style: italic;
    margin-left: 100px;
    letter-spacing: -0.08em;
}
.mv_sec .mv_conte .mv_row .text_col .texts {
    position: absolute;
    bottom: 40px;
    left: 120px;
}
.mv_sec .mv_conte .mv_row .text_col .texts p {
    margin: 0;
    font-size: 14px;
    font-style: italic;
    color: var(--blue);
    line-height: 1.3;
    font-weight: 500;
}
.mv_sec .mv_conte .mv_row .tripleTexts_col {
    position: absolute;
    bottom: 40px;
    right: 0;
    display: flex;
    z-index: 1;
    gap: 5px;
}
.mv_sec .mv_conte .mv_row .leftBottomFlex_col {
    position: absolute;
    bottom: 40px;
    display: flex;
    gap: 10px;
    align-items: center;
}
.mv_sec .mv_conte .mv_row .leftBottomFlex_col .app_googleplay_logo a {
    display: flex;
}
.mv_sec .mv_conte .mv_row .leftBottomFlex_col .pointerTexts_area {
    margin-left: 50px;
    position: relative;
}
.mv_sec .mv_conte .mv_row .leftBottomFlex_col .pointerTexts_area .ttetexts {
    font-size: 10px;
    font-style: italic;
    color: var(--blue);
    border-bottom: 1px solid;
    padding: 10px;
    line-height: 1.2;
}
.mv_sec .mv_conte .mv_row .leftBottomFlex_col .pointerTexts_area .en {
    width: 14px;
    height: 14px;
    background: var(--blue);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-100%, -50%);
    left: -30px;
}
.mv_sec .mv_conte .mv_row .tripleTexts_col .tripleTexts {
    position: relative;
    font-size: 19px;
    color: #fff;
    font-weight: bold;
    font-style: italic;
    padding: 10px 30px;
    line-height: 1.2;
}
.mv_sec .mv_conte .mv_row .tripleTexts_col .tripleTexts::before {
    content: "";
    background: var(--blue);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    transform: skewX(-20deg);
    border-radius: 5px;
    left: 0;
    top: 0;
}
.mv_sec .mv_conte .mv_row .leftBottomFlex_col .pointerTexts_area .sen {
    height: 69%;
    width: 1px;
    position: absolute;
    bottom: -7px;
    left: -7%;
    background: var(--blue);
    transform: rotate(-53deg);
}
/* ---------------------------フロントページlast ---------------------------*/



/*=====================================
*
*footer追従下部
*
=======================================*/
/* -------------------------------------
 * 追従メニュー全体のラッパー
 * ------------------------------------- */
.fixed_menu_sec {
    position: fixed;
    bottom: 20px;
    /* 画面下からの隙間 */
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    /* バーを画面中央に配置 */
    z-index: 9999;
    /* 最前面に表示 */
    pointer-events: none;
    /* バー以外の余白部分は背後の要素をクリック可能にする */
}
.fixed_menu_sec .inners {
    pointer-events: auto;
    /* メニュー自体はクリック可能に */
}
/* -------------------------------------
 * 黒いバーのデザイン
 * ------------------------------------- */
.fixed_menu_sec .inners .bars_flex {
    display: flex;
    align-items: center;
    background-color: var(--black);
    border-radius: 10px;
    padding: 5px 10px 5px 5px;
    box-shadow: 0 4px 24px rgb(208 255 0 / 30%);
    gap: 3px;
}
/* 各ボタンのデザイン */
.fixed_menu_sec .inners .bars_flex div#hs_cos_wrapper_fixed_menu_cta {
    display: contents;
}
/* 各ボタンのデザイン */
.fixed_menu_sec .inners .bars_flex .sn_box a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 36px;
    font-size: 16px;
    font-weight: bold;
    transition: opacity 0.3s ease;
    background: #585858;
    border-radius: 5px;
    height: 60px;
}
.fixed_menu_sec .inners .bars_flex a:hover {
    opacity: 0.7;
    color: #ffffff;
    font-weight: bold;
    /* ホバーで少し透過 */
}
/* -------------------------------------
 * アイコンのプレースホルダー
 * ------------------------------------- */
.fixed_menu_sec .inners .bars_flex .icons {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 6px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
/* 画像に合わせた各アイコンをインラインSVGで設定 */
.fixed_menu_sec .inners .bars_flex .contact_box .icons {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}
.fixed_menu_sec .inners .bars_flex .downloads_box .icons {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M19 9h-4V3H9v6H5l7 7 7-7zM5 18v2h14v-2H5z'/%3E%3C/svg%3E");
}
.fixed_menu_sec .inners .bars_flex .demos_box .icons {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M9 11.24V7.5C9 6.12 10.12 5 11.5 5S14 6.12 14 7.5v3.74c1.21-.81 2-2.18 2-3.74C16 5.01 13.99 3 11.5 3S7 5.01 7 7.5c0 1.56.79 2.93 2 3.74zm9.84 4.63l-4.54-2.26c-.17-.07-.35-.11-.54-.11H13v-6c0-.83-.67-1.5-1.5-1.5S10 6.67 10 7.5v10.74l-3.43-.72c-.08-.01-.15-.03-.24-.03-.31 0-.59.13-.79.33l-.79.8 4.94 4.94c.27.27.65.44 1.04.44h6.79c.75 0 1.33-.55 1.44-1.28l.75-5.27c.01-.07.02-.14.02-.2 0-.62-.38-1.16-.91-1.38z'/%3E%3C/svg%3E");
}
/* -------------------------------------
 * ハンバーガーメニューの黄色いボタン
 * ------------------------------------- */
.fixed_menu_sec .inners .bars_flex .menus_box {
    width: 50px;
    height: 50px;
    background-color: #d8f500;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: 7px;
    cursor: pointer;
    position: relative;
    transition: transform 0.2s ease;
}
.fixed_menu_sec .inners .bars_flex .menus_box:active {
    transform: scale(0.95);
}
/* 2本の線 */
.fixed_menu_sec .inners .bars_flex .menus_box::before {
    content: "";
    width: 22px;
    height: 2px;
    background-color: #111;
    box-shadow: 0 7px 0 0 #111;
    transform: translateY(0px);
    transition: all 0.3s ease;
}
/* 「MENU」の文字 */
.fixed_menu_sec .inners .bars_flex .menus_box::after {
    content: "MENU";
    font-size: 10px;
    font-weight: 900;
    color: #111;
    margin-top: 10px;
    transition: all 0.3s ease;
}
/* --- クリックされてメニューが開いたとき（×ボタンに変化） --- */
.fixed_menu_sec .inners .bars_flex .menus_box.is-open::before {
    box-shadow: none;
    transform: translateY(1px) rotate(45deg);
}
.fixed_menu_sec .inners .bars_flex .menus_box.is-open::after {
    content: "";
    /* 文字を消してもう一本の線にする */
    width: 22px;
    height: 2px;
    background-color: #111;
    font-size: 0;
    margin-top: 0;
    transform: translateY(-1px) rotate(-45deg);
}
/* -------------------------------------
 * （重要）開かれるメニューの中身自体の制御
 * Hubspotモジュールの出力内容を想定
 * ------------------------------------- */
/* まずは非表示にする */
.fixed_menu_sec .inners .bars_flex .menus_box>div,
.fixed_menu_sec .inners .bars_flex .menus_box>nav,
.fixed_menu_sec .inners .bars_flex .menus_box>ul {
    display: none;
    position: absolute;
    bottom: 70px;
    /* ボタンの真上に浮かせる */
    right: 0;
    background-color: #ffffff;
    color: #333;
    width: 250px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 16px;
    text-align: left;
    cursor: default;
}
/* is-openクラスが付いたら表示する */
.fixed_menu_sec .inners .bars_flex .menus_box.is-open>div,
.fixed_menu_sec .inners .bars_flex .menus_box.is-open>nav,
.fixed_menu_sec .inners .bars_flex .menus_box.is-open>ul {
    display: block;
    animation: fadeUp 0.3s ease;
}
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.fixed_menu_sec .inners .bars_flex .menus_box nav.menu ul.menu__wrapper.no-list {
    display: flex;
    flex-direction: column;
    row-gap: 0px;
}
.fixed_menu_sec .inners .bars_flex .menus_box nav.menu ul.menu__wrapper.no-list li a.menu__link {
    transition: .3s;
}
.fixed_menu_sec .inners .bars_flex .menus_box nav.menu ul.menu__wrapper.no-list li a.menu__link:hover {
    opacity: .7;
    color: var(--blue);
}
.fixed_menu_sec .inners .bars_flex .menus_box nav.menu ul.menu__wrapper.no-list li a.menu__link span.small {
    font-size: 12px;
    font-weight: 400;
    color: rgb(0, 21, 255);
    font-style: italic;
    line-height: 1;
    display: block;
    margin-top: 4px;
    text-transform: lowercase;
}
/* スマホ用の微調整が必要な場合はここに追記 */
@media screen and (max-width: 768px) {
    .fixed_menu_sec .inners .bars_flex a {
        font-size: 11px;
        padding: 10px 8px;
    }
    .fixed_menu_sec .inners .bars_flex .menus_box {
        width: 44px;
        height: 44px;
    }
    .fixed_menu_sec .inners .bars_flex .menus_box::after {
        font-size: 9px;
    }
}
/*=====================================
*
*page single arcive 他ページ
*
=======================================*/
.mv_pages {
    position: relative;
    padding: 0 20px;
    padding-bottom: 40px;
    padding-top: 40px;
}
.mv_pages .page-ttl {
    font-size: 50px;
    font-weight: bold;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: 0;
    margin-bottom: 14px;
    margin: 0;
}
.mv_pages p.h1_subtitle {
    margin: 0;
    font-size: 14px;
    font-weight: 900;
    color: var(--blue);
    font-family: "Roboto", sans-serif;
    line-height: 1.2;
    letter-spacing: .04em;
    margin-top: 20px;
}
.mv_pages .comentIcon_flex {
    align-items: center;
    display: flex;
    gap: 20px;
    position: relative;
    width: fit-content;
    margin-left: auto;
    margin-top: 10px;
    position: absolute;
    bottom: 0px;
    right: 0;
}
.mv_pages .comentIcon_flex .coment {
    background: #fff;
    border: 1px solid #3db156;
    border-radius: 50px;
    height: fit-content;
    padding: 5px 20px 7px;
    position: relative;
}
.mv_pages .comentIcon_flex .coment p {
    margin: 0;
    font-size: 14px;
    letter-spacing: .04em;
    color: #21B140;
    font-weight: 900;
    position: relative;
}
.mv_pages .comentIcon_flex .imgs {
    display: flex;
}
.mv_pages .comentIcon_flex .coment::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 14px solid #3DB156;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translate(100%, -50%);
}
.mv_pages .comentIcon_flex .coment::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 14px solid #fff;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translate(100%, -50%);
}
#hs_cos_wrapper_bread-crumbs .bread-crumbs__wrap {
    position: relative !important;
    top: initial !important;
    left: initial !important;
    padding: 0 20px;
}
#hs_cos_wrapper_bread-crumbs .bread-crumbs {
    margin-bottom: 0 !important;
    padding: 0 !important;
}
#hs_cos_wrapper_bread-crumbs .bread-crumbs__list a {
    color: var(--black) !important;
}
#hs_cos_wrapper_bread-crumbs .bread-crumbs__list::after {
    border-top: 1px solid var(--black) !important;
    border-right: 1px solid var(--black) !important;
}
.anker_nav_row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 80px;
}
.anker_nav_row ul {
    background: #fff;
    display: flex;
    gap: 0px;
    width: 100%;
    justify-content: center;
    border-radius: 100px;
    min-height: 60px;
    align-items: center;
    margin-bottom: 0;
    padding: 15px 20px;
    flex-wrap: wrap;
}
.anker_nav_row ul li {
    list-style: none;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    border-right: 1px solid rgb(26 26 26 / 20%);
    padding: 0 20px;
}
.anker_nav_row ul li a {
    color: var(--black);
    position: relative;
    transition: .3s;
    text-underline-offset: 3px;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0;
}
.anker_nav_row ul li::after {
    content: "";
    width: 9px;
    height: 9px;
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 10px solid var(--blue);
}
.anker_nav_row ul li a:hover {
    opacity: .7;
}

.body-container--page {
    padding: 0px 0 !important;
}
.border_row {
    position: relative;
    padding: 0 20px;
}
.border_row .in_border {
    width: 100%;
    height: 6px;
    background: #F3F3F3;
    border-radius: 10px;
}
.title_row03 {
    position: relative;
    padding: 0 20px;
}
.title_row03 .title_box03 {
    position: relative;
    text-align: center;
}
.title_row03 .title_box03 .fuki {
    position: relative;
    background: #1FB640;
    width: fit-content;
    padding: 7.5px 27px;
    font-size: 25px;
    font-weight: bold;
    color: #fff;
    margin: 0 auto;
    border-radius: 50px;
    line-height: 1;
    margin-bottom: 8px;
}
.title_row03 .title_box03 .fuki::after {
    content: "";
    position: absolute;
    bottom: -7px;
    left: 50%;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid #1FB640;
    transform: translate(-50%, 0%);
}
.title_row03 .title_box03 h2 {
    margin: 0;
    margin-top: 10px;
    font-size: 38px;
    color: var(--black);
}
.background_decoration03 {
    position: absolute;
    top: 0;
    left: 0px;
}
.mv_pages p.h1_text {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    margin-top: 20px;
    margin-bottom: 0;
    color: var(--black);
}
.mv_pages .w110 {
    position: relative;
}
.mv_pages.add_border::after {
    content: "";
    height: 3px;
    background: var(--black);
    position: absolute;
    bottom: -6px;
    border-radius: 10px;
    max-width: 1100px;
    width: calc(100% - 40px);
    margin: 0 auto;
    transform: translate(-50%, 0px);
    left: 50%;
}
.title_row03 .title_box03 .sub_texts {
    font-size: 14px;
    font-weight: bold;
    color: #3DB156;
    line-height: 1.2;
    margin-top: 6px;
}
.body-container--blog-index {
    padding: 100px 0px 0px !important;
}
article.list_page_row {
    position: relative;
    padding: 0 20px;
    margin-bottom: 100px;
}
article.list_page_row .in_row {
    position: relative;
}
article.list_page_row .in_row ul {
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
    row-gap: 40px;
    margin: 0;
}
article.list_page_row .in_row ul li {
    position: relative;
    list-style: none;
}
article.list_page_row .in_row ul li .img_box {
    display: flex;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 69.6%;
}
article.list_page_row .in_row ul li .img_box a {
    display: flex;
}
article.list_page_row .in_row ul li .img_box a img {
    transition: .3s;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}
article.list_page_row .in_row ul li .img_box a:hover img {
    transform: scale(1.1);
}
article.list_page_row .in_row ul li .text_box {
    position: relative;
}
article.list_page_row .in_row ul li .text_box p.tag_in {
    margin: 0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 10px;
    row-gap: 5px;
}
article.list_page_row .in_row ul li .text_box p.tag_in a {
    color: #2E9045;
    transition: .3s;
    font-size: 12px;
}
article.list_page_row .in_row ul li .text_box p.tag_in a::before {
    content: "#";
}
article.list_page_row .in_row ul li .text_box p.tag_in a:hover {
    opacity: .7;
}
article.list_page_row .in_row ul li .text_box p.title_in {
    margin: 0;
}
article.list_page_row .in_row ul li .text_box p.title_in a {
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    line-height: 1.4;
    transition: .3s;
}
article.list_page_row .in_row ul li .text_box p.title_in a:hover {
    opacity: .7;
}
.blogcase_con {
    position: relative;
    margin-top: 60px;
    margin-bottom: 100px;
    padding: 0 20px;
}

.blogcase_con .blogcase_sec {
    position: relative;
}
.blogcase_con .blogcase_sec h1 {
    margin-bottom: 30px;
    font-size: 38px;
    font-weight: 900;
    line-height: 1.2;
    margin-top: 50px;
    color: var(--black);
}
.blogcase_con .blogcase_sec .first_top_text p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
    margin: 0;
    margin: 30px 0;
}
.blogcase_con .blogcase_sec .icatchImg_box {
    display: flex;
    overflow: hidden;
    border-radius: 10px;
}
.article-index {
    background-color: #fff;
    padding: 35px 40px 35px 20px;
    border-radius: 10px;
    margin-top: 60px;
    max-width: 880px;
    margin: 40px auto;
}
.article-index .flexss {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}
.article-index .article-index__title {
    font-size: 16px;
    line-height: 1.08;
    font-weight: bold;
    display: flex;
    gap: 10px;
    flex-direction: column;
    align-items: center;
    color: var(--blue);
    width: 15.9%;
}
.article-index dd {
    margin: 0;
}
.article-index dd .article-index__list {
    padding: 0;
    margin: 0;
}
.article-index dd .article-index__list li {
    font-size: 18px;
    line-height: 140%;
    list-style: none;
    padding-left: 0 !important;
}
.article-index dd .article-index__list li:before {
    display: none;
}
.article-index dd .article-index__list li a {
    display: block;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    padding: 6px 0px 6px 0px;
    border-bottom: 1px dotted #868686;
    background-size: 18px 18px;
    transition: .3s;
}
.article-index dd .article-index__list li a:hover {
    opacity: .7;
}
.article-index dd .article-index__list ul.article-index__list--child {
    padding: 0;
}
.article-index dd .article-index__list ul.article-index__list--child li {
    position: relative;
}
.article-index dd .article-index__list ul.article-index__list--child li a::before {
    content: "┗";
}
.article-index dd .article-index__list ul.article-index__list--child li a {
    padding-left: 1em;
}
.share_sns_row {
    position: relative;
    margin: 30px 0;
}
.share_sns_row .sns-share-links {
    display: grid;
    gap: 10px !important;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
}
.share_sns_row .sns-share-links a.js-sns-link {
    height: 60px;
    display: flex;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s;
    background: var(--yellow);
}
.share_sns_row .sns-share-links a.js-sns-link img {
    position: relative;
}
.share_sns_row .sns-share-links a.js-sns-link:nth-of-type(1) img {
    aspect-ratio: 21.53 / 22;
    width: 21.53px;
}
.share_sns_row .sns-share-links a.js-sns-link:nth-of-type(2) img {
    aspect-ratio: 32 / 30.67;
    width: 32px;
}
.share_sns_row .sns-share-links a.js-sns-link:nth-of-type(3) img {
    aspect-ratio: 15.58 / 30;
    width: 15.58px;
}
.share_sns_row .sns-share-links a.js-sns-link:hover {
    opacity: .7;
}
.blogcase_con .blogcase_sec .content_in span#hs_cos_wrapper_post_body>p>img {
    overflow: hidden;
    display: flex;
    margin: 40px 0;
}
.blogcase_con .blogcase_sec .content_in span#hs_cos_wrapper_post_body>p {
    margin: 40px 0;
    font-weight: 500;
    font-size: 16px;
    line-height: 2;
}
.blogcase_con .blogcase_sec article.list_page_row {
    padding: 0;
}
.blogcase_con .blogcase_sec article.list_page_row .in_row ul {
    gap: 10px;
}
.blogcase_con .blogcase_sec article.list_page_row .in_row ul li .text_box p.title_in a {
    font-size: 14px;
}
.blogcase_con .blogcase_sec article.list_page_row .in_row ul li .img_box {
    margin-bottom: 0px;
}
.blogcase_con .blogcase_sec article.list_page_row .in_row ul li .text_box p.tag_in {
    margin-bottom: 6px;
}
.blogcase_con .blogcase_sec .icatchImg_box img {
    width: 100%;
}
.blogcase_con .flex_con_in {
    display: flex;
    gap: 50px;
}
.blogcase_con .flex_con_in .sideright_sec {
    max-width: 290px;
    min-width: 290px;
    width: 290px;
    position: relative;
}
.blogcase_con .flex_con_in .sideright_sec .side_content_row {
    position: relative;
    margin-bottom: 50px;
}
.blogcase_con .flex_con_in .sideright_sec .side_border {
    height: 6px;
    width: 100%;
    background: #F3F3F3;
    margin-bottom: 50px;
    border-radius: 10px;
}
.side_title_row {
    position: relative;
    background: #3DB156;
    border-radius: 5px;
    padding: 15px 20px;
    margin-bottom: 30px;
    display: flex;
    gap: 8px;
}
.side_title_row .icon {
    display: flex;
}
.side_title_row .icon img {
    width: 100%;
}
.side_title_row h2 {
    color: #fff;
    font-size: 18px;
    margin: 0;
    line-height: 1.4;
}
.blogcase_con .flex_con_in .sideright_sec .side_content_row .side_list {
    display: flex;
    flex-direction: column;
}

.blogcase_con .flex_con_in .sideright_sec .side_content_row .side_list .in_flex {
    border-bottom: 1px dotted #B2B2B2;
    padding: 20px 0;
}
.blogcase_con .flex_con_in .sideright_sec .side_content_row .side_list .in_flex a {
    display: flex;
    gap: 10px;
    transition: .3s;
}
.blogcase_con .flex_con_in .sideright_sec .side_content_row .side_list .in_flex a .img_col {
    width: 25.3%;
    background: pink;
    padding-bottom: 15%;
    position: relative;
    height: 0;
    overflow: hidden;
    border-radius: 5px;
}
.blogcase_con .flex_con_in .sideright_sec .side_content_row .side_list .in_flex a .text_col {
    width: 75.8%;
}
.blogcase_con .flex_con_in .sideright_sec .side_content_row .side_list .in_flex a .img_col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}
.blogcase_con .flex_con_in .sideright_sec .side_content_row .side_list .in_flex a .text_col p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: underline;
    color: var(--black);
    margin: 0;
}
.blogcase_con .flex_con_in .sideright_sec .side_content_row .side_list .in_flex a:hover {
    opacity: .7;
}
.blogcase_con .flex_con_in .sideright_sec .side_content_row .side_list .in_flex:last-of-type {
    border: none;
    padding-bottom: 0;
}
.blogcase_con .flex_con_in .sideright_sec .side_content_row .side_list .in_flex:first-of-type {
    padding-top: 0;
}
.blogcase_con .blogcase_sec .content_in {
    position: relative;
}
.blogcase_con .blogcase_sec .content_in span#hs_cos_wrapper_post_body>h2 {
    font-size: 34px;
    font-weight: bold;
    color: var(--black);
    padding: 0px 0px 0px 20px;
    position: relative;
    margin: 0;
    margin: 30px 0;
    line-height: 1.2;
    margin-top: 110px;
    margin-bottom: 40px;
}
.blogcase_con .blogcase_sec .content_in span#hs_cos_wrapper_post_body>h2::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--blue);
    transform: translate(0, -50%);
}
.blogcase_con .blogcase_sec .content_in span#hs_cos_wrapper_post_body>h3 {
    margin: 40px 0;
    font-size: 26px;
    color: var(--black);
    padding-bottom: 10px;
    position: relative;
    border-bottom: 2px solid #e0e0e0;
    position: relative;
}
.blogcase_con .blogcase_sec .content_in span#hs_cos_wrapper_post_body>h3::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    border-bottom: 2px solid var(--blue);
}
.blogcase_con .blogcase_sec .content_in span#hs_cos_wrapper_post_body>h4 {
    border-bottom: 2px dotted #ccc;
    padding-bottom: 6px;
    margin: 40px 0;
}
.blogcase_con .flex_con_in .sideright_sec .side_content_row .in_tag_list {
    position: relative;
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}
.blogcase_con .flex_con_in .sideright_sec .side_content_row .in_tag_list a {
    color: #3db156;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid;
    border-radius: 3px;
    line-height: 1;
    padding: 3px 5px 5px;
    font-size: 14px;
    transition: .3s;
}
.blogcase_con .flex_con_in .sideright_sec .side_content_row .in_tag_list a:hover {
    opacity: .7;
}
article.list_page_row .more_btns {
    position: relative;
    margin-top: 50px;
}
article.list_page_row .more_btns a {
    background: #3db156;
    display: flex;
    color: #fff;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 80px;
    border-radius: 100px;
    margin: 0 auto;
    transition: .3s;
    font-weight: 500;
    font-size: 16px;
}
article.list_page_row .more_btns a:hover {
    opacity: .7;
}
.pagination {
    margin-top: 50px;
}
.blog-index {
    padding: 0 !important;
}
.allInOne_row {
    position: relative;
    padding: 0 20px;
}
.allInOne_row .flexs_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.allInOne_row .flexs_row .allInOne_col {
    position: relative;
    background: #e9f8ed;
    background-image: repeating-linear-gradient(45deg, #ecf9f0, #ecf9f0 7px, transparent 0, transparent 14px);
    border-radius: 15px;
    overflow: hidden;
    padding: 12px 30px 12px 15px;
    display: flex;
    gap: 25px;
}
.allInOne_row .flexs_row .allInOne_col .img_col {
    display: flex;
    height: fit-content;
    overflow: hidden;
    border-radius: 20px;
    width: 26.2%;
}
.allInOne_row .flexs_row .allInOne_col .text_col {
    position: relative;
    width: 70%;
}
.allInOne_row .flexs_row .allInOne_col .text_col h3 {
    font-size: 22px;
    margin: 0;
    margin-bottom: 10px;
    color: var(--black);
}
.allInOne_row .flexs_row .allInOne_col .text_col p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
}
.allInOne_row .flexs_row .allInOne_col::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(50%, -50%);
    background: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    border: 1px solid #3DB156;
}
.allInOne_row .flexs_row .allInOne_col::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 1px solid #3DB156;
    border-radius: 15px;
}
.allInOne_row .flexs_row .allInOne_col .img_col img {
    width: 100%;
}
dl.article-index.automatic {
    display: none;
}
dl.article-index.automatic.index_blocks {
    display: block !important;
}
/* ▼ 開閉トグル */
.article-index .article-index__title .toc-toggle {
    position: relative;
    right: 0;
    top: 0;
    font-size: 14px;
    color: var(--blue);
    cursor: pointer;
    user-select: none;
    margin-left: auto;
    margin-top: 2px;
    transition: .3s;
    display: none;
}
.article-index .article-index__title .toc-toggle:hover {
    text-decoration: underline;
}
/* ▼ 開閉アニメーション */
.article-index dd {
    overflow: hidden;
    transition: max-height 0.3s ease;
    max-height: 1000px;
    width: 81.6%;
    /* 開いている状態 */
}
.article-index.closed dd {
    max-height: 0;
}
.pagination .pagination__link.pagination__link--prev .pagination__link-icon svg path {
    fill: #fff;
}
.caseBlog_infomation_row {
    position: relative;
    margin: 80px auto 40px;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}
.caseBlog_infomation_row .boxs {
    position: relative;
    border: 1px solid var(--blue);
    border-radius: 10px;
    padding: 50px 50px 40px;
}
.caseBlog_infomation_row .boxs .labels {
    position: absolute;
    top: 0;
    left: 50px;
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 3px 10px;
    transform: translate(0px, -50%);
}
.caseBlog_infomation_row .boxs .labels .ttls {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    font-style: italic;
}
.caseBlog_infomation_row .boxs .labels .sbs {
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    font-family: "Barlow", sans-serif;
    font-style: italic;
}
.caseBlog_infomation_row .boxs .labels::before {
    content: "";
    background: var(--blue);
    width: 100%;
    height: 100%;
    position: absolute;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    transform: skewX(-10deg);
    border-radius: 5px;
    left: 0;
    top: 0;
}
.caseBlog_infomation_row .flesxcontet {
    display: flex;
    gap: 50px;
    align-items: center;
}
.caseBlog_infomation_row .flesxcontet .ims_col {
    width: 38.6%;
    display: flex;
    overflow: hidden;
    border-radius: 10px;
}
.caseBlog_infomation_row .flesxcontet .texts_col {
    width: 55%;
}
.caseBlog_infomation_row .flesxcontet .texts_col .titles {
    font-size: 20px;
    font-weight: bold;
    color: var(--black);
    line-height: 1.8;
}
.caseBlog_infomation_row .flesxcontet .texts_col .playersname {
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    margin-top: 6px;
}
.caseBlog_infomation_row .flesxcontet .texts_col .urllinks {
    margin-top: 10px;
}
.caseBlog_infomation_row .flesxcontet .texts_col .urllinks a {
    color: var(--blue);
    font-weight: 500;
    text-decoration: underline;
    transition: .3s;
}
.caseBlog_infomation_row .flesxcontet .texts_col .urllinks a:hover {
    opacity: .7;
}
.movieinsite_row {
    margin-bottom: 80px;
}
.movieinsite_row .movieinsite_box {
    margin: 40px 0;
}
.movieinsite_row .movieinsite_box.yoko iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
}
.movieinsite_row .movieinsite_box.tate iframe {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 9 / 16;
    margin: 0 auto;
}
.RelatedArticleTitle_row {
    position: relative;
    margin-top: 100px;
}
.RelatedArticleTitle_row h2 {
    font-size: 24px;
    font-style: italic;
    font-weight: bold;
    margin: 0;
    margin-bottom: 20px;
}
.case_topbar_row {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1;
}
.case_topbar_row .ins .case_topbar_box a {
    display: block;
    transition: .3s;
}
.case_topbar_row .ins .case_topbar_box a:hover {
    opacity: .7;
}
.caseBlog_infomation_row .flesxcontet .texts_col .textareafree {
    font-size: 14px;
    margin-top: 10px;
}
.index_nones {
    display: none !important;
}
.index_blocks {
    display: block !important;
}
div#hs_cos_wrapper_チーム人数_ {
    display: none;
}
.mv_pages02_sec {
    position: relative;
    padding: 0 20px;
    padding-top: 60px;
    padding-bottom: 40px;
}
.mv_pages02_sec .toptitles {
    text-align: center;
    font-size: 28px;
    font-weight: 900;
    font-style: italic;
    color: var(--black);
    margin-bottom: 20px;
}
.mv_pages02_sec h1 {
    font-size: 80px;
    font-weight: 900;
    text-align: center;
    font-style: italic;
    font-family: "Barlow", sans-serif;
    color: var(--blue);
    line-height: 1;
    margin: 0;
    margin-bottom: 0px;
    line-height: 1;
}
.mv_pages02_sec .subtitle {
    text-align: center;
    font-family: "Barlow", sans-serif;
    font-size: 22px;
    font-weight: 500;
    font-style: italic;
    line-height: 1;
}
.title_row05 {
    position: relative;
    padding: 0 20px;
}
.title_row05 .title_box05 {
    position: relative;
    margin-bottom: 40px;
}
.title_row05 .title_box05 h2 {
    text-align: center;
    font-size: 40px;
    font-style: italic;
    letter-spacing: 0;
    font-weight: 900;
    margin: 0;
}
.title_row05 .title_box05 .sub_texts {
    font-family: "Barlow", sans-serif;
    font-size: 12px;
    text-align: center;
    font-style: italic;
    color: var(--blue);
}
.title_row05 .title_box05 p.maintexts {
    margin: 0;
    margin-top: 40px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
}
.differenceTable_row {
    position: relative;
}
.differenceTable_row .w110 {
    position: relative;
}
.differenceTable_row .w110 .backimgs {
    position: absolute;
    bottom: 0;
    width: 24%;
    display: flex;
    right: 0;
}
.differenceTable_row .w110 .backimgs img {
    width: 100%;
}
.differenceTable_row .intable {
    width: 100%;
    border-collapse: collapse;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    line-height: 1.5;
    table-layout: fixed;
    max-width: 1000px;
    border: none;
}
/* セルの基本設定 */
.differenceTable_row .intable th,
.differenceTable_row .intable td {
    padding: 25px 15px;
    text-align: center;
    vertical-align: middle;
    border-bottom: 1px solid #f0f0f0;
}
/* 左端：項目ラベル列 */
.differenceTable_row .intable .label_cell {
    width: 210px;
    background-color: #fff;
    color: #333;
    font-size: 18px;
    font-weight: bold;
    border: none;
    text-align: left;
    padding-left: 50px;
}
/* 中央：従来型列 */
.differenceTable_row .intable .traditional_cell {
    background-color: #ffffff;
    color: #333;
    border: none;
    width: 32%;
}
/* 右側：IDP列（青背景） */
.differenceTable_row .intable .idp_cell {
    background-color: #0015FF;
    color: #ffffff;
    border: none;
    padding-right: 100px;
}
/* ヘッダー部分のスタイル */
.differenceTable_row .intable thead .subtitle {
    display: block;
    font-size: 14px;
    margin-bottom: 0px;
    font-weight: 500;
}
.differenceTable_row .intable thead .title {
    font-size: 22px;
    font-weight: bold;
}
/* ボディ部分のテキストスタイル */
.differenceTable_row .intable tbody strong {
    display: block;
    font-size: 18px;
    margin-bottom: 0px;
    letter-spacing: 0.05em;
}
.differenceTable_row .intable tbody span {
    display: block;
    font-size: 12px;
    opacity: 0.9;
}
/* 最下行の線は消す */
.differenceTable_row .intable tbody tr:last-child th,
.differenceTable_row .intable tbody tr:last-child td {
    border-bottom: none;
}
/* 装飾：IDP列の角を少し丸くする場合（任意） */
.differenceTable_row .intable thead .idp_cell {
    border-top-right-radius: 10px;
}
.differenceTable_row .intable tbody tr:last-child .idp_cell {
    border-bottom-right-radius: 10px;
}
.differenceTable_row .intable tbody tr:nth-of-type(odd) .traditional_cell {
    background: #f9f9f9;
}
.differenceTable_row .intable tbody tr:nth-of-type(odd) .label_cell {
    background: #f9f9f9;
}
.differenceTable_row .intable tbody tr:nth-of-type(even) .label_cell {
    background: #fff;
}
.differenceTable_row .intable tbody tr:nth-of-type(even) .traditional_cell {
    background: #fff;
}
.differenceTable_row .intable tbody .label_cell {
    position: relative;
}
.differenceTable_row .intable tbody .label_cell::after {
    content: "";
    height: calc(100% - 20px);
    width: 1px;
    background: rgb(0 0 0 / 20%);
    position: absolute;
    right: 0;
    top: 10px;
}
.differenceTable_row .intable tbody tr:nth-of-type(odd) .idp_cell {
    background: #0C1EE5;
}
/* ---------------------------他ページlast ---------------------------*/
/*==========================================================================
*
*pcパソコン
*
============================================================================*/
@media only screen and (min-width: 1025px) and (max-width: 1200px) {
    header .header_content .cta_box.pc {
        gap: 10px;
    }


    header .header_content .menu_con nav.menu.menu--desktop a.menu__link {
        font-size: 14px;
    }

    header .header_content .menu_con nav.menu.menu--desktop ul.menu__wrapper.no-list {
        display: flex;
    }

    header .header_content .menu_con nav.menu.menu--desktop ul.menu__wrapper.no-list li.menu__item.menu__item--depth-1.hs-skip-lang-url-rewrite {
        padding: 0 !important;
    }

    header .header_content .menu_con {
        margin-right: auto;
    }
}
@media only screen and (min-width: 768px) {
    footer.footer_sec .flextree_content .left_cols div#hs_cos_wrapper_copyright {
        display: none;
    }
}
/*==========================================================================
*
*tbタブレット
*
============================================================================*/
@media only screen and (min-width: 1000px) and (max-width: 1024px) {
    header .header_content .menu_con nav.menu.menu--mobile ul.menu__wrapper.no-list li.menu__item.menu__item--depth-1.hs-skip-lang-url-rewrite {
        padding: 0 !important;
    }
}
@media only screen and (max-width: 1024px) {}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .column_sec .column_row {
        gap: 10px;
    }
    .mv_pages .page-ttl {
        font-size: 40px;
    }
    .title_row03 .title_box03 h2 {
        font-size: 28px;
    }
    .title_row03 .title_box03 .fuki {
        font-size: 20px;
    }
    .blogcase_con .flex_con_in {
        flex-direction: column;
    }
    .blogcase_con .blogcase_sec {
        max-width: 760px;
        margin: 0 auto;
    }
    /* ---------------------------タブレットonlylast ---------------------------*/
}
/*=====================================
*
*pc
*
=======================================*/
@media screen and (min-width: 1025px) {
    .spOnly {
        display: none !important;
    }
}
/*=====================================
*
*tb
*
=======================================*/
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .spOnly {
        display: none !important;
    }
}
/*=====================================
*
*sp
*
=======================================*/
@media screen and (max-width: 767px) {
    .spOnly {
        display: inherit !important;
    }
}
/*==========================================================================
*
*sp
*
============================================================================*/
@media only screen and (max-width: 767px) {
    .body-container-wrapper {
        padding-top: 0px !important;
    }
    .starts_whiteround_sec::after {
        border-radius: 40px 40px 0px 0;
    }
    .case_sec .case_title_flex .case_btn a {
        font-size: 14px;
    }
    .case_sec .case_title_flex {
        margin-bottom: 30px;
    }
    .case_sec .case_row ul li a {
        flex-direction: column;
        gap: 10px;
    }
    .case_sec {
        padding-bottom: 60px;
    }
    .column_sec {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 60px;
        padding-bottom: 110px;
        border-radius: 30px 30px 0 0;
    }
    .column_sec .in_title {
        margin-bottom: 30px;
    }
    .column_sec .column_row {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    .column_sec .more_btn a {
        font-size: 14px;
        margin-top: 30px;
    }
    .title_row03 .title_box03 .fuki {
        font-size: 16px;
    }
    .text_image_flex_parts02_row .flex_in {
        flex-direction: column;
        gap: 30px;
    }
    .text_image_flex_parts02_row .flex_in .text_col {
        width: 100%;
    }
    .text_image_flex_parts02_row .flex_in .text_col h3 {
        font-size: 18px !important;
    }
    .text_image_flex_parts02_row .flex_in .text_col .subtitle {
        font-size: 14px;
    }
    .text_image_flex_parts02_row .flex_in .text_col p.texts {
        font-size: 14px;
    }
    .mv_pages .comentIcon_flex .coment p {
        font-size: 12px;
    }
    .mv_pages .comentIcon_flex .imgs {
        width: 40px;
    }
    .mv_pages p.h1_subtitle {
        font-size: 12px;
    }
    .mv_pages .comentIcon_flex {
        margin-top: 30px;
        position: relative;
    }
    .mv_pages .w110 {
        min-height: initial;
    }
    .mv_pages p.h1_text {
        font-size: 14px;
    }
    .mv_pages .page-ttl {
        font-size: 26px !important;
        line-height: 1.4;
    }
    article.list_page_row .in_row ul {
        grid-template-columns: 1fr;
        gap: 20px;
        row-gap: 30px;
    }
    article.list_page_row .in_row ul li .text_box p.tag_in a {
        font-size: 10px;
    }
    article.list_page_row {
        max-width: 400px;
        margin: 0 auto;
        padding-bottom: 100px;
    }
    .body-container--blog-index {
        padding: 100px 0px 0px !important;
    }
    .mv_pages .comentIcon_flex .imgs img {
        width: 100%;
    }
    .article-index {
        padding: 30px 20px 30px;
    }
    .article-index .article-index__title {
        font-size: 16px;
        gap: 10px;
        align-items: center;
        width: fit-content;
    }
    .article-index dd .article-index__list li a {
        font-size: 14px;
    }
    .blogcase_con .blogcase_sec .content_in span#hs_cos_wrapper_post_body>p {
        font-size: 14px;
    }
    .blogcase_con .flex_con_in {
        flex-direction: column;
    }
    .blogcase_con .blogcase_sec .content_in span#hs_cos_wrapper_post_body>h2 {
        font-size: 34px !important;
        margin-top: 90px;
    }
    .blogcase_con .blogcase_sec .content_in span#hs_cos_wrapper_post_body>h3 {
        font-size: 18px !important;
    }
    .side_title_row h2 {
        font-size: 16px !important;
    }
    .blogcase_con .flex_con_in .sideright_sec {
        max-width: 400px;
        width: 100%;
        margin: 0 auto;
    }
    article.list_page_row .more_btns a {
        height: 70px;
    }
    .allInOne_row .flexs_row {
        grid-template-columns: 1fr;
    }
    .allInOne_row .flexs_row .allInOne_col {
        gap: 15px;
    }
    .allInOne_row .flexs_row .allInOne_col .img_col {
        width: 40%;
    }
    .allInOne_row .flexs_row .allInOne_col .text_col p {
        font-size: 14px;
    }
    .allInOne_row .flexs_row .allInOne_col .text_col h3 {
        font-size: 15px !important;
        margin-bottom: 6px;
    }
    .interviews_sec .tagselectlist_row ul {
        flex-wrap: wrap;
        width: fit-content;
        max-width: 305px;
    }
    .interviews_sec .tagselectlist_row ul li a.filter-btn {
        min-width: initial;
        padding: 10px 15px 10px 30px;
    }
    .interviews_sec .tagselectlist_row {
        padding: 0 20px;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 40px;
    }
    .interviews_sec .tagselectlist_row ul li a.filter-btn::before {
        left: 10px;
    }
    .interviews_sec .tagselectlist_row ul li a.filter-btn::after {
        left: 13px;
    }
    .fixed_menu_sec .inners .bars_flex .sn_box:nth-of-type(2) {
        display: none;
    }
    .fixed_menu_sec .inners .bars_flex .sn_box a {
        padding: 20px 14px;
        height: initial;
        font-size: 14px;
    }
    .fixed_menu_sec .inners .bars_flex .icons img {
        display: flex;
        max-height: 22px;
    }
    .backyellowparts01::after {
        width: 320px;
        height: 480px;
    }
    .blogcase_con {
        margin-top: 80px;
    }
    .share_sns_row {
        margin: 20px 0;
    }
    .share_sns_row .sns-share-links {
        gap: 3px !important;
    }
    .blogcase_con .blogcase_sec h1 {
        margin-top: 70px;
        font-size: 36px !important;
    }
    .caseBlog_infomation_row {
        margin: 80px auto 80px;
    }
    .caseBlog_infomation_row .boxs .labels {
        left: 40px;
    }
    .caseBlog_infomation_row .flesxcontet {
        flex-direction: column;
        gap: 20px;
    }
    .caseBlog_infomation_row .boxs {
        padding: 40px 20px 20px;
    }
    .caseBlog_infomation_row .flesxcontet .ims_col {
        width: 100%;
    }
    .caseBlog_infomation_row .flesxcontet .texts_col {
        width: 100%;
    }
    .caseBlog_infomation_row .flesxcontet .texts_col .titles {
        font-size: 18px;
    }
    .caseBlog_infomation_row .flesxcontet .texts_col .urllinks a {
        font-size: 14px;
    }
    .article-index .flexss {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .article-index dd {
        width: 100%;
    }
    .RelatedArticleTitle_row {
        margin-top: 60px;
    }
    .movieinsite_row {
        margin-bottom: 60px;
    }
    article.list_page_row .in_row ul li {
        display: flex;
        gap: 10px;
        align-items: center;
    }
    article.list_page_row .in_row ul li .img_box {
        width: 36.9%;
        padding-bottom: 26.4%;
    }
    .interviews_sec .interviews_row .contentss.filter-item.main-feature {
        flex-direction: column;
        gap: 20px;
        display: flex;
        border-top: 1px solid #868686;
        padding-bottom: 40px;
        padding-top: 40px;
    }
    .interviews_sec .interviews_row .contentss.filter-item.main-feature .text_col {
        width: 100%;
    }
    .interviews_sec .interviews_row .contentss.filter-item.main-feature .text_col h3 {
        font-size: 20px !important;
        margin-bottom: 20px;
    }
    .interviews_sec .interviews_row .contentss.filter-item.main-feature .text_col .bunruflex {
        margin-bottom: 0px;
    }
    .interviews_sec .interviews_row .contentss.filter-item.main-feature .img_col {
        width: 100%;
        border-radius: 4px;
        overflow: hidden;
        margin-bottom: 20px;
    }
    .interviews_sec .interviews02_row {
        display: none;
    }
    .interviews_sec .interviews_row .contentss.filter-item.main-feature .readMore a {
        margin: 0 auto;
    }
    .interviews_sec .interviews_row {
        border: none;
        padding: 0 20px;
    }
    .title_row02 .title_box02 h2 {
        font-size: 60px !important;
    }
    .interviews_sec {
        padding-top: 80px;
        padding-bottom: 60px;
    }
    footer.footer_sec .footertitles .footerintte {
        font-size: 31px;
    }
    footer.footer_sec {
        padding: 70px 20px 140px;
    }
    footer.footer_sec .flex_contents {
        flex-direction: column;
        margin-bottom: 60px;
        gap: 90px;
    }
    footer.footer_sec .flex_contents .footer_menu nav.menu ul {
        grid-template-columns: 1fr 1fr;
        column-gap: 20px;
        row-gap: 30px;
    }
    footer.footer_sec .flex_contents .footer_menu nav.menu ul li a.menu__link {
        padding: 0px 0px;
    }
    footer.footer_sec .footertitles {
        margin-bottom: 70px;
    }
    footer.footer_sec .flex_contents .download_logo {
        flex-direction: row;
        justify-content: center;
        gap: 5px;
    }
    footer.footer_sec .flextree_content {
        flex-direction: column-reverse;
        gap: 50px;
        align-items: center;
    }
    footer.footer_sec .flextree_content .tight_cols .pri_logo img.hs-image-widget {
        width: 60px !important;
        height: 60px !important;
    }
    footer.footer_sec .flextree_content .tight_cols {
        gap: 20px;
        align-items: end;
        justify-content: end;
    }
    footer.footer_sec .flextree_content .tight_cols .lastfocus_text div#hs_cos_wrapper_copyright {
        display: none;
    }
    footer.footer_sec .flextree_content .tight_cols .lastfocus_text {
        margin-top: 20px;
    }
    footer.footer_sec .flextree_content .left_cols ul {
        gap: 15px;
    }
    footer.footer_sec .flextree_content .left_cols ul li a {
        font-size: 11px;
    }
    footer.footer_sec .flextree_content .left_cols div#hs_cos_wrapper_copyright {
        color: #868686;
        text-align: center;
        width: fit-content;
        margin: 0 auto;
        margin-top: 25px;
        font-weight: 500;
        display: block;
    }
    footer.footer_sec .flextree_content .left_cols div#hs_cos_wrapper_copyright div {
        font-size: 10px !important;
    }
    /* ---------------------------携帯last ---------------------------*/
}



/*=====================================
*
*pc
*
=======================================*/
@media screen and (min-width: 1025px) {
    .sp {
        display: none !important;
    }
    .tb {
        display: none !important;
    }
    .sp_tb {
        display: none !important;
    }
}
/*=====================================
*
*tb
*
=======================================*/
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .pc {
        display: none !important;
    }
    .sp {
        display: none !important;
    }
    .tb {
        display: inherit !important;
    }
    .tb_pc {
        display: inherit !important;
    }
    .sp_tb {
        display: inherit !important;
    }
}
/*=====================================
*
*sp
*
=======================================*/
@media screen and (max-width: 767px) {
    .pc {
        display: none !important;
    }
    .tb_pc {
        display: none !important;
    }
    .sp {
        display: inherit !important;
    }
    .tb {
        display: none !important;
    }
    .sp_tb {
        display: inherit !important;
    }
}
button,
.button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

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

/* No button */

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

/*btn*/
.btn { text-align: center; display: block; padding: 18px 20px; box-sizing: border-box; width: -moz-fit-content; width: fit-content; min-width: 416px; }

@media screen and (max-width: 767px) { .btn { min-width: initial; width: 100%; max-width: 325px; font-size: 14px; padding: 18px 10px; } }

.btn[data-type="border"] { border-width: 1px; border-style: solid; border-color: #cccccc; border-radius: 100px; color: #333; }

.btn[data-type="border"]:hover { background-color: #F2F2F2; }

.btn[data-type="orange"] { background-color: #fff; border-width: 1px; border-style: solid; border-color: #EF6B22; border-radius: 100px; color: #EF6B22; }

.btn[data-type="orange"]:hover { background-color: #EF6B22; color: #ffffff; }

.btn[data-type="noborder"] { color: #333; min-width: initial; padding: 0; }

.btn[data-type="noborder"]:hover { color: #EF6B22; }

.btn[data-align="center"] { margin: 0 auto; }

.btn[data-align="left"] { margin-right: auto; }

.btn[data-align="right"] { margin-left: auto; }

.btn span { display: inline-block; background-repeat: no-repeat; background-position: right center; }

.btn span[data-icon="arrow-right"] { text-align: center; background-image: url(https://22565638.fs1.hubspotusercontent-na1.net/hubfs/22565638/HINORI_September_2023/common/icn_arrow.svg); background-position: right center; padding-right: 20px; }

.btn span[data-icon="download"] { background-image: url(https://f.hubspotusercontent10.net/hubfs/8401167/ico_download.svg); padding-right: 36px; }
/* Fields */

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

/* Link */
form a {
  text-decoration: underline;
}

form a:hover {
  text-decoration: none;
  color: #EF6B22;
}

/* Labels */

form label {
  display: block;
  font-size: 1.125rem;
  margin-bottom: 5px;
  line-height: 1.3;
}

@media screen and (max-width: 767px) {
  form label {
    font-size: 14px;
  }
}

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

/* Help text */

form legend {
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  form legend {
    font-size: 14px;
  }
}

/* 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: 1rem;
  padding: 20px 15px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  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 {
    font-size: 14px;
    padding: 15px;
  }
}

form textarea {
  resize: vertical;
}

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

input[type=text]:focus,
input[type=search]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=tel]:focus,
input[type=number]:focus,
input[type=file]:focus,
select:focus,
textarea:focus  {
  border: 2px solid #EF6B22!important;
  outline: 0;
}

form .form-columns-1 input[type=text],
form .form-columns-1 input[type=search],
form .form-columns-1 input[type=email],
form .form-columns-1 input[type=password],
form .form-columns-1 input[type=tel],
form .form-columns-1 input[type=number],
form .form-columns-1 input[type=file],
form .form-columns-1 select,
form .form-columns-1 textarea { 
  width: 100% !important;
}

@media screen and (max-width: 767px) {
  form .form-columns-2 input[type=text],
  form .form-columns-2 input[type=search],
  form .form-columns-2 input[type=email],
  form .form-columns-2 input[type=password],
  form .form-columns-2 input[type=tel],
  form .form-columns-2 input[type=number],
  form .form-columns-2 input[type=file],
  form .form-columns-2 select,
  form .form-columns-2 textarea { 
    width: 100% !important;
  }
}

form select {
  -webkit-appearance: none;
  appearance: none;
  padding: 20px 52px 20px 20px;
  background: url(https://22565638.fs1.hubspotusercontent-na1.net/hubfs/22565638/HINORI_September_2023/common/arrow_select.svg) no-repeat right 30px center;
  background-size: 12px 8px;
}
@media screen and (max-width: 767px) {
  form select {
    padding: 15px 35px 15px 15px;
    background-position: right 15px center;
    background-size: 10px 6.67px;
  }
}

/* Inputs - checkbox/radio */

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

form .inputs-list > li {
  display: block;
  margin: 0 0 5px;
}

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;
  accent-color: #EF6B22;
  width: 16px!important;
  height: 16px;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

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

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

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

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

/* Inputs - file picker */

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

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 1.125rem;
  margin: 0 0 60px;
}

@media screen and (max-width: 767px) {
  form .hs-richtext,
  form .hs-richtext p {
    font-size: 14px;
  }
}


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

/* GDPR */
.legal-consent-container .hs-form-booleancheckbox-display {
  display: flex;
  align-items: center;
}
.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 3px !important;
}

/* Validation */

.hs-form-required {
  font-size: 0;
  margin-right: 0;
  color: #EF6B22;
}
 
.hs-form-required::after {
  content: "必須";
  font-size: 13px;
  font-weight: bold;
  background-color: #EF6B22;
  color: #fff;
  text-align: center;
  padding: 0px 5px;
  margin-left: 5px;
}


.hs-input.invalid.error {
  border: 2px solid #EF6B51;
}

.hs-error-msg {
  color: #DF1516;
  margin-top: 10px;
}

/* Submit button */
.hs_submit { 
  text-align: center;
}

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

form .hs-button {
  background-color: #EF6B22;
  width: 100%;
  max-width: 544px;
  height: 70px;
  color: #fff;
  border: 1px solid #EF6B22;
  border-radius: 100px;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 60px;
}

form .hs-button:hover {
  opacity: .8;
}

@media screen and (max-width: 767px) {
  form .hs-button {
    margin-top: 30px;
    margin-bottom: 40px;
    height: 60px;
    font-size: 14px;
  }
}

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



/* Other */

.hs_privacypolicy_agree { 
  text-align: center;
}
/* 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 {
  border-bottom: 1px solid #f8f8f8;
  position: absolute;
  width: 100%;
  height: 101px;
  background-color: #F8F8F8!important;
}

.header.header--no-navigation {
  border-color: #E5E5E5;
}

@media screen and (max-width: 999px) {
  .header {
    height: 140px;
  }
  .header.header--no-navigation {
    height: 90px;
  }
}

@media screen and (max-width: 767px) {
  .header {
    height: 105px;
  }
  .header.header--no-navigation {
    height: 70px;
  }
}

/* Header DND sections */

.header .dnd-section {
  padding: 0;
}

/* Header container */

.header__container {
  display: flex;
  justify-content: space-between;
  max-width: 100%!important;
  padding: 0;
}

.header__column { 
  display: flex;
  flex-direction: column-reverse;
}


.header__row-1,
.header__row-2 {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.header__row-2 {
  padding: 20px 15px 0 0;
}

@media screen and (max-width: 999px) {
  .header__container { position: relative; margin-top: 50px; padding: 14px 25px; }

  .header__column {
    position: relative;
  }

  .header__row-1, .header__row-2 { display: block; }
  .header__row-2 { padding: 0; margin-top: 30px; }

  .header.header--no-navigation .header__container { margin-top: 0; padding: 14px 25px; }
}

@media screen and (max-width: 767px) {
  .header__container { margin-top: 35px; }

}

/* Logo */

.header__logo {
  align-items: center;
  display: flex;
  height: auto;
  margin-right: auto;
  max-width: 232px;
  overflow: hidden;
  margin-left: 45px;
  width: 232px;
}

.header.header--no-navigation .header__logo {
  padding: 18px 0;
}

@media screen and (max-width: 1299px) { .header__logo { margin-left: 25px; } }

@media screen and (max-width: 999px) {
  .header__logo {
    margin: 0;
  }
  .header.header--no-navigation .header__logo {
    padding: 0;
  }
}

@media screen and (max-width: 767px) {
  .header__logo {
    width: 143px;
  }
}

.header__logo img {
  max-width: 100%;
}


/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile toggles */

@media screen and (max-width: 999px) {
  .header__navigation {
    display: none;
    width: 100%;
  }

  .header__navigation.open {
    background-color: #fff;
    display: block;
    left: 0;
    height: calc(100vh - 140px);
    position: fixed;
    right: 0;
    top: 140px;
    z-index: 2;
    padding: 10px 25px 70px;
    overflow: auto;
  }

  .header__navigation--toggle,
  .header__close--toggle {
    cursor: pointer;
    margin: 0;
    position: fixed;
    right: 25px;
    z-index: 100;
  }

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

  .header__navigation--toggle { background-image: url(https://22565638.fs1.hubspotusercontent-na1.net/hubfs/22565638/HINORI_September_2023/common/menu_open.svg); background-size: cover; width: 66px; height: 15px; top: 85px; }

  .header__close--toggle { display: none; background-image: url(https://22565638.fs1.hubspotusercontent-na1.net/hubfs/22565638/HINORI_September_2023/common/menu_close.svg); background-repeat: no-repeat; width: 57.9px; height: 34.299px; margin-right: 0; background-size: cover; top: 81px; }

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

@media screen and (max-width: 767px) {
  .header__navigation.open {
    height: calc(100vh - 105px);
    top: 105px;
  }
  .header__navigation--toggle { width: 44px; height: 10px; top: 65px; }
  .header__close--toggle { width: 38.605px; height: 22.866px; top: 61px; }
}

/* header__navi  */
.header__navi .menu .menu__wrapper .menu__item:first-child, .header__navigation .menu .menu__wrapper .menu__item:nth-child(6), .header__navigation .menu .menu__wrapper .menu__item:nth-child(7), .header__navigation .menu .menu__wrapper .menu__item:nth-child(8) { display: none; }

@media screen and (max-width: 999px) {
  .header__navi .menu .menu__wrapper .menu__item:first-child, .header__navigation .menu .menu__wrapper .menu__item:nth-child(6), .header__navigation .menu .menu__wrapper .menu__item:nth-child(7), .header__navigation .menu .menu__wrapper .menu__item:nth-child(8) { display: block; }
  
}


/* header__btn */
.header__btn { margin-left: 15px; }

.header__btn .menu .menu__wrapper { display: flex; }

.header__btn .menu .menu__wrapper .menu__item .menu__link { background-color: #EF6B22; width: 170px; height: 100px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 16px; font-weight: bold; line-height: 1.2;cursor:pointer; }

.header__btn .menu .menu__wrapper .menu__item .menu__link:hover { text-decoration: none; background-color: #FC6F23; }

.header__btn .menu .menu__wrapper .menu__item:last-child .menu__link { background-color: #F05A0A; margin-left: 1px; }

.header__btn .menu .menu__wrapper .menu__item:last-child .menu__link:hover { background-color: #FC5F0A; }

.header__btn .menu__item--depth-1 { padding: 0!important; }

@media screen and (max-width: 999px) {
  .header__btn { z-index: 100; position: fixed; top: 0; left: 0; height: 50px; width: 100%; margin-left: 0; background-color: #fff; }
  .header__btn .menu__item--depth-1 { border: 0!important; width: 100%; }
  .header__btn .menu .menu__wrapper .menu__item .menu__link { height: 50px; width: 100%; padding: 0;}
}

@media screen and (max-width: 767px) {
  .header__btn { height: 35px; }
  .header__btn .menu .menu__wrapper .menu__item .menu__link { height: 35px; font-size: 12px;}
}


.body-container-wrapper {
  padding-top: 101px;
}
@media screen and (max-width: 999px) {
  .body-container-wrapper {
    padding-top: 140px;
  }
  .body-container-wrapper.body-container-wrapper2 {
    padding-top: 90px;
  }
}

@media screen and (max-width: 767px) {
  .body-container-wrapper {
    padding-top: 105px;
  }
  .body-container-wrapper.body-container-wrapper2 {
    padding-top: 70px;
  }
}

@media screen and (max-width: 999px) {
  body.open { height: 100%; overflow: hidden; }
  body.open .header {
    position: relative;
    z-index: 100;
  }
  body.open .header__container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
  }

}
.footer { text-align: center; background-color: #333!important; }

.footer .dnd-section { padding: 0; }

.footer .page-top { margin-bottom: 0; }

.footer .page-top a { letter-spacing: .1em; padding: 30px 0; display: block; font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 800; color: rgba(255, 255, 255, 0.5); }

.footer .page-top a:hover { opacity: .8; }

.footer .footer__container { max-width: 100%; border-top: 1px solid rgba(255, 255, 255, 0.1); padding: 60px 20px; }

.footer .footer__container .footer__logo { margin: 0 auto 40px; width: 264px; }

.footer .menu__item { padding: 0!important; margin: 0 15px; }

.footer .menu__link { color: #fff!important; font-weight:normal!important; }

.footer span, .footer a.menu__link { color: #fff!important;}

.footer .copyright span { color: rgba(255,255,255,.7)!important; }

.footer .menu__link span.icn_target { font-size: 12px;background-image: url(https://22565638.fs1.hubspotusercontent-na1.net/hubfs/22565638/HINORI_September_2023/common/icn_blank-white.svg); }

.footer__navi02 { margin: 30px 0 60px;}


@media screen and (max-width: 999px) { 
  .footer .menu__item--depth-1,.footer .menu__item--depth-1:last-child {
    border: 0!important;
    font-size: 16px!important;
  }
  .footer .menu__item {
    width: auto!important;
  }
  .footer .menu__item--depth-1>.menu__link {
    padding: 0!important; 
  }
  .footer .menu__link span.icn_target { font-size: 12px;}
}

@media screen and (max-width: 767px) {
  .footer .footer__container .footer__logo { width: 168px; } 
  .footer .menu__item--depth-1>.menu__link { font-size: 13px!important; }
  .footer .menu__link span.icn_target { font-size: 10px;}

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