/* 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;
}
.title_box02 {
    position: relative;
}
.title_box02 h2 {
    font-size: 44px;
    font-weight: bold;
    color: #212121;
    margin: 0;
    letter-spacing: .04em;
    line-height: 1.4;
}
.title_box02 .subtitle {
    font-size: 14px;
    font-weight: 900;
    color: #1FB640;
    font-family: Roboto, sans-serif;
    margin: 0;
}
footer.footer_sec {
    position: relative;
    background: #F5F5F5;
    border-radius: 50px 50px 0 0;
    padding-top: 95px;
    padding-bottom: 50px;
    padding-left: 20px;
    padding-right: 20px;
}
footer.footer_sec .footer__logo {
    width: fit-content;
    display: flex;
    max-width: 217px;
    margin: 0 auto;
    margin-bottom: 60px;
}
footer.footer_sec .footer__logo a {
    display: block;
    transition: .3s;
}
footer.footer_sec .footer__logo a:hover {
    opacity: .7;
}
footer.footer_sec .footer_menu {
    position: relative;
    border-bottom: 1px solid #D0D0D0;
    padding-bottom: 80px;
}
footer.footer_sec .footer_menu ul.menu__wrapper.no-list {
    display: flex;
    justify-content: center;
}
footer.footer_sec .footer_menu ul.menu__wrapper.no-list li.menu__item.menu__item--depth-1.hs-skip-lang-url-rewrite {
    border-left: 1px solid #D0D0D0;
    padding: 1px 30px !important;
}
footer.footer_sec .footer_menu ul.menu__wrapper.no-list li.menu__item.menu__item--depth-1.hs-skip-lang-url-rewrite:last-of-type {
    border-right: 1px solid #D0D0D0;
}
footer.footer_sec .footer_menu ul.menu__wrapper.no-list li.menu__item.menu__item--depth-1.hs-skip-lang-url-rewrite a.menu__link {
    transition: .3s;
}
footer.footer_sec .footer_menu ul.menu__wrapper.no-list li.menu__item.menu__item--depth-1.hs-skip-lang-url-rewrite a.menu__link:hover {
    opacity: .7;
}
footer.footer_sec .footer_bottom_flex {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 80px;
}
footer.footer_sec .footer_bottom_flex .right_col ul {
    display: flex;
    padding: 0;
    margin: 0;
    gap: 35px;
}
footer.footer_sec .footer_bottom_flex .right_col ul li {
    list-style: none;
}
footer.footer_sec .footer_bottom_flex .right_col ul li a {
    font-size: 12px;
    color: #393332;
    font-weight: 500;
    display: flex;
    gap: 5px;
    transition: .3s;
}
footer.footer_sec .footer_bottom_flex .right_col ul li a:hover {
    opacity: .7;
}
footer.footer_sec .footer_bottom_flex .right_col ul li a::after {
    content: "";
    background-image: url("https://22565638.fs1.hubspotusercontent-na1.net/hubfs/22565638/raw_assets/public/LINKET_2025/images/footernewtab.png");
    background-size: cover;
    background-position: center;
    aspect-ratio: 11 / 11;
    width: 11px;
    background-size: contain;
    background-repeat: no-repeat;
}
footer.footer_sec .backimg_icon {
    display: flex;
    width: 100%;
    max-width: 1406px;
    margin: 0 auto;
    margin-top: 100px;
}
footer.footer_sec .backimg_icon img {
    width: 100%;
}

/* <!-- 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: #212121;
    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: #212121;
    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: #212121;
    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: #212121;
    margin: 0 auto;
    margin-top: 55px;
    transition: .3s;
}
.column_sec .more_btn a:hover {
    opacity: .7;
}

.mv_sec {
    position: relative;
    padding: 20px 20px 40px;
}
.mv_sec .mv_row {
    display: flex;
    align-items: center;
    justify-content: center;
}
.mv_sec .mv_row .text_col {
    position: relative;
    padding-top: 50px;
}
.mv_sec .mv_row .text_col .texts {
    margin-top: 20px;
}
.mv_sec .mv_row .text_col .texts p {
    text-align: center;
    color: #212121;
    font-weight: bold;
    font-size: 20px;
    line-height: 1.6;
    letter-spacing: .04em;
}
.mv_sec .mv_row .img_col {
    position: relative;
}
.mv_sec .mv_row .img_col .img_area {
    position: relative;
}
.mv_sec .mv_row .img_col .img_area .img_parts01 {
    position: absolute;
    top: 4%;
    left: 4%;
}
.mv_sec .mv_row .img_col .img_area .img_parts02 {
    position: absolute;
    top: -5%;
    right: -5%;
}
.mv_sec .mv_row .img_col .img_area .img_parts03 {
    position: absolute;
    left: 0%;
    bottom: 3%;
}
.mv_sec .mv_row .img_col .img_area .img_parts04 {
    position: absolute;
    bottom: -8%;
    right: 10%;
}
.mv_sec .img_back {
    position: absolute;
    left: 0;
    bottom: -58%;
    z-index: -1;
}

/* <!-- 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: 70px;
}
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: 224px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #F70029;
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    transition: .3s;
    position: relative;
}
header .header_content .cta_box .mail_box01 a span {
    position: relative;
    display: flex;
    gap: 10px;
    align-items: center;
    flex-direction: row-reverse;
}
header .header_content .cta_box .mail_box01 a span::before {
    content: "";
    position: relative;
    width: 22px;
    height: 22px;
    background: #fff;
    border-radius: 50%;
}
header .header_content .cta_box .mail_box01 a span::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    width: 0;
    height: 0;
    border-left: 8px solid #F70029;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    right: 6px;
}
header .header_content .cta_box .RequestCatalog01 a {
    width: 133px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    border: 1px solid #BBBBBB;
    font-size: 15px;
    font-weight: bold;
    color: #393332;
    transition: .3s;
}
header .header_content .cta_box .RequestCatalog01 a:hover {
    opacity: .7;
}
header .header_content .cta_box .mail_box01 a:hover {
    opacity: .7;
}
.body-container-wrapper {
    padding-top: 30px !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: 15px;
    padding: 10px 10px;
    display: block;
}

/* 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: #2E9045;
    }

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

    header .header_content .menu_con nav.menu.menu--desktop a.menu__link span::after {
        content: "";
        width: 0%;
        height: 3px;
        background: #2E9045;
        position: absolute;
        bottom: -10px;
        left: 0;
        transition: .3s;
    }

    header .header_content .menu_con nav.menu.menu--desktop a.menu__link:hover span::after {
        width: 100%;
    }
}

/*ドロップダウンメニュ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: 60px;
    }

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


/*=====================================
*
*フロントページ
*
=======================================*/
.GrowthEaseVisualization_sec {
    position: relative;
    background: #1A1A1A;
    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: #d0ff00;
    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: #D0FF00;
    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: #1a1a1a;
    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: #D0FF00;
    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: #D0FF00;
    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: #1a1a1a;
    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: #0015FF;
    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: #0015FF;
    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: #0015FF;
    transform: skewX(-10deg);
    font-family: "Barlow", sans-serif;
    padding: 10px 15px;
    border-bottom: 1px solid;
}
.whyIdep_sec .centersircleImg_row .center_en {
    background: #0015FF;
    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: #0015FF;
    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: #0015FF;
    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 #0015FF;
}
.whyIdep_sec .oneTool_row .flexsBlue .flexsBlue_box h3 {
    background: #0015FF;
    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: #1a1a1a;
}
.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: #1a1a1a;
    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: #0015FF;
    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: #0015FF;
    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: #0015FF;
    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: #D0FF00;
    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: #D0FF00;
    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: #1a1a1a;
    position: absolute;
    top: 240px;
    right: 0;
    margin: 0;
    max-width: 280px;
    letter-spacing: 0;
}
.functionss_sec .centerImg_row .center_en {
    background: #0015FF;
    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: #0015FF;
    transform: rotate(65deg);
}
.functionss_sec .centerImg_row p.leftbottom_text {
    margin: 0;
    position: absolute;
    top: 49.3%;
    font-size: 14px;
    color: #0015FF;
    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: #1a1a1a;
}

.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: #0015FF;
    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;
}
/* ---------------------------フロントページlast ---------------------------*/
/*=====================================
*
*page single arcive 他ページ
*
=======================================*/
.mv_pages {
    position: relative;
    margin-top: 60px;
    padding: 0 20px;
    padding-bottom: 40px;
}
.mv_pages .page-ttl {
    font-size: 50px;
    font-weight: bold;
    line-height: 1.2;
    color: #212121;
    margin-bottom: 0;
    margin-bottom: 14px;
}
.mv_pages p.h1_subtitle {
    margin: 0;
    font-size: 14px;
    font-weight: 900;
    color: #3DB156;
    font-family: "Roboto", sans-serif;
    line-height: 1.2;
    letter-spacing: .04em;
}
.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: #212121 !important;
}
#hs_cos_wrapper_bread-crumbs .bread-crumbs__list::after {
    border-top: 1px solid #212121 !important;
    border-right: 1px solid #212121 !important;
}
.page_top_back_img {
    position: absolute;
    top: 0;
    max-width: 280px;
    display: flex;
    z-index: -1;
}
.page_top_back_img img {
    width: 100%;
}
.page_top_back_img02 {
    position: absolute;
    top: 170px;
    display: flex;
    right: 0;
    z-index: -1;
}
.page_top_back_img03 {
    position: absolute;
    top: 127px;
    display: flex;
    right: 40px;
}
.page_top_back_img04 {
    position: absolute;
    top: 366px;
    display: flex;
    right: 0;
    z-index: -1;
}
.anker_nav_row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 1140px;
    padding: 0 20px;
}
.anker_nav_row ul {
    background: #3DB156;
    display: flex;
    gap: 40px;
    width: 100%;
    justify-content: center;
    border-radius: 100px;
    min-height: 60px;
    align-items: center;
    margin-bottom: 0;
    padding: 15px 20px;
}
.anker_nav_row ul li {
    list-style: none;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}
.anker_nav_row ul li a {
    color: #fff;
    position: relative;
    transition: .3s;
    text-decoration-line: underline;
    text-underline-offset: 3px;
    font-weight: 500;
}
.anker_nav_row ul li::before {
    content: "";
    width: 18px;
    height: 18px;
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
}
.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: #212121;
}
.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: #212121;
}
.mv_pages .w110 {
    position: relative;
    min-height: 190px;
}
.mv_pages.add_border::after {
    content: "";
    height: 6px;
    background: #3DB156;
    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 180px !important;
}
article.list_page_row {
    position: relative;
    padding: 0 20px;
}
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: 20px 20px 0px 20px;
    margin-bottom: 15px;
}
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 {
    width: 100%;
    transition: .3s;
}
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: bold;
    color: #212121;
    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: 100px;
    margin-bottom: 100px;
    padding: 0 20px;
}

.blogcase_con .blogcase_sec {
    position: relative;
}
.w90 {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    width: 100%;
}
.blogcase_con .blogcase_sec h1 {
    margin-bottom: 35px;
    font-size: 42px;
    font-weight: bold;
    line-height: 1.2;
    margin-top: 0;
    color: #212121;
}
.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;
}
.article-index {
    background-color: #fff;
    margin: 0 0 60px;
    padding: 40px 50px 40px;
    border: 1px solid #3DB156;
    border-radius: 20px 20px 0px 20px;
    margin-top: 60px;
}
.article-index .article-index__title {
    font-size: 20px;
    line-height: 1.08;
    font-weight: bold;
    display: flex;
    gap: 20px;
}
.article-index dd {
    margin: 0;
}
.article-index dd .article-index__list {
    padding: 0;
    margin: 0;
    margin-top: 20px;
}
.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: 16px;
    padding: 10px 10px 10px 30px;
    border-bottom: 1px dotted #AEAEAE;
    background-size: 18px 18px;
    transition: .3s;
}
.article-index dd .article-index__list li a:hover {
    opacity: .7;
}
.share_sns_row {
    display: flex;
    gap: 20px;
    align-items: center;
    border-top: 1px solid #efefef;
    border-bottom: 1px solid #efefef;
    padding: 10px 10px;
    align-items: center;
    justify-content: center;
    justify-content: space-between;
    margin: 20px 0;
}
.share_sns_row p.sns_titles {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    color: #666;
}
.share_sns_row .sns-share-links {
    display: flex;
    gap: 10px !important;
}
.share_sns_row .sns-share-links a.js-sns-link {
    height: 40px;
    display: flex;
    border: 1px solid #efefef;
    border-radius: 50%;
    padding: 10px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s;
}
.share_sns_row .sns-share-links a.js-sns-link img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}
.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;
    border-radius: 20px 20px 0px 20px;
    display: flex;
}
.blogcase_con .blogcase_sec .content_in span#hs_cos_wrapper_post_body>p {
    margin: 30px 0;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.7;
}
.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: 10px;
}
.blogcase_con .blogcase_sec article.list_page_row .in_row ul li .text_box p.tag_in {
    margin-bottom: 6px;
}
.page_top_back_img05 {
    position: absolute;
    top: 1116px;
    display: flex;
    left: 10%;
    z-index: -1;
}
.page_top_back_img06 {
    position: absolute;
    top: 1566px;
    display: flex;
    right: 7%;
    z-index: -1;
}
.page_top_back_img07 {
    position: absolute;
    top: 1666px;
    display: flex;
    left: 6%;
    z-index: -1;
}
.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: #212121;
    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 {
    background: #F5F5F5;
    font-size: 32px;
    font-weight: bold;
    color: #212121;
    padding: 9px 20px 13px;
    position: relative;
    border-radius: 5px;
    margin: 0;
    margin: 30px 0;
}
.blogcase_con .blogcase_sec .content_in span#hs_cos_wrapper_post_body>h2::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 5px;
    height: 40px;
    background: #3DB156;
    transform: translate(0, -50%);
    border-radius: 10px;
}
.blogcase_con .blogcase_sec .content_in span#hs_cos_wrapper_post_body>h3 {
    margin: 30px 0;
    font-size: 26px;
    color: #212121;
    border-bottom: 3px solid #3DB156;
    padding-bottom: 4px;
}
.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: #212121;
}
.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: #3DB156;
    cursor: pointer;
    user-select: none;
    margin-left: auto;
    margin-top: 2px;
    transition: .3s;
}
.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;
    /* 開いている状態 */
}
.article-index.closed dd {
    max-height: 0;
}
.pagination .pagination__link.pagination__link--prev .pagination__link-icon svg path {
    fill: #fff;
}

/* ---------------------------他ページlast ---------------------------*/
/*==========================================================================
*
*pcパソコン
*
============================================================================*/
@media only screen and (min-width: 1025px) and (max-width: 1200px) {
    header .header_content .cta_box.pc {
        gap: 10px;
    }

    header .header_content .cta_box .RequestCatalog01 a {
        width: 120px;
        font-size: 14px;
    }

    header .header_content .cta_box .mail_box01 a {
        width: 180px;
        font-size: 16px;
    }

    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;
    }
}
/*==========================================================================
*
*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) {
    .mv_sec .mv_row .text_col .texts p {
        font-size: 16px;
        text-align: left;
    }
    .mv_sec .mv_row .img_col .img_area .img_parts01 {
        width: 14%;
    }
    .mv_sec .mv_row .img_col .img_area .img_parts01 img {
        width: 100%;
    }
    .mv_sec .mv_row .img_col .img_area .img_parts02 {
        width: 20%;
        right: 0;
    }
    .mv_sec .mv_row .img_col .img_area .img_parts02 img {
        width: 100%;
    }
    .mv_sec .mv_row .img_col .img_area .img_parts03 {
        width: 10%;
    }
    .mv_sec .mv_row .img_col .img_area .img_parts03 img {
        width: 100%;
    }
    .mv_sec .mv_row .img_col .img_area .img_parts04 {
        width: 18%;
    }
    .mv_sec .mv_row .img_col .img_area .img_parts04 img {
        width: 100%;
    }
    .mv_sec .mv_row .text_col .mv_logo {
        width: 70%;
        margin: 0 auto;
    }
    .mv_sec .mv_row .img_col {
        width: 53%;
    }
    .mv_sec .mv_row .text_col {
        width: 47%;
    }
    .column_sec .column_row {
        gap: 10px;
    }
    footer.footer_sec .footer_menu nav.menu.menu--mobile li.menu__item.menu__item--depth-1.hs-skip-lang-url-rewrite {
        padding: 0 10px !important;
        border-top: none;
    }
    footer.footer_sec .footer_menu nav.menu.menu--mobile li.menu__item.menu__item--depth-1.hs-skip-lang-url-rewrite a.menu__link {
        padding: 10px 0;
        text-align: center;
        font-weight: bold;
    }
    footer.footer_sec .footer_menu nav.menu.menu--mobile li.menu__item.menu__item--depth-1.hs-skip-lang-url-rewrite:last-of-type {
        border-bottom: none;
    }
    .mv_pages .page-ttl {
        font-size: 40px;
    }
    .anker_nav_row ul {
        gap: 20px;
    }
    .anker_nav_row ul li a {
        font-size: 15px;
    }
    .title_row03 .title_box03 h2 {
        font-size: 28px;
    }
    .title_row03 .title_box03 .fuki {
        font-size: 20px;
    }
    .page_top_back_img05 {
        display: none;
    }
    .page_top_back_img06 {
        display: none;
    }
    .page_top_back_img07 {
        display: none;
    }
    .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) {
    .mv_sec .mv_row {
        flex-direction: column;
    }
    .mv_sec .mv_row .text_col .mv_logo {
        max-width: 200px;
        margin: 0 auto;
    }
    .mv_sec .mv_row .text_col .texts p {
        font-size: min(14px, 3.1vw);
        line-height: 2;
    }
    .mv_sec .mv_row .img_col .img_area {
        max-width: 500px;
    }
    .mv_sec .mv_row .img_col .img_area .img_parts01 {
        width: 15%;
        display: flex;
    }
    .mv_sec .mv_row .img_col .img_area .img_parts01 img {
        width: 100%;
    }
    .mv_sec .mv_row .img_col .img_area .img_parts02 img {
        width: 100%;
    }
    .mv_sec .mv_row .img_col .img_area .img_parts02 {
        width: 20%;
    }
    .mv_sec .mv_row .img_col .img_area .img_parts03 img {
        width: 100%;
    }
    .mv_sec .mv_row .img_col .img_area .img_parts03 {
        width: 11%;
    }
    .mv_sec .mv_row .img_col .img_area .img_parts04 {
        width: 17%;
    }
    .mv_sec .mv_row .img_col .img_area .img_parts04 img {
        width: 100%;
    }
    .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;
    }
    footer.footer_sec {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    footer.footer_sec .footer__logo {
        max-width: 160px;
        margin-bottom: 30px;
    }
    footer.footer_sec .footer_menu ul.menu__wrapper.no-list {
        flex-direction: column;
        max-width: 200px;
        margin: 0 auto;
    }
    footer.footer_sec .footer_menu ul.menu__wrapper.no-list li.menu__item.menu__item--depth-1.hs-skip-lang-url-rewrite a.menu__link {
        font-size: 14px;
        text-align: center;
        font-weight: bold;
        padding: 15px 0;
    }
    footer.footer_sec .footer_menu ul.menu__wrapper.no-list li.menu__item.menu__item--depth-1.hs-skip-lang-url-rewrite {
        border-left: none;
        border-right: none;
    }
    footer.footer_sec .footer_menu ul.menu__wrapper.no-list li.menu__item.menu__item--depth-1.hs-skip-lang-url-rewrite:last-of-type {
        border-right: none;
    }
    footer.footer_sec .footer_menu {
        padding-bottom: 60px;
    }
    footer.footer_sec .footer_bottom_flex {
        margin-top: 60px;
        flex-direction: column-reverse;
        gap: 30px;
    }
    footer.footer_sec .footer_bottom_flex .right_col ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    footer.footer_sec .backimg_icon {
        margin-top: 50px;
    }
    .anker_nav_row ul {
        border-radius: 30px;
        justify-content: left;
        gap: 20px;
        padding: 30px 20px;
        flex-direction: column;
        align-items: flex-start;
    }
    .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;
    }
    .page_top_back_img03 {
        right: 10px;
        top: 80px;
    }
    .mv_pages p.h1_subtitle {
        font-size: 12px;
    }
    .page_top_back_img {
        max-width: 220px;
    }
    .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;
    }
    .body-container--blog-index {
        padding: 100px 0px 100px !important;
    }
    .mv_pages .comentIcon_flex .imgs img {
        width: 100%;
    }
    .blogcase_con .blogcase_sec .first_top_text p {
        font-size: 14px;
    }
    .article-index {
        padding: 30px 20px 30px;
    }
    .article-index .article-index__title {
        font-size: 16px;
        gap: 10px;
        align-items: center;
    }
    .article-index dd .article-index__list li a {
        font-size: 14px;
    }
    .page_top_back_img05 {
        display: none;
    }
    .page_top_back_img06 {
        display: none;
    }
    .page_top_back_img07 {
        display: none;
    }
    .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: 20px !important;
    }
    .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;
    }
    /* ---------------------------携帯last ---------------------------*/
}
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;
  }
}