/* 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 0px;
}
@media screen and (max-width: 767px) {
  P {
    font-size: 0.875rem;
    margin: 0 0 0px;
  }
}
/* Anchors */
a {
  cursor: pointer;
}
/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5;
}
h1 {
  margin: 0px;
}
h2 {
  margin: 0px;
}
h3 {
  margin: 0px;
}
h4 {
  margin: 0px;
}
h5 {
  margin: 0px;
}
/* @media screen and (max-width: 767px) {
  h1 {
    font-size: 22px;
  }
  h2 {
    font-size: 22px;
  }
  h3 {
    font-size: 20px;
  }
  h4 {
    font-size: 16px;
  }
} */
/* 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;
  max-width: 100%;
}
/* addcustom */
.w106 {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px;
}
.w110 {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px;
}
.w122 {
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px;
}
.w138 {
  max-width: 1380px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.w140 {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
/*=====================================
*
*見出しパーツ
*
=======================================*/
.title_box01 {
  position: relative;
}
.title_box01 p.subtext {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  color: #201815;
  opacity: .3;
  margin-bottom: 10px;
}
.title_box01 h2 {
  margin: 0;
  line-height: 1.2;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 42px;
}
.title_box01.rights h2 {
  text-align: end;
}
.title_box01.rights p.subtext {
  text-align: end;
}
/*=====================================
*
*header
*
=======================================*/
header {
  position: absolute;
  top: 0;
  z-index: 4;
  width: 100%;
  transition: .3s;
  height: 95px;
  background-image: linear-gradient(90deg, #ede4de, #e2e2e1);
}
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 .logo a {
  display: flex;
  transition: .3s;
}
header .header_content .logo a:hover {
  opacity: .7;
}
header .header_content .menu_con {
    margin-left: auto;
    margin-right: 15px;
}
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 .RequestCatalog01 a {
  width: 182px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  border: 1px solid #201815;
  font-size: 16px;
  font-weight: bold;
  color: #FFFDF8;
  transition: .3s;
  letter-spacing: .05em;
  line-height: 1.6;
  background: #201815;
}
header .header_content .cta_box .RequestCatalog01 a:hover {
  color: #201815;
  background: #fff;
}
.body-container-wrapper {
  padding-top: 95px !important;
}
header .header_content .menu_con nav.menu.menu--desktop .menu__item--depth-1 {
  padding: 0;
}
header .header_content .menu_con nav.menu.menu--desktop a.menu__link {
  font-size: 14px;
  padding: 10px 15px;
  display: block;
  color: #201815;
}
/* 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: #FFBF00;
  }

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

  header .header_content .menu_con nav.menu.menu--desktop a.menu__link span::after {
    content: "";
    width: 0%;
    height: 3px;
    background: #FFBF00;
    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 #ffbf00;
  }

  .hamburger span {
    width: 100%;
    height: 1px;
    background-color: #ffbf00;
    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: 0;
    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: #ffbf00;
    height: 100%;
    padding: 80px 30px 40px;
    border-top: 1px solid #efefef;
    height: fit-content;
    border-radius: 10px 0px 0px 10px;
    margin: 0;
  }

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

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

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

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

  header {
    height: 60px;
  }

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

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

/*=====================================
*
*footer
*
=======================================*/
footer.footer_sec {
  position: relative;
  background: #fff;
  padding-top: 95px;
  padding-bottom: 100px;
  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;
  text-transform: none;
}
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: center;
  gap: 20px;
  margin-top: 40px;
  font-size: 12px;
}
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;
}

/*=====================================
*
*TOPページ
*
=======================================*/
/* TopFeatures_sec */
.TopFeatures_sec {
  position: relative;
}
.TopFeatures_sec .content {
  background: #FFBF00;
  position: relative;
  padding: 80px 0;
  border-radius: 30px;
}
.TopFeatures_sec .content .titles {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 55px;
}
.TopFeatures_sec .content .titles .labels {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
}
.TopFeatures_sec .content .titles h2 {
  color: #fff;
  font-weight: bold;
  font-size: 30px;
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: .2em;
}
.TopFeatures_sec .content .flexs_row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  align-items: center;
}
.TopFeatures_sec .content .flexs_row .imgs_col {
  width: 48%;
  height: fit-content;
  overflow: hidden;
  border-radius: 10px;
  display: flex;
}
.TopFeatures_sec .content .flexs_row .imgs_col .hs-video-widget {
  width: 100%;
}
.TopFeatures_sec .content .flexs_row .lists_col {
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.TopFeatures_sec .content .flexs_row .lists_col .lists {
  border-bottom: 1px solid #fff;
  color: #fff;
  padding-bottom: 50px;
}
.TopFeatures_sec .content .flexs_row .lists_col .lists .ttl {
  font-size: 42px;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  line-height: 1;
  margin-bottom: -4px;
  letter-spacing: 0;
}
.TopFeatures_sec .content .flexs_row .lists_col .lists .text {
  font-weight: bold;
  font-size: 14px;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.09em;
}
.TopFeatures_sec .content .flexs_row .lists_col .lists:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
}
.TopFeatures_sec .content .btn_row {
  position: relative;
  margin-top: 66px;
}
.TopFeatures_sec .content .btn_row .btns {
  position: relative;
}
.TopFeatures_sec .content .btn_row .btns a {
  background: #fff;
  font-size: 14px;
  font-weight: bold;
  color: #201815;
  letter-spacing: 2px;
  width: 178px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  margin: 0 auto;
  transition: .3s;
  border: 1px solid #fff;
}
.TopFeatures_sec .content .btn_row .btns a:hover {
  color: #fff;
  background: none;
}

/* Fromexperience_sec */
.Fromexperience_sec {
  position: relative;
}
.Fromexperience_sec .flex_row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.Fromexperience_sec .flex_row .title_col {
  width: fit-content;
}
.Fromexperience_sec .flex_row .text_col {
  width: 55.1%;
}
.Fromexperience_sec .flex_row .text_col p {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.6;
}
.Fromexperience_sec .flex_row .text_col p span {
  border: 1px solid;
  padding: 3px 7px 5px;
  display: inline-block;
  line-height: 1;
  margin: 0 4px;
}
.Fromexperience_sec .flex_row .title_col .img_box {
  display: flex;
  width: 67px;
  margin-top: 47px;
  margin-left: 40px;
}
.Fromexperience_sec .flex_row .title_col .img_box img {
  width: 100%;
}

/* Selectableinstallation_sec */
.Selectableinstallation_sec {
  position: relative;
}
.Selectableinstallation_sec .flex_row {
  position: relative;
  display: flex;
  column-gap: 20px;
  justify-content: space-between;
}
.Selectableinstallation_sec .flex_row .content_col {
  max-width: 670px;
  position: relative;
}
.Selectableinstallation_sec .flex_row .content_col .num {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.Selectableinstallation_sec .flex_row .content_col h3 {
  margin-left: 90px;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 10px;
  margin-top: 60px;
}
.Selectableinstallation_sec .flex_row .content_col .img_area {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.Selectableinstallation_sec .flex_row .content_col .img_area .texts {
  position: absolute;
  bottom: 0px;
  width: 100%;
  text-align: end;
  color: #fff;
  right: 0px;
}
.Selectableinstallation_sec .flex_row .content_col .img_area .texts p {
  font-size: 14px;
  line-height: 1.5;
  font-weight: bold;
  padding: 30px;
}
.Selectableinstallation_sec .flex_row .content_col .img_area .img_box {
  position: relative;
  display: flex;
}
.Selectableinstallation_sec .flex_row .content_col:nth-of-type(2n) {
  margin-top: 220px;
}
.Selectableinstallation_sec .w140 {
  margin-top: -70px;
}

/* Improving_sec */
/* .Improving_sec {
  position: relative;
  height: 100dvh;
  display: flex;
}
.Improving_sec .Improving_inner {
  position: absolute;
  inset: 0 0 auto 0;
  width: 100%;
  height: inherit;
  display: grid;
  place-items: center;
}
.Improving_sec .backimg {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}
.Improving_sec .backimg img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
.Improving_sec .w105 {
  position: relative;
  z-index: 1;
  max-width: 1090px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  margin: auto;
}
.Improving_sec .flex_row {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}
.Improving_sec .flex_row .texts_col {
  max-width: 560px;
  background: #fff;
  border-radius: 20px;
  padding: 36px 50px 44px;
  width: 100%;
}
.Improving_sec .flex_row .texts_col h3 {
  font-size: 26px;
  font-weight: bold;
  color: #201815;
  line-height: 1.4;
  margin-bottom: 20px;
  margin-top: 0;
}
.Improving_sec .flex_row .texts_col>p {
  color: #898989;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 20px;
}
.Improving_sec .flex_row .texts_col ul {
  margin: 0;
}
.Improving_sec .flex_row .texts_col ul li {
  font-size: 14px;
  font-weight: bold;
  color: #201815;
}
.Improving_sec .flex_row .title_col .titles {
  position: relative;
}
.Improving_sec .flex_row .title_col .titles p.subtext {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  color: #fff;
  margin-bottom: 10px;
}
.Improving_sec .flex_row .title_col .titles h2 {
  margin: 0;
  line-height: 1.2;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #fff;
} */


/* Improving_sec */
.Improving_sec {
  position: relative;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.Improving_sec .Improving_inner {
  position: absolute;
  inset: 0 0 auto 0;
  width: 100%;
  height: inherit;
  display: grid;
  place-items: center;
  height: 100dvh;
}
.Improving_sec .Improving_inner.is-last {
  position: absolute !important;
}
.Improving_sec .backimg {
  position: absolute;
  width: 100%;
  height: 100% !important;
  overflow: hidden;
  z-index: 0;
  height: 100dvh;
  top: 0;
}
.Improving_sec .backimg img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
.Improving_sec .Improving_inner .w105 {
  position: relative;
  z-index: 1;
  max-width: 1090px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  margin: auto;
  display: flex;
  margin-top: auto;
  height: 100%;
  height: 100dvh;
}
.Improving_sec .flex_row {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}
.Improving_sec .flex_row .texts_col {
  max-width: 560px;
  background: #fff;
  border-radius: 20px;
  padding: 36px 50px 44px;
  width: 100%;
}
.Improving_sec .flex_row .texts_col h3 {
  font-size: 26px;
  font-weight: bold;
  color: #201815;
  line-height: 1.4;
  margin-bottom: 20px;
  margin-top: 0;
}
.Improving_sec .flex_row .texts_col>p {
  color: #898989;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 20px;
}
.Improving_sec .flex_row .texts_col ul {
  margin: 0;
}
.Improving_sec .flex_row .texts_col ul li {
  font-size: 14px;
  font-weight: bold;
  color: #201815;
}
.Improving_sec .flex_row .title_col .titles {
  position: relative;
}
.Improving_sec .flex_row .title_col .titles p.subtext {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  color: #fff;
  margin-bottom: 10px;
}
.Improving_sec .flex_row .title_col .titles h2 {
  margin: 0;
  line-height: 1.2;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #fff;
}
.Improving_fixed {
  position: absolute;
  inset: 0;
  height: 100dvh;
  min-height: -webkit-fill-available;
  /* iOS Safari用のおまじない */
  padding-bottom: 0;
  display: grid;
  place-items: center;
}
.Improving_scroll {
  position: relative;
  z-index: 10;
  width: 100%;
  top: 50%;
  transform: translate(0px, -50%);
  position: absolute;
}
.Improving_scroll .texts_col {
  background: #fff;
  border-radius: 20px;
  max-width: 560px;
  background: #fff;
  border-radius: 20px;
  padding: 36px 50px 44px;
  width: 100%;
  margin-left: auto;
  height: fit-content;
}
.Improving_scroll .w105 {
  max-width: 1090px;
  margin: 0 auto;
  padding: 0 20px;
}
.Improving_scroll .texts_col h3 {
  font-size: 26px;
  font-weight: bold;
  color: #201815;
  line-height: 1.4;
  margin-bottom: 20px;
  margin-top: 0;
}
.Improving_scroll .texts_col>p {
  color: #898989;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 20px;
}
.Improving_scroll .texts_col ul {
  margin: 0;
}
.Improving_scroll .texts_col ul li {
  font-size: 14px;
  font-weight: bold;
  color: #201815;
}





/* cta_sec */
.cta_sec {
  position: relative;
  padding: 87px 0 112px;
}
.cta_sec .backimgs {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
}
.cta_sec .backimgs img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
.cta_sec h2 {
  font-size: 24px;
  position: relative;
  text-align: center;
  color: #fff;
  font-weight: bold;
  margin: 0;
  line-height: 1.6;
  letter-spacing: 2px;
  margin-bottom: 46px;
}
.cta_sec .cta_row {
  display: grid;
  position: relative;
  grid-template-columns: 1fr 1fr;
}
.cta_sec .cta_row .cta_col {
  position: relative;
}
.cta_sec .cta_row .cta_col .ttl {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.cta_sec .cta_row .cta_col .btn {
  padding: 0;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 16px;
  display: flex;
  min-width: initial;
}
.cta_sec .cta_row .cta_col .btn a {
  border: 1px solid #fff;
  display: flex;
  min-width: 250px;
  width: fit-content;
  justify-content: center;
  align-items: center;
  min-height: 59px;
  border-radius: 100px;
  color: #fff;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 2px;
  margin: 0 auto;
  transition: .3s;
}
.cta_sec .cta_row .cta_col .btn a:hover {
  background: #fff;
  color: #f7ba00;
}
.cta_sec .cta_row .cta_col .telbtn {
  position: relative;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.cta_sec .cta_row .cta_col .telbtn a {
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 1px;
  pointer-events: none;
}
.cta_sec .cta_row .cta_col .telbtn .icons {
  display: flex;
  width: 28px;
  height: 28px;
}
.cta_sec .cta_row .cta_col:nth-of-type(1) {
  border-right: 1px solid #fff;
}

/* sien_sec */
.sien_sec {
  position: relative;
}
.sien_sec .flex_row {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
.sien_sec .flex_row .texts_col {
  width: 45%;
}
.sien_sec .flex_row .texts_col .title_box01 {
  max-width: 430px;
  margin-bottom: 90px;
  margin-top: 20px;
}
.sien_sec .flex_row .texts_col .title_box01 p.undertexts {
  color: #898989;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 30px;
  letter-spacing: .1em;
}
.sien_sec .flex_row .texts_col .drink_box {
  position: relative;
}
.sien_sec .flex_row .texts_col .drink_box h3 {
  margin: 0;
  margin-bottom: 30px;
  font-size: 22px;
  line-height: 1.2;
}
.sien_sec .flex_row .texts_col .drink_box .lists {
  position: relative;
}

.sien_sec .flex_row .texts_col .drink_box .lists ul {
  position: relative;
  display: flex;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  row-gap: 20px;
}
.sien_sec .flex_row .texts_col .drink_box .lists ul li {
  list-style: none;
  border-right: 1px solid #E8E8E8;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  min-width: 70px;
}
.sien_sec .flex_row .texts_col .drink_box .lists ul li:nth-of-type(1) {
  padding-left: 0;
}

.sien_sec .flex_row .texts_col .drink_box .lists ul li:last-of-type {
  padding-right: 0;
  border-right: none;
}
.sien_sec .flex_row .texts_col .drink_box .lists ul li p.listtexts {
  font-size: 14px;
  font-weight: bold;
}
.sien_sec .flex_row .texts_col .drink_box p.bottom_texts {
  font-size: 12px;
  font-weight: 500;
  color: #898989;
  margin-top: 20px;
}
.sien_sec .flex_row .imgs_col {
  width: 50%;
  max-width: 600px;
  position: relative;
  height: fit-content;
}
.sien_sec .flex_row .imgs_col .img_box01 {
  display: flex;
  overflow: hidden;
  border-radius: 10px;
  max-width: 407px;
  margin: 0 auto;
  margin-right: 14%;
  margin-bottom: 56px;
}
.sien_sec .flex_row .imgs_col .img_box03 {
  overflow: hidden;
  display: flex;
  border-radius: 10px;
  width: fit-content;
  margin-left: auto;
  max-width: 323px;
}
.sien_sec .flex_row .imgs_col .img_box02 {
  display: flex;
  overflow: hidden;
  border-radius: 10px;
  width: fit-content;
  max-width: 224px;
  position: absolute;
  top: 40%;
  left: 0%;
}

/* DifferencesOthers_sec */
.DifferencesOthers_sec {
  position: relative;
}
.DifferencesOthers_sec .DifferencesOthers_table {
  position: relative;
  max-width: 1020px;
  margin: 0 auto;
}
.DifferencesOthers_sec .DifferencesOthers_table table {
  width: 100%;
  border-spacing: 0px;
  border: none;
  border-collapse: collapse;
  margin: 0;
}
.DifferencesOthers_sec .DifferencesOthers_table table tr {
  position: relative;
}
.DifferencesOthers_sec .DifferencesOthers_table table tr::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #DCDCDC;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: calc(100vw - 30px);
  transform: translate(-50%, 0px);
}
.DifferencesOthers_sec .DifferencesOthers_table table thead {
  position: relative;
}
.DifferencesOthers_sec .DifferencesOthers_table table thead tr th {
  background: none;
  color: #201815;
  padding: 40px 20px 20px;
}
.DifferencesOthers_sec .DifferencesOthers_table table tr th,
.DifferencesOthers_sec .DifferencesOthers_table table tr td {
  border: none;
}
.DifferencesOthers_sec .DifferencesOthers_table table thead tr th.titles {
  text-align: left;
  vertical-align: middle;
}
.DifferencesOthers_sec .DifferencesOthers_table table thead tr th.titles span.subtexts {
  opacity: .3;
  font-weight: 400;
  font-size: 12px;
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
}
.DifferencesOthers_sec .DifferencesOthers_table table thead tr th.titles h2 {
  font-size: 37px;
  margin: 0;
  line-height: 1.2;
  margin-top: 10px;
}
.DifferencesOthers_sec .DifferencesOthers_table table thead tr th.right_con p {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 2px;
}
.DifferencesOthers_sec .DifferencesOthers_table table tbody tr th {
  text-align: left;
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 35px 20px !important;
}
.DifferencesOthers_sec .DifferencesOthers_table table tbody tr th,
.DifferencesOthers_sec .DifferencesOthers_table table tbody tr td {
  padding: 30px 20px;
}
.DifferencesOthers_sec .DifferencesOthers_table table tbody tr th .texts {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 2px;
  min-width: 96px;
}
.DifferencesOthers_sec .DifferencesOthers_table table tbody tr th .subs {
  font-size: 11px;
  line-height: 1.6;
  opacity: .3;
  font-weight: 300;
  font-family: "Roboto", sans-serif;
}
.DifferencesOthers_sec .DifferencesOthers_table table thead tr::before {
  height: 1px;
  background: #ccc;
  position: absolute;
  top: 0;
  left: 50%;
  width: calc(100vw - 30px);
  transform: translate(-50%, 0px);
}
.DifferencesOthers_sec .DifferencesOthers_table table thead tr::before {
  position: absolute;
  left: 0;
  top: 0;
}
.DifferencesOthers_sec .DifferencesOthers_table table thead::before {
  content: "";
  height: 1px;
  background: #DCDCDC;
  position: absolute;
  top: 0;
  left: 50%;
  width: calc(100vw - 30px);
  transform: translate(-50%, 0px);
}
.DifferencesOthers_sec .DifferencesOthers_table table tbody tr td {
  text-align: center;
}
.DifferencesOthers_sec .DifferencesOthers_table table tbody tr td .iconns {
  display: flex;
  justify-content: center;
}


/* FlowOperation_sec */
.FlowOperation_sec {
  position: relative;
  padding: 0px 20px;
}
.FlowOperation_sec .content {
  background: #EBE7DF;
  border-radius: 30px;
  padding: 80px 0px 80px;
}
.FlowOperation_sec .content .flows_row {
  position: relative;
  margin-bottom: 111px;
}
.FlowOperation_sec .content .flows_row .title_box01 {
  margin-bottom: 50px;
}
/* Flow List Styles */
.FlowOperation_sec .content .flows_row .flow-wrapper {
  display: flex;
  position: relative;
}
.FlowOperation_sec .content .flows_row .flow-wrapper .flow-timeline {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 90px;
  padding-bottom: 1rem;
  position: absolute;
  left: -34px;
  transform: translate(-100%, 0px);
}
.FlowOperation_sec .content .flows_row .flow-wrapper .flow-timeline .timeline-arrow {
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 9px solid #333;
  margin-bottom: 25px;
  opacity: 0.1;
  transition: opacity 0.5s ease;
}
.FlowOperation_sec .content .flows_row .flow-wrapper .flow-timeline .timeline-arrow.active {
  opacity: 1;
}
.FlowOperation_sec .content .flows_row .flow-wrapper .flow-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
.FlowOperation_sec .content .flows_row .flow-wrapper .flow-list .flow-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
  opacity: 0.2;
  transition: opacity 0.6s ease, filter 0.6s ease, transform 0.6s ease;
}
.FlowOperation_sec .content .flows_row .flow-wrapper .flow-list .flow-item.active {
  opacity: 1;
}
.FlowOperation_sec .content .flows_row .flow-wrapper .flow-list .flow-item .flow-image {
  width: 31.2%;
  overflow: hidden;
  border-radius: 15px;
  display: flex;
}
.FlowOperation_sec .content .flows_row .flow-wrapper .flow-list .flow-item .flow-content {
  flex: 1;
  position: relative;
  display: flex;
  gap: 20px;
  height: 100%;
  position: relative;
  align-items: center;
}
.FlowOperation_sec .content .flows_row .flow-wrapper .flow-list .flow-item .flow-content .flow-meta {
  display: flex;
  flex-direction: column;
  min-width: 260px;
}
.FlowOperation_sec .content .flows_row .flow-wrapper .flow-list .flow-item .flow-content .flow-meta .flow-number {
  font-size: 14px;
  color: #201815;
  opacity: .4;
  display: block;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
}
.FlowOperation_sec .content .flows_row .flow-wrapper .flow-list .flow-item .flow-content .flow-meta h3 {
  font-weight: 700;
  margin: 0;
  font-size: 28px;
  color: #201815;
  line-height: 1.6;
  letter-spacing: 0em;
}
.FlowOperation_sec .content .flows_row .flow-wrapper .flow-list .flow-item .flow-content .flow-desc {
  font-size: 14px;
  color: #201815;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: .07em;
}
.FlowOperation_sec .content .flows_row .flow-wrapper .flow-list .flow-item .flow-content .flow-image {
  flex: 0 0 45%;
}
.FlowOperation_sec .content .flows_row .flow-wrapper .flow-list .flow-item .flow-content .flow-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.FlowOperation_sec .content .flows_row .flow-wrapper .flow-list .flow-item .flow-content::after {
  content: "";
  background: #D0D0D0;
  height: 1px;
  width: 100%;
  position: absolute;
  bottom: -40px;
  left: 0;
}
.FlowOperation_sec .content .flows_row .flow-wrapper .flow-list .flow-item .flow-content .flow-desc {
  font-size: 14px;
  color: #201815;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: .07em;
}
.FlowOperation_sec .content .prices_row {
  position: relative;
}
.FlowOperation_sec .content .prices_row .titles {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.FlowOperation_sec .content .prices_row .titles h2 {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.2;
  margin: 0;
  color: #201815;
}
.FlowOperation_sec .content .flows_row .flow-wrapper .flow-list .flow-item:last-of-type .flow-content::after {
  display: none;
}
.FlowOperation_sec .content .prices_row .titles .subtexts {
  opacity: .3;
  color: #201815;
  font-size: 12px;
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
}
.FlowOperation_sec .content .prices_row .flex_row {
  position: relative;
  border-top: 1px solid #D0D0D0;
  border-left: 1px solid #D0D0D0;
  border-right: 1px solid #D0D0D0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.FlowOperation_sec .content .prices_row .flex_row .prices_col {
  padding: 45px 45px 30px;
}
.FlowOperation_sec .content .prices_row .flex_row .prices_col .texttitles {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: .05em;
  margin-bottom: 10px;
}
.FlowOperation_sec .content .prices_row .flex_row .prices_col .prices_box {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.FlowOperation_sec .content .prices_row .flex_row .prices_col .prices_box span.prices {
  font-family: "Roboto", sans-serif;
  font-size: 54px;
  font-weight: 500;
  line-height: 1.4;
}
.FlowOperation_sec .content .prices_row .flex_row .prices_col .prices_box span.ens {
  font-size: 24px;
  font-weight: bold;
}
.FlowOperation_sec .content .prices_row .flex_row .prices_col:nth-of-type(1) {
  border-right: 1px solid #d0d0d0;
}
.FlowOperation_sec .content .prices_row .last_texts {
  margin-top: 30px;
}
.FlowOperation_sec .content .prices_row .last_texts p {
  color: #747474;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: .05em;
  max-width: 420px;
  margin-left: auto;
  letter-spacing: .06em;
}

/* question_sec */
.question_sec {
  position: relative;
}
.question_sec .title_box01 {
  margin-bottom: 50px;
}
.question_sec .title_box01 h2 {
  font-size: 40px;
}
.qa_container {
  width: 100%;
}
.qa_container .qa_list {
  border-bottom: 1px solid #dcdcdc;
  padding-bottom: 25px;
  padding-top: 25px;
}
.qa_container .qa_list:first-of-type {
  border-top: 1px solid #dcdcdc;
}
.question_title {
  background: #fff;
  cursor: pointer;
  padding: 0px 20px 0px 0px;
  position: relative;
}
.question_title:before {
  position: absolute;
  content: '';
  top: 50%;
  right: 0px;
  height: 2px;
  width: 20px;
  background: #333;
  transform: rotate(90deg);
  transition: all .3s ease-in-out;
}
.question_title:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 0px;
  height: 2px;
  width: 20px;
  background: #333;
  transition: all .3s ease-in-out;
}
.question_title.open:before {
  transform: rotate(135deg);
}
.question_title.open:after {
  transform: rotate(45deg);
}
.answer_text {
  display: none;
  position: relative;
  padding: 10px 0px 0px 0px;
}
.question_title span {
  font-size: 18px;
  position: relative;
  display: block;
  padding-right: 20px;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: .05em;
}
.answer_text p {
  line-height: 1.4;
  font-size: 14px;
  font-weight: 500;
  color: #898989;
  letter-spacing: .05em;
}
/* .mvunderImg_sec {
  height: 500px;
  position: relative;
}
.mvunderImg_sec .mvunderImg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0);
}
.mvunderImg_sec .mvunderImg_box img {
  max-width: 100%;
  height: auto;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh !important;
  object-fit: cover;
  z-index: -1;
  object-position: center;
} */

/* .mvunderImg_sec {
  height: 500px;
  position: relative;
  overflow: hidden;
}
.mvunderImg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.mvunderImg_box img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: top;
}  */

.mvunderImg_sec {
  height: 500px;
  position: relative;
  overflow: hidden;
}
.mvunderImg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.mvunderImg_box img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: top;
}

.footerfixed_row {
  position: fixed;
  bottom: 20px;
  box-shadow: 0 15px 25px rgb(0 0 0 / 10%);
  max-width: 980px;
  width: 100%;
  border-radius: 100px;
  z-index: 99;
  background: #fff;
  left: 50%;
  transform: translate(-50%, 0px);
  display: flex;
  padding: 11px 40px;
  align-items: center;
  justify-content: space-between;
}
.footerfixed_row .logos {
  margin-right: 10px;
  width: 42px;
}
.footerfixed_row .logos a {
  display: flex;
  transition: .3s;
}
.footerfixed_row .logos a:hover {
  opacity: .7;
}
.footerfixed_row .footerfixed_menu ul li {
  border-right: 1px solid #E5E5E5;
  padding: 0 !important;
}
.footerfixed_row .footerfixed_menu ul li a {
  padding: 10px;
  font-size: 13px;
  color: #201815;
  text-transform: none;
}
.footerfixed_row .footerfixed_menu ul li a:hover {
  color: #FFBF00;
}
.footerfixed_row .footerfixed_menu ul li:last-of-type {
  border: none;
}
.footerfixed_row .cta_box .RequestCatalog01 a {
  width: 158px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  border: 1px solid #201815;
  font-size: 14px;
  font-weight: bold;
  color: #FFFDF8;
  transition: .3s;
  letter-spacing: .05em;
  line-height: 1.6;
  background: #201815;
  font-family: 'Noto Sans JP', sans-serif;
  transition: .3s;
}
.footerfixed_row .cta_box .RequestCatalog01 a:hover {
  color: #201815;
  background: #fff;
}

.scroll_down {
  position: absolute;
  bottom: 20px;
  width: 100%;
  left: 0;
  padding: 0 20px;
}
.scroll_down:before {
  content: "";
  position: absolute;
  bottom: 130px;
  width: 1px;
  height: 68px;
  background: #201815;
  right: 30px;
}
.scroll_down:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 27px;
  width: 7px;
  height: 7px;
  animation: circlemove 1.6s ease-in-out infinite,
    cirlemovehide 1.6s ease-out infinite;
  background: #201815;
  border-radius: 50%;
}
@keyframes circlemove {
  0% {
    bottom: 198px;
  }
  100% {
    bottom: 130px;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0
  }
  10% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
.scroll_down .tte {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 1;
  width: fit-content;
  writing-mode: vertical-rl;
  position: absolute;
  white-space: nowrap;
  right: 23px;
  bottom: 60px;
}
.mv_sec {
  position: relative;
  background-image: linear-gradient(90deg, #ede4de, #e2e2e1);
}
.mv_sec .flex_row {
  display: flex;
  gap: 40px;
}
.mv_sec .flex_row .titles_col {
  position: relative;
}
.mv_sec .flex_row .titles_col h1 {
  font-size: 38px;
  font-weight: 400;
  color: #201815;
  line-height: 1.3;
  margin-bottom: 10px;
}
.mv_sec .flex_row .titles_col p.subtte {
  color: #201815;
  opacity: .4;
  font-size: 10px;
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
}
.mv_sec .flex_row .text_col {
  position: relative;
  margin-left: auto;
  margin-top: auto;
  margin-bottom: 26px;
}
.mv_sec .flex_row .text_col p {
  font-size: 14px;
  line-height: 1.5;
  color: #201815;
  font-weight: bold;
  letter-spacing: .214em;
}
/*=====================================
*
*page single arcive 他ページ
*
=======================================*/
.mv_pages {
  position: relative;
  background-image: linear-gradient(90deg, #ede4de, #e2e2e1);
  display: flex;
  align-items: center;
  min-height: 250px;
  padding: 40px 20px;
}
.mv_pages h1.page-ttl {
  text-align: center;
  font-size: 40px;
}
.body-container--form {
  background-color: #fff !important;
}
/* ---------------------------他ページlast ---------------------------*/
/*==========================================================================
*
*pcパソコン
*
============================================================================*/

@media only screen and (min-width: 1025px) and (max-width: 1200px) {
  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;
  }

}


/*==========================================================================
*
*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) {
  .footerfixed_row {
    display: none;
  }
  header .header_content .cta_box .RequestCatalog01 a {
    margin: 0 auto;
    margin-top: 30px;
  }
  .body-container-wrapper {
    padding-top: 60px !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .Fromexperience_sec .flex_row .text_col p {
    font-size: 22px;
  }
  .TopFeatures_sec .content .flexs_row .lists_col .lists .ttl {
    font-size: 30px;
  }
  .Improving_sec .flex_row .title_col .titles h2 {
    font-size: 30px;
  }
  .Improving_sec .flex_row .texts_col {
    max-width: 500px;
  }
  .FlowOperation_sec .content .flows_row .flow-wrapper .flow-timeline {
    left: -23px;
  }
  footer.footer_sec .footer_menu ul.menu__wrapper.no-list li.menu__item.menu__item--depth-1.hs-skip-lang-url-rewrite {
    border: none;
    padding: 0 20px !important;
    width: fit-content;
  }
  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: none;
  }
  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-weight: bold;
  }
  footer.footer_sec .footer__logo {
    margin-bottom: 40px;
  }
  footer.footer_sec {
    padding-bottom: 40px;
  }
  .sien_sec .flex_row .imgs_col .img_box02 {
    left: 5%;
  }
  .mvunderImg_sec {
    height: 250px;
  }
  .Improving_scroll .texts_col {
    max-width: 500px;
  }
  /* ---------------------------タブレット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;
  }
}



/*=====================================
*
*pc
*
=======================================*/
@media screen and (min-width: 1025px) {
  .spOnly {
    display: none !important;
  }
  .tbOnly {
    display: none !important;
  }
  .sp_tb {
    display: none !important;
  }
}

/*=====================================
*
*tb
*
=======================================*/
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .pcOnly {
    display: none !important;
  }
  .spOnly {
    display: none !important;
  }
  .tbOnly {
    display: inherit !important;
  }
  .tb_pc {
    display: inherit !important;
  }
  .sp_tb {
    display: inherit !important;
  }
}

/*=====================================
*
*sp
*
=======================================*/
@media screen and (max-width: 767px) {
  .pcOnly {
    display: none !important;
  }
  .tb_pc {
    display: none !important;
  }
  .spOnly {
    display: inherit !important;
  }
  .tbOnly {
    display: none !important;
  }
  .sp_tb {
    display: inherit !important;
  }
}
/*==========================================================================
*
*sp
*
============================================================================*/
@media only screen and (max-width: 767px) {
  .cta_sec .cta_row .cta_col .telbtn a {
    pointer-events: all;
  }
  .cta_sec .cta_row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .cta_sec .cta_row .cta_col .btn {
    margin: 0 auto;
    margin-bottom: 16px;
  }
  .cta_sec .backimgs {
    object-fit: cover;
  }
  .cta_sec .backimgs img {
    height: 100% !important;
  }
  .FlowOperation_sec .content .flows_row .flow-wrapper {
    flex-direction: column;
  }
  .mvunderImg_sec {
    height: 230px;
  }
  .mvunderImg_sec .mvunderImg_box img {
    position: absolute;
    height: 100% !important;
    width: 100% !important;
  }
  .Fromexperience_sec .flex_row {
    flex-direction: column;
    gap: 30px;
  }
  .Fromexperience_sec .flex_row .text_col {
    width: 100%;
  }
  .title_box01 h2 {
    font-size: 24px;
  }
  .Fromexperience_sec .flex_row .text_col p {
    font-size: 14px;
  }
  .Fromexperience_sec .flex_row .title_col .img_box {
    margin-top: 30px;
    margin-left: 0;
  }
  .title_box01 p.subtext {
    margin-bottom: 0px;
  }
  .TopFeatures_sec .content .titles h2 {
    font-size: 26px;
  }
  .TopFeatures_sec .content {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .TopFeatures_sec .content .titles {
    margin-bottom: 30px;
  }
  .TopFeatures_sec .content .flexs_row {
    flex-direction: column-reverse;
    gap: 30px;
  }
  .TopFeatures_sec .content .flexs_row .imgs_col {
    width: 100%;
  }
  .TopFeatures_sec .content .flexs_row .lists_col {
    gap: 20px;
    width: 100%;
  }
  .TopFeatures_sec .content .flexs_row .lists_col .lists {
    padding-bottom: 20px;
  }
  .TopFeatures_sec .content .flexs_row .lists_col .lists .ttl {
    font-size: 26px;
  }
  .TopFeatures_sec .content .btn_row {
    margin-top: 30px;
  }
  .Selectableinstallation_sec .flex_row .content_col h3 {
    font-size: 18px;
    margin-left: 0;
    margin-top: 30px;
  }
  .Selectableinstallation_sec .flex_row .content_col:nth-of-type(2n) {
    margin-top: 30px;
  }
  .Selectableinstallation_sec .flex_row .content_col .num {
    width: 30%;
  }
  .Selectableinstallation_sec .w140 {
    margin: 0;
  }
  .Selectableinstallation_sec .flex_row .content_col .img_area .texts p {
    padding: 10px 20px 10px;
    font-size: 13px;
  }
  .Improving_sec .flex_row {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    top: 60px;
    justify-content: center;
    height: fit-content;
    position: relative;
  }
  .Improving_sec .flex_row .title_col .titles h2 {
    font-size: 24px;
  }
  .Improving_sec .flex_row .title_col .titles p.subtext {
    margin-bottom: 0;
  }
  .Improving_sec .flex_row .texts_col {
    padding: 30px 20px;
  }
  .Improving_sec .flex_row .texts_col h3 {
    font-size: 18px;
  }
  .cta_sec h2 {
    letter-spacing: .05em;
    margin-bottom: 30px;
  }
  .cta_sec {
    padding: 60px 0 60px;
  }
  .cta_sec .cta_row .cta_col .ttl {
    font-size: 16px;
  }
  .cta_sec .cta_row .cta_col .btn a {
    font-size: 14px;
    min-height: 50px;
  }
  .cta_sec .cta_row .cta_col:nth-of-type(1) {
    border: none;
    border-bottom: 1px solid #fff;
    padding-bottom: 20px;
  }
  .sien_sec .flex_row {
    flex-direction: column-reverse;
    gap: 30px;
  }
  .sien_sec .flex_row .texts_col {
    width: 100%;
  }
  .sien_sec .flex_row .imgs_col {
    width: 100%;
  }
  .sien_sec .flex_row .imgs_col .img_box01 {
    width: 90%;
    margin: 0;
    margin-bottom: 30px;
    max-width: initial;
    margin-left: 20px;
  }
  .sien_sec .flex_row .imgs_col .img_box02 {
    max-width: initial;
    width: 45%;
    top: 40%;
    left: 0px;
  }
  .sien_sec .flex_row .imgs_col .img_box03 {
    max-width: initial;
    width: 70%;
  }
  .sien_sec .flex_row .texts_col .title_box01 {
    margin-top: 0;
    margin-bottom: 30px;
  }
  .sien_sec .flex_row .texts_col .drink_box h3 {
    font-size: 18px;
  }
  .sien_sec .flex_row .texts_col .drink_box .lists ul {
    flex-wrap: wrap;
    row-gap: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .sien_sec .flex_row .texts_col .drink_box .lists ul li {
    padding: 0 10px;
  }
  .sien_sec .flex_row .texts_col .drink_box .lists ul li p.listtexts {
    font-size: 12px;
  }
  .sien_sec .flex_row .texts_col .drink_box .lists ul li .icons img {
    height: 50px !important;
    width: 100%;
    object-fit: contain;
  }
  .sien_sec .flex_row .texts_col .drink_box .lists ul li:nth-of-type(1) {
    padding-left: 10px;
    border-left: 1px solid #E8E8E8;
  }
  .sien_sec .flex_row .texts_col .drink_box .lists ul li:last-of-type {
    padding-right: 10px;
    border-right: 1px solid #E8E8E8;
  }
  .sien_sec .flex_row .texts_col .drink_box .lists ul li:nth-of-type(4n) {
    border-left: 1px solid #E8E8E8;
  }
  .DifferencesOthers_sec .DifferencesOthers_table table thead tr th.titles h2 {
    font-size: 24px;
  }
  .DifferencesOthers_sec .DifferencesOthers_table table {
    min-width: 600px;
  }
  .DifferencesOthers_sec .DifferencesOthers_table {
    overflow: auto;
  }
  .DifferencesOthers_sec .DifferencesOthers_table table thead::before {
    width: 100%;
  }
  .DifferencesOthers_sec .DifferencesOthers_table table tr::after {
    width: 100%;
  }
  .DifferencesOthers_sec .DifferencesOthers_table table thead tr th.right_con p {
    font-size: 11px;
  }
  .FlowOperation_sec .content .flows_row .flow-wrapper .flow-list .flow-item .flow-content .flow-meta h3 {
    font-size: 18px;
  }
  .FlowOperation_sec .content .flows_row .flow-wrapper .flow-list .flow-item .flow-content .flow-meta .flow-number {
    font-size: 12px;
  }
  .FlowOperation_sec .content .flows_row .flow-wrapper .flow-list .flow-item .flow-content {
    flex-direction: column;
  }
  .FlowOperation_sec .content .flows_row .flow-wrapper .flow-list .flow-item {
    flex-direction: column-reverse;
    gap: 20px;
  }
  .FlowOperation_sec .content .flows_row .flow-wrapper .flow-list .flow-item .flow-image {
    width: 100%;
  }
  .FlowOperation_sec .content .flows_row .title_box01 {
    margin-bottom: 30px;
  }
  .FlowOperation_sec .content .flows_row .flow-wrapper .flow-list .flow-item .flow-content .flow-meta {
    width: 100%;
  }
  .FlowOperation_sec .content .flows_row .flow-wrapper .flow-timeline {
    left: -23px;
    display: none;
  }
  .FlowOperation_sec .content .flows_row .flow-wrapper .flow-list {
    gap: 60px;
  }
  .FlowOperation_sec .content .flows_row .flow-wrapper .flow-list .flow-item .flow-content::after {
    bottom: -30px;
  }
  .FlowOperation_sec .content .flows_row {
    margin-bottom: 60px;
  }
  .FlowOperation_sec .content .prices_row .titles h2 {
    font-size: 24px;
  }
  .FlowOperation_sec .content .prices_row .flex_row {
    grid-template-columns: 1fr;
  }
  .FlowOperation_sec .content .prices_row .flex_row .prices_col {
    padding: 30px 20px;
  }
  .FlowOperation_sec .content .prices_row .flex_row .prices_col .prices_box span.prices {
    font-size: 40px;
  }
  .FlowOperation_sec .content .prices_row .flex_row .prices_col:nth-of-type(1) {
    border: none;
    border-bottom: 1px solid #d0d0d0;
  }
  .FlowOperation_sec .content .prices_row .flex_row .prices_col .prices_box span.ens {
    font-size: 18px;
  }
  .FlowOperation_sec .content .prices_row .last_texts {
    margin-top: 20px;
  }
  .FlowOperation_sec .content {
    padding: 60px 0;
  }
  .question_sec .title_box01 h2 {
    font-size: 24px;
  }
  .question_sec .title_box01 {
    margin-bottom: 30px;
  }
  .question_title span {
    font-size: 14px;
  }
  footer.footer_sec .footer_menu ul.menu__wrapper.no-list {
    flex-direction: column;
  }
  footer.footer_sec .footer_menu ul.menu__wrapper.no-list li.menu__item.menu__item--depth-1.hs-skip-lang-url-rewrite {
    border: none;
    padding: 0 !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: none;
  }
  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 {
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
  }
  footer.footer_sec {
    padding-left: 0;
    padding-right: 0;
    padding-top: 60px;
    padding-bottom: 40px;
  }
  footer.footer_sec .footer__logo {
    margin-bottom: 30px;
  }
  footer.footer_sec .footer_menu {
    padding-bottom: 60px;
  }
  .Selectableinstallation_sec .flex_row {
    flex-direction: column;
  }
  .mv_sec .flex_row {
    flex-direction: column;
    gap: 30px;
  }
  .mv_sec .flex_row .titles_col h1 {
    font-size: 26px;
  }
  .mv_sec .flex_row .text_col p {
    font-size: 13px;
  }
  .mv_sec .flex_row .text_col {
    width: 100%;
    margin-bottom: 0;
  }
  .scroll_down:before {
    right: 10px;
  }
  .scroll_down:after {
    right: 7px;
  }
  .scroll_down .tte {
    right: 3px;
  }
  .mv_pages h1.page-ttl {
    font-size: 26px;
  }
  .mv_pages {
    min-height: 160px;
  }
  .Improving_scroll .texts_col {
    padding: 30px 20px;
  }
  .Improving_scroll .texts_col h3 {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .Improving_scroll .texts_col>p {
    margin-bottom: 30px;
  }
  /* ---------------------------携帯last ---------------------------*/
}
button,
.button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

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

/* No button */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* 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 #FFBF00!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: #FFBF00;
  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: #FFBF00;
}
 
.hs-form-required::after {
  content: "必須";
  font-size: 13px;
  font-weight: bold;
  background-color: #FFBF00;
  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: #FFBF00;
  width: 100%;
  max-width: 544px;
  height: 70px;
  color: #fff;
  border: 1px solid #FFBF00;
  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;
  }
}