/* 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: 2;
    overflow-wrap: break-word;
}

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

/* Paragraphs */

p {
    font-size: 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;
}

.titles_box01 {
    position: relative;
    margin-bottom: 50px;
}

.titles_box01 h2 {
    font-size: 44px;
    text-align: center;
    font-weight: bold;
    letter-spacing: .04em;
    color: #212121;
    margin: 0;
}

.titles_box01 p.label_text {
    color: #1FB640;
    font-weight: 900;
    font-size: 14px;
    text-align: center;
    letter-spacing: .04em;
    margin-bottom: 0;
    font-family: Roboto, sans-serif;
}

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

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

/* <!-- pointセクション ------------------------------------------------------- --> */
.topPoint_sec {
    background: #f6f6f6;
    background-image: radial-gradient(#fff 10%, transparent 0);
    background-size: 30px 30px;
    overflow: hidden;
    padding: 440px 20px 130px;
    position: relative;
    margin-top: -190px;
    z-index: -1;
}

.topPoint_sec .w110 {
    position: relative;
    z-index: 0;
}

.topPoint_sec .back_text_img01 {
    left: -30%;
    position: absolute;
    top: 16%;
    width: 172%;
    z-index: 0;
    max-width: 2480px;
}

.topPoint_sec .back_text_img01 img {
    width: 100%;
}

.topPoint_sec .back_text_img02 {
    position: absolute;
    width: 30.4%;
    display: flex;
    max-width: 450px;
    top: 65.5%;
    left: -6%;
}

.topPoint_sec .back_text_img02 img {
    width: 100%;
}

.topPoint_sec .topPoint_row {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 100px;
}

.topPoint_sec .topPoint_row .img_col {
    height: fit-content;
    position: relative;
    width: 50%;
    padding-bottom: 50px;
}

.topPoint_sec .topPoint_row .img_col .in {
    position: relative;
}

.topPoint_sec .topPoint_row .img_col .img_box {
    overflow: hidden;
    border-radius: 50px 50px 0 50px;
    display: flex;
}

.topPoint_sec .topPoint_row .img_col .comentIcon_flex {
    align-items: center;
    bottom: -60px;
    display: flex;
    gap: 10px;
    position: absolute;
    right: 20px;
    width: fit-content;
}

.topPoint_sec .topPoint_row .img_col .comentIcon_flex .imgs {
    display: flex;
}

.topPoint_sec .topPoint_row .img_col .comentIcon_flex .coment {
    background: #fff;
    border: 1px solid #3db156;
    border-radius: 50px;
    height: fit-content;
    padding: 5px 20px 7px;
    position: relative;
}

.topPoint_sec .topPoint_row .img_col .comentIcon_flex .coment p {
    margin: 0;
    font-size: 14px;
    letter-spacing: .04em;
    color: #21B140;
    font-weight: 900;
    position: relative;
}

.topPoint_sec .topPoint_row .img_col .backIcon_list .icons01 {
    position: absolute;
    top: 4px;
    left: -14px;
}

.topPoint_sec .topPoint_row .img_col .backIcon_list .icons02 {
    bottom: -48px;
    left: 17px;
    position: absolute;
}

.topPoint_sec .topPoint_row .img_col .backIcon_list .icons03 {
    position: absolute;
    right: -26px;
    bottom: 70px;
}

.topPoint_sec .topPoint_row .img_col .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%);
}

.topPoint_sec .topPoint_row .img_col .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: -1px;
    top: 50%;
    transform: translate(100%, -50%);
}

.topPoint_sec .topPoint_row .img_col .img_box img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

.topPoint_sec .topPoint_row .text_col {
    width: 50%;
}

.topPoint_sec .topPoint_row .text_col .num p {
    color: #3DB156;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    letter-spacing: .04em;
    margin: 0;
}

.topPoint_sec .topPoint_row .text_col .num {
    position: relative;
}

.topPoint_sec .topPoint_row .text_col .titles {
    margin-bottom: 20px;
}

.topPoint_sec .topPoint_row .text_col .titles h2 {
    margin: 0;
    line-height: 1.4;
    letter-spacing: .04em;
}

.topPoint_sec .topPoint_row .text_col .texts {
    position: relative;
}

.topPoint_sec .topPoint_row .text_col .texts p {
    font-size: 18px;
    letter-spacing: .04em;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.topPoint_sec .topPoint_row.addPoint02 {
    position: relative;
}

.topPoint_sec .topPoint_row.addPoint02 .comentIcon_flex {
    gap: 30px;
    left: 45px;
    bottom: -43px;
}

.topPoint_sec .topPoint_row.addPoint02 .comentIcon_flex .coment::before {
    content: "";
    border-bottom: 5px solid transparent;
    border-top: 5px solid transparent;
    border-left: initial;
    border-right: 14px solid #3db156;
    left: -28px;
}

.topPoint_sec .topPoint_row.addPoint02 .comentIcon_flex .coment::after {
    content: "";
    border-left: initial;
    border-right: 14px solid #fff;
    left: -25px;
    border-bottom: 5px solid transparent;
    border-top: 5px solid transparent;
}

.topPoint_sec .topPoint_row.addPoint02 .img_col {
    padding-bottom: 44px;
}

.topPoint_sec .topPoint_row.addPoint02 .img_col .backIcon_list02 .icons01 {
    position: absolute;
    top: 25%;
    left: -12.7%;
}

.topPoint_sec .topPoint_row.addPoint02 .img_col .backIcon_list02 .icons02 {
    position: absolute;
    top: 12%;
    left: -0.9%;
}

.topPoint_sec .topPoint_row.addPoint02 .img_col .backIcon_list02 .icons03 {
    position: absolute;
    right: -1%;
    top: 5%;
}

.topPoint_sec .topPoint_row.addPoint02 .img_col .backIcon_list02 .icons04 {
    position: absolute;
    right: 1%;
    top: 9%;
}

.topPoint_sec .topPoint_row.addPoint02 .img_col .backIcon_list02 .icons05 {
    position: absolute;
    right: -2%;
    bottom: 8%;
}

.topPoint_sec .topPoint_row.addPoint02 .img_col .backIcon_list02 .icons06 {
    position: absolute;
    right: 0%;
    bottom: 4%;
}

.topPoint_sec .topPoint_row.addPoint02 .img_col .backIcon_list02 .icons07 {
    position: absolute;
    bottom: -3%;
    right: 20%;
}

.topPoint_sec .topPoint_row .img_col .backIcon_list03 .icons01 {
    position: absolute;
    bottom: -7%;
    left: 4%;
}

.topPoint_sec .topPoint_row .img_col .backIcon_list03 .icons02 {
    position: absolute;
    top: 12%;
    left: -2%;
}

.topPoint_sec .topPoint_row .img_col .backIcon_list03 .icons03 {
    position: absolute;
    top: 0%;
    right: 1%;
    display: flex;
}

.topPoint_sec .topPoint_row .img_col .backIcon_list03 .icons04 {
    position: absolute;
    top: 3%;
    right: 11%;
    display: flex;
}

.topPoint_sec .topPoint_row .img_col .backIcon_list03 .icons05 {
    bottom: 20%;
    display: flex;
    position: absolute;
    right: -7%;
}

.topPoint_sec .topPoint_row .img_col .backIcon_list03 .icons06 {
    position: absolute;
    display: flex;
    right: -2%;
    bottom: 10%;
}

.topPoint_sec .topPoint_row .img_col .backIcon_list03 .icons07 {
    position: absolute;
    display: flex;
    bottom: 6%;
    right: 3%;
}

.topPoint_sec .topPoint_row.addPoint03 .comentIcon_flex {
    bottom: -45px;
    gap: 20px;
    right: 30px;
}

.topPoint_sec .topPoint_row.addPoint03 .img_col {
    padding-bottom: 45px;
}

.topPoint_sec .topPoint_row.addPoint04 {
    position: relative;
    margin-bottom: 0;
}

.topPoint_sec .topPoint_row.addPoint04 .comentIcon_flex {
    bottom: -30px;
    gap: 20px;
    left: 45px;
}

.topPoint_sec .topPoint_row.addPoint04 .comentIcon_flex .coment::before {
    content: "";
    border-bottom: 5px solid transparent;
    border-top: 5px solid transparent;
    border-left: initial;
    border-right: 14px solid #3db156;
    left: -28px;
}

.topPoint_sec .topPoint_row.addPoint04 .comentIcon_flex .coment::after {
    content: "";
    border-left: initial;
    border-right: 14px solid #fff;
    left: -25px;
    border-bottom: 5px solid transparent;
    border-top: 5px solid transparent;
}

.topPoint_sec .topPoint_row .img_col .backIcon_list04 .icons01,
.topPoint_sec .topPoint_row .img_col .backIcon_list04 .icons02,
.topPoint_sec .topPoint_row .img_col .backIcon_list04 .icons03,
.topPoint_sec .topPoint_row .img_col .backIcon_list04 .icons04,
.topPoint_sec .topPoint_row .img_col .backIcon_list04 .icons05,
.topPoint_sec .topPoint_row .img_col .backIcon_list04 .icons06,
.topPoint_sec .topPoint_row .img_col .backIcon_list04 .icons07 {
    position: absolute;
    display: flex;
}

.topPoint_sec .topPoint_row .img_col .backIcon_list04 .icons01 {
    bottom: -8%;
    right: 3%;
}

.topPoint_sec .topPoint_row .img_col .backIcon_list04 .icons02 {
    bottom: 18%;
    left: -1.5%;
}

.topPoint_sec .topPoint_row .img_col .backIcon_list04 .icons03 {
    bottom: 14%;
    left: -1.7%;
}

.topPoint_sec .topPoint_row .img_col .backIcon_list04 .icons04 {
    bottom: 9%;
    right: -2%;
}

.topPoint_sec .topPoint_row .img_col .backIcon_list04 .icons05 {
    bottom: 4%;
    right: 1%;
}

.topPoint_sec .topPoint_row .img_col .backIcon_list04 .icons06 {
    top: -5%;
    right: 32%;
}

.topPoint_sec .topPoint_row .img_col .backIcon_list04 .icons07 {
    top: -2%;
    right: 12%;
}

.topPoint_sec .topPoint_row.addPoint04 .img_col {
    padding-bottom: 39px;
}

/* <!-- LINKETを利用するメリット ------------------------------------------------------- --> */
.topMerit_sec {
    position: relative;
    padding-top: 120px;
    padding-bottom: 60px;
    padding-left: 20px;
    padding-right: 20px;
}

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

.topMerit_sec .topMerit_row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
}

.topMerit_sec .topMerit_row .topMerit_col {
    position: relative;
}

.topMerit_sec .topMerit_row .topMerit_col .fuki {
    background: #1FB640;
    color: #fff;
    width: fit-content;
    margin: 0 auto;
    border-radius: 50px;
    padding: 6px 21px;
    font-weight: bold;
    line-height: 1;
    position: relative;
    margin-bottom: 8px;
}

.topMerit_sec .topMerit_row .topMerit_col .fuki::after {
    width: 0;
    height: 0;
    border-left: 5.5px solid transparent;
    border-right: 5.5px solid transparent;
    border-top: 8px solid #1FB640;
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 8px);
}

.topMerit_sec .topMerit_row .topMerit_col .titles {
    margin-bottom: 20px;
}

.topMerit_sec .topMerit_row .topMerit_col .titles h3 {
    font-size: 24px;
    text-align: center;
    font-weight: bold;
    letter-spacing: .04em;
    color: #212121;
    margin: 0;
}

.topMerit_sec .topMerit_row .topMerit_col .img_area {
    border-radius: 40px 40px 0px 40px;
    box-shadow: 5px 7px 20px rgb(61 177 86 / 25%);
    position: relative;
    min-height: 214px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.topMerit_sec .topMerit_row .topMerit_col .img_area .num {
    position: relative;
    font-family: Roboto, sans-serif;
    font-size: 18px;
    font-weight: 900;
    position: absolute;
    bottom: 6px;
    right: 8px;
    line-height: 1;
    color: #3DB156;
}

.topMerit_sec .topMerit_row .topMerit_col .img_area .img_box {
    width: fit-content;
    display: flex;
}

.topMerit_sec .topMerit_row .topMerit_col .texts p {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .04em;
    line-height: 1.8;
    margin-top: 25px;
    margin-bottom: 0;
}

.topMerit_sec .top_merit_bottom_imgs {
    position: absolute;
    bottom: -16%;
    width: 150px;
}

.topMerit_sec .top_merit_bottom_imgs img {
    width: 100%;
}

/* <!-- 料金 ------------------------------------------------------- --> */
.price_sec {
    padding-top: 60px;
    position: relative;
    padding-bottom: 70px;
    padding-left: 20px;
    padding-right: 20px;
}

.price_sec h3 {
    text-align: center;
    font-size: 26px;
    letter-spacing: .04em;
    margin: 0;
    margin-bottom: 50px;
}

.price_sec .price_row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
}

.price_sec .price_row .price_col {
    background: #3DB156;
    border-radius: 40px 40px 0 40px;
    padding: 56px 40px 20px;
    color: #fff;
    position: relative;
}

.price_sec .price_row .price_col .titletexts p {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.3;
    margin: 0;
    margin-bottom: 30px;
}

.price_sec .price_row .price_col .titleplans p {
    margin: 0;
    font-weight: 900;
    font-size: 26px;
    margin-bottom: 8px;
}

.price_sec .price_row .price_col .planprice {
    display: flex;
    align-items: end;
}

.price_sec .price_row .price_col .planprice .price {
    font-family: Roboto, sans-serif;
    font-size: 46px;
    line-height: 0.7;
    font-weight: 900;
}

.price_sec .price_row .price_col .planprice .lasts {
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
    margin-left: 0.2em;
}

.price_sec .price_row .price_col .planprice .lasts_addtt {
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
    margin-left: 0.2em;
}
.price_sec .price_row .price_col .lists {
    position: relative;
    border-top: 1px solid rgb(255 255 255 / 20%);
    margin-top: 30px;
    padding: 20px 0;
}

.price_sec .price_row .price_col .lists ul li {
    font-size: 18px;
    font-weight: bold;
}

.price_sec .price_row .price_col .plantopright {
    position: absolute;
    right: 30px;
    top: 30px;
    line-height: 1;
    writing-mode: vertical-rl;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

.price_sec .price_row .price_col .plantopright::before {
    content: "";
    border: 1px solid #fff;
    width: 12px;
    height: 12px;
    position: relative;
    border-radius: 50%;
}

.price_sec .price_row .price_col .lists ul {
    margin: 0;
}

.price_sec .price_addoption_row {
    position: relative;
    background: #f5f5f5;
    text-align: center;
    padding: 30px 30px;
    border-radius: 10px;
    margin-top: 20px;
    display: flex;
    text-align: justify;
    align-items: center;
  gap: 40px;
}
.price_sec .price_addoption_row .subtitle {
    font-size: 14px;
    font-weight: 900;
    color: #1FB640;
    font-family: Roboto, sans-serif;
    margin: 0;
    line-height: 1.1;
}
.price_sec .price_addoption_row .ttlesadd {
    font-size: 26px;
    font-weight: bold;
}
.price_sec .price_addoption_row .pariceres_col {
    display: flex;
    align-items: end;
    margin: 0 auto;
}

.price_sec .price_addoption_row .pariceres_col .price {
    font-family: Roboto, sans-serif;
    font-size: 46px;
    line-height: 0.7;
    font-weight: 900;
}

.price_sec .price_addoption_row .pariceres_col .lasts {
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
    margin-left: 0.2em;
}
.price_sec .price_addoption_row .imgll {
    position: absolute;
    bottom: -40px;
    right: -20px;
}
.price_sec .priceBottomtext_row p {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.price_sec .pricemore_btn_row {
    position: relative;
}

.price_sec .pricemore_btn_row a {
    background: #212121;
    color: #fff;
    border-radius: 70px;
    width: 258px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 52px;
    margin: 0 auto;
    margin-top: 30px;
    transition: .3s;
}

.price_sec .pricemore_btn_row a:hover {
    opacity: .7;
}

/* <!-- 料金下セクション ------------------------------------------------------- --> */
.price_bottom_sec {
    position: relative;
    padding-bottom: 45px;
    margin-bottom: 70px;
}

.price_bottom_sec .price_bottom_row {
    position: relative;
    background: #F5F5F5;
    border-radius: 40px 40px 0 40px;
    padding: 40px 50px;
}

.price_bottom_sec .price_bottom_row .flex_in {
    display: flex;
    gap: 50px;
}

.price_bottom_sec .price_bottom_row .flex_in .img_col {
    border-radius: 30px 30px 0 30px;
    height: fit-content;
    overflow: hidden;
    width: calc(44% - 50px);
    display: flex;
}

.price_bottom_sec .price_bottom_row .flex_in .text_col {
    width: 56%;
}

.price_bottom_sec .price_bottom_row .flex_in .text_col h2 {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: .04em;
    line-height: 1.4;
    margin: 0;
    margin-bottom: 10px;
    margin-top: 10px;
}

.price_bottom_sec .price_bottom_row .flex_in .text_col p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: -0.01em;
    margin: 0;
}

.price_bottom_sec .price_bottom_row .comentIcon_flex {
    position: absolute;
    bottom: -55px;
    right: 50px;
    display: flex;
    gap: 0px;
    align-items: center;
    justify-content: center;
}

.price_bottom_sec .price_bottom_row .comentIcon_flex .imgs {
    display: flex;
    width: 90px;
    height: fit-content;
}

.price_bottom_sec .price_bottom_row .comentIcon_flex .imgs img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.price_bottom_sec .price_bottom_row .comentIcon_flex .coment {
    background: #fff;
    border: 1px solid #3db156;
    border-radius: 50px;
    height: fit-content;
    padding: 5px 20px 7px;
    position: relative;
}

.price_bottom_sec .price_bottom_row .comentIcon_flex .coment p {
    color: #21b140;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .04em;
    margin: 0;
    position: relative;
}

.price_bottom_sec .price_bottom_row .comentIcon_flex .coment::before {
    content: "";
    position: absolute;
    border-left: 14px solid #3db156;
    right: -1px;
    border-bottom: 5px solid transparent;
    border-top: 5px solid transparent;
    content: "";
    height: 0;
    position: absolute;
    top: 50%;
    transform: translate(100%, -50%);
    width: 0;
}

.price_bottom_sec .price_bottom_row .comentIcon_flex .coment::after {
    content: "";
    border-left: 14px solid #fff;
    right: 2px;
    border-bottom: 5px solid transparent;
    border-top: 5px solid transparent;
    content: "";
    height: 0;
    position: absolute;
    top: 50%;
    transform: translate(100%, -50%);
    width: 0;
}

/* <!-- ctaセクション ------------------------------------------------------- --> */
.cta_sec {
    background: #3db156;
    border-radius: 50px 50px 0 50px;
    margin: 0 20px;
    padding: 70px 20px 80px;
    overflow: hidden;
    position: relative;
}

.cta_sec .backimg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.cta_sec .backimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta_sec .cta_row {
    position: relative;
}

.cta_sec .cta_row h2 {
    font-size: 36px;
    color: #fff;
    text-align: center;
    margin: 0;
    margin-bottom: 30px;
}

.cta_sec .cta_row>p {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    line-height: 1.8;
    margin: 0;
    margin-bottom: 40px;
}

.cta_sec .cta_row .cta_flex {
    display: flex;
    gap: 34px;
    justify-content: center;
}

.cta_sec .cta_row .cta_flex .cta_col {
    background: #fff;
    border-radius: 20px 20px 0px 20px;
    padding: 32px 20px 34px;
    width: 100%;
    max-width: 440px;
}

.cta_sec .cta_row .cta_flex .cta_col h3 {
    font-size: 24px;
    text-align: center;
    color: #212121;
    letter-spacing: .04em;
    font-weight: bold;
    margin: 0;
    margin-bottom: 10px;
}

.cta_sec .cta_row .cta_flex .cta_col p {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    margin: 0;
    margin-bottom: 16px;
}

.cta_sec .cta_row .cta_flex .cta_col .materials_btn a {
    border: 1px solid #D5D5D5;
    width: 200px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    color: #393332;
    border-radius: 100px;
    margin: 0 auto;
    transition: .3s;
}

.cta_sec .cta_row .cta_flex .cta_col .materials_btn a:hover {
    opacity: .7;
}

.cta_sec .cta_row .cta_flex .cta_col .contacts_btn {
    position: relative;
}

.cta_sec .cta_row .cta_flex .cta_col .contacts_btn a {
    background: #F70029;
    color: #fff;
    width: 286px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    margin: 0 auto;
    font-size: 20px;
    font-weight: bold;
    position: relative;
    transition: .3s;
    gap: 15px;
}

.cta_sec .cta_row .cta_flex .cta_col .contacts_btn a:hover {
    opacity: .7;
}

.cta_sec .cta_row .cta_flex .cta_col .contacts_btn a .enright {
    background: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: relative;
}

.cta_sec .cta_row .cta_flex .cta_col .contacts_btn a .enright::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 9px solid #f70029;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    position: absolute;
    top: 51%;
    left: 52%;
    transform: translate(-50%, -50%);
}

/* <!-- sceneセクション ------------------------------------------------------- --> */
.scene_con {
    position: relative;
    margin-top: 70px;
}

.scene_con .scene_in.swiper {
    overflow: initial;
}

.scene_sec {
    overflow: hidden;
    position: relative;
    padding-top: 180px;
    padding-bottom: 150px;
    padding-left: 20px;
    padding-right: 20px;
}

.scene_sec .back_images {
    display: flex;
    max-width: 560px;
    position: absolute;
    right: 0;
    top: 55%;
    transform: translateY(-50%);
    width: fit-content;
    width: 40%;
}

.scene_sec .scene_row {
    display: flex;
    gap: 25px;
    margin-left: -4%;
}

.scene_sec .scene_row .scene_col {
    position: relative;
}

.scene_sec .scene_row .scene_col .img_box {
    overflow: hidden;
    border-radius: 40px 40px 0px 40px;
    position: relative;
    aspect-ratio: 350 / 388;
}

.scene_sec .scene_row .scene_col .img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.scene_sec .scene_row .scene_col h3 {
    font-size: 24px;
    text-align: center;
    font-weight: bold;
    color: #21B140;
    margin: 0;
    margin-top: 16px;
    margin-bottom: 10px;
}

.scene_sec .scene_row .scene_col p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}

.scene_sec .scene_con .scene_in .swiper-scrollbar {
    background-color: #e7e7e7;
    height: 4px !important;
    position: relative !important;
    margin-top: 65px;
}

.scene_sec .scene_con .scene_in .swiper-scrollbar-drag {
    background-color: #3db156 !important;
    height: 8px !important;
    position: relative;
    top: -2px;
    cursor: pointer;
}

/* <!-- favorite_sec ------------------------------------------------------- --> */
.favorite_sec {
    position: relative;
    margin-bottom: 150px;
    padding-left: 20px;
    padding-right: 20px;
}

.favorite_sec::before {
    content: "";
    position: absolute;
    background: #F6F6F6;
    height: 100%;
    z-index: -1;
    border-radius: 0 50px 0px 0;
    top: 0;
    left: 0;
    max-width: 1600px;
    width: 93%;
}

.favorite_sec .favorite_row {
    display: flex;
    gap: 90px;
}

.favorite_sec .favorite_row .left_list_col {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
    margin-top: 90px;
    width: calc(70% - 90px);
}

.favorite_sec .favorite_row .left_list_col .flex_content a{
    background: #3DB156;
    color: #fff;
    border-radius: 10px 10px 0px 10px;
    display: flex;
    padding: 20px;
    gap: 15px;
    align-items: center;
    transition: .3s;
}
.favorite_sec .favorite_row .left_list_col .flex_content a:hover{
    opacity: .7;
}

.favorite_sec .favorite_row .left_list_col .flex_content .imgs {
    max-width: 80px;
    display: flex;
}

.favorite_sec .favorite_row .left_list_col .flex_content .text p {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.5;
}

.favorite_sec .favorite_row .text_btn_col {
    position: relative;
}

.favorite_sec .favorite_row .text_btn_col .titles_con {
    position: relative;
}

.favorite_sec .favorite_row .text_btn_col .titles_con h2 {
    font-size: 44px;
    font-weight: bold;
    color: #212121;
    text-align: end;
    margin: 0;
    line-height: 1;
}

.favorite_sec .favorite_row .text_btn_col .titles_con p {
    text-align: end;
    font-size: 14px;
    font-weight: 900;
    color: #1FB640;
    font-family: Roboto, sans-serif;
    margin: 0;
    margin-top: 10px;
}

.favorite_sec .favorite_row .text_btn_col .content_btn {
    margin-top: 40px;
}

.favorite_sec .favorite_row .text_btn_col .content_btn a {
    background: #212121;
    margin-left: auto;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    width: 205px;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    transition: .3s;
}

.favorite_sec .favorite_row .text_btn_col .content_btn a:hover {
    opacity: .7;
}

.favorite_sec .comentIcon_flex {
    align-items: end;
    bottom: 0;
    bottom: -42px;
    display: flex;
    gap: 10px;
    justify-content: center;
    position: absolute;
    right: 0;
}

.favorite_sec .w110 {
    padding-bottom: 70px;
    position: relative;
    padding-top: 94px;
}

.favorite_sec .comentIcon_flex .coment {
    background: #fff;
    border: 1px solid #3db156;
    border-radius: 50px;
    height: fit-content;
    padding: 5px 20px 7px;
    position: relative;
    margin-bottom: 20px;
}

.favorite_sec .comentIcon_flex .imgs {
    display: flex;
    height: fit-content;
    width: 110px;
}

.favorite_sec .comentIcon_flex .imgs img {
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.favorite_sec .comentIcon_flex .coment p {
    color: #21b140;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .04em;
    margin: 0;
    position: relative;
}

.favorite_sec .comentIcon_flex .coment::before {
    content: "";
    border-bottom: 5px solid transparent;
    border-top: 5px solid transparent;
    content: "";
    height: 0;
    position: absolute;
    top: 50%;
    transform: translate(100%, -50%);
    width: 0;
    border-left: 14px solid #3db156;
    right: -1px;
}

.favorite_sec .comentIcon_flex .coment::after {
    content: "";
    border-bottom: 5px solid transparent;
    border-top: 5px solid transparent;
    content: "";
    height: 0;
    position: absolute;
    top: 50%;
    transform: translate(100%, -50%);
    width: 0;
    border-left: 14px solid #fff;
    right: 2px;
}

.favorite_sec .backimg_icon {
    max-width: 82px;
    display: flex;
    position: absolute;
    top: -60px;
    left: 8%;
}

.favorite_sec .backimg_icon img {
    width: 100%;
}

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

/* <!-- mvunderStep_sec ------------------------------------------------------- --> */
.top_step_sec {
    position: relative;
    background: #3DB156;
    border-radius: 50px 50px 0px 50px;
    margin: 0 20px;
    padding: 50px 20px 90px;
}

.top_step_sec h2 {
    color: #fff;
    font-size: 44px;
    letter-spacing: .04em;
    line-height: 1.4;
    margin: 0 0 85px;
    text-align: center;
    padding-top: 6px;
}

.top_step_sec h2 span.pin {
    background: top left / 1em 0.5em repeat-x radial-gradient(circle, #fff 0.08em, rgba(0, 0, 0, 0) 0.1em);
    padding-top: .2em;
}

.top_step_sec .top_step_row {
    position: relative;
    aspect-ratio: 860 / 706;
    max-width: 860px;
    margin: 0 auto;
    width: 100%;
}

.top_step_sec .top_step_row .round {
    position: absolute;
    border-radius: 50%;
    aspect-ratio: 100 / 100;
}

.top_step_sec .top_step_row .round.step01 {
    top: 0;
    left: 50%;
    transform: translate(-50%, 0px);
    width: 34.5%;
    background: #FFFF00;
}

.top_step_sec .top_step_row .round.step01 .img_box01 {
    display: flex;
    width: 45%;
    margin: 0 auto;
}

.top_step_sec .top_step_row .round.step01 .in {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -13%);
    width: 100%;
    top: 0;
}

.top_step_sec .top_step_row .round.step01 .img_box02 {
    display: flex;
    position: absolute;
    right: -23%;
    top: 8%;
    width: 64%;
}

.top_step_sec .top_step_row .round.step01 .titles {
    font-weight: 900;
    color: #1FB640;
    line-height: 1.1;
    text-align: center;
    font-size: 33px;
}

.top_step_sec .top_step_row .round.step01 .flex {
    display: flex;
    gap: 5px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

.top_step_sec .top_step_row .round.step01 .flex .flex_in {
    background: #1FB640;
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    line-height: 1;
    border-radius: 4px;
    padding: 3px 13px 6px;
}

.top_step_sec .top_step_row .round.step01 .img_box01 img {
    width: 100%;
}

.top_step_sec .top_step_row .round.step01 .img_box02 img {
    width: 100%;
}

.top_step_sec .top_step_row .round.step02 {
    right: 8%;
    top: 23%;
    background: #fff;
    border: 5px solid #CBE8D1;
    width: 22.6%;
}

.top_step_sec .top_step_row .round.step02 .in {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translate(0, -50%);
}

.top_step_sec .top_step_row .round.step02 .in .titles {
    font-size: 24px;
    color: #1FB640;
    font-weight: 900;
    line-height: 1;
    text-align: center;
}

.top_step_sec .top_step_row .round.step02 .in .flex {
    display: flex;
    gap: 5px;
    width: calc(100% + 42px);
    transform: translate(-21px, 0px);
    margin-top: 10px;
}

.top_step_sec .top_step_row .round.step02 .in .flex .flex_in {
    border-radius: 4px;
    font-size: 12px;
    padding: 3px 13px 6px;
    border: 3px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.top_step_sec .top_step_row .in .flex {
    margin-top: 10px;
    display: flex;
    gap: 5px;
}

.top_step_sec .top_step_row .in .flex .flex_in {
    background: #1fb640;
    padding: 3px 13px 6px;
    line-height: 1;
    font-weight: 700;
    color: #fff;
    border-radius: 4px;
}

.top_step_sec .top_step_row .round::before {
    content: "";
    width: 5px;
    height: 50px;
    position: absolute;
    background: #C6F8D1;
    z-index: 0;
}

.top_step_sec .top_step_row .round.step01::before {
    bottom: 21%;
    right: -5.4%;
    transform: rotate(-65deg);
}

.top_step_sec .top_step_row .round::after {
    content: "";
    width: 5px;
    height: 50px;
    position: absolute;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 20px solid #C6F8D1;
    z-index: 0;
}

.top_step_sec .top_step_row .round.step01::after {
    bottom: 26%;
    right: -6%;
    transform: rotate(52deg);
}

.top_step_sec .top_step_row .round.step02::before {
    bottom: -26%;
    right: 30%;
    transform: rotate(-5deg);
}

.top_step_sec .top_step_row .round.step02::after {
    bottom: -16%;
    right: 25%;
    transform: rotate(-5deg);
}

.top_step_sec .top_step_row .round.step03 {
    right: 0%;
    top: 56%;
    background: #fff;
    border: 5px solid #CBE8D1;
    width: 31.8%;
}

.top_step_sec .top_step_row .round.step03 .in {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translate(0, -57%);
}

.top_step_sec .top_step_row .round.step03 .in .img_box {
    width: 84.3%;
    margin: 0 auto;
    display: flex;
}

.top_step_sec .top_step_row .round.step03 .in .img_box img {
    width: 100%;
}

.top_step_sec .top_step_row .round.step03 .in .titles {
    color: #1fb640;
    font-size: 33px;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
}

.top_step_sec .top_step_row .round.step04 {
    right: 35%;
    top: 72.5%;
    background: #fff;
    border: 5px solid #CBE8D1;
    width: 22.6%;
}

.top_step_sec .top_step_row .round.step04 .in {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translate(0, -47%);
}

.top_step_sec .top_step_row .round.step04 .in .titles {
    font-size: 20px;
    color: #1FB640;
    font-weight: 900;
    line-height: 1;
    text-align: center;
}

.top_step_sec .top_step_row .round.step04 .in .flex {
    flex-wrap: wrap;
    justify-content: center;
}

.top_step_sec .top_step_row .round.step04 .in .flex .flex_in {
    font-size: 12px;
    text-align: center;
}

.top_step_sec .top_step_row .round.step03::before {
    bottom: 35%;
    left: -11%;
    transform: rotate(65deg);
}

.top_step_sec .top_step_row .round.step03::after {
    left: -14%;
    bottom: 41%;
    transform: rotate(65deg);
}


.top_step_sec .top_step_row .round.step04::before {
    top: 10%;
    transform: rotate(-65deg);
    left: -12%;
}

.top_step_sec .top_step_row .round.step04::after {
    top: 20%;
    left: -17%;
}

.top_step_sec .top_step_row .round.step05 {
    border: 14px solid #ffff00;
    left: 0%;
    top: 40%;
    width: 41.2%;
}

.top_step_sec .top_step_row .round.step05 .in {
    left: 50%;
    position: absolute;
    top: 0;
    transform: translate(-50%, -20%);
    width: 100%;
}

.top_step_sec .top_step_row .round.step05 .in .img_box {
    width: 91%;
    display: flex;
    margin: 0 auto;
}

.top_step_sec .top_step_row .round.step05 .in .img_box img {
    width: 100%;
}

.top_step_sec .top_step_row .round.step05 .in .titles {
    color: #ffff00;
    font-size: 40px;
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
}

.top_step_sec .top_step_row .round.step05::before,
.top_step_sec .top_step_row .round.step05::after {
    display: none;
}

/* <!-- header ------------------------------------------------------- --> */
header {
    position: relative;
    top: 0;
    z-index: 4;
    width: 100%;
    transition: .3s;
    height: 105px;
    height: initial;
}

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

header .header_content .cta_box .mail_box01 a {
    /* border: 1px solid #ccc; */
    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 {}

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;
        height: initial;
    }

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


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

.text_image_flex_parts01_row {
    position: relative;
    padding: 0 20px;
}

.text_image_flex_parts01_row .flex_in {
    display: flex;
    gap: 50px;
    position: relative;
}

.text_image_flex_parts01_row .text_col {
    width: 50%;
}

.text_image_flex_parts01_row .img_col {
    width: 45.5%;
    height: fit-content;
    overflow: hidden;
    border-radius: 30px 30px 0px 30px;
    display: flex;
}

.text_image_flex_parts01_row .text_col p.texts {
    color: #212121;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: -0.041em;
    margin: 0;
}

.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;
}
.page_point_row {
    position: relative;
    padding: 0 20px;
}

.page_point_row .in_row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
    position: relative;
}

.page_point_row .in_row .page_point_col {
    position: relative;
}

.page_point_row .in_row .page_point_col h3 {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin: 0;
    margin-bottom: 10px;
}

.page_point_row .in_row .page_point_col .img_box {
    position: relative;
    overflow: hidden;
    display: flex;
    border-radius: 20px 20px 0px 20px;
}

.page_point_row .in_row .page_point_col p {
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
    font-size: 16px;
    margin-top: 10px;
}
.page_Operationpoint_row {
    position: relative;
    padding: 0 20px;
}

.page_Operationpoint_row .in_row {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.page_Operationpoint_row .in_row .page_Operationpoint_con {
    background: #EDFAF0;
    border-radius: 40px 40px 0px 40px;
    display: flex;
    padding: 60px 70px;
    position: relative;
    align-items: center;
    gap: 20px;
}

.page_Operationpoint_row .in_row .page_Operationpoint_con .text_col {
    width: 50%;
}

.page_Operationpoint_row .in_row .page_Operationpoint_con .right_col {
    width: 50%;
}

.page_Operationpoint_row .in_row .page_Operationpoint_con .text_col .subtitle {
    color: #3DB156;
    font-size: 18px;
    font-weight: bold;
}

.page_Operationpoint_row .in_row .page_Operationpoint_con .ponit_p {
    color: #3DB156;
    font-size: 12px;
    font-weight: bold;
    line-height: 1.2;
    white-space: normal;
    height: fit-content;
    writing-mode: vertical-rl;
    font-family: Roboto, sans-serif;
    display: flex;
    gap: 7px;
    /* align-items: center; */
    /* justify-content: center; */
    position: absolute;
    right: 30px;
    top: 30px;
}

.page_Operationpoint_row .in_row .page_Operationpoint_con .ponit_p::before {
    content: "";
    width: 12px;
    height: 12px;
    background: #3DB156;
    border-radius: 50%;
}

.page_Operationpoint_row .in_row .page_Operationpoint_con .text_col h3 {
    font-size: 32px;
    font-weight: bold;
    color: #212121;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page_Operationpoint_row .in_row .page_Operationpoint_con .text_col p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}

.page_Operationpoint_row .in_row .page_Operationpoint_con .right_col .point3_box {
    position: relative;
    width: fit-content;
    margin: 0 auto;
}

.page_Operationpoint_row .in_row .page_Operationpoint_con .right_col .point3_box .flex {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.page_Operationpoint_row .in_row .page_Operationpoint_con .right_col .point3_box .flex .con {
    background: #fff;
    border-radius: 50%;
    width: 155px;
    height: 155px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #3DB156;
    font-size: 22px;
    color: #2E9045;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
}

.page_Operationpoint_row .in_row .page_Operationpoint_con .right_col .point3_box .bottom_con {
    background: #fff;
    border-radius: 20px 20px 0px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #3DB156;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    color: #2E9045;
    line-height: 1.2;
    padding: 28px 20px;
    width: 340px;
}

.page_Operationpoint_row .in_row .page_Operationpoint_con .right_col .point3_box .plus {
    position: absolute;
    left: 50%;
    top: 46%;
    background: #3DB156;
    width: 30px;
    height: 3px;
    transform: translate(-50%, 10px);
}

.page_Operationpoint_row .in_row .page_Operationpoint_con .right_col .point3_box .plus::after {
    content: "";
    height: 30px;
    width: 3px;
    background: #3DB156;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.page_Operationpoint_row .in_row .page_Operationpoint_con .right_col .pay_flex {
    display: flex;
    gap: 5px;
    /* flex-wrap: wrap; */
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.page_Operationpoint_row .in_row .page_Operationpoint_con .right_col .pay_flex .pay {
    background: #fff;
    border-radius: 20px 20px 0px 20px;
    border: 1px solid #3DB156;
    padding: 20px 10px 16px;
}

.page_Operationpoint_row .in_row .page_Operationpoint_con .right_col .pay_flex .pay p {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    color: #2E9045;
    line-height: 1;
    text-align: center;
    margin-top: 10px;
}

.page_Operationpoint_row .in_row .page_Operationpoint_con .right_col .pay_flex .pay .img_box {
    display: flex;
    justify-content: center;
}

.page_Operationpoint_row .in_row .page_Operationpoint_con .right_col .colum2_box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: fit-content;
    margin: 0 auto;
}

.page_Operationpoint_row .in_row .page_Operationpoint_con .right_col .colum2_box .colum_flex {
    background: #fff;
    border-radius: 20px 20px 0px 20px;
    display: flex;
    gap: 26px;
    align-items: center;
    padding: 20px 30px 20px;
    justify-content: center;
    border: 1px solid #3DB156;
}

.page_Operationpoint_row .in_row .page_Operationpoint_con .right_col .colum2_box .colum_flex p {
    color: #2E9045;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2;
    margin: 0;
}

.page_Operationpoint_row .in_row .page_Operationpoint_con .right_col .colum2_box .colum_flex .img_box {
    display: flex;
    height: fit-content;
}
.text_image_flex_parts02_row {
    position: relative;
    padding: 0 20px;
}

.text_image_flex_parts02_row .flex_in {
    display: flex;
    gap: 50px;
    align-items: center;
}

.text_image_flex_parts02_row .flex_in .text_col {
    width: 50%;
}

.text_image_flex_parts02_row .flex_in .text_col .subtitle {
    font-size: 16px;
    font-weight: bold;
    color: #3DB156;
    letter-spacing: 0em;
    line-height: 1.2;
    margin-bottom: 10px;
}

.text_image_flex_parts02_row .flex_in .text_col h3 {
    font-size: 30px;
    color: #212121;
    margin: 0;
    line-height: 1.2;
    margin-bottom: 30px;
}

.text_image_flex_parts02_row .flex_in .text_col p.texts {
    font-size: 16px;
    font-weight: 500;
    color: #212121;
    margin: 0;
    line-height: 1.6;
}

.text_image_flex_parts02_row .flex_in .img_col {
    display: flex;
}
.background_decoration01 {
    position: absolute;
    top: 0;
    right: 0px;
}
.background_decoration02 {
    position: absolute;
    top: 0;
    right: 0px;
}
.background_decoration03 {
    position: absolute;
    top: 0;
    left: 0px;
    z-index: -1;
}
.mv_pages p.h1_text {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    margin-top: 20px;
    margin-bottom: 0;
    color: #212121;
  width: calc(100% - 320px);
}
.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.5;
    margin-top: 6px;
}
.page_linket_future_row {
    position: relative;
    padding: 0 20px;
}

.page_linket_future_row .in_row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
}

.page_linket_future_row .in_row .page_linket_future_col {
    position: relative;
}

.page_linket_future_row .in_row .page_linket_future_col .img_box {
    display: flex;
    overflow: hidden;
    border-radius: 40px 40px 0px 40px;
}

.page_linket_future_row .in_row .page_linket_future_col h3 {
    margin: 0;
    margin-top: 10px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}
.page_future_bottom_row {
    position: relative;
    padding: 0 20px;
}

.page_future_bottom_row .flex_title {
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 10px;
    margin-bottom: 36px;
}

.page_future_bottom_row .flex_title .title_col {}

.page_future_bottom_row .flex_title .title_col h3 {
    margin: 0;
    font-size: 26px;
    font-weight: bold;
    letter-spacing: 0em;
}

.page_future_bottom_row .flex_title .img_col {
    display: flex;
}

.page_future_bottom_row .in_row {
    display: flex;
    gap: 10px;
    justify-content: center;
    /* border: 2px solid #3DB156; */
}

.page_future_bottom_row .in_row .page_future_bottom_col {
    background: #f6fdf8;
    border-radius: 20px 20px 0px 20px;
    max-width: 170px;
    width: 100%;
    border: 2px solid #3DB156;
    padding: 20px 10px;
    background-image: repeating-linear-gradient(45deg,
   #fff, #fff 7px,
   transparent 0, transparent 14px);
}

.page_future_bottom_row .in_row .page_future_bottom_col .img_box {
    display: flex;
    width: fit-content;
    margin: 0 auto;
}

.page_future_bottom_row .in_row .page_future_bottom_col p {
    margin: 0;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: #2E9045;
    line-height: 1.2;
    margin-top: 10px;
}
.page_step_borderbox_row {
    position: relative;
    padding: 0 20px;
}

.page_step_borderbox_row .content_con {
    background: #fff;
    border: 2px solid #3DB156;
    border-radius: 30px 30px 30px 30px;
    overflow: hidden;
}

.page_step_borderbox_row .content_con .titles {
    background: #3DB156;
    padding: 26px 20px 20px;
}

.page_step_borderbox_row .content_con .titles h2 {
    margin: 0;
    color: #fff;
    text-align: center;
    font-size: 40px;
}

.page_step_borderbox_row .content_con .titles p.sub_label {
    margin: 0;
    text-align: center;
    width: fit-content;
    margin: 0 auto;
    background: #fff;
    font-size: 14px;
    color: #3DB156;
    line-height: 1;
    font-family: Roboto, sans-serif;
    font-weight: bold;
    border-radius: 20px;
    padding: 5px 21px 3px;
}

.page_step_borderbox_row .content_con:not(:last-of-type) {
    margin-bottom: 70px;
}

.page_step_borderbox_row .content_con .step01_box {
    position: relative;
    padding: 30px 20px 100px;
}

.page_step_borderbox_row .content_con .step01_box .flex_in {
    display: flex;
    gap: 37px;
    max-width: 960px;
    margin: 0 auto;
    padding-top: 40px;
}

.page_step_borderbox_row .content_con .step01_box .flex_in .img_col {
    width: 50%;
    display: flex;
    overflow: hidden;
    border-radius: 20px 20px 0px 20px;
    height: fit-content;
}

.page_step_borderbox_row .content_con .step01_box .flex_in .text_col {
    width: 50%;
}

.page_step_borderbox_row .content_con .step01_box .flex_in .text_col p.subtitle {
    margin: 0;
    color: #2E9045;
    font-weight: bold;
    font-size: 18px;
    line-height: 1.2;
}

.page_step_borderbox_row .content_con .step01_box .flex_in .text_col h3 {
    font-size: 32px;
    line-height: 1.2;
    margin: 0;
    margin-bottom: 30px;
}

.page_step_borderbox_row .content_con .step01_box .flex_in .text_col p.text {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
}

.page_step_borderbox_row .content_con .step01_box .flex_in:nth-of-type(1) .text_col {
    border-bottom: 3px solid #F3F3F3;
    padding-bottom: 40px;
}

.page_step_borderbox_row .content_con .step01_box .flex_in .pay_col {
    display: grid;
    gap: 5px;
    justify-content: center;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    width: 50%;
    height: fit-content;
}

.page_step_borderbox_row .content_con .step01_box .flex_in .pay_col .pay_list {
    background: #f6fdf8;
    border-radius: 20px 20px 0px 20px;
    max-width: 170px;
    width: 100%;
    border: 2px solid #3DB156;
    padding: 20px 10px 10px;
    background-image: repeating-linear-gradient(45deg,
   #fff, #fff 7px,
   transparent 0, transparent 14px);
}

.page_step_borderbox_row .content_con .step01_box .flex_in .pay_col .pay_list .img_box {
    display: flex;
    width: fit-content;
    margin: 0 auto;
}

.page_step_borderbox_row .content_con .step01_box .flex_in .pay_col .pay_list p {
    margin: 0;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    color: #2E9045;
    line-height: 1.2;
    margin-top: 10px;
}

.page_step_borderbox_row .content_con .step02_box {
    padding: 60px 70px;
}

.page_step_borderbox_row .content_con .step02_box p.texts {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 50px;
}

.page_step_borderbox_row .content_con .step02_box .chiket_flex {
    display: flex;
    gap: 10px;
}

.page_step_borderbox_row .content_con .step02_box .chiket_flex .chiket_col {
    width: 50%;
}
.page_step_borderbox_row .content_con .step02_box .chiket_flex .chiket_col .box {
    background: #EDFAF0;
    border-radius: 20px 20px 0px 20px;
    padding: 40px 40px 0px;
    overflow: hidden;
}

.page_step_borderbox_row .content_con .step02_box .chiket_flex .chiket_col .box .sub_label {
    background: #3DB156;
    color: #fff;
    margin: 0 auto;
    width: fit-content;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    font-family: Roboto, sans-serif;
    line-height: 1;
    padding: 5px 20px 3px;
}

.page_step_borderbox_row .content_con .step02_box .chiket_flex .chiket_col .box h3 {
    margin: 0;
    text-align: center;
    font-size: 24px;
    line-height: 1.2;
    color: #393332;
    margin-top: 5px;
    margin-bottom: 30px;
}

.page_step_borderbox_row .content_con .step02_box .chiket_flex .chiket_col .img_box02 {
    margin-top: 0px;
    text-align: center;
}

.page_step_borderbox_row .content_con .step02_box .chiket_flex .chiket_col:nth-of-type(2) .box .sub_label {
    background: #F02B00;
}
.page_step_borderbox_row .content_con .step03_box {
    padding: 60px 70px;
}

.page_step_borderbox_row .content_con .step03_box .step3_flex {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr 1fr;
}

.page_step_borderbox_row .content_con .step03_box .step3_flex .step3_col {}

.page_step_borderbox_row .content_con .step03_box .step3_flex .step3_col h3 {
    font-size: 22px;
    text-align: center;
    margin-bottom: 20px;
}

.page_step_borderbox_row .content_con .step03_box .step3_flex .step3_col p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
    margin-top: 20px;
}

.page_step_borderbox_row .content_con .step03_box .step3_imgText {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 30px;
    margin-top: 20px;
}
.page_step_borderbox_row .content_con .step03_box .step3_imgText .img_col {
    display: flex;
}
.page_step_borderbox_row .content_con .step03_box .step3_last_in {
    display: flex;
    gap: 10px;
}

.page_step_borderbox_row .content_con .step03_box .step3_last_in .step3_last_col {
    border-radius: 20px 20px 0px 20px;
    background: #EDFAF0;
    padding: 30px;
    width: 50%;
    position: relative;
}

.page_step_borderbox_row .content_con .step03_box .step3_last_in .step3_last_col h3 {
    font-size: 25px;
    font-weight: bold;
    margin: 0;
    line-height: 1.2;
    margin-bottom: 10px;
}

.page_step_borderbox_row .content_con .step03_box .step3_last_in .step3_last_col p {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: -.05em;
}

.page_step_borderbox_row .content_con .step03_box .step3_last_in .step3_last_col .rightTop_text {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #3DB156;
    font-size: 12px;
    font-weight: bold;
    line-height: 1.2;
    white-space: normal;
    height: fit-content;
    writing-mode: vertical-rl;
    font-family: Roboto, sans-serif;
    display: flex;
    gap: 7px;
    /* align-items: center; */
    /* justify-content: center; */
    position: absolute;
    right: 30px;
    top: 30px;
}

.page_step_borderbox_row .content_con .step03_box .step3_last_in .step3_last_col .rightTop_text::before {
    content: "";
    content: "";
    width: 12px;
    height: 12px;
    background: #3DB156;
    border-radius: 50%;
}

.page_step_borderbox_row .content_con .step03_box .step3_imgText .text_col {}

.page_step_borderbox_row .content_con .step03_box .step3_imgText .text_col p {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.8;
}

.page_step_borderbox_row .content_con .step03_box .step3_imgText .text_col .comentIcon_flex {
    align-items: center;
    bottom: 0;
    display: flex;
    gap: 10px;
    /* position: absolute; */
    right: 0;
    width: fit-content;
    position: relative;
    gap: 20px;
    margin-left: auto;
    margin-top: 14px;
}

.page_step_borderbox_row .content_con .step03_box .step3_imgText .text_col .comentIcon_flex .coment {
    background: #fff;
    border: 1px solid #3db156;
    border-radius: 50px;
    height: fit-content;
    padding: 5px 20px 7px;
    position: relative;
}

.page_step_borderbox_row .content_con .step03_box .step3_imgText .text_col .comentIcon_flex .coment p {
    margin: 0;
    font-size: 14px;
    letter-spacing: .04em;
    color: #21B140;
    font-weight: 900;
    position: relative;
}

.page_step_borderbox_row .content_con .step03_box .step3_imgText .text_col .comentIcon_flex .coment::before {
    content: "";
    content: "";
    width: 0;
    height: 0;
    border-left: 14px solid #3DB156;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    position: absolute;
    right: -1px;
    top: 50%;
    transform: translate(100%, -50%);
    content: "";
    border-bottom: 5px solid transparent;
    border-top: 5px solid transparent;
    border-left: initial;
    border-right: 14px solid #3db156;
    left: -28px;
}

.page_step_borderbox_row .content_con .step03_box .step3_imgText .text_col .comentIcon_flex .coment::after {
    content: "";
    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%);
    border-left: initial;
    border-right: 14px solid #fff;
    left: -25px;
    border-bottom: 5px solid transparent;
    border-top: 5px solid transparent;
}

.page_step_borderbox_row .content_con .step03_box .step3_imgText .text_col .comentIcon_flex .imgs {
    display: flex;
}
.page_step_borderbox_row .content_con .step02_box .chiket_flex .chiket_col .box .img_box {
    display: flex;
    overflow: hidden;
    transform: translate(0px, 2px);
    max-height: 120px;
    height: 100%;
}

.page_step_borderbox_row .content_con .step02_box .chiket_flex .chiket_col .box .img_box img {
    object-fit: cover;
    object-position: top;
}
.page_step_borderbox_row .content_con .step03_box .step3_flex .step3_col .img_box {
    display: flex;
    overflow: hidden;
    border-radius: 20px 20px 0px 20px;
}
.title_row04 {
    position: relative;
    padding: 0 20px;
}

.title_row04 .title_box04 {
    position: relative;
    margin-bottom: 40px;
}

.title_row04 .title_box04 h2 {
    background: #F7F7F7;
    border-radius: 5px;
    padding: 10px 30px 14px;
    font-size: 38px;
    color: #212121;
    position: relative;
    line-height: 1.6;
    margin: 0;
}

.title_row04 .title_box04 h2::before {
    content: "";
    background: #3DB156;
    height: 40px;
    width: 6px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0%, -50%);
    border-radius: 10px;
}

.title_row04 .title_box04 p.sub_texts {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
    margin-top: 30px;
}
.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;
    padding-bottom: 55%;
    position: relative;
}

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;
    position: absolute;
    height: 100%;
    object-fit: cover;
}
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;
}

.human_interview_parts_row {
    width: fit-content;
    background: #EDFAF0;
    border-radius: 20px 20px 0px 20px;
    padding: 20px;
/*     max-width: 444px; */
  margin-bottom: 20px;
}

.human_interview_parts_row .flex_title {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.human_interview_parts_row .flex_title p.title_col {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: #393332;
}

.human_interview_parts_row .flex_img_text {
    display: flex;
    gap: 20px;
}

.human_interview_parts_row .flex_img_text .img_col {
    display: flex;
    height: fit-content;
}
.human_interview_parts_row .flex_img_text .img_col img {
    object-fit: contain;
/*     max-width: 100px;
    width: 100px; */
    min-width: 100px;
}
.human_interview_parts_row .flex_img_text .text_col p.names {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    color: #212121;
    line-height: 1.5;
}

.human_interview_parts_row .flex_img_text .text_col p.texts {
    font-size: 13px;
    color: #212121;
    line-height: 1.4;
    margin: 0;
}
.human_interview_parts_row .flex_title .img_col {
    display: flex;
    max-width: 100px;
}
.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;
    /* display: none; */
}

.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;
    /* background: #edfaf0; */
    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;
}
.case_h2_title01 {
    position: relative;
    padding-bottom: 20px;
    margin: 40px 0;
    margin-top: 60px;
}

.case_h2_title01 .flexboxs {
    display: flex;
    background: #3DB156;
    width: fit-content;
    position: relative;
    padding: 4px 24px 4px 4px;
    border-radius: 3px;
    gap: 6px;
    align-items: center;
    margin-bottom: 16px;
}

.case_h2_title01 .flexboxs .img_box {
    display: flex;
}

.case_h2_title01 .flexboxs p.labeltext {
    margin: 0;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
}

.case_h2_title01 .flexboxs::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(50%, -50%);
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
}

.case_h2_title01 h2 {
    font-size: 36px;
    font-weight: bold;
    line-height: 1.2;
    color: #393332;
    margin: 0;
}

.case_h2_title01::after {
    content: "";
    height: 4px;
    width: 100%;
    background: #3DB156;
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 10px;
}
.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;
}
.case_QA_parts01_con {
    position: relative;
}

.case_QA_parts01_con .case_QA_parts01_row {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 40px 0;
}

.case_QA_parts01_con .case_QA_parts01_row .case_Q_flex {
    display: flex;
    gap: 20px;
}

.case_QA_parts01_con .case_QA_parts01_row .case_Q_flex p.titles_Q {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
    color: #212121;
    margin-top: 20px;
}

.case_QA_parts01_con .case_QA_parts01_row .case_A_flex {
    display: flex;
    gap: 20px;
}

.case_QA_parts01_con .case_QA_parts01_row .case_A_flex p.titles_A {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #212121;
    line-height: 1.8;
}
.case_QA_parts01_con .case_QA_parts01_row .case_Q_flex .img_box {
    aspect-ratio: 80 / 80;
    width: 80px;
    display: flex;
    min-width: 80px;
    height: 80px;
}
.case_QA_parts01_con .case_QA_parts01_row .case_A_flex .img_box img{
    aspect-ratio: 80 / 80;
    width: 80px;
    display: flex;
    min-width: 80px;
    height: 80px;
    border: 1px solid #3DB156;
    border-radius: 50%;
}
.case_border {
    position: relative;
    width: 100%;
    height: 6px;
    border-radius: 10px;
    background: #f3f3f3;
    margin: 60px 0;
}
.case_info_row {
    position: relative;
    background: #fff;
    border: 1px solid #3DB156;
    border-radius: 20px 20px 0px 20px;
    overflow: hidden;
    margin: 60px 0;
}

.case_info_row .titles {
    background: #3DB156;
    display: flex;
    gap: 10px;
    padding: 16px 50px;
}

.case_info_row .titles h2 {
    margin: 0;
    color: #fff;
    font-size: 24px;
    line-height: 1.2;
}

.case_info_row .titles .icon {
    display: flex;
}

.case_info_row .titles .icon img {
    aspect-ratio: 23 / 28;
    width: 23px;
}

.case_info_row .conten {
    padding: 40px 50px;
}

.case_info_row .conten table {
    width: 100%;
    border: none;
    border-collapse: collapse;
    border: none;
}

.case_info_row .conten table tr {
    border-top: 1px solid #DEDEDE;
}

.case_info_row .conten table tr th,.case_info_row .conten table tr td {
    border: none;
    padding: 20px 0;
    color: #212121;
}

.case_info_row .conten table tr:last-of-type {
    border-bottom: 1px solid #DEDEDE;
}

.case_info_row .conten table tr th {
    text-align: left;
    font-size: 16px;
    font-weight: bold;
    padding-right: 10px;
    width: 10%;
    min-width: 90px;
}

.case_info_row .conten table tr td {
    font-size: 16px;
    font-weight: 500;
    width: 90%;
}

.case_info_row .conten table tr th a {
    color: #3DB155 !important;
}

.case_info_row .conten table tr td a {
    color: #006BE6;
    text-decoration: underline;
    transition: .3s;
}

.case_info_row .conten table tr td a:hover {
    opacity: .7;
}
.blogcase_con .blogcase_sec .title_row04 {
    padding: 0;
}
.blogcase_con .blogcase_sec article.list_page_row {
    padding: 0;
}
.blogcase_con .blogcase_sec article.list_page_row .in_row {}

.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;
    /* line-height: 1; */
}

.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, .blogcase_con .blogcase_sec .content_in span#hs_cos_wrapper_post_body div 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, .blogcase_con .blogcase_sec .content_in span#hs_cos_wrapper_post_body div 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;
}
.blob_in_download01_row {
    position: relative;
    overflow: hidden;
    border-radius: 40px 40px 0px 40px;
    padding: 40px;
    margin: 60px 0;
    display: none;
}
.blob_in_download01_row.disblocks {
    display: block;
}
.blob_in_download01_row .back_img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.blob_in_download01_row .back_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blob_in_download01_row .flex_box {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.blob_in_download01_row .flex_box .img_col {
    display: flex;
    height: fit-content;
    width: 44%;
}

.blob_in_download01_row .flex_box .img_col img {
    width: 100%;
}

.blob_in_download01_row .flex_box .text_col {
    width: 57%;
}

.blob_in_download01_row .flex_box .text_col .titles {
    font-size: 32px;
    color: #fff;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 10px;
}

.blob_in_download01_row .flex_box .text_col .texts {
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
}

.blob_in_download01_row .btn_area_con {
    background: #fff;
    border-radius: 20px 20px 0px 20px;
    padding: 30px 20px;
}

.blob_in_download01_row .btn_area_con h2 {
    margin: 0;
    text-align: center;
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 10px;
}

.blob_in_download01_row .btn_area_con p {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
    margin: 0;
    margin-bottom: 16px;
}

.blob_in_download01_row .btn_area_con .download_btn {
    position: relative;
}

.blob_in_download01_row .btn_area_con .download_btn a {
    background: #F70029;
    color: #fff;
    max-width: 433px;
    display: flex;
    height: 80px;
    margin: 0 auto;
    border-radius: 100px;
    justify-content: center;
    align-items: center;
    gap: 17px;
    transition: .3s;
}

.blob_in_download01_row .btn_area_con .download_btn a span {
    font-size: 20px;
    font-weight: bold;
}

.blob_in_download01_row .btn_area_con .download_btn a .icon {
    background: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: relative;
}

.blob_in_download01_row .btn_area_con .download_btn a .icon::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 9px solid #f70029;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.blob_in_download01_row .btn_area_con .download_btn a:hover {
    opacity: .7;
}
.blob_in_download02_row {
    position: relative;
    overflow: hidden;
    border-radius: 40px 40px 0px 40px;
    padding: 40px;
    margin: 60px 0;
  display: none;
}
.blob_in_download02_row.disblocks {
  display: block;
}

.blob_in_download02_row .back_img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.blob_in_download02_row .back_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blob_in_download02_row h2 {
    text-align: center;
    color: #fff;
    font-size: 38px;
    line-height: 1.2;
}

.blob_in_download02_row ul {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 35px;
}

.blob_in_download02_row ul li {
    list-style: none;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}

.blob_in_download02_row .flex_area_box {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
}

.blob_in_download02_row .flex_area_box .col_box {
    background: #fff;
    border-radius: 20px 20px 0px 20px;
    padding: 26px 20px 20px;
}

.blob_in_download02_row .flex_area_box .col_box h3 {
    margin: 0;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #212121;
    margin-bottom: 13px;
}

.blob_in_download02_row .flex_area_box .col_box p {
    margin: 0;
    font-size: 16px;
    text-align: center;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 20px;
}

.blob_in_download02_row .flex_area_box .col_box .download_btn {}

.blob_in_download02_row .flex_area_box .col_box .download_btn a {
    height: 80px;
    max-width: 280px;
    background: #fff;
    border: 1px solid #D5D5D5;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    font-size: 20px;
    font-weight: bodl;
    font-weight: bold;
    color: #393332;
    transition: .3s;
}

.blob_in_download02_row .flex_area_box .col_box .download_btn a:hover {
    opacity: .7;
}
.blob_in_download02_row .flex_area_box .col_box .contact_btn {}

.blob_in_download02_row .flex_area_box .col_box .contact_btn a {
    height: 80px;
    max-width: 280px;
    background: #F70029;
    border: 1px solid #D5D5D5;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    font-size: 20px;
    font-weight: bodl;
    font-weight: bold;
    color: #fff;
    transition: .3s;
    gap: 17px;
}

a {}

.blob_in_download02_row .flex_area_box .col_box .contact_btn a .icon {
    background: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: relative;
}

.blob_in_download02_row .flex_area_box .col_box .contact_btn a .icon::after {
    content: "";
    content: "";
    width: 0;
    height: 0;
    border-left: 9px solid #f70029;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.blob_in_download02_row .flex_area_box .col_box .contact_btn a:hover {
    opacity: .7;
}
.blogcase_con .flex_con_in .sideright_sec .side_banner {
    display: flex;
    margin-top: 20px;
}

.blogcase_con .flex_con_in .sideright_sec .side_banner img {
    width: 100%;
  margin-bottom: 30px;
}
.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;
}
.UsageByIndustry_row {
    padding: 0 20px;
    position: relative;
    overflow: hidden;
}

.UsageByIndustry_row .in_row {
    background: #EDFAF0;
    border-radius: 30px 30px 0px 30px;
    padding: 60px 70px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px 10px;
    position: relative;
}
.UsageByIndustry_row .in_row .backimgs01 {
    display: flex;
    position: absolute;
    left: -50px;
    top: 25%;
}

.UsageByIndustry_row .in_row .backimgs01 img {
    width: 100%;
}
.UsageByIndustry_row .in_row .UsageByIndustry_col {
    position: relative;
}

.UsageByIndustry_row .in_row .UsageByIndustry_col a {
    display: flex;
    background: #fff;
    border-radius: 100px;
    align-items: center;
    padding: 10px;
    gap: 20px;
    position: relative;
    box-shadow: 3px 4px 5px #D0E9D6;
    transition: .3s;
    padding-right: 36px;
}

.UsageByIndustry_row .in_row .UsageByIndustry_col a p.texts {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    line-height: 1.2;
    color: #393332;
}

.UsageByIndustry_row .in_row .UsageByIndustry_col a .img_box {
    display: flex;
}

.UsageByIndustry_row .in_row .UsageByIndustry_col a .icon {
    position: absolute;
    right: 20px;
    display: flex;
}

.UsageByIndustry_row .in_row .UsageByIndustry_col a:hover {
    opacity: .7;
}
.CaseStudiesByTicketType_row {
    position: relative;
    overflow: hidden;
    padding: 0 20px;
}

.CaseStudiesByTicketType_row .in_row {
    position: relative;
    display: flex;
    padding: 60px 20px 0px;
    background: #e8f8ed;
    border-radius: 20px 20px 0px 20px;
    width: 100%;
    background-image: repeating-linear-gradient(45deg, #f1faf4, #f1faf4 7px, transparent 0, transparent 14px);
    justify-content: center;
    gap: 4px;
    row-gap: 10px;
    flex-wrap: wrap;
    position: relative;
}
.CaseStudiesByTicketType_row .in_row .backimgs {
    position: absolute;
    right: -60px;
    top: 30px;
    display: flex;
}

.CaseStudiesByTicketType_row .in_row .backimgs img {
    width: 100%;
}
.CaseStudiesByTicketType_row .in_row .CaseStudiesByTicketType_col {
    aspect-ratio: 157 / 149;
    width: 157px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.CaseStudiesByTicketType_row .in_row .CaseStudiesByTicketType_col p {
    font-size: 20px;
    color: #fff;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
    margin: 0;
}
.CaseStudiesByTicketType_row .in_row .CaseStudiesByTicketType_col a {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    transition: .3s;
}
.CaseStudiesByTicketType_row .in_row .CaseStudiesByTicketType_col 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;
}
.CaseStudiesByTicketType_row .in_row .backimgs02 {
    position: absolute;
    left: -100px;
    bottom: 0px;
    display: flex;
}

.CaseStudiesByTicketType_row .in_row .backimgs02 img {
    width: 100%;
}
.UsageByIndustry_row .in_row .backimgs02 {
    display: flex;
    position: absolute;
    right: -130px;
    top: 55%;
}

.UsageByIndustry_row .in_row .backimgs02 img {
    width: 100%;
}
.pagination {
    margin-top: 50px;
}
.blog-index {
    padding: 0 !important;
}
.top_step_sec.addpages {
    background: none;
    border-radius: 0;
}

.top_step_sec.addpages .w110 {
    background: #edfaf0;
    border-radius: 40px 40px 0px 40px;
    background-image: repeating-linear-gradient(45deg, #ffffff, #fff 7px, transparent 0, transparent 14px);
    padding-bottom: 50px;
}

#hs_cos_wrapper_widget_1761290217465 .top_step_sec.addpages .w110 .top_step_row {
}

.top_step_sec.addpages .w110 .top_step_row {}

.top_step_sec.addpages .w110 .top_step_row .round.step05 {
    background: #3DB156;
}
.new_background_decoration01 {
    position: relative;
    max-width: 1920px;
    width: 100%;
    overflow-x: clip;
    z-index: 1;
}
/* .new_background_decoration01 {
    position: absolute;
    max-width: 1920px;
    width: 100%;
    overflow-x: clip;
    top: 0;
    height: 0;
    left: 50%;
    transform: translate(-50%, 0px);
} */
.new_background_decoration01 .w110 {
    position: relative;
}
.new_background_decoration01 img {
    position: absolute;
}
.choose_linket_row {
    position: relative;
    padding: 0 20px;
}

.choose_linket_row .in_row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
}

.choose_linket_row .in_row .choose_linket_col {
    position: relative;
}

.choose_linket_row .in_row .choose_linket_col .subtitle {
    font-weight: bold;
    color: #1FB640;
    text-align: center;
    font-size: 20px;
    text-decoration: underline;
    line-height: 1.2;
    margin-bottom: 6px;
}

.choose_linket_row .in_row .choose_linket_col h3 {
    color: #212121;
    font-size: 24px;
    text-align: center;
    line-height: 1.4;
    margin: 0;
    margin-bottom: 20px;
}

.choose_linket_row .in_row .choose_linket_col .img_box {
    display: flex;
    margin-bottom: 25px;
    overflow: hidden;
    border-radius: 40px 40px 0px 40px;
}

.choose_linket_row .in_row .choose_linket_col p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
    color: #212121;
}
.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 40px 12px 15px;
    display: flex;
    gap: 25px;
    /* border: 1px solid #3DB156; */
}

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

img {}

.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;
}
.index_nones {
    display: none !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;
  }
  .price_sec .price_row .price_col .right_bottom_img {
    max-width: 120px;
    max-height: 120px;
    position: absolute;
    right: -22px;
    bottom: -22px;
}
.UsageByIndustry_row.addtile_ver {
    position: relative;
}
.UsageByIndustry_row.addtile_ver .titles_station h2 {
    background: #3db156;
    color: #fff;
    text-align: center;
    font-size: 32px;
    margin: 0;
    border-radius: 30px 30px 0px 0px;
    padding: 21px 20px;
}

.UsageByIndustry_row.addtile_ver .in_row {
    border-radius: 0px 0px 30px 30px;
}
.newFunctionality_row {
    position: relative;
    padding: 0 20px;
}

.newFunctionality_row .flexs_row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.newFunctionality_row .flexs_row .newFunctionality_col {
    border: 1px solid #1FB640;
    border-radius: 40px 40px 0px 40px;
    padding: 30px 20px;
    position: relative;
    display: flex;
    column-gap: 20px;
    align-items: center;
      background: #e9f8ed;
  background-image: repeating-linear-gradient(45deg, #ecf9f0, #ecf9f0 7px, transparent 0, transparent 14px);
}
.newFunctionality_row .flexs_row .newFunctionality_col .imgss_col {
    min-width: 150px;
}

.newFunctionality_row .flexs_row .newFunctionality_col .tips_toptext {
    position: absolute;
    background: #666;
    color: #fff;
    border-radius: 5px;
    padding: 3px 13.5px 5px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.newFunctionality_row .flexs_row .newFunctionality_col h3 {
    font-size: 22px;
    font-weight: bold;
    color: #212121;
    margin: 0;
}

.newFunctionality_row .flexs_row .newFunctionality_col .img_box {
    max-width: 150px;
    margin: 0 auto;
    display: flex;
}

.newFunctionality_row .flexs_row .newFunctionality_col p {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
    margin: 0;
    margin-top: 10px;
}
.pagination .pagination__link.pagination__link--prev .pagination__link-icon svg path {
    fill: #fff;
}
.IntroductionFlow_row {
    position: relative;
    padding: 0 20px;
}

.IntroductionFlow_row .flexs_row {
    display: flex;
    gap: 30px;
    padding-top: 20px;
    flex-wrap: wrap;
}

.IntroductionFlow_row .flexs_row .IntroductionFlow_col {
    width: 158px;
    position: relative;
}

.IntroductionFlow_row .flexs_row .IntroductionFlow_col .img_con {
    background: #EDFAF0;
    border-radius: 20px 20px 0px 20px;
    padding: 20px;
    position: relative;
}

.IntroductionFlow_row .flexs_row .IntroductionFlow_col .img_con .img_box {
    border-radius: 20px;
    overflow: hidden;
    display: flex;
}

.IntroductionFlow_row .flexs_row .IntroductionFlow_col .num {
    background: #1FB640;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #FFFF00;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.IntroductionFlow_row .flexs_row .IntroductionFlow_col h3 {
    font-size: 18px !important;
    font-weight: bold;
    text-align: center;
    margin-top: 14px;
    color: #1FB640;
    line-height: 1.5;
  margin-bottom: 0px;
}

.IntroductionFlow_row .flexs_row .IntroductionFlow_col:not(:first-of-type) .img_con::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 10px solid #ccc;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    top: 50%;
    left: -10px;
    transform: translate(-100%, -50%);
}
.tickettype_row {
    position: relative;
}

.tickettype_row .in_row {
    display: flex;
    flex-wrap: wrap;
    background: #EDFAF0;
    padding: 30px 20px;
    gap: 10px;
    border-radius: 10px;
}

.tickettype_row .in_row .tickettype_col {
    position: relative;
    overflow: hidden;
}

.tickettype_row .in_row .tickettype_col a {
    background: #fff;
    display: flex;
    border: 2px solid #3DB156;
    border-radius: 10px;
    min-width: 204px;
    max-width: 204px;
    justify-content: center;
    align-items: center;
    min-height: 150px;
    color: #212121;
    padding: 20px;
    transition: .3s;
}
.tickettype_row .in_row .tickettype_col a:hover {
  opacity: .7;
}
.tickettype_row .in_row .tickettype_col a p {
    margin: 0;
}

.tickettype_row .in_row .tickettype_col a p {
    font-weight: bold;
}

.tickettype_row .in_row .tickettype_col::after {
    content: "";
    width: 30px;
    height: 30px;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 0;
    left: 50%;
    background: #edfaf0;
    border-radius: 50%;
    border: 2px solid #3DB156;
}
.headertopbanner {
    background: #f5f5f5;
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    text-align: center;
    font-weight: bold;
    line-height: 1.4;
    color: #fff;
    background: #3db156;
  margin-bottom: 20px;
}
.headertopbanner br{
    display: none;
}
.is-hidden{
  display:none;
}
.headertopbanner a {
    color: #fff;
    font-weight: bold;
    text-decoration: underline;
  transition: .3s;
}
.headertopbanner a:hover {
  opacity: .7;
    color: #fff;
}
.body-container--form .page-form form fieldset > div > label {
    background: #e8fbec;
    font-weight: bold;
    padding: 10px;
    margin-right: 8px;
    margin-top: 10px;
}
.privacy_content_row {
    position: relative;
    padding: 0 20px;
}
.privacy_content_row .incontent {
    position: relative;
}
.privacy_content_row .incontent > div > h2 {
    background: #F5F5F5;
    border-radius: 5px;
    padding: 9px 20px 13px;
    font-size: 30px;
    color: #212121;
    position: relative;
    line-height: 1.6;
    margin: 0;
    margin: 50px 0 30px;
}
.privacy_content_row .incontent > div > h2::before {
    content: "";
    background: #3DB156;
    height: 40px;
    width: 6px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0%, -50%);
    border-radius: 10px;
}
.privacy_content_row .incontent > div > p {
    margin: 30px 0;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.7;
}
.privacy_content_row .incontent > div > ul {
    margin: 0;
}
.privacy_content_row .incontent > div > ul li {
    font-size: 16px;
}
.privacy_content_row .incontent > div > ul li p {
    margin: 0;
    font-size: 16px;
}
.privacy_content_row .incontent > div a {
    color: #3db156;
    transition: .3s;
}
.privacy_content_row .incontent > div a:hover {
    opacity: .7;
}
.price_sec .price_row .price_col .titletexts {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.3;
    margin: 0;
    margin-bottom: 30px;
}
.price_inTOPtotitles_row {
    position: relative;
    padding-top: 60px;
}
.price_inTOPtotitles_row h3 {
    text-align: center;
    margin: 0;
}
.price_inTOPbobtn_row {
    position: relative;
    margin-top: -40px;
    padding-bottom: 70px;
}
.price_inTOPbobtn_row .pricemore_btn_row {
    position: relative;
}
.price_inTOPbobtn_row .pricemore_btn_row a {
    background: #212121;
    color: #fff;
    border-radius: 70px;
    width: 258px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 52px;
    margin: 0 auto;
    transition: .3s;
}
.price_inTOPbobtn_row .pricemore_btn_row a:hover {
    opacity: .7;
}
.scene_sec .scene_row .scene_col a {
    color: #212121;
    transition: .3s;
}

.scene_sec .scene_row .scene_col a:hover {
    opacity: .7;
}


.companysTable_row {
    position: relative;
    padding: 0 20px;
}
.companysTable_row .companysTable_box {
    position: relative;
}
.companysTable_row .companysTable_box table {
    border: none;
    background: none;
    width: 100%;
    margin: 0;
}
.companysTable_row .companysTable_box table tr {
    display: flex;
    margin-bottom: 10px;
    background: #fff;
    border-radius: 10px;
    padding: 24px 0px;
    border: 1px solid #ccc;
}
.companysTable_row .companysTable_box table tr th {
    min-width: 220px;
    text-align: justify;
    border-right: 1px solid rgb(134 134 134 / 20%) !important;
    font-size: 16px;
      font-weight: bold;
}
.companysTable_row .companysTable_box table tr td {
    font-size: 16px;
    font-weight: 500;
}
.companysTable_row .companysTable_box table tr th,
.companysTable_row .companysTable_box table tr td {
    border: none;
    padding: 0;
    padding: 0 30px;
}
.companysTable_row .companysTable_box table tr td .pts02 {
    position: relative;
    display: flex;
    column-gap: 50px;
    display: none;
    margin-top: 10px;
}
.companysTable_row .companysTable_box table tr td .pts02.disone {
    display: flex;
}
.companysTable_row .companysTable_box table tr td .pts02 .flexsin {
    display: flex;
    column-gap: 30px;
}
.companysTable_row .companysTable_box table tr td .pts02 .flexsin .tttls {
    font-size: 14px;
    font-weight: 500;
}
.companysTable_row .companysTable_box table tr td .pts02 .flexsin .tttex {
    font-size: 14px;
    font-weight: 500;
}
.companysTable_row .companysTable_box table tr td a {
    font-size: 16px;
    color: var(--black);
    font-weight: 500;
    text-decoration: underline;
    transition: .3s;
}
.companysTable_row .companysTable_box table tr td a:hover {
    opacity: .7;
}
.CaseStudiesByTicketType_row .in_row .CaseStudiesByTicketType_col.nonedisone a {
    pointer-events: none;
}
.tickettype_row .in_row .tickettype_col.nonedisone a {
    pointer-events: none;
}
.case_sec .case_row ul li a .daytime {
    min-width: 130px;
}
.scene_sec .scene_row .scene_col.nonedisone a {
    pointer-events: none;
}
.body-container--form .page-form form fieldset > div > .hs-richtext p a {
    color: #3db156;
}
.pagination {
    align-items: center;
    display: flex;
    flex-direction: row !important;
    justify-content: center;
  flex-wrap: wrap;
  row-gap: 10px;
}
.blogcase_con .blogcase_sec a {
    color: #3db156;
}
/* ---------------------------他ページ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) {
header .header_content .cta_box .RequestCatalog01 a {
    background: #fff;
    width: 100%;
    margin: 20px 0 20px;
}
  header .header_content .cta_box .mail_box01 a {
    width: 100%;
}
}

@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;
    }
.price_sec .price_row .price_col .planprice {
    flex-wrap: wrap;
}
    .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%;
    }

    .top_step_sec .top_step_row .round.step02 .in .titles {
        font-size: 20px;
    }

    .top_step_sec .top_step_row .in .flex .flex_in {
        padding: 3px 5px 6px;
    }

    .top_step_sec .top_step_row .round.step03 .in .titles {
        font-size: 24px;
    }

    .top_step_sec .top_step_row .round.step04 .in .titles {
        font-size: 18px;
    }

    .top_step_sec .top_step_row .round.step05 .in .titles {
        font-size: 34px;
    }

    .top_step_sec .top_step_row .round.step02 .in .flex .flex_in {
        padding: 3px 3px 6px;
    }

    .top_step_sec .top_step_row .round.step01 .titles {
        font-size: 26px;
    }

    .top_step_sec h2 {
        font-size: 30px;
    }

    .top_step_sec .top_step_row .round.step04::before {
        top: 19px;
        left: -22px;
    }

    .top_step_sec .top_step_row .round.step04::after {
        left: -30px;
        top: 38px;
    }

    .top_step_sec .top_step_row .round.step03::before {
        left: -28px;
    }

    .top_step_sec .top_step_row .round.step03::after {
        left: -37px;
    }

    .top_step_sec .top_step_row .round.step02 .in .flex {
        justify-content: center;
    }

    .top_step_sec .top_step_row .round.step02::before {
        right: 55px;
    }

    .top_step_sec .top_step_row .round.step02::after {
        right: 46px;
    }

    .top_step_sec .top_step_row .round.step01::before {
        bottom: 62px;
    }

    .top_step_sec .top_step_row .round.step01::after {
        bottom: 77px;
    }

    .topPoint_sec .topPoint_row .text_col .titles h2 {
        /* font-size: 25px; */
        line-height: 1;
    }

    .topPoint_sec .topPoint_row .text_col .titles h2 span {
        font-size: 26px;
    }

    .titles_box01 h2 {
        font-size: 30px;
    }

    .topMerit_sec .topMerit_row .topMerit_col .titles h3 {
        font-size: 18px;
    }

    .topMerit_sec .topMerit_row .topMerit_col .fuki {
        font-size: 14px;
    }

    .topMerit_sec .topMerit_row .topMerit_col .texts p {
        font-size: 14px;
    }

    .price_sec .price_row .price_col .planprice .price {
        font-size: 40px;
    }

    .price_sec .price_row .price_col .titleplans p {
        font-size: 16px;
    }

    .price_sec .price_row .price_col .titletexts p {
        font-size: 16px;
    }

    .price_sec .price_row .price_col .lists ul li {
        font-size: 14px;
    }

    .price_sec .price_row .price_col {
        padding: 30px 30px 20px;
    }

    .scene_sec .scene_row {
        margin-left: 0;
    }

    .price_sec .price_row .price_col .plantopright {
        right: 20px;
    }

    .scene_sec .scene_row .scene_col p {
        font-size: 15px;
    }

    .favorite_sec .favorite_row {
        gap: 20px;
    }

    .favorite_sec .favorite_row .left_list_col {
        gap: 10px;
    }

    .favorite_sec .favorite_row .left_list_col .flex_content .text p {
        font-size: 16px;
        line-height: 1.5;
    }

    .favorite_sec .favorite_row .left_list_col .flex_content .imgs {
        max-width: 50px;
    }

    .favorite_sec .favorite_row .text_btn_col .titles_con h2 {
        font-size: 34px;
    }

    .favorite_sec .comentIcon_flex .imgs {
        width: 80px;
    }

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

    .cta_sec .cta_row h2 {
        font-size: 28px;
    }
.mv_pages .page-ttl {
    font-size: 40px;
}

.anker_nav_row ul {
    gap: 20px;
}

.anker_nav_row ul li a {
    font-size: 15px;
}

.page_point_row .in_row .page_point_col h3 {
    font-size: 18px;
}

.title_row03 .title_box03 h2 {
    font-size: 28px;
}

.title_row03 .title_box03 .fuki {
    font-size: 20px;
}

.page_Operationpoint_row .in_row .page_Operationpoint_con .right_col .pay_flex {
    grid-template-columns: 1fr 1fr 1fr;
}

.page_Operationpoint_row .in_row .page_Operationpoint_con .text_col h3 {
    font-size: 23px;
}

.page_Operationpoint_row .in_row .page_Operationpoint_con .text_col .subtitle {
    font-size: 16px;
}

.page_Operationpoint_row .in_row .page_Operationpoint_con .right_col .pay_flex .pay p {
    font-size: 13px;
}

.text_image_flex_parts02_row .flex_in {
    align-items: flex-start;
    gap: 20px;
}

.text_image_flex_parts02_row .flex_in .img_col {
    width: 50%;
}

.text_image_flex_parts02_row .flex_in .text_col h3 {
    font-size: 22px;
}
.page_Operationpoint_row .in_row .page_Operationpoint_con .right_col .colum2_box .colum_flex p {
    font-size: 18px;
}
.page_linket_future_row .in_row .page_linket_future_col h3 {
    font-size: 18px;
}

.page_step_borderbox_row .content_con .step01_box .flex_in .text_col h3 {
    /* font-size: 26px; */
    margin-bottom: 20px;
}

.page_step_borderbox_row .content_con .step01_box .flex_in .text_col p.text {
    /* font-size: 14px; */
}

.page_step_borderbox_row .content_con .titles h2 {
    font-size: 36px;
}

.page_step_borderbox_row .content_con .step01_box .flex_in .pay_col .pay_list p {
    font-size: 12px;
}

.page_step_borderbox_row .content_con .step01_box .flex_in .pay_col .pay_list {
    padding: 20px 5px 10px;
}

.page_step_borderbox_row .content_con .step03_box .step3_flex .step3_col h3 {
    font-size: 17px;
}

.page_step_borderbox_row .content_con .step03_box {
    padding: 40px 20px;
}

.page_step_borderbox_row .content_con .step03_box .step3_last_in .step3_last_col h3 {
    font-size: 20px;
}

.page_step_borderbox_row .content_con .step03_box .step3_last_in .step3_last_col p {
    font-size: 14px;
}

.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;
}
.UsageByIndustry_row .in_row {
    padding: 60px 20px;
}

.UsageByIndustry_row .in_row .UsageByIndustry_col a p.texts {
    font-size: 14px;
}

.UsageByIndustry_row .in_row .UsageByIndustry_col a .img_box {
    width: 30%;
}

.UsageByIndustry_row .in_row .UsageByIndustry_col a {
    gap: 10px;
}
    /* ---------------------------タブレット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) {
    .price_sec .price_row {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
        margin: 0 auto;
    }

    .favorite_sec .favorite_row {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .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: 14px; */
        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;
    }

    .top_step_sec h2 {
        font-size: 20px !important;
        margin: 0 0 50px;
    }

    .top_step_sec .top_step_row .round.step01 {
        width: 60%;
        margin-bottom: 20px;
    }

    .top_step_sec .top_step_row .round {
        position: relative;
    }

    .top_step_sec .top_step_row .round.step01 .titles {
        font-size: 20px;
    }

    .top_step_sec .top_step_row {
        max-width: 300px;
        aspect-ratio: initial;
    }

    .top_step_sec .top_step_row .round.step01 .flex .flex_in {
        font-size: 14px;
    }

    .top_step_sec .top_step_row .round.step02 {
        width: 60%;
        /* left: initial; */
        right: initial;
        transform: initial;
        /* left: 0; */
        margin-left: auto;
    }

    .top_step_sec .top_step_row .round.step02 .in .flex .flex_in {
        padding: 5px;
        border: 2px solid #fff;
    }

    .top_step_sec .top_step_row .round.step02 .in .titles {
        font-size: 20px;
    }

    .top_step_sec .top_step_row .round.step02 .in .flex {
        justify-content: center;
    }

    .top_step_sec .top_step_row .round.step03 {
        width: 60%;
    }

    .top_step_sec .top_step_row .round.step03 .in .titles {
        font-size: 20px;
    }

    .top_step_sec .top_step_row .round.step04 {
        width: 60%;
        left: initial;
        right: initial;
        margin-left: auto;
    }

    .top_step_sec .top_step_row .round.step04 .in .titles {
        font-size: 18px;
    }

    .top_step_sec .top_step_row .round.step05 {
        width: 80%;
        margin: 0 auto;
        margin-top: 60px;
    }

    .top_step_sec .top_step_row .round.step05 .in .img_box img {
        width: 100%;
    }

    .top_step_sec .top_step_row .round.step05 .in .titles {
        font-size: 26px;
        /* margin: 0 auto; */
        /* left: initial; */
        /* right: initial; */
    }

    .top_step_sec .top_step_row .round.step01::before {
        bottom: -20%;
        right: 30%;
        transform: rotate(-25deg);
    }

    .top_step_sec .top_step_row .round.step01::after {
        transform: rotate(-26deg);
        right: 24%;
        bottom: -14%;
    }

    .top_step_sec .top_step_row .round.step02::before {
        right: 87%;
        bottom: -21%;
        transform: rotate(35deg);
    }

    .top_step_sec .top_step_row .round.step02::after {
        right: 80%;
        transform: rotate(40deg);
        bottom: -11%;
    }

    .top_step_sec .top_step_row .round.step03::before {
        bottom: -19%;
        transform: rotate(-40deg);
        left: 90%;
    }

    .top_step_sec .top_step_row .round.step03::after {
        transform: rotate(-40deg);
        left: 82%;
        bottom: -7%;
    }

    .top_step_sec .top_step_row .round.step04::before {
        top: 100%;
        transform: rotate(15deg);
        left: 31%;
    }

    .top_step_sec .top_step_row .round.step04::after {
        top: 110%;
        left: 25%;
        transform: rotate(18deg);
    }

    .top_step_sec {
        padding: 40px 20px 50px;
        border-radius: 30px 30px 0px 30px;
    }

    .topPoint_sec .topPoint_row {
        flex-direction: column;
        max-width: 400px;
        margin: 0 auto;
        gap: 20px;
        margin-bottom: 60px;
    }

    .topPoint_sec .topPoint_row .img_col {
        width: 100%;
    }

    .topPoint_sec .topPoint_row .img_col .img_box {
        border-radius: 30px 30px 0 30px;
    }

    .topPoint_sec .topPoint_row .text_col {
        width: 100%;
    }

    .topPoint_sec .topPoint_row .text_col .titles h2 span {
        font-size: 20px !important;
    }

    .topPoint_sec .topPoint_row .text_col .texts p {
        font-size: 14px !important;
    }

    .topPoint_sec .topPoint_row .text_col .titles {
        margin-bottom: 10px;
    }

    .topPoint_sec .topPoint_row .img_col .comentIcon_flex .coment p {
        font-size: 13px;
        line-height: 1.5;
    }

    .topPoint_sec {
        padding: 250px 20px 60px;
    }

    .topMerit_sec .topMerit_row {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
        gap: 30px;
    }

    .topMerit_sec .topMerit_row .topMerit_col .titles h3 {
        font-size: 18px !important;
    }

    .topMerit_sec .topMerit_row .topMerit_col .fuki {
        font-size: 14px !important;
    }

    .titles_box01 {
        margin-bottom: 20px;
    }

    .topMerit_sec {
        padding-top: 60px;
    }

    .starts_whiteround_sec::before {}

    .starts_whiteround_sec::after {
        border-radius: 40px 40px 0px 0;
    }

    .topMerit_sec .topMerit_row .topMerit_col .texts p {
        font-size: 14px;
        margin-top: 20px;
    }

    .price_sec {
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 60px;
    }

    .price_sec h3 {
        font-size: 16px !important;
        margin-bottom: 30px;
    }

    .topMerit_sec .top_merit_bottom_imgs {
        bottom: -6%;
        width: 100px;
    }

    .price_sec .price_row .price_col .titletexts p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .price_sec .price_row .price_col {
        border-radius: 30px 30px 0 30px;
        padding: 30px 30px 10px;
    }

    .price_sec .price_row .price_col .titleplans p {
        font-size: 20px;
    }

    .price_sec .price_row .price_col .lists ul li {
        font-size: 16px;
    }

    .price_sec .pricemore_btn_row a {
        font-size: 14px;
    }

    .price_bottom_sec .price_bottom_row .flex_in {
        flex-direction: column;
        gap: 20px;
        max-width: 400px;
        margin: 0 auto;
    }

    .price_bottom_sec .price_bottom_row .flex_in .img_col {
        width: 100%;
    }

    .price_bottom_sec .price_bottom_row .flex_in .text_col {
        width: 100%;
    }

    .price_bottom_sec .price_bottom_row {
        border-radius: 30px 30px 0 30px;
        padding: 60px 20px;
    }

    .price_bottom_sec .price_bottom_row .flex_in .text_col h2 {
        font-size: 20px !important;
    }

    .price_bottom_sec .price_bottom_row .flex_in .text_col p {
        font-size: 14px;
    }

    .price_bottom_sec .price_bottom_row .comentIcon_flex {
        bottom: -54px;
    }

    .cta_sec .cta_row h2 {
        font-size: 20px !important;
        margin-bottom: 20px;
    }

    .cta_sec .cta_row>p {
        font-size: 14px;
        text-align: justify;
        margin-bottom: 30px;
    }

    .cta_sec .cta_row .cta_flex {
        flex-direction: column;
        gap: 20px;
        max-width: 400px;
        margin: 0 auto;
    }

    .cta_sec {
        border-radius: 30px 30px 0 30px;
        padding: 60px 20px 60px;
    }

    .cta_sec .cta_row .cta_flex .cta_col h3 {
        font-size: 16px !important;
    }

    .cta_sec .cta_row .cta_flex .cta_col p {
        font-size: 13px;
    }

    .cta_sec .cta_row .cta_flex .cta_col {
        padding: 20px 14px 20px;
    }

    .cta_sec .cta_row .cta_flex .cta_col .materials_btn a {
        font-size: 16px;
        height: 60px;
    }

    .cta_sec .cta_row .cta_flex .cta_col .contacts_btn a {
        height: 60px;
        font-size: 16px;
        width: 220px;
    }

    .scene_sec {
        padding-top: 60px;
    }

    .scene_con {
        margin-top: 30px;
    }

    .scene_sec .scene_row {
        gap: 20px;
    }

    .scene_sec .scene_row .scene_col .img_box {
        border-radius: 20px 20px 0px 20px;
    }

    .scene_sec .scene_row .scene_col h3 {
        font-size: 18px !important;
    }

    .scene_sec .scene_row .scene_col p {
        font-size: 14px;
    }

    .scene_sec .scene_con .scene_in .swiper-scrollbar {
        margin-top: 30px;
    }

    .favorite_sec .favorite_row .left_list_col {
        width: 100%;
        margin-top: 0;
    }

    .favorite_sec .favorite_row .left_list_col .flex_content a{
        flex-direction: column;
        padding: 20px 10px;
      height: 100%;
    }

    .favorite_sec .favorite_row .left_list_col .flex_content .text p {
        font-size: min(16px, 3.7vw);
    }

    .favorite_sec .favorite_row .left_list_col .flex_content .imgs {
        max-width: 70px;
    }

    .favorite_sec .favorite_row .text_btn_col .content_btn {
        margin-top: 20px;
    }

    .favorite_sec .favorite_row .text_btn_col .content_btn a {
        font-size: 14px;
    }

    .favorite_sec .w110 {
        padding-top: 60px;
        padding-bottom: 100px;
    }

    .favorite_sec .comentIcon_flex .imgs {
        width: 80px;
    }

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

    .favorite_sec {
        margin-bottom: 100px;
    }

    .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;
    }
.page_Operationpoint_row .in_row .page_Operationpoint_con {
    flex-direction: column;
    padding: 40px 30px;
}

.page_Operationpoint_row .in_row .page_Operationpoint_con .text_col {
    width: 100%;
}

.page_Operationpoint_row .in_row .page_Operationpoint_con .right_col {
    width: 100%;
}

.page_Operationpoint_row .in_row .page_Operationpoint_con .right_col .point3_box .flex .con {
    width: 120px;
    height: 120px;
    font-size: 18px;
}

.page_Operationpoint_row .in_row .page_Operationpoint_con .right_col .point3_box .bottom_con {
    width: 270px;
    font-size: 18px;
}

.page_Operationpoint_row .in_row .page_Operationpoint_con .ponit_p {
    right: 20px;
}
.anker_nav_row ul {
    border-radius: 30px;
    justify-content: left;
    gap: 20px;
    padding: 30px 20px;
    flex-direction: column;
    align-items: flex-start;
}

.text_image_flex_parts01_row .flex_in {
    flex-direction: column-reverse;
    gap: 30px;
}

.text_image_flex_parts01_row .img_col {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.text_image_flex_parts01_row .text_col {
    width: 100%;
}

.text_image_flex_parts01_row .text_col p.texts {
    font-size: 14px;
}

.background_decoration02 {
    display: none;
}

.title_row03 .title_box03 .fuki {
    font-size: 16px;
}

.page_point_row .in_row {
    grid-template-columns: 1fr;
    gap: 30px;
}

.page_point_row .in_row .page_point_col h3 {
    font-size: 18px !important;
}

.page_point_row .in_row .page_point_col p {
    font-size: 14px;
}

.page_Operationpoint_row .in_row .page_Operationpoint_con .text_col h3 {
    font-size: 18px !important;
}

.page_Operationpoint_row .in_row .page_Operationpoint_con .text_col p {
    font-size: 14px;
}

.page_Operationpoint_row .in_row .page_Operationpoint_con .right_col .pay_flex {
    grid-template-columns: 1fr 1fr;
}

.page_Operationpoint_row .in_row .page_Operationpoint_con .right_col .pay_flex .pay p {
    font-size: 14px;
}

.page_Operationpoint_row .in_row .page_Operationpoint_con .text_col .subtitle {
    font-size: 14px;
}

.page_Operationpoint_row .in_row .page_Operationpoint_con .right_col .colum2_box .colum_flex p {
    font-size: 14px;
}

.page_Operationpoint_row .in_row .page_Operationpoint_con .right_col .colum2_box .colum_flex {
    padding: 20px 20px 20px;
}

.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;
  width: 100%;
}
.page_linket_future_row .in_row {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto;
}

.page_linket_future_row .in_row .page_linket_future_col h3 {
    font-size: 18px !important;
}

.page_future_bottom_row .flex_title .title_col h3 {
    font-size: 18px !important;
}
.page_future_bottom_row .in_row {
    flex-wrap: wrap;
}

.page_future_bottom_row .in_row .page_future_bottom_col {
    width: calc(50% - 10px);
}

.page_future_bottom_row .in_row .page_future_bottom_col p {
    font-size: 14px;
}

.page_step_borderbox_row .content_con .titles h2 {
    font-size: 20px !important;
}

.page_step_borderbox_row .content_con .titles p.sub_label {
    font-size: 12px;
    margin-bottom: 10px;
}

.page_step_borderbox_row .content_con .step01_box .flex_in {
    flex-direction: column-reverse;
    padding-top: 30px;
    gap: 30px;
}

.page_step_borderbox_row .content_con .step01_box .flex_in .text_col {
    width: 100%;
}

.page_step_borderbox_row .content_con .step01_box .flex_in .img_col {
    width: 100%;
}

.page_step_borderbox_row .content_con .step01_box {
    padding: 0px 20px 30px;
}

.page_step_borderbox_row .content_con .step01_box .flex_in .text_col h3 {
    font-size: 20px !important;
    margin-bottom: 20px;
}

.page_step_borderbox_row .content_con .step01_box .flex_in .text_col p.subtitle {
    font-size: 16px;
    margin-bottom: 10px;
}

.page_step_borderbox_row .content_con .step01_box .flex_in .text_col p.text {
    font-size: 14px;
}

.page_step_borderbox_row .content_con .step01_box .flex_in .pay_col {
    width: 100%;
    grid-template-columns: 1fr 1fr;
}

.page_step_borderbox_row .content_con .step01_box .flex_in .pay_col .pay_list p {
    font-size: 14px;
}

.page_step_borderbox_row .content_con .step02_box {
    padding: 30px 20px 30px;
}

p.texts {}

.page_step_borderbox_row .content_con .step02_box p.texts {
    font-size: 14px;
    margin-bottom: 30px;
}

.page_step_borderbox_row .content_con .step02_box .chiket_flex {
    flex-direction: column;
}

.page_step_borderbox_row .content_con .step02_box .chiket_flex .chiket_col {
    width: 100%;
}

.page_step_borderbox_row .content_con .step02_box .chiket_flex .chiket_col .box {
    padding: 20px 20px 0px;
    overflow: hidden;
}

.page_step_borderbox_row .content_con .step02_box .chiket_flex .chiket_col .box h3 {
    font-size: 17px !important;
    margin-bottom: 20px;
}

.page_step_borderbox_row .content_con .step02_box .chiket_flex .chiket_col .box .img_box {
    height: initial;
    transform: translate(0px, 4px);
}

.page_step_borderbox_row .content_con .step03_box {
    padding: 30px 20px;
}

.page_step_borderbox_row .content_con .step03_box .step3_flex {
    grid-template-columns: 1fr;
    gap: 30px;
}

.page_step_borderbox_row .content_con .step03_box .step3_flex .step3_col h3 {
    font-size: 18px !important;
}

.page_step_borderbox_row .content_con .step03_box .step3_flex .step3_col .img_box img {
    width: 100%;
}

.page_step_borderbox_row .content_con .step03_box .step3_flex .step3_col p {
    font-size: 14px;
}

.page_step_borderbox_row .content_con .step03_box .step3_flex .step3_col {}

.page_step_borderbox_row .content_con .step03_box .step3_imgText {
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.page_step_borderbox_row .content_con .step03_box .step3_imgText .text_col p {
    font-size: 14px;
}

.page_step_borderbox_row .content_con .step03_box .step3_last_in {
    flex-direction: column;
}

.page_step_borderbox_row .content_con .step03_box .step3_last_in .step3_last_col {
    width: 100%;
    padding: 30px 20px;
}

.page_step_borderbox_row .content_con .step03_box .step3_last_in .step3_last_col .rightTop_text {
    right: 10px;
    top: 20px;
}

.page_step_borderbox_row .content_con .step03_box .step3_last_in .step3_last_col h3 {
    font-size: 18px !important;
}

.page_step_borderbox_row .content_con .step03_box .step3_last_in .step3_last_col p {
    font-size: 14px;
}
.page_step_borderbox_row .content_con {
    max-width: 400px;
    margin: 0 auto;
}

.page_step_borderbox_row .content_con:not(:last-of-type) {
    margin-bottom: 30px;
}
.mv_pages .page-ttl {
    font-size: 26px !important;
    line-height: 1.4;
}
.title_row04 .title_box04 h2 {
    font-size: 20px !important;
    padding: 15px 20px 15px;
}

.title_row04 .title_box04 h2::before {
    height: 35px;
}

.title_row04 .title_box04 p.sub_texts {
    font-size: 14px;
}

article.list_page_row .in_row ul {
    grid-template-columns: 1fr;
    gap: 20px;
    row-gap: 30px;
}

.title_row04 .title_box04 {
    margin-bottom: 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;
}

.human_interview_parts_row .flex_title p.title_col {
    font-size: 16px;
}

.human_interview_parts_row .flex_title .img_col {
    max-width: 23px;
}

.human_interview_parts_row .flex_title .img_col img {
    width: 100%;
}

.human_interview_parts_row .flex_img_text .img_col {
    /* width: 100px; */
}

.human_interview_parts_row .flex_img_text .img_col img {
    min-width: 60px;
    width: 60px;
}

.human_interview_parts_row .flex_img_text .text_col p.names {
    font-size: 14px;
}

.human_interview_parts_row .flex_img_text {
    flex-direction: column;
    gap: 10px;
}

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

.case_h2_title01 .flexboxs p.labeltext {
    font-size: 16px;
}

.case_h2_title01 h2 {
    font-size: 20px !important;
}

.case_QA_parts01_con .case_QA_parts01_row .case_Q_flex p.titles_Q {
    font-size: 16px;
    margin-top: 16px;
    line-height: 1.5;
}

.case_QA_parts01_con .case_QA_parts01_row .case_Q_flex .img_box {
    width: 60px;
    height: 60px;
    min-width: 60px;
}

.case_QA_parts01_con .case_QA_parts01_row .case_A_flex .img_box img {
    width: 60px;
    height: 60px;
    min-width: 60px;
}

.case_QA_parts01_con .case_QA_parts01_row .case_A_flex p.titles_A {
    font-size: 14px;
}

.blogcase_con .blogcase_sec .content_in span#hs_cos_wrapper_post_body > p {
    font-size: 14px;
}

.case_info_row .conten {
    padding: 30px 20px;
}

.case_info_row .conten table tr th {
    font-size: 14px;
    min-width: 60px;
}

.case_info_row .conten table tr td {
    font-size: 14px;
}

.case_info_row .conten table tr th, .case_info_row .conten table tr td {
    line-height: 1.5;
}

.case_info_row .conten table {
    margin: 0;
}

.case_info_row .titles h2 {
    font-size: 20px !important;
}

.case_info_row .titles .icon img {
    width: 18px;
}

.case_info_row .titles {
    padding: 16px 30px;
}
.blogcase_con .flex_con_in {
    flex-direction: column;
}

.blob_in_download01_row .flex_box {
    flex-direction: column;
    gap: 20px;
}

.blob_in_download01_row .flex_box .img_col {
    width: 100%;
}

.blob_in_download01_row .flex_box .text_col {
    width: 100%;
}

.blob_in_download01_row {
    padding: 20px 20px;
    border-radius: 20px 20px 0px 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.blob_in_download01_row .flex_box .text_col .titles {
    font-size: 20px;
}

.blob_in_download01_row .btn_area_con h2 {
    font-size: 20px !important;
}

.blob_in_download01_row .btn_area_con p {
    font-size: 14px;
    text-align: justify;
}

.blob_in_download01_row .btn_area_con .download_btn a {
    height: 70px;
    gap: 10px;
}

.blob_in_download01_row .btn_area_con .download_btn a span {
    font-size: 16px;
}

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

.blob_in_download02_row {
    border-radius: 20px 20px 0px 20px;
    padding: 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.blob_in_download02_row ul li {
    font-size: 16px;
}

.blob_in_download02_row ul {
    flex-direction: column;
    gap: 5px;
    padding-left: 0;
}

.blob_in_download02_row .flex_area_box {
    grid-template-columns: 1fr;
}

.blob_in_download02_row .flex_area_box .col_box h3 {
    font-size: 18px !important;
}

.blob_in_download02_row .flex_area_box .col_box p {
    font-size: 14px;
}

.blob_in_download02_row .flex_area_box .col_box .download_btn a {
    font-size: 16px;
    height: 70px;
    margin: 0 auto;
}

.blob_in_download02_row .flex_area_box .col_box .contact_btn a {
    font-size: 16px;
    gap: 10px;
    height: 70px;
    margin: 0 auto;
}

.side_title_row h2 {
    font-size: 16px !important;
}

.blogcase_con .flex_con_in .sideright_sec {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
}
.UsageByIndustry_row .in_row {
    padding: 30px 20px;
    grid-template-columns: 1fr;
}

.UsageByIndustry_row .in_row .UsageByIndustry_col a p.texts {
    font-size: 14px;
}

.UsageByIndustry_row .in_row .UsageByIndustry_col a .img_box {
    width: 20%;
}

.UsageByIndustry_row .in_row .UsageByIndustry_col a {
    gap: 10px;
}

.CaseStudiesByTicketType_row .in_row .CaseStudiesByTicketType_col p {
    font-size: 16px;
}

.CaseStudiesByTicketType_row .in_row .CaseStudiesByTicketType_col {
    width: 130px;
}

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;
    padding: 20px 30px 20px 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;
}
.choose_linket_row .in_row {
    grid-template-columns: 1fr;
    gap: 30px;
}

.choose_linket_row .in_row .choose_linket_col .subtitle {
    font-size: 16px;
}

.choose_linket_row .in_row .choose_linket_col h3 {
    font-size: 18px !important;
}

.choose_linket_row .in_row .choose_linket_col p {
    font-size: 14px;
}
.top_step_sec.addpages {
    margin: 0;
}
.newFunctionality_row .flexs_row {
    grid-template-columns: 1fr;
    gap: 30px;
}

.newFunctionality_row .flexs_row .newFunctionality_col {
    max-width: 400px;
    margin: 0 auto;
    flex-direction: column;
    gap: 20px;
}

.newFunctionality_row .flexs_row .newFunctionality_col h3 {
    font-size: 18px !important;
    margin-bottom: 15px;
}

.newFunctionality_row .flexs_row .newFunctionality_col p {
    font-size: 14px;
    margin-top: 15px;
}
.choose_linket_row .in_row .choose_linket_col {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
}
  .IntroductionFlow_row .flexs_row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.IntroductionFlow_row .flexs_row .IntroductionFlow_col {
    max-width: 200px;
    width: 200px;
}

.IntroductionFlow_row .flexs_row .IntroductionFlow_col:not(:first-of-type) .img_con::before {
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #ccc;
    left: 50%;
    top: -20px;
    transform: translate(-50%, -100%);
}
  .tickettype_row .in_row .tickettype_col a {
    max-width: initial;
    width: 100%;
    min-width: initial;
}

.tickettype_row .in_row .tickettype_col {
    width: calc(50% - 5px);
}
  .price_sec .price_addoption_row {
    flex-flow: column;
    gap: 20px;
}

.price_sec .price_addoption_row .pariceres_col {
    margin-left: 0;
}

.price_sec .price_addoption_row .ttexts {
    line-height: 1.4;
}
  .headertopbanner {
    font-size: 14px;
}
.headertopbanner br{
    display: block;
}
  .price_sec .price_row .price_col .titletexts{
    font-size: 16px;
    margin-bottom: 20px;
}
.price_inTOPtotitles_row h3 {
    font-size: 16px !important;
    margin-bottom: -30px;
}
.price_inTOPbobtn_row .pricemore_btn_row a {
    font-size: 14px;
}
  .companysTable_row .companysTable_box table tr {
    flex-direction: column;
    row-gap: 10px;
  }
  .companysTable_row .companysTable_box table tr th {
    border-right: none !important;
  }
  .companysTable_row .companysTable_box table tr td {
    font-size: 14px;
  }
  .companysTable_row .companysTable_box table tr td .pts02.disone {
    flex-direction: column;
    row-gap: 20px;
  }
  .companysTable_row .companysTable_box table tr td .pts02 .flexsin {
    flex-direction: column;
    row-gap: 10px;
  }
  .companysTable_row .companysTable_box table tr th,
  .companysTable_row .companysTable_box table tr td {
    padding: 0 20px;
  }
  .companysTable_row .companysTable_box table tr td a {
    font-size: 14px;
}
  .page_top_back_img04 {
    display: none;
}
  .allInOne_row .flexs_row .allInOne_col::after {
    width: 30px;
    height: 30px;
}
    /* ---------------------------携帯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;
  }
}